diff --git a/app/Bots/CasinoBot.php b/app/Bots/CasinoBot.php
index ab7443b9d..dfb617110 100644
--- a/app/Bots/CasinoBot.php
+++ b/app/Bots/CasinoBot.php
@@ -83,10 +83,10 @@ class CasinoBot
public function putDonate(int $amount = 0, string $note = ''): string
{
$output = \implode($note, ' ');
- $v = \validator(['bot_id' => $this->bot->id, 'amount'=> $amount, 'note'=> $output], [
- 'bot_id' => 'required|exists:bots,id|max:999',
- 'amount' => \sprintf('required|numeric|min:1|max:%s', $this->target->seedbonus),
- 'note' => 'required|string',
+ $v = \validator(['bot_id' => $this->bot->id, 'amount' => $amount, 'note' => $output], [
+ 'bot_id' => 'required|exists:bots,id|max:999',
+ 'amount' => \sprintf('required|numeric|min:1|max:%s', $this->target->seedbonus),
+ 'note' => 'required|string',
]);
if ($v->passes()) {
$value = $amount;
diff --git a/app/Bots/NerdBot.php b/app/Bots/NerdBot.php
index 454361173..d2cfb7718 100644
--- a/app/Bots/NerdBot.php
+++ b/app/Bots/NerdBot.php
@@ -330,10 +330,10 @@ class NerdBot
public function putDonate($amount = 0, $note = '')
{
$output = \implode(' ', $note);
- $v = \validator(['bot_id' => $this->bot->id, 'amount'=> $amount, 'note'=> $output], [
- 'bot_id' => 'required|exists:bots,id|max:999',
- 'amount' => \sprintf('required|numeric|min:1|max:%s', $this->target->seedbonus),
- 'note' => 'required|string',
+ $v = \validator(['bot_id' => $this->bot->id, 'amount' => $amount, 'note' => $output], [
+ 'bot_id' => 'required|exists:bots,id|max:999',
+ 'amount' => \sprintf('required|numeric|min:1|max:%s', $this->target->seedbonus),
+ 'note' => 'required|string',
]);
if ($v->passes()) {
$value = $amount;
diff --git a/app/Bots/SystemBot.php b/app/Bots/SystemBot.php
index 91cf77429..c263a625c 100644
--- a/app/Bots/SystemBot.php
+++ b/app/Bots/SystemBot.php
@@ -83,10 +83,10 @@ class SystemBot
public function putGift($receiver = '', $amount = 0, $note = ''): string
{
$output = \implode(' ', $note);
- $v = \validator(['receiver' => $receiver, 'amount'=> $amount, 'note'=> $output], [
- 'receiver' => 'required|string|exists:users,username',
- 'amount' => \sprintf('required|numeric|min:1|max:%s', $this->target->seedbonus),
- 'note' => 'required|string',
+ $v = \validator(['receiver' => $receiver, 'amount' => $amount, 'note' => $output], [
+ 'receiver' => 'required|string|exists:users,username',
+ 'amount' => \sprintf('required|numeric|min:1|max:%s', $this->target->seedbonus),
+ 'note' => 'required|string',
]);
if ($v->passes()) {
$recipient = User::where('username', 'LIKE', $receiver)->first();
diff --git a/app/Console/Commands/DemoSeed.php b/app/Console/Commands/DemoSeed.php
index b888e6b49..29a51f270 100644
--- a/app/Console/Commands/DemoSeed.php
+++ b/app/Console/Commands/DemoSeed.php
@@ -56,12 +56,12 @@ class DemoSeed extends Command
$this->info('Creating User Account');
$uid = User::factory()->create([
- 'chatroom_id' => 1,
- 'group_id' => random_int(1, 20),
+ 'chatroom_id' => 1,
+ 'group_id' => random_int(1, 20),
'chat_status_id' => 1,
- 'image' => null,
- 'custom_css' => null,
- 'locale' => 'en',
+ 'image' => null,
+ 'custom_css' => null,
+ 'locale' => 'en',
])->id;
// random boolean
@@ -82,21 +82,21 @@ class DemoSeed extends Command
$selected = \random_int(0, \count($freeleech) - 1);
Torrent::factory()->create([
- 'user_id' => $uid,
- 'tmdb' => $id,
- 'name' => $movie['title'].' ('.$year.')',
- 'slug' => Str::slug($movie['title']),
- 'description' => $movie['overview'],
- 'category_id' => 1,
- 'type_id' => random_int(1, 6),
- 'resolution_id' => random_int(1, 10),
- 'region_id' => random_int(1, 242),
+ 'user_id' => $uid,
+ 'tmdb' => $id,
+ 'name' => $movie['title'].' ('.$year.')',
+ 'slug' => Str::slug($movie['title']),
+ 'description' => $movie['overview'],
+ 'category_id' => 1,
+ 'type_id' => random_int(1, 6),
+ 'resolution_id' => random_int(1, 10),
+ 'region_id' => random_int(1, 242),
'distributor_id' => random_int(1, 965),
- 'free' => $freeleech[$selected],
- 'featured' => false,
- 'sticky' => 0,
- 'release_year' => $year,
- 'mediainfo' => '
+ 'free' => $freeleech[$selected],
+ 'featured' => false,
+ 'sticky' => 0,
+ 'release_year' => $year,
+ 'mediainfo' => '
Complete name : Double.Impact.1991.1080p.BluRay.DD+5.1.x264-LoRD.mkv
Format : Matroska
Format version : Version 4
@@ -244,7 +244,7 @@ Menu
01:44:15.249 : en:End Credits
',
'created_at' => \now(),
- 'bumped_at' => \now(),
+ 'bumped_at' => \now(),
'updated_at' => \now(),
]);
} catch (Exception $exception) {
@@ -266,12 +266,12 @@ Menu
$this->info('Creating User Account');
$uid = User::factory()->create([
- 'chatroom_id' => 1,
- 'group_id' => random_int(1, 20),
+ 'chatroom_id' => 1,
+ 'group_id' => random_int(1, 20),
'chat_status_id' => 1,
- 'image' => null,
- 'custom_css' => null,
- 'locale' => 'en',
+ 'image' => null,
+ 'custom_css' => null,
+ 'locale' => 'en',
])->id;
// random boolean
@@ -292,21 +292,21 @@ Menu
$selected = \random_int(0, \count($freeleech) - 1);
Torrent::factory()->create([
- 'user_id' => $uid,
- 'tmdb' => $id,
- 'name' => $tv['name'].' ('.$year.')',
- 'slug' => Str::slug($tv['name']),
- 'description' => $tv['overview'],
- 'category_id' => 2,
- 'type_id' => random_int(1, 6),
- 'resolution_id' => random_int(1, 10),
- 'region_id' => random_int(1, 242),
+ 'user_id' => $uid,
+ 'tmdb' => $id,
+ 'name' => $tv['name'].' ('.$year.')',
+ 'slug' => Str::slug($tv['name']),
+ 'description' => $tv['overview'],
+ 'category_id' => 2,
+ 'type_id' => random_int(1, 6),
+ 'resolution_id' => random_int(1, 10),
+ 'region_id' => random_int(1, 242),
'distributor_id' => random_int(1, 965),
- 'free' => $freeleech[$selected],
- 'featured' => false,
- 'sticky' => 0,
- 'release_year' => $year,
- 'mediainfo' => '
+ 'free' => $freeleech[$selected],
+ 'featured' => false,
+ 'sticky' => 0,
+ 'release_year' => $year,
+ 'mediainfo' => '
Complete name : Double.Impact.1991.1080p.BluRay.DD+5.1.x264-LoRD.mkv
Format : Matroska
Format version : Version 4
@@ -454,7 +454,7 @@ Menu
01:44:15.249 : en:End Credits
',
'created_at' => \now(),
- 'bumped_at' => \now(),
+ 'bumped_at' => \now(),
'updated_at' => \now(),
]);
} catch (Exception $exception) {
diff --git a/app/Console/Commands/GitUpdater.php b/app/Console/Commands/GitUpdater.php
index 17656efe9..786c4ea88 100644
--- a/app/Console/Commands/GitUpdater.php
+++ b/app/Console/Commands/GitUpdater.php
@@ -347,7 +347,7 @@ class GitUpdater extends Command
} elseif (\is_file(\base_path($path)) && \dirname($path) !== '.') {
$path = \dirname($path);
if (! \is_dir(\storage_path(\sprintf('gitupdate/%s', $path))) && ! \mkdir($concurrentDirectory = \storage_path(\sprintf('gitupdate/%s',
- $path)), 0775, true) && ! \is_dir($concurrentDirectory)) {
+ $path)), 0775, true) && ! \is_dir($concurrentDirectory)) {
throw new \RuntimeException(\sprintf('Directory "%s" was not created', $concurrentDirectory));
}
}
diff --git a/app/Console/Commands/SyncPeers.php b/app/Console/Commands/SyncPeers.php
index 4de0da1e8..e6dca7ea0 100644
--- a/app/Console/Commands/SyncPeers.php
+++ b/app/Console/Commands/SyncPeers.php
@@ -53,7 +53,7 @@ class SyncPeers extends Command
fn ($join) => $join->on('torrents.id', '=', 'seeders_leechers.torrent_id')
)
->update([
- 'seeders' => DB::raw('COALESCE(seeders_leechers.updated_seeders, 0)'),
+ 'seeders' => DB::raw('COALESCE(seeders_leechers.updated_seeders, 0)'),
'leechers' => DB::raw('COALESCE(seeders_leechers.updated_leechers, 0)'),
]);
diff --git a/app/Helpers/BBCodeConverter.php b/app/Helpers/BBCodeConverter.php
index 705feed7b..0a8956488 100644
--- a/app/Helpers/BBCodeConverter.php
+++ b/app/Helpers/BBCodeConverter.php
@@ -234,7 +234,7 @@ class BBCodeConverter
{
$this->text = \preg_replace_callback('#\[img\s*=\s*("(?:[^"]*")|\A[^\']*\Z|(?:[^\'">\]\s]+))\s*(?:[^]\s]*)\[/img\]#iu',
- fn ($matches) => PHP_EOL.'!['.$matches[2].']'.'('.$matches[1].')'.PHP_EOL,
+ fn ($matches) => PHP_EOL.'!['.$matches[2].']'.'('.$matches[1].')'.PHP_EOL,
$this->text
);
diff --git a/app/Helpers/Bbcode.php b/app/Helpers/Bbcode.php
index 99c33218a..be7b96131 100755
--- a/app/Helpers/Bbcode.php
+++ b/app/Helpers/Bbcode.php
@@ -17,202 +17,202 @@ class Bbcode
{
private array $parsers = [
'h1' => [
- 'openBbcode' => '/^\[h1\]/i',
+ 'openBbcode' => '/^\[h1\]/i',
'closeBbcode' => '[/h1]',
- 'openHtml' => '
',
- 'closeHtml' => '
',
+ 'openHtml' => '',
+ 'closeHtml' => '
',
],
'h2' => [
- 'openBbcode' => '/^\[h2\]/i',
+ 'openBbcode' => '/^\[h2\]/i',
'closeBbcode' => '[/h2]',
- 'openHtml' => '',
- 'closeHtml' => '
',
+ 'openHtml' => '',
+ 'closeHtml' => '
',
],
'h3' => [
- 'openBbcode' => '/^\[h3\]/i',
+ 'openBbcode' => '/^\[h3\]/i',
'closeBbcode' => '[/h3]',
- 'openHtml' => '',
- 'closeHtml' => '
',
+ 'openHtml' => '',
+ 'closeHtml' => '
',
],
'h4' => [
- 'openBbcode' => '/^\[h4\]/i',
+ 'openBbcode' => '/^\[h4\]/i',
'closeBbcode' => '[/h4]',
- 'openHtml' => '',
- 'closeHtml' => '
',
+ 'openHtml' => '',
+ 'closeHtml' => '
',
],
'h5' => [
- 'openBbcode' => '/^\[h5\]/i',
+ 'openBbcode' => '/^\[h5\]/i',
'closeBbcode' => '[/h5]',
- 'openHtml' => '',
- 'closeHtml' => '
',
+ 'openHtml' => '',
+ 'closeHtml' => '
',
],
'h6' => [
- 'openBbcode' => '/^\[h6\]/i',
+ 'openBbcode' => '/^\[h6\]/i',
'closeBbcode' => '[/h6]',
- 'openHtml' => '',
- 'closeHtml' => '
',
+ 'openHtml' => '',
+ 'closeHtml' => '
',
],
'bold' => [
- 'openBbcode' => '/^\[b\]/i',
+ 'openBbcode' => '/^\[b\]/i',
'closeBbcode' => '[/b]',
- 'openHtml' => '',
- 'closeHtml' => '',
+ 'openHtml' => '',
+ 'closeHtml' => '',
],
'italic' => [
- 'openBbcode' => '/^\[i\]/i',
+ 'openBbcode' => '/^\[i\]/i',
'closeBbcode' => '[/i]',
- 'openHtml' => '',
- 'closeHtml' => '',
+ 'openHtml' => '',
+ 'closeHtml' => '',
],
'underline' => [
- 'openBbcode' => '/^\[u\]/i',
+ 'openBbcode' => '/^\[u\]/i',
'closeBbcode' => '[/u]',
- 'openHtml' => '',
- 'closeHtml' => '',
+ 'openHtml' => '',
+ 'closeHtml' => '',
],
'linethrough' => [
- 'openBbcode' => '/^\[s\]/i',
+ 'openBbcode' => '/^\[s\]/i',
'closeBbcode' => '[/s]',
- 'openHtml' => '',
- 'closeHtml' => '',
+ 'openHtml' => '',
+ 'closeHtml' => '',
],
'size' => [
- 'openBbcode' => '/^\[size=(\d+)\]/i',
+ 'openBbcode' => '/^\[size=(\d+)\]/i',
'closeBbcode' => '[/size]',
- 'openHtml' => '',
- 'closeHtml' => '',
+ 'openHtml' => '',
+ 'closeHtml' => '',
],
'font' => [
- 'openBbcode' => '/^\[font=([a-z0-9 ]+)\]/i',
+ 'openBbcode' => '/^\[font=([a-z0-9 ]+)\]/i',
'closeBbcode' => '[/font]',
- 'openHtml' => '',
- 'closeHtml' => '',
+ 'openHtml' => '',
+ 'closeHtml' => '',
],
'color' => [
- 'openBbcode' => '/^\[color=(\#[a-f0-9]{3,4}|\#[a-f0-9]{6}|\#[a-f0-9]{8}|[a-z]+)\]/i',
+ 'openBbcode' => '/^\[color=(\#[a-f0-9]{3,4}|\#[a-f0-9]{6}|\#[a-f0-9]{8}|[a-z]+)\]/i',
'closeBbcode' => '[/color]',
- 'openHtml' => '',
- 'closeHtml' => '',
+ 'openHtml' => '',
+ 'closeHtml' => '',
],
'center' => [
- 'openBbcode' => '/^\[center\]/i',
+ 'openBbcode' => '/^\[center\]/i',
'closeBbcode' => '[/center]',
- 'openHtml' => '',
- 'closeHtml' => '
',
+ 'openHtml' => '',
+ 'closeHtml' => '
',
],
'left' => [
- 'openBbcode' => '/^\[left\]/i',
+ 'openBbcode' => '/^\[left\]/i',
'closeBbcode' => '[/left]',
- 'openHtml' => '',
- 'closeHtml' => '
',
+ 'openHtml' => '',
+ 'closeHtml' => '
',
],
'right' => [
- 'openBbcode' => '/^\[right\]/i',
+ 'openBbcode' => '/^\[right\]/i',
'closeBbcode' => '[/right]',
- 'openHtml' => '',
- 'closeHtml' => '
',
+ 'openHtml' => '',
+ 'closeHtml' => '
',
],
'quote' => [
- 'openBbcode' => '/^\[quote\]/i',
+ 'openBbcode' => '/^\[quote\]/i',
'closeBbcode' => '[/quote]',
- 'openHtml' => '',
+ 'openHtml' => '',
],
'namedquote' => [
- 'openBbcode' => '/^\[quote=([^<>"]*?)\]/i',
+ 'openBbcode' => '/^\[quote=([^<>"]*?)\]/i',
'closeBbcode' => '[/quote]',
- 'openHtml' => '',
+ 'openHtml' => '',
],
'namedlink' => [
- 'openBbcode' => '/^\[url=(.*?)\]/i',
+ 'openBbcode' => '/^\[url=(.*?)\]/i',
'closeBbcode' => '[/url]',
- 'openHtml' => '',
- 'closeHtml' => '',
+ 'openHtml' => '',
+ 'closeHtml' => '',
],
'orderedlistnumerical' => [
- 'openBbcode' => '/^\[list=1\]/i',
+ 'openBbcode' => '/^\[list=1\]/i',
'closeBbcode' => '[/list]',
- 'openHtml' => '',
- 'closeHtml' => '
',
+ 'openHtml' => '',
+ 'closeHtml' => '
',
],
'orderedlistalpha' => [
- 'openBbcode' => '/^\[list=a\]/i',
+ 'openBbcode' => '/^\[list=a\]/i',
'closeBbcode' => '[/list]',
- 'openHtml' => '',
- 'closeHtml' => '
',
+ 'openHtml' => '',
+ 'closeHtml' => '
',
],
'unorderedlist' => [
- 'openBbcode' => '/^\[list\]/i',
+ 'openBbcode' => '/^\[list\]/i',
'closeBbcode' => '[/list]',
- 'openHtml' => '',
+ 'openHtml' => '',
],
'code' => [
- 'openBbcode' => '/^\[code\]/i',
+ 'openBbcode' => '/^\[code\]/i',
'closeBbcode' => '[/code]',
- 'openHtml' => '',
- 'closeHtml' => '
',
+ 'openHtml' => '',
+ 'closeHtml' => '
',
],
'alert' => [
- 'openBbcode' => '/^\[alert\]/i',
+ 'openBbcode' => '/^\[alert\]/i',
'closeBbcode' => '[/alert]',
- 'openHtml' => '',
- 'closeHtml' => '
',
+ 'openHtml' => '',
+ 'closeHtml' => '
',
],
'note' => [
- 'openBbcode' => '/^\[note\]/i',
+ 'openBbcode' => '/^\[note\]/i',
'closeBbcode' => '[/note]',
- 'openHtml' => '',
- 'closeHtml' => '
',
+ 'openHtml' => '',
+ 'closeHtml' => '
',
],
'sub' => [
- 'openBbcode' => '/^\[sub\]/i',
+ 'openBbcode' => '/^\[sub\]/i',
'closeBbcode' => '[/sub]',
- 'openHtml' => '',
- 'closeHtml' => '',
+ 'openHtml' => '',
+ 'closeHtml' => '',
],
'sup' => [
- 'openBbcode' => '/^\[sup\]/i',
+ 'openBbcode' => '/^\[sup\]/i',
'closeBbcode' => '[/sup]',
- 'openHtml' => '',
- 'closeHtml' => '',
+ 'openHtml' => '',
+ 'closeHtml' => '',
],
'small' => [
- 'openBbcode' => '/^\[small\]/i',
+ 'openBbcode' => '/^\[small\]/i',
'closeBbcode' => '[/small]',
- 'openHtml' => '',
- 'closeHtml' => '',
+ 'openHtml' => '',
+ 'closeHtml' => '',
],
'table' => [
- 'openBbcode' => '/^\[table\]/i',
+ 'openBbcode' => '/^\[table\]/i',
'closeBbcode' => '[/table]',
- 'openHtml' => '',
+ 'openHtml' => '',
],
'table-row' => [
- 'openBbcode' => '/^\[tr\]/i',
+ 'openBbcode' => '/^\[tr\]/i',
'closeBbcode' => '[/tr]',
- 'openHtml' => '',
- 'closeHtml' => '
',
+ 'openHtml' => '',
+ 'closeHtml' => '
',
],
'table-data' => [
- 'openBbcode' => '/^\[td\]/i',
+ 'openBbcode' => '/^\[td\]/i',
'closeBbcode' => '[/td]',
- 'openHtml' => '',
- 'closeHtml' => ' | ',
+ 'openHtml' => '',
+ 'closeHtml' => ' | ',
],
'spoiler' => [
- 'openBbcode' => '/^\[spoiler\]/i',
+ 'openBbcode' => '/^\[spoiler\]/i',
'closeBbcode' => '[/spoiler]',
- 'openHtml' => 'Spoiler
',
- 'closeHtml' => '
',
+ 'openHtml' => 'Spoiler
',
+ 'closeHtml' => '
',
],
'named-spoiler' => [
- 'openBbcode' => '/^\[spoiler=(.*?)\]/i',
+ 'openBbcode' => '/^\[spoiler=(.*?)\]/i',
'closeBbcode' => '[/spoiler]',
- 'openHtml' => '$1
',
- 'closeHtml' => '
',
+ 'openHtml' => '$1
',
+ 'closeHtml' => '
',
],
];
diff --git a/app/Helpers/Helpers.php b/app/Helpers/Helpers.php
index 8ce5ca671..cd2094a75 100644
--- a/app/Helpers/Helpers.php
+++ b/app/Helpers/Helpers.php
@@ -84,18 +84,18 @@ if (! function_exists('tmdb_image')) {
function tmdb_image($type, $original)
{
$new = match ($type) {
- 'back_big' => 'w1280',
- 'back_small' => 'w780',
- 'poster_big' => 'w500',
- 'poster_mid' => 'w342',
+ 'back_big' => 'w1280',
+ 'back_small' => 'w780',
+ 'poster_big' => 'w500',
+ 'poster_mid' => 'w342',
'poster_small' => 'w92',
- 'cast_face' => 'w138_and_h175_face',
- 'cast_mid' => 'w185',
- 'cast_big' => 'w300',
- 'still_mid' => 'w400',
- 'logo_small' => 'h60',
- 'logo_mid' => 'w300',
- default => 'original',
+ 'cast_face' => 'w138_and_h175_face',
+ 'cast_mid' => 'w185',
+ 'cast_big' => 'w300',
+ 'still_mid' => 'w400',
+ 'logo_small' => 'h60',
+ 'logo_mid' => 'w300',
+ default => 'original',
};
return \str_replace('/original/', '/'.$new.'/', $original);
@@ -130,50 +130,50 @@ if (! function_exists('language_flag')) {
function language_flag($language)
{
$flag = match ($language) {
- 'English' => 'us',
- 'Arabic' => 'ae',
+ 'English' => 'us',
+ 'Arabic' => 'ae',
'Belarusian' => 'by',
- 'Bulgarian' => 'bg',
- 'Catalan' => 'ad',
- 'Chinese' => 'cn',
- 'Croatian' => 'hr',
- 'Czech' => 'cz',
- 'Danish' => 'dk',
- 'Dutch' => 'nl',
- 'Estonian' => 'ee',
- 'Finnish' => 'fi',
- 'French' => 'fr',
- 'Georgian' => 'ge',
- 'German' => 'de',
- 'Greek' => 'gr',
- 'Hebrew' => 'il',
+ 'Bulgarian' => 'bg',
+ 'Catalan' => 'ad',
+ 'Chinese' => 'cn',
+ 'Croatian' => 'hr',
+ 'Czech' => 'cz',
+ 'Danish' => 'dk',
+ 'Dutch' => 'nl',
+ 'Estonian' => 'ee',
+ 'Finnish' => 'fi',
+ 'French' => 'fr',
+ 'Georgian' => 'ge',
+ 'German' => 'de',
+ 'Greek' => 'gr',
+ 'Hebrew' => 'il',
'Hindi', 'Tamil', 'Telugu' => 'in',
- 'Hungarian' => 'hu',
- 'Icelandic' => 'is',
+ 'Hungarian' => 'hu',
+ 'Icelandic' => 'is',
'Indonesian' => 'id',
- 'Italian' => 'it',
- 'Japanese' => 'jp',
- 'Korean' => 'kr',
- 'Latvian' => 'lv',
+ 'Italian' => 'it',
+ 'Japanese' => 'jp',
+ 'Korean' => 'kr',
+ 'Latvian' => 'lv',
'Lithuanian' => 'lt',
- 'Malay' => 'my',
+ 'Malay' => 'my',
'Norwegian', 'Norwegian Bokmal' => 'no',
- 'Persian' => 'ir',
- 'Polish' => 'pl',
+ 'Persian' => 'ir',
+ 'Polish' => 'pl',
'Portuguese' => 'pt',
- 'Romanian' => 'ro',
- 'Russian' => 'ru',
- 'Serbian' => 'rs',
- 'Slovak' => 'sk',
- 'Slovenian' => 'si',
- 'Spanish' => 'es',
- 'Swedish' => 'se',
- 'Tagalog' => 'ph',
- 'Thai' => 'th',
- 'Turkish' => 'tr',
- 'Ukrainian' => 'ua',
+ 'Romanian' => 'ro',
+ 'Russian' => 'ru',
+ 'Serbian' => 'rs',
+ 'Slovak' => 'sk',
+ 'Slovenian' => 'si',
+ 'Spanish' => 'es',
+ 'Swedish' => 'se',
+ 'Tagalog' => 'ph',
+ 'Thai' => 'th',
+ 'Turkish' => 'tr',
+ 'Ukrainian' => 'ua',
'Vietnamese' => 'vn',
- default => null,
+ default => null,
};
return $flag !== null ? '/img/flags/'.$flag.'.png' : null;
diff --git a/app/Helpers/HiddenCaptcha.php b/app/Helpers/HiddenCaptcha.php
index ef621de94..bf77e4085 100644
--- a/app/Helpers/HiddenCaptcha.php
+++ b/app/Helpers/HiddenCaptcha.php
@@ -29,12 +29,12 @@ class HiddenCaptcha
// Generate the token
$token = [
- 'timestamp' => $ts,
- 'session_id' => \session()->getId(),
- 'ip' => \request()->ip(),
- 'user_agent' => \request()->header('User-Agent'),
+ 'timestamp' => $ts,
+ 'session_id' => \session()->getId(),
+ 'ip' => \request()->ip(),
+ 'user_agent' => \request()->header('User-Agent'),
'random_field_name' => $random,
- 'must_be_empty' => $mustBeEmptyField,
+ 'must_be_empty' => $mustBeEmptyField,
];
// Encrypt the token
diff --git a/app/Helpers/Markdown.php b/app/Helpers/Markdown.php
index 8306e1767..c3644bfda 100644
--- a/app/Helpers/Markdown.php
+++ b/app/Helpers/Markdown.php
@@ -322,7 +322,7 @@ class Markdown
return [
'element' => [
- 'name' => 'pre',
+ 'name' => 'pre',
'element' => [
'name' => 'code',
'text' => $text,
@@ -368,7 +368,7 @@ class Markdown
if (\str_starts_with($Line['text'], '#s', (string) $Excerpt['text'], $matches)) {
return [
'element' => ['rawHtml' => $matches[0]],
- 'extent' => \strlen((string) $matches[0]),
+ 'extent' => \strlen((string) $matches[0]),
];
}
if ($Excerpt['text'][1] !== ' ' && \preg_match('/^<\w[\w-]*+(?:[ ]*+'.$this->regexHtmlAttribute.')*+[ ]*+\/?>/s', (string) $Excerpt['text'], $matches)) {
return [
'element' => ['rawHtml' => $matches[0]],
- 'extent' => \strlen((string) $matches[0]),
+ 'extent' => \strlen((string) $matches[0]),
];
}
}
@@ -1342,7 +1342,7 @@ class Markdown
) {
return [
'element' => ['rawHtml' => '&'.$matches[1].';'],
- 'extent' => \strlen((string) $matches[0]),
+ 'extent' => \strlen((string) $matches[0]),
];
}
}
@@ -1355,12 +1355,12 @@ class Markdown
if ($Excerpt['text'][1] === '~' && \preg_match('#^~~(?=\S)(.+?)(?<=\S)~~#', (string) $Excerpt['text'], $matches)) {
return [
- 'extent' => \strlen((string) $matches[0]),
+ 'extent' => \strlen((string) $matches[0]),
'element' => [
- 'name' => 'del',
+ 'name' => 'del',
'handler' => [
- 'function' => 'lineElements',
- 'argument' => $matches[1],
+ 'function' => 'lineElements',
+ 'argument' => $matches[1],
'destination' => 'elements',
],
],
@@ -1379,11 +1379,11 @@ class Markdown
$url = $matches[0][0];
return [
- 'extent' => \strlen((string) $matches[0][0]),
+ 'extent' => \strlen((string) $matches[0][0]),
'position' => $matches[0][1],
- 'element' => [
- 'name' => 'a',
- 'text' => $url,
+ 'element' => [
+ 'name' => 'a',
+ 'text' => $url,
'attributes' => [
'href' => $url,
],
@@ -1398,10 +1398,10 @@ class Markdown
$url = $matches[1];
return [
- 'extent' => \strlen((string) $matches[0]),
+ 'extent' => \strlen((string) $matches[0]),
'element' => [
- 'name' => 'a',
- 'text' => $url,
+ 'name' => 'a',
+ 'text' => $url,
'attributes' => [
'href' => $url,
],
@@ -1650,7 +1650,7 @@ class Markdown
{
static $goodAttribute = '/^[a-zA-Z0-9][a-zA-Z0-9-_]*+$/';
static $safeUrlNameToAtt = [
- 'a' => 'href',
+ 'a' => 'href',
'img' => 'src',
];
diff --git a/app/Helpers/MarkdownExtra.php b/app/Helpers/MarkdownExtra.php
index 567cd3c69..45166b529 100644
--- a/app/Helpers/MarkdownExtra.php
+++ b/app/Helpers/MarkdownExtra.php
@@ -81,8 +81,8 @@ class MarkdownExtra extends Markdown
{
if (\preg_match('#^\[\^(.+?)\]:[ ]?(.*)$#', (string) $Line['text'], $matches)) {
return [
- 'label' => $matches[1],
- 'text' => $matches[2],
+ 'label' => $matches[1],
+ 'text' => $matches[2],
'hidden' => true,
];
}
@@ -110,8 +110,8 @@ class MarkdownExtra extends Markdown
protected function blockFootnoteComplete($Block)
{
$this->DefinitionData['Footnote'][$Block['label']] = [
- 'text' => $Block['text'],
- 'count' => null,
+ 'text' => $Block['text'],
+ 'count' => null,
'number' => null,
];
@@ -128,7 +128,7 @@ class MarkdownExtra extends Markdown
}
$Element = [
- 'name' => 'dl',
+ 'name' => 'dl',
'elements' => [],
];
@@ -136,10 +136,10 @@ class MarkdownExtra extends Markdown
foreach ($terms as $term) {
$Element['elements'][] = [
- 'name' => 'dt',
+ 'name' => 'dt',
'handler' => [
- 'function' => 'lineElements',
- 'argument' => $term,
+ 'function' => 'lineElements',
+ 'argument' => $term,
'destination' => 'elements',
],
];
@@ -211,10 +211,10 @@ class MarkdownExtra extends Markdown
}
$Block = [
- 'name' => $matches[1],
- 'depth' => 0,
+ 'name' => $matches[1],
+ 'depth' => 0,
'element' => [
- 'rawHtml' => $Line['text'],
+ 'rawHtml' => $Line['text'],
'autobreak' => true,
],
];
@@ -319,17 +319,17 @@ class MarkdownExtra extends Markdown
}
$Element = [
- 'name' => 'sup',
+ 'name' => 'sup',
'attributes' => ['id' => 'fnref'.$this->DefinitionData['Footnote'][$name]['count'].':'.$name],
- 'element' => [
- 'name' => 'a',
+ 'element' => [
+ 'name' => 'a',
'attributes' => ['href' => '#fn:'.$name, 'class' => 'footnote-ref'],
- 'text' => $this->DefinitionData['Footnote'][$name]['number'],
+ 'text' => $this->DefinitionData['Footnote'][$name]['number'],
],
];
return [
- 'extent' => \strlen((string) $matches[0]),
+ 'extent' => \strlen((string) $matches[0]),
'element' => $Element,
];
}
@@ -370,7 +370,7 @@ class MarkdownExtra extends Markdown
'/\b'.\preg_quote($this->currentAbreviation, '/').'\b/',
[
[
- 'name' => 'abbr',
+ 'name' => 'abbr',
'attributes' => [
'title' => $this->currentMeaning,
],
@@ -417,10 +417,10 @@ class MarkdownExtra extends Markdown
unset($Block['dd']);
$Block['dd'] = [
- 'name' => 'dd',
+ 'name' => 'dd',
'handler' => [
- 'function' => 'lineElements',
- 'argument' => $text,
+ 'function' => 'lineElements',
+ 'argument' => $text,
'destination' => 'elements',
],
];
@@ -439,12 +439,12 @@ class MarkdownExtra extends Markdown
protected function buildFootnoteElement()
{
$Element = [
- 'name' => 'div',
+ 'name' => 'div',
'attributes' => ['class' => 'footnotes'],
- 'elements' => [
+ 'elements' => [
['name' => 'hr'],
[
- 'name' => 'ol',
+ 'name' => 'ol',
'elements' => [],
],
],
@@ -468,15 +468,15 @@ class MarkdownExtra extends Markdown
foreach ($numbers as $number) {
$backLinkElements[] = ['text' => ' '];
$backLinkElements[] = [
- 'name' => 'a',
+ 'name' => 'a',
'attributes' => [
- 'href' => \sprintf('#fnref%s:%s', $number, $definitionId),
- 'rev' => 'footnote',
+ 'href' => \sprintf('#fnref%s:%s', $number, $definitionId),
+ 'rev' => 'footnote',
'class' => 'footnote-backref',
],
- 'rawHtml' => '↩',
+ 'rawHtml' => '↩',
'allowRawHtmlInSafeMode' => true,
- 'autobreak' => false,
+ 'autobreak' => false,
];
}
@@ -487,7 +487,7 @@ class MarkdownExtra extends Markdown
if ($textElements[$n]['name'] === 'p') {
$backLinkElements = [...[
[
- 'rawHtml' => ' ',
+ 'rawHtml' => ' ',
'allowRawHtmlInSafeMode' => true,
],
], ...$backLinkElements];
@@ -495,20 +495,20 @@ class MarkdownExtra extends Markdown
unset($textElements[$n]['name']);
$textElements[$n] = [
- 'name' => 'p',
+ 'name' => 'p',
'elements' => [...[$textElements[$n]], ...$backLinkElements],
];
} else {
$textElements[] = [
- 'name' => 'p',
+ 'name' => 'p',
'elements' => $backLinkElements,
];
}
$Element['elements'][1]['elements'][] = [
- 'name' => 'li',
+ 'name' => 'li',
'attributes' => ['id' => 'fn:'.$definitionId],
- 'elements' => \array_merge(
+ 'elements' => \array_merge(
$textElements
),
];
diff --git a/app/Helpers/MediaInfo.php b/app/Helpers/MediaInfo.php
index 720ac0a34..8a8e07ab7 100644
--- a/app/Helpers/MediaInfo.php
+++ b/app/Helpers/MediaInfo.php
@@ -21,13 +21,13 @@ class MediaInfo
* @var string[]
*/
private const REPLACE = [
- ' ' => '',
+ ' ' => '',
'channels' => 'ch',
- 'channel' => 'ch',
- '1ch' => '1.0ch',
- '7ch' => '6.1ch',
- '6ch' => '5.1ch',
- '2ch' => '2.0ch',
+ 'channel' => 'ch',
+ '1ch' => '1.0ch',
+ '7ch' => '6.1ch',
+ '6ch' => '5.1ch',
+ '2ch' => '2.0ch',
];
/**
diff --git a/app/Helpers/SystemInformation.php b/app/Helpers/SystemInformation.php
index 347e9ba27..db552d07d 100644
--- a/app/Helpers/SystemInformation.php
+++ b/app/Helpers/SystemInformation.php
@@ -50,16 +50,16 @@ class SystemInformation
$available = $matches[1] * 1_024;
return [
- 'total' => $this->formatBytes($total),
- 'available' => $this->formatBytes($available),
- 'used' => $this->formatBytes($total - $available),
+ 'total' => $this->formatBytes($total),
+ 'available' => $this->formatBytes($available),
+ 'used' => $this->formatBytes($total - $available),
];
}
return [
- 'total' => 0,
- 'available' => 0,
- 'used' => 0,
+ 'total' => 0,
+ 'available' => 0,
+ 'used' => 0,
];
}
@@ -82,8 +82,8 @@ class SystemInformation
return [
'total' => $this->formatBytes($total),
- 'free' => $this->formatBytes($free),
- 'used' => $this->formatBytes($total - $free),
+ 'free' => $this->formatBytes($free),
+ 'used' => $this->formatBytes($total - $free),
];
}
@@ -102,10 +102,10 @@ class SystemInformation
public function basic(): array
{
return [
- 'os' => PHP_OS,
- 'php' => PHP_VERSION,
+ 'os' => PHP_OS,
+ 'php' => PHP_VERSION,
'database' => $this->getDatabase(),
- 'laravel' => \app()->version(),
+ 'laravel' => \app()->version(),
];
}
@@ -127,23 +127,23 @@ class SystemInformation
{
return [
[
- 'directory' => \base_path('bootstrap/cache'),
- 'permission' => $this->getDirectoryPermission('bootstrap/cache'),
+ 'directory' => \base_path('bootstrap/cache'),
+ 'permission' => $this->getDirectoryPermission('bootstrap/cache'),
'recommended' => '0775',
],
[
- 'directory' => \base_path('public'),
- 'permission' => $this->getDirectoryPermission('public'),
+ 'directory' => \base_path('public'),
+ 'permission' => $this->getDirectoryPermission('public'),
'recommended' => '0775',
],
[
- 'directory' => \base_path('storage'),
- 'permission' => $this->getDirectoryPermission('storage'),
+ 'directory' => \base_path('storage'),
+ 'permission' => $this->getDirectoryPermission('storage'),
'recommended' => '0775',
],
[
- 'directory' => \base_path('vendor'),
- 'permission' => $this->getDirectoryPermission('vendor'),
+ 'directory' => \base_path('vendor'),
+ 'permission' => $this->getDirectoryPermission('vendor'),
'recommended' => '0775',
],
];
diff --git a/app/Helpers/TorrentTools.php b/app/Helpers/TorrentTools.php
index 1fa4ab81e..c099ed08d 100644
--- a/app/Helpers/TorrentTools.php
+++ b/app/Helpers/TorrentTools.php
@@ -34,21 +34,21 @@ class TorrentTools
// Whitelisted keys
$result = \array_intersect_key($result, [
- 'announce' => '',
- 'comment' => '',
+ 'announce' => '',
+ 'comment' => '',
'created by' => '',
- 'encoding' => '',
- 'info' => '',
+ 'encoding' => '',
+ 'info' => '',
]);
$result['info'] = \array_intersect_key($result['info'], [
- 'files' => '',
- 'length' => '',
- 'name' => '',
+ 'files' => '',
+ 'length' => '',
+ 'name' => '',
'piece length' => '',
- 'pieces' => '',
- 'private' => '',
- 'source' => '',
+ 'pieces' => '',
+ 'private' => '',
+ 'source' => '',
]);
// The PID will be set if an user downloads the torrent, but for
diff --git a/app/Http/Controllers/API/BaseController.php b/app/Http/Controllers/API/BaseController.php
index d92da0331..f3f915903 100644
--- a/app/Http/Controllers/API/BaseController.php
+++ b/app/Http/Controllers/API/BaseController.php
@@ -21,7 +21,7 @@ class BaseController extends Controller
{
$response = [
'success' => true,
- 'data' => $result,
+ 'data' => $result,
'message' => $message,
];
diff --git a/app/Http/Controllers/API/TorrentController.php b/app/Http/Controllers/API/TorrentController.php
index b5150b694..30c0b9931 100644
--- a/app/Http/Controllers/API/TorrentController.php
+++ b/app/Http/Controllers/API/TorrentController.php
@@ -168,36 +168,36 @@ class TorrentController extends BaseController
// Validation
$v = \validator($torrent->toArray(), [
- 'name' => 'required|unique:torrents',
- 'slug' => 'required',
- 'description' => 'required',
- 'info_hash' => 'required|unique:torrents',
- 'file_name' => 'required',
- 'num_file' => 'required|numeric',
- 'announce' => 'required',
- 'size' => 'required',
- 'category_id' => 'required|exists:categories,id',
- 'type_id' => 'required|exists:types,id',
- 'resolution_id' => $resolutionRule,
- 'region_id' => 'nullable|exists:regions,id',
- 'distributor_id' => 'nullable|exists:distributors,id',
- 'user_id' => 'required|exists:users,id',
- 'imdb' => 'required|numeric',
- 'tvdb' => 'required|numeric',
- 'tmdb' => 'required|numeric',
- 'mal' => 'required|numeric',
- 'igdb' => 'required|numeric',
- 'season_number' => $seasonRule,
- 'episode_number' => $episodeRule,
- 'anon' => 'required',
- 'stream' => 'required',
- 'sd' => 'required',
- 'personal_release' => 'nullable',
- 'internal' => 'required',
- 'featured' => 'required',
- 'free' => 'required|between:0,100',
- 'doubleup' => 'required',
- 'sticky' => 'required',
+ 'name' => 'required|unique:torrents',
+ 'slug' => 'required',
+ 'description' => 'required',
+ 'info_hash' => 'required|unique:torrents',
+ 'file_name' => 'required',
+ 'num_file' => 'required|numeric',
+ 'announce' => 'required',
+ 'size' => 'required',
+ 'category_id' => 'required|exists:categories,id',
+ 'type_id' => 'required|exists:types,id',
+ 'resolution_id' => $resolutionRule,
+ 'region_id' => 'nullable|exists:regions,id',
+ 'distributor_id' => 'nullable|exists:distributors,id',
+ 'user_id' => 'required|exists:users,id',
+ 'imdb' => 'required|numeric',
+ 'tvdb' => 'required|numeric',
+ 'tmdb' => 'required|numeric',
+ 'mal' => 'required|numeric',
+ 'igdb' => 'required|numeric',
+ 'season_number' => $seasonRule,
+ 'episode_number' => $episodeRule,
+ 'anon' => 'required',
+ 'stream' => 'required',
+ 'sd' => 'required',
+ 'personal_release' => 'nullable',
+ 'internal' => 'required',
+ 'featured' => 'required',
+ 'free' => 'required|between:0,100',
+ 'doubleup' => 'required',
+ 'sticky' => 'required',
]);
if ($v->fails()) {
diff --git a/app/Http/Controllers/AchievementsController.php b/app/Http/Controllers/AchievementsController.php
index fe0cd91ba..98b79d761 100644
--- a/app/Http/Controllers/AchievementsController.php
+++ b/app/Http/Controllers/AchievementsController.php
@@ -32,10 +32,10 @@ class AchievementsController extends Controller
$pending = $user->inProgressAchievements();
return \view('achievement.index', [
- 'route' => 'achievement',
- 'user' => $user,
+ 'route' => 'achievement',
+ 'user' => $user,
'achievements' => $achievements,
- 'pending' => $pending,
+ 'pending' => $pending,
]);
}
@@ -49,8 +49,8 @@ class AchievementsController extends Controller
$achievements = $user->unlockedAchievements();
return \view('achievement.show', [
- 'route' => 'achievement',
- 'user' => $user,
+ 'route' => 'achievement',
+ 'user' => $user,
'achievements' => $achievements,
]);
}
diff --git a/app/Http/Controllers/AnnounceController.php b/app/Http/Controllers/AnnounceController.php
index 5702dfa41..32acd0023 100644
--- a/app/Http/Controllers/AnnounceController.php
+++ b/app/Http/Controllers/AnnounceController.php
@@ -31,11 +31,14 @@ class AnnounceController extends Controller
{
// Torrent Moderation Codes
protected const PENDING = 0;
+
protected const REJECTED = 2;
+
protected const POSTPONED = 3;
// Announce Intervals
private const MIN = 3_600;
+
private const MAX = 5_400;
// Port Blacklist
@@ -214,10 +217,10 @@ class AnnounceController extends Controller
// Part.2 Extract optional announce fields
foreach ([
- 'event' => '',
+ 'event' => '',
'numwant' => 25,
'corrupt' => 0,
- 'key' => '',
+ 'key' => '',
] as $item => $value) {
$queries[$item] = $request->query->get($item, $value);
}
@@ -423,12 +426,12 @@ class AnnounceController extends Controller
{
// Build Response For Bittorrent Client
$repDict = [
- 'interval' => random_int(self::MIN, self::MAX),
+ 'interval' => random_int(self::MIN, self::MAX),
'min interval' => self::MIN,
- 'complete' => (int) $torrent->seeders,
- 'incomplete' => (int) $torrent->leechers,
- 'peers' => '',
- 'peers6' => '',
+ 'complete' => (int) $torrent->seeders,
+ 'incomplete' => (int) $torrent->leechers,
+ 'peers' => '',
+ 'peers6' => '',
];
/**
@@ -470,7 +473,7 @@ class AnnounceController extends Controller
{
return [
'failure reason' => $trackerException->getMessage(),
- 'min interval' => self::MIN,
+ 'min interval' => self::MIN,
];
}
diff --git a/app/Http/Controllers/Auth/ApplicationController.php b/app/Http/Controllers/Auth/ApplicationController.php
index e84f3c25f..511356c0f 100644
--- a/app/Http/Controllers/Auth/ApplicationController.php
+++ b/app/Http/Controllers/Auth/ApplicationController.php
@@ -46,8 +46,8 @@ class ApplicationController extends Controller
if (\config('email-blacklist.enabled')) {
if (! \config('captcha.enabled')) {
$v = \validator($request->all(), [
- 'type' => 'required',
- 'email' => [
+ 'type' => 'required',
+ 'email' => [
'required',
'string',
'email',
@@ -59,14 +59,14 @@ class ApplicationController extends Controller
],
'referrer' => 'required',
'images.*' => 'filled',
- 'images' => 'min:2',
- 'links.*' => 'filled',
- 'links' => 'min:2',
+ 'images' => 'min:2',
+ 'links.*' => 'filled',
+ 'links' => 'min:2',
]);
} else {
$v = \validator($request->all(), [
- 'type' => 'required',
- 'email' => [
+ 'type' => 'required',
+ 'email' => [
'required',
'string',
'email',
@@ -78,32 +78,32 @@ class ApplicationController extends Controller
],
'referrer' => 'required',
'images.*' => 'filled',
- 'images' => 'min:2',
- 'links.*' => 'filled',
- 'links' => 'min:2',
- 'captcha' => 'hiddencaptcha',
+ 'images' => 'min:2',
+ 'links.*' => 'filled',
+ 'links' => 'min:2',
+ 'captcha' => 'hiddencaptcha',
]);
}
} elseif (! \config('captcha.enabled')) {
$v = \validator($request->all(), [
- 'type' => 'required',
- 'email' => 'required|string|email|max:70|unique:invites|unique:users|unique:applications',
+ 'type' => 'required',
+ 'email' => 'required|string|email|max:70|unique:invites|unique:users|unique:applications',
'referrer' => 'required',
'images.*' => 'filled',
- 'images' => 'min:2',
- 'links.*' => 'filled',
- 'links' => 'min:2',
+ 'images' => 'min:2',
+ 'links.*' => 'filled',
+ 'links' => 'min:2',
]);
} else {
$v = \validator($request->all(), [
- 'type' => 'required',
- 'email' => 'required|string|email|max:70|unique:invites|unique:users|unique:applications',
+ 'type' => 'required',
+ 'email' => 'required|string|email|max:70|unique:invites|unique:users|unique:applications',
'referrer' => 'required',
'images.*' => 'filled',
- 'images' => 'min:2',
- 'links.*' => 'filled',
- 'links' => 'min:2',
- 'captcha' => 'hiddencaptcha',
+ 'images' => 'min:2',
+ 'links.*' => 'filled',
+ 'links' => 'min:2',
+ 'captcha' => 'hiddencaptcha',
]);
}
diff --git a/app/Http/Controllers/Auth/ForgotPasswordController.php b/app/Http/Controllers/Auth/ForgotPasswordController.php
index c93fb47a5..ce2a8c841 100644
--- a/app/Http/Controllers/Auth/ForgotPasswordController.php
+++ b/app/Http/Controllers/Auth/ForgotPasswordController.php
@@ -32,7 +32,7 @@ class ForgotPasswordController extends Controller
$request->validate(['email' => 'required|email']);
} else {
$request->validate([
- 'email' => 'required|email',
+ 'email' => 'required|email',
'captcha' => 'hiddencaptcha',
]);
}
diff --git a/app/Http/Controllers/Auth/ForgotUsernameController.php b/app/Http/Controllers/Auth/ForgotUsernameController.php
index 44b6d1aeb..464867b43 100644
--- a/app/Http/Controllers/Auth/ForgotUsernameController.php
+++ b/app/Http/Controllers/Auth/ForgotUsernameController.php
@@ -44,7 +44,7 @@ class ForgotUsernameController extends Controller
]);
} else {
$v = \validator($request->all(), [
- 'email' => 'required',
+ 'email' => 'required',
'captcha' => 'hiddencaptcha',
]);
}
diff --git a/app/Http/Controllers/Auth/LoginController.php b/app/Http/Controllers/Auth/LoginController.php
index fb39dbb28..6ad362979 100644
--- a/app/Http/Controllers/Auth/LoginController.php
+++ b/app/Http/Controllers/Auth/LoginController.php
@@ -54,14 +54,14 @@ class LoginController extends Controller
{
if (\config('captcha.enabled')) {
$this->validate($request, [
- $this->username() => 'required|string',
- 'password' => 'required|string',
- 'captcha' => 'hiddencaptcha',
+ $this->username() => 'required|string',
+ 'password' => 'required|string',
+ 'captcha' => 'hiddencaptcha',
]);
} else {
$this->validate($request, [
$this->username() => 'required|string',
- 'password' => 'required|string',
+ 'password' => 'required|string',
]);
}
}
diff --git a/app/Http/Controllers/Auth/RegisterController.php b/app/Http/Controllers/Auth/RegisterController.php
index 20d6227ed..8ab352287 100644
--- a/app/Http/Controllers/Auth/RegisterController.php
+++ b/app/Http/Controllers/Auth/RegisterController.php
@@ -86,7 +86,7 @@ class RegisterController extends Controller
$v = \validator($request->all(), [
'username' => 'required|alpha_dash|string|between:3,25|unique:users',
'password' => 'required|string|between:8,16',
- 'email' => [
+ 'email' => [
'required',
'string',
'email',
@@ -99,7 +99,7 @@ class RegisterController extends Controller
$v = \validator($request->all(), [
'username' => 'required|alpha_dash|string|between:3,25|unique:users',
'password' => 'required|string|between:8,16',
- 'email' => [
+ 'email' => [
'required',
'string',
'email',
@@ -107,21 +107,21 @@ class RegisterController extends Controller
'unique:users',
new EmailBlacklist(),
],
- 'captcha' => 'hiddencaptcha',
+ 'captcha' => 'hiddencaptcha',
]);
}
} elseif (! \config('captcha.enabled')) {
$v = \validator($request->all(), [
'username' => 'required|alpha_dash|string|between:3,25|unique:users',
'password' => 'required|string|between:8,16',
- 'email' => 'required|string|email|max:70|unique:users',
+ 'email' => 'required|string|email|max:70|unique:users',
]);
} else {
$v = \validator($request->all(), [
'username' => 'required|alpha_dash|string|between:3,25|unique:users',
'password' => 'required|string|between:6,16',
- 'email' => 'required|string|email|max:70|unique:users',
- 'captcha' => 'hiddencaptcha',
+ 'email' => 'required|string|email|max:70|unique:users',
+ 'captcha' => 'hiddencaptcha',
]);
}
diff --git a/app/Http/Controllers/Auth/TwoStepController.php b/app/Http/Controllers/Auth/TwoStepController.php
index 6de316c13..d71e63c8b 100644
--- a/app/Http/Controllers/Auth/TwoStepController.php
+++ b/app/Http/Controllers/Auth/TwoStepController.php
@@ -73,8 +73,8 @@ class TwoStepController extends Controller
$this->twoStepAuth->save();
$returnData = [
- 'message' => \trans('auth.titleFailed'),
- 'authCount' => $this->authCount,
+ 'message' => \trans('auth.titleFailed'),
+ 'authCount' => $this->authCount,
'remainingAttempts' => $this->remainingAttempts,
];
@@ -102,7 +102,7 @@ class TwoStepController extends Controller
}
$data = [
- 'user' => $this->user,
+ 'user' => $this->user,
'remainingAttempts' => $this->remainingAttempts + 1,
];
@@ -194,7 +194,7 @@ class TwoStepController extends Controller
$this->sendVerificationCodeNotification($twoStepAuth);
$returnData = [
- 'title' => \trans('auth.verificationEmailSuccess'),
+ 'title' => \trans('auth.verificationEmailSuccess'),
'message' => \trans('auth.verificationEmailSentMsg'),
];
diff --git a/app/Http/Controllers/CommentController.php b/app/Http/Controllers/CommentController.php
index 4ce10ac91..a30b2f4d5 100644
--- a/app/Http/Controllers/CommentController.php
+++ b/app/Http/Controllers/CommentController.php
@@ -80,10 +80,10 @@ class CommentController extends Controller
$comment->collection_id = $collection->id;
$v = \validator($comment->toArray(), [
- 'content' => 'required',
- 'user_id' => 'required',
+ 'content' => 'required',
+ 'user_id' => 'required',
'collection_id' => 'required',
- 'anon' => 'required',
+ 'anon' => 'required',
]);
if ($v->fails()) {
@@ -99,12 +99,12 @@ class CommentController extends Controller
// Auto Shout
if ($comment->anon == 0) {
$this->chatRepository->systemMessage(
- \sprintf('[url=%s]%s[/url] has left a comment on collection [url=%s]%s[/url]', $profileUrl, $user->username, $collectionUrl, $collection->name)
- );
+ \sprintf('[url=%s]%s[/url] has left a comment on collection [url=%s]%s[/url]', $profileUrl, $user->username, $collectionUrl, $collection->name)
+ );
} else {
$this->chatRepository->systemMessage(
- \sprintf('An anonymous user has left a comment on collection [url=%s]%s[/url]', $collectionUrl, $collection->name)
- );
+ \sprintf('An anonymous user has left a comment on collection [url=%s]%s[/url]', $collectionUrl, $collection->name)
+ );
}
if ($this->taggedUserRepository->hasTags($request->input('content'))) {
@@ -115,21 +115,21 @@ class CommentController extends Controller
$users->push($c->user);
});
$this->tag->messageCommentUsers(
- 'collection',
- $users,
- $user,
- 'Staff',
- $comment
- );
+ 'collection',
+ $users,
+ $user,
+ 'Staff',
+ $comment
+ );
} else {
$sender = $comment->anon ? 'Anonymous' : $user->username;
$this->taggedUserRepository->messageTaggedCommentUsers(
- 'collection',
- $request->input('content'),
- $user,
- $sender,
- $comment
- );
+ 'collection',
+ $request->input('content'),
+ $user,
+ $sender,
+ $comment
+ );
}
}
@@ -180,10 +180,10 @@ class CommentController extends Controller
$comment->article_id = $article->id;
$v = \validator($comment->toArray(), [
- 'content' => 'required',
- 'user_id' => 'required',
+ 'content' => 'required',
+ 'user_id' => 'required',
'article_id' => 'required',
- 'anon' => 'required',
+ 'anon' => 'required',
]);
if ($v->fails()) {
@@ -278,10 +278,10 @@ class CommentController extends Controller
$comment->playlist_id = $playlist->id;
$v = \validator($comment->toArray(), [
- 'content' => 'required',
- 'user_id' => 'required',
+ 'content' => 'required',
+ 'user_id' => 'required',
'playlist_id' => 'required',
- 'anon' => 'required',
+ 'anon' => 'required',
]);
if ($v->fails()) {
@@ -376,10 +376,10 @@ class CommentController extends Controller
$comment->torrent_id = $torrent->id;
$v = \validator($comment->toArray(), [
- 'content' => 'required',
- 'user_id' => 'required',
+ 'content' => 'required',
+ 'user_id' => 'required',
'torrent_id' => 'required',
- 'anon' => 'required',
+ 'anon' => 'required',
]);
if ($v->fails()) {
@@ -479,10 +479,10 @@ class CommentController extends Controller
$comment->requests_id = $tr->id;
$v = \validator($comment->toArray(), [
- 'content' => 'required',
- 'user_id' => 'required',
+ 'content' => 'required',
+ 'user_id' => 'required',
'requests_id' => 'required',
- 'anon' => 'required',
+ 'anon' => 'required',
]);
if ($v->fails()) {
@@ -577,10 +577,10 @@ class CommentController extends Controller
$comment->ticket_id = $ticket->id;
$v = \validator($comment->toArray(), [
- 'content' => 'required',
- 'user_id' => 'required',
+ 'content' => 'required',
+ 'user_id' => 'required',
'ticket_id' => 'required',
- 'anon' => 'required',
+ 'anon' => 'required',
]);
if ($v->fails()) {
@@ -648,8 +648,8 @@ class CommentController extends Controller
$comment->torrent_id = $torrent->id;
$v = \validator($comment->toArray(), [
- 'content' => 'required',
- 'user_id' => 'required',
+ 'content' => 'required',
+ 'user_id' => 'required',
'torrent_id' => 'required',
]);
@@ -704,7 +704,7 @@ class CommentController extends Controller
$comment->content = $request->input('comment-edit');
$v = \validator($comment->toArray(), [
- 'content' => 'required',
+ 'content' => 'required',
]);
if ($v->fails()) {
diff --git a/app/Http/Controllers/ForumCategoryController.php b/app/Http/Controllers/ForumCategoryController.php
index 65ba5921c..8e4cb4acf 100644
--- a/app/Http/Controllers/ForumCategoryController.php
+++ b/app/Http/Controllers/ForumCategoryController.php
@@ -53,10 +53,10 @@ class ForumCategoryController extends Controller
$topics = $forum->sub_topics()->latest('pinned')->latest('last_reply_at')->latest()->paginate(25);
return \view('forum.category', [
- 'forum' => $forum,
- 'topics' => $topics,
- 'category' => $category,
- 'num_posts' => $numPosts,
+ 'forum' => $forum,
+ 'topics' => $topics,
+ 'category' => $category,
+ 'num_posts' => $numPosts,
'num_forums' => $numForums,
'num_topics' => $numTopics,
]);
diff --git a/app/Http/Controllers/ForumController.php b/app/Http/Controllers/ForumController.php
index 395b32672..7893f8a7c 100644
--- a/app/Http/Controllers/ForumController.php
+++ b/app/Http/Controllers/ForumController.php
@@ -159,14 +159,14 @@ class ForumController extends Controller
return \view($logger, [
'categories' => $categories,
- 'results' => $results,
- 'user' => $user,
- 'name' => $request->input('name'),
- 'body' => $request->input('body'),
- 'num_posts' => $numPosts,
+ 'results' => $results,
+ 'user' => $user,
+ 'name' => $request->input('name'),
+ 'body' => $request->input('body'),
+ 'num_posts' => $numPosts,
'num_forums' => $numForums,
'num_topics' => $numTopics,
- 'params' => $params,
+ 'params' => $params,
]);
}
@@ -209,14 +209,14 @@ class ForumController extends Controller
$params = $request->all();
return \view('forum.subscriptions', [
- 'results' => $results,
- 'user' => $user,
- 'name' => $request->input('name'),
- 'body' => $request->input('body'),
- 'num_posts' => $numPosts,
+ 'results' => $results,
+ 'user' => $user,
+ 'name' => $request->input('name'),
+ 'body' => $request->input('body'),
+ 'num_posts' => $numPosts,
'num_forums' => $numForums,
'num_topics' => $numTopics,
- 'params' => $params,
+ 'params' => $params,
'forum_neos' => $forumNeos,
'topic_neos' => $topicNeos,
]);
@@ -244,9 +244,9 @@ class ForumController extends Controller
$numTopics = Topic::count();
return \view('forum.latest_topics', [
- 'results' => $results,
- 'user' => $user,
- 'num_posts' => $numPosts,
+ 'results' => $results,
+ 'user' => $user,
+ 'num_posts' => $numPosts,
'num_forums' => $numForums,
'num_topics' => $numTopics,
]);
@@ -274,9 +274,9 @@ class ForumController extends Controller
$numTopics = Topic::count();
return \view('forum.latest_posts', [
- 'results' => $results,
- 'user' => $user,
- 'num_posts' => $numPosts,
+ 'results' => $results,
+ 'user' => $user,
+ 'num_posts' => $numPosts,
'num_forums' => $numForums,
'num_topics' => $numTopics,
]);
@@ -298,7 +298,7 @@ class ForumController extends Controller
return \view('forum.index', [
'categories' => $categories,
- 'num_posts' => $numPosts,
+ 'num_posts' => $numPosts,
'num_forums' => $numForums,
'num_topics' => $numTopics,
]);
@@ -335,10 +335,10 @@ class ForumController extends Controller
$topics = $forum->topics()->latest('pinned')->latest('last_reply_at')->latest()->paginate(25);
return \view('forum.display', [
- 'forum' => $forum,
- 'topics' => $topics,
- 'category' => $category,
- 'num_posts' => $numPosts,
+ 'forum' => $forum,
+ 'topics' => $topics,
+ 'category' => $category,
+ 'num_posts' => $numPosts,
'num_forums' => $numForums,
'num_topics' => $numTopics,
]);
diff --git a/app/Http/Controllers/GraveyardController.php b/app/Http/Controllers/GraveyardController.php
index 37295ada0..b4e2759ae 100644
--- a/app/Http/Controllers/GraveyardController.php
+++ b/app/Http/Controllers/GraveyardController.php
@@ -55,9 +55,9 @@ class GraveyardController extends Controller
$graveyard->seedtime = $request->input('seedtime');
$v = \validator($graveyard->toArray(), [
- 'user_id' => 'required',
+ 'user_id' => 'required',
'torrent_id' => 'required',
- 'seedtime' => 'required',
+ 'seedtime' => 'required',
]);
if ($v->fails()) {
diff --git a/app/Http/Controllers/HomeController.php b/app/Http/Controllers/HomeController.php
index bff55be2b..b4376364a 100644
--- a/app/Http/Controllers/HomeController.php
+++ b/app/Http/Controllers/HomeController.php
@@ -134,24 +134,24 @@ class HomeController extends Controller
$bookmarks = Bookmark::where('user_id', $user->id)->get();
return \view('home.index', [
- 'user' => $user,
+ 'user' => $user,
'personal_freeleech' => $personalFreeleech,
- 'users' => $users,
- 'groups' => $groups,
- 'articles' => $articles,
- 'newest' => $newest,
- 'seeded' => $seeded,
- 'dying' => $dying,
- 'leeched' => $leeched,
- 'dead' => $dead,
- 'topics' => $topics,
- 'posts' => $posts,
- 'featured' => $featured,
- 'poll' => $poll,
- 'uploaders' => $uploaders,
- 'past_uploaders' => $pastUploaders,
- 'freeleech_tokens' => $freeleechTokens,
- 'bookmarks' => $bookmarks,
+ 'users' => $users,
+ 'groups' => $groups,
+ 'articles' => $articles,
+ 'newest' => $newest,
+ 'seeded' => $seeded,
+ 'dying' => $dying,
+ 'leeched' => $leeched,
+ 'dead' => $dead,
+ 'topics' => $topics,
+ 'posts' => $posts,
+ 'featured' => $featured,
+ 'poll' => $poll,
+ 'uploaders' => $uploaders,
+ 'past_uploaders' => $pastUploaders,
+ 'freeleech_tokens' => $freeleechTokens,
+ 'bookmarks' => $bookmarks,
]);
}
}
diff --git a/app/Http/Controllers/InviteController.php b/app/Http/Controllers/InviteController.php
index 335dc2bb0..56836ce0c 100644
--- a/app/Http/Controllers/InviteController.php
+++ b/app/Http/Controllers/InviteController.php
@@ -117,7 +117,7 @@ class InviteController extends Controller
]);
} else {
$v = \validator($invite->toArray(), [
- 'email' => 'required|string|email|max:70|unique:users',
+ 'email' => 'required|string|email|max:70|unique:users',
'custom' => 'required',
]);
}
diff --git a/app/Http/Controllers/MediaHub/CompanyController.php b/app/Http/Controllers/MediaHub/CompanyController.php
index d6893274a..4c5836ca9 100644
--- a/app/Http/Controllers/MediaHub/CompanyController.php
+++ b/app/Http/Controllers/MediaHub/CompanyController.php
@@ -37,8 +37,8 @@ class CompanyController extends Controller
return \view('mediahub.company.show', [
'company' => $company,
- 'shows' => $shows,
- 'movies' => $movies,
+ 'shows' => $shows,
+ 'movies' => $movies,
]);
}
}
diff --git a/app/Http/Controllers/MediaHub/GenreController.php b/app/Http/Controllers/MediaHub/GenreController.php
index 6d3cb9675..768e27f4d 100644
--- a/app/Http/Controllers/MediaHub/GenreController.php
+++ b/app/Http/Controllers/MediaHub/GenreController.php
@@ -38,8 +38,8 @@ class GenreController extends Controller
$movies = $genre->movie()->oldest('title')->paginate(25);
return \view('mediahub.genre.show', [
- 'genre' => $genre,
- 'shows' => $shows,
+ 'genre' => $genre,
+ 'shows' => $shows,
'movies' => $movies,
]);
}
diff --git a/app/Http/Controllers/MediaHub/HomeController.php b/app/Http/Controllers/MediaHub/HomeController.php
index 000898583..efb76462a 100644
--- a/app/Http/Controllers/MediaHub/HomeController.php
+++ b/app/Http/Controllers/MediaHub/HomeController.php
@@ -38,13 +38,13 @@ class HomeController extends Controller
$companies = Company::count();
return \view('mediahub.index', [
- 'tv' => $tv,
- 'movies' => $movies,
+ 'tv' => $tv,
+ 'movies' => $movies,
'collections' => $collections,
- 'persons' => $persons,
- 'genres' => $genres,
- 'networks' => $networks,
- 'companies' => $companies,
+ 'persons' => $persons,
+ 'genres' => $genres,
+ 'networks' => $networks,
+ 'companies' => $companies,
]);
}
}
diff --git a/app/Http/Controllers/MediaHub/MovieController.php b/app/Http/Controllers/MediaHub/MovieController.php
index 6033b5cd3..f4d0ce54d 100644
--- a/app/Http/Controllers/MediaHub/MovieController.php
+++ b/app/Http/Controllers/MediaHub/MovieController.php
@@ -38,8 +38,8 @@ class MovieController extends Controller
$movie = Movie::with(['cast', 'collection', 'genres', 'companies'])->findOrFail($id);
return \view('mediahub.movie.show', [
- 'movie' => $movie,
- 'user' => $user,
+ 'movie' => $movie,
+ 'user' => $user,
'personal_freeleech' => $personalFreeleech,
]);
}
diff --git a/app/Http/Controllers/MediaHub/NetworkController.php b/app/Http/Controllers/MediaHub/NetworkController.php
index 9adf14704..cea67ec7e 100644
--- a/app/Http/Controllers/MediaHub/NetworkController.php
+++ b/app/Http/Controllers/MediaHub/NetworkController.php
@@ -36,7 +36,7 @@ class NetworkController extends Controller
return \view('mediahub.network.show', [
'network' => $network,
- 'shows' => $shows,
+ 'shows' => $shows,
]);
}
}
diff --git a/app/Http/Controllers/MediaHub/TvSeasonController.php b/app/Http/Controllers/MediaHub/TvSeasonController.php
index 9e5d784f0..8bdc130b7 100644
--- a/app/Http/Controllers/MediaHub/TvSeasonController.php
+++ b/app/Http/Controllers/MediaHub/TvSeasonController.php
@@ -29,7 +29,7 @@ class TvSeasonController extends Controller
return \view('mediahub.tv.season.show', [
'season' => $season,
- 'show' => $show,
+ 'show' => $show,
]);
}
}
diff --git a/app/Http/Controllers/PlaylistController.php b/app/Http/Controllers/PlaylistController.php
index 894b23ffa..f2bd04da0 100644
--- a/app/Http/Controllers/PlaylistController.php
+++ b/app/Http/Controllers/PlaylistController.php
@@ -85,10 +85,10 @@ class PlaylistController extends Controller
$playlist->is_private = $request->input('is_private');
$v = \validator($playlist->toArray(), [
- 'user_id' => 'required',
- 'name' => 'required',
+ 'user_id' => 'required',
+ 'name' => 'required',
'description' => 'required',
- 'is_private' => 'required',
+ 'is_private' => 'required',
]);
if ($v->fails()) {
@@ -192,9 +192,9 @@ class PlaylistController extends Controller
$playlist->is_private = $request->input('is_private');
$v = \validator($playlist->toArray(), [
- 'name' => 'required',
+ 'name' => 'required',
'description' => 'required',
- 'is_private' => 'required',
+ 'is_private' => 'required',
]);
if ($v->fails()) {
diff --git a/app/Http/Controllers/PlaylistTorrentController.php b/app/Http/Controllers/PlaylistTorrentController.php
index e9fe0f195..0dcb6a49c 100644
--- a/app/Http/Controllers/PlaylistTorrentController.php
+++ b/app/Http/Controllers/PlaylistTorrentController.php
@@ -37,8 +37,8 @@ class PlaylistTorrentController extends Controller
$playlistTorrent->torrent_id = $request->input('torrent_id');
$v = \validator($playlistTorrent->toArray(), [
- 'playlist_id' => 'required|numeric|exists:playlists,id|unique:playlist_torrents,playlist_id,NULL,NULL,torrent_id,'.$request->input('torrent_id'),
- 'torrent_id' => 'required|numeric|exists:torrents,id|unique:playlist_torrents,torrent_id,NULL,NULL,playlist_id,'.$request->input('playlist_id'),
+ 'playlist_id' => 'required|numeric|exists:playlists,id|unique:playlist_torrents,playlist_id,NULL,NULL,torrent_id,'.$request->input('torrent_id'),
+ 'torrent_id' => 'required|numeric|exists:torrents,id|unique:playlist_torrents,torrent_id,NULL,NULL,playlist_id,'.$request->input('playlist_id'),
]);
if ($v->fails()) {
diff --git a/app/Http/Controllers/PollController.php b/app/Http/Controllers/PollController.php
index 071afd67b..e7f4723d3 100644
--- a/app/Http/Controllers/PollController.php
+++ b/app/Http/Controllers/PollController.php
@@ -103,7 +103,7 @@ class PollController extends Controller
{
$poll = Poll::findOrFail($id);
$map = [
- 'poll' => $poll,
+ 'poll' => $poll,
'total_votes' => $poll->totalVotes(),
];
diff --git a/app/Http/Controllers/PostController.php b/app/Http/Controllers/PostController.php
index 50b71695d..3bfa2ca38 100644
--- a/app/Http/Controllers/PostController.php
+++ b/app/Http/Controllers/PostController.php
@@ -66,8 +66,8 @@ class PostController extends Controller
$post->topic_id = $topic->id;
$v = \validator($post->toArray(), [
- 'content' => 'required|min:1',
- 'user_id' => 'required',
+ 'content' => 'required|min:1',
+ 'user_id' => 'required',
'topic_id' => 'required',
]);
@@ -174,9 +174,9 @@ class PostController extends Controller
$post = Post::findOrFail($postId);
return \view('forum.post_edit', [
- 'topic' => $topic,
- 'forum' => $forum,
- 'post' => $post,
+ 'topic' => $topic,
+ 'forum' => $forum,
+ 'post' => $post,
'category' => $category,
]);
}
diff --git a/app/Http/Controllers/PrivateMessageController.php b/app/Http/Controllers/PrivateMessageController.php
index e1be79419..1b7740920 100644
--- a/app/Http/Controllers/PrivateMessageController.php
+++ b/app/Http/Controllers/PrivateMessageController.php
@@ -129,11 +129,11 @@ class PrivateMessageController extends Controller
$privateMessage->read = 0;
$v = \validator($privateMessage->toArray(), [
- 'sender_id' => 'required',
+ 'sender_id' => 'required',
'receiver_id' => 'required',
- 'subject' => 'required',
- 'message' => 'required',
- 'read' => 'required',
+ 'subject' => 'required',
+ 'message' => 'required',
+ 'read' => 'required',
]);
if ($v->fails()) {
@@ -174,12 +174,12 @@ class PrivateMessageController extends Controller
$privateMessage->read = 0;
$v = \validator($privateMessage->toArray(), [
- 'sender_id' => 'required',
+ 'sender_id' => 'required',
'receiver_id' => 'required',
- 'subject' => 'required',
- 'message' => 'required',
- 'related_to' => 'required',
- 'read' => 'required',
+ 'subject' => 'required',
+ 'message' => 'required',
+ 'related_to' => 'required',
+ 'read' => 'required',
]);
if ($v->fails()) {
diff --git a/app/Http/Controllers/ReportController.php b/app/Http/Controllers/ReportController.php
index 273fee9c2..23a35d311 100644
--- a/app/Http/Controllers/ReportController.php
+++ b/app/Http/Controllers/ReportController.php
@@ -50,14 +50,14 @@ class ReportController extends Controller
}
$this->report->create([
- 'type' => 'Request',
- 'request_id' => $torrentRequest->id,
- 'torrent_id' => 0,
- 'reporter_id' => $reportedBy->id,
+ 'type' => 'Request',
+ 'request_id' => $torrentRequest->id,
+ 'torrent_id' => 0,
+ 'reporter_id' => $reportedBy->id,
'reported_user' => $reportedUser->id,
- 'title' => $torrentRequest->name,
- 'message' => $request->get('message'),
- 'solved' => 0,
+ 'title' => $torrentRequest->name,
+ 'message' => $request->get('message'),
+ 'solved' => 0,
]);
return \to_route('request', ['id' => $id])
@@ -83,14 +83,14 @@ class ReportController extends Controller
}
$this->report->create([
- 'type' => 'Torrent',
- 'torrent_id' => $torrent->id,
- 'request_id' => 0,
- 'reporter_id' => $reportedBy->id,
+ 'type' => 'Torrent',
+ 'torrent_id' => $torrent->id,
+ 'request_id' => 0,
+ 'reporter_id' => $reportedBy->id,
'reported_user' => $reportedUser->id,
- 'title' => $torrent->name,
- 'message' => $request->get('message'),
- 'solved' => 0,
+ 'title' => $torrent->name,
+ 'message' => $request->get('message'),
+ 'solved' => 0,
]);
return \to_route('torrent', ['id' => $id])
@@ -115,14 +115,14 @@ class ReportController extends Controller
}
$this->report->create([
- 'type' => 'User',
- 'torrent_id' => 0,
- 'request_id' => 0,
- 'reporter_id' => $reportedBy->id,
+ 'type' => 'User',
+ 'torrent_id' => 0,
+ 'request_id' => 0,
+ 'reporter_id' => $reportedBy->id,
'reported_user' => $reportedUser->id,
- 'title' => $reportedUser->username,
- 'message' => $request->get('message'),
- 'solved' => 0,
+ 'title' => $reportedUser->username,
+ 'message' => $request->get('message'),
+ 'solved' => 0,
]);
return \to_route('users.show', ['username' => $username])
diff --git a/app/Http/Controllers/RequestController.php b/app/Http/Controllers/RequestController.php
index 862f136da..b78f3e1f9 100644
--- a/app/Http/Controllers/RequestController.php
+++ b/app/Http/Controllers/RequestController.php
@@ -83,10 +83,10 @@ class RequestController extends Controller
if ($torrentRequest->category->game_meta && ($torrentRequest->igdb || $torrentRequest->igdb != 0)) {
$meta = Game::with([
- 'cover' => ['url', 'image_id'],
+ 'cover' => ['url', 'image_id'],
'artworks' => ['url', 'image_id'],
- 'genres' => ['name'],
- 'videos' => ['video_id', 'name'],
+ 'genres' => ['name'],
+ 'videos' => ['video_id', 'name'],
'involved_companies.company',
'involved_companies.company.logo',
'platforms', ])
@@ -94,11 +94,11 @@ class RequestController extends Controller
}
return \view('requests.request', [
- 'torrentRequest' => $torrentRequest,
- 'voters' => $voters, 'user' => $user,
- 'comments' => $comments,
- 'carbon' => $carbon,
- 'meta' => $meta,
+ 'torrentRequest' => $torrentRequest,
+ 'voters' => $voters, 'user' => $user,
+ 'comments' => $comments,
+ 'carbon' => $carbon,
+ 'meta' => $meta,
'torrentRequestClaim' => $torrentRequestClaim,
]);
}
@@ -111,13 +111,13 @@ class RequestController extends Controller
$user = $request->user();
return \view('requests.add_request', [
- 'categories' => Category::all()->sortBy('position'),
- 'types' => Type::all()->sortBy('position'),
+ 'categories' => Category::all()->sortBy('position'),
+ 'types' => Type::all()->sortBy('position'),
'resolutions' => Resolution::all()->sortBy('position'),
- 'user' => $user,
- 'title' => $title,
- 'imdb' => \str_replace('tt', '', $imdb),
- 'tmdb' => $tmdb,
+ 'user' => $user,
+ 'title' => $title,
+ 'imdb' => \str_replace('tt', '', $imdb),
+ 'tmdb' => $tmdb,
]);
}
@@ -146,18 +146,18 @@ class RequestController extends Controller
$torrentRequest->anon = $request->input('anon');
$v = \validator($torrentRequest->toArray(), [
- 'name' => 'required|max:180',
- 'imdb' => 'required|numeric',
- 'tvdb' => 'required|numeric',
- 'tmdb' => 'required|numeric',
- 'mal' => 'required|numeric',
- 'igdb' => 'required|numeric',
- 'category_id' => 'required|exists:categories,id',
- 'type_id' => 'required|exists:types,id',
+ 'name' => 'required|max:180',
+ 'imdb' => 'required|numeric',
+ 'tvdb' => 'required|numeric',
+ 'tmdb' => 'required|numeric',
+ 'mal' => 'required|numeric',
+ 'igdb' => 'required|numeric',
+ 'category_id' => 'required|exists:categories,id',
+ 'type_id' => 'required|exists:types,id',
'resolution_id' => 'nullable|exists:resolutions,id',
- 'description' => 'required|string',
- 'bounty' => \sprintf('required|numeric|min:0|max:%s', $user->seedbonus),
- 'anon' => 'required',
+ 'description' => 'required|string',
+ 'bounty' => \sprintf('required|numeric|min:0|max:%s', $user->seedbonus),
+ 'anon' => 'required',
]);
if ($v->fails()) {
@@ -219,10 +219,10 @@ class RequestController extends Controller
$torrentRequest = TorrentRequest::findOrFail($id);
return \view('requests.edit_request', [
- 'categories' => Category::all()->sortBy('position'),
- 'types' => Type::all()->sortBy('position'),
- 'resolutions' => Resolution::all()->sortBy('position'),
- 'user' => $user,
+ 'categories' => Category::all()->sortBy('position'),
+ 'types' => Type::all()->sortBy('position'),
+ 'resolutions' => Resolution::all()->sortBy('position'),
+ 'user' => $user,
'torrentRequest' => $torrentRequest, ]);
}
@@ -261,17 +261,17 @@ class RequestController extends Controller
$torrentRequest->anon = $anon;
$v = \validator($torrentRequest->toArray(), [
- 'name' => 'required|max:180',
- 'imdb' => 'required|numeric',
- 'tvdb' => 'required|numeric',
- 'tmdb' => 'required|numeric',
- 'mal' => 'required|numeric',
- 'igdb' => 'required|numeric',
- 'category_id' => 'required|exists:categories,id',
- 'type_id' => 'required|exists:types,id',
+ 'name' => 'required|max:180',
+ 'imdb' => 'required|numeric',
+ 'tvdb' => 'required|numeric',
+ 'tmdb' => 'required|numeric',
+ 'mal' => 'required|numeric',
+ 'igdb' => 'required|numeric',
+ 'category_id' => 'required|exists:categories,id',
+ 'type_id' => 'required|exists:types,id',
'resolution_id' => 'nullable|exists:resolutions,id',
- 'description' => 'required|string',
- 'anon' => 'required',
+ 'description' => 'required|string',
+ 'anon' => 'required',
]);
if ($v->fails()) {
@@ -369,8 +369,8 @@ class RequestController extends Controller
$torrentRequest->filled_anon = $request->input('filled_anon');
$v = \validator($request->all(), [
- 'request_id' => 'required|exists:requests,id',
- 'info_hash' => 'required|exists:torrents,info_hash',
+ 'request_id' => 'required|exists:requests,id',
+ 'info_hash' => 'required|exists:torrents,info_hash',
'filled_anon' => 'required',
]);
diff --git a/app/Http/Controllers/RssController.php b/app/Http/Controllers/RssController.php
index 1acb7892b..b2118ba37 100644
--- a/app/Http/Controllers/RssController.php
+++ b/app/Http/Controllers/RssController.php
@@ -39,10 +39,10 @@ class RssController extends Controller
$privateRss = Rss::where('is_private', '=', 1)->where('user_id', '=', $user->id)->latest()->get();
return \view('rss.index', [
- 'hash' => $hash,
- 'public_rss' => $publicRss,
+ 'hash' => $hash,
+ 'public_rss' => $publicRss,
'private_rss' => $privateRss,
- 'user' => $user,
+ 'user' => $user,
]);
}
@@ -54,11 +54,11 @@ class RssController extends Controller
$user = $request->user();
return \view('rss.create', [
- 'categories' => Category::select(['id', 'name', 'position'])->get()->sortBy('position'),
- 'types' => Type::select(['id', 'name', 'position'])->get()->sortBy('position'),
- 'resolutions' => Resolution::select(['id', 'name', 'position'])->get()->sortBy('position'),
- 'genres' => Genre::all()->sortBy('name'),
- 'user' => $user,
+ 'categories' => Category::select(['id', 'name', 'position'])->get()->sortBy('position'),
+ 'types' => Type::select(['id', 'name', 'position'])->get()->sortBy('position'),
+ 'resolutions' => Resolution::select(['id', 'name', 'position'])->get()->sortBy('position'),
+ 'genres' => Genre::all()->sortBy('name'),
+ 'user' => $user,
]);
}
@@ -70,19 +70,19 @@ class RssController extends Controller
$user = $request->user();
$v = \validator($request->all(), [
- 'name' => 'required|min:3|max:255',
- 'search' => 'max:255',
- 'description' => 'max:255',
- 'uploader' => 'max:255',
- 'categories' => 'sometimes|array|max:999',
- 'categories.*' => 'sometimes|exists:categories,id',
- 'types' => 'sometimes|array|max:999',
- 'types.*' => 'sometimes|exists:types,id',
- 'resolutions' => 'sometimes|array|max:999',
+ 'name' => 'required|min:3|max:255',
+ 'search' => 'max:255',
+ 'description' => 'max:255',
+ 'uploader' => 'max:255',
+ 'categories' => 'sometimes|array|max:999',
+ 'categories.*' => 'sometimes|exists:categories,id',
+ 'types' => 'sometimes|array|max:999',
+ 'types.*' => 'sometimes|exists:types,id',
+ 'resolutions' => 'sometimes|array|max:999',
'resolutions.*' => 'sometimes|exists:resolutions,id',
- 'genres' => 'sometimes|array|max:999',
- 'genres.*' => 'sometimes|exists:genres,id',
- 'position' => 'sometimes|integer|max:9999',
+ 'genres' => 'sometimes|array|max:999',
+ 'genres.*' => 'sometimes|exists:genres,id',
+ 'position' => 'sometimes|integer|max:9999',
]);
$params = $request->only([
@@ -198,8 +198,8 @@ class RssController extends Controller
return \response()->view('rss.show', [
'torrents' => $torrents,
- 'user' => $user,
- 'rss' => $rss,
+ 'user' => $user,
+ 'rss' => $rss,
])
->header('Content-Type', 'text/xml');
}
@@ -214,12 +214,12 @@ class RssController extends Controller
\abort_unless($user->group->is_modo || $user->id === $rss->user_id, 403);
return \view('rss.edit', [
- 'categories' => Category::select(['id', 'name', 'position'])->get()->sortBy('position'),
- 'types' => Type::select(['id', 'name', 'position'])->get()->sortBy('position'),
- 'resolutions' => Resolution::select(['id', 'name', 'position'])->get()->sortBy('position'),
- 'genres' => Genre::all()->sortBy('name'),
- 'user' => $user,
- 'rss' => $rss,
+ 'categories' => Category::select(['id', 'name', 'position'])->get()->sortBy('position'),
+ 'types' => Type::select(['id', 'name', 'position'])->get()->sortBy('position'),
+ 'resolutions' => Resolution::select(['id', 'name', 'position'])->get()->sortBy('position'),
+ 'genres' => Genre::all()->sortBy('name'),
+ 'user' => $user,
+ 'rss' => $rss,
]);
}
@@ -231,18 +231,18 @@ class RssController extends Controller
$rss = Rss::where('is_private', '=', 1)->findOrFail($id);
$v = \validator($request->all(), [
- 'search' => 'max:255',
- 'description' => 'max:255',
- 'uploader' => 'max:255',
- 'categories' => 'sometimes|array|max:999',
- 'categories.*' => 'sometimes|exists:categories,id',
- 'types' => 'sometimes|array|max:999',
- 'types.*' => 'sometimes|exists:types,id',
- 'resolutions' => 'sometimes|array|max:999',
+ 'search' => 'max:255',
+ 'description' => 'max:255',
+ 'uploader' => 'max:255',
+ 'categories' => 'sometimes|array|max:999',
+ 'categories.*' => 'sometimes|exists:categories,id',
+ 'types' => 'sometimes|array|max:999',
+ 'types.*' => 'sometimes|exists:types,id',
+ 'resolutions' => 'sometimes|array|max:999',
'resolutions.*' => 'sometimes|exists:resolutions,id',
- 'genres' => 'sometimes|array|max:999',
- 'genres.*' => 'sometimes|exists:genres,id',
- 'position' => 'sometimes|integer|max:9999',
+ 'genres' => 'sometimes|array|max:999',
+ 'genres.*' => 'sometimes|exists:genres,id',
+ 'position' => 'sometimes|integer|max:9999',
]);
$params = $request->only([
diff --git a/app/Http/Controllers/SeedboxController.php b/app/Http/Controllers/SeedboxController.php
index 48fc96f1b..54a5862af 100644
--- a/app/Http/Controllers/SeedboxController.php
+++ b/app/Http/Controllers/SeedboxController.php
@@ -52,12 +52,12 @@ class SeedboxController extends Controller
$v = \validator(
$request->input(),
[
- 'name' => [
+ 'name' => [
'required',
'alpha_num',
Rule::notIn($seedboxNames),
],
- 'ip' => [
+ 'ip' => [
'bail',
'required',
'ip',
@@ -66,7 +66,7 @@ class SeedboxController extends Controller
],
[
'name.not_in' => 'You have already used this seedbox name.',
- 'ip.not_in' => 'You have already registered this seedbox IP.',
+ 'ip.not_in' => 'You have already registered this seedbox IP.',
]
);
diff --git a/app/Http/Controllers/SimilarTorrentController.php b/app/Http/Controllers/SimilarTorrentController.php
index b531db264..6700f9378 100644
--- a/app/Http/Controllers/SimilarTorrentController.php
+++ b/app/Http/Controllers/SimilarTorrentController.php
@@ -40,10 +40,10 @@ class SimilarTorrentController extends Controller
}
return \view('torrent.similar', [
- 'meta' => $meta,
- 'torrent' => $torrent,
+ 'meta' => $meta,
+ 'torrent' => $torrent,
'categoryId' => $categoryId,
- 'tmdbId' => $tmdbId,
+ 'tmdbId' => $tmdbId,
]);
}
}
diff --git a/app/Http/Controllers/Staff/ApplicationController.php b/app/Http/Controllers/Staff/ApplicationController.php
index 5b0a400b6..7beeadcd0 100644
--- a/app/Http/Controllers/Staff/ApplicationController.php
+++ b/app/Http/Controllers/Staff/ApplicationController.php
@@ -88,7 +88,7 @@ class ApplicationController extends Controller
]);
} else {
$v = \validator($request->all(), [
- 'email' => 'required|string|email|max:70|unique:users|unique:invites',
+ 'email' => 'required|string|email|max:70|unique:users|unique:invites',
'approve' => 'required',
]);
}
diff --git a/app/Http/Controllers/Staff/ArticleController.php b/app/Http/Controllers/Staff/ArticleController.php
index 25dff2816..bd34a048b 100644
--- a/app/Http/Controllers/Staff/ArticleController.php
+++ b/app/Http/Controllers/Staff/ArticleController.php
@@ -65,8 +65,8 @@ class ArticleController extends Controller
}
$v = \validator($article->toArray(), [
- 'title' => 'required',
- 'slug' => 'required',
+ 'title' => 'required',
+ 'slug' => 'required',
'content' => 'required|min:20',
'user_id' => 'required',
]);
@@ -114,8 +114,8 @@ class ArticleController extends Controller
}
$v = \validator($article->toArray(), [
- 'title' => 'required',
- 'slug' => 'required',
+ 'title' => 'required',
+ 'slug' => 'required',
'content' => 'required|min:20',
]);
diff --git a/app/Http/Controllers/Staff/BanController.php b/app/Http/Controllers/Staff/BanController.php
index a89ba0a2d..5c696502d 100644
--- a/app/Http/Controllers/Staff/BanController.php
+++ b/app/Http/Controllers/Staff/BanController.php
@@ -107,7 +107,7 @@ class BanController extends Controller
$ban->removed_at = Carbon::now();
$v = \validator($request->all(), [
- 'group_id' => 'required',
+ 'group_id' => 'required',
'unban_reason' => 'required',
]);
diff --git a/app/Http/Controllers/Staff/BonExchangeController.php b/app/Http/Controllers/Staff/BonExchangeController.php
index bcf138a2e..48da184cb 100644
--- a/app/Http/Controllers/Staff/BonExchangeController.php
+++ b/app/Http/Controllers/Staff/BonExchangeController.php
@@ -52,13 +52,13 @@ class BonExchangeController extends Controller
$bonExchange->invite = $request->type === 'invite';
$v = \validator($bonExchange->toArray(), [
- 'description' => 'required',
- 'value' => 'required|numeric',
- 'cost' => 'required|numeric',
- 'upload' => 'required|boolean',
- 'download' => 'required|boolean',
+ 'description' => 'required',
+ 'value' => 'required|numeric',
+ 'cost' => 'required|numeric',
+ 'upload' => 'required|boolean',
+ 'download' => 'required|boolean',
'personal_freeleech' => 'required|boolean',
- 'invite' => 'required|boolean',
+ 'invite' => 'required|boolean',
]);
if ($v->fails()) {
@@ -97,13 +97,13 @@ class BonExchangeController extends Controller
$bonExchange->invite = $request->type === 'invite';
$v = \validator($bonExchange->toArray(), [
- 'description' => 'required',
- 'value' => 'required|numeric',
- 'cost' => 'required|numeric',
- 'upload' => 'required|boolean',
- 'download' => 'required|boolean',
+ 'description' => 'required',
+ 'value' => 'required|numeric',
+ 'cost' => 'required|numeric',
+ 'upload' => 'required|boolean',
+ 'download' => 'required|boolean',
'personal_freeleech' => 'required|boolean',
- 'invite' => 'required|boolean',
+ 'invite' => 'required|boolean',
]);
if ($v->fails()) {
diff --git a/app/Http/Controllers/Staff/CategoryController.php b/app/Http/Controllers/Staff/CategoryController.php
index fcccd46fa..4cfadebeb 100644
--- a/app/Http/Controllers/Staff/CategoryController.php
+++ b/app/Http/Controllers/Staff/CategoryController.php
@@ -69,15 +69,15 @@ class CategoryController extends Controller
}
$v = \validator($category->toArray(), [
- 'name' => 'required',
- 'slug' => 'required',
- 'position' => 'required',
- 'icon' => 'required',
- 'movie_meta' => 'required',
- 'tv_meta' => 'required',
- 'game_meta' => 'required',
- 'music_meta' => 'required',
- 'no_meta' => 'required',
+ 'name' => 'required',
+ 'slug' => 'required',
+ 'position' => 'required',
+ 'icon' => 'required',
+ 'movie_meta' => 'required',
+ 'tv_meta' => 'required',
+ 'game_meta' => 'required',
+ 'music_meta' => 'required',
+ 'no_meta' => 'required',
]);
if ($v->fails()) {
@@ -126,15 +126,15 @@ class CategoryController extends Controller
}
$v = \validator($category->toArray(), [
- 'name' => 'required',
- 'slug' => 'required',
- 'position' => 'required',
- 'icon' => 'required',
- 'movie_meta' => 'required',
- 'tv_meta' => 'required',
- 'game_meta' => 'required',
- 'music_meta' => 'required',
- 'no_meta' => 'required',
+ 'name' => 'required',
+ 'slug' => 'required',
+ 'position' => 'required',
+ 'icon' => 'required',
+ 'movie_meta' => 'required',
+ 'tv_meta' => 'required',
+ 'game_meta' => 'required',
+ 'music_meta' => 'required',
+ 'no_meta' => 'required',
]);
if ($v->fails()) {
diff --git a/app/Http/Controllers/Staff/ChatBotController.php b/app/Http/Controllers/Staff/ChatBotController.php
index e8279323b..6923412b3 100644
--- a/app/Http/Controllers/Staff/ChatBotController.php
+++ b/app/Http/Controllers/Staff/ChatBotController.php
@@ -44,8 +44,8 @@ class ChatBotController extends Controller
$bot = Bot::findOrFail($id);
return \view('Staff.chat.bot.edit', [
- 'user' => $user,
- 'bot' => $bot,
+ 'user' => $user,
+ 'bot' => $bot,
]);
}
@@ -59,27 +59,27 @@ class ChatBotController extends Controller
if ($request->has('command') && $request->input('command') == $bot->command) {
$v = \validator($request->all(), [
- 'name' => 'required|min:3|max:255',
- 'command' => 'required|alpha_dash|min:3|max:255',
+ 'name' => 'required|min:3|max:255',
+ 'command' => 'required|alpha_dash|min:3|max:255',
'position' => 'required',
- 'color' => 'required',
- 'icon' => 'required',
- 'emoji' => 'required',
- 'help' => 'sometimes|max:9999',
- 'info' => 'sometimes|max:9999',
- 'about' => 'sometimes|max:9999',
+ 'color' => 'required',
+ 'icon' => 'required',
+ 'emoji' => 'required',
+ 'help' => 'sometimes|max:9999',
+ 'info' => 'sometimes|max:9999',
+ 'about' => 'sometimes|max:9999',
]);
} else {
$v = \validator($request->all(), [
- 'name' => 'required|min:3|max:255',
- 'command' => 'required|alpha_dash|min:3|max:255|unique:bots',
+ 'name' => 'required|min:3|max:255',
+ 'command' => 'required|alpha_dash|min:3|max:255|unique:bots',
'position' => 'required',
- 'color' => 'required',
- 'icon' => 'required',
- 'emoji' => 'required',
- 'help' => 'sometimes|max:9999',
- 'info' => 'sometimes|max:9999',
- 'about' => 'sometimes|max:9999',
+ 'color' => 'required',
+ 'icon' => 'required',
+ 'emoji' => 'required',
+ 'help' => 'sometimes|max:9999',
+ 'info' => 'sometimes|max:9999',
+ 'about' => 'sometimes|max:9999',
]);
}
diff --git a/app/Http/Controllers/Staff/ChatRoomController.php b/app/Http/Controllers/Staff/ChatRoomController.php
index 563f4d58d..00448682a 100644
--- a/app/Http/Controllers/Staff/ChatRoomController.php
+++ b/app/Http/Controllers/Staff/ChatRoomController.php
@@ -39,7 +39,7 @@ class ChatRoomController extends Controller
$chatrooms = $this->chatRepository->rooms();
return \view('Staff.chat.room.index', [
- 'chatrooms' => $chatrooms,
+ 'chatrooms' => $chatrooms,
]);
}
diff --git a/app/Http/Controllers/Staff/ChatStatusController.php b/app/Http/Controllers/Staff/ChatStatusController.php
index a0174bbea..b0da36635 100644
--- a/app/Http/Controllers/Staff/ChatStatusController.php
+++ b/app/Http/Controllers/Staff/ChatStatusController.php
@@ -61,9 +61,9 @@ class ChatStatusController extends Controller
$chatstatus->icon = $request->input('icon');
$v = \validator($chatstatus->toArray(), [
- 'name' => 'required',
+ 'name' => 'required',
'color' => 'required',
- 'icon' => 'required',
+ 'icon' => 'required',
]);
if ($v->fails()) {
@@ -98,9 +98,9 @@ class ChatStatusController extends Controller
$chatstatus->icon = $request->input('icon');
$v = \validator($chatstatus->toArray(), [
- 'name' => 'required',
+ 'name' => 'required',
'color' => 'required',
- 'icon' => 'required',
+ 'icon' => 'required',
]);
if ($v->fails()) {
diff --git a/app/Http/Controllers/Staff/DistributorController.php b/app/Http/Controllers/Staff/DistributorController.php
index 9040dc3e8..68c4da8b5 100644
--- a/app/Http/Controllers/Staff/DistributorController.php
+++ b/app/Http/Controllers/Staff/DistributorController.php
@@ -50,8 +50,8 @@ class DistributorController extends Controller
$distributor->position = $request->input('position');
$v = \validator($distributor->toArray(), [
- 'name' => 'required|unique:distributors,name',
- 'slug' => 'required',
+ 'name' => 'required|unique:distributors,name',
+ 'slug' => 'required',
'position' => 'required',
]);
@@ -87,8 +87,8 @@ class DistributorController extends Controller
$distributor->position = $request->input('position');
$v = \validator($distributor->toArray(), [
- 'name' => 'required',
- 'slug' => 'required',
+ 'name' => 'required',
+ 'slug' => 'required',
'position' => 'required',
]);
diff --git a/app/Http/Controllers/Staff/ForumController.php b/app/Http/Controllers/Staff/ForumController.php
index aee7c1f9f..26d181328 100644
--- a/app/Http/Controllers/Staff/ForumController.php
+++ b/app/Http/Controllers/Staff/ForumController.php
@@ -112,8 +112,8 @@ class ForumController extends Controller
return \view('Staff.forum.edit', [
'categories' => $categories,
- 'groups' => $groups,
- 'forum' => $forum,
+ 'groups' => $groups,
+ 'forum' => $forum,
]);
}
diff --git a/app/Http/Controllers/Staff/GiftController.php b/app/Http/Controllers/Staff/GiftController.php
index a0f27534d..143aeb885 100644
--- a/app/Http/Controllers/Staff/GiftController.php
+++ b/app/Http/Controllers/Staff/GiftController.php
@@ -44,9 +44,9 @@ class GiftController extends Controller
$flTokens = $request->input('fl_tokens');
$v = \validator($request->all(), [
- 'username' => 'required|exists:users,username|max:180',
+ 'username' => 'required|exists:users,username|max:180',
'seedbonus' => 'required|numeric|min:0',
- 'invites' => 'required|numeric|min:0',
+ 'invites' => 'required|numeric|min:0',
'fl_tokens' => 'required|numeric|min:0',
]);
diff --git a/app/Http/Controllers/Staff/GroupController.php b/app/Http/Controllers/Staff/GroupController.php
index 44272df17..f00d5ff38 100644
--- a/app/Http/Controllers/Staff/GroupController.php
+++ b/app/Http/Controllers/Staff/GroupController.php
@@ -79,11 +79,11 @@ class GroupController extends Controller
$group->autogroup = $request->input('autogroup');
$v = \validator($group->toArray(), [
- 'name' => 'required|unique:groups',
- 'slug' => 'required|unique:groups',
+ 'name' => 'required|unique:groups',
+ 'slug' => 'required|unique:groups',
'position' => 'required',
- 'color' => 'required',
- 'icon' => 'required',
+ 'color' => 'required',
+ 'icon' => 'required',
]);
if (! $request->user()->group->is_owner && $request->input('is_owner') == 1) {
@@ -156,11 +156,11 @@ class GroupController extends Controller
$group->autogroup = $request->input('autogroup');
$v = \validator($group->toArray(), [
- 'name' => 'required',
- 'slug' => 'required',
+ 'name' => 'required',
+ 'slug' => 'required',
'position' => 'required',
- 'color' => 'required',
- 'icon' => 'required',
+ 'color' => 'required',
+ 'icon' => 'required',
]);
if (! $request->user()->group->is_owner && $request->input('is_owner') == 1) {
diff --git a/app/Http/Controllers/Staff/HomeController.php b/app/Http/Controllers/Staff/HomeController.php
index 43670f8c9..d110eb465 100644
--- a/app/Http/Controllers/Staff/HomeController.php
+++ b/app/Http/Controllers/Staff/HomeController.php
@@ -91,18 +91,18 @@ class HomeController extends Controller
$filePermissions = $systemInformation->directoryPermissions();
return \view('Staff.dashboard.index', [
- 'users' => $users,
- 'torrents' => $torrents,
- 'peers' => $peers,
- 'reports' => $reports,
- 'apps' => $apps,
- 'certificate' => $certificate,
- 'uptime' => $uptime,
- 'ram' => $ram,
- 'disk' => $disk,
- 'avg' => $avg,
- 'basic' => $basic,
- 'file_permissions' => $filePermissions,
+ 'users' => $users,
+ 'torrents' => $torrents,
+ 'peers' => $peers,
+ 'reports' => $reports,
+ 'apps' => $apps,
+ 'certificate' => $certificate,
+ 'uptime' => $uptime,
+ 'ram' => $ram,
+ 'disk' => $disk,
+ 'avg' => $avg,
+ 'basic' => $basic,
+ 'file_permissions' => $filePermissions,
]);
}
}
diff --git a/app/Http/Controllers/Staff/InternalController.php b/app/Http/Controllers/Staff/InternalController.php
index 56e4952cf..908a2135c 100644
--- a/app/Http/Controllers/Staff/InternalController.php
+++ b/app/Http/Controllers/Staff/InternalController.php
@@ -65,9 +65,9 @@ class InternalController extends Controller
$internal->effect = $request->input('effect');
$v = \validator($internal->toArray(), [
- 'name' => 'required',
- 'icon' => 'required',
- 'effect' => 'required',
+ 'name' => 'required',
+ 'icon' => 'required',
+ 'effect' => 'required',
]);
if ($v->fails()) {
@@ -103,7 +103,7 @@ class InternalController extends Controller
$internal->effect = $request->input('effect');
$v = \validator($internal->toArray(), [
- 'name' => 'required|unique:internals',
+ 'name' => 'required|unique:internals',
'icon',
'effect',
]);
diff --git a/app/Http/Controllers/Staff/ModerationController.php b/app/Http/Controllers/Staff/ModerationController.php
index ac42757c8..b5bb2d4ea 100644
--- a/app/Http/Controllers/Staff/ModerationController.php
+++ b/app/Http/Controllers/Staff/ModerationController.php
@@ -44,10 +44,10 @@ class ModerationController extends Controller
$rejected = Torrent::with(['user', 'category', 'type'])->rejected()->get();
return \view('Staff.moderation.index', [
- 'current' => $current,
- 'pending' => $pending,
+ 'current' => $current,
+ 'pending' => $pending,
'postponed' => $postponed,
- 'rejected' => $rejected,
+ 'rejected' => $rejected,
]);
}
@@ -91,8 +91,8 @@ class ModerationController extends Controller
public function postpone(Request $request): \Illuminate\Http\RedirectResponse
{
$v = \validator($request->all(), [
- 'id' => 'required|exists:torrents',
- 'slug' => 'required|exists:torrents',
+ 'id' => 'required|exists:torrents',
+ 'slug' => 'required|exists:torrents',
'message' => 'required',
]);
@@ -125,8 +125,8 @@ class ModerationController extends Controller
public function reject(Request $request): \Illuminate\Http\RedirectResponse
{
$v = \validator($request->all(), [
- 'id' => 'required|exists:torrents',
- 'slug' => 'required|exists:torrents',
+ 'id' => 'required|exists:torrents',
+ 'slug' => 'required|exists:torrents',
'message' => 'required',
]);
diff --git a/app/Http/Controllers/Staff/NoteController.php b/app/Http/Controllers/Staff/NoteController.php
index c620ea412..650d4b1db 100644
--- a/app/Http/Controllers/Staff/NoteController.php
+++ b/app/Http/Controllers/Staff/NoteController.php
@@ -47,9 +47,9 @@ class NoteController extends Controller
$note->message = $request->input('message');
$v = \validator($note->toArray(), [
- 'user_id' => 'required',
+ 'user_id' => 'required',
'staff_id' => 'required',
- 'message' => 'required',
+ 'message' => 'required',
]);
if ($v->fails()) {
diff --git a/app/Http/Controllers/Staff/PageController.php b/app/Http/Controllers/Staff/PageController.php
index 5c96c7a19..915284221 100644
--- a/app/Http/Controllers/Staff/PageController.php
+++ b/app/Http/Controllers/Staff/PageController.php
@@ -52,8 +52,8 @@ class PageController extends Controller
$page->content = $request->input('content');
$v = \validator($page->toArray(), [
- 'name' => 'required',
- 'slug' => 'required',
+ 'name' => 'required',
+ 'slug' => 'required',
'content' => 'required',
]);
@@ -89,8 +89,8 @@ class PageController extends Controller
$page->content = $request->input('content');
$v = \validator($page->toArray(), [
- 'name' => 'required',
- 'slug' => 'required',
+ 'name' => 'required',
+ 'slug' => 'required',
'content' => 'required',
]);
diff --git a/app/Http/Controllers/Staff/RegionController.php b/app/Http/Controllers/Staff/RegionController.php
index ac11df35d..a0d32edf8 100644
--- a/app/Http/Controllers/Staff/RegionController.php
+++ b/app/Http/Controllers/Staff/RegionController.php
@@ -50,8 +50,8 @@ class RegionController extends Controller
$region->position = $request->input('position');
$v = \validator($region->toArray(), [
- 'name' => 'required|unique:regions,name',
- 'slug' => 'required',
+ 'name' => 'required|unique:regions,name',
+ 'slug' => 'required',
'position' => 'required',
]);
@@ -87,8 +87,8 @@ class RegionController extends Controller
$region->position = $request->input('position');
$v = \validator($region->toArray(), [
- 'name' => 'required',
- 'slug' => 'required',
+ 'name' => 'required',
+ 'slug' => 'required',
'position' => 'required',
]);
diff --git a/app/Http/Controllers/Staff/ReportController.php b/app/Http/Controllers/Staff/ReportController.php
index b8fe25d21..dc7172859 100644
--- a/app/Http/Controllers/Staff/ReportController.php
+++ b/app/Http/Controllers/Staff/ReportController.php
@@ -63,7 +63,7 @@ class ReportController extends Controller
$report->solved = 1;
$v = \validator($report->toArray(), [
- 'verdict' => 'required|min:3',
+ 'verdict' => 'required|min:3',
'staff_id' => 'required',
]);
diff --git a/app/Http/Controllers/Staff/ResolutionController.php b/app/Http/Controllers/Staff/ResolutionController.php
index 06905d469..19e48d07d 100644
--- a/app/Http/Controllers/Staff/ResolutionController.php
+++ b/app/Http/Controllers/Staff/ResolutionController.php
@@ -49,8 +49,8 @@ class ResolutionController extends Controller
$resolution->position = $request->input('position');
$v = \validator($resolution->toArray(), [
- 'name' => 'required',
- 'slug' => 'required',
+ 'name' => 'required',
+ 'slug' => 'required',
'position' => 'required',
]);
@@ -86,8 +86,8 @@ class ResolutionController extends Controller
$resolution->position = $request->input('position');
$v = \validator($resolution->toArray(), [
- 'name' => 'required',
- 'slug' => 'required',
+ 'name' => 'required',
+ 'slug' => 'required',
'position' => 'required',
]);
diff --git a/app/Http/Controllers/Staff/RssController.php b/app/Http/Controllers/Staff/RssController.php
index 67ee7d963..84bd93d1a 100644
--- a/app/Http/Controllers/Staff/RssController.php
+++ b/app/Http/Controllers/Staff/RssController.php
@@ -34,7 +34,7 @@ class RssController extends Controller
$publicRss = Rss::where('is_private', '=', 0)->oldest('position')->get();
return \view('Staff.rss.index', [
- 'hash' => $hash,
+ 'hash' => $hash,
'public_rss' => $publicRss,
]);
}
@@ -47,11 +47,11 @@ class RssController extends Controller
$user = $request->user();
return \view('Staff.rss.create', [
- 'categories' => Category::select(['id', 'name', 'position'])->get()->sortBy('position'),
- 'types' => Type::select(['id', 'name', 'position'])->get()->sortBy('position'),
+ 'categories' => Category::select(['id', 'name', 'position'])->get()->sortBy('position'),
+ 'types' => Type::select(['id', 'name', 'position'])->get()->sortBy('position'),
'resolutions' => Resolution::select(['id', 'name', 'position'])->get()->sortBy('position'),
- 'genres' => Genre::all()->sortBy('name'),
- 'user' => $user,
+ 'genres' => Genre::all()->sortBy('name'),
+ 'user' => $user,
]);
}
@@ -63,19 +63,19 @@ class RssController extends Controller
$user = $request->user();
$v = \validator($request->all(), [
- 'name' => 'required|min:3|max:255',
- 'search' => 'max:255',
- 'description' => 'max:255',
- 'uploader' => 'max:255',
- 'categories' => 'sometimes|array|max:999',
- 'categories.*' => 'sometimes|exists:categories,id',
- 'types' => 'sometimes|array|max:999',
- 'types.*' => 'sometimes|exists:types,id',
- 'resolutions' => 'sometimes|array|max:999',
+ 'name' => 'required|min:3|max:255',
+ 'search' => 'max:255',
+ 'description' => 'max:255',
+ 'uploader' => 'max:255',
+ 'categories' => 'sometimes|array|max:999',
+ 'categories.*' => 'sometimes|exists:categories,id',
+ 'types' => 'sometimes|array|max:999',
+ 'types.*' => 'sometimes|exists:types,id',
+ 'resolutions' => 'sometimes|array|max:999',
'resolutions.*' => 'sometimes|exists:resolutions,id',
- 'genres' => 'sometimes|array|max:999',
- 'genres.*' => 'sometimes|exists:genres,id',
- 'position' => 'sometimes|integer|max:9999',
+ 'genres' => 'sometimes|array|max:999',
+ 'genres.*' => 'sometimes|exists:genres,id',
+ 'position' => 'sometimes|integer|max:9999',
]);
$params = $request->only([
@@ -146,12 +146,12 @@ class RssController extends Controller
$rss = Rss::where('is_private', '=', 0)->findOrFail($id);
return \view('Staff.rss.edit', [
- 'categories' => Category::select(['id', 'name', 'position'])->get()->sortBy('position'),
- 'types' => Type::select(['id', 'name', 'position'])->get()->sortBy('position'),
+ 'categories' => Category::select(['id', 'name', 'position'])->get()->sortBy('position'),
+ 'types' => Type::select(['id', 'name', 'position'])->get()->sortBy('position'),
'resolutions' => Resolution::select(['id', 'name', 'position'])->get()->sortBy('position'),
- 'genres' => Genre::all()->sortBy('name'),
- 'user' => $user,
- 'rss' => $rss,
+ 'genres' => Genre::all()->sortBy('name'),
+ 'user' => $user,
+ 'rss' => $rss,
]);
}
@@ -163,19 +163,19 @@ class RssController extends Controller
$rss = Rss::where('is_private', '=', 0)->findOrFail($id);
$v = \validator($request->all(), [
- 'name' => 'required|min:3|max:255',
- 'search' => 'max:255',
- 'description' => 'max:255',
- 'uploader' => 'max:255',
- 'categories' => 'sometimes|array|max:999',
- 'categories.*' => 'sometimes|exists:categories,id',
- 'types' => 'sometimes|array|max:999',
- 'types.*' => 'sometimes|exists:types,id',
- 'resolutions' => 'sometimes|array|max:999',
+ 'name' => 'required|min:3|max:255',
+ 'search' => 'max:255',
+ 'description' => 'max:255',
+ 'uploader' => 'max:255',
+ 'categories' => 'sometimes|array|max:999',
+ 'categories.*' => 'sometimes|exists:categories,id',
+ 'types' => 'sometimes|array|max:999',
+ 'types.*' => 'sometimes|exists:types,id',
+ 'resolutions' => 'sometimes|array|max:999',
'resolutions.*' => 'sometimes|exists:resolutions,id',
- 'genres' => 'sometimes|array|max:999',
- 'genres.*' => 'sometimes|exists:genres,id',
- 'position' => 'sometimes|integer|max:9999',
+ 'genres' => 'sometimes|array|max:999',
+ 'genres.*' => 'sometimes|exists:genres,id',
+ 'position' => 'sometimes|integer|max:9999',
]);
$params = $request->only([
diff --git a/app/Http/Controllers/Staff/TypeController.php b/app/Http/Controllers/Staff/TypeController.php
index c603b562e..e907dedaa 100644
--- a/app/Http/Controllers/Staff/TypeController.php
+++ b/app/Http/Controllers/Staff/TypeController.php
@@ -52,8 +52,8 @@ class TypeController extends Controller
$type->position = $request->input('position');
$v = \validator($type->toArray(), [
- 'name' => 'required',
- 'slug' => 'required',
+ 'name' => 'required',
+ 'slug' => 'required',
'position' => 'required',
]);
@@ -89,8 +89,8 @@ class TypeController extends Controller
$type->position = $request->input('position');
$v = \validator($type->toArray(), [
- 'name' => 'required',
- 'slug' => 'required',
+ 'name' => 'required',
+ 'slug' => 'required',
'position' => 'required',
]);
diff --git a/app/Http/Controllers/Staff/UserController.php b/app/Http/Controllers/Staff/UserController.php
index be9a66592..f2b370b46 100644
--- a/app/Http/Controllers/Staff/UserController.php
+++ b/app/Http/Controllers/Staff/UserController.php
@@ -68,10 +68,10 @@ class UserController extends Controller
$notes = Note::where('user_id', '=', $user->id)->latest()->paginate(25);
return \view('Staff.user.edit', [
- 'user' => $user,
- 'groups' => $groups,
+ 'user' => $user,
+ 'groups' => $groups,
'internals' => $internals,
- 'notes' => $notes,
+ 'notes' => $notes,
]);
}
diff --git a/app/Http/Controllers/Staff/VersionController.php b/app/Http/Controllers/Staff/VersionController.php
index 03a3b8ace..51eb4fc43 100644
--- a/app/Http/Controllers/Staff/VersionController.php
+++ b/app/Http/Controllers/Staff/VersionController.php
@@ -41,7 +41,7 @@ class VersionController extends Controller
$lastestVersion = $response[0]['tag_name'];
return \response([
- 'updated' => ! \version_compare($this->versionController, $lastestVersion, '<'),
+ 'updated' => ! \version_compare($this->versionController, $lastestVersion, '<'),
'latestversion' => $lastestVersion,
]);
}
diff --git a/app/Http/Controllers/Staff/WatchlistController.php b/app/Http/Controllers/Staff/WatchlistController.php
index 53652c1e5..1b16fcd82 100644
--- a/app/Http/Controllers/Staff/WatchlistController.php
+++ b/app/Http/Controllers/Staff/WatchlistController.php
@@ -41,9 +41,9 @@ class WatchlistController extends Controller
$watchedUser->message = $request->input('message');
$v = \validator($watchedUser->toArray(), [
- 'user_id' => 'required|exists:users,id',
+ 'user_id' => 'required|exists:users,id',
'staff_id' => 'required|exists:users,id',
- 'message' => 'required|min:3',
+ 'message' => 'required|min:3',
]);
if ($v->fails()) {
diff --git a/app/Http/Controllers/StatsController.php b/app/Http/Controllers/StatsController.php
index 7bdc158d5..0d8b741b4 100644
--- a/app/Http/Controllers/StatsController.php
+++ b/app/Http/Controllers/StatsController.php
@@ -123,25 +123,25 @@ class StatsController extends Controller
$creditedUpDown = $creditedUpload + $creditedDownload;
return \view('stats.index', [
- 'all_user' => $allUser,
- 'active_user' => $activeUser,
- 'disabled_user' => $disabledUser,
- 'pruned_user' => $prunedUser,
- 'banned_user' => $bannedUser,
- 'num_torrent' => $numTorrent,
- 'categories' => $categories,
- 'num_hd' => $numHd,
- 'num_sd' => $numSd,
- 'torrent_size' => $torrentSize,
- 'num_seeders' => $numSeeders,
- 'num_leechers' => $numLeechers,
- 'num_peers' => $numPeers,
- 'actual_upload' => $actualUpload,
- 'actual_download' => $actualDownload,
- 'actual_up_down' => $actualUpDown,
- 'credited_upload' => $creditedUpload,
+ 'all_user' => $allUser,
+ 'active_user' => $activeUser,
+ 'disabled_user' => $disabledUser,
+ 'pruned_user' => $prunedUser,
+ 'banned_user' => $bannedUser,
+ 'num_torrent' => $numTorrent,
+ 'categories' => $categories,
+ 'num_hd' => $numHd,
+ 'num_sd' => $numSd,
+ 'torrent_size' => $torrentSize,
+ 'num_seeders' => $numSeeders,
+ 'num_leechers' => $numLeechers,
+ 'num_peers' => $numPeers,
+ 'actual_upload' => $actualUpload,
+ 'actual_download' => $actualDownload,
+ 'actual_up_down' => $actualUpDown,
+ 'credited_upload' => $creditedUpload,
'credited_download' => $creditedDownload,
- 'credited_up_down' => $creditedUpDown,
+ 'credited_up_down' => $creditedUpDown,
]);
}
diff --git a/app/Http/Controllers/SubtitleController.php b/app/Http/Controllers/SubtitleController.php
index 297a36ca0..cb7e326aa 100644
--- a/app/Http/Controllers/SubtitleController.php
+++ b/app/Http/Controllers/SubtitleController.php
@@ -87,13 +87,13 @@ class SubtitleController extends Controller
$subtitle->moderated_by = 1;
$v = \validator($subtitle->toArray(), [
- 'title' => 'required',
- 'file_name' => 'required',
- 'file_size' => 'required',
- 'extension' => 'required|in:.srt,.ass,.sup,.zip',
+ 'title' => 'required',
+ 'file_name' => 'required',
+ 'file_size' => 'required',
+ 'extension' => 'required|in:.srt,.ass,.sup,.zip',
'language_id' => 'required',
- 'user_id' => 'required',
- 'torrent_id' => 'required',
+ 'user_id' => 'required',
+ 'torrent_id' => 'required',
]);
if ($v->fails()) {
diff --git a/app/Http/Controllers/TicketController.php b/app/Http/Controllers/TicketController.php
index ede096c88..c2baa7675 100644
--- a/app/Http/Controllers/TicketController.php
+++ b/app/Http/Controllers/TicketController.php
@@ -59,11 +59,11 @@ class TicketController extends Controller
$ticket->body = $request->input('body');
$v = \validator($ticket->toArray(), [
- 'user_id' => 'required|exists:users,id',
+ 'user_id' => 'required|exists:users,id',
'category_id' => 'required|exists:ticket_categories,id',
'priority_id' => 'required|exists:ticket_priorities,id',
- 'subject' => 'required',
- 'body' => 'required',
+ 'subject' => 'required',
+ 'body' => 'required',
]);
if ($v->fails()) {
@@ -98,7 +98,7 @@ class TicketController extends Controller
}
return \view('ticket.show', [
- 'user' => $user,
+ 'user' => $user,
'ticket' => $ticket,
]);
}
@@ -118,11 +118,11 @@ class TicketController extends Controller
$ticket->body = $request->input('body');
$v = \validator($ticket->toArray(), [
- 'user_id' => 'required|exists:users,id',
+ 'user_id' => 'required|exists:users,id',
'category_id' => 'required|exists:ticket_categories,id',
'priority_id' => 'required|exists:ticket_priorities,id',
- 'subject' => 'required',
- 'body' => 'required',
+ 'subject' => 'required',
+ 'body' => 'required',
]);
if ($v->fails()) {
diff --git a/app/Http/Controllers/TopicController.php b/app/Http/Controllers/TopicController.php
index b509f8ea6..61f2dcbd9 100644
--- a/app/Http/Controllers/TopicController.php
+++ b/app/Http/Controllers/TopicController.php
@@ -83,10 +83,10 @@ class TopicController extends Controller
$topic->save();
return \view('forum.topic', [
- 'topic' => $topic,
- 'forum' => $forum,
- 'category' => $category,
- 'posts' => $posts,
+ 'topic' => $topic,
+ 'forum' => $forum,
+ 'category' => $category,
+ 'posts' => $posts,
'firstPost' => $firstPost,
]);
}
@@ -106,9 +106,9 @@ class TopicController extends Controller
}
return \view('forum.new_topic', [
- 'forum' => $forum,
+ 'forum' => $forum,
'category' => $category,
- 'title' => $request->input('title'),
+ 'title' => $request->input('title'),
]);
}
@@ -141,17 +141,17 @@ class TopicController extends Controller
$topic->forum_id = $forum->id;
$v = \validator($topic->toArray(), [
- 'name' => 'required',
- 'slug' => 'required',
- 'state' => 'required',
- 'num_post' => '',
- 'first_post_user_id' => 'required',
+ 'name' => 'required',
+ 'slug' => 'required',
+ 'state' => 'required',
+ 'num_post' => '',
+ 'first_post_user_id' => 'required',
'first_post_user_username' => 'required',
- 'last_post_user_id' => '',
- 'last_post_user_username' => '',
- 'views' => '',
- 'pinned' => '',
- 'forum_id' => 'required',
+ 'last_post_user_id' => '',
+ 'last_post_user_username' => '',
+ 'views' => '',
+ 'pinned' => '',
+ 'forum_id' => 'required',
]);
if ($v->fails()) {
@@ -165,8 +165,8 @@ class TopicController extends Controller
$post->user_id = $user->id;
$post->topic_id = $topic->id;
$v = \validator($post->toArray(), [
- 'content' => 'required',
- 'user_id' => 'required',
+ 'content' => 'required',
+ 'user_id' => 'required',
'topic_id' => 'required',
]);
if ($v->fails()) {
diff --git a/app/Http/Controllers/TorrentController.php b/app/Http/Controllers/TorrentController.php
index 8dfc6d51b..82ca8bcb4 100644
--- a/app/Http/Controllers/TorrentController.php
+++ b/app/Http/Controllers/TorrentController.php
@@ -110,10 +110,10 @@ class TorrentController extends Controller
if ($torrent->category->game_meta && ($torrent->igdb || $torrent->igdb != 0)) {
$meta = Game::with([
- 'cover' => ['url', 'image_id'],
+ 'cover' => ['url', 'image_id'],
'artworks' => ['url', 'image_id'],
- 'genres' => ['name'],
- 'videos' => ['video_id', 'name'],
+ 'genres' => ['name'],
+ 'videos' => ['video_id', 'name'],
'involved_companies.company',
'involved_companies.company.logo',
'platforms', ])
@@ -133,22 +133,22 @@ class TorrentController extends Controller
$playlists = $user->playlists;
return \view('torrent.torrent', [
- 'torrent' => $torrent,
- 'comments' => $comments,
- 'user' => $user,
+ 'torrent' => $torrent,
+ 'comments' => $comments,
+ 'user' => $user,
'personal_freeleech' => $personalFreeleech,
- 'freeleech_token' => $freeleechToken,
- 'meta' => $meta,
- 'trailer' => $trailer,
- 'platforms' => $platforms,
- 'total_tips' => $totalTips,
- 'user_tips' => $userTips,
- 'featured' => $featured,
- 'mediaInfo' => $mediaInfo,
- 'uploader' => $uploader,
+ 'freeleech_token' => $freeleechToken,
+ 'meta' => $meta,
+ 'trailer' => $trailer,
+ 'platforms' => $platforms,
+ 'total_tips' => $totalTips,
+ 'user_tips' => $userTips,
+ 'featured' => $featured,
+ 'mediaInfo' => $mediaInfo,
+ 'uploader' => $uploader,
'last_seed_activity' => $lastSeedActivity,
- 'playlists' => $playlists,
- 'audits' => $audits,
+ 'playlists' => $playlists,
+ 'audits' => $audits,
]);
}
@@ -163,14 +163,14 @@ class TorrentController extends Controller
\abort_unless($user->group->is_modo || $user->id === $torrent->user_id, 403);
return \view('torrent.edit_torrent', [
- 'categories' => Category::all()->sortBy('position'),
- 'types' => Type::all()->sortBy('position'),
- 'resolutions' => Resolution::all()->sortBy('position'),
- 'regions' => Region::all()->sortBy('position'),
+ 'categories' => Category::all()->sortBy('position'),
+ 'types' => Type::all()->sortBy('position'),
+ 'resolutions' => Resolution::all()->sortBy('position'),
+ 'regions' => Region::all()->sortBy('position'),
'distributors' => Distributor::all()->sortBy('position'),
- 'keywords' => Keyword::where('torrent_id', '=', $torrent->id)->pluck('name'),
- 'torrent' => $torrent,
- 'user' => $user,
+ 'keywords' => Keyword::where('torrent_id', '=', $torrent->id)->pluck('name'),
+ 'torrent' => $torrent,
+ 'user' => $user,
]);
}
@@ -224,24 +224,24 @@ class TorrentController extends Controller
}
$v = \validator($torrent->toArray(), [
- 'name' => 'required',
- 'slug' => 'required',
- 'description' => 'required',
- 'category_id' => 'required|exists:categories,id',
- 'type_id' => 'required|exists:types,id',
- 'resolution_id' => $resolutionRule,
- 'region_id' => 'nullable|exists:regions,id',
+ 'name' => 'required',
+ 'slug' => 'required',
+ 'description' => 'required',
+ 'category_id' => 'required|exists:categories,id',
+ 'type_id' => 'required|exists:types,id',
+ 'resolution_id' => $resolutionRule,
+ 'region_id' => 'nullable|exists:regions,id',
'distributor_id' => 'nullable|exists:distributors,id',
- 'imdb' => 'required|numeric',
- 'tvdb' => 'required|numeric',
- 'tmdb' => 'required|numeric',
- 'mal' => 'required|numeric',
- 'igdb' => 'required|numeric',
- 'season_number' => $seasonRule,
+ 'imdb' => 'required|numeric',
+ 'tvdb' => 'required|numeric',
+ 'tmdb' => 'required|numeric',
+ 'mal' => 'required|numeric',
+ 'igdb' => 'required|numeric',
+ 'season_number' => $seasonRule,
'episode_number' => $episodeRule,
- 'anon' => 'required',
- 'stream' => 'required',
- 'sd' => 'required',
+ 'anon' => 'required',
+ 'stream' => 'required',
+ 'sd' => 'required',
]);
if ($v->fails()) {
@@ -296,8 +296,8 @@ class TorrentController extends Controller
public function destroy(Request $request)
{
$v = \validator($request->all(), [
- 'id' => 'required|exists:torrents',
- 'slug' => 'required|exists:torrents',
+ 'id' => 'required|exists:torrents',
+ 'slug' => 'required|exists:torrents',
'message' => 'required|alpha_dash|min:1',
]);
@@ -378,26 +378,26 @@ class TorrentController extends Controller
];
$temp['type'] = match (1) {
$cat->movie_meta => 'movie',
- $cat->tv_meta => 'tv',
- $cat->game_meta => 'game',
+ $cat->tv_meta => 'tv',
+ $cat->game_meta => 'game',
$cat->music_meta => 'music',
- $cat->no_meta => 'no',
- default => 'no',
+ $cat->no_meta => 'no',
+ default => 'no',
};
$categories[(int) $cat->id] = $temp;
}
return \view('torrent.upload', [
- 'categories' => $categories,
- 'types' => Type::all()->sortBy('position'),
- 'resolutions' => Resolution::all()->sortBy('position'),
- 'regions' => Region::all()->sortBy('position'),
+ 'categories' => $categories,
+ 'types' => Type::all()->sortBy('position'),
+ 'resolutions' => Resolution::all()->sortBy('position'),
+ 'regions' => Region::all()->sortBy('position'),
'distributors' => Distributor::all()->sortBy('position'),
- 'user' => $user,
- 'category_id' => $categoryId,
- 'title' => $title,
- 'imdb' => \str_replace('tt', '', $imdb),
- 'tmdb' => $tmdb,
+ 'user' => $user,
+ 'category_id' => $categoryId,
+ 'title' => $title,
+ 'imdb' => \str_replace('tt', '', $imdb),
+ 'tmdb' => $tmdb,
]);
}
@@ -520,31 +520,31 @@ class TorrentController extends Controller
// Validation
$v = \validator($torrent->toArray(), [
- 'name' => 'required|unique:torrents',
- 'slug' => 'required',
- 'description' => 'required',
- 'info_hash' => 'required|unique:torrents',
- 'file_name' => 'required',
- 'num_file' => 'required|numeric',
- 'announce' => 'required',
- 'size' => 'required',
- 'category_id' => 'required|exists:categories,id',
- 'type_id' => 'required|exists:types,id',
- 'resolution_id' => $resolutionRule,
- 'region_id' => 'nullable|exists:regions,id',
+ 'name' => 'required|unique:torrents',
+ 'slug' => 'required',
+ 'description' => 'required',
+ 'info_hash' => 'required|unique:torrents',
+ 'file_name' => 'required',
+ 'num_file' => 'required|numeric',
+ 'announce' => 'required',
+ 'size' => 'required',
+ 'category_id' => 'required|exists:categories,id',
+ 'type_id' => 'required|exists:types,id',
+ 'resolution_id' => $resolutionRule,
+ 'region_id' => 'nullable|exists:regions,id',
'distributor_id' => 'nullable|exists:distributors,id',
- 'user_id' => 'required|exists:users,id',
- 'imdb' => 'required|numeric',
- 'tvdb' => 'required|numeric',
- 'tmdb' => 'required|numeric',
- 'mal' => 'required|numeric',
- 'igdb' => 'required|numeric',
- 'season_number' => $seasonRule,
+ 'user_id' => 'required|exists:users,id',
+ 'imdb' => 'required|numeric',
+ 'tvdb' => 'required|numeric',
+ 'tmdb' => 'required|numeric',
+ 'mal' => 'required|numeric',
+ 'igdb' => 'required|numeric',
+ 'season_number' => $seasonRule,
'episode_number' => $episodeRule,
- 'anon' => 'required',
- 'stream' => 'required',
- 'sd' => 'required',
- 'free' => 'sometimes|between:0,100',
+ 'anon' => 'required',
+ 'stream' => 'required',
+ 'sd' => 'required',
+ 'free' => 'sometimes|between:0,100',
]);
if ($v->fails()) {
diff --git a/app/Http/Controllers/TorrentPeerController.php b/app/Http/Controllers/TorrentPeerController.php
index 7518dec93..edfaefaef 100644
--- a/app/Http/Controllers/TorrentPeerController.php
+++ b/app/Http/Controllers/TorrentPeerController.php
@@ -32,9 +32,9 @@ class TorrentPeerController extends Controller
->map(function ($peer) use ($torrent) {
$progress = 100 * (1 - $peer->left / $torrent->size);
$peer['progress'] = match (true) {
- 0 < $progress && $progress < 1 => 1,
+ 0 < $progress && $progress < 1 => 1,
99 < $progress && $progress < 100 => 99,
- default => round($progress),
+ default => round($progress),
};
return $peer;
diff --git a/app/Http/Controllers/UserController.php b/app/Http/Controllers/UserController.php
index dba1e60de..f2f297f45 100755
--- a/app/Http/Controllers/UserController.php
+++ b/app/Http/Controllers/UserController.php
@@ -89,32 +89,32 @@ class UserController extends Controller
->get();
return \view('user.profile', [
- 'route' => 'profile',
- 'user' => $user,
- 'groups' => $groups,
- 'followers' => $followers,
- 'history' => $history,
- 'warnings' => $warnings,
- 'hitrun' => $hitrun,
+ 'route' => 'profile',
+ 'user' => $user,
+ 'groups' => $groups,
+ 'followers' => $followers,
+ 'history' => $history,
+ 'warnings' => $warnings,
+ 'hitrun' => $hitrun,
//'bondownload' => $bondownload,
'realdownload' => $realdownload,
'def_download' => $defDown,
- 'his_down' => $hisDown,
- 'free_down' => $freeDownload,
+ 'his_down' => $hisDown,
+ 'free_down' => $freeDownload,
- 'realupload' => $realupload,
- 'def_upload' => $defUpl,
- 'his_upl' => $hisUpl,
+ 'realupload' => $realupload,
+ 'def_upload' => $defUpl,
+ 'his_upl' => $hisUpl,
'multi_upload' => $multiUpload,
- 'bonupload' => $bonupload,
- 'man_upload' => $manUpload,
+ 'bonupload' => $bonupload,
+ 'man_upload' => $manUpload,
- 'requested' => $requested,
- 'filled' => $filled,
- 'invitedBy' => $invitedBy,
- 'peers' => $peers,
- 'achievements' => $achievements,
+ 'requested' => $requested,
+ 'filled' => $filled,
+ 'invitedBy' => $invitedBy,
+ 'peers' => $peers,
+ 'achievements' => $achievements,
]);
}
@@ -127,9 +127,9 @@ class UserController extends Controller
$results = Follow::with('user')->where('target_id', '=', $user->id)->latest()->paginate(25);
return \view('user.followers', [
- 'route' => 'follower',
+ 'route' => 'follower',
'results' => $results,
- 'user' => $user,
+ 'user' => $user,
]);
}
@@ -142,9 +142,9 @@ class UserController extends Controller
$results = Topic::where('topics.first_post_user_id', '=', $user->id)->latest()->paginate(25);
return \view('user.topics', [
- 'route' => 'forum',
+ 'route' => 'forum',
'results' => $results,
- 'user' => $user,
+ 'user' => $user,
]);
}
@@ -157,9 +157,9 @@ class UserController extends Controller
$results = Post::selectRaw('posts.id as id,posts.*')->with(['topic', 'user'])->leftJoin('topics', 'posts.topic_id', '=', 'topics.id')->where('posts.user_id', '=', $user->id)->latest('posts.created_at')->paginate(25);
return \view('user.posts', [
- 'route' => 'forum',
+ 'route' => 'forum',
'results' => $results,
- 'user' => $user,
+ 'user' => $user,
]);
}
@@ -329,8 +329,8 @@ class UserController extends Controller
\abort_unless($request->user()->id == $user->id, 403);
$v = \validator($request->all(), [
- 'current_password' => 'required',
- 'new_password' => 'required|min:6|confirmed',
+ 'current_password' => 'required',
+ 'new_password' => 'required|min:6|confirmed',
'new_password_confirmation' => 'required|min:6',
]);
if ($v->passes()) {
@@ -1044,7 +1044,7 @@ class UserController extends Controller
$groups = Group::where('level', '>', 0)->latest('level')->get();
- return \view('user.privacy', ['user' => $user, 'groups'=> $groups]);
+ return \view('user.privacy', ['user' => $user, 'groups' => $groups]);
}
/**
@@ -1058,7 +1058,7 @@ class UserController extends Controller
$groups = Group::where('level', '>', 0)->latest('level')->get();
- return \view('user.notification', ['user' => $user, 'groups'=> $groups]);
+ return \view('user.notification', ['user' => $user, 'groups' => $groups]);
}
/**
@@ -1133,7 +1133,7 @@ class UserController extends Controller
}
return \view('user.filters.requests', [
- 'user' => $user,
+ 'user' => $user,
'torrentRequests' => $table,
])->render();
}
@@ -1187,7 +1187,7 @@ class UserController extends Controller
}
return \view('user.filters.resurrections', [
- 'user' => $user,
+ 'user' => $user,
'resurrections' => $table,
])->render();
}
@@ -1207,8 +1207,8 @@ class UserController extends Controller
$torrentRequests = TorrentRequest::with(['user', 'category', 'type'])->where('user_id', '=', $user->id)->latest()->paginate(25);
return \view($logger, [
- 'route' => 'requests',
- 'user' => $user,
+ 'route' => 'requests',
+ 'user' => $user,
'torrentRequests' => $torrentRequests,
]);
}
@@ -1217,8 +1217,8 @@ class UserController extends Controller
$torrentRequests = TorrentRequest::with(['user', 'category', 'type'])->where('user_id', '=', $user->id)->where('anon', '!=', 1)->latest()->paginate(25);
return \view($logger, [
- 'route' => 'requests',
- 'user' => $user,
+ 'route' => 'requests',
+ 'user' => $user,
'torrentRequests' => $torrentRequests,
]);
}
@@ -1237,11 +1237,11 @@ class UserController extends Controller
$hisDownlCre = History::where('user_id', '=', $user->id)->sum('downloaded');
return \view('user.private.torrents', [
- 'route' => 'torrents',
- 'user' => $user,
- 'his_upl' => $hisUpl,
- 'his_upl_cre' => $hisUplCre,
- 'his_downl' => $hisDownl,
+ 'route' => 'torrents',
+ 'user' => $user,
+ 'his_upl' => $hisUpl,
+ 'his_upl_cre' => $hisUplCre,
+ 'his_downl' => $hisDownl,
'his_downl_cre' => $hisDownlCre,
]);
}
@@ -1260,11 +1260,11 @@ class UserController extends Controller
$hisDownlCre = History::where('user_id', '=', $user->id)->sum('downloaded');
return \view('user.private.uploads', [
- 'route' => 'uploads',
- 'user' => $user,
- 'his_upl' => $hisUpl,
- 'his_upl_cre' => $hisUplCre,
- 'his_downl' => $hisDownl,
+ 'route' => 'uploads',
+ 'user' => $user,
+ 'his_upl' => $hisUpl,
+ 'his_upl_cre' => $hisUplCre,
+ 'his_downl' => $hisDownl,
'his_downl_cre' => $hisDownlCre,
]);
}
@@ -1280,8 +1280,8 @@ class UserController extends Controller
$resurrections = Graveyard::with(['torrent', 'user'])->where('user_id', '=', $user->id)->paginate(50);
return \view('user.private.resurrections', [
- 'route' => 'resurrections',
- 'user' => $user,
+ 'route' => 'resurrections',
+ 'user' => $user,
'resurrections' => $resurrections,
]);
}
@@ -1301,11 +1301,11 @@ class UserController extends Controller
$hisDownlCre = History::where('user_id', '=', $user->id)->sum('downloaded');
return \view('user.private.active', ['user' => $user,
- 'route' => 'active',
- 'his_upl' => $hisUpl,
- 'his_upl_cre' => $hisUplCre,
- 'his_downl' => $hisDownl,
- 'his_downl_cre' => $hisDownlCre,
+ 'route' => 'active',
+ 'his_upl' => $hisUpl,
+ 'his_upl_cre' => $hisUplCre,
+ 'his_downl' => $hisDownl,
+ 'his_downl_cre' => $hisDownlCre,
]);
}
@@ -1320,8 +1320,8 @@ class UserController extends Controller
$bans = Ban::where('owned_by', '=', $user->id)->latest()->get();
return \view('user.banlog', [
- 'user' => $user,
- 'bans' => $bans,
+ 'user' => $user,
+ 'bans' => $bans,
]);
}
diff --git a/app/Http/Controllers/UserEarningController.php b/app/Http/Controllers/UserEarningController.php
index b8821c99a..6d7c02d34 100644
--- a/app/Http/Controllers/UserEarningController.php
+++ b/app/Http/Controllers/UserEarningController.php
@@ -141,21 +141,21 @@ class UserEarningController extends Controller
+ 2.00 * $legend;
return \view('bonus.index', [
- 'user' => $user,
- 'userbon' => $userbon,
- 'dying' => $dying,
- 'legendary' => $legendary,
- 'old' => $old,
- 'huge' => $huge,
- 'large' => $large,
- 'regular' => $regular,
- 'participant' => $participant,
- 'teamplayer' => $teamplayer,
- 'committed' => $committed,
- 'mvp' => $mvp,
- 'legend' => $legend,
- 'total' => $total,
- 'username' => $username,
+ 'user' => $user,
+ 'userbon' => $userbon,
+ 'dying' => $dying,
+ 'legendary' => $legendary,
+ 'old' => $old,
+ 'huge' => $huge,
+ 'large' => $large,
+ 'regular' => $regular,
+ 'participant' => $participant,
+ 'teamplayer' => $teamplayer,
+ 'committed' => $committed,
+ 'mvp' => $mvp,
+ 'legend' => $legend,
+ 'total' => $total,
+ 'username' => $username,
]);
}
}
diff --git a/app/Http/Controllers/UserGiftController.php b/app/Http/Controllers/UserGiftController.php
index 07ee5e328..bfed7e727 100644
--- a/app/Http/Controllers/UserGiftController.php
+++ b/app/Http/Controllers/UserGiftController.php
@@ -61,11 +61,11 @@ class UserGiftController extends Controller
->sum('cost');
return \view('bonus.gifts', [
- 'user' => $user,
- 'gifttransactions' => $gifttransactions,
- 'userbon' => $userbon,
- 'gifts_sent' => $giftsSent,
- 'gifts_received' => $giftsReceived,
+ 'user' => $user,
+ 'gifttransactions' => $gifttransactions,
+ 'userbon' => $userbon,
+ 'gifts_sent' => $giftsSent,
+ 'gifts_received' => $giftsReceived,
]);
}
@@ -81,8 +81,8 @@ class UserGiftController extends Controller
$userbon = $user->getSeedbonus();
return \view('bonus.gift', [
- 'user' => $user,
- 'userbon' => $userbon,
+ 'user' => $user,
+ 'userbon' => $userbon,
]);
}
diff --git a/app/Http/Controllers/UserTipController.php b/app/Http/Controllers/UserTipController.php
index 52e007dd3..21181683c 100644
--- a/app/Http/Controllers/UserTipController.php
+++ b/app/Http/Controllers/UserTipController.php
@@ -58,11 +58,11 @@ class UserTipController extends Controller
->sum('cost');
return \view('bonus.tips', [
- 'user' => $user,
- 'bontransactions' => $bontransactions,
- 'userbon' => $userbon,
- 'tips_sent' => $tipsSent,
- 'tips_received' => $tipsReceived,
+ 'user' => $user,
+ 'bontransactions' => $bontransactions,
+ 'userbon' => $userbon,
+ 'tips_sent' => $tipsSent,
+ 'tips_received' => $tipsReceived,
]);
}
@@ -78,7 +78,7 @@ class UserTipController extends Controller
$request = $request->safe()->collect();
$tipable = match (true) {
$request->has('torrent') => Torrent::withAnyStatus()->findOrFail($request->get('torrent')),
- $request->has('post') => Post::findOrFail($request->get('post')),
+ $request->has('post') => Post::findOrFail($request->get('post')),
};
$recipient = $tipable->user;
$tipAmount = $request->get('tip');
diff --git a/app/Http/Controllers/UserTransactionController.php b/app/Http/Controllers/UserTransactionController.php
index 65dbbb922..686abd5bd 100644
--- a/app/Http/Controllers/UserTransactionController.php
+++ b/app/Http/Controllers/UserTransactionController.php
@@ -49,10 +49,10 @@ class UserTransactionController extends Controller
$items = BonExchange::all();
return \view('bonus.store', [
- 'user' => $user,
- 'userbon' => $userbon,
- 'activefl' => $activefl,
- 'items' => $items,
+ 'user' => $user,
+ 'userbon' => $userbon,
+ 'activefl' => $activefl,
+ 'items' => $items,
]);
}
diff --git a/app/Http/Controllers/WarningController.php b/app/Http/Controllers/WarningController.php
index eea68a8fa..ddf8053ad 100644
--- a/app/Http/Controllers/WarningController.php
+++ b/app/Http/Controllers/WarningController.php
@@ -40,11 +40,11 @@ class WarningController extends Controller
$softDeletedWarningCount = Warning::where('user_id', '=', $user->id)->onlyTrashed()->count();
return \view('user.warninglog', [
- 'warnings' => $warnings,
- 'warningcount' => $warningcount,
- 'softDeletedWarnings' => $softDeletedWarnings,
+ 'warnings' => $warnings,
+ 'warningcount' => $warningcount,
+ 'softDeletedWarnings' => $softDeletedWarnings,
'softDeletedWarningCount' => $softDeletedWarningCount,
- 'user' => $user,
+ 'user' => $user,
]);
}
diff --git a/app/Http/Controllers/WishController.php b/app/Http/Controllers/WishController.php
index 66abf247f..399ef153b 100644
--- a/app/Http/Controllers/WishController.php
+++ b/app/Http/Controllers/WishController.php
@@ -42,9 +42,9 @@ class WishController extends Controller
$wishes = $user->wishes()->latest()->paginate(25);
return \view('user.wishlist', [
- 'user' => $user,
- 'wishes' => $wishes,
- 'route' => 'wish',
+ 'user' => $user,
+ 'wishes' => $wishes,
+ 'route' => 'wish',
]);
}
@@ -78,10 +78,10 @@ class WishController extends Controller
$source = $this->wish->getSource($tmdb);
$this->wish->create([
- 'title' => $meta['title'].' ('.$meta['release_date'].')',
- 'type' => 'Movie',
- 'tmdb' => $tmdb,
- 'source' => $source,
+ 'title' => $meta['title'].' ('.$meta['release_date'].')',
+ 'type' => 'Movie',
+ 'tmdb' => $tmdb,
+ 'source' => $source,
'user_id' => $user->id,
]);
diff --git a/app/Http/Kernel.php b/app/Http/Kernel.php
index e04a9f2f3..1ae1cdf81 100644
--- a/app/Http/Kernel.php
+++ b/app/Http/Kernel.php
@@ -76,21 +76,21 @@ class Kernel extends HttpKernel
* @var array
*/
protected $routeMiddleware = [
- 'admin' => \App\Http\Middleware\CheckForAdmin::class,
- 'auth' => \App\Http\Middleware\Authenticate::class,
- 'auth.basic' => \Illuminate\Auth\Middleware\AuthenticateWithBasicAuth::class,
- 'banned' => \App\Http\Middleware\CheckIfBanned::class,
- 'bindings' => \Illuminate\Routing\Middleware\SubstituteBindings::class,
+ 'admin' => \App\Http\Middleware\CheckForAdmin::class,
+ 'auth' => \App\Http\Middleware\Authenticate::class,
+ 'auth.basic' => \Illuminate\Auth\Middleware\AuthenticateWithBasicAuth::class,
+ 'banned' => \App\Http\Middleware\CheckIfBanned::class,
+ 'bindings' => \Illuminate\Routing\Middleware\SubstituteBindings::class,
'cache.headers' => \Illuminate\Http\Middleware\SetCacheHeaders::class,
- 'can' => \Illuminate\Auth\Middleware\Authorize::class,
- 'csrf' => \App\Http\Middleware\VerifyCsrfToken::class,
- 'guest' => \App\Http\Middleware\RedirectIfAuthenticated::class,
- 'language' => \App\Http\Middleware\SetLanguage::class,
- 'modo' => \App\Http\Middleware\CheckForModo::class,
- 'owner' => \App\Http\Middleware\CheckForOwner::class,
- 'throttle' => \Illuminate\Routing\Middleware\ThrottleRequestsWithRedis::class,
- 'twostep' => \App\Http\Middleware\TwoStepAuth::class,
- 'signed' => \Illuminate\Routing\Middleware\ValidateSignature::class,
- 'verified' => \Illuminate\Auth\Middleware\EnsureEmailIsVerified::class,
+ 'can' => \Illuminate\Auth\Middleware\Authorize::class,
+ 'csrf' => \App\Http\Middleware\VerifyCsrfToken::class,
+ 'guest' => \App\Http\Middleware\RedirectIfAuthenticated::class,
+ 'language' => \App\Http\Middleware\SetLanguage::class,
+ 'modo' => \App\Http\Middleware\CheckForModo::class,
+ 'owner' => \App\Http\Middleware\CheckForOwner::class,
+ 'throttle' => \Illuminate\Routing\Middleware\ThrottleRequestsWithRedis::class,
+ 'twostep' => \App\Http\Middleware\TwoStepAuth::class,
+ 'signed' => \Illuminate\Routing\Middleware\ValidateSignature::class,
+ 'verified' => \Illuminate\Auth\Middleware\EnsureEmailIsVerified::class,
];
}
diff --git a/app/Http/Livewire/BackupPanel.php b/app/Http/Livewire/BackupPanel.php
index c03951fb7..28fb46748 100644
--- a/app/Http/Livewire/BackupPanel.php
+++ b/app/Http/Livewire/BackupPanel.php
@@ -45,12 +45,12 @@ class BackupPanel extends Component
{
$this->backupStatuses = Cache::remember('backup-statuses', now()->addSeconds(4), fn () => BackupDestinationStatusFactory::createForMonitorConfig(config('backup.monitor_backups'))
->map(fn (BackupDestinationStatus $backupDestinationStatus) => [
- 'name' => $backupDestinationStatus->backupDestination()->backupName(),
- 'disk' => $backupDestinationStatus->backupDestination()->diskName(),
+ 'name' => $backupDestinationStatus->backupDestination()->backupName(),
+ 'disk' => $backupDestinationStatus->backupDestination()->diskName(),
'reachable' => $backupDestinationStatus->backupDestination()->isReachable(),
- 'healthy' => $backupDestinationStatus->isHealthy(),
- 'amount' => $backupDestinationStatus->backupDestination()->backups()->count(),
- 'newest' => $backupDestinationStatus->backupDestination()->newestBackup() !== null
+ 'healthy' => $backupDestinationStatus->isHealthy(),
+ 'amount' => $backupDestinationStatus->backupDestination()->backups()->count(),
+ 'newest' => $backupDestinationStatus->backupDestination()->newestBackup() !== null
? $backupDestinationStatus->backupDestination()->newestBackup()->date()->diffForHumans()
: 'No backups present',
'usedStorage' => Format::humanReadableSize($backupDestinationStatus->backupDestination()->usedStorage()),
@@ -154,11 +154,11 @@ class BackupPanel extends Component
$size = method_exists($backup, 'sizeInBytes') ? $backup->sizeInBytes() : $backup->size();
$downloadHeaders = [
- 'Cache-Control' => 'must-revalidate, post-check=0, pre-check=0',
- 'Content-Type' => 'application/zip',
- 'Content-Length' => $size,
+ 'Cache-Control' => 'must-revalidate, post-check=0, pre-check=0',
+ 'Content-Type' => 'application/zip',
+ 'Content-Length' => $size,
'Content-Disposition' => 'attachment; filename="'.$fileName.'"',
- 'Pragma' => 'public',
+ 'Pragma' => 'public',
];
return response()->stream(function () use ($backup) {
diff --git a/app/Http/Livewire/BbcodeInput.php b/app/Http/Livewire/BbcodeInput.php
index c4173f02d..2c1c79ed1 100644
--- a/app/Http/Livewire/BbcodeInput.php
+++ b/app/Http/Livewire/BbcodeInput.php
@@ -49,7 +49,7 @@ class BbcodeInput extends Component
{
return \view('livewire.bbcode-input', [
'contentHtml' => $this->contentHtml,
- 'label' => $this->label,
+ 'label' => $this->label,
]);
}
}
diff --git a/app/Http/Livewire/GraveyardSearch.php b/app/Http/Livewire/GraveyardSearch.php
index f0d62008f..c414819ca 100644
--- a/app/Http/Livewire/GraveyardSearch.php
+++ b/app/Http/Livewire/GraveyardSearch.php
@@ -61,24 +61,24 @@ class GraveyardSearch extends Component
public bool $showFilters = false;
protected $queryString = [
- 'name' => ['except' => ''],
- 'categories' => ['except' => []],
- 'types' => ['except' => []],
- 'resolutions' => ['except' => []],
- 'tmdbId' => ['except' => ''],
- 'imdbId' => ['except' => ''],
- 'tvdbId' => ['except' => ''],
- 'malId' => ['except' => ''],
- 'free' => ['except' => []],
- 'doubleup' => ['except' => false],
- 'featured' => ['except' => false],
- 'stream' => ['except' => false],
- 'sd' => ['except' => false],
- 'highspeed' => ['except' => false],
- 'internal' => ['except' => false],
- 'sortField' => ['except' => 'created_at'],
+ 'name' => ['except' => ''],
+ 'categories' => ['except' => []],
+ 'types' => ['except' => []],
+ 'resolutions' => ['except' => []],
+ 'tmdbId' => ['except' => ''],
+ 'imdbId' => ['except' => ''],
+ 'tvdbId' => ['except' => ''],
+ 'malId' => ['except' => ''],
+ 'free' => ['except' => []],
+ 'doubleup' => ['except' => false],
+ 'featured' => ['except' => false],
+ 'stream' => ['except' => false],
+ 'sd' => ['except' => false],
+ 'highspeed' => ['except' => false],
+ 'internal' => ['except' => false],
+ 'sortField' => ['except' => 'created_at'],
'sortDirection' => ['except' => 'desc'],
- 'page' => ['except' => 1],
+ 'page' => ['except' => 1],
];
final public function paginationView(): string
@@ -148,8 +148,8 @@ class GraveyardSearch extends Component
final public function render(): \Illuminate\Contracts\View\Factory|\Illuminate\Contracts\View\View|\Illuminate\Contracts\Foundation\Application
{
return \view('livewire.graveyard-search', [
- 'user' => \auth()->user(),
- 'torrents' => $this->torrents,
+ 'user' => \auth()->user(),
+ 'torrents' => $this->torrents,
'torrentsStat' => $this->torrentsStat,
]);
}
diff --git a/app/Http/Livewire/LaravelLogViewer.php b/app/Http/Livewire/LaravelLogViewer.php
index ba0abfae1..53e12f7b2 100644
--- a/app/Http/Livewire/LaravelLogViewer.php
+++ b/app/Http/Livewire/LaravelLogViewer.php
@@ -81,14 +81,14 @@ class LaravelLogViewer extends Component
\preg_match($contextPattern, $context, $contextMatches);
$entries->push([
- 'date' => $entryMatches[$i]['date'],
- 'env' => $entryMatches[$i]['env'],
- 'level' => $entryMatches[$i]['level'],
- 'message' => $contextMatches['message'] ?? '',
- 'exception' => $contextMatches['exception'] ?? '',
- 'in' => $contextMatches['in'] ?? '',
- 'line' => $contextMatches['line'] ?? '',
- 'stacktrace' => $stacktraces[$i],
+ 'date' => $entryMatches[$i]['date'],
+ 'env' => $entryMatches[$i]['env'],
+ 'level' => $entryMatches[$i]['level'],
+ 'message' => $contextMatches['message'] ?? '',
+ 'exception' => $contextMatches['exception'] ?? '',
+ 'in' => $contextMatches['in'] ?? '',
+ 'line' => $contextMatches['line'] ?? '',
+ 'stacktrace' => $stacktraces[$i],
]);
}
}
@@ -101,7 +101,7 @@ class LaravelLogViewer extends Component
final public function render(): \Illuminate\Contracts\View\Factory|\Illuminate\Contracts\View\View|\Illuminate\Contracts\Foundation\Application
{
return \view('livewire.laravel-log-viewer', [
- 'files' => $this->logFiles,
+ 'files' => $this->logFiles,
'entries' => $this->entries,
])
->extends('layout.default')
diff --git a/app/Http/Livewire/MissingMediaSearch.php b/app/Http/Livewire/MissingMediaSearch.php
index b4f51a83a..40abcc28d 100644
--- a/app/Http/Livewire/MissingMediaSearch.php
+++ b/app/Http/Livewire/MissingMediaSearch.php
@@ -23,13 +23,13 @@ class MissingMediaSearch extends Component
public string $sortDirection = 'desc';
protected $queryString = [
- 'categories' => ['except' => []],
- 'types' => ['except' => []],
- 'resolutions' => ['except' => []],
- 'sortField' => ['except' => 'created_at'],
- 'sortDirection' => ['except' => 'desc'],
- 'page' => ['except' => 1],
- 'perPage' => ['except' => ''],
+ 'categories' => ['except' => []],
+ 'types' => ['except' => []],
+ 'resolutions' => ['except' => []],
+ 'sortField' => ['except' => 'created_at'],
+ 'sortDirection' => ['except' => 'desc'],
+ 'page' => ['except' => 1],
+ 'perPage' => ['except' => ''],
];
final public function paginationView(): string
diff --git a/app/Http/Livewire/NotificationSearch.php b/app/Http/Livewire/NotificationSearch.php
index feab3254d..6f4cb6ad7 100644
--- a/app/Http/Livewire/NotificationSearch.php
+++ b/app/Http/Livewire/NotificationSearch.php
@@ -153,8 +153,8 @@ class NotificationSearch extends Component
final public function render(): \Illuminate\Contracts\View\Factory|\Illuminate\Contracts\View\View|\Illuminate\Contracts\Foundation\Application
{
return \view('livewire.notification-search', [
- 'user' => User::with(['group'])->findOrFail(\auth()->user()->id),
- 'notifications' => $this->notifications,
+ 'user' => User::with(['group'])->findOrFail(\auth()->user()->id),
+ 'notifications' => $this->notifications,
]);
}
}
diff --git a/app/Http/Livewire/QuickSearchDropdown.php b/app/Http/Livewire/QuickSearchDropdown.php
index 408b38c77..1105c1166 100755
--- a/app/Http/Livewire/QuickSearchDropdown.php
+++ b/app/Http/Livewire/QuickSearchDropdown.php
@@ -40,7 +40,7 @@ class QuickSearchDropdown extends Component
->oldest('name')
->take(10)
->get(),
- default => [],
+ default => [],
};
return \view('livewire.quick-search-dropdown', [
diff --git a/app/Http/Livewire/SimilarTorrent.php b/app/Http/Livewire/SimilarTorrent.php
index 5b0105aaf..6bec5c8de 100644
--- a/app/Http/Livewire/SimilarTorrent.php
+++ b/app/Http/Livewire/SimilarTorrent.php
@@ -112,9 +112,9 @@ class SimilarTorrent extends Component
$torrents = Torrent::whereKey($this->checked)->pluck('name')->toArray();
$names = $torrents;
$this->dispatchBrowserEvent('swal:confirm', [
- 'type' => 'warning',
+ 'type' => 'warning',
'message' => 'Are you sure?',
- 'body' => 'If deleted, you will not be able to recover the following files!'.\nl2br("\n")
+ 'body' => 'If deleted, you will not be able to recover the following files!'.\nl2br("\n")
.\nl2br(\implode("\n", $names)),
]);
}
@@ -209,9 +209,9 @@ class SimilarTorrent extends Component
$this->selectPage = false;
$this->dispatchBrowserEvent('swal:modal', [
- 'type' => 'success',
+ 'type' => 'success',
'message' => 'Torrents Deleted Successfully!',
- 'text' => 'A personal message has been sent to all users that have downloaded these torrents.',
+ 'text' => 'A personal message has been sent to all users that have downloaded these torrents.',
]);
}
@@ -222,9 +222,9 @@ class SimilarTorrent extends Component
$this->checked = array_diff($this->checked, [$torrentId]);
$this->dispatchBrowserEvent('swal:modal', [
- 'type' => 'success',
+ 'type' => 'success',
'message' => 'Torrent Deleted Successfully!',
- 'text' => 'A personal message has been sent to all users that have downloaded this torrent.',
+ 'text' => 'A personal message has been sent to all users that have downloaded this torrent.',
]);
}
@@ -236,8 +236,8 @@ class SimilarTorrent extends Component
final public function render(): \Illuminate\Contracts\View\Factory|\Illuminate\Contracts\View\View|\Illuminate\Contracts\Foundation\Application
{
return \view('livewire.similar-torrent', [
- 'user' => \auth()->user(),
- 'torrents' => $this->torrents,
+ 'user' => \auth()->user(),
+ 'torrents' => $this->torrents,
'personalFreeleech' => $this->personalFreeleech,
]);
}
diff --git a/app/Http/Livewire/TicketSearch.php b/app/Http/Livewire/TicketSearch.php
index 71d75d748..df0a05f66 100644
--- a/app/Http/Livewire/TicketSearch.php
+++ b/app/Http/Livewire/TicketSearch.php
@@ -35,7 +35,7 @@ class TicketSearch extends Component
protected $queryString = [
'search' => ['except' => ''],
- 'show' => ['except' => false],
+ 'show' => ['except' => false],
];
final public function mount(): void
diff --git a/app/Http/Livewire/Top10.php b/app/Http/Livewire/Top10.php
index 72e40655d..28ede41d6 100644
--- a/app/Http/Livewire/Top10.php
+++ b/app/Http/Livewire/Top10.php
@@ -68,12 +68,12 @@ class Top10 extends Component
final public function render(): \Illuminate\Contracts\View\Factory|\Illuminate\Contracts\View\View|\Illuminate\Contracts\Foundation\Application
{
return \view('livewire.top10', [
- 'user' => \auth()->user(),
- 'torrentsDay' => $this->torrentsDay,
- 'torrentsWeek' => $this->torrentsWeek,
+ 'user' => \auth()->user(),
+ 'torrentsDay' => $this->torrentsDay,
+ 'torrentsWeek' => $this->torrentsWeek,
'torrentsMonth' => $this->torrentsMonth,
- 'torrentsYear' => $this->torrentsYear,
- 'torrentsAll' => $this->torrentsAll,
+ 'torrentsYear' => $this->torrentsYear,
+ 'torrentsAll' => $this->torrentsAll,
]);
}
}
diff --git a/app/Http/Livewire/TorrentCardSearch.php b/app/Http/Livewire/TorrentCardSearch.php
index 380db2111..b923260a6 100644
--- a/app/Http/Livewire/TorrentCardSearch.php
+++ b/app/Http/Livewire/TorrentCardSearch.php
@@ -105,46 +105,46 @@ class TorrentCardSearch extends Component
public string $sortDirection = 'desc';
protected $queryString = [
- 'name' => ['except' => ''],
- 'description' => ['except' => ''],
- 'mediainfo' => ['except' => ''],
- 'uploader' => ['except' => ''],
- 'keywords' => ['except' => ''],
- 'startYear' => ['except' => ''],
- 'endYear' => ['except' => ''],
- 'categories' => ['except' => []],
- 'types' => ['except' => []],
- 'resolutions' => ['except' => []],
- 'genres' => ['except' => []],
- 'regions' => ['except' => []],
- 'distributors' => ['except' => []],
- 'tmdbId' => ['except' => ''],
- 'imdbId' => ['except' => ''],
- 'tvdbId' => ['except' => ''],
- 'malId' => ['except' => ''],
- 'playlistId' => ['except' => ''],
- 'collectionId' => ['except' => ''],
- 'free' => ['except' => []],
- 'doubleup' => ['except' => false],
- 'featured' => ['except' => false],
- 'stream' => ['except' => false],
- 'sd' => ['except' => false],
- 'highspeed' => ['except' => false],
- 'bookmarked' => ['except' => false],
- 'wished' => ['except' => false],
- 'internal' => ['except' => false],
- 'personalRelease' => ['except' => false],
- 'alive' => ['except' => false],
- 'dying' => ['except' => false],
- 'dead' => ['except' => false],
- 'downloaded' => ['except' => false],
- 'seeding' => ['except' => false],
- 'leeching' => ['except' => false],
- 'incomplete' => ['except' => false],
- 'sortField' => ['except' => 'bumped_at'],
- 'sortDirection' => ['except' => 'desc'],
- 'page' => ['except' => 1],
- 'perPage' => ['except' => ''],
+ 'name' => ['except' => ''],
+ 'description' => ['except' => ''],
+ 'mediainfo' => ['except' => ''],
+ 'uploader' => ['except' => ''],
+ 'keywords' => ['except' => ''],
+ 'startYear' => ['except' => ''],
+ 'endYear' => ['except' => ''],
+ 'categories' => ['except' => []],
+ 'types' => ['except' => []],
+ 'resolutions' => ['except' => []],
+ 'genres' => ['except' => []],
+ 'regions' => ['except' => []],
+ 'distributors' => ['except' => []],
+ 'tmdbId' => ['except' => ''],
+ 'imdbId' => ['except' => ''],
+ 'tvdbId' => ['except' => ''],
+ 'malId' => ['except' => ''],
+ 'playlistId' => ['except' => ''],
+ 'collectionId' => ['except' => ''],
+ 'free' => ['except' => []],
+ 'doubleup' => ['except' => false],
+ 'featured' => ['except' => false],
+ 'stream' => ['except' => false],
+ 'sd' => ['except' => false],
+ 'highspeed' => ['except' => false],
+ 'bookmarked' => ['except' => false],
+ 'wished' => ['except' => false],
+ 'internal' => ['except' => false],
+ 'personalRelease' => ['except' => false],
+ 'alive' => ['except' => false],
+ 'dying' => ['except' => false],
+ 'dead' => ['except' => false],
+ 'downloaded' => ['except' => false],
+ 'seeding' => ['except' => false],
+ 'leeching' => ['except' => false],
+ 'incomplete' => ['except' => false],
+ 'sortField' => ['except' => 'bumped_at'],
+ 'sortDirection' => ['except' => 'desc'],
+ 'page' => ['except' => 1],
+ 'perPage' => ['except' => ''],
];
protected array $rules = [
@@ -248,9 +248,9 @@ class TorrentCardSearch extends Component
final public function render(): \Illuminate\Contracts\View\Factory|\Illuminate\Contracts\View\View|\Illuminate\Contracts\Foundation\Application
{
return \view('livewire.torrent-card-search', [
- 'user' => User::with(['history:id,seeder,active,completed_at,torrent_id,user_id', 'group'])->findOrFail(\auth()->user()->id),
- 'torrents' => $this->torrents,
- 'torrentsStat' => $this->torrentsStat,
+ 'user' => User::with(['history:id,seeder,active,completed_at,torrent_id,user_id', 'group'])->findOrFail(\auth()->user()->id),
+ 'torrents' => $this->torrents,
+ 'torrentsStat' => $this->torrentsStat,
'personalFreeleech' => $this->personalFreeleech,
]);
}
diff --git a/app/Http/Livewire/TorrentGroupSearch.php b/app/Http/Livewire/TorrentGroupSearch.php
index 45daa5f68..c9d81530a 100644
--- a/app/Http/Livewire/TorrentGroupSearch.php
+++ b/app/Http/Livewire/TorrentGroupSearch.php
@@ -104,46 +104,46 @@ class TorrentGroupSearch extends Component
public string $sortDirection = 'desc';
protected $queryString = [
- 'name' => ['except' => ''],
- 'description' => ['except' => ''],
- 'mediainfo' => ['except' => ''],
- 'uploader' => ['except' => ''],
- 'keywords' => ['except' => ''],
- 'startYear' => ['except' => ''],
- 'endYear' => ['except' => ''],
- 'categories' => ['except' => []],
- 'types' => ['except' => []],
- 'resolutions' => ['except' => []],
- 'genres' => ['except' => []],
- 'regions' => ['except' => []],
- 'distributors' => ['except' => []],
- 'tmdbId' => ['except' => ''],
- 'imdbId' => ['except' => ''],
- 'tvdbId' => ['except' => ''],
- 'malId' => ['except' => ''],
- 'playlistId' => ['except' => ''],
- 'collectionId' => ['except' => ''],
- 'free' => ['except' => []],
- 'doubleup' => ['except' => false],
- 'featured' => ['except' => false],
- 'stream' => ['except' => false],
- 'sd' => ['except' => false],
- 'highspeed' => ['except' => false],
- 'bookmarked' => ['except' => false],
- 'wished' => ['except' => false],
- 'internal' => ['except' => false],
- 'personalRelease' => ['except' => false],
- 'alive' => ['except' => false],
- 'dying' => ['except' => false],
- 'dead' => ['except' => false],
- 'downloaded' => ['except' => false],
- 'seeding' => ['except' => false],
- 'leeching' => ['except' => false],
- 'incomplete' => ['except' => false],
- 'sortField' => ['except' => 'bumped_at'],
- 'sortDirection' => ['except' => 'desc'],
- 'page' => ['except' => 1],
- 'perPage' => ['except' => ''],
+ 'name' => ['except' => ''],
+ 'description' => ['except' => ''],
+ 'mediainfo' => ['except' => ''],
+ 'uploader' => ['except' => ''],
+ 'keywords' => ['except' => ''],
+ 'startYear' => ['except' => ''],
+ 'endYear' => ['except' => ''],
+ 'categories' => ['except' => []],
+ 'types' => ['except' => []],
+ 'resolutions' => ['except' => []],
+ 'genres' => ['except' => []],
+ 'regions' => ['except' => []],
+ 'distributors' => ['except' => []],
+ 'tmdbId' => ['except' => ''],
+ 'imdbId' => ['except' => ''],
+ 'tvdbId' => ['except' => ''],
+ 'malId' => ['except' => ''],
+ 'playlistId' => ['except' => ''],
+ 'collectionId' => ['except' => ''],
+ 'free' => ['except' => []],
+ 'doubleup' => ['except' => false],
+ 'featured' => ['except' => false],
+ 'stream' => ['except' => false],
+ 'sd' => ['except' => false],
+ 'highspeed' => ['except' => false],
+ 'bookmarked' => ['except' => false],
+ 'wished' => ['except' => false],
+ 'internal' => ['except' => false],
+ 'personalRelease' => ['except' => false],
+ 'alive' => ['except' => false],
+ 'dying' => ['except' => false],
+ 'dead' => ['except' => false],
+ 'downloaded' => ['except' => false],
+ 'seeding' => ['except' => false],
+ 'leeching' => ['except' => false],
+ 'incomplete' => ['except' => false],
+ 'sortField' => ['except' => 'bumped_at'],
+ 'sortDirection' => ['except' => 'desc'],
+ 'page' => ['except' => 1],
+ 'perPage' => ['except' => ''],
];
protected array $rules = [
@@ -240,8 +240,8 @@ class TorrentGroupSearch extends Component
final public function render(): \Illuminate\Contracts\View\Factory|\Illuminate\Contracts\View\View|\Illuminate\Contracts\Foundation\Application
{
return \view('livewire.torrent-group-search', [
- 'user' => User::with(['group'])->findOrFail(\auth()->user()->id),
- 'medias' => $this->torrents,
+ 'user' => User::with(['group'])->findOrFail(\auth()->user()->id),
+ 'medias' => $this->torrents,
'personalFreeleech' => $this->personalFreeleech,
]);
}
diff --git a/app/Http/Livewire/TorrentListSearch.php b/app/Http/Livewire/TorrentListSearch.php
index 463026cbb..ac9b05a1b 100644
--- a/app/Http/Livewire/TorrentListSearch.php
+++ b/app/Http/Livewire/TorrentListSearch.php
@@ -105,46 +105,46 @@ class TorrentListSearch extends Component
public string $sortDirection = 'desc';
protected $queryString = [
- 'name' => ['except' => ''],
- 'description' => ['except' => ''],
- 'mediainfo' => ['except' => ''],
- 'uploader' => ['except' => ''],
- 'keywords' => ['except' => ''],
- 'startYear' => ['except' => ''],
- 'endYear' => ['except' => ''],
- 'categories' => ['except' => []],
- 'types' => ['except' => []],
- 'resolutions' => ['except' => []],
- 'genres' => ['except' => []],
- 'regions' => ['except' => []],
- 'distributors' => ['except' => []],
- 'tmdbId' => ['except' => ''],
- 'imdbId' => ['except' => ''],
- 'tvdbId' => ['except' => ''],
- 'malId' => ['except' => ''],
- 'playlistId' => ['except' => ''],
- 'collectionId' => ['except' => ''],
- 'free' => ['except' => []],
- 'doubleup' => ['except' => false],
- 'featured' => ['except' => false],
- 'stream' => ['except' => false],
- 'sd' => ['except' => false],
- 'highspeed' => ['except' => false],
- 'bookmarked' => ['except' => false],
- 'wished' => ['except' => false],
- 'internal' => ['except' => false],
- 'personalRelease' => ['except' => false],
- 'alive' => ['except' => false],
- 'dying' => ['except' => false],
- 'dead' => ['except' => false],
- 'downloaded' => ['except' => false],
- 'seeding' => ['except' => false],
- 'leeching' => ['except' => false],
- 'incomplete' => ['except' => false],
- 'sortField' => ['except' => 'bumped_at'],
- 'sortDirection' => ['except' => 'desc'],
- 'page' => ['except' => 1],
- 'perPage' => ['except' => ''],
+ 'name' => ['except' => ''],
+ 'description' => ['except' => ''],
+ 'mediainfo' => ['except' => ''],
+ 'uploader' => ['except' => ''],
+ 'keywords' => ['except' => ''],
+ 'startYear' => ['except' => ''],
+ 'endYear' => ['except' => ''],
+ 'categories' => ['except' => []],
+ 'types' => ['except' => []],
+ 'resolutions' => ['except' => []],
+ 'genres' => ['except' => []],
+ 'regions' => ['except' => []],
+ 'distributors' => ['except' => []],
+ 'tmdbId' => ['except' => ''],
+ 'imdbId' => ['except' => ''],
+ 'tvdbId' => ['except' => ''],
+ 'malId' => ['except' => ''],
+ 'playlistId' => ['except' => ''],
+ 'collectionId' => ['except' => ''],
+ 'free' => ['except' => []],
+ 'doubleup' => ['except' => false],
+ 'featured' => ['except' => false],
+ 'stream' => ['except' => false],
+ 'sd' => ['except' => false],
+ 'highspeed' => ['except' => false],
+ 'bookmarked' => ['except' => false],
+ 'wished' => ['except' => false],
+ 'internal' => ['except' => false],
+ 'personalRelease' => ['except' => false],
+ 'alive' => ['except' => false],
+ 'dying' => ['except' => false],
+ 'dead' => ['except' => false],
+ 'downloaded' => ['except' => false],
+ 'seeding' => ['except' => false],
+ 'leeching' => ['except' => false],
+ 'incomplete' => ['except' => false],
+ 'sortField' => ['except' => 'bumped_at'],
+ 'sortDirection' => ['except' => 'desc'],
+ 'page' => ['except' => 1],
+ 'perPage' => ['except' => ''],
];
protected array $rules = [
@@ -248,9 +248,9 @@ class TorrentListSearch extends Component
final public function render(): \Illuminate\Contracts\View\Factory|\Illuminate\Contracts\View\View|\Illuminate\Contracts\Foundation\Application
{
return \view('livewire.torrent-list-search', [
- 'user' => User::with(['group'])->findOrFail(\auth()->user()->id),
- 'torrents' => $this->torrents,
- 'torrentsStat' => $this->torrentsStat,
+ 'user' => User::with(['group'])->findOrFail(\auth()->user()->id),
+ 'torrents' => $this->torrents,
+ 'torrentsStat' => $this->torrentsStat,
'personalFreeleech' => $this->personalFreeleech,
]);
}
diff --git a/app/Http/Livewire/TorrentRequestSearch.php b/app/Http/Livewire/TorrentRequestSearch.php
index bfba7da17..749c06dad 100644
--- a/app/Http/Livewire/TorrentRequestSearch.php
+++ b/app/Http/Livewire/TorrentRequestSearch.php
@@ -70,27 +70,27 @@ class TorrentRequestSearch extends Component
public bool $showFilters = false;
protected $queryString = [
- 'name' => ['except' => ''],
- 'requestor' => ['except' => ''],
- 'categories' => ['except' => []],
- 'types' => ['except' => []],
- 'resolutions' => ['except' => []],
- 'genres' => ['except' => []],
- 'tmdbId' => ['except' => ''],
- 'imdbId' => ['except' => ''],
- 'tvdbId' => ['except' => ''],
- 'malId' => ['except' => ''],
- 'unfilled' => ['except' => false],
- 'claimed' => ['except' => false],
- 'pending' => ['except' => false],
- 'filled' => ['except' => false],
- 'myRequests' => ['except' => false],
- 'myClaims' => ['except' => false],
- 'myVoted' => ['except' => false],
- 'myFilled' => ['except' => false],
- 'sortField' => ['except' => 'created_at'],
+ 'name' => ['except' => ''],
+ 'requestor' => ['except' => ''],
+ 'categories' => ['except' => []],
+ 'types' => ['except' => []],
+ 'resolutions' => ['except' => []],
+ 'genres' => ['except' => []],
+ 'tmdbId' => ['except' => ''],
+ 'imdbId' => ['except' => ''],
+ 'tvdbId' => ['except' => ''],
+ 'malId' => ['except' => ''],
+ 'unfilled' => ['except' => false],
+ 'claimed' => ['except' => false],
+ 'pending' => ['except' => false],
+ 'filled' => ['except' => false],
+ 'myRequests' => ['except' => false],
+ 'myClaims' => ['except' => false],
+ 'myVoted' => ['except' => false],
+ 'myFilled' => ['except' => false],
+ 'sortField' => ['except' => 'created_at'],
'sortDirection' => ['except' => 'desc'],
- 'page' => ['except' => 1],
+ 'page' => ['except' => 1],
];
final public function paginationView(): string
@@ -220,9 +220,9 @@ class TorrentRequestSearch extends Component
final public function render(): \Illuminate\Contracts\View\Factory|\Illuminate\Contracts\View\View|\Illuminate\Contracts\Foundation\Application
{
return \view('livewire.torrent-request-search', [
- 'user' => \auth()->user(),
- 'torrentRequests' => $this->torrentRequests,
- 'torrentRequestStat' => $this->torrentRequestStat,
+ 'user' => \auth()->user(),
+ 'torrentRequests' => $this->torrentRequests,
+ 'torrentRequestStat' => $this->torrentRequestStat,
'torrentRequestBountyStat' => $this->torrentRequestBountyStat,
]);
}
diff --git a/app/Http/Livewire/UserActive.php b/app/Http/Livewire/UserActive.php
index 4b8fe0b05..d58e13e08 100644
--- a/app/Http/Livewire/UserActive.php
+++ b/app/Http/Livewire/UserActive.php
@@ -43,14 +43,14 @@ class UserActive extends Component
public $showMorePrecision = false;
protected $queryString = [
- 'perPage' => ['except' => 50],
- 'name' => ['except' => ''],
- 'ip' => ['except' => ''],
- 'port' => ['except' => ''],
- 'client' => ['excpet' => ''],
- 'seeding' => ['except' => 'any'],
- 'sortField' => ['except' => 'created_at'],
- 'sortDirection' => ['except' => 'desc'],
+ 'perPage' => ['except' => 50],
+ 'name' => ['except' => ''],
+ 'ip' => ['except' => ''],
+ 'port' => ['except' => ''],
+ 'client' => ['excpet' => ''],
+ 'seeding' => ['except' => 'any'],
+ 'sortField' => ['except' => 'created_at'],
+ 'sortDirection' => ['except' => 'desc'],
'showMorePrecision' => ['except' => false],
];
diff --git a/app/Http/Livewire/UserTorrents.php b/app/Http/Livewire/UserTorrents.php
index 7a12cd53d..e24b73028 100644
--- a/app/Http/Livewire/UserTorrents.php
+++ b/app/Http/Livewire/UserTorrents.php
@@ -53,19 +53,19 @@ class UserTorrents extends Component
public $showMorePrecision = false;
protected $queryString = [
- 'perPage' => ['except' => ''],
- 'name' => ['except' => ''],
- 'sortField' => ['except' => 'created_at'],
- 'sortDirection' => ['except' => 'desc'],
- 'unsatisfied' => ['except' => 'any'],
- 'active' => ['except' => 'any'],
- 'completed' => ['except' => 'any'],
- 'prewarn' => ['except' => 'any'],
- 'hitrun' => ['except' => 'any'],
- 'immune' => ['except' => 'any'],
- 'uploaded' => ['except' => 'any'],
- 'downloaded' => ['except' => 'any'],
- 'status' => ['except' => []],
+ 'perPage' => ['except' => ''],
+ 'name' => ['except' => ''],
+ 'sortField' => ['except' => 'created_at'],
+ 'sortDirection' => ['except' => 'desc'],
+ 'unsatisfied' => ['except' => 'any'],
+ 'active' => ['except' => 'any'],
+ 'completed' => ['except' => 'any'],
+ 'prewarn' => ['except' => 'any'],
+ 'hitrun' => ['except' => 'any'],
+ 'immune' => ['except' => 'any'],
+ 'uploaded' => ['except' => 'any'],
+ 'downloaded' => ['except' => 'any'],
+ 'status' => ['except' => []],
'showMorePrecision' => ['except' => false],
];
diff --git a/app/Http/Livewire/UserUploads.php b/app/Http/Livewire/UserUploads.php
index 19a0cf2ec..857f6a347 100644
--- a/app/Http/Livewire/UserUploads.php
+++ b/app/Http/Livewire/UserUploads.php
@@ -39,12 +39,12 @@ class UserUploads extends Component
public $showMorePrecision = false;
protected $queryString = [
- 'perPage' => ['except' => ''],
- 'name' => ['except' => ''],
- 'personalRelease' => ['except' => 'any'],
- 'sortField' => ['except' => 'created_at'],
- 'sortDirection' => ['except' => 'desc'],
- 'status' => ['except' => []],
+ 'perPage' => ['except' => ''],
+ 'name' => ['except' => ''],
+ 'personalRelease' => ['except' => 'any'],
+ 'sortField' => ['except' => 'created_at'],
+ 'sortDirection' => ['except' => 'desc'],
+ 'status' => ['except' => []],
];
final public function mount($userId): void
diff --git a/app/Http/Middleware/Http2ServerPush.php b/app/Http/Middleware/Http2ServerPush.php
index faa5d6b70..9473d9dcb 100644
--- a/app/Http/Middleware/Http2ServerPush.php
+++ b/app/Http/Middleware/Http2ServerPush.php
@@ -30,8 +30,8 @@ class Http2ServerPush
* @var string[]
*/
private const LINK_TYPE_MAP = [
- '.CSS' => 'style',
- '.JS' => 'script',
+ '.CSS' => 'style',
+ '.JS' => 'script',
];
/**
diff --git a/app/Http/Requests/StoreGiftRequest.php b/app/Http/Requests/StoreGiftRequest.php
index afb9f29dc..af76ba646 100644
--- a/app/Http/Requests/StoreGiftRequest.php
+++ b/app/Http/Requests/StoreGiftRequest.php
@@ -38,12 +38,12 @@ class StoreGiftRequest extends FormRequest
$user = $request->user();
return [
- 'to_username' => [
+ 'to_username' => [
'required',
'exists:users,username',
Rule::notIn([$user->username]),
],
- 'bonus_points' => [
+ 'bonus_points' => [
'required',
'numeric',
'min:1',
@@ -62,8 +62,8 @@ class StoreGiftRequest extends FormRequest
public function messages(): array
{
return [
- 'to_username.exists' => \trans('bon.failed-user-not-found'),
- 'to_username.not_in' => 'You cannot gift yourself',
+ 'to_username.exists' => \trans('bon.failed-user-not-found'),
+ 'to_username.not_in' => 'You cannot gift yourself',
'bonus_points.numeric|min|max' => \trans('bon.failed-amount-message'),
];
}
diff --git a/app/Http/Requests/StorePoll.php b/app/Http/Requests/StorePoll.php
index ff4e820e7..7b1f127f1 100644
--- a/app/Http/Requests/StorePoll.php
+++ b/app/Http/Requests/StorePoll.php
@@ -34,9 +34,9 @@ class StorePoll extends FormRequest
public function rules(): array
{
return [
- 'title' => 'required|min:10',
+ 'title' => 'required|min:10',
'options.*' => 'filled',
- 'options' => 'min:2',
+ 'options' => 'min:2',
];
}
diff --git a/app/Http/Requests/StoreTransactionRequest.php b/app/Http/Requests/StoreTransactionRequest.php
index 6d6fa7ad5..aafaf0e84 100644
--- a/app/Http/Requests/StoreTransactionRequest.php
+++ b/app/Http/Requests/StoreTransactionRequest.php
@@ -36,7 +36,7 @@ class StoreTransactionRequest extends FormRequest
public function rules(Request $request): array
{
return [
- 'exchange' => [
+ 'exchange' => [
'bail',
'required',
'exists:bon_exchange,id',
diff --git a/app/Http/Resources/ChatMessageResource.php b/app/Http/Resources/ChatMessageResource.php
index 773934194..600a39d4c 100644
--- a/app/Http/Resources/ChatMessageResource.php
+++ b/app/Http/Resources/ChatMessageResource.php
@@ -41,12 +41,12 @@ class ChatMessageResource extends JsonResource
$logger = \htmlspecialchars_decode($logger);
return [
- 'id' => $this->id,
- 'bot' => new BotResource($this->whenLoaded('bot')),
- 'user' => new ChatUserResource($this->whenLoaded('user')),
- 'receiver' => new ChatUserResource($this->whenLoaded('receiver')),
- 'chatroom' => new ChatRoomResource($this->whenLoaded('chatroom')),
- 'message' => \clean($logger),
+ 'id' => $this->id,
+ 'bot' => new BotResource($this->whenLoaded('bot')),
+ 'user' => new ChatUserResource($this->whenLoaded('user')),
+ 'receiver' => new ChatUserResource($this->whenLoaded('receiver')),
+ 'chatroom' => new ChatRoomResource($this->whenLoaded('chatroom')),
+ 'message' => \clean($logger),
'created_at' => $this->created_at->toIso8601String(),
'updated_at' => $this->updated_at->toIso8601String(),
];
diff --git a/app/Http/Resources/ChatRoomResource.php b/app/Http/Resources/ChatRoomResource.php
index 0a0df4aee..4753e1b25 100644
--- a/app/Http/Resources/ChatRoomResource.php
+++ b/app/Http/Resources/ChatRoomResource.php
@@ -23,10 +23,10 @@ class ChatRoomResource extends JsonResource
public function toArray($request): array
{
return [
- 'id' => $this->id,
- 'name' => $this->name,
- 'users' => ChatUserResource::collection($this->whenLoaded('users')),
- 'messages' => ChatMessageResource::collection($this->whenLoaded('messages')),
+ 'id' => $this->id,
+ 'name' => $this->name,
+ 'users' => ChatUserResource::collection($this->whenLoaded('users')),
+ 'messages' => ChatMessageResource::collection($this->whenLoaded('messages')),
'created_at' => $this->created_at->diffForHumans(),
'updated_at' => $this->updated_at->diffForHumans(),
];
diff --git a/app/Http/Resources/ChatUserResource.php b/app/Http/Resources/ChatUserResource.php
index c45b48e49..6834462a6 100644
--- a/app/Http/Resources/ChatUserResource.php
+++ b/app/Http/Resources/ChatUserResource.php
@@ -23,16 +23,16 @@ class ChatUserResource extends JsonResource
public function toArray($request): array
{
return [
- 'id' => $this->id,
- 'username' => $this->username,
- 'chat_status' => $this->whenLoaded('chatStatus'),
+ 'id' => $this->id,
+ 'username' => $this->username,
+ 'chat_status' => $this->whenLoaded('chatStatus'),
'chat_status_id' => $this->chat_status_id,
- 'chatroom_id' => $this->chatroom_id,
- 'group' => $this->whenLoaded('group'),
- 'echoes' => $this->whenLoaded('echoes'),
- 'group_id' => $this->group_id,
- 'title' => $this->title,
- 'image' => $this->image,
+ 'chatroom_id' => $this->chatroom_id,
+ 'group' => $this->whenLoaded('group'),
+ 'echoes' => $this->whenLoaded('echoes'),
+ 'group_id' => $this->group_id,
+ 'title' => $this->title,
+ 'image' => $this->image,
];
}
}
diff --git a/app/Http/Resources/TorrentResource.php b/app/Http/Resources/TorrentResource.php
index 9a6e3c50d..c2c976f4b 100644
--- a/app/Http/Resources/TorrentResource.php
+++ b/app/Http/Resources/TorrentResource.php
@@ -35,47 +35,47 @@ class TorrentResource extends JsonResource
}
return [
- 'type' => 'torrent',
- 'id' => (string) $this->id,
- 'attributes' => [
+ 'type' => 'torrent',
+ 'id' => (string) $this->id,
+ 'attributes' => [
'meta' => [
- 'poster' => isset($meta->poster) ? \tmdb_image('poster_small', $meta->poster) : 'https://via.placeholder.com/90x135',
- 'genres' => isset($meta->genres) ? $meta->genres->pluck('name')->implode(', ') : 'None',
+ 'poster' => isset($meta->poster) ? \tmdb_image('poster_small', $meta->poster) : 'https://via.placeholder.com/90x135',
+ 'genres' => isset($meta->genres) ? $meta->genres->pluck('name')->implode(', ') : 'None',
],
- 'name' => $this->name,
- 'release_year' => $this->release_year,
- 'category' => $this->category->name,
- 'type' => $this->type->name,
- 'resolution' => $this->when(isset($this->resolution_id), $this->resolution->name ?? ''),
- 'distributor' => $this->when(isset($this->distributor_id), $this->distributor->name ?? ''),
- 'region' => $this->when(isset($this->region_id), $this->region->name ?? ''),
- 'media_info' => $this->mediainfo,
- 'bd_info' => $this->bdinfo,
- 'description' => $this->description,
- 'info_hash' => $this->info_hash,
- 'size' => $this->size,
- 'num_file' => $this->num_file,
- 'freeleech' => $this->free.'%',
- 'double_upload' => $this->doubleup,
- 'internal' => $this->internal,
- 'uploader' => $this->anon ? 'Anonymous' : $this->user->username,
- 'seeders' => $this->seeders,
- 'leechers' => $this->leechers,
- 'times_completed' => $this->times_completed,
- 'tmdb_id' => $this->tmdb,
- 'imdb_id' => $this->imdb,
- 'tvdb_id' => $this->tvdb,
- 'mal_id' => $this->mal,
- 'igdb_id' => $this->igdb,
- 'category_id' => $this->category_id,
- 'type_id' => $this->type_id,
- 'resolution_id' => $this->when($this->resolution_id !== null, $this->resolution_id),
- 'distributor_id' => $this->when($this->distributor_id !== null, $this->distributor_id),
- 'region_id' => $this->when($this->region_id !== null, $this->region_id),
- 'created_at' => $this->created_at,
- 'download_link' => \route('torrent.download.rsskey', ['id' => $this->id, 'rsskey' => \auth('api')->user()->rsskey]),
- 'magnet_link' => $this->when(\config('torrent.magnet') === true, 'magnet:?dn='.$this->name.'&xt=urn:btih:'.$this->info_hash.'&as='.route('torrent.download.rsskey', ['id' => $this->id, 'rsskey' => \auth('api')->user()->rsskey]).'&tr='.route('announce', ['passkey' => \auth('api')->user()->passkey]).'&xl='.$this->size),
- 'details_link' => \route('torrent', ['id' => $this->id]),
+ 'name' => $this->name,
+ 'release_year' => $this->release_year,
+ 'category' => $this->category->name,
+ 'type' => $this->type->name,
+ 'resolution' => $this->when(isset($this->resolution_id), $this->resolution->name ?? ''),
+ 'distributor' => $this->when(isset($this->distributor_id), $this->distributor->name ?? ''),
+ 'region' => $this->when(isset($this->region_id), $this->region->name ?? ''),
+ 'media_info' => $this->mediainfo,
+ 'bd_info' => $this->bdinfo,
+ 'description' => $this->description,
+ 'info_hash' => $this->info_hash,
+ 'size' => $this->size,
+ 'num_file' => $this->num_file,
+ 'freeleech' => $this->free.'%',
+ 'double_upload' => $this->doubleup,
+ 'internal' => $this->internal,
+ 'uploader' => $this->anon ? 'Anonymous' : $this->user->username,
+ 'seeders' => $this->seeders,
+ 'leechers' => $this->leechers,
+ 'times_completed' => $this->times_completed,
+ 'tmdb_id' => $this->tmdb,
+ 'imdb_id' => $this->imdb,
+ 'tvdb_id' => $this->tvdb,
+ 'mal_id' => $this->mal,
+ 'igdb_id' => $this->igdb,
+ 'category_id' => $this->category_id,
+ 'type_id' => $this->type_id,
+ 'resolution_id' => $this->when($this->resolution_id !== null, $this->resolution_id),
+ 'distributor_id' => $this->when($this->distributor_id !== null, $this->distributor_id),
+ 'region_id' => $this->when($this->region_id !== null, $this->region_id),
+ 'created_at' => $this->created_at,
+ 'download_link' => \route('torrent.download.rsskey', ['id' => $this->id, 'rsskey' => \auth('api')->user()->rsskey]),
+ 'magnet_link' => $this->when(\config('torrent.magnet') === true, 'magnet:?dn='.$this->name.'&xt=urn:btih:'.$this->info_hash.'&as='.route('torrent.download.rsskey', ['id' => $this->id, 'rsskey' => \auth('api')->user()->rsskey]).'&tr='.route('announce', ['passkey' => \auth('api')->user()->passkey]).'&xl='.$this->size),
+ 'details_link' => \route('torrent', ['id' => $this->id]),
],
];
}
diff --git a/app/Http/Resources/TorrentsResource.php b/app/Http/Resources/TorrentsResource.php
index 425a62f9b..5cfcdc9cd 100644
--- a/app/Http/Resources/TorrentsResource.php
+++ b/app/Http/Resources/TorrentsResource.php
@@ -33,7 +33,7 @@ class TorrentsResource extends ResourceCollection
public function with($request): array
{
return [
- 'links' => [
+ 'links' => [
'self' => \route('torrents.index'),
],
];
diff --git a/app/Http/Resources/UserAudibleResource.php b/app/Http/Resources/UserAudibleResource.php
index d3c033aae..2c7ec6c7b 100644
--- a/app/Http/Resources/UserAudibleResource.php
+++ b/app/Http/Resources/UserAudibleResource.php
@@ -23,13 +23,13 @@ class UserAudibleResource extends JsonResource
public function toArray($request): array
{
return [
- 'id' => $this->id,
- 'user_id' => $this->user_id,
- 'user' => $this->user,
- 'target' => $this->target,
- 'room' => $this->room,
- 'bot' => $this->bot,
- 'status' => $this->status,
+ 'id' => $this->id,
+ 'user_id' => $this->user_id,
+ 'user' => $this->user,
+ 'target' => $this->target,
+ 'room' => $this->room,
+ 'bot' => $this->bot,
+ 'status' => $this->status,
];
}
}
diff --git a/app/Http/Resources/UserEchoResource.php b/app/Http/Resources/UserEchoResource.php
index cc28ad51d..3f88e921d 100644
--- a/app/Http/Resources/UserEchoResource.php
+++ b/app/Http/Resources/UserEchoResource.php
@@ -23,12 +23,12 @@ class UserEchoResource extends JsonResource
public function toArray($request): array
{
return [
- 'id' => $this->id,
- 'user_id' => $this->user_id,
- 'user' => $this->user,
- 'target' => $this->target,
- 'room' => $this->room,
- 'bot' => $this->bot,
+ 'id' => $this->id,
+ 'user_id' => $this->user_id,
+ 'user' => $this->user,
+ 'target' => $this->target,
+ 'room' => $this->room,
+ 'bot' => $this->bot,
];
}
}
diff --git a/app/Jobs/ProcessAnnounce.php b/app/Jobs/ProcessAnnounce.php
index f92de6225..ea76f9e17 100644
--- a/app/Jobs/ProcessAnnounce.php
+++ b/app/Jobs/ProcessAnnounce.php
@@ -291,7 +291,7 @@ class ProcessAnnounce implements ShouldQueue
$this->user->uploaded += $modUploaded;
$this->user->downloaded += $modDownloaded;
$this->user->save();
- // End User Update
+ // End User Update
}
$peerCount = DB::table('peers')
diff --git a/app/Jobs/ProcessMovieJob.php b/app/Jobs/ProcessMovieJob.php
index 0c986aae6..e000a2825 100644
--- a/app/Jobs/ProcessMovieJob.php
+++ b/app/Jobs/ProcessMovieJob.php
@@ -59,11 +59,11 @@ class ProcessMovieJob implements ShouldQueue
if (isset($productionCompany['name'])) {
$productionCompanyArray = [
- 'description' => $productionCompany['description'] ?? null,
- 'headquarters' => $productionCompany['headquarters'] ?? null,
- 'homepage' => $productionCompany['homepage'] ?? null,
- 'logo' => $tmdb->image('logo', $productionCompany),
- 'name' => $productionCompany['name'] ?? null,
+ 'description' => $productionCompany['description'] ?? null,
+ 'headquarters' => $productionCompany['headquarters'] ?? null,
+ 'homepage' => $productionCompany['homepage'] ?? null,
+ 'logo' => $tmdb->image('logo', $productionCompany),
+ 'name' => $productionCompany['name'] ?? null,
'origin_country' => $productionCompany['origin_country'],
];
Company::updateOrCreate(['id' => $productionCompany['id']], $productionCompanyArray)->movie()->syncWithoutDetaching([$this->movie['id']]);
@@ -77,12 +77,12 @@ class ProcessMovieJob implements ShouldQueue
$titleSort = \addslashes(\str_replace(['The ', 'An ', 'A ', '"'], [''], $belongsToCollection['name']));
$belongsToCollectionArray = [
- 'name' => $belongsToCollection['name'] ?? null,
+ 'name' => $belongsToCollection['name'] ?? null,
'name_sort' => $titleSort,
- 'parts' => is_countable($belongsToCollection['parts']) ? \count($belongsToCollection['parts']) : 0,
- 'overview' => $belongsToCollection['overview'] ?? null,
- 'poster' => $tmdb->image('poster', $belongsToCollection),
- 'backdrop' => $tmdb->image('backdrop', $belongsToCollection),
+ 'parts' => is_countable($belongsToCollection['parts']) ? \count($belongsToCollection['parts']) : 0,
+ 'overview' => $belongsToCollection['overview'] ?? null,
+ 'poster' => $tmdb->image('poster', $belongsToCollection),
+ 'backdrop' => $tmdb->image('backdrop', $belongsToCollection),
];
Collection::updateOrCreate(['id' => $belongsToCollection['id']], $belongsToCollectionArray)->movie()->syncWithoutDetaching([$this->movie['id']]);
}
diff --git a/app/Jobs/ProcessTvJob.php b/app/Jobs/ProcessTvJob.php
index e53860ef2..62eb7276b 100644
--- a/app/Jobs/ProcessTvJob.php
+++ b/app/Jobs/ProcessTvJob.php
@@ -54,11 +54,11 @@ class ProcessTvJob implements ShouldQueue
foreach ($this->tv['production_companies'] as $productionCompany) {
if (isset($productionCompany['name'])) {
$productionCompanyArray = [
- 'description' => $tmdb->ifExists('description', $productionCompany),
- 'name' => $productionCompany['name'],
- 'headquarters' => $tmdb->ifExists('headquarters', $productionCompany),
- 'homepage' => $tmdb->ifExists('homepage', $productionCompany),
- 'logo' => $tmdb->image('logo', $productionCompany),
+ 'description' => $tmdb->ifExists('description', $productionCompany),
+ 'name' => $productionCompany['name'],
+ 'headquarters' => $tmdb->ifExists('headquarters', $productionCompany),
+ 'homepage' => $tmdb->ifExists('homepage', $productionCompany),
+ 'logo' => $tmdb->image('logo', $productionCompany),
'origin_country' => $tmdb->ifExists('origin_country', $productionCompany),
];
Company::updateOrCreate(['id' => $productionCompany['id']], $productionCompanyArray)->tv()->syncWithoutDetaching([$this->tv['id']]);
@@ -82,10 +82,10 @@ class ProcessTvJob implements ShouldQueue
}
$networkArray = [
- 'headquarters' => $tmdb->ifExists('headquarters', $network),
- 'homepage' => $tmdb->ifExists('homepage', $network),
- 'logo' => $logo,
- 'name' => $network['name'],
+ 'headquarters' => $tmdb->ifExists('headquarters', $network),
+ 'homepage' => $tmdb->ifExists('homepage', $network),
+ 'logo' => $logo,
+ 'name' => $network['name'],
'origin_country' => $network['origin_country'],
];
Network::updateOrCreate(['id' => $network['id']], $networkArray)->tv()->syncWithoutDetaching([$this->id]);
@@ -116,12 +116,12 @@ class ProcessTvJob implements ShouldQueue
$season = $client->getData();
if (isset($season['season_number'])) {
$seasonArray = [
- 'air_date' => $tmdb->ifExists('air_date', $season),
- 'poster' => $tmdb->image('poster', $season),
- 'name' => $tmdb->ifExists('name', $season),
- 'overview' => $tmdb->ifExists('overview', $season),
+ 'air_date' => $tmdb->ifExists('air_date', $season),
+ 'poster' => $tmdb->image('poster', $season),
+ 'name' => $tmdb->ifExists('name', $season),
+ 'overview' => $tmdb->ifExists('overview', $season),
'season_number' => \sprintf('%02d', $season['season_number']),
- 'tv_id' => $this->id,
+ 'tv_id' => $this->id,
];
Season::updateOrCreate(['id' => $season['id']], $seasonArray)->tv();
@@ -131,17 +131,17 @@ class ProcessTvJob implements ShouldQueue
$episode = $client->getData();
if (isset($episode['episode_number'])) {
$episodeArray = [
- 'tv_id' => $this->id,
- 'air_date' => $tmdb->ifExists('air_date', $episode),
- 'name' => Str::limit($tmdb->ifExists('name', $episode), 200),
- 'episode_number' => \sprintf('%02d', $episode['episode_number']),
- 'overview' => $tmdb->ifExists('overview', $episode),
- 'still' => $tmdb->image('still', $episode),
+ 'tv_id' => $this->id,
+ 'air_date' => $tmdb->ifExists('air_date', $episode),
+ 'name' => Str::limit($tmdb->ifExists('name', $episode), 200),
+ 'episode_number' => \sprintf('%02d', $episode['episode_number']),
+ 'overview' => $tmdb->ifExists('overview', $episode),
+ 'still' => $tmdb->image('still', $episode),
'production_code' => $episode['production_code'],
- 'season_number' => \sprintf('%02d', $episode['season_number']),
- 'vote_average' => $episode['vote_average'],
- 'vote_count' => $episode['vote_count'],
- 'season_id' => $season['id'],
+ 'season_number' => \sprintf('%02d', $episode['season_number']),
+ 'vote_average' => $episode['vote_average'],
+ 'vote_count' => $episode['vote_count'],
+ 'season_id' => $season['id'],
];
Episode::updateOrCreate(['id' => $episode['id']], $episodeArray)->season();
diff --git a/app/Models/Article.php b/app/Models/Article.php
index d048afb83..1fe7626c1 100644
--- a/app/Models/Article.php
+++ b/app/Models/Article.php
@@ -32,7 +32,7 @@ class Article extends Model
{
return $this->belongsTo(User::class)->withDefault([
'username' => 'System',
- 'id' => '1',
+ 'id' => '1',
]);
}
diff --git a/app/Models/Audit.php b/app/Models/Audit.php
index 8f2cd9485..cf01e8f35 100644
--- a/app/Models/Audit.php
+++ b/app/Models/Audit.php
@@ -36,7 +36,7 @@ class Audit extends Model
{
return $this->belongsTo(User::class)->withDefault([
'username' => 'System',
- 'id' => '1',
+ 'id' => '1',
]);
}
}
diff --git a/app/Models/Ban.php b/app/Models/Ban.php
index 205cbd207..2cbd9efdc 100644
--- a/app/Models/Ban.php
+++ b/app/Models/Ban.php
@@ -29,7 +29,7 @@ class Ban extends Model
{
return $this->belongsTo(User::class, 'owned_by')->withDefault([
'username' => 'System',
- 'id' => '1',
+ 'id' => '1',
]);
}
@@ -40,7 +40,7 @@ class Ban extends Model
{
return $this->belongsTo(User::class, 'created_by')->withDefault([
'username' => 'System',
- 'id' => '1',
+ 'id' => '1',
]);
}
}
diff --git a/app/Models/BonExchange.php b/app/Models/BonExchange.php
index 450fef149..cc3ffd441 100644
--- a/app/Models/BonExchange.php
+++ b/app/Models/BonExchange.php
@@ -40,9 +40,9 @@ class BonExchange extends Model
* @var array
*/
protected $casts = [
- 'upload' => 'boolean',
- 'download' => 'boolean',
+ 'upload' => 'boolean',
+ 'download' => 'boolean',
'personal_freeleech' => 'boolean',
- 'invite' => 'boolean',
+ 'invite' => 'boolean',
];
}
diff --git a/app/Models/BonTransactions.php b/app/Models/BonTransactions.php
index b30a2465e..c5c428ec1 100644
--- a/app/Models/BonTransactions.php
+++ b/app/Models/BonTransactions.php
@@ -42,7 +42,7 @@ class BonTransactions extends Model
{
return $this->belongsTo(User::class, 'sender', 'id')->withDefault([
'username' => 'System',
- 'id' => '1',
+ 'id' => '1',
]);
}
@@ -54,7 +54,7 @@ class BonTransactions extends Model
{
return $this->belongsTo(User::class, 'receiver', 'id')->withDefault([
'username' => 'System',
- 'id' => '1',
+ 'id' => '1',
]);
}
@@ -65,7 +65,7 @@ class BonTransactions extends Model
{
return $this->belongsTo(BonExchange::class, 'itemID', 'id')->withDefault([
'value' => 0,
- 'cost' => 0,
+ 'cost' => 0,
]);
}
}
diff --git a/app/Models/Bookmark.php b/app/Models/Bookmark.php
index eacfeecd5..589c1b9ec 100644
--- a/app/Models/Bookmark.php
+++ b/app/Models/Bookmark.php
@@ -29,7 +29,7 @@ class Bookmark extends Model
{
return $this->belongsTo(User::class)->withDefault([
'username' => 'System',
- 'id' => '1',
+ 'id' => '1',
]);
}
diff --git a/app/Models/BotTransaction.php b/app/Models/BotTransaction.php
index fa2a3b595..f3d7719af 100644
--- a/app/Models/BotTransaction.php
+++ b/app/Models/BotTransaction.php
@@ -37,7 +37,7 @@ class BotTransaction extends Model
{
return $this->belongsTo(User::class)->withDefault([
'username' => 'System',
- 'id' => '1',
+ 'id' => '1',
]);
}
@@ -49,7 +49,7 @@ class BotTransaction extends Model
{
return $this->belongsTo(Bot::class)->withDefault([
'username' => 'System',
- 'id' => '1',
+ 'id' => '1',
]);
}
diff --git a/app/Models/Comment.php b/app/Models/Comment.php
index 339079fe5..2d685760a 100644
--- a/app/Models/Comment.php
+++ b/app/Models/Comment.php
@@ -33,7 +33,7 @@ class Comment extends Model
{
return $this->belongsTo(User::class)->withDefault([
'username' => 'System',
- 'id' => '1',
+ 'id' => '1',
]);
}
diff --git a/app/Models/FailedLoginAttempt.php b/app/Models/FailedLoginAttempt.php
index 8fa7b3424..a1f9978ef 100644
--- a/app/Models/FailedLoginAttempt.php
+++ b/app/Models/FailedLoginAttempt.php
@@ -34,8 +34,8 @@ class FailedLoginAttempt extends Model
public static function record($user, $username, $ip): mixed
{
return static::create([
- 'user_id' => \is_null($user) ? null : $user->id,
- 'username' => $username,
+ 'user_id' => \is_null($user) ? null : $user->id,
+ 'username' => $username,
'ip_address' => $ip,
]);
}
diff --git a/app/Models/Follow.php b/app/Models/Follow.php
index 21364ffbe..e1e9b650b 100644
--- a/app/Models/Follow.php
+++ b/app/Models/Follow.php
@@ -31,7 +31,7 @@ class Follow extends Model
{
return $this->belongsTo(User::class)->withDefault([
'username' => 'System',
- 'id' => '1',
+ 'id' => '1',
]);
}
@@ -42,7 +42,7 @@ class Follow extends Model
{
return $this->belongsTo(User::class)->withDefault([
'username' => 'System',
- 'id' => '1',
+ 'id' => '1',
]);
}
}
diff --git a/app/Models/History.php b/app/Models/History.php
index 520537d95..1fc60bcf2 100644
--- a/app/Models/History.php
+++ b/app/Models/History.php
@@ -53,7 +53,7 @@ class History extends Model
{
return $this->belongsTo(User::class)->withDefault([
'username' => 'System',
- 'id' => '1',
+ 'id' => '1',
]);
}
diff --git a/app/Models/Invite.php b/app/Models/Invite.php
index 9b9185953..d358e231f 100644
--- a/app/Models/Invite.php
+++ b/app/Models/Invite.php
@@ -29,7 +29,7 @@ class Invite extends Model
{
return $this->belongsTo(User::class, 'user_id')->withDefault([
'username' => 'System',
- 'id' => '1',
+ 'id' => '1',
]);
}
@@ -40,7 +40,7 @@ class Invite extends Model
{
return $this->belongsTo(User::class, 'accepted_by')->withDefault([
'username' => 'System',
- 'id' => '1',
+ 'id' => '1',
]);
}
}
diff --git a/app/Models/Like.php b/app/Models/Like.php
index bfd1af7bf..9bf983f0c 100644
--- a/app/Models/Like.php
+++ b/app/Models/Like.php
@@ -29,7 +29,7 @@ class Like extends Model
{
return $this->belongsTo(User::class)->withDefault([
'username' => 'System',
- 'id' => '1',
+ 'id' => '1',
]);
}
diff --git a/app/Models/Note.php b/app/Models/Note.php
index 9d3f0302e..b5063f0ad 100644
--- a/app/Models/Note.php
+++ b/app/Models/Note.php
@@ -36,7 +36,7 @@ class Note extends Model
{
return $this->belongsTo(User::class, 'user_id')->withDefault([
'username' => 'System',
- 'id' => '1',
+ 'id' => '1',
]);
}
@@ -47,7 +47,7 @@ class Note extends Model
{
return $this->belongsTo(User::class, 'staff_id')->withDefault([
'username' => 'System',
- 'id' => '1',
+ 'id' => '1',
]);
}
}
diff --git a/app/Models/Peer.php b/app/Models/Peer.php
index 519b6543c..e9094deeb 100644
--- a/app/Models/Peer.php
+++ b/app/Models/Peer.php
@@ -28,7 +28,7 @@ class Peer extends Model
{
return $this->belongsTo(User::class)->withDefault([
'username' => 'System',
- 'id' => '1',
+ 'id' => '1',
]);
}
diff --git a/app/Models/Playlist.php b/app/Models/Playlist.php
index 9c96c590d..7dd310430 100644
--- a/app/Models/Playlist.php
+++ b/app/Models/Playlist.php
@@ -29,7 +29,7 @@ class Playlist extends Model
{
return $this->belongsTo(User::class)->withDefault([
'username' => 'System',
- 'id' => '1',
+ 'id' => '1',
]);
}
diff --git a/app/Models/Poll.php b/app/Models/Poll.php
index 25b76ad73..11fb0addb 100644
--- a/app/Models/Poll.php
+++ b/app/Models/Poll.php
@@ -41,7 +41,7 @@ class Poll extends Model
{
return $this->belongsTo(User::class)->withDefault([
'username' => 'System',
- 'id' => '1',
+ 'id' => '1',
]);
}
diff --git a/app/Models/Post.php b/app/Models/Post.php
index cb5730d61..196319355 100644
--- a/app/Models/Post.php
+++ b/app/Models/Post.php
@@ -40,7 +40,7 @@ class Post extends Model
{
return $this->belongsTo(User::class)->withDefault([
'username' => 'System',
- 'id' => '1',
+ 'id' => '1',
]);
}
diff --git a/app/Models/PrivateMessage.php b/app/Models/PrivateMessage.php
index f4d8b6562..c740e2913 100644
--- a/app/Models/PrivateMessage.php
+++ b/app/Models/PrivateMessage.php
@@ -32,7 +32,7 @@ class PrivateMessage extends Model
{
return $this->belongsTo(User::class, 'sender_id')->withDefault([
'username' => 'System',
- 'id' => '1',
+ 'id' => '1',
]);
}
@@ -43,7 +43,7 @@ class PrivateMessage extends Model
{
return $this->belongsTo(User::class, 'receiver_id')->withDefault([
'username' => 'System',
- 'id' => '1',
+ 'id' => '1',
]);
}
diff --git a/app/Models/Report.php b/app/Models/Report.php
index 03ad135d9..80256f355 100644
--- a/app/Models/Report.php
+++ b/app/Models/Report.php
@@ -54,7 +54,7 @@ class Report extends Model
{
return $this->belongsTo(User::class, 'reporter_id')->withDefault([
'username' => 'System',
- 'id' => '1',
+ 'id' => '1',
]);
}
@@ -65,7 +65,7 @@ class Report extends Model
{
return $this->belongsTo(User::class, 'reported_user')->withDefault([
'username' => 'System',
- 'id' => '1',
+ 'id' => '1',
]);
}
@@ -76,7 +76,7 @@ class Report extends Model
{
return $this->belongsTo(User::class, 'staff_id')->withDefault([
'username' => 'System',
- 'id' => '1',
+ 'id' => '1',
]);
}
}
diff --git a/app/Models/Rss.php b/app/Models/Rss.php
index 8831942c6..38a007852 100644
--- a/app/Models/Rss.php
+++ b/app/Models/Rss.php
@@ -44,8 +44,8 @@ class Rss extends Model
* @var array
*/
protected $casts = [
- 'name' => 'string',
- 'json_torrent' => 'array',
+ 'name' => 'string',
+ 'json_torrent' => 'array',
'expected_fields' => 'array',
];
@@ -56,7 +56,7 @@ class Rss extends Model
{
return $this->belongsTo(User::class)->withDefault([
'username' => 'System',
- 'id' => '1',
+ 'id' => '1',
]);
}
@@ -91,27 +91,27 @@ class Rss extends Model
{
// Just Torrents for now... extendable to check on feed type in future.
return [
- 'search' => null,
- 'description' => null,
- 'uploader' => null,
- 'imdb' => null,
- 'mal' => null,
- 'categories' => null,
- 'types' => null,
- 'resolutions' => null,
- 'genres' => null,
- 'freeleech' => null,
- 'doubleupload' => null,
- 'featured' => null,
- 'stream' => null,
- 'highspeed' => null,
- 'sd' => null,
- 'internal' => null,
+ 'search' => null,
+ 'description' => null,
+ 'uploader' => null,
+ 'imdb' => null,
+ 'mal' => null,
+ 'categories' => null,
+ 'types' => null,
+ 'resolutions' => null,
+ 'genres' => null,
+ 'freeleech' => null,
+ 'doubleupload' => null,
+ 'featured' => null,
+ 'stream' => null,
+ 'highspeed' => null,
+ 'sd' => null,
+ 'internal' => null,
'personalrelease' => null,
- 'bookmark' => null,
- 'alive' => null,
- 'dying' => null,
- 'dead' => null,
+ 'bookmark' => null,
+ 'alive' => null,
+ 'dying' => null,
+ 'dead' => null,
];
}
}
diff --git a/app/Models/Seedbox.php b/app/Models/Seedbox.php
index 8fb88de9a..2685d7bb7 100644
--- a/app/Models/Seedbox.php
+++ b/app/Models/Seedbox.php
@@ -45,7 +45,7 @@ class Seedbox extends Model
{
return $this->belongsTo(User::class)->withDefault([
'username' => 'System',
- 'id' => '1',
+ 'id' => '1',
]);
}
}
diff --git a/app/Models/Subscription.php b/app/Models/Subscription.php
index 45712504b..de5f923de 100644
--- a/app/Models/Subscription.php
+++ b/app/Models/Subscription.php
@@ -29,7 +29,7 @@ class Subscription extends Model
{
return $this->belongsTo(User::class)->withDefault([
'username' => 'System',
- 'id' => '1',
+ 'id' => '1',
]);
}
diff --git a/app/Models/Subtitle.php b/app/Models/Subtitle.php
index 4da5ab461..e0501e7b9 100644
--- a/app/Models/Subtitle.php
+++ b/app/Models/Subtitle.php
@@ -28,7 +28,7 @@ class Subtitle extends Model
{
return $this->belongsTo(User::class)->withDefault([
'username' => 'System',
- 'id' => '1',
+ 'id' => '1',
]);
}
diff --git a/app/Models/Ticket.php b/app/Models/Ticket.php
index 76cadd06f..3706e7748 100644
--- a/app/Models/Ticket.php
+++ b/app/Models/Ticket.php
@@ -12,7 +12,7 @@ class Ticket extends Model
use Auditable;
protected $casts = [
- 'closed_at' => 'datetime',
+ 'closed_at' => 'datetime',
'reminded_at' => 'datetime',
];
@@ -59,7 +59,7 @@ class Ticket extends Model
{
return $this->belongsTo(User::class)->withDefault([
'username' => 'System',
- 'id' => '1',
+ 'id' => '1',
]);
}
diff --git a/app/Models/Torrent.php b/app/Models/Torrent.php
index 81dbfb6ca..5b2532f34 100644
--- a/app/Models/Torrent.php
+++ b/app/Models/Torrent.php
@@ -42,7 +42,7 @@ class Torrent extends Model
{
return $this->belongsTo(User::class)->withDefault([
'username' => 'System',
- 'id' => '1',
+ 'id' => '1',
]);
}
@@ -55,7 +55,7 @@ class Torrent extends Model
return $this->belongsTo(User::class)->withDefault([
'username' => 'System',
- 'id' => '1',
+ 'id' => '1',
]);
}
@@ -122,7 +122,7 @@ class Torrent extends Model
{
return $this->belongsTo(User::class, 'moderated_by')->withDefault([
'username' => 'System',
- 'id' => '1',
+ 'id' => '1',
]);
}
diff --git a/app/Models/TorrentDownload.php b/app/Models/TorrentDownload.php
index b3a6489b9..219311ca3 100644
--- a/app/Models/TorrentDownload.php
+++ b/app/Models/TorrentDownload.php
@@ -16,7 +16,7 @@ class TorrentDownload extends Model
{
return $this->belongsTo(User::class)->withDefault([
'username' => 'System',
- 'id' => '1',
+ 'id' => '1',
]);
}
diff --git a/app/Models/TorrentRequest.php b/app/Models/TorrentRequest.php
index 8c087354c..d03f333fc 100644
--- a/app/Models/TorrentRequest.php
+++ b/app/Models/TorrentRequest.php
@@ -32,7 +32,7 @@ class TorrentRequest extends Model
* @var array
*/
protected $casts = [
- 'filled_when' => 'datetime',
+ 'filled_when' => 'datetime',
'approved_when' => 'datetime',
];
@@ -50,7 +50,7 @@ class TorrentRequest extends Model
{
return $this->belongsTo(User::class)->withDefault([
'username' => 'System',
- 'id' => '1',
+ 'id' => '1',
]);
}
@@ -61,7 +61,7 @@ class TorrentRequest extends Model
{
return $this->belongsTo(User::class, 'approved_by')->withDefault([
'username' => 'System',
- 'id' => '1',
+ 'id' => '1',
]);
}
@@ -72,7 +72,7 @@ class TorrentRequest extends Model
{
return $this->belongsTo(User::class, 'filled_by')->withDefault([
'username' => 'System',
- 'id' => '1',
+ 'id' => '1',
]);
}
diff --git a/app/Models/TorrentRequestBounty.php b/app/Models/TorrentRequestBounty.php
index e7816c2bb..8630513ca 100644
--- a/app/Models/TorrentRequestBounty.php
+++ b/app/Models/TorrentRequestBounty.php
@@ -36,7 +36,7 @@ class TorrentRequestBounty extends Model
{
return $this->belongsTo(User::class)->withDefault([
'username' => 'System',
- 'id' => '1',
+ 'id' => '1',
]);
}
diff --git a/app/Models/TwoStepAuth.php b/app/Models/TwoStepAuth.php
index 50d326ed4..05173f0c3 100644
--- a/app/Models/TwoStepAuth.php
+++ b/app/Models/TwoStepAuth.php
@@ -72,11 +72,11 @@ class TwoStepAuth extends Model
*/
protected $casts = [
'requestDate' => 'datetime',
- 'authDate' => 'datetime',
- 'userId' => 'integer',
- 'authCode' => 'string',
- 'authCount' => 'integer',
- 'authStatus' => 'boolean', ];
+ 'authDate' => 'datetime',
+ 'userId' => 'integer',
+ 'authCode' => 'string',
+ 'authCount' => 'integer',
+ 'authStatus' => 'boolean', ];
/**
* Get a validator for an incoming Request.
@@ -85,9 +85,9 @@ class TwoStepAuth extends Model
{
return \array_merge(
[
- 'userId' => 'required|integer',
- 'authCode' => 'required|string|max:4|min:4',
- 'authCount' => 'required|integer',
+ 'userId' => 'required|integer',
+ 'authCode' => 'required|string|max:4|min:4',
+ 'authCount' => 'required|integer',
'authStatus' => 'required|boolean',
],
$merge
diff --git a/app/Models/User.php b/app/Models/User.php
index c55be75ab..664ae09d1 100644
--- a/app/Models/User.php
+++ b/app/Models/User.php
@@ -54,7 +54,7 @@ class User extends Authenticatable
* @var array
*/
protected $casts = [
- 'last_login' => 'datetime',
+ 'last_login' => 'datetime',
'last_action' => 'datetime',
];
@@ -64,21 +64,21 @@ class User extends Authenticatable
public function group(): \Illuminate\Database\Eloquent\Relations\BelongsTo
{
return $this->belongsTo(Group::class)->withDefault([
- 'color' => \config('user.group.defaults.color'),
- 'effect' => \config('user.group.defaults.effect'),
- 'icon' => \config('user.group.defaults.icon'),
- 'name' => \config('user.group.defaults.name'),
- 'slug' => \config('user.group.defaults.slug'),
- 'position' => \config('user.group.defaults.position'),
- 'is_admin' => \config('user.group.defaults.is_admin'),
- 'is_freeleech' => \config('user.group.defaults.is_freeleech'),
- 'is_immune' => \config('user.group.defaults.is_immune'),
- 'is_incognito' => \config('user.group.defaults.is_incognito'),
- 'is_internal' => \config('user.group.defaults.is_internal'),
- 'is_modo' => \config('user.group.defaults.is_modo'),
- 'is_trusted' => \config('user.group.defaults.is_trusted'),
- 'can_upload' => \config('user.group.defaults.can_upload'),
- 'level' => \config('user.group.defaults.level'),
+ 'color' => \config('user.group.defaults.color'),
+ 'effect' => \config('user.group.defaults.effect'),
+ 'icon' => \config('user.group.defaults.icon'),
+ 'name' => \config('user.group.defaults.name'),
+ 'slug' => \config('user.group.defaults.slug'),
+ 'position' => \config('user.group.defaults.position'),
+ 'is_admin' => \config('user.group.defaults.is_admin'),
+ 'is_freeleech' => \config('user.group.defaults.is_freeleech'),
+ 'is_immune' => \config('user.group.defaults.is_immune'),
+ 'is_incognito' => \config('user.group.defaults.is_incognito'),
+ 'is_internal' => \config('user.group.defaults.is_internal'),
+ 'is_modo' => \config('user.group.defaults.is_modo'),
+ 'is_trusted' => \config('user.group.defaults.is_trusted'),
+ 'can_upload' => \config('user.group.defaults.can_upload'),
+ 'level' => \config('user.group.defaults.level'),
]);
}
diff --git a/app/Models/UserActivation.php b/app/Models/UserActivation.php
index 6f7484fd8..313a408d0 100644
--- a/app/Models/UserActivation.php
+++ b/app/Models/UserActivation.php
@@ -29,7 +29,7 @@ class UserActivation extends Model
{
return $this->belongsTo(User::class, 'user_id', 'id')->withDefault([
'username' => 'System',
- 'id' => '1',
+ 'id' => '1',
]);
}
}
diff --git a/app/Models/UserNotification.php b/app/Models/UserNotification.php
index 020a73156..0a6c90e36 100644
--- a/app/Models/UserNotification.php
+++ b/app/Models/UserNotification.php
@@ -33,14 +33,14 @@ class UserNotification extends Model
* @var array
*/
protected $casts = [
- 'json_account_groups' => 'array',
- 'json_mention_groups' => 'array',
- 'json_request_groups' => 'array',
- 'json_torrent_groups' => 'array',
- 'json_forum_groups' => 'array',
- 'json_following_groups' => 'array',
+ 'json_account_groups' => 'array',
+ 'json_mention_groups' => 'array',
+ 'json_request_groups' => 'array',
+ 'json_torrent_groups' => 'array',
+ 'json_forum_groups' => 'array',
+ 'json_following_groups' => 'array',
'json_subscription_groups' => 'array',
- 'json_bon_groups' => 'array',
+ 'json_bon_groups' => 'array',
];
/**
@@ -50,7 +50,7 @@ class UserNotification extends Model
{
return $this->belongsTo(User::class, 'user_id', 'id')->withDefault([
'username' => 'System',
- 'id' => '1',
+ 'id' => '1',
]);
}
diff --git a/app/Models/UserPrivacy.php b/app/Models/UserPrivacy.php
index 36c9f3316..2339359db 100644
--- a/app/Models/UserPrivacy.php
+++ b/app/Models/UserPrivacy.php
@@ -40,17 +40,17 @@ class UserPrivacy extends Model
* @var array
*/
protected $casts = [
- 'json_profile_groups' => 'array',
- 'json_torrent_groups' => 'array',
- 'json_forum_groups' => 'array',
- 'json_bon_groups' => 'array',
- 'json_comment_groups' => 'array',
- 'json_wishlist_groups' => 'array',
- 'json_follower_groups' => 'array',
+ 'json_profile_groups' => 'array',
+ 'json_torrent_groups' => 'array',
+ 'json_forum_groups' => 'array',
+ 'json_bon_groups' => 'array',
+ 'json_comment_groups' => 'array',
+ 'json_wishlist_groups' => 'array',
+ 'json_follower_groups' => 'array',
'json_achievement_groups' => 'array',
- 'json_rank_groups' => 'array',
- 'json_request_groups' => 'array',
- 'json_other_groups' => 'array',
+ 'json_rank_groups' => 'array',
+ 'json_request_groups' => 'array',
+ 'json_other_groups' => 'array',
];
/**
@@ -60,7 +60,7 @@ class UserPrivacy extends Model
{
return $this->belongsTo(User::class, 'user_id', 'id')->withDefault([
'username' => 'System',
- 'id' => '1',
+ 'id' => '1',
]);
}
diff --git a/app/Models/Voter.php b/app/Models/Voter.php
index 133380b87..89ae0b85d 100644
--- a/app/Models/Voter.php
+++ b/app/Models/Voter.php
@@ -37,7 +37,7 @@ class Voter extends Model
{
return $this->belongsTo(User::class)->withDefault([
'username' => 'System',
- 'id' => '1',
+ 'id' => '1',
]);
}
}
diff --git a/app/Models/Warning.php b/app/Models/Warning.php
index d828c324f..09dfb6086 100644
--- a/app/Models/Warning.php
+++ b/app/Models/Warning.php
@@ -39,7 +39,7 @@ class Warning extends Model
{
return $this->belongsTo(User::class, 'user_id')->withDefault([
'username' => 'System',
- 'id' => '1',
+ 'id' => '1',
]);
}
@@ -50,7 +50,7 @@ class Warning extends Model
{
return $this->belongsTo(User::class, 'warned_by')->withDefault([
'username' => 'System',
- 'id' => '1',
+ 'id' => '1',
]);
}
@@ -61,7 +61,7 @@ class Warning extends Model
{
return $this->belongsTo(User::class, 'deleted_by')->withDefault([
'username' => 'System',
- 'id' => '1',
+ 'id' => '1',
]);
}
}
diff --git a/app/Models/Watchlist.php b/app/Models/Watchlist.php
index be7bdf2a3..6c07bf200 100644
--- a/app/Models/Watchlist.php
+++ b/app/Models/Watchlist.php
@@ -18,7 +18,7 @@ class Watchlist extends Model
{
return $this->belongsTo(User::class, 'user_id', 'id')->withDefault([
'username' => 'System',
- 'id' => '1',
+ 'id' => '1',
]);
}
@@ -31,7 +31,7 @@ class Watchlist extends Model
return $this->belongsTo(User::class, 'staff_id', 'id')->withDefault([
'username' => 'System',
- 'id' => '1',
+ 'id' => '1',
]);
}
}
diff --git a/app/Models/Wish.php b/app/Models/Wish.php
index 896cfa5d0..a95055537 100644
--- a/app/Models/Wish.php
+++ b/app/Models/Wish.php
@@ -36,7 +36,7 @@ class Wish extends Model
{
return $this->belongsTo(User::class)->withDefault([
'username' => 'System',
- 'id' => '1',
+ 'id' => '1',
]);
}
}
diff --git a/app/Notifications/NewBon.php b/app/Notifications/NewBon.php
index 26d1f160d..c520c8671 100644
--- a/app/Notifications/NewBon.php
+++ b/app/Notifications/NewBon.php
@@ -44,8 +44,8 @@ class NewBon extends Notification implements ShouldQueue
{
return [
'title' => $this->sender.' Has Gifted You '.$this->bonTransactions->cost.' BON',
- 'body' => $this->sender.' has gifted you '.$this->bonTransactions->cost.' BON with the following note: '.$this->bonTransactions->comment,
- 'url' => \sprintf('/users/%s', $this->bonTransactions->senderObj->username),
+ 'body' => $this->sender.' has gifted you '.$this->bonTransactions->cost.' BON with the following note: '.$this->bonTransactions->comment,
+ 'url' => \sprintf('/users/%s', $this->bonTransactions->senderObj->username),
];
}
}
diff --git a/app/Notifications/NewComment.php b/app/Notifications/NewComment.php
index 92996b791..b8f0914fa 100644
--- a/app/Notifications/NewComment.php
+++ b/app/Notifications/NewComment.php
@@ -45,30 +45,30 @@ class NewComment extends Notification
if ($this->comment->anon == 0) {
return [
'title' => 'New Torrent Comment Received',
- 'body' => $this->comment->user->username.' has left you a comment on Torrent '.$this->comment->torrent->name,
- 'url' => '/torrents/'.$this->comment->torrent->id,
+ 'body' => $this->comment->user->username.' has left you a comment on Torrent '.$this->comment->torrent->name,
+ 'url' => '/torrents/'.$this->comment->torrent->id,
];
}
return [
'title' => 'New Torrent Comment Received',
- 'body' => 'Anonymous has left you a comment on Torrent '.$this->comment->torrent->name,
- 'url' => '/torrents/'.$this->comment->torrent->id,
+ 'body' => 'Anonymous has left you a comment on Torrent '.$this->comment->torrent->name,
+ 'url' => '/torrents/'.$this->comment->torrent->id,
];
}
if ($this->comment->anon == 0) {
return [
'title' => 'New Request Comment Received',
- 'body' => $this->comment->user->username.' has left you a comment on Torrent Request '.$this->comment->request->name,
- 'url' => '/requests/'.$this->comment->request->id,
+ 'body' => $this->comment->user->username.' has left you a comment on Torrent Request '.$this->comment->request->name,
+ 'url' => '/requests/'.$this->comment->request->id,
];
}
return [
'title' => 'New Request Comment Received',
- 'body' => 'Anonymous has left you a comment on Torrent Request '.$this->comment->request->name,
- 'url' => '/requests/'.$this->comment->request->id,
+ 'body' => 'Anonymous has left you a comment on Torrent Request '.$this->comment->request->name,
+ 'url' => '/requests/'.$this->comment->request->id,
];
}
}
diff --git a/app/Notifications/NewCommentTag.php b/app/Notifications/NewCommentTag.php
index 00b3eae55..98d1787b0 100644
--- a/app/Notifications/NewCommentTag.php
+++ b/app/Notifications/NewCommentTag.php
@@ -45,23 +45,23 @@ class NewCommentTag extends Notification implements ShouldQueue
if ($this->type == 'torrent') {
return [
'title' => $this->tagger.' Has Tagged You In A Torrent Comment',
- 'body' => $this->tagger.' has tagged you in a Comment for Torrent '.$this->comment->torrent->name,
- 'url' => \sprintf('/torrents/%s', $this->comment->torrent->id),
+ 'body' => $this->tagger.' has tagged you in a Comment for Torrent '.$this->comment->torrent->name,
+ 'url' => \sprintf('/torrents/%s', $this->comment->torrent->id),
];
}
if ($this->type == 'request') {
return [
'title' => $this->tagger.' Has Tagged You In A Request Comment',
- 'body' => $this->tagger.' has tagged you in a Comment for Request '.$this->comment->request->name,
- 'url' => \sprintf('/requests/%s', $this->comment->request->id),
+ 'body' => $this->tagger.' has tagged you in a Comment for Request '.$this->comment->request->name,
+ 'url' => \sprintf('/requests/%s', $this->comment->request->id),
];
}
return [
'title' => $this->tagger.' Has Tagged You In An Article Comment',
- 'body' => $this->tagger.' has tagged you in a Comment for Article '.$this->comment->article->title,
- 'url' => \sprintf('/articles/%s', $this->comment->article->id),
+ 'body' => $this->tagger.' has tagged you in a Comment for Article '.$this->comment->article->title,
+ 'url' => \sprintf('/articles/%s', $this->comment->article->id),
];
}
}
diff --git a/app/Notifications/NewFollow.php b/app/Notifications/NewFollow.php
index a042e87c3..9d19be1f3 100644
--- a/app/Notifications/NewFollow.php
+++ b/app/Notifications/NewFollow.php
@@ -45,8 +45,8 @@ class NewFollow extends Notification implements ShouldQueue
{
return [
'title' => $this->sender->username.' Has Followed You!',
- 'body' => $this->sender->username.' has started to follow you so they will get notifications about your activities.',
- 'url' => \sprintf('/users/%s', $this->sender->username),
+ 'body' => $this->sender->username.' has started to follow you so they will get notifications about your activities.',
+ 'url' => \sprintf('/users/%s', $this->sender->username),
];
}
}
diff --git a/app/Notifications/NewPost.php b/app/Notifications/NewPost.php
index c2f3e5e27..175aca8c6 100644
--- a/app/Notifications/NewPost.php
+++ b/app/Notifications/NewPost.php
@@ -46,23 +46,23 @@ class NewPost extends Notification implements ShouldQueue
if ($this->type == 'subscription') {
return [
'title' => $this->user->username.' Has Posted In A Subscribed Topic',
- 'body' => $this->user->username.' has left a new post in Subscribed Topic '.$this->post->topic->name,
- 'url' => \sprintf('/forums/topics/%s?page=%s#post-%s', $this->post->topic->id, $this->post->getPageNumber(), $this->post->id),
+ 'body' => $this->user->username.' has left a new post in Subscribed Topic '.$this->post->topic->name,
+ 'url' => \sprintf('/forums/topics/%s?page=%s#post-%s', $this->post->topic->id, $this->post->getPageNumber(), $this->post->id),
];
}
if ($this->type == 'staff') {
return [
'title' => $this->user->username.' Has Posted In A Staff Forum Topic',
- 'body' => $this->user->username.' has left a new post in Staff Topic '.$this->post->topic->name,
- 'url' => \sprintf('%s?page=%s#post-%s', \route('forum_topic', ['id' => $this->post->topic->id]), $this->post->getPageNumber(), $this->post->id),
+ 'body' => $this->user->username.' has left a new post in Staff Topic '.$this->post->topic->name,
+ 'url' => \sprintf('%s?page=%s#post-%s', \route('forum_topic', ['id' => $this->post->topic->id]), $this->post->getPageNumber(), $this->post->id),
];
}
return [
'title' => $this->user->username.' Has Posted In A Topic You Started',
- 'body' => $this->user->username.' has left a new post in Your Topic '.$this->post->topic->name,
- 'url' => \sprintf('/forums/topics/%s?page=%s#post-%s', $this->post->topic->id, $this->post->getPageNumber(), $this->post->id),
+ 'body' => $this->user->username.' has left a new post in Your Topic '.$this->post->topic->name,
+ 'url' => \sprintf('/forums/topics/%s?page=%s#post-%s', $this->post->topic->id, $this->post->getPageNumber(), $this->post->id),
];
}
}
diff --git a/app/Notifications/NewPostTag.php b/app/Notifications/NewPostTag.php
index 93eafa8e3..ac0acfd00 100644
--- a/app/Notifications/NewPostTag.php
+++ b/app/Notifications/NewPostTag.php
@@ -44,8 +44,8 @@ class NewPostTag extends Notification implements ShouldQueue
{
return [
'title' => $this->tagger.' Has Tagged You In A Post',
- 'body' => $this->tagger.' has tagged you in a Post in Topic '.$this->post->topic->name,
- 'url' => \sprintf('/forums/topics/%s?page=%s#post-%s', $this->post->topic->id, $this->post->getPageNumber(), $this->post->id),
+ 'body' => $this->tagger.' has tagged you in a Post in Topic '.$this->post->topic->name,
+ 'url' => \sprintf('/forums/topics/%s?page=%s#post-%s', $this->post->topic->id, $this->post->getPageNumber(), $this->post->id),
];
}
}
diff --git a/app/Notifications/NewPostTip.php b/app/Notifications/NewPostTip.php
index 2e7927c3b..a89161228 100644
--- a/app/Notifications/NewPostTip.php
+++ b/app/Notifications/NewPostTip.php
@@ -44,8 +44,8 @@ class NewPostTip extends Notification implements ShouldQueue
{
return [
'title' => $this->tipper.' Has Tipped You '.$this->amount.' BON For A Forum Post',
- 'body' => $this->tipper.' has tipped one of your Forum posts in '.$this->post->topic->name,
- 'url' => \sprintf('/forums/topics/%s?page=%s#post-%s', $this->post->topic->id, $this->post->getPageNumber(), $this->post->id),
+ 'body' => $this->tipper.' has tipped one of your Forum posts in '.$this->post->topic->name,
+ 'url' => \sprintf('/forums/topics/%s?page=%s#post-%s', $this->post->topic->id, $this->post->getPageNumber(), $this->post->id),
];
}
}
diff --git a/app/Notifications/NewRequestBounty.php b/app/Notifications/NewRequestBounty.php
index 4f6553b8f..2e885b059 100644
--- a/app/Notifications/NewRequestBounty.php
+++ b/app/Notifications/NewRequestBounty.php
@@ -44,8 +44,8 @@ class NewRequestBounty extends Notification implements ShouldQueue
{
return [
'title' => $this->sender.' Has Added A Bounty Of '.$this->amount.' To A Requested Torrent',
- 'body' => $this->sender.' has added a bounty to one of your Requested Torrents '.$this->torrentRequest->name,
- 'url' => \sprintf('/requests/%s', $this->torrentRequest->id),
+ 'body' => $this->sender.' has added a bounty to one of your Requested Torrents '.$this->torrentRequest->name,
+ 'url' => \sprintf('/requests/%s', $this->torrentRequest->id),
];
}
}
diff --git a/app/Notifications/NewRequestClaim.php b/app/Notifications/NewRequestClaim.php
index 7138281a9..c428c8e8a 100644
--- a/app/Notifications/NewRequestClaim.php
+++ b/app/Notifications/NewRequestClaim.php
@@ -44,8 +44,8 @@ class NewRequestClaim extends Notification implements ShouldQueue
{
return [
'title' => $this->sender.' Has Claimed One Of Your Requested Torrents',
- 'body' => $this->sender.' has claimed your Requested Torrent '.$this->torrentRequest->name,
- 'url' => \sprintf('/requests/%s', $this->torrentRequest->id),
+ 'body' => $this->sender.' has claimed your Requested Torrent '.$this->torrentRequest->name,
+ 'url' => \sprintf('/requests/%s', $this->torrentRequest->id),
];
}
}
diff --git a/app/Notifications/NewRequestFill.php b/app/Notifications/NewRequestFill.php
index 4bfb33d83..c47c2a0c6 100644
--- a/app/Notifications/NewRequestFill.php
+++ b/app/Notifications/NewRequestFill.php
@@ -44,8 +44,8 @@ class NewRequestFill extends Notification implements ShouldQueue
{
return [
'title' => $this->sender.' Has Filled One Of Your Torrent Requests',
- 'body' => $this->sender.' has filled one of your Requested Torrents '.$this->torrentRequest->name,
- 'url' => \sprintf('/requests/%s', $this->torrentRequest->id),
+ 'body' => $this->sender.' has filled one of your Requested Torrents '.$this->torrentRequest->name,
+ 'url' => \sprintf('/requests/%s', $this->torrentRequest->id),
];
}
}
diff --git a/app/Notifications/NewRequestFillApprove.php b/app/Notifications/NewRequestFillApprove.php
index d0fe760c1..523f663b2 100644
--- a/app/Notifications/NewRequestFillApprove.php
+++ b/app/Notifications/NewRequestFillApprove.php
@@ -45,15 +45,15 @@ class NewRequestFillApprove extends Notification implements ShouldQueue
if ($this->torrentRequest->anon == 0) {
return [
'title' => $this->sender.' Has Approved Your Fill Of A Requested Torrent',
- 'body' => $this->sender.' has approved your fill of Requested Torrent '.$this->torrentRequest->name,
- 'url' => \sprintf('/requests/%s', $this->torrentRequest->id),
+ 'body' => $this->sender.' has approved your fill of Requested Torrent '.$this->torrentRequest->name,
+ 'url' => \sprintf('/requests/%s', $this->torrentRequest->id),
];
}
return [
'title' => 'An anonymous user has Approved Your Fill Of A Requested Torrent',
- 'body' => 'An anonymous user has approved your fill of Requested Torrent '.$this->torrentRequest->name,
- 'url' => \sprintf('/requests/%s', $this->torrentRequest->id),
+ 'body' => 'An anonymous user has approved your fill of Requested Torrent '.$this->torrentRequest->name,
+ 'url' => \sprintf('/requests/%s', $this->torrentRequest->id),
];
}
}
diff --git a/app/Notifications/NewRequestFillReject.php b/app/Notifications/NewRequestFillReject.php
index 2a328cfaf..01546a61c 100644
--- a/app/Notifications/NewRequestFillReject.php
+++ b/app/Notifications/NewRequestFillReject.php
@@ -44,8 +44,8 @@ class NewRequestFillReject extends Notification implements ShouldQueue
{
return [
'title' => $this->sender.' Has Rejected Your Fill Of A Requested Torrent',
- 'body' => $this->sender.' has rejected your fill of Requested Torrent '.$this->torrentRequest->name,
- 'url' => \sprintf('/requests/%s', $this->torrentRequest->id),
+ 'body' => $this->sender.' has rejected your fill of Requested Torrent '.$this->torrentRequest->name,
+ 'url' => \sprintf('/requests/%s', $this->torrentRequest->id),
];
}
}
diff --git a/app/Notifications/NewRequestUnclaim.php b/app/Notifications/NewRequestUnclaim.php
index 7b899452f..ccbed1817 100644
--- a/app/Notifications/NewRequestUnclaim.php
+++ b/app/Notifications/NewRequestUnclaim.php
@@ -44,8 +44,8 @@ class NewRequestUnclaim extends Notification implements ShouldQueue
{
return [
'title' => $this->sender.' Has Unclaimed One Of Your Requested Torrents',
- 'body' => $this->sender.' has unclaimed your Requested Torrent '.$this->torrentRequest->name,
- 'url' => \sprintf('/requests/%s', $this->torrentRequest->id),
+ 'body' => $this->sender.' has unclaimed your Requested Torrent '.$this->torrentRequest->name,
+ 'url' => \sprintf('/requests/%s', $this->torrentRequest->id),
];
}
}
diff --git a/app/Notifications/NewReseedRequest.php b/app/Notifications/NewReseedRequest.php
index 6921fdf4d..f6615e589 100644
--- a/app/Notifications/NewReseedRequest.php
+++ b/app/Notifications/NewReseedRequest.php
@@ -46,8 +46,8 @@ class NewReseedRequest extends Notification implements ShouldQueue
return [
'title' => 'New Reseed Request',
- 'body' => \sprintf('Some time ago, you downloaded: %s. Now its dead and someone has requested a reseed on it. If you still have this torrent in storage, please consider reseeding it!', $this->torrent->name),
- 'url' => \sprintf('%s/torrents/%s', $appurl, $this->torrent->id),
+ 'body' => \sprintf('Some time ago, you downloaded: %s. Now its dead and someone has requested a reseed on it. If you still have this torrent in storage, please consider reseeding it!', $this->torrent->name),
+ 'url' => \sprintf('%s/torrents/%s', $appurl, $this->torrent->id),
];
}
}
diff --git a/app/Notifications/NewThank.php b/app/Notifications/NewThank.php
index 8a0787d30..ef44cc9f6 100644
--- a/app/Notifications/NewThank.php
+++ b/app/Notifications/NewThank.php
@@ -43,8 +43,8 @@ class NewThank extends Notification
{
return [
'title' => $this->thank->user->username.' Has Thanked You For An Uploaded Torrent',
- 'body' => $this->thank->user->username.' has left you a thanks on Uploaded Torrent '.$this->thank->torrent->name,
- 'url' => '/torrents/'.$this->thank->torrent->id,
+ 'body' => $this->thank->user->username.' has left you a thanks on Uploaded Torrent '.$this->thank->torrent->name,
+ 'url' => '/torrents/'.$this->thank->torrent->id,
];
}
}
diff --git a/app/Notifications/NewTopic.php b/app/Notifications/NewTopic.php
index 82bbedf72..e0995d11b 100644
--- a/app/Notifications/NewTopic.php
+++ b/app/Notifications/NewTopic.php
@@ -46,15 +46,15 @@ class NewTopic extends Notification implements ShouldQueue
if ($this->type == 'staff') {
return [
'title' => $this->user->username.' Has Posted In A Staff Forum',
- 'body' => $this->user->username.' has started a new staff topic in '.$this->topic->forum->name,
- 'url' => \route('forum_topic', ['id' => $this->topic->id]),
+ 'body' => $this->user->username.' has started a new staff topic in '.$this->topic->forum->name,
+ 'url' => \route('forum_topic', ['id' => $this->topic->id]),
];
}
return [
'title' => $this->user->username.' Has Posted In A Subscribed Forum',
- 'body' => $this->user->username.' has started a new topic in '.$this->topic->forum->name,
- 'url' => \sprintf('/forums/topics/%s', $this->topic->id),
+ 'body' => $this->user->username.' has started a new topic in '.$this->topic->forum->name,
+ 'url' => \sprintf('/forums/topics/%s', $this->topic->id),
];
}
}
diff --git a/app/Notifications/NewUnfollow.php b/app/Notifications/NewUnfollow.php
index 595836e48..540459650 100644
--- a/app/Notifications/NewUnfollow.php
+++ b/app/Notifications/NewUnfollow.php
@@ -44,8 +44,8 @@ class NewUnfollow extends Notification implements ShouldQueue
{
return [
'title' => $this->sender->username.' Has Unfollowed You!',
- 'body' => $this->sender->username.' has stopped following you so they will no longer get notifications about your activities.',
- 'url' => '/users/'.$this->sender->username,
+ 'body' => $this->sender->username.' has stopped following you so they will no longer get notifications about your activities.',
+ 'url' => '/users/'.$this->sender->username,
];
}
}
diff --git a/app/Notifications/NewUpload.php b/app/Notifications/NewUpload.php
index 628e9fda7..5c1af4134 100644
--- a/app/Notifications/NewUpload.php
+++ b/app/Notifications/NewUpload.php
@@ -44,8 +44,8 @@ class NewUpload extends Notification implements ShouldQueue
{
return [
'title' => $this->torrent->user->username.' Has Uploaded A New Torrent',
- 'body' => \sprintf('%s, whom you are following has uploaded Torrent %s', $this->torrent->user->username, $this->torrent->name),
- 'url' => \sprintf('/torrents/%s', $this->torrent->id),
+ 'body' => \sprintf('%s, whom you are following has uploaded Torrent %s', $this->torrent->user->username, $this->torrent->name),
+ 'url' => \sprintf('/torrents/%s', $this->torrent->id),
];
}
}
diff --git a/app/Notifications/NewUploadTip.php b/app/Notifications/NewUploadTip.php
index e6efd9616..916cc7e06 100644
--- a/app/Notifications/NewUploadTip.php
+++ b/app/Notifications/NewUploadTip.php
@@ -44,8 +44,8 @@ class NewUploadTip extends Notification implements ShouldQueue
{
return [
'title' => $this->tipper.' Has Tipped You '.$this->amount.' BON For An Uploaded Torrent',
- 'body' => $this->tipper.' has tipped one of your Uploaded Torrents '.$this->torrent->name,
- 'url' => \sprintf('/torrents/%s', $this->torrent->id),
+ 'body' => $this->tipper.' has tipped one of your Uploaded Torrents '.$this->torrent->name,
+ 'url' => \sprintf('/torrents/%s', $this->torrent->id),
];
}
}
diff --git a/app/Repositories/ChatRepository.php b/app/Repositories/ChatRepository.php
index b79dc36dd..ad27a5e1b 100644
--- a/app/Repositories/ChatRepository.php
+++ b/app/Repositories/ChatRepository.php
@@ -104,11 +104,11 @@ class ChatRepository
$message = $this->htmlifyMessage($message);
$message = $this->message->create([
- 'user_id' => $userId,
+ 'user_id' => $userId,
'chatroom_id' => $roomId,
- 'message' => $message,
+ 'message' => $message,
'receiver_id' => $receiver,
- 'bot_id' => $bot,
+ 'bot_id' => $bot,
]);
$this->checkMessageLimits($roomId);
@@ -127,10 +127,10 @@ class ChatRepository
$message = $this->htmlifyMessage($message);
$save = $this->message->create([
- 'bot_id' => $botId,
- 'user_id' => 1,
+ 'bot_id' => $botId,
+ 'user_id' => 1,
'chatroom_id' => 0,
- 'message' => $message,
+ 'message' => $message,
'receiver_id' => $receiver,
]);
@@ -156,11 +156,11 @@ class ChatRepository
$message = $this->htmlifyMessage($message);
$save = $this->message->create([
- 'user_id' => $userId,
+ 'user_id' => $userId,
'chatroom_id' => 0,
- 'message' => $message,
+ 'message' => $message,
'receiver_id' => $receiver,
- 'bot_id' => $bot,
+ 'bot_id' => $bot,
]);
$message = Message::with([
diff --git a/app/Services/Tmdb/Client/Collection.php b/app/Services/Tmdb/Client/Collection.php
index befa4f9f5..3ed6ec891 100644
--- a/app/Services/Tmdb/Client/Collection.php
+++ b/app/Services/Tmdb/Client/Collection.php
@@ -25,16 +25,16 @@ class Collection
{
$this->client = new \GuzzleHttp\Client(
[
- 'base_uri' => self::API_BASE_URI,
- 'verify' => false,
+ 'base_uri' => self::API_BASE_URI,
+ 'verify' => false,
'http_errors' => false,
- 'headers' => [
+ 'headers' => [
'Content-Type' => 'application/json',
- 'Accept' => 'application/json',
+ 'Accept' => 'application/json',
],
'query' => [
- 'api_key' => \config('api-keys.tmdb'),
- 'language' => \config('app.meta_locale'),
+ 'api_key' => \config('api-keys.tmdb'),
+ 'language' => \config('app.meta_locale'),
'append_to_response' => 'videos,images,credits',
],
]
diff --git a/app/Services/Tmdb/Client/Company.php b/app/Services/Tmdb/Client/Company.php
index 713f5c3b3..a6d651f27 100644
--- a/app/Services/Tmdb/Client/Company.php
+++ b/app/Services/Tmdb/Client/Company.php
@@ -27,18 +27,18 @@ class Company
{
$this->client = new \GuzzleHttp\Client(
[
- 'base_uri' => self::API_BASE_URI,
- 'verify' => false,
+ 'base_uri' => self::API_BASE_URI,
+ 'verify' => false,
'http_errors' => false,
- 'headers' => [
+ 'headers' => [
'Content-Type' => 'application/json',
- 'Accept' => 'application/json',
+ 'Accept' => 'application/json',
],
'query' => [
- 'api_key' => \config('api-keys.tmdb'),
- 'language' => \config('app.meta_locale'),
+ 'api_key' => \config('api-keys.tmdb'),
+ 'language' => \config('app.meta_locale'),
'append_to_response' => 'movies,videos,images,credits',
- 'page' => $page,
+ 'page' => $page,
],
]
);
diff --git a/app/Services/Tmdb/Client/Episode.php b/app/Services/Tmdb/Client/Episode.php
index 33cb404d2..d1ad5959c 100644
--- a/app/Services/Tmdb/Client/Episode.php
+++ b/app/Services/Tmdb/Client/Episode.php
@@ -25,16 +25,16 @@ class Episode
{
$this->client = new \GuzzleHttp\Client(
[
- 'base_uri' => self::API_BASE_URI,
- 'verify' => false,
+ 'base_uri' => self::API_BASE_URI,
+ 'verify' => false,
'http_errors' => false,
- 'headers' => [
+ 'headers' => [
'Content-Type' => 'application/json',
- 'Accept' => 'application/json',
+ 'Accept' => 'application/json',
],
'query' => [
- 'api_key' => \config('api-keys.tmdb'),
- 'language' => \config('app.meta_locale'),
+ 'api_key' => \config('api-keys.tmdb'),
+ 'language' => \config('app.meta_locale'),
'append_to_response' => 'video,credits,external_ids',
],
]
diff --git a/app/Services/Tmdb/Client/FindMovie.php b/app/Services/Tmdb/Client/FindMovie.php
index 76daf8842..43117d096 100644
--- a/app/Services/Tmdb/Client/FindMovie.php
+++ b/app/Services/Tmdb/Client/FindMovie.php
@@ -25,12 +25,12 @@ class FindMovie
{
$this->client = new \GuzzleHttp\Client(
[
- 'base_uri' => self::API_BASE_URI,
- 'verify' => false,
+ 'base_uri' => self::API_BASE_URI,
+ 'verify' => false,
'http_errors' => false,
- 'headers' => [
+ 'headers' => [
'Content-Type' => 'application/json',
- 'Accept' => 'application/json',
+ 'Accept' => 'application/json',
],
// 'query' => [
// 'api_key' => config('api-keys.tmdb'),
diff --git a/app/Services/Tmdb/Client/FindTv.php b/app/Services/Tmdb/Client/FindTv.php
index d151dba0d..7656fd9db 100644
--- a/app/Services/Tmdb/Client/FindTv.php
+++ b/app/Services/Tmdb/Client/FindTv.php
@@ -25,12 +25,12 @@ class FindTv
{
$this->client = new \GuzzleHttp\Client(
[
- 'base_uri' => self::API_BASE_URI,
- 'verify' => false,
+ 'base_uri' => self::API_BASE_URI,
+ 'verify' => false,
'http_errors' => false,
- 'headers' => [
+ 'headers' => [
'Content-Type' => 'application/json',
- 'Accept' => 'application/json',
+ 'Accept' => 'application/json',
],
// 'query' => [
// 'api_key' => config('api-keys.tmdb'),
diff --git a/app/Services/Tmdb/Client/Genre.php b/app/Services/Tmdb/Client/Genre.php
index 80a31128c..42d8ed044 100644
--- a/app/Services/Tmdb/Client/Genre.php
+++ b/app/Services/Tmdb/Client/Genre.php
@@ -25,15 +25,15 @@ class Genre
{
$this->client = new \GuzzleHttp\Client(
[
- 'base_uri' => self::API_BASE_URI,
- 'verify' => false,
+ 'base_uri' => self::API_BASE_URI,
+ 'verify' => false,
'http_errors' => false,
- 'headers' => [
+ 'headers' => [
'Content-Type' => 'application/json',
- 'Accept' => 'application/json',
+ 'Accept' => 'application/json',
],
'query' => [
- 'api_key' => \config('api-keys.tmdb'),
+ 'api_key' => \config('api-keys.tmdb'),
'language' => \config('app.meta_locale'),
],
]
diff --git a/app/Services/Tmdb/Client/Movie.php b/app/Services/Tmdb/Client/Movie.php
index 682cafcd8..35e8edad7 100644
--- a/app/Services/Tmdb/Client/Movie.php
+++ b/app/Services/Tmdb/Client/Movie.php
@@ -25,16 +25,16 @@ class Movie
{
$this->client = new \GuzzleHttp\Client(
[
- 'base_uri' => self::API_BASE_URI,
- 'verify' => false,
+ 'base_uri' => self::API_BASE_URI,
+ 'verify' => false,
'http_errors' => false,
- 'headers' => [
+ 'headers' => [
'Content-Type' => 'application/json',
- 'Accept' => 'application/json',
+ 'Accept' => 'application/json',
],
'query' => [
- 'api_key' => \config('api-keys.tmdb'),
- 'language' => \config('app.meta_locale'),
+ 'api_key' => \config('api-keys.tmdb'),
+ 'language' => \config('app.meta_locale'),
'append_to_response' => 'videos,images,credits,external_ids,keywords,recommendations,alternative_titles',
],
]
diff --git a/app/Services/Tmdb/Client/Network.php b/app/Services/Tmdb/Client/Network.php
index 3f6860604..78475fbd1 100644
--- a/app/Services/Tmdb/Client/Network.php
+++ b/app/Services/Tmdb/Client/Network.php
@@ -25,16 +25,16 @@ class Network
{
$this->client = new \GuzzleHttp\Client(
[
- 'base_uri' => self::API_BASE_URI,
- 'verify' => false,
+ 'base_uri' => self::API_BASE_URI,
+ 'verify' => false,
'http_errors' => false,
- 'headers' => [
+ 'headers' => [
'Content-Type' => 'application/json',
- 'Accept' => 'application/json',
+ 'Accept' => 'application/json',
],
'query' => [
- 'api_key' => \config('api-keys.tmdb'),
- 'language' => \config('app.meta_locale'),
+ 'api_key' => \config('api-keys.tmdb'),
+ 'language' => \config('app.meta_locale'),
'append_to_response' => 'images',
],
]
diff --git a/app/Services/Tmdb/Client/Person.php b/app/Services/Tmdb/Client/Person.php
index 1122484bf..e84eff6f9 100644
--- a/app/Services/Tmdb/Client/Person.php
+++ b/app/Services/Tmdb/Client/Person.php
@@ -25,16 +25,16 @@ class Person
{
$this->client = new \GuzzleHttp\Client(
[
- 'base_uri' => self::API_BASE_URI,
- 'verify' => false,
+ 'base_uri' => self::API_BASE_URI,
+ 'verify' => false,
'http_errors' => false,
- 'headers' => [
+ 'headers' => [
'Content-Type' => 'application/json',
- 'Accept' => 'application/json',
+ 'Accept' => 'application/json',
],
'query' => [
- 'api_key' => \config('api-keys.tmdb'),
- 'language' => \config('app.meta_locale'),
+ 'api_key' => \config('api-keys.tmdb'),
+ 'language' => \config('app.meta_locale'),
'append_to_response' => 'images,credits',
],
]
diff --git a/app/Services/Tmdb/Client/Season.php b/app/Services/Tmdb/Client/Season.php
index ab63265cc..18c09aadc 100644
--- a/app/Services/Tmdb/Client/Season.php
+++ b/app/Services/Tmdb/Client/Season.php
@@ -25,16 +25,16 @@ class Season
{
$this->client = new \GuzzleHttp\Client(
[
- 'base_uri' => self::API_BASE_URI,
- 'verify' => false,
+ 'base_uri' => self::API_BASE_URI,
+ 'verify' => false,
'http_errors' => false,
- 'headers' => [
+ 'headers' => [
'Content-Type' => 'application/json',
- 'Accept' => 'application/json',
+ 'Accept' => 'application/json',
],
'query' => [
- 'api_key' => \config('api-keys.tmdb'),
- 'language' => \config('app.meta_locale'),
+ 'api_key' => \config('api-keys.tmdb'),
+ 'language' => \config('app.meta_locale'),
'append_to_response' => 'videos,images,credits,external_ids',
],
]
diff --git a/app/Services/Tmdb/Client/TV.php b/app/Services/Tmdb/Client/TV.php
index f6da006e8..122c7aced 100644
--- a/app/Services/Tmdb/Client/TV.php
+++ b/app/Services/Tmdb/Client/TV.php
@@ -25,16 +25,16 @@ class TV
{
$this->client = new \GuzzleHttp\Client(
[
- 'base_uri' => self::API_BASE_URI,
- 'verify' => false,
+ 'base_uri' => self::API_BASE_URI,
+ 'verify' => false,
'http_errors' => false,
- 'headers' => [
+ 'headers' => [
'Content-Type' => 'application/json',
- 'Accept' => 'application/json',
+ 'Accept' => 'application/json',
],
'query' => [
- 'api_key' => \config('api-keys.tmdb'),
- 'language' => \config('app.meta_locale'),
+ 'api_key' => \config('api-keys.tmdb'),
+ 'language' => \config('app.meta_locale'),
'append_to_response' => 'videos,images,credits,external_ids,keywords,recommendations,alternative_titles',
],
]
diff --git a/app/Services/Tmdb/TMDB.php b/app/Services/Tmdb/TMDB.php
index 8ebf3cae7..e1c1b3483 100644
--- a/app/Services/Tmdb/TMDB.php
+++ b/app/Services/Tmdb/TMDB.php
@@ -52,29 +52,29 @@ class TMDB
return [
'character' => $cast['character'],
'credit_id' => $cast['credit_id'],
- 'gender' => $cast['gender'],
- 'name' => $cast['name'],
- 'order' => $cast['order'],
- 'still' => $this->image('profile', $cast),
+ 'gender' => $cast['gender'],
+ 'name' => $cast['name'],
+ 'order' => $cast['order'],
+ 'still' => $this->image('profile', $cast),
];
}
public function person_array($person): array
{
return [
- 'birthday' => $this->ifExists('birthday', $person),
+ 'birthday' => $this->ifExists('birthday', $person),
'known_for_department' => $this->ifExists('known_for_department', $person),
- 'deathday' => $this->ifExists('deathday', $person),
- 'name' => $this->ifExists('name', $person),
+ 'deathday' => $this->ifExists('deathday', $person),
+ 'name' => $this->ifExists('name', $person),
//"also_known_as" => $person['also_known_as'] ?? null,
- 'gender' => $this->ifExists('gender', $person),
- 'biography' => $this->ifExists('biography', $person),
- 'popularity' => $this->ifExists('popularity', $person),
+ 'gender' => $this->ifExists('gender', $person),
+ 'biography' => $this->ifExists('biography', $person),
+ 'popularity' => $this->ifExists('popularity', $person),
'place_of_birth' => $this->ifExists('place_of_birth', $person),
- 'still' => $this->image('profile', $person),
- 'adult' => $this->ifExists('adult', $person),
- 'imdb_id' => $this->ifExists('imdb_id', $person),
- 'homepage' => $this->ifExists('homepage', $person),
+ 'still' => $this->image('profile', $person),
+ 'adult' => $this->ifExists('adult', $person),
+ 'imdb_id' => $this->ifExists('imdb_id', $person),
+ 'homepage' => $this->ifExists('homepage', $person),
];
}
}
diff --git a/app/Services/Tmdb/TMDBScraper.php b/app/Services/Tmdb/TMDBScraper.php
index dd37b3829..186dc938d 100644
--- a/app/Services/Tmdb/TMDBScraper.php
+++ b/app/Services/Tmdb/TMDBScraper.php
@@ -53,26 +53,26 @@ class TMDBScraper implements ShouldQueue
$tv = (new Client\TV($id))->getData();
if (isset($tv['id'])) {
$array = [
- 'backdrop' => $tmdb->image('backdrop', $tv),
- 'episode_run_time' => $tmdb->ifHasItems('episode_run_time', $tv),
- 'first_air_date' => $tmdb->ifExists('first_air_date', $tv),
- 'homepage' => $tv['homepage'],
- 'imdb_id' => \substr($tv['external_ids']['imdb_id'] ?? '', 2),
- 'in_production' => $tv['in_production'],
- 'last_air_date' => $tmdb->ifExists('last_air_date', $tv),
- 'name' => Str::limit($tv['name'], 200),
- 'name_sort' => \addslashes(\str_replace(['The ', 'An ', 'A ', '"'], [''], Str::limit($tv['name'], 100))),
+ 'backdrop' => $tmdb->image('backdrop', $tv),
+ 'episode_run_time' => $tmdb->ifHasItems('episode_run_time', $tv),
+ 'first_air_date' => $tmdb->ifExists('first_air_date', $tv),
+ 'homepage' => $tv['homepage'],
+ 'imdb_id' => \substr($tv['external_ids']['imdb_id'] ?? '', 2),
+ 'in_production' => $tv['in_production'],
+ 'last_air_date' => $tmdb->ifExists('last_air_date', $tv),
+ 'name' => Str::limit($tv['name'], 200),
+ 'name_sort' => \addslashes(\str_replace(['The ', 'An ', 'A ', '"'], [''], Str::limit($tv['name'], 100))),
'number_of_episodes' => $tv['number_of_episodes'],
- 'number_of_seasons' => $tv['number_of_seasons'],
- 'origin_country' => $tmdb->ifHasItems('origin_country', $tv),
- 'original_language' => $tv['original_language'],
- 'original_name' => $tv['original_name'],
- 'overview' => $tv['overview'],
- 'popularity' => $tv['popularity'],
- 'poster' => $tmdb->image('poster', $tv),
- 'status' => $tv['status'],
- 'vote_average' => $tv['vote_average'],
- 'vote_count' => $tv['vote_count'],
+ 'number_of_seasons' => $tv['number_of_seasons'],
+ 'origin_country' => $tmdb->ifHasItems('origin_country', $tv),
+ 'original_language' => $tv['original_language'],
+ 'original_name' => $tv['original_name'],
+ 'overview' => $tv['overview'],
+ 'popularity' => $tv['popularity'],
+ 'poster' => $tmdb->image('poster', $tv),
+ 'status' => $tv['status'],
+ 'vote_average' => $tv['vote_average'],
+ 'vote_count' => $tv['vote_count'],
];
Tv::updateOrCreate(['id' => $id], $array);
@@ -101,25 +101,25 @@ class TMDBScraper implements ShouldQueue
Str::limit($matches['namesort'] ? $matches['namesort'].' '.$year : $movie['title'], 100)));
$array = [
- 'adult' => $movie['adult'] ?? 0,
- 'backdrop' => $tmdb->image('backdrop', $movie),
- 'budget' => $movie['budget'] ?? null,
- 'homepage' => $movie['homepage'] ?? null,
- 'imdb_id' => \substr($movie['imdb_id'] ?? '', 2),
+ 'adult' => $movie['adult'] ?? 0,
+ 'backdrop' => $tmdb->image('backdrop', $movie),
+ 'budget' => $movie['budget'] ?? null,
+ 'homepage' => $movie['homepage'] ?? null,
+ 'imdb_id' => \substr($movie['imdb_id'] ?? '', 2),
'original_language' => $movie['original_language'] ?? null,
- 'original_title' => $movie['original_title'] ?? null,
- 'overview' => $movie['overview'] ?? null,
- 'popularity' => $movie['popularity'] ?? null,
- 'poster' => $tmdb->image('poster', $movie),
- 'release_date' => $tmdb->ifExists('release_date', $movie),
- 'revenue' => $movie['revenue'] ?? null,
- 'runtime' => $movie['runtime'] ?? null,
- 'status' => $movie['status'] ?? null,
- 'tagline' => $movie['tagline'] ?? null,
- 'title' => Str::limit($movie['title'], 200),
- 'title_sort' => $titleSort,
- 'vote_average' => $movie['vote_average'] ?? null,
- 'vote_count' => $movie['vote_count'] ?? null,
+ 'original_title' => $movie['original_title'] ?? null,
+ 'overview' => $movie['overview'] ?? null,
+ 'popularity' => $movie['popularity'] ?? null,
+ 'poster' => $tmdb->image('poster', $movie),
+ 'release_date' => $tmdb->ifExists('release_date', $movie),
+ 'revenue' => $movie['revenue'] ?? null,
+ 'runtime' => $movie['runtime'] ?? null,
+ 'status' => $movie['status'] ?? null,
+ 'tagline' => $movie['tagline'] ?? null,
+ 'title' => Str::limit($movie['title'], 200),
+ 'title_sort' => $titleSort,
+ 'vote_average' => $movie['vote_average'] ?? null,
+ 'vote_count' => $movie['vote_count'] ?? null,
];
Movie::updateOrCreate(['id' => $movie['id']], $array);
@@ -140,10 +140,10 @@ class TMDBScraper implements ShouldQueue
$collection = (new Client\Collection($id))->getData();
$array = [
- 'name' => $collection['name'],
+ 'name' => $collection['name'],
'overview' => $collection['overview'],
'backdrop' => $tmdb->image('backdrop', $collection),
- 'poster' => $tmdb->image('poster', $collection),
+ 'poster' => $tmdb->image('poster', $collection),
];
Collection::updateOrCreate(['id' => $collection['id']], $array);
@@ -162,10 +162,10 @@ class TMDBScraper implements ShouldQueue
$company = (new Client\Company($id))->getData();
$array = [
- 'name' => $company['name'],
+ 'name' => $company['name'],
'overview' => $company['overview'],
'backdrop' => $tmdb->image('backdrop', $company),
- 'poster' => $tmdb->image('poster', $company),
+ 'poster' => $tmdb->image('poster', $company),
];
Company::updateOrCreate(['id' => $company['id']], $array);
diff --git a/app/Traits/Auditable.php b/app/Traits/Auditable.php
index 3ece6f54b..d3042a8c4 100644
--- a/app/Traits/Auditable.php
+++ b/app/Traits/Auditable.php
@@ -148,13 +148,13 @@ trait Auditable
// Store record
$now = Carbon::now()->format('Y-m-d H:i:s');
DB::table('audits')->insert([
- 'user_id' => $userId,
- 'model_name' => \class_basename($model),
+ 'user_id' => $userId,
+ 'model_name' => \class_basename($model),
'model_entry_id' => $model->{$model->getKeyName()},
- 'action' => 'create',
- 'record' => $data,
- 'created_at' => $now,
- 'updated_at' => $now,
+ 'action' => 'create',
+ 'record' => $data,
+ 'created_at' => $now,
+ 'updated_at' => $now,
]);
}
}
@@ -176,13 +176,13 @@ trait Auditable
// Store record
$now = Carbon::now()->format('Y-m-d H:i:s');
DB::table('audits')->insert([
- 'user_id' => $userId,
- 'model_name' => \class_basename($model),
+ 'user_id' => $userId,
+ 'model_name' => \class_basename($model),
'model_entry_id' => $model->{$model->getKeyName()},
- 'action' => 'update',
- 'record' => $data,
- 'created_at' => $now,
- 'updated_at' => $now,
+ 'action' => 'update',
+ 'record' => $data,
+ 'created_at' => $now,
+ 'updated_at' => $now,
]);
}
}
@@ -204,13 +204,13 @@ trait Auditable
// Store record
$now = Carbon::now()->format('Y-m-d H:i:s');
DB::table('audits')->insert([
- 'user_id' => $userId,
- 'model_name' => \class_basename($model),
+ 'user_id' => $userId,
+ 'model_name' => \class_basename($model),
'model_entry_id' => $model->{$model->getKeyName()},
- 'action' => 'delete',
- 'record' => $data,
- 'created_at' => $now,
- 'updated_at' => $now,
+ 'action' => 'delete',
+ 'record' => $data,
+ 'created_at' => $now,
+ 'updated_at' => $now,
]);
}
}
diff --git a/app/Traits/GroupedLastScope.php b/app/Traits/GroupedLastScope.php
index a5f08568c..ce98e0ebe 100644
--- a/app/Traits/GroupedLastScope.php
+++ b/app/Traits/GroupedLastScope.php
@@ -24,8 +24,8 @@ trait GroupedLastScope
* Each group is composed of one or more columns that make a unique combination to return the
* last entry for.
*
- * @param \Illuminate\Database\Eloquent\Builder $query
- * @param array|null $fields A list of fields that's considered as a unique entry by the query.
+ * @param \Illuminate\Database\Eloquent\Builder $query
+ * @param array|null $fields A list of fields that's considered as a unique entry by the query.
*/
public function scopeLastPerGroup(Builder $query, ?array $fields = null): Builder
{
diff --git a/app/Traits/TorrentFilter.php b/app/Traits/TorrentFilter.php
index 5d84d0adf..8214b2a8c 100644
--- a/app/Traits/TorrentFilter.php
+++ b/app/Traits/TorrentFilter.php
@@ -27,25 +27,25 @@ trait TorrentFilter
public function scopeOfName(Builder $query, string $name, bool $isRegex = false): Builder
{
return $query->when($isRegex,
- fn ($query) => $query->where('name', 'REGEXP', \substr($name, 1, -1)),
- fn ($query) => $query->where('name', 'LIKE', '%'.\str_replace(' ', '%', $name).'%')
- );
+ fn ($query) => $query->where('name', 'REGEXP', \substr($name, 1, -1)),
+ fn ($query) => $query->where('name', 'LIKE', '%'.\str_replace(' ', '%', $name).'%')
+ );
}
public function scopeOfDescription(Builder $query, string $description, bool $isRegex = false): Builder
{
return $query->when($isRegex,
- fn ($query) => $query->where('description', 'REGEXP', \substr($description, 1, -1)),
- fn ($query) => $query->where('description', 'LIKE', '%'.$description.'%')
- );
+ fn ($query) => $query->where('description', 'REGEXP', \substr($description, 1, -1)),
+ fn ($query) => $query->where('description', 'LIKE', '%'.$description.'%')
+ );
}
public function scopeOfMediainfo(Builder $query, string $mediainfo, bool $isRegex = false): Builder
{
return $query->when($isRegex,
- fn ($query) => $query->where('mediainfo', 'REGEXP', \substr($mediainfo, 1, -1)),
- fn ($query) => $query->where('mediainfo', 'LIKE', '%'.$mediainfo.'%')
- );
+ fn ($query) => $query->where('mediainfo', 'REGEXP', \substr($mediainfo, 1, -1)),
+ fn ($query) => $query->where('mediainfo', 'LIKE', '%'.$mediainfo.'%')
+ );
}
public function scopeOfUploader(Builder $query, string $username): Builder
diff --git a/app/Traits/TwoStep.php b/app/Traits/TwoStep.php
index 744b1783d..8d5797e46 100644
--- a/app/Traits/TwoStep.php
+++ b/app/Traits/TwoStep.php
@@ -105,8 +105,8 @@ trait TwoStep
'userId' => $userId,
],
[
- 'userId' => $userId,
- 'authCode' => $this->generateCode(),
+ 'userId' => $userId,
+ 'authCode' => $this->generateCode(),
'authCount' => 0,
]
);
@@ -129,7 +129,7 @@ trait TwoStep
$remaining = $time->addMinutes(\config('auth.TwoStepExceededCountdownMinutes'))->diffForHumans(null, true);
$data = [
- 'tomorrow' => $tomorrow,
+ 'tomorrow' => $tomorrow,
'remaining' => $remaining,
];
diff --git a/config/app.php b/config/app.php
index 15f8f381d..715e64a96 100644
--- a/config/app.php
+++ b/config/app.php
@@ -215,45 +215,45 @@ return [
'aliases' => [
- 'App' => Illuminate\Support\Facades\App::class,
- 'Arr' => Illuminate\Support\Arr::class,
- 'Artisan' => Illuminate\Support\Facades\Artisan::class,
- 'Auth' => Illuminate\Support\Facades\Auth::class,
- 'Blade' => Illuminate\Support\Facades\Blade::class,
- 'Broadcast' => Illuminate\Support\Facades\Broadcast::class,
- 'Bus' => Illuminate\Support\Facades\Bus::class,
- 'Cache' => Illuminate\Support\Facades\Cache::class,
- 'CacheUser' => App\Helpers\CacheUser::class,
- 'Config' => Illuminate\Support\Facades\Config::class,
- 'Cookie' => Illuminate\Support\Facades\Cookie::class,
- 'CookieConsent' => BrianFaust\CookieConsent\Facades\CookieConsent::class,
- 'Crypt' => Illuminate\Support\Facades\Crypt::class,
- 'DB' => Illuminate\Support\Facades\DB::class,
- 'Eloquent' => Illuminate\Database\Eloquent\Model::class,
- 'Event' => Illuminate\Support\Facades\Event::class,
- 'File' => Illuminate\Support\Facades\File::class,
- 'Gate' => Illuminate\Support\Facades\Gate::class,
- 'Hash' => Illuminate\Support\Facades\Hash::class,
- 'Image' => Intervention\Image\Facades\Image::class,
- 'Irc' => App\Bots\IRCAnnounceBot::class,
- 'Lang' => Illuminate\Support\Facades\Lang::class,
- 'Log' => Illuminate\Support\Facades\Log::class,
- 'Mail' => Illuminate\Support\Facades\Mail::class,
- 'Notification' => Illuminate\Support\Facades\Notification::class,
- 'Password' => Illuminate\Support\Facades\Password::class,
- 'Queue' => Illuminate\Support\Facades\Queue::class,
- 'Redirect' => Illuminate\Support\Facades\Redirect::class,
- 'Redis' => Illuminate\Support\Facades\Redis::class,
- 'Request' => Illuminate\Support\Facades\Request::class,
- 'Response' => Illuminate\Support\Facades\Response::class,
- 'Route' => Illuminate\Support\Facades\Route::class,
- 'Schema' => Illuminate\Support\Facades\Schema::class,
- 'Session' => Illuminate\Support\Facades\Session::class,
- 'Storage' => Illuminate\Support\Facades\Storage::class,
- 'Str' => Illuminate\Support\Str::class,
- 'URL' => Illuminate\Support\Facades\URL::class,
- 'Validator' => Illuminate\Support\Facades\Validator::class,
- 'View' => Illuminate\Support\Facades\View::class,
+ 'App' => Illuminate\Support\Facades\App::class,
+ 'Arr' => Illuminate\Support\Arr::class,
+ 'Artisan' => Illuminate\Support\Facades\Artisan::class,
+ 'Auth' => Illuminate\Support\Facades\Auth::class,
+ 'Blade' => Illuminate\Support\Facades\Blade::class,
+ 'Broadcast' => Illuminate\Support\Facades\Broadcast::class,
+ 'Bus' => Illuminate\Support\Facades\Bus::class,
+ 'Cache' => Illuminate\Support\Facades\Cache::class,
+ 'CacheUser' => App\Helpers\CacheUser::class,
+ 'Config' => Illuminate\Support\Facades\Config::class,
+ 'Cookie' => Illuminate\Support\Facades\Cookie::class,
+ 'CookieConsent' => BrianFaust\CookieConsent\Facades\CookieConsent::class,
+ 'Crypt' => Illuminate\Support\Facades\Crypt::class,
+ 'DB' => Illuminate\Support\Facades\DB::class,
+ 'Eloquent' => Illuminate\Database\Eloquent\Model::class,
+ 'Event' => Illuminate\Support\Facades\Event::class,
+ 'File' => Illuminate\Support\Facades\File::class,
+ 'Gate' => Illuminate\Support\Facades\Gate::class,
+ 'Hash' => Illuminate\Support\Facades\Hash::class,
+ 'Image' => Intervention\Image\Facades\Image::class,
+ 'Irc' => App\Bots\IRCAnnounceBot::class,
+ 'Lang' => Illuminate\Support\Facades\Lang::class,
+ 'Log' => Illuminate\Support\Facades\Log::class,
+ 'Mail' => Illuminate\Support\Facades\Mail::class,
+ 'Notification' => Illuminate\Support\Facades\Notification::class,
+ 'Password' => Illuminate\Support\Facades\Password::class,
+ 'Queue' => Illuminate\Support\Facades\Queue::class,
+ 'Redirect' => Illuminate\Support\Facades\Redirect::class,
+ 'Redis' => Illuminate\Support\Facades\Redis::class,
+ 'Request' => Illuminate\Support\Facades\Request::class,
+ 'Response' => Illuminate\Support\Facades\Response::class,
+ 'Route' => Illuminate\Support\Facades\Route::class,
+ 'Schema' => Illuminate\Support\Facades\Schema::class,
+ 'Session' => Illuminate\Support\Facades\Session::class,
+ 'Storage' => Illuminate\Support\Facades\Storage::class,
+ 'Str' => Illuminate\Support\Str::class,
+ 'URL' => Illuminate\Support\Facades\URL::class,
+ 'Validator' => Illuminate\Support\Facades\Validator::class,
+ 'View' => Illuminate\Support\Facades\View::class,
],
];
diff --git a/config/auth.php b/config/auth.php
index 8102274b5..d9e7584d0 100644
--- a/config/auth.php
+++ b/config/auth.php
@@ -14,7 +14,7 @@ return [
*/
'defaults' => [
- 'guard' => 'web',
+ 'guard' => 'web',
'passwords' => 'users',
],
@@ -37,14 +37,14 @@ return [
'guards' => [
'web' => [
- 'driver' => 'session',
+ 'driver' => 'session',
'provider' => 'users',
],
'api' => [
- 'driver' => 'token',
+ 'driver' => 'token',
'provider' => 'users',
- 'hash' => false,
+ 'hash' => false,
],
],
@@ -68,7 +68,7 @@ return [
'providers' => [
'users' => [
'driver' => 'cache-user',
- 'model' => App\Models\User::class,
+ 'model' => App\Models\User::class,
],
// 'users' => [
@@ -95,8 +95,8 @@ return [
'passwords' => [
'users' => [
'provider' => 'users',
- 'table' => 'password_resets',
- 'expire' => 60,
+ 'table' => 'password_resets',
+ 'expire' => 60,
'throttle' => 60,
],
],
@@ -114,18 +114,18 @@ return [
'password_timeout' => 10800,
- 'TwoStepEnabled' => true,
+ 'TwoStepEnabled' => true,
- 'verificationEmailFrom' => env('MAIL_FROM_ADDRESS', env('MAIL_FROM_NAME')),
+ 'verificationEmailFrom' => env('MAIL_FROM_ADDRESS', env('MAIL_FROM_NAME')),
- 'verificationEmailFromName' => ' 2-Step Verification',
+ 'verificationEmailFromName' => ' 2-Step Verification',
- 'TwoStepExceededCount' => 3,
+ 'TwoStepExceededCount' => 3,
'TwoStepExceededCountdownMinutes' => 60 * 24,
- 'TwoStepVerifiedLifetimeMinutes' => 6 * 60,
+ 'TwoStepVerifiedLifetimeMinutes' => 6 * 60,
- 'TwoStepTimeResetBufferSeconds' => 6 * 60,
+ 'TwoStepTimeResetBufferSeconds' => 6 * 60,
];
diff --git a/config/backup.php b/config/backup.php
index f4b8174f8..2857655f6 100644
--- a/config/backup.php
+++ b/config/backup.php
@@ -149,12 +149,12 @@ return [
'notifications' => [
'notifications' => [
- \Spatie\Backup\Notifications\Notifications\BackupHasFailedNotification::class => ['mail'],
+ \Spatie\Backup\Notifications\Notifications\BackupHasFailedNotification::class => ['mail'],
\Spatie\Backup\Notifications\Notifications\UnhealthyBackupWasFoundNotification::class => ['mail'],
- \Spatie\Backup\Notifications\Notifications\CleanupHasFailedNotification::class => ['mail'],
- \Spatie\Backup\Notifications\Notifications\BackupWasSuccessfulNotification::class => ['mail'],
- \Spatie\Backup\Notifications\Notifications\HealthyBackupWasFoundNotification::class => ['mail'],
- \Spatie\Backup\Notifications\Notifications\CleanupWasSuccessfulNotification::class => ['mail'],
+ \Spatie\Backup\Notifications\Notifications\CleanupHasFailedNotification::class => ['mail'],
+ \Spatie\Backup\Notifications\Notifications\BackupWasSuccessfulNotification::class => ['mail'],
+ \Spatie\Backup\Notifications\Notifications\HealthyBackupWasFoundNotification::class => ['mail'],
+ \Spatie\Backup\Notifications\Notifications\CleanupWasSuccessfulNotification::class => ['mail'],
],
/*
@@ -168,7 +168,7 @@ return [
'from' => [
'address' => env('MAIL_FROM_ADDRESS'),
- 'name' => env('MAIL_FROM_NAME'),
+ 'name' => env('MAIL_FROM_NAME'),
],
],
@@ -194,10 +194,10 @@ return [
*/
'monitor_backups' => [
[
- 'name' => 'UNIT3D',
- 'disks' => ['backups'],
+ 'name' => 'UNIT3D',
+ 'disks' => ['backups'],
'health_checks' => [
- \Spatie\Backup\Tasks\Monitor\HealthChecks\MaximumAgeInDays::class => 1,
+ \Spatie\Backup\Tasks\Monitor\HealthChecks\MaximumAgeInDays::class => 1,
\Spatie\Backup\Tasks\Monitor\HealthChecks\MaximumStorageInMegabytes::class => 5000,
],
],
@@ -262,7 +262,7 @@ return [
],
'security' => [
- 'password' => env('APP_KEY'),
+ 'password' => env('APP_KEY'),
'encryption' => \App\Helpers\BackupEncryption::ENCRYPTION_DEFAULT,
],
diff --git a/config/broadcasting.php b/config/broadcasting.php
index db3017cf0..113981127 100644
--- a/config/broadcasting.php
+++ b/config/broadcasting.php
@@ -31,13 +31,13 @@ return [
'connections' => [
'pusher' => [
- 'driver' => 'pusher',
- 'key' => env('PUSHER_APP_KEY'),
- 'secret' => env('PUSHER_APP_SECRET'),
- 'app_id' => env('PUSHER_APP_ID'),
+ 'driver' => 'pusher',
+ 'key' => env('PUSHER_APP_KEY'),
+ 'secret' => env('PUSHER_APP_SECRET'),
+ 'app_id' => env('PUSHER_APP_ID'),
'options' => [
'cluster' => env('PUSHER_APP_CLUSTER'),
- 'useTLS' => true,
+ 'useTLS' => true,
],
'client_options' => [
// Guzzle client options: https://docs.guzzlephp.org/en/stable/request-options.html
@@ -46,11 +46,11 @@ return [
'ably' => [
'driver' => 'ably',
- 'key' => env('ABLY_KEY'),
+ 'key' => env('ABLY_KEY'),
],
'redis' => [
- 'driver' => 'redis',
+ 'driver' => 'redis',
'connection' => 'broadcast',
],
diff --git a/config/cache.php b/config/cache.php
index d7a55eb8f..360650906 100644
--- a/config/cache.php
+++ b/config/cache.php
@@ -38,26 +38,26 @@ return [
],
'array' => [
- 'driver' => 'array',
+ 'driver' => 'array',
'serialize' => false,
],
'database' => [
- 'driver' => 'database',
- 'table' => 'cache',
- 'connection' => null,
+ 'driver' => 'database',
+ 'table' => 'cache',
+ 'connection' => null,
'lock_connection' => null,
],
'file' => [
'driver' => 'file',
- 'path' => storage_path('framework/cache/data'),
+ 'path' => storage_path('framework/cache/data'),
],
'memcached' => [
- 'driver' => 'memcached',
+ 'driver' => 'memcached',
'persistent_id' => env('MEMCACHED_PERSISTENT_ID'),
- 'sasl' => [
+ 'sasl' => [
env('MEMCACHED_USERNAME'),
env('MEMCACHED_PASSWORD'),
],
@@ -66,25 +66,25 @@ return [
],
'servers' => [
[
- 'host' => env('MEMCACHED_HOST', '127.0.0.1'),
- 'port' => env('MEMCACHED_PORT', 11211),
+ 'host' => env('MEMCACHED_HOST', '127.0.0.1'),
+ 'port' => env('MEMCACHED_PORT', 11211),
'weight' => 100,
],
],
],
'redis' => [
- 'driver' => 'redis',
- 'connection' => 'cache',
+ 'driver' => 'redis',
+ 'connection' => 'cache',
'lock_connection' => 'default',
],
'dynamodb' => [
- 'driver' => 'dynamodb',
- 'key' => env('AWS_ACCESS_KEY_ID'),
- 'secret' => env('AWS_SECRET_ACCESS_KEY'),
- 'region' => env('AWS_DEFAULT_REGION', 'us-east-1'),
- 'table' => env('DYNAMODB_CACHE_TABLE', 'cache'),
+ 'driver' => 'dynamodb',
+ 'key' => env('AWS_ACCESS_KEY_ID'),
+ 'secret' => env('AWS_SECRET_ACCESS_KEY'),
+ 'region' => env('AWS_DEFAULT_REGION', 'us-east-1'),
+ 'table' => env('DYNAMODB_CACHE_TABLE', 'cache'),
'endpoint' => env('DYNAMODB_ENDPOINT'),
],
diff --git a/config/database.php b/config/database.php
index 5f9ce49e0..17c073d8a 100644
--- a/config/database.php
+++ b/config/database.php
@@ -45,65 +45,65 @@ return [
'connections' => [
'sqlite' => [
- 'driver' => 'sqlite',
- 'url' => env('DATABASE_URL'),
- 'database' => env('DB_DATABASE', database_path('database.sqlite')),
- 'prefix' => '',
+ 'driver' => 'sqlite',
+ 'url' => env('DATABASE_URL'),
+ 'database' => env('DB_DATABASE', database_path('database.sqlite')),
+ 'prefix' => '',
'foreign_key_constraints' => env('DB_FOREIGN_KEYS', true),
],
'mysql' => [
- 'driver' => 'mysql',
- 'url' => env('DATABASE_URL'),
- 'host' => env('DB_HOST', '127.0.0.1'),
- 'port' => env('DB_PORT', '3306'),
- 'database' => env('DB_DATABASE', 'forge'),
- 'username' => env('DB_USERNAME', 'forge'),
- 'password' => env('DB_PASSWORD', ''),
- 'unix_socket' => env('DB_SOCKET', ''),
- 'charset' => 'utf8mb4',
- 'collation' => 'utf8mb4_unicode_ci',
- 'prefix' => '',
+ 'driver' => 'mysql',
+ 'url' => env('DATABASE_URL'),
+ 'host' => env('DB_HOST', '127.0.0.1'),
+ 'port' => env('DB_PORT', '3306'),
+ 'database' => env('DB_DATABASE', 'forge'),
+ 'username' => env('DB_USERNAME', 'forge'),
+ 'password' => env('DB_PASSWORD', ''),
+ 'unix_socket' => env('DB_SOCKET', ''),
+ 'charset' => 'utf8mb4',
+ 'collation' => 'utf8mb4_unicode_ci',
+ 'prefix' => '',
'prefix_indexes' => true,
- 'strict' => true,
- 'engine' => null,
- 'options' => extension_loaded('pdo_mysql') ? array_filter([
+ 'strict' => true,
+ 'engine' => null,
+ 'options' => extension_loaded('pdo_mysql') ? array_filter([
PDO::MYSQL_ATTR_SSL_CA => env('MYSQL_ATTR_SSL_CA'),
]) : [],
'dump' => [
'dump_binary_path' => '/usr/bin', // only the path, so without `mysqldump` or `pg_dump`
'use_single_transaction',
- 'timeout' => 60 * 10, // 10 minute timeout
+ 'timeout' => 60 * 10, // 10 minute timeout
'add_extra_option' => '--password='.env('DB_PASSWORD', ''),
],
],
'pgsql' => [
- 'driver' => 'pgsql',
- 'url' => env('DATABASE_URL'),
- 'host' => env('DB_HOST', '127.0.0.1'),
- 'port' => env('DB_PORT', '5432'),
- 'database' => env('DB_DATABASE', 'forge'),
- 'username' => env('DB_USERNAME', 'forge'),
- 'password' => env('DB_PASSWORD', ''),
- 'charset' => 'utf8',
- 'prefix' => '',
- 'prefix_indexes' => true,
- 'search_path' => 'public',
- 'sslmode' => 'prefer',
+ 'driver' => 'pgsql',
+ 'url' => env('DATABASE_URL'),
+ 'host' => env('DB_HOST', '127.0.0.1'),
+ 'port' => env('DB_PORT', '5432'),
+ 'database' => env('DB_DATABASE', 'forge'),
+ 'username' => env('DB_USERNAME', 'forge'),
+ 'password' => env('DB_PASSWORD', ''),
+ 'charset' => 'utf8',
+ 'prefix' => '',
+ 'prefix_indexes' => true,
+ 'search_path' => 'public',
+ 'sslmode' => 'prefer',
],
'sqlsrv' => [
- 'driver' => 'sqlsrv',
- 'url' => env('DATABASE_URL'),
- 'host' => env('DB_HOST', 'localhost'),
- 'port' => env('DB_PORT', '1433'),
- 'database' => env('DB_DATABASE', 'forge'),
- 'username' => env('DB_USERNAME', 'forge'),
- 'password' => env('DB_PASSWORD', ''),
- 'charset' => 'utf8',
- 'prefix' => '',
+ 'driver' => 'sqlsrv',
+ 'url' => env('DATABASE_URL'),
+ 'host' => env('DB_HOST', 'localhost'),
+ 'port' => env('DB_PORT', '1433'),
+ 'database' => env('DB_DATABASE', 'forge'),
+ 'username' => env('DB_USERNAME', 'forge'),
+ 'password' => env('DB_PASSWORD', ''),
+ 'charset' => 'utf8',
+ 'prefix' => '',
'prefix_indexes' => true,
],
@@ -138,52 +138,52 @@ return [
'client' => env('REDIS_CLIENT', 'predis'),
'default' => [
- 'url' => env('REDIS_URL'),
- 'host' => env('REDIS_HOST', '127.0.0.1'),
- 'username' => env('REDIS_USERNAME'),
- 'password' => env('REDIS_PASSWORD', null),
- 'port' => env('REDIS_PORT', 6379),
- 'database' => env('REDIS_DB', 0),
+ 'url' => env('REDIS_URL'),
+ 'host' => env('REDIS_HOST', '127.0.0.1'),
+ 'username' => env('REDIS_USERNAME'),
+ 'password' => env('REDIS_PASSWORD', null),
+ 'port' => env('REDIS_PORT', 6379),
+ 'database' => env('REDIS_DB', 0),
'read_write_timeout' => -1,
],
'cache' => [
- 'url' => env('REDIS_URL'),
- 'host' => env('REDIS_HOST', '127.0.0.1'),
- 'username' => env('REDIS_USERNAME'),
- 'password' => env('REDIS_PASSWORD', null),
- 'port' => env('REDIS_PORT', 6379),
- 'database' => env('REDIS_CACHE_DB', 1),
+ 'url' => env('REDIS_URL'),
+ 'host' => env('REDIS_HOST', '127.0.0.1'),
+ 'username' => env('REDIS_USERNAME'),
+ 'password' => env('REDIS_PASSWORD', null),
+ 'port' => env('REDIS_PORT', 6379),
+ 'database' => env('REDIS_CACHE_DB', 1),
'read_write_timeout' => -1,
],
'job' => [
- 'url' => env('REDIS_URL'),
- 'host' => env('REDIS_HOST', '127.0.0.1'),
- 'username' => env('REDIS_USERNAME'),
- 'password' => env('REDIS_PASSWORD', null),
- 'port' => env('REDIS_PORT', 6379),
- 'database' => env('REDIS_JOB_DB', 2),
+ 'url' => env('REDIS_URL'),
+ 'host' => env('REDIS_HOST', '127.0.0.1'),
+ 'username' => env('REDIS_USERNAME'),
+ 'password' => env('REDIS_PASSWORD', null),
+ 'port' => env('REDIS_PORT', 6379),
+ 'database' => env('REDIS_JOB_DB', 2),
'read_write_timeout' => -1,
],
'broadcast' => [
- 'url' => env('REDIS_URL'),
- 'host' => env('REDIS_HOST', '127.0.0.1'),
- 'username' => env('REDIS_USERNAME'),
- 'password' => env('REDIS_PASSWORD', null),
- 'port' => env('REDIS_PORT', 6379),
- 'database' => env('REDIS_BROADCAST_DB', 3),
+ 'url' => env('REDIS_URL'),
+ 'host' => env('REDIS_HOST', '127.0.0.1'),
+ 'username' => env('REDIS_USERNAME'),
+ 'password' => env('REDIS_PASSWORD', null),
+ 'port' => env('REDIS_PORT', 6379),
+ 'database' => env('REDIS_BROADCAST_DB', 3),
'read_write_timeout' => -1,
],
'session' => [
- 'url' => env('REDIS_URL'),
- 'host' => env('REDIS_HOST', '127.0.0.1'),
- 'username' => env('REDIS_USERNAME'),
- 'password' => env('REDIS_PASSWORD', null),
- 'port' => env('REDIS_PORT', 6379),
- 'database' => env('REDIS_BROADCAST_DB', 4),
+ 'url' => env('REDIS_URL'),
+ 'host' => env('REDIS_HOST', '127.0.0.1'),
+ 'username' => env('REDIS_USERNAME'),
+ 'password' => env('REDIS_PASSWORD', null),
+ 'port' => env('REDIS_PORT', 6379),
+ 'database' => env('REDIS_BROADCAST_DB', 4),
'read_write_timeout' => -1,
],
diff --git a/config/email-blacklist.php b/config/email-blacklist.php
index c566bb98d..a2560f8a1 100644
--- a/config/email-blacklist.php
+++ b/config/email-blacklist.php
@@ -43,9 +43,9 @@ return [
| Example: "example.com|example.net|foobar.com".
|
*/
- 'enabled' => true,
- 'source' => 'https://cdn.jsdelivr.net/gh/andreis/disposable-email-domains@master/domains.json',
- 'cache-key' => 'email.domains.blacklist',
+ 'enabled' => true,
+ 'source' => 'https://cdn.jsdelivr.net/gh/andreis/disposable-email-domains@master/domains.json',
+ 'cache-key' => 'email.domains.blacklist',
'auto-update' => true,
- 'append' => null,
+ 'append' => null,
];
diff --git a/config/filesystems.php b/config/filesystems.php
index ca45cd73e..4872edbc3 100644
--- a/config/filesystems.php
+++ b/config/filesystems.php
@@ -32,30 +32,30 @@ return [
'local' => [
'driver' => 'local',
- 'root' => storage_path('app'),
+ 'root' => storage_path('app'),
],
'public' => [
- 'driver' => 'local',
- 'root' => storage_path('app/public'),
- 'url' => env('APP_URL').'/storage',
+ 'driver' => 'local',
+ 'root' => storage_path('app/public'),
+ 'url' => env('APP_URL').'/storage',
'visibility' => 'public',
],
's3' => [
- 'driver' => 's3',
- 'key' => env('AWS_ACCESS_KEY_ID'),
- 'secret' => env('AWS_SECRET_ACCESS_KEY'),
- 'region' => env('AWS_DEFAULT_REGION'),
- 'bucket' => env('AWS_BUCKET'),
- 'url' => env('AWS_URL'),
- 'endpoint' => env('AWS_ENDPOINT'),
+ 'driver' => 's3',
+ 'key' => env('AWS_ACCESS_KEY_ID'),
+ 'secret' => env('AWS_SECRET_ACCESS_KEY'),
+ 'region' => env('AWS_DEFAULT_REGION'),
+ 'bucket' => env('AWS_BUCKET'),
+ 'url' => env('AWS_URL'),
+ 'endpoint' => env('AWS_ENDPOINT'),
'use_path_style_endpoint' => env('AWS_USE_PATH_STYLE_ENDPOINT', false),
],
'ftp' => [
- 'driver' => 'ftp',
- 'host' => 'ftp.example.com',
+ 'driver' => 'ftp',
+ 'host' => 'ftp.example.com',
'username' => 'your-username',
'password' => 'your-password',
@@ -68,14 +68,14 @@ return [
],
'sftp' => [
- 'driver' => 'sftp',
- 'host' => 'example.com',
+ 'driver' => 'sftp',
+ 'host' => 'example.com',
'username' => 'your-username',
'password' => 'your-password',
// Settings for SSH key based authentication...
'privateKey' => '/path/to/privateKey',
- 'password' => 'encryption-password',
+ 'password' => 'encryption-password',
// Optional SFTP Settings...
// 'port' => 22,
@@ -85,22 +85,22 @@ return [
'backups' => [
'driver' => 'local',
- 'root' => storage_path('backups'),
+ 'root' => storage_path('backups'),
],
'torrents' => [
'driver' => 'local',
- 'root' => public_path('files/torrents'),
+ 'root' => public_path('files/torrents'),
],
'subtitles' => [
'driver' => 'local',
- 'root' => public_path('files/subtitles'),
+ 'root' => public_path('files/subtitles'),
],
'attachments' => [
'driver' => 'local',
- 'root' => public_path('files/attachments'),
+ 'root' => public_path('files/attachments'),
],
],
diff --git a/config/hashing.php b/config/hashing.php
index 7f515b762..29ad4c1b0 100644
--- a/config/hashing.php
+++ b/config/hashing.php
@@ -55,9 +55,9 @@ return [
*/
'argon' => [
- 'memory' => 8192,
+ 'memory' => 8192,
'threads' => 2,
- 'time' => 2,
+ 'time' => 2,
],
];
diff --git a/config/http2serverpush.php b/config/http2serverpush.php
index f4880ba65..eeea4115f 100644
--- a/config/http2serverpush.php
+++ b/config/http2serverpush.php
@@ -20,7 +20,7 @@
|
*/
return [
- 'size_limit' => '6000', // in bytes
- 'base_path' => '/',
+ 'size_limit' => '6000', // in bytes
+ 'base_path' => '/',
'exclude_keywords' => [],
];
diff --git a/config/igdb.php b/config/igdb.php
index a686cb587..871d48ef9 100644
--- a/config/igdb.php
+++ b/config/igdb.php
@@ -16,7 +16,7 @@ return [
* These are the credentials you got from https://dev.twitch.tv/console/apps
*/
'credentials' => [
- 'client_id' => env('TWITCH_CLIENT_ID', ''),
+ 'client_id' => env('TWITCH_CLIENT_ID', ''),
'client_secret' => env('TWITCH_CLIENT_SECRET', ''),
],
diff --git a/config/irc-bot.php b/config/irc-bot.php
index 7412cbae8..3457448a9 100644
--- a/config/irc-bot.php
+++ b/config/irc-bot.php
@@ -22,13 +22,13 @@ return [
|
*/
- 'enabled' => false,
- 'hostname' => 'example.com',
- 'server' => 'irc.example.com',
- 'port' => '6667',
- 'username' => 'UNIT3D',
- 'password' => 'UNIT3D',
- 'channel' => '#announce',
+ 'enabled' => false,
+ 'hostname' => 'example.com',
+ 'server' => 'irc.example.com',
+ 'port' => '6667',
+ 'username' => 'UNIT3D',
+ 'password' => 'UNIT3D',
+ 'channel' => '#announce',
'nickservpass' => false,
- 'joinchannel' => false,
+ 'joinchannel' => false,
];
diff --git a/config/joypixels.php b/config/joypixels.php
index 0b296919a..be66135e4 100644
--- a/config/joypixels.php
+++ b/config/joypixels.php
@@ -13,9 +13,9 @@
return [
'imagePathPNG' => 'vendor/joypixels/png/64/',
- 'sprites' => false, // use sprites?
- 'spriteSize' => 32, // 32/64
- 'emojiSize' => 64, // 32/64/128
+ 'sprites' => false, // use sprites?
+ 'spriteSize' => 32, // 32/64
+ 'emojiSize' => 64, // 32/64/128
'emojiVersion' => '6.0',
- 'ascii' => false, // convert ascii characters into emoji shortcodes
+ 'ascii' => false, // convert ascii characters into emoji shortcodes
];
diff --git a/config/language.php b/config/language.php
index 7dee4796e..bddef140a 100644
--- a/config/language.php
+++ b/config/language.php
@@ -21,7 +21,7 @@ return [
| This option enable language route.
|
*/
- 'route' => true,
+ 'route' => true,
/*
|--------------------------------------------------------------------------
@@ -32,7 +32,7 @@ return [
| to url('/')
|
*/
- 'home' => true,
+ 'home' => true,
/*
|--------------------------------------------------------------------------
@@ -42,7 +42,7 @@ return [
| This option will add the language code to the redirected url
|
*/
- 'url' => false,
+ 'url' => false,
/*
|--------------------------------------------------------------------------
@@ -52,7 +52,7 @@ return [
| This option the language of carbon library.
|
*/
- 'carbon' => true,
+ 'carbon' => true,
/*
|--------------------------------------------------------------------------
@@ -62,7 +62,7 @@ return [
| This option the language of jenssegers/date library.
|
*/
- 'date' => false,
+ 'date' => false,
/*
|--------------------------------------------------------------------------
@@ -72,7 +72,7 @@ return [
| This option indicates the prefix for language routes.
|
*/
- 'prefix' => 'languages',
+ 'prefix' => 'languages',
/*
|--------------------------------------------------------------------------
@@ -83,7 +83,7 @@ return [
|
*/
- 'flags' => ['width' => '20px', 'ul_class' => '', 'li_class' => '', 'img_class' => ''],
+ 'flags' => ['width' => '20px', 'ul_class' => '', 'li_class' => '', 'img_class' => ''],
/*
|--------------------------------------------------------------------------
@@ -97,7 +97,7 @@ return [
|
*/
- 'mode' => ['code' => 'short', 'name' => 'native'],
+ 'mode' => ['code' => 'short', 'name' => 'native'],
/*
|--------------------------------------------------------------------------
@@ -108,7 +108,7 @@ return [
|
*/
- 'allowed' => [
+ 'allowed' => [
'ar',
'az',
'be',
diff --git a/config/livewire.php b/config/livewire.php
index 71a5b6179..283998939 100644
--- a/config/livewire.php
+++ b/config/livewire.php
@@ -96,10 +96,10 @@ return [
*/
'temporary_file_upload' => [
- 'disk' => null, // Example: 'local', 's3' Default: 'default'
- 'rules' => null, // Example: ['file', 'mimes:png,jpg'] Default: ['required', 'file', 'max:12288'] (12MB)
- 'directory' => null, // Example: 'tmp' Default 'livewire-tmp'
- 'middleware' => null, // Example: 'throttle:5,1' Default: 'throttle:60,1'
+ 'disk' => null, // Example: 'local', 's3' Default: 'default'
+ 'rules' => null, // Example: ['file', 'mimes:png,jpg'] Default: ['required', 'file', 'max:12288'] (12MB)
+ 'directory' => null, // Example: 'tmp' Default 'livewire-tmp'
+ 'middleware' => null, // Example: 'throttle:5,1' Default: 'throttle:60,1'
'preview_mimes' => [ // Supported file types for temporary pre-signed file URLs.
'png', 'gif', 'bmp', 'svg', 'wav', 'mp4',
'mov', 'avi', 'wmv', 'mp3', 'm4a',
diff --git a/config/logging.php b/config/logging.php
index d1f5b703b..880cd9227 100644
--- a/config/logging.php
+++ b/config/logging.php
@@ -49,36 +49,36 @@ return [
'channels' => [
'stack' => [
- 'driver' => 'stack',
- 'channels' => ['single'],
+ 'driver' => 'stack',
+ 'channels' => ['single'],
'ignore_exceptions' => false,
],
'single' => [
'driver' => 'single',
- 'path' => storage_path('logs/laravel.log'),
- 'level' => env('LOG_LEVEL', 'debug'),
+ 'path' => storage_path('logs/laravel.log'),
+ 'level' => env('LOG_LEVEL', 'debug'),
],
'daily' => [
'driver' => 'daily',
- 'path' => storage_path('logs/laravel.log'),
- 'level' => env('LOG_LEVEL', 'debug'),
- 'days' => 14,
+ 'path' => storage_path('logs/laravel.log'),
+ 'level' => env('LOG_LEVEL', 'debug'),
+ 'days' => 14,
],
'slack' => [
- 'driver' => 'slack',
- 'url' => env('LOG_SLACK_WEBHOOK_URL'),
+ 'driver' => 'slack',
+ 'url' => env('LOG_SLACK_WEBHOOK_URL'),
'username' => 'Laravel Log',
- 'emoji' => ':boom:',
- 'level' => env('LOG_LEVEL', 'critical'),
+ 'emoji' => ':boom:',
+ 'level' => env('LOG_LEVEL', 'critical'),
],
'papertrail' => [
- 'driver' => 'monolog',
- 'level' => env('LOG_LEVEL', 'debug'),
- 'handler' => SyslogUdpHandler::class,
+ 'driver' => 'monolog',
+ 'level' => env('LOG_LEVEL', 'debug'),
+ 'handler' => SyslogUdpHandler::class,
'handler_with' => [
'host' => env('PAPERTRAIL_URL'),
'port' => env('PAPERTRAIL_PORT'),
@@ -86,27 +86,27 @@ return [
],
'stderr' => [
- 'driver' => 'monolog',
- 'level' => env('LOG_LEVEL', 'debug'),
- 'handler' => StreamHandler::class,
+ 'driver' => 'monolog',
+ 'level' => env('LOG_LEVEL', 'debug'),
+ 'handler' => StreamHandler::class,
'formatter' => env('LOG_STDERR_FORMATTER'),
- 'with' => [
+ 'with' => [
'stream' => 'php://stderr',
],
],
'syslog' => [
'driver' => 'syslog',
- 'level' => env('LOG_LEVEL', 'debug'),
+ 'level' => env('LOG_LEVEL', 'debug'),
],
'errorlog' => [
'driver' => 'errorlog',
- 'level' => env('LOG_LEVEL', 'debug'),
+ 'level' => env('LOG_LEVEL', 'debug'),
],
'null' => [
- 'driver' => 'monolog',
+ 'driver' => 'monolog',
'handler' => NullHandler::class,
],
diff --git a/config/mail.php b/config/mail.php
index 1db12522e..87b6fe3c8 100644
--- a/config/mail.php
+++ b/config/mail.php
@@ -35,13 +35,13 @@ return [
'mailers' => [
'smtp' => [
- 'transport' => 'smtp',
- 'host' => env('MAIL_HOST', 'smtp.mailgun.org'),
- 'port' => env('MAIL_PORT', 587),
+ 'transport' => 'smtp',
+ 'host' => env('MAIL_HOST', 'smtp.mailgun.org'),
+ 'port' => env('MAIL_PORT', 587),
'encryption' => env('MAIL_ENCRYPTION', 'tls'),
- 'username' => env('MAIL_USERNAME'),
- 'password' => env('MAIL_PASSWORD'),
- 'timeout' => null,
+ 'username' => env('MAIL_USERNAME'),
+ 'password' => env('MAIL_PASSWORD'),
+ 'timeout' => null,
],
'ses' => [
@@ -58,12 +58,12 @@ return [
'sendmail' => [
'transport' => 'sendmail',
- 'path' => env('MAIL_SENDMAIL_PATH', '/usr/sbin/sendmail -t -i'),
+ 'path' => env('MAIL_SENDMAIL_PATH', '/usr/sbin/sendmail -t -i'),
],
'log' => [
'transport' => 'log',
- 'channel' => env('MAIL_LOG_CHANNEL'),
+ 'channel' => env('MAIL_LOG_CHANNEL'),
],
'array' => [
@@ -72,7 +72,7 @@ return [
'failover' => [
'transport' => 'failover',
- 'mailers' => [
+ 'mailers' => [
'smtp',
'log',
],
@@ -92,7 +92,7 @@ return [
'from' => [
'address' => env('MAIL_FROM_ADDRESS', 'hello@example.com'),
- 'name' => env('MAIL_FROM_NAME', 'Example'),
+ 'name' => env('MAIL_FROM_NAME', 'Example'),
],
/*
diff --git a/config/opcache.php b/config/opcache.php
index e6c3f6f92..ded2ba694 100644
--- a/config/opcache.php
+++ b/config/opcache.php
@@ -12,10 +12,10 @@
*/
return [
- 'url' => env('OPCACHE_URL', config('app.url')),
- 'prefix' => 'opcache-api',
- 'verify' => true,
- 'headers' => [],
+ 'url' => env('OPCACHE_URL', config('app.url')),
+ 'prefix' => 'opcache-api',
+ 'verify' => true,
+ 'headers' => [],
'directories' => [
base_path('app'),
base_path('bootstrap'),
diff --git a/config/other.php b/config/other.php
index 8b71bc360..90a28f4a1 100644
--- a/config/other.php
+++ b/config/other.php
@@ -111,11 +111,11 @@ return [
| Restricted mode for invites. If set to true, invites will be restricted
| Exempt these groups from the invite restrictions
*/
- 'invite-only' => true,
+ 'invite-only' => true,
'invite_expire' => '14',
'invites_restriced' => false,
- 'invite_groups' => [
+ 'invite_groups' => [
'Administrator',
'Owner',
],
@@ -128,7 +128,7 @@ return [
| This will be the upload and download given to new members. (In Bytes!)
| Default: 50GiB Upload and 1GiB Download
*/
- 'default_upload' => '53687091200',
+ 'default_upload' => '53687091200',
'default_download' => '1073741824',
/*
diff --git a/config/pruning.php b/config/pruning.php
index 6ff80a92c..6c4566cbf 100644
--- a/config/pruning.php
+++ b/config/pruning.php
@@ -25,8 +25,8 @@ return [
| Groups That Can Be Auto Disabled [DEFAULT] (User, PowerUser, SuperUser, Leech)
*/
'user_pruning' => false,
- 'account_age' => 90,
- 'last_login' => 90,
- 'soft_delete' => 120,
- 'group_ids' => [UserGroups::USER, UserGroups::POWERUSER, UserGroups::SUPERUSER, UserGroups::LEECH],
+ 'account_age' => 90,
+ 'last_login' => 90,
+ 'soft_delete' => 120,
+ 'group_ids' => [UserGroups::USER, UserGroups::POWERUSER, UserGroups::SUPERUSER, UserGroups::LEECH],
];
diff --git a/config/purifier.php b/config/purifier.php
index 5557f3f3f..57c418eac 100644
--- a/config/purifier.php
+++ b/config/purifier.php
@@ -17,29 +17,29 @@
*/
return [
- 'encoding' => 'UTF-8',
- 'finalize' => true,
- 'cachePath' => storage_path('app/purifier'),
+ 'encoding' => 'UTF-8',
+ 'finalize' => true,
+ 'cachePath' => storage_path('app/purifier'),
'cacheFileMode' => 0755,
- 'settings' => [
+ 'settings' => [
'default' => [
- 'HTML.Doctype' => 'HTML 4.01 Transitional',
- 'HTML.Allowed' => 'div,b,strong,i,em,u,a[href|title|class],ul,ol,li,p[style|class],br,span[style|class],img[width|height|alt|src|class]',
- 'CSS.AllowedProperties' => 'font,font-size,font-weight,font-style,font-family,text-decoration,padding-left,color,background-color,text-align',
+ 'HTML.Doctype' => 'HTML 4.01 Transitional',
+ 'HTML.Allowed' => 'div,b,strong,i,em,u,a[href|title|class],ul,ol,li,p[style|class],br,span[style|class],img[width|height|alt|src|class]',
+ 'CSS.AllowedProperties' => 'font,font-size,font-weight,font-style,font-family,text-decoration,padding-left,color,background-color,text-align',
'AutoFormat.AutoParagraph' => false,
- 'AutoFormat.RemoveEmpty' => false,
+ 'AutoFormat.RemoveEmpty' => false,
],
- 'test' => [
+ 'test' => [
'Attr.EnableID' => 'true',
],
'youtube' => [
- 'HTML.SafeIframe' => 'true',
+ 'HTML.SafeIframe' => 'true',
'URI.SafeIframeRegexp' => '%^(http://|https://|//)(www.youtube-nocookie.com/embed/)%',
],
'custom_definition' => [
- 'id' => 'html5-definitions',
- 'rev' => 1,
- 'debug' => false,
+ 'id' => 'html5-definitions',
+ 'rev' => 1,
+ 'debug' => false,
'elements' => [
// http://developers.whatwg.org/sections.html
['section', 'Block', 'Flow', 'Common'],
@@ -59,16 +59,16 @@ return [
// http://developers.whatwg.org/the-video-element.html#the-video-element
['video', 'Block', 'Optional: (source, Flow) | (Flow, source) | Flow', 'Common', [
- 'src' => 'URI',
- 'type' => 'Text',
- 'width' => 'Length',
- 'height' => 'Length',
- 'poster' => 'URI',
- 'preload' => 'Enum#auto,metadata,none',
+ 'src' => 'URI',
+ 'type' => 'Text',
+ 'width' => 'Length',
+ 'height' => 'Length',
+ 'poster' => 'URI',
+ 'preload' => 'Enum#auto,metadata,none',
'controls' => 'Bool',
]],
['source', 'Block', 'Flow', 'Common', [
- 'src' => 'URI',
+ 'src' => 'URI',
'type' => 'Text',
]],
diff --git a/config/queue.php b/config/queue.php
index fc6046c3c..53d05eebd 100644
--- a/config/queue.php
+++ b/config/queue.php
@@ -35,39 +35,39 @@ return [
],
'database' => [
- 'driver' => 'database',
- 'table' => 'jobs',
- 'queue' => 'default',
- 'retry_after' => 90,
+ 'driver' => 'database',
+ 'table' => 'jobs',
+ 'queue' => 'default',
+ 'retry_after' => 90,
'after_commit' => false,
],
'beanstalkd' => [
- 'driver' => 'beanstalkd',
- 'host' => 'localhost',
- 'queue' => 'default',
- 'retry_after' => 90,
- 'block_for' => 0,
+ 'driver' => 'beanstalkd',
+ 'host' => 'localhost',
+ 'queue' => 'default',
+ 'retry_after' => 90,
+ 'block_for' => 0,
'after_commit' => false,
],
'sqs' => [
- 'driver' => 'sqs',
- 'key' => env('AWS_ACCESS_KEY_ID'),
- 'secret' => env('AWS_SECRET_ACCESS_KEY'),
- 'prefix' => env('SQS_PREFIX', 'https://sqs.us-east-1.amazonaws.com/your-account-id'),
- 'queue' => env('SQS_QUEUE', 'default'),
- 'suffix' => env('SQS_SUFFIX'),
- 'region' => env('AWS_DEFAULT_REGION', 'us-east-1'),
+ 'driver' => 'sqs',
+ 'key' => env('AWS_ACCESS_KEY_ID'),
+ 'secret' => env('AWS_SECRET_ACCESS_KEY'),
+ 'prefix' => env('SQS_PREFIX', 'https://sqs.us-east-1.amazonaws.com/your-account-id'),
+ 'queue' => env('SQS_QUEUE', 'default'),
+ 'suffix' => env('SQS_SUFFIX'),
+ 'region' => env('AWS_DEFAULT_REGION', 'us-east-1'),
'after_commit' => false,
],
'redis' => [
- 'driver' => 'redis',
- 'connection' => 'job',
- 'queue' => env('REDIS_QUEUE', 'default'),
- 'retry_after' => 120,
- 'block_for' => null,
+ 'driver' => 'redis',
+ 'connection' => 'job',
+ 'queue' => env('REDIS_QUEUE', 'default'),
+ 'retry_after' => 120,
+ 'block_for' => null,
'after_commit' => false,
],
@@ -85,9 +85,9 @@ return [
*/
'failed' => [
- 'driver' => env('QUEUE_FAILED_DRIVER', 'database-uuids'),
+ 'driver' => env('QUEUE_FAILED_DRIVER', 'database-uuids'),
'database' => env('DB_CONNECTION', 'mysql'),
- 'table' => 'failed_jobs',
+ 'table' => 'failed_jobs',
],
];
diff --git a/config/services.php b/config/services.php
index a55b451bc..a978a4904 100644
--- a/config/services.php
+++ b/config/services.php
@@ -26,8 +26,8 @@ return [
*/
'mailgun' => [
- 'domain' => env('MAILGUN_DOMAIN'),
- 'secret' => env('MAILGUN_SECRET'),
+ 'domain' => env('MAILGUN_DOMAIN'),
+ 'secret' => env('MAILGUN_SECRET'),
'endpoint' => env('MAILGUN_ENDPOINT', 'api.mailgun.net'),
],
@@ -36,7 +36,7 @@ return [
],
'ses' => [
- 'key' => env('AWS_ACCESS_KEY_ID'),
+ 'key' => env('AWS_ACCESS_KEY_ID'),
'secret' => env('AWS_SECRET_ACCESS_KEY'),
'region' => env('AWS_DEFAULT_REGION', 'us-east-1'),
],
diff --git a/config/torrent.php b/config/torrent.php
index 0e23641bf..430dd539f 100644
--- a/config/torrent.php
+++ b/config/torrent.php
@@ -44,7 +44,7 @@ return [
|
*/
- 'created_by' => 'Edited by UNIT3D',
+ 'created_by' => 'Edited by UNIT3D',
'created_by_append' => true,
/*
diff --git a/config/unit3d.php b/config/unit3d.php
index 0acaad55a..49d1a6fa7 100755
--- a/config/unit3d.php
+++ b/config/unit3d.php
@@ -55,12 +55,12 @@ return [
|
*/
- 'owner-username' => env('DEFAULT_OWNER_NAME', 'UNIT3D'),
- 'default-owner-email' => env('DEFAULT_OWNER_EMAIL', 'none@none.com'),
+ 'owner-username' => env('DEFAULT_OWNER_NAME', 'UNIT3D'),
+ 'default-owner-email' => env('DEFAULT_OWNER_EMAIL', 'none@none.com'),
'default-owner-password' => env('DEFAULT_OWNER_PASSWORD', 'UNIT3D'),
// If using a Reverse Proxy for HTTPS set the 'PROXY_SCHEME' value in your .env file to `https` or adjust the below value
- 'proxy_scheme' => env('PROXY_SCHEME', false),
+ 'proxy_scheme' => env('PROXY_SCHEME', false),
'root_url_override' => env('FORCE_ROOT_URL', false),
// Global Rate Limit for Comments - X Per Minute
@@ -77,5 +77,5 @@ return [
'chat-link-name' => 'Discord',
'chat-link-icon' => 'fab fa-discord',
- 'chat-link-url' => '',
+ 'chat-link-url' => '',
];
diff --git a/config/user.php b/config/user.php
index 0a4224c78..8628155af 100644
--- a/config/user.php
+++ b/config/user.php
@@ -24,27 +24,27 @@ return [
'group' => [
'defaults' => [
- 'name' => 'Orphan',
- 'slug' => 'orphan',
- 'color' => '#FF9966',
- 'effect' => '',
- 'icon' => 'fal fa-robot',
- 'is_admin' => false,
- 'is_freeleech' => false,
- 'is_immune' => false,
- 'is_incognito' => false,
- 'is_internal' => false,
- 'is_modo' => false,
- 'is_trusted' => false,
- 'can_upload' => false,
- 'level' => 0,
- 'position' => 0,
+ 'name' => 'Orphan',
+ 'slug' => 'orphan',
+ 'color' => '#FF9966',
+ 'effect' => '',
+ 'icon' => 'fal fa-robot',
+ 'is_admin' => false,
+ 'is_freeleech' => false,
+ 'is_immune' => false,
+ 'is_incognito' => false,
+ 'is_internal' => false,
+ 'is_modo' => false,
+ 'is_trusted' => false,
+ 'can_upload' => false,
+ 'level' => 0,
+ 'position' => 0,
],
],
'privacy' => [
'defaults' => [
- 'is_hidden' => false,
+ 'is_hidden' => false,
'is_private' => false,
],
],
diff --git a/database/factories/ApplicationFactory.php b/database/factories/ApplicationFactory.php
index 38fa0da1a..2eaac7fd8 100644
--- a/database/factories/ApplicationFactory.php
+++ b/database/factories/ApplicationFactory.php
@@ -15,13 +15,13 @@ class ApplicationFactory extends Factory
public function definition(): array
{
return [
- 'type' => $this->faker->word(),
- 'email' => $this->faker->unique()->safeEmail(),
- 'referrer' => $this->faker->text(),
- 'status' => $this->faker->boolean(),
+ 'type' => $this->faker->word(),
+ 'email' => $this->faker->unique()->safeEmail(),
+ 'referrer' => $this->faker->text(),
+ 'status' => $this->faker->boolean(),
'moderated_at' => $this->faker->dateTime(),
'moderated_by' => fn () => User::factory()->create()->id,
- 'accepted_by' => $this->faker->randomNumber(),
+ 'accepted_by' => $this->faker->randomNumber(),
];
}
}
diff --git a/database/factories/ApplicationImageProofFactory.php b/database/factories/ApplicationImageProofFactory.php
index 678cd92d4..28ac2b78e 100644
--- a/database/factories/ApplicationImageProofFactory.php
+++ b/database/factories/ApplicationImageProofFactory.php
@@ -16,7 +16,7 @@ class ApplicationImageProofFactory extends Factory
{
return [
'application_id' => fn () => Application::factory()->create()->id,
- 'image' => $this->faker->word(),
+ 'image' => $this->faker->word(),
];
}
}
diff --git a/database/factories/ApplicationUrlProofFactory.php b/database/factories/ApplicationUrlProofFactory.php
index e0f7f4979..bd9a82993 100644
--- a/database/factories/ApplicationUrlProofFactory.php
+++ b/database/factories/ApplicationUrlProofFactory.php
@@ -16,7 +16,7 @@ class ApplicationUrlProofFactory extends Factory
{
return [
'application_id' => fn () => Application::factory()->create()->id,
- 'url' => $this->faker->url(),
+ 'url' => $this->faker->url(),
];
}
}
diff --git a/database/factories/ArticleFactory.php b/database/factories/ArticleFactory.php
index 27830e393..c1ada832d 100644
--- a/database/factories/ArticleFactory.php
+++ b/database/factories/ArticleFactory.php
@@ -15,9 +15,9 @@ class ArticleFactory extends Factory
public function definition(): array
{
return [
- 'title' => $this->faker->word(),
- 'slug' => $this->faker->slug(),
- 'image' => $this->faker->word(),
+ 'title' => $this->faker->word(),
+ 'slug' => $this->faker->slug(),
+ 'image' => $this->faker->word(),
'content' => $this->faker->text(),
'user_id' => fn () => User::factory()->create()->id,
];
diff --git a/database/factories/AuditFactory.php b/database/factories/AuditFactory.php
index 3846233f2..d634f6908 100644
--- a/database/factories/AuditFactory.php
+++ b/database/factories/AuditFactory.php
@@ -15,11 +15,11 @@ class AuditFactory extends Factory
public function definition(): array
{
return [
- 'user_id' => fn () => User::factory()->create()->id,
- 'model_name' => $this->faker->word(),
+ 'user_id' => fn () => User::factory()->create()->id,
+ 'model_name' => $this->faker->word(),
'model_entry_id' => $this->faker->randomNumber(),
- 'action' => $this->faker->word(),
- 'record' => $this->faker->word(),
+ 'action' => $this->faker->word(),
+ 'record' => $this->faker->word(),
];
}
}
diff --git a/database/factories/BanFactory.php b/database/factories/BanFactory.php
index ede826069..18fe1db75 100644
--- a/database/factories/BanFactory.php
+++ b/database/factories/BanFactory.php
@@ -15,11 +15,11 @@ class BanFactory extends Factory
public function definition(): array
{
return [
- 'owned_by' => fn () => User::factory()->create()->id,
- 'created_by' => fn () => User::factory()->create()->id,
- 'ban_reason' => $this->faker->text(),
+ 'owned_by' => fn () => User::factory()->create()->id,
+ 'created_by' => fn () => User::factory()->create()->id,
+ 'ban_reason' => $this->faker->text(),
'unban_reason' => $this->faker->text(),
- 'removed_at' => $this->faker->dateTime(),
+ 'removed_at' => $this->faker->dateTime(),
];
}
}
diff --git a/database/factories/BonExchangeFactory.php b/database/factories/BonExchangeFactory.php
index 5d63a3254..9f81d373d 100644
--- a/database/factories/BonExchangeFactory.php
+++ b/database/factories/BonExchangeFactory.php
@@ -14,13 +14,13 @@ class BonExchangeFactory extends Factory
public function definition(): array
{
return [
- 'description' => $this->faker->text(),
- 'value' => $this->faker->randomNumber(),
- 'cost' => $this->faker->randomNumber(),
- 'upload' => $this->faker->boolean(),
- 'download' => $this->faker->boolean(),
+ 'description' => $this->faker->text(),
+ 'value' => $this->faker->randomNumber(),
+ 'cost' => $this->faker->randomNumber(),
+ 'upload' => $this->faker->boolean(),
+ 'download' => $this->faker->boolean(),
'personal_freeleech' => $this->faker->boolean(),
- 'invite' => $this->faker->boolean(),
+ 'invite' => $this->faker->boolean(),
];
}
}
diff --git a/database/factories/BonTransactionsFactory.php b/database/factories/BonTransactionsFactory.php
index 032551c0e..ff256e005 100644
--- a/database/factories/BonTransactionsFactory.php
+++ b/database/factories/BonTransactionsFactory.php
@@ -16,15 +16,15 @@ class BonTransactionsFactory extends Factory
public function definition(): array
{
return [
- 'itemID' => fn () => BonExchange::factory()->create()->id,
- 'name' => $this->faker->name(),
- 'cost' => $this->faker->randomFloat(),
- 'sender' => fn () => User::factory()->create()->id,
- 'receiver' => fn () => User::factory()->create()->id,
- 'torrent_id' => $this->faker->randomNumber(),
- 'donation_id' => $this->faker->randomNumber(),
- 'post_id' => $this->faker->randomNumber(),
- 'comment' => $this->faker->text(),
+ 'itemID' => fn () => BonExchange::factory()->create()->id,
+ 'name' => $this->faker->name(),
+ 'cost' => $this->faker->randomFloat(),
+ 'sender' => fn () => User::factory()->create()->id,
+ 'receiver' => fn () => User::factory()->create()->id,
+ 'torrent_id' => $this->faker->randomNumber(),
+ 'donation_id' => $this->faker->randomNumber(),
+ 'post_id' => $this->faker->randomNumber(),
+ 'comment' => $this->faker->text(),
'date_actioned' => $this->faker->dateTime(),
];
}
diff --git a/database/factories/BookmarkFactory.php b/database/factories/BookmarkFactory.php
index 8a2a2c2c6..adabd3d31 100644
--- a/database/factories/BookmarkFactory.php
+++ b/database/factories/BookmarkFactory.php
@@ -16,7 +16,7 @@ class BookmarkFactory extends Factory
public function definition(): array
{
return [
- 'user_id' => fn () => User::factory()->create()->id,
+ 'user_id' => fn () => User::factory()->create()->id,
'torrent_id' => fn () => Torrent::factory()->create()->id,
];
}
diff --git a/database/factories/BotFactory.php b/database/factories/BotFactory.php
index 7d5172cf4..86888f776 100644
--- a/database/factories/BotFactory.php
+++ b/database/factories/BotFactory.php
@@ -14,28 +14,28 @@ class BotFactory extends Factory
public function definition(): array
{
return [
- 'position' => $this->faker->randomNumber(),
- 'slug' => $this->faker->slug(),
- 'name' => $this->faker->name(),
- 'command' => $this->faker->word(),
- 'color' => $this->faker->word(),
- 'icon' => $this->faker->word(),
- 'emoji' => $this->faker->word(),
- 'info' => $this->faker->word(),
- 'about' => $this->faker->word(),
- 'help' => $this->faker->text(),
- 'active' => $this->faker->boolean(),
+ 'position' => $this->faker->randomNumber(),
+ 'slug' => $this->faker->slug(),
+ 'name' => $this->faker->name(),
+ 'command' => $this->faker->word(),
+ 'color' => $this->faker->word(),
+ 'icon' => $this->faker->word(),
+ 'emoji' => $this->faker->word(),
+ 'info' => $this->faker->word(),
+ 'about' => $this->faker->word(),
+ 'help' => $this->faker->text(),
+ 'active' => $this->faker->boolean(),
'is_protected' => $this->faker->boolean(),
'is_triviabot' => $this->faker->boolean(),
- 'is_nerdbot' => $this->faker->boolean(),
+ 'is_nerdbot' => $this->faker->boolean(),
'is_systembot' => $this->faker->boolean(),
'is_casinobot' => $this->faker->boolean(),
- 'is_betbot' => $this->faker->boolean(),
- 'uploaded' => $this->faker->randomNumber(),
- 'downloaded' => $this->faker->randomNumber(),
- 'fl_tokens' => $this->faker->randomNumber(),
- 'seedbonus' => $this->faker->randomFloat(),
- 'invites' => $this->faker->randomNumber(),
+ 'is_betbot' => $this->faker->boolean(),
+ 'uploaded' => $this->faker->randomNumber(),
+ 'downloaded' => $this->faker->randomNumber(),
+ 'fl_tokens' => $this->faker->randomNumber(),
+ 'seedbonus' => $this->faker->randomFloat(),
+ 'invites' => $this->faker->randomNumber(),
];
}
}
diff --git a/database/factories/BotTransactionFactory.php b/database/factories/BotTransactionFactory.php
index d7f5def69..9bae0144d 100644
--- a/database/factories/BotTransactionFactory.php
+++ b/database/factories/BotTransactionFactory.php
@@ -16,12 +16,12 @@ class BotTransactionFactory extends Factory
public function definition(): array
{
return [
- 'type' => $this->faker->word(),
- 'cost' => $this->faker->randomFloat(),
+ 'type' => $this->faker->word(),
+ 'cost' => $this->faker->randomFloat(),
'user_id' => fn () => User::factory()->create()->id,
- 'bot_id' => fn () => Bot::factory()->create()->id,
+ 'bot_id' => fn () => Bot::factory()->create()->id,
'to_user' => $this->faker->boolean(),
- 'to_bot' => $this->faker->boolean(),
+ 'to_bot' => $this->faker->boolean(),
'comment' => $this->faker->text(),
];
}
diff --git a/database/factories/CategoryFactory.php b/database/factories/CategoryFactory.php
index cbf93a98c..c78557521 100644
--- a/database/factories/CategoryFactory.php
+++ b/database/factories/CategoryFactory.php
@@ -14,16 +14,16 @@ class CategoryFactory extends Factory
public function definition(): array
{
return [
- 'name' => $this->faker->name(),
- 'slug' => $this->faker->slug(),
- 'image' => $this->faker->word(),
- 'position' => $this->faker->randomNumber(),
- 'icon' => $this->faker->word(),
- 'no_meta' => true,
- 'music_meta' => false,
- 'game_meta' => false,
- 'tv_meta' => false,
- 'movie_meta' => false,
+ 'name' => $this->faker->name(),
+ 'slug' => $this->faker->slug(),
+ 'image' => $this->faker->word(),
+ 'position' => $this->faker->randomNumber(),
+ 'icon' => $this->faker->word(),
+ 'no_meta' => true,
+ 'music_meta' => false,
+ 'game_meta' => false,
+ 'tv_meta' => false,
+ 'movie_meta' => false,
'num_torrent' => $this->faker->randomNumber(),
];
}
diff --git a/database/factories/ChatStatusFactory.php b/database/factories/ChatStatusFactory.php
index 532492089..387d14b83 100644
--- a/database/factories/ChatStatusFactory.php
+++ b/database/factories/ChatStatusFactory.php
@@ -14,9 +14,9 @@ class ChatStatusFactory extends Factory
public function definition(): array
{
return [
- 'name' => $this->faker->unique()->name(),
+ 'name' => $this->faker->unique()->name(),
'color' => $this->faker->unique()->word(),
- 'icon' => $this->faker->word(),
+ 'icon' => $this->faker->word(),
];
}
}
diff --git a/database/factories/CommentFactory.php b/database/factories/CommentFactory.php
index 390cadcd5..f1b061624 100644
--- a/database/factories/CommentFactory.php
+++ b/database/factories/CommentFactory.php
@@ -19,13 +19,13 @@ class CommentFactory extends Factory
public function definition(): array
{
return [
- 'content' => $this->faker->text(),
- 'anon' => (int) $this->faker->boolean(),
- 'torrent_id' => fn () => Torrent::factory()->create()->id,
- 'article_id' => fn () => Article::factory()->create()->id,
- 'requests_id' => fn () => TorrentRequest::factory()->create()->id,
- 'playlist_id' => fn () => Playlist::factory()->create()->id,
- 'user_id' => fn () => User::factory()->create()->id,
+ 'content' => $this->faker->text(),
+ 'anon' => (int) $this->faker->boolean(),
+ 'torrent_id' => fn () => Torrent::factory()->create()->id,
+ 'article_id' => fn () => Article::factory()->create()->id,
+ 'requests_id' => fn () => TorrentRequest::factory()->create()->id,
+ 'playlist_id' => fn () => Playlist::factory()->create()->id,
+ 'user_id' => fn () => User::factory()->create()->id,
];
}
}
diff --git a/database/factories/FailedLoginAttemptFactory.php b/database/factories/FailedLoginAttemptFactory.php
index 70ed8143c..2706a108e 100644
--- a/database/factories/FailedLoginAttemptFactory.php
+++ b/database/factories/FailedLoginAttemptFactory.php
@@ -14,8 +14,8 @@ class FailedLoginAttemptFactory extends Factory
public function definition(): array
{
return [
- 'user_id' => $this->faker->randomNumber(),
- 'username' => $this->faker->userName(),
+ 'user_id' => $this->faker->randomNumber(),
+ 'username' => $this->faker->userName(),
'ip_address' => $this->faker->word(),
];
}
diff --git a/database/factories/FeaturedTorrentFactory.php b/database/factories/FeaturedTorrentFactory.php
index b3b48043b..e59d8d24f 100644
--- a/database/factories/FeaturedTorrentFactory.php
+++ b/database/factories/FeaturedTorrentFactory.php
@@ -16,7 +16,7 @@ class FeaturedTorrentFactory extends Factory
public function definition(): array
{
return [
- 'user_id' => fn () => User::factory()->create()->id,
+ 'user_id' => fn () => User::factory()->create()->id,
'torrent_id' => fn () => Torrent::factory()->create()->id,
];
}
diff --git a/database/factories/FollowFactory.php b/database/factories/FollowFactory.php
index 5dbd66757..6b334774d 100644
--- a/database/factories/FollowFactory.php
+++ b/database/factories/FollowFactory.php
@@ -15,7 +15,7 @@ class FollowFactory extends Factory
public function definition(): array
{
return [
- 'user_id' => fn () => User::factory()->create()->id,
+ 'user_id' => fn () => User::factory()->create()->id,
'target_id' => fn () => User::factory()->create()->id,
];
}
diff --git a/database/factories/ForumFactory.php b/database/factories/ForumFactory.php
index 846ad4ccf..247b810f2 100644
--- a/database/factories/ForumFactory.php
+++ b/database/factories/ForumFactory.php
@@ -14,18 +14,18 @@ class ForumFactory extends Factory
public function definition(): array
{
return [
- 'position' => $this->faker->randomNumber(),
- 'num_topic' => $this->faker->randomNumber(),
- 'num_post' => $this->faker->randomNumber(),
- 'last_topic_id' => $this->faker->randomNumber(),
- 'last_topic_name' => $this->faker->word(),
- 'last_topic_slug' => $this->faker->word(),
- 'last_post_user_id' => $this->faker->randomNumber(),
+ 'position' => $this->faker->randomNumber(),
+ 'num_topic' => $this->faker->randomNumber(),
+ 'num_post' => $this->faker->randomNumber(),
+ 'last_topic_id' => $this->faker->randomNumber(),
+ 'last_topic_name' => $this->faker->word(),
+ 'last_topic_slug' => $this->faker->word(),
+ 'last_post_user_id' => $this->faker->randomNumber(),
'last_post_user_username' => $this->faker->word(),
- 'name' => $this->faker->name(),
- 'slug' => $this->faker->slug(),
- 'description' => $this->faker->text(),
- 'parent_id' => $this->faker->randomNumber(),
+ 'name' => $this->faker->name(),
+ 'slug' => $this->faker->slug(),
+ 'description' => $this->faker->text(),
+ 'parent_id' => $this->faker->randomNumber(),
];
}
}
diff --git a/database/factories/FreeleechTokenFactory.php b/database/factories/FreeleechTokenFactory.php
index 18aab16f3..a1794bef6 100644
--- a/database/factories/FreeleechTokenFactory.php
+++ b/database/factories/FreeleechTokenFactory.php
@@ -14,7 +14,7 @@ class FreeleechTokenFactory extends Factory
public function definition(): array
{
return [
- 'user_id' => $this->faker->randomNumber(),
+ 'user_id' => $this->faker->randomNumber(),
'torrent_id' => $this->faker->randomNumber(),
];
}
diff --git a/database/factories/GraveyardFactory.php b/database/factories/GraveyardFactory.php
index 8dd6cde26..23d11652a 100644
--- a/database/factories/GraveyardFactory.php
+++ b/database/factories/GraveyardFactory.php
@@ -16,10 +16,10 @@ class GraveyardFactory extends Factory
public function definition(): array
{
return [
- 'user_id' => fn () => User::factory()->create()->id,
+ 'user_id' => fn () => User::factory()->create()->id,
'torrent_id' => fn () => Torrent::factory()->create()->id,
- 'seedtime' => $this->faker->randomNumber(),
- 'rewarded' => $this->faker->boolean(),
+ 'seedtime' => $this->faker->randomNumber(),
+ 'rewarded' => $this->faker->boolean(),
];
}
}
diff --git a/database/factories/GroupFactory.php b/database/factories/GroupFactory.php
index faaa57a12..ff881e247 100644
--- a/database/factories/GroupFactory.php
+++ b/database/factories/GroupFactory.php
@@ -14,24 +14,24 @@ class GroupFactory extends Factory
public function definition(): array
{
return [
- 'name' => $this->faker->name(),
- 'slug' => $this->faker->slug(),
- 'position' => $this->faker->randomNumber(),
- 'level' => $this->faker->randomNumber(),
- 'color' => $this->faker->word(),
- 'icon' => $this->faker->word(),
- 'effect' => $this->faker->word(),
- 'is_internal' => $this->faker->boolean(),
- 'is_owner' => $this->faker->boolean(),
- 'is_admin' => $this->faker->boolean(),
- 'is_modo' => $this->faker->boolean(),
- 'is_trusted' => $this->faker->boolean(),
- 'is_immune' => $this->faker->boolean(),
- 'is_freeleech' => $this->faker->boolean(),
+ 'name' => $this->faker->name(),
+ 'slug' => $this->faker->slug(),
+ 'position' => $this->faker->randomNumber(),
+ 'level' => $this->faker->randomNumber(),
+ 'color' => $this->faker->word(),
+ 'icon' => $this->faker->word(),
+ 'effect' => $this->faker->word(),
+ 'is_internal' => $this->faker->boolean(),
+ 'is_owner' => $this->faker->boolean(),
+ 'is_admin' => $this->faker->boolean(),
+ 'is_modo' => $this->faker->boolean(),
+ 'is_trusted' => $this->faker->boolean(),
+ 'is_immune' => $this->faker->boolean(),
+ 'is_freeleech' => $this->faker->boolean(),
'is_double_upload' => $this->faker->boolean(),
- 'can_upload' => $this->faker->boolean(),
- 'is_incognito' => $this->faker->boolean(),
- 'autogroup' => $this->faker->boolean(),
+ 'can_upload' => $this->faker->boolean(),
+ 'is_incognito' => $this->faker->boolean(),
+ 'autogroup' => $this->faker->boolean(),
];
}
}
diff --git a/database/factories/HistoryFactory.php b/database/factories/HistoryFactory.php
index 323d4cc4c..42b7d4157 100644
--- a/database/factories/HistoryFactory.php
+++ b/database/factories/HistoryFactory.php
@@ -16,23 +16,23 @@ class HistoryFactory extends Factory
public function definition(): array
{
return [
- 'user_id' => fn () => User::factory()->create()->id,
- 'agent' => $this->faker->word(),
- 'info_hash' => fn () => Torrent::factory()->create()->id,
- 'uploaded' => $this->faker->randomNumber(),
- 'actual_uploaded' => $this->faker->randomNumber(),
- 'client_uploaded' => $this->faker->randomNumber(),
- 'downloaded' => $this->faker->randomNumber(),
+ 'user_id' => fn () => User::factory()->create()->id,
+ 'agent' => $this->faker->word(),
+ 'info_hash' => fn () => Torrent::factory()->create()->id,
+ 'uploaded' => $this->faker->randomNumber(),
+ 'actual_uploaded' => $this->faker->randomNumber(),
+ 'client_uploaded' => $this->faker->randomNumber(),
+ 'downloaded' => $this->faker->randomNumber(),
'actual_downloaded' => $this->faker->randomNumber(),
'client_downloaded' => $this->faker->randomNumber(),
- 'seeder' => $this->faker->boolean(),
- 'active' => $this->faker->boolean(),
- 'seedtime' => $this->faker->randomNumber(),
- 'immune' => $this->faker->boolean(),
- 'hitrun' => $this->faker->boolean(),
- 'prewarn' => $this->faker->boolean(),
- 'completed_at' => $this->faker->dateTime(),
- 'deleted_at' => $this->faker->dateTime(),
+ 'seeder' => $this->faker->boolean(),
+ 'active' => $this->faker->boolean(),
+ 'seedtime' => $this->faker->randomNumber(),
+ 'immune' => $this->faker->boolean(),
+ 'hitrun' => $this->faker->boolean(),
+ 'prewarn' => $this->faker->boolean(),
+ 'completed_at' => $this->faker->dateTime(),
+ 'deleted_at' => $this->faker->dateTime(),
];
}
}
diff --git a/database/factories/InviteFactory.php b/database/factories/InviteFactory.php
index dfddb8a62..fa374752c 100644
--- a/database/factories/InviteFactory.php
+++ b/database/factories/InviteFactory.php
@@ -15,13 +15,13 @@ class InviteFactory extends Factory
public function definition(): array
{
return [
- 'user_id' => fn () => User::factory()->create()->id,
- 'email' => $this->faker->safeEmail(),
- 'code' => $this->faker->word(),
- 'expires_on' => $this->faker->dateTime(),
+ 'user_id' => fn () => User::factory()->create()->id,
+ 'email' => $this->faker->safeEmail(),
+ 'code' => $this->faker->word(),
+ 'expires_on' => $this->faker->dateTime(),
'accepted_by' => fn () => User::factory()->create()->id,
'accepted_at' => $this->faker->dateTime(),
- 'custom' => $this->faker->text(),
+ 'custom' => $this->faker->text(),
];
}
}
diff --git a/database/factories/LikeFactory.php b/database/factories/LikeFactory.php
index 00bd642a6..2838e137b 100644
--- a/database/factories/LikeFactory.php
+++ b/database/factories/LikeFactory.php
@@ -16,11 +16,11 @@ class LikeFactory extends Factory
public function definition(): array
{
return [
- 'user_id' => fn () => User::factory()->create()->id,
- 'post_id' => fn () => Post::factory()->create()->id,
+ 'user_id' => fn () => User::factory()->create()->id,
+ 'post_id' => fn () => Post::factory()->create()->id,
'subtitle_id' => $this->faker->randomNumber(),
- 'like' => $this->faker->boolean(),
- 'dislike' => $this->faker->boolean(),
+ 'like' => $this->faker->boolean(),
+ 'dislike' => $this->faker->boolean(),
];
}
}
diff --git a/database/factories/MessageFactory.php b/database/factories/MessageFactory.php
index 88f521af9..be80623f4 100644
--- a/database/factories/MessageFactory.php
+++ b/database/factories/MessageFactory.php
@@ -17,11 +17,11 @@ class MessageFactory extends Factory
public function definition(): array
{
return [
- 'user_id' => fn () => User::factory()->create()->id,
+ 'user_id' => fn () => User::factory()->create()->id,
'chatroom_id' => fn () => Chatroom::factory()->create()->id,
'receiver_id' => fn () => User::factory()->create()->id,
- 'bot_id' => fn () => Bot::factory()->create()->id,
- 'message' => $this->faker->text(),
+ 'bot_id' => fn () => Bot::factory()->create()->id,
+ 'message' => $this->faker->text(),
];
}
}
diff --git a/database/factories/NoteFactory.php b/database/factories/NoteFactory.php
index 3078192f5..9e46bd340 100644
--- a/database/factories/NoteFactory.php
+++ b/database/factories/NoteFactory.php
@@ -15,9 +15,9 @@ class NoteFactory extends Factory
public function definition(): array
{
return [
- 'user_id' => fn () => User::factory()->create()->id,
+ 'user_id' => fn () => User::factory()->create()->id,
'staff_id' => fn () => User::factory()->create()->id,
- 'message' => $this->faker->text(),
+ 'message' => $this->faker->text(),
];
}
}
diff --git a/database/factories/NotificationFactory.php b/database/factories/NotificationFactory.php
index 2496fa4cd..3b6a1fe94 100644
--- a/database/factories/NotificationFactory.php
+++ b/database/factories/NotificationFactory.php
@@ -14,11 +14,11 @@ class NotificationFactory extends Factory
public function definition(): array
{
return [
- 'type' => $this->faker->word(),
- 'notifiable_id' => $this->faker->randomNumber(),
+ 'type' => $this->faker->word(),
+ 'notifiable_id' => $this->faker->randomNumber(),
'notifiable_type' => $this->faker->word(),
- 'data' => $this->faker->text(),
- 'read_at' => $this->faker->dateTime(),
+ 'data' => $this->faker->text(),
+ 'read_at' => $this->faker->dateTime(),
];
}
}
diff --git a/database/factories/OptionFactory.php b/database/factories/OptionFactory.php
index ec952261f..89146240a 100644
--- a/database/factories/OptionFactory.php
+++ b/database/factories/OptionFactory.php
@@ -16,8 +16,8 @@ class OptionFactory extends Factory
{
return [
'poll_id' => fn () => Poll::factory()->create()->id,
- 'name' => $this->faker->name(),
- 'votes' => $this->faker->randomNumber(),
+ 'name' => $this->faker->name(),
+ 'votes' => $this->faker->randomNumber(),
];
}
}
diff --git a/database/factories/PageFactory.php b/database/factories/PageFactory.php
index 1cf4579e9..9f3935458 100644
--- a/database/factories/PageFactory.php
+++ b/database/factories/PageFactory.php
@@ -14,8 +14,8 @@ class PageFactory extends Factory
public function definition(): array
{
return [
- 'name' => $this->faker->name(),
- 'slug' => $this->faker->slug(),
+ 'name' => $this->faker->name(),
+ 'slug' => $this->faker->slug(),
'content' => $this->faker->text(),
];
}
diff --git a/database/factories/PeerFactory.php b/database/factories/PeerFactory.php
index f2c0d1f1e..4792a7570 100644
--- a/database/factories/PeerFactory.php
+++ b/database/factories/PeerFactory.php
@@ -16,18 +16,18 @@ class PeerFactory extends Factory
public function definition(): array
{
return [
- 'peer_id' => $this->faker->word(),
+ 'peer_id' => $this->faker->word(),
'md5_peer_id' => $this->faker->word(),
- 'info_hash' => $this->faker->word(),
- 'ip' => $this->faker->word(),
- 'port' => $this->faker->randomNumber(),
- 'agent' => $this->faker->word(),
- 'uploaded' => $this->faker->randomNumber(),
- 'downloaded' => $this->faker->randomNumber(),
- 'left' => $this->faker->randomNumber(),
- 'seeder' => $this->faker->boolean(),
- 'torrent_id' => fn () => Torrent::factory()->create()->id,
- 'user_id' => fn () => User::factory()->create()->id,
+ 'info_hash' => $this->faker->word(),
+ 'ip' => $this->faker->word(),
+ 'port' => $this->faker->randomNumber(),
+ 'agent' => $this->faker->word(),
+ 'uploaded' => $this->faker->randomNumber(),
+ 'downloaded' => $this->faker->randomNumber(),
+ 'left' => $this->faker->randomNumber(),
+ 'seeder' => $this->faker->boolean(),
+ 'torrent_id' => fn () => Torrent::factory()->create()->id,
+ 'user_id' => fn () => User::factory()->create()->id,
'torrents.id' => fn () => Torrent::factory()->create()->id,
];
}
diff --git a/database/factories/PermissionFactory.php b/database/factories/PermissionFactory.php
index be553a421..4fb944351 100644
--- a/database/factories/PermissionFactory.php
+++ b/database/factories/PermissionFactory.php
@@ -16,10 +16,10 @@ class PermissionFactory extends Factory
public function definition(): array
{
return [
- 'forum_id' => fn () => Forum::factory()->create()->id,
- 'group_id' => fn () => Group::factory()->create()->id,
- 'show_forum' => $this->faker->boolean(),
- 'read_topic' => $this->faker->boolean(),
+ 'forum_id' => fn () => Forum::factory()->create()->id,
+ 'group_id' => fn () => Group::factory()->create()->id,
+ 'show_forum' => $this->faker->boolean(),
+ 'read_topic' => $this->faker->boolean(),
'reply_topic' => $this->faker->boolean(),
'start_topic' => $this->faker->boolean(),
];
diff --git a/database/factories/PlaylistFactory.php b/database/factories/PlaylistFactory.php
index 6725d7015..8a4851873 100644
--- a/database/factories/PlaylistFactory.php
+++ b/database/factories/PlaylistFactory.php
@@ -15,13 +15,13 @@ class PlaylistFactory extends Factory
public function definition(): array
{
return [
- 'user_id' => fn () => User::factory()->create()->id,
- 'name' => $this->faker->name(),
+ 'user_id' => fn () => User::factory()->create()->id,
+ 'name' => $this->faker->name(),
'description' => $this->faker->text(),
'cover_image' => $this->faker->word(),
- 'position' => $this->faker->randomNumber(),
- 'is_private' => $this->faker->boolean(),
- 'is_pinned' => $this->faker->boolean(),
+ 'position' => $this->faker->randomNumber(),
+ 'is_private' => $this->faker->boolean(),
+ 'is_pinned' => $this->faker->boolean(),
'is_featured' => $this->faker->boolean(),
];
}
diff --git a/database/factories/PlaylistTorrentFactory.php b/database/factories/PlaylistTorrentFactory.php
index 55dcfdb9a..a7634c256 100644
--- a/database/factories/PlaylistTorrentFactory.php
+++ b/database/factories/PlaylistTorrentFactory.php
@@ -16,10 +16,10 @@ class PlaylistTorrentFactory extends Factory
public function definition(): array
{
return [
- 'position' => $this->faker->randomNumber(),
+ 'position' => $this->faker->randomNumber(),
'playlist_id' => fn () => Playlist::factory()->create()->id,
- 'torrent_id' => fn () => Torrent::factory()->create()->id,
- 'tmdb_id' => $this->faker->randomNumber(),
+ 'torrent_id' => fn () => Torrent::factory()->create()->id,
+ 'tmdb_id' => $this->faker->randomNumber(),
];
}
}
diff --git a/database/factories/PollFactory.php b/database/factories/PollFactory.php
index 867778dd2..c45e8151d 100644
--- a/database/factories/PollFactory.php
+++ b/database/factories/PollFactory.php
@@ -15,10 +15,10 @@ class PollFactory extends Factory
public function definition(): array
{
return [
- 'user_id' => fn () => User::factory()->create()->id,
- 'title' => $this->faker->word(),
- 'slug' => $this->faker->slug(),
- 'ip_checking' => $this->faker->boolean(),
+ 'user_id' => fn () => User::factory()->create()->id,
+ 'title' => $this->faker->word(),
+ 'slug' => $this->faker->slug(),
+ 'ip_checking' => $this->faker->boolean(),
'multiple_choice' => $this->faker->boolean(),
];
}
diff --git a/database/factories/PostFactory.php b/database/factories/PostFactory.php
index f043d8219..3493f5a88 100644
--- a/database/factories/PostFactory.php
+++ b/database/factories/PostFactory.php
@@ -16,8 +16,8 @@ class PostFactory extends Factory
public function definition(): array
{
return [
- 'content' => $this->faker->text(),
- 'user_id' => fn () => User::factory()->create()->id,
+ 'content' => $this->faker->text(),
+ 'user_id' => fn () => User::factory()->create()->id,
'topic_id' => fn () => Topic::factory()->create()->id,
];
}
diff --git a/database/factories/PrivateMessageFactory.php b/database/factories/PrivateMessageFactory.php
index 300eb311a..fbe64dc21 100644
--- a/database/factories/PrivateMessageFactory.php
+++ b/database/factories/PrivateMessageFactory.php
@@ -15,12 +15,12 @@ class PrivateMessageFactory extends Factory
public function definition(): array
{
return [
- 'sender_id' => fn () => User::factory()->create()->id,
+ 'sender_id' => fn () => User::factory()->create()->id,
'receiver_id' => fn () => User::factory()->create()->id,
- 'subject' => $this->faker->word(),
- 'message' => $this->faker->text(),
- 'read' => $this->faker->boolean(),
- 'related_to' => $this->faker->randomNumber(),
+ 'subject' => $this->faker->word(),
+ 'message' => $this->faker->text(),
+ 'read' => $this->faker->boolean(),
+ 'related_to' => $this->faker->randomNumber(),
];
}
}
diff --git a/database/factories/ReportFactory.php b/database/factories/ReportFactory.php
index 5bbd82aa0..ba64c278c 100644
--- a/database/factories/ReportFactory.php
+++ b/database/factories/ReportFactory.php
@@ -17,16 +17,16 @@ class ReportFactory extends Factory
public function definition(): array
{
return [
- 'type' => $this->faker->word(),
- 'reporter_id' => fn () => User::factory()->create()->id,
- 'staff_id' => fn () => User::factory()->create()->id,
- 'title' => $this->faker->word(),
- 'message' => $this->faker->text(),
- 'solved' => $this->faker->randomNumber(),
- 'verdict' => $this->faker->text(),
+ 'type' => $this->faker->word(),
+ 'reporter_id' => fn () => User::factory()->create()->id,
+ 'staff_id' => fn () => User::factory()->create()->id,
+ 'title' => $this->faker->word(),
+ 'message' => $this->faker->text(),
+ 'solved' => $this->faker->randomNumber(),
+ 'verdict' => $this->faker->text(),
'reported_user' => fn () => User::factory()->create()->id,
- 'torrent_id' => fn () => Torrent::factory()->create()->id,
- 'request_id' => fn () => TorrentRequest::factory()->create()->id,
+ 'torrent_id' => fn () => Torrent::factory()->create()->id,
+ 'request_id' => fn () => TorrentRequest::factory()->create()->id,
];
}
}
diff --git a/database/factories/ResolutionFactory.php b/database/factories/ResolutionFactory.php
index 6dfaf013d..62ee539c3 100644
--- a/database/factories/ResolutionFactory.php
+++ b/database/factories/ResolutionFactory.php
@@ -14,8 +14,8 @@ class ResolutionFactory extends Factory
public function definition(): array
{
return [
- 'name' => $this->faker->name(),
- 'slug' => $this->faker->slug(),
+ 'name' => $this->faker->name(),
+ 'slug' => $this->faker->slug(),
'position' => $this->faker->randomNumber(),
];
}
diff --git a/database/factories/RssFactory.php b/database/factories/RssFactory.php
index ed3d73ac5..e053c8716 100644
--- a/database/factories/RssFactory.php
+++ b/database/factories/RssFactory.php
@@ -15,12 +15,12 @@ class RssFactory extends Factory
public function definition(): array
{
return [
- 'position' => $this->faker->randomNumber(),
- 'name' => $this->faker->name(),
- 'user_id' => fn () => User::factory()->create()->id,
- 'staff_id' => fn () => User::factory()->create()->id,
- 'is_private' => $this->faker->boolean(),
- 'is_torrent' => $this->faker->boolean(),
+ 'position' => $this->faker->randomNumber(),
+ 'name' => $this->faker->name(),
+ 'user_id' => fn () => User::factory()->create()->id,
+ 'staff_id' => fn () => User::factory()->create()->id,
+ 'is_private' => $this->faker->boolean(),
+ 'is_torrent' => $this->faker->boolean(),
'json_torrent' => $this->faker->word(),
];
}
diff --git a/database/factories/SeedboxFactory.php b/database/factories/SeedboxFactory.php
index 306464b01..bca7e366a 100644
--- a/database/factories/SeedboxFactory.php
+++ b/database/factories/SeedboxFactory.php
@@ -16,8 +16,8 @@ class SeedboxFactory extends Factory
{
return [
'user_id' => fn () => User::factory()->create()->id,
- 'name' => $this->faker->name(),
- 'ip' => $this->faker->word(),
+ 'name' => $this->faker->name(),
+ 'ip' => $this->faker->word(),
];
}
}
diff --git a/database/factories/SubscriptionFactory.php b/database/factories/SubscriptionFactory.php
index 158e190e8..c50f3c252 100644
--- a/database/factories/SubscriptionFactory.php
+++ b/database/factories/SubscriptionFactory.php
@@ -17,7 +17,7 @@ class SubscriptionFactory extends Factory
public function definition(): array
{
return [
- 'user_id' => fn () => User::factory()->create()->id,
+ 'user_id' => fn () => User::factory()->create()->id,
'forum_id' => fn () => Forum::factory()->create()->id,
'topic_id' => fn () => Topic::factory()->create()->id,
];
diff --git a/database/factories/ThankFactory.php b/database/factories/ThankFactory.php
index 25e9b3251..ab2f022bc 100644
--- a/database/factories/ThankFactory.php
+++ b/database/factories/ThankFactory.php
@@ -16,7 +16,7 @@ class ThankFactory extends Factory
public function definition(): array
{
return [
- 'user_id' => fn () => User::factory()->create()->id,
+ 'user_id' => fn () => User::factory()->create()->id,
'torrent_id' => fn () => Torrent::factory()->create()->id,
];
}
diff --git a/database/factories/TopicFactory.php b/database/factories/TopicFactory.php
index aa58fac85..fd94eaac1 100644
--- a/database/factories/TopicFactory.php
+++ b/database/factories/TopicFactory.php
@@ -16,25 +16,25 @@ class TopicFactory extends Factory
public function definition(): array
{
return [
- 'name' => $this->faker->name(),
- 'slug' => $this->faker->slug(),
- 'state' => $this->faker->word(),
- 'pinned' => $this->faker->boolean(),
- 'approved' => $this->faker->boolean(),
- 'denied' => $this->faker->boolean(),
- 'solved' => $this->faker->boolean(),
- 'invalid' => $this->faker->boolean(),
- 'bug' => $this->faker->boolean(),
- 'suggestion' => $this->faker->boolean(),
- 'implemented' => $this->faker->boolean(),
- 'num_post' => $this->faker->randomNumber(),
- 'first_post_user_id' => fn () => User::factory()->create()->id,
- 'last_post_user_id' => $this->faker->randomNumber(),
+ 'name' => $this->faker->name(),
+ 'slug' => $this->faker->slug(),
+ 'state' => $this->faker->word(),
+ 'pinned' => $this->faker->boolean(),
+ 'approved' => $this->faker->boolean(),
+ 'denied' => $this->faker->boolean(),
+ 'solved' => $this->faker->boolean(),
+ 'invalid' => $this->faker->boolean(),
+ 'bug' => $this->faker->boolean(),
+ 'suggestion' => $this->faker->boolean(),
+ 'implemented' => $this->faker->boolean(),
+ 'num_post' => $this->faker->randomNumber(),
+ 'first_post_user_id' => fn () => User::factory()->create()->id,
+ 'last_post_user_id' => $this->faker->randomNumber(),
'first_post_user_username' => $this->faker->word(),
- 'last_post_user_username' => $this->faker->word(),
- 'last_reply_at' => $this->faker->dateTime(),
- 'views' => $this->faker->randomNumber(),
- 'forum_id' => fn () => Forum::factory()->create()->id,
+ 'last_post_user_username' => $this->faker->word(),
+ 'last_reply_at' => $this->faker->dateTime(),
+ 'views' => $this->faker->randomNumber(),
+ 'forum_id' => fn () => Forum::factory()->create()->id,
];
}
}
diff --git a/database/factories/TorrentFactory.php b/database/factories/TorrentFactory.php
index 2572e89e1..33abdeb1e 100644
--- a/database/factories/TorrentFactory.php
+++ b/database/factories/TorrentFactory.php
@@ -21,41 +21,41 @@ class TorrentFactory extends Factory
$selected = \random_int(0, \count($freeleech) - 1);
return [
- 'name' => $this->faker->name(),
- 'slug' => $this->faker->slug(),
- 'description' => $this->faker->text(),
- 'mediainfo' => $this->faker->text(),
- 'info_hash' => $this->faker->word(),
- 'file_name' => $this->faker->word(),
- 'num_file' => $this->faker->randomNumber(),
- 'size' => $this->faker->randomFloat(),
- 'nfo' => $this->faker->text(),
- 'leechers' => $this->faker->randomNumber(),
- 'seeders' => $this->faker->randomNumber(),
- 'times_completed' => $this->faker->randomNumber(),
- 'category_id' => fn () => Category::factory()->create()->id,
- 'announce' => $this->faker->word(),
- 'user_id' => fn () => User::factory()->create()->id,
- 'imdb' => $this->faker->randomNumber(),
- 'tvdb' => $this->faker->randomNumber(),
- 'tmdb' => $this->faker->randomNumber(),
- 'mal' => $this->faker->randomNumber(),
- 'igdb' => $this->faker->randomNumber(),
- 'type_id' => fn () => Type::factory()->create()->id,
- 'resolution_id' => fn () => Resolution::factory()->create()->id,
- 'stream' => $this->faker->boolean(),
- 'free' => $freeleech[$selected],
- 'doubleup' => $this->faker->boolean(),
- 'highspeed' => $this->faker->boolean(),
- 'featured' => false,
- 'status' => 1,
- 'moderated_at' => \now(),
- 'moderated_by' => 1,
- 'anon' => $this->faker->boolean(),
- 'sticky' => $this->faker->boolean(),
- 'sd' => $this->faker->boolean(),
- 'internal' => $this->faker->boolean(),
- 'release_year' => $this->faker->date('Y'),
+ 'name' => $this->faker->name(),
+ 'slug' => $this->faker->slug(),
+ 'description' => $this->faker->text(),
+ 'mediainfo' => $this->faker->text(),
+ 'info_hash' => $this->faker->word(),
+ 'file_name' => $this->faker->word(),
+ 'num_file' => $this->faker->randomNumber(),
+ 'size' => $this->faker->randomFloat(),
+ 'nfo' => $this->faker->text(),
+ 'leechers' => $this->faker->randomNumber(),
+ 'seeders' => $this->faker->randomNumber(),
+ 'times_completed' => $this->faker->randomNumber(),
+ 'category_id' => fn () => Category::factory()->create()->id,
+ 'announce' => $this->faker->word(),
+ 'user_id' => fn () => User::factory()->create()->id,
+ 'imdb' => $this->faker->randomNumber(),
+ 'tvdb' => $this->faker->randomNumber(),
+ 'tmdb' => $this->faker->randomNumber(),
+ 'mal' => $this->faker->randomNumber(),
+ 'igdb' => $this->faker->randomNumber(),
+ 'type_id' => fn () => Type::factory()->create()->id,
+ 'resolution_id' => fn () => Resolution::factory()->create()->id,
+ 'stream' => $this->faker->boolean(),
+ 'free' => $freeleech[$selected],
+ 'doubleup' => $this->faker->boolean(),
+ 'highspeed' => $this->faker->boolean(),
+ 'featured' => false,
+ 'status' => 1,
+ 'moderated_at' => \now(),
+ 'moderated_by' => 1,
+ 'anon' => $this->faker->boolean(),
+ 'sticky' => $this->faker->boolean(),
+ 'sd' => $this->faker->boolean(),
+ 'internal' => $this->faker->boolean(),
+ 'release_year' => $this->faker->date('Y'),
];
}
}
diff --git a/database/factories/TorrentFileFactory.php b/database/factories/TorrentFileFactory.php
index 9cb4546df..13284f3c4 100644
--- a/database/factories/TorrentFileFactory.php
+++ b/database/factories/TorrentFileFactory.php
@@ -15,8 +15,8 @@ class TorrentFileFactory extends Factory
public function definition(): array
{
return [
- 'name' => $this->faker->name(),
- 'size' => $this->faker->randomNumber(),
+ 'name' => $this->faker->name(),
+ 'size' => $this->faker->randomNumber(),
'torrent_id' => fn () => Torrent::factory()->create()->id,
];
}
diff --git a/database/factories/TorrentRequestBountyFactory.php b/database/factories/TorrentRequestBountyFactory.php
index bad86a2a6..8a712e448 100644
--- a/database/factories/TorrentRequestBountyFactory.php
+++ b/database/factories/TorrentRequestBountyFactory.php
@@ -16,11 +16,11 @@ class TorrentRequestBountyFactory extends Factory
public function definition(): array
{
return [
- 'user_id' => fn () => User::factory()->create()->id,
- 'seedbonus' => $this->faker->randomFloat(),
+ 'user_id' => fn () => User::factory()->create()->id,
+ 'seedbonus' => $this->faker->randomFloat(),
'requests_id' => $this->faker->randomNumber(),
- 'anon' => $this->faker->boolean(),
- 'request_id' => fn () => TorrentRequest::factory()->create()->id,
+ 'anon' => $this->faker->boolean(),
+ 'request_id' => fn () => TorrentRequest::factory()->create()->id,
];
}
}
diff --git a/database/factories/TorrentRequestClaimFactory.php b/database/factories/TorrentRequestClaimFactory.php
index 7fc0e6f4b..8ed493035 100644
--- a/database/factories/TorrentRequestClaimFactory.php
+++ b/database/factories/TorrentRequestClaimFactory.php
@@ -15,8 +15,8 @@ class TorrentRequestClaimFactory extends Factory
{
return [
'request_id' => $this->faker->randomNumber(),
- 'username' => $this->faker->userName(),
- 'anon' => $this->faker->randomNumber(),
+ 'username' => $this->faker->userName(),
+ 'anon' => $this->faker->randomNumber(),
];
}
}
diff --git a/database/factories/TorrentRequestFactory.php b/database/factories/TorrentRequestFactory.php
index 44386585d..d64a2da3b 100644
--- a/database/factories/TorrentRequestFactory.php
+++ b/database/factories/TorrentRequestFactory.php
@@ -19,27 +19,27 @@ class TorrentRequestFactory extends Factory
public function definition(): array
{
return [
- 'name' => $this->faker->name(),
- 'category_id' => fn () => Category::factory()->create()->id,
- 'type_id' => fn () => Type::factory()->create()->id,
- 'resolution_id' => fn () => Resolution::factory()->create()->id,
- 'imdb' => $this->faker->word(),
- 'tvdb' => $this->faker->word(),
- 'tmdb' => $this->faker->word(),
- 'mal' => $this->faker->word(),
- 'igdb' => $this->faker->word(),
- 'description' => $this->faker->text(),
- 'user_id' => fn () => User::factory()->create()->id,
- 'bounty' => $this->faker->randomFloat(),
- 'votes' => $this->faker->randomNumber(),
- 'claimed' => $this->faker->boolean(),
- 'anon' => $this->faker->boolean(),
- 'filled_by' => fn () => User::factory()->create()->id,
- 'filled_hash' => fn () => Torrent::factory()->create()->id,
- 'filled_when' => $this->faker->dateTime(),
- 'filled_anon' => $this->faker->boolean(),
- 'approved_by' => fn () => User::factory()->create()->id,
- 'approved_when' => $this->faker->dateTime(),
+ 'name' => $this->faker->name(),
+ 'category_id' => fn () => Category::factory()->create()->id,
+ 'type_id' => fn () => Type::factory()->create()->id,
+ 'resolution_id' => fn () => Resolution::factory()->create()->id,
+ 'imdb' => $this->faker->word(),
+ 'tvdb' => $this->faker->word(),
+ 'tmdb' => $this->faker->word(),
+ 'mal' => $this->faker->word(),
+ 'igdb' => $this->faker->word(),
+ 'description' => $this->faker->text(),
+ 'user_id' => fn () => User::factory()->create()->id,
+ 'bounty' => $this->faker->randomFloat(),
+ 'votes' => $this->faker->randomNumber(),
+ 'claimed' => $this->faker->boolean(),
+ 'anon' => $this->faker->boolean(),
+ 'filled_by' => fn () => User::factory()->create()->id,
+ 'filled_hash' => fn () => Torrent::factory()->create()->id,
+ 'filled_when' => $this->faker->dateTime(),
+ 'filled_anon' => $this->faker->boolean(),
+ 'approved_by' => fn () => User::factory()->create()->id,
+ 'approved_when' => $this->faker->dateTime(),
];
}
}
diff --git a/database/factories/TwoStepAuthFactory.php b/database/factories/TwoStepAuthFactory.php
index c894457a3..82f6fad6d 100644
--- a/database/factories/TwoStepAuthFactory.php
+++ b/database/factories/TwoStepAuthFactory.php
@@ -15,11 +15,11 @@ class TwoStepAuthFactory extends Factory
public function definition(): array
{
return [
- 'userId' => $this->faker->randomNumber(),
- 'authCode' => sprintf('%s%s%s%s', $this->faker->numberBetween(0, 9), $this->faker->numberBetween(0, 9), $this->faker->numberBetween(0, 9), $this->faker->numberBetween(0, 9)),
- 'authCount' => 0,
- 'authStatus' => false,
- 'authDate' => null,
+ 'userId' => $this->faker->randomNumber(),
+ 'authCode' => sprintf('%s%s%s%s', $this->faker->numberBetween(0, 9), $this->faker->numberBetween(0, 9), $this->faker->numberBetween(0, 9), $this->faker->numberBetween(0, 9)),
+ 'authCount' => 0,
+ 'authStatus' => false,
+ 'authDate' => null,
'requestDate' => Carbon::now(),
];
}
diff --git a/database/factories/TypeFactory.php b/database/factories/TypeFactory.php
index e00ca9622..0bd2436b0 100644
--- a/database/factories/TypeFactory.php
+++ b/database/factories/TypeFactory.php
@@ -14,8 +14,8 @@ class TypeFactory extends Factory
public function definition(): array
{
return [
- 'name' => $this->faker->name(),
- 'slug' => $this->faker->slug(),
+ 'name' => $this->faker->name(),
+ 'slug' => $this->faker->slug(),
'position' => $this->faker->randomNumber(),
];
}
diff --git a/database/factories/UserActivationFactory.php b/database/factories/UserActivationFactory.php
index bdef85fbf..2872adb2a 100644
--- a/database/factories/UserActivationFactory.php
+++ b/database/factories/UserActivationFactory.php
@@ -16,7 +16,7 @@ class UserActivationFactory extends Factory
{
return [
'user_id' => fn () => User::factory()->create()->id,
- 'token' => $this->faker->uuid(),
+ 'token' => $this->faker->uuid(),
];
}
}
diff --git a/database/factories/UserAudibleFactory.php b/database/factories/UserAudibleFactory.php
index d08b54cb5..76c611af2 100644
--- a/database/factories/UserAudibleFactory.php
+++ b/database/factories/UserAudibleFactory.php
@@ -17,11 +17,11 @@ class UserAudibleFactory extends Factory
public function definition(): array
{
return [
- 'user_id' => fn () => User::factory()->create()->id,
- 'room_id' => fn () => Chatroom::factory()->create()->id,
+ 'user_id' => fn () => User::factory()->create()->id,
+ 'room_id' => fn () => Chatroom::factory()->create()->id,
'target_id' => fn () => User::factory()->create()->id,
- 'bot_id' => fn () => Bot::factory()->create()->id,
- 'status' => $this->faker->boolean(),
+ 'bot_id' => fn () => Bot::factory()->create()->id,
+ 'status' => $this->faker->boolean(),
];
}
}
diff --git a/database/factories/UserEchoFactory.php b/database/factories/UserEchoFactory.php
index 6b71a2dc9..a8c3b884d 100644
--- a/database/factories/UserEchoFactory.php
+++ b/database/factories/UserEchoFactory.php
@@ -17,10 +17,10 @@ class UserEchoFactory extends Factory
public function definition(): array
{
return [
- 'user_id' => fn () => User::factory()->create()->id,
- 'room_id' => fn () => Chatroom::factory()->create()->id,
+ 'user_id' => fn () => User::factory()->create()->id,
+ 'room_id' => fn () => Chatroom::factory()->create()->id,
'target_id' => fn () => User::factory()->create()->id,
- 'bot_id' => fn () => Bot::factory()->create()->id,
+ 'bot_id' => fn () => Bot::factory()->create()->id,
];
}
}
diff --git a/database/factories/UserFactory.php b/database/factories/UserFactory.php
index 6dcffd338..fa55048d9 100644
--- a/database/factories/UserFactory.php
+++ b/database/factories/UserFactory.php
@@ -18,53 +18,53 @@ class UserFactory extends Factory
public function definition(): array
{
return [
- 'username' => $this->faker->unique()->userName(),
- 'email' => $this->faker->unique()->safeEmail(),
- 'password' => \bcrypt('secret'),
- 'passkey' => \md5(\random_bytes(60)),
- 'group_id' => fn () => Group::factory()->create()->id,
- 'active' => true,
- 'uploaded' => $this->faker->randomNumber(),
- 'downloaded' => $this->faker->randomNumber(),
- 'image' => $this->faker->word(),
- 'title' => $this->faker->word(),
- 'about' => $this->faker->word(),
- 'signature' => $this->faker->text(),
- 'fl_tokens' => $this->faker->randomNumber(),
- 'seedbonus' => $this->faker->randomFloat(),
- 'invites' => $this->faker->randomNumber(),
- 'hitandruns' => $this->faker->randomNumber(),
- 'rsskey' => \md5(\random_bytes(60)),
- 'chatroom_id' => fn () => Chatroom::factory()->create()->id,
- 'censor' => $this->faker->boolean(),
- 'chat_hidden' => $this->faker->boolean(),
- 'hidden' => $this->faker->boolean(),
- 'style' => $this->faker->boolean(),
- 'torrent_layout' => $this->faker->boolean(),
- 'torrent_filters' => $this->faker->boolean(),
- 'custom_css' => $this->faker->word(),
- 'ratings' => $this->faker->boolean(),
- 'read_rules' => $this->faker->boolean(),
- 'can_chat' => $this->faker->boolean(),
- 'can_comment' => $this->faker->boolean(),
- 'can_download' => $this->faker->boolean(),
- 'can_request' => $this->faker->boolean(),
- 'can_invite' => $this->faker->boolean(),
- 'can_upload' => $this->faker->boolean(),
- 'show_poster' => $this->faker->boolean(),
- 'peer_hidden' => $this->faker->boolean(),
- 'private_profile' => $this->faker->boolean(),
+ 'username' => $this->faker->unique()->userName(),
+ 'email' => $this->faker->unique()->safeEmail(),
+ 'password' => \bcrypt('secret'),
+ 'passkey' => \md5(\random_bytes(60)),
+ 'group_id' => fn () => Group::factory()->create()->id,
+ 'active' => true,
+ 'uploaded' => $this->faker->randomNumber(),
+ 'downloaded' => $this->faker->randomNumber(),
+ 'image' => $this->faker->word(),
+ 'title' => $this->faker->word(),
+ 'about' => $this->faker->word(),
+ 'signature' => $this->faker->text(),
+ 'fl_tokens' => $this->faker->randomNumber(),
+ 'seedbonus' => $this->faker->randomFloat(),
+ 'invites' => $this->faker->randomNumber(),
+ 'hitandruns' => $this->faker->randomNumber(),
+ 'rsskey' => \md5(\random_bytes(60)),
+ 'chatroom_id' => fn () => Chatroom::factory()->create()->id,
+ 'censor' => $this->faker->boolean(),
+ 'chat_hidden' => $this->faker->boolean(),
+ 'hidden' => $this->faker->boolean(),
+ 'style' => $this->faker->boolean(),
+ 'torrent_layout' => $this->faker->boolean(),
+ 'torrent_filters' => $this->faker->boolean(),
+ 'custom_css' => $this->faker->word(),
+ 'ratings' => $this->faker->boolean(),
+ 'read_rules' => $this->faker->boolean(),
+ 'can_chat' => $this->faker->boolean(),
+ 'can_comment' => $this->faker->boolean(),
+ 'can_download' => $this->faker->boolean(),
+ 'can_request' => $this->faker->boolean(),
+ 'can_invite' => $this->faker->boolean(),
+ 'can_upload' => $this->faker->boolean(),
+ 'show_poster' => $this->faker->boolean(),
+ 'peer_hidden' => $this->faker->boolean(),
+ 'private_profile' => $this->faker->boolean(),
'block_notifications' => $this->faker->boolean(),
- 'stat_hidden' => $this->faker->boolean(),
- 'twostep' => false,
- 'remember_token' => Str::random(10),
- 'api_token' => $this->faker->uuid(),
+ 'stat_hidden' => $this->faker->boolean(),
+ 'twostep' => false,
+ 'remember_token' => Str::random(10),
+ 'api_token' => $this->faker->uuid(),
//'last_login' => $this->faker->dateTime(),
- 'last_action' => $this->faker->dateTime(),
+ 'last_action' => $this->faker->dateTime(),
//'disabled_at' => $this->faker->dateTime(),
//'deleted_by' => $this->faker->randomNumber(),
- 'locale' => $this->faker->word(),
- 'chat_status_id' => fn () => ChatStatus::factory()->create()->id,
+ 'locale' => $this->faker->word(),
+ 'chat_status_id' => fn () => ChatStatus::factory()->create()->id,
];
}
}
diff --git a/database/factories/UserNotificationFactory.php b/database/factories/UserNotificationFactory.php
index 15a9ce6c3..71a62d66a 100644
--- a/database/factories/UserNotificationFactory.php
+++ b/database/factories/UserNotificationFactory.php
@@ -15,36 +15,36 @@ class UserNotificationFactory extends Factory
public function definition(): array
{
return [
- 'user_id' => fn () => User::factory()->create()->id,
- 'show_bon_gift' => $this->faker->boolean(),
- 'show_mention_forum_post' => $this->faker->boolean(),
+ 'user_id' => fn () => User::factory()->create()->id,
+ 'show_bon_gift' => $this->faker->boolean(),
+ 'show_mention_forum_post' => $this->faker->boolean(),
'show_mention_article_comment' => $this->faker->boolean(),
'show_mention_request_comment' => $this->faker->boolean(),
'show_mention_torrent_comment' => $this->faker->boolean(),
- 'show_subscription_topic' => $this->faker->boolean(),
- 'show_subscription_forum' => $this->faker->boolean(),
- 'show_forum_topic' => $this->faker->boolean(),
- 'show_following_upload' => $this->faker->boolean(),
- 'show_request_bounty' => $this->faker->boolean(),
- 'show_request_comment' => $this->faker->boolean(),
- 'show_request_fill' => $this->faker->boolean(),
- 'show_request_fill_approve' => $this->faker->boolean(),
- 'show_request_fill_reject' => $this->faker->boolean(),
- 'show_request_claim' => $this->faker->boolean(),
- 'show_request_unclaim' => $this->faker->boolean(),
- 'show_torrent_comment' => $this->faker->boolean(),
- 'show_torrent_tip' => $this->faker->boolean(),
- 'show_torrent_thank' => $this->faker->boolean(),
- 'show_account_follow' => $this->faker->boolean(),
- 'show_account_unfollow' => $this->faker->boolean(),
- 'json_account_groups' => $this->faker->word(),
- 'json_bon_groups' => $this->faker->word(),
- 'json_mention_groups' => $this->faker->word(),
- 'json_request_groups' => $this->faker->word(),
- 'json_torrent_groups' => $this->faker->word(),
- 'json_forum_groups' => $this->faker->word(),
- 'json_following_groups' => $this->faker->word(),
- 'json_subscription_groups' => $this->faker->word(),
+ 'show_subscription_topic' => $this->faker->boolean(),
+ 'show_subscription_forum' => $this->faker->boolean(),
+ 'show_forum_topic' => $this->faker->boolean(),
+ 'show_following_upload' => $this->faker->boolean(),
+ 'show_request_bounty' => $this->faker->boolean(),
+ 'show_request_comment' => $this->faker->boolean(),
+ 'show_request_fill' => $this->faker->boolean(),
+ 'show_request_fill_approve' => $this->faker->boolean(),
+ 'show_request_fill_reject' => $this->faker->boolean(),
+ 'show_request_claim' => $this->faker->boolean(),
+ 'show_request_unclaim' => $this->faker->boolean(),
+ 'show_torrent_comment' => $this->faker->boolean(),
+ 'show_torrent_tip' => $this->faker->boolean(),
+ 'show_torrent_thank' => $this->faker->boolean(),
+ 'show_account_follow' => $this->faker->boolean(),
+ 'show_account_unfollow' => $this->faker->boolean(),
+ 'json_account_groups' => $this->faker->word(),
+ 'json_bon_groups' => $this->faker->word(),
+ 'json_mention_groups' => $this->faker->word(),
+ 'json_request_groups' => $this->faker->word(),
+ 'json_torrent_groups' => $this->faker->word(),
+ 'json_forum_groups' => $this->faker->word(),
+ 'json_following_groups' => $this->faker->word(),
+ 'json_subscription_groups' => $this->faker->word(),
];
}
}
diff --git a/database/factories/UserPrivacyFactory.php b/database/factories/UserPrivacyFactory.php
index 874c66269..a8b45c3d2 100644
--- a/database/factories/UserPrivacyFactory.php
+++ b/database/factories/UserPrivacyFactory.php
@@ -15,46 +15,46 @@ class UserPrivacyFactory extends Factory
public function definition(): array
{
return [
- 'user_id' => fn () => User::factory()->create()->id,
- 'show_achievement' => $this->faker->boolean(),
- 'show_bon' => $this->faker->boolean(),
- 'show_comment' => $this->faker->boolean(),
- 'show_download' => $this->faker->boolean(),
- 'show_follower' => $this->faker->boolean(),
- 'show_online' => $this->faker->boolean(),
- 'show_peer' => $this->faker->boolean(),
- 'show_post' => $this->faker->boolean(),
- 'show_profile' => $this->faker->boolean(),
- 'show_profile_about' => $this->faker->boolean(),
- 'show_profile_achievement' => $this->faker->boolean(),
- 'show_profile_badge' => $this->faker->boolean(),
- 'show_profile_follower' => $this->faker->boolean(),
- 'show_profile_title' => $this->faker->boolean(),
- 'show_profile_bon_extra' => $this->faker->boolean(),
+ 'user_id' => fn () => User::factory()->create()->id,
+ 'show_achievement' => $this->faker->boolean(),
+ 'show_bon' => $this->faker->boolean(),
+ 'show_comment' => $this->faker->boolean(),
+ 'show_download' => $this->faker->boolean(),
+ 'show_follower' => $this->faker->boolean(),
+ 'show_online' => $this->faker->boolean(),
+ 'show_peer' => $this->faker->boolean(),
+ 'show_post' => $this->faker->boolean(),
+ 'show_profile' => $this->faker->boolean(),
+ 'show_profile_about' => $this->faker->boolean(),
+ 'show_profile_achievement' => $this->faker->boolean(),
+ 'show_profile_badge' => $this->faker->boolean(),
+ 'show_profile_follower' => $this->faker->boolean(),
+ 'show_profile_title' => $this->faker->boolean(),
+ 'show_profile_bon_extra' => $this->faker->boolean(),
'show_profile_comment_extra' => $this->faker->boolean(),
- 'show_profile_forum_extra' => $this->faker->boolean(),
+ 'show_profile_forum_extra' => $this->faker->boolean(),
'show_profile_request_extra' => $this->faker->boolean(),
'show_profile_torrent_count' => $this->faker->boolean(),
'show_profile_torrent_extra' => $this->faker->boolean(),
'show_profile_torrent_ratio' => $this->faker->boolean(),
- 'show_profile_torrent_seed' => $this->faker->boolean(),
- 'show_profile_warning' => $this->faker->boolean(),
- 'show_rank' => $this->faker->boolean(),
- 'show_requested' => $this->faker->boolean(),
- 'show_topic' => $this->faker->boolean(),
- 'show_upload' => $this->faker->boolean(),
- 'show_wishlist' => $this->faker->boolean(),
- 'json_profile_groups' => $this->faker->word(),
- 'json_torrent_groups' => $this->faker->word(),
- 'json_forum_groups' => $this->faker->word(),
- 'json_bon_groups' => $this->faker->word(),
- 'json_comment_groups' => $this->faker->word(),
- 'json_wishlist_groups' => $this->faker->word(),
- 'json_follower_groups' => $this->faker->word(),
- 'json_achievement_groups' => $this->faker->word(),
- 'json_rank_groups' => $this->faker->word(),
- 'json_request_groups' => $this->faker->word(),
- 'json_other_groups' => $this->faker->word(),
+ 'show_profile_torrent_seed' => $this->faker->boolean(),
+ 'show_profile_warning' => $this->faker->boolean(),
+ 'show_rank' => $this->faker->boolean(),
+ 'show_requested' => $this->faker->boolean(),
+ 'show_topic' => $this->faker->boolean(),
+ 'show_upload' => $this->faker->boolean(),
+ 'show_wishlist' => $this->faker->boolean(),
+ 'json_profile_groups' => $this->faker->word(),
+ 'json_torrent_groups' => $this->faker->word(),
+ 'json_forum_groups' => $this->faker->word(),
+ 'json_bon_groups' => $this->faker->word(),
+ 'json_comment_groups' => $this->faker->word(),
+ 'json_wishlist_groups' => $this->faker->word(),
+ 'json_follower_groups' => $this->faker->word(),
+ 'json_achievement_groups' => $this->faker->word(),
+ 'json_rank_groups' => $this->faker->word(),
+ 'json_request_groups' => $this->faker->word(),
+ 'json_other_groups' => $this->faker->word(),
];
}
}
diff --git a/database/factories/VoterFactory.php b/database/factories/VoterFactory.php
index eab87dbb5..7255f40ae 100644
--- a/database/factories/VoterFactory.php
+++ b/database/factories/VoterFactory.php
@@ -16,8 +16,8 @@ class VoterFactory extends Factory
public function definition(): array
{
return [
- 'poll_id' => fn () => Poll::factory()->create()->id,
- 'user_id' => fn () => User::factory()->create()->id,
+ 'poll_id' => fn () => Poll::factory()->create()->id,
+ 'user_id' => fn () => User::factory()->create()->id,
'ip_address' => $this->faker->word(),
];
}
diff --git a/database/factories/WarningFactory.php b/database/factories/WarningFactory.php
index 282deee82..382f007e3 100644
--- a/database/factories/WarningFactory.php
+++ b/database/factories/WarningFactory.php
@@ -16,12 +16,12 @@ class WarningFactory extends Factory
public function definition(): array
{
return [
- 'user_id' => fn () => User::factory()->create()->id,
- 'warned_by' => fn () => User::factory()->create()->id,
- 'torrent' => fn () => Torrent::factory()->create()->id,
- 'reason' => $this->faker->text(),
+ 'user_id' => fn () => User::factory()->create()->id,
+ 'warned_by' => fn () => User::factory()->create()->id,
+ 'torrent' => fn () => Torrent::factory()->create()->id,
+ 'reason' => $this->faker->text(),
'expires_on' => $this->faker->dateTime(),
- 'active' => $this->faker->boolean(),
+ 'active' => $this->faker->boolean(),
'deleted_by' => fn () => User::factory()->create()->id,
];
}
diff --git a/database/factories/WishFactory.php b/database/factories/WishFactory.php
index 9e5d406bd..3d8698aa5 100644
--- a/database/factories/WishFactory.php
+++ b/database/factories/WishFactory.php
@@ -16,10 +16,10 @@ class WishFactory extends Factory
{
return [
'user_id' => fn () => User::factory()->create()->id,
- 'title' => $this->faker->word(),
- 'imdb' => $this->faker->word(),
- 'type' => $this->faker->word(),
- 'source' => $this->faker->word(),
+ 'title' => $this->faker->word(),
+ 'imdb' => $this->faker->word(),
+ 'type' => $this->faker->word(),
+ 'source' => $this->faker->word(),
];
}
}
diff --git a/database/migrations/2017_12_10_020753_create_articles_table.php b/database/migrations/2017_12_10_020753_create_articles_table.php
index d4b60c22e..83a8f68ae 100644
--- a/database/migrations/2017_12_10_020753_create_articles_table.php
+++ b/database/migrations/2017_12_10_020753_create_articles_table.php
@@ -14,7 +14,8 @@
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
-return new class() extends Migration {
+return new class() extends Migration
+{
/**
* Run the migrations.
*/
diff --git a/database/migrations/2017_12_10_020753_create_ban_table.php b/database/migrations/2017_12_10_020753_create_ban_table.php
index b08b28c9a..0b8808e22 100644
--- a/database/migrations/2017_12_10_020753_create_ban_table.php
+++ b/database/migrations/2017_12_10_020753_create_ban_table.php
@@ -14,7 +14,8 @@
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
-return new class() extends Migration {
+return new class() extends Migration
+{
/**
* Run the migrations.
*/
diff --git a/database/migrations/2017_12_10_020753_create_bon_exchange_table.php b/database/migrations/2017_12_10_020753_create_bon_exchange_table.php
index 41786f75d..c39f34b83 100644
--- a/database/migrations/2017_12_10_020753_create_bon_exchange_table.php
+++ b/database/migrations/2017_12_10_020753_create_bon_exchange_table.php
@@ -13,7 +13,8 @@
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
-return new class() extends Migration {
+return new class() extends Migration
+{
/**
* Run the migrations.
*/
diff --git a/database/migrations/2017_12_10_020753_create_bon_transactions_table.php b/database/migrations/2017_12_10_020753_create_bon_transactions_table.php
index 3874c1c7b..3e3a4b4fb 100644
--- a/database/migrations/2017_12_10_020753_create_bon_transactions_table.php
+++ b/database/migrations/2017_12_10_020753_create_bon_transactions_table.php
@@ -13,7 +13,8 @@
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
-return new class() extends Migration {
+return new class() extends Migration
+{
/**
* Run the migrations.
*/
diff --git a/database/migrations/2017_12_10_020753_create_bookmarks_table.php b/database/migrations/2017_12_10_020753_create_bookmarks_table.php
index 581e7e1de..166640cec 100644
--- a/database/migrations/2017_12_10_020753_create_bookmarks_table.php
+++ b/database/migrations/2017_12_10_020753_create_bookmarks_table.php
@@ -14,7 +14,8 @@
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
-return new class() extends Migration {
+return new class() extends Migration
+{
/**
* Run the migrations.
*/
diff --git a/database/migrations/2017_12_10_020753_create_categories_table.php b/database/migrations/2017_12_10_020753_create_categories_table.php
index be1ebad4e..ee43a0756 100644
--- a/database/migrations/2017_12_10_020753_create_categories_table.php
+++ b/database/migrations/2017_12_10_020753_create_categories_table.php
@@ -14,7 +14,8 @@
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
-return new class() extends Migration {
+return new class() extends Migration
+{
/**
* Run the migrations.
*/
diff --git a/database/migrations/2017_12_10_020753_create_clients_table.php b/database/migrations/2017_12_10_020753_create_clients_table.php
index 42ddc12b2..726b924d0 100644
--- a/database/migrations/2017_12_10_020753_create_clients_table.php
+++ b/database/migrations/2017_12_10_020753_create_clients_table.php
@@ -14,7 +14,8 @@
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
-return new class() extends Migration {
+return new class() extends Migration
+{
/**
* Run the migrations.
*/
diff --git a/database/migrations/2017_12_10_020753_create_comments_table.php b/database/migrations/2017_12_10_020753_create_comments_table.php
index 2ad4bf89e..127fd4997 100644
--- a/database/migrations/2017_12_10_020753_create_comments_table.php
+++ b/database/migrations/2017_12_10_020753_create_comments_table.php
@@ -14,7 +14,8 @@
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
-return new class() extends Migration {
+return new class() extends Migration
+{
/**
* Run the migrations.
*/
diff --git a/database/migrations/2017_12_10_020753_create_failed_login_attempts_table.php b/database/migrations/2017_12_10_020753_create_failed_login_attempts_table.php
index 866b26f07..e67fb638c 100644
--- a/database/migrations/2017_12_10_020753_create_failed_login_attempts_table.php
+++ b/database/migrations/2017_12_10_020753_create_failed_login_attempts_table.php
@@ -14,7 +14,8 @@
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
-return new class() extends Migration {
+return new class() extends Migration
+{
/**
* Run the migrations.
*/
diff --git a/database/migrations/2017_12_10_020753_create_featured_torrents_table.php b/database/migrations/2017_12_10_020753_create_featured_torrents_table.php
index edc40a312..6ffb04787 100644
--- a/database/migrations/2017_12_10_020753_create_featured_torrents_table.php
+++ b/database/migrations/2017_12_10_020753_create_featured_torrents_table.php
@@ -14,7 +14,8 @@
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
-return new class() extends Migration {
+return new class() extends Migration
+{
/**
* Run the migrations.
*/
diff --git a/database/migrations/2017_12_10_020753_create_files_table.php b/database/migrations/2017_12_10_020753_create_files_table.php
index 3a6d35a0b..9d10f4662 100644
--- a/database/migrations/2017_12_10_020753_create_files_table.php
+++ b/database/migrations/2017_12_10_020753_create_files_table.php
@@ -14,7 +14,8 @@
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
-return new class() extends Migration {
+return new class() extends Migration
+{
/**
* Run the migrations.
*/
diff --git a/database/migrations/2017_12_10_020753_create_follows_table.php b/database/migrations/2017_12_10_020753_create_follows_table.php
index a046138a3..410b86914 100644
--- a/database/migrations/2017_12_10_020753_create_follows_table.php
+++ b/database/migrations/2017_12_10_020753_create_follows_table.php
@@ -14,7 +14,8 @@
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
-return new class() extends Migration {
+return new class() extends Migration
+{
/**
* Run the migrations.
*/
diff --git a/database/migrations/2017_12_10_020753_create_forums_table.php b/database/migrations/2017_12_10_020753_create_forums_table.php
index dc85c6c0c..7f9d05f18 100644
--- a/database/migrations/2017_12_10_020753_create_forums_table.php
+++ b/database/migrations/2017_12_10_020753_create_forums_table.php
@@ -14,7 +14,8 @@
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
-return new class() extends Migration {
+return new class() extends Migration
+{
/**
* Run the migrations.
*/
diff --git a/database/migrations/2017_12_10_020753_create_graveyard_table.php b/database/migrations/2017_12_10_020753_create_graveyard_table.php
index ce6e73994..a3c524b33 100644
--- a/database/migrations/2017_12_10_020753_create_graveyard_table.php
+++ b/database/migrations/2017_12_10_020753_create_graveyard_table.php
@@ -14,7 +14,8 @@
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
-return new class() extends Migration {
+return new class() extends Migration
+{
/**
* Run the migrations.
*/
diff --git a/database/migrations/2017_12_10_020753_create_groups_table.php b/database/migrations/2017_12_10_020753_create_groups_table.php
index 7c34c3fba..903ed5ea0 100644
--- a/database/migrations/2017_12_10_020753_create_groups_table.php
+++ b/database/migrations/2017_12_10_020753_create_groups_table.php
@@ -14,7 +14,8 @@
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
-return new class() extends Migration {
+return new class() extends Migration
+{
/**
* Run the migrations.
*/
diff --git a/database/migrations/2017_12_10_020753_create_history_table.php b/database/migrations/2017_12_10_020753_create_history_table.php
index d612ffb1e..840d0b239 100644
--- a/database/migrations/2017_12_10_020753_create_history_table.php
+++ b/database/migrations/2017_12_10_020753_create_history_table.php
@@ -13,7 +13,8 @@
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
-return new class() extends Migration {
+return new class() extends Migration
+{
/**
* Run the migrations.
*/
diff --git a/database/migrations/2017_12_10_020753_create_invites_table.php b/database/migrations/2017_12_10_020753_create_invites_table.php
index 0c8544576..e5cfa249f 100644
--- a/database/migrations/2017_12_10_020753_create_invites_table.php
+++ b/database/migrations/2017_12_10_020753_create_invites_table.php
@@ -14,7 +14,8 @@
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
-return new class() extends Migration {
+return new class() extends Migration
+{
/**
* Run the migrations.
*/
diff --git a/database/migrations/2017_12_10_020753_create_jobs_table.php b/database/migrations/2017_12_10_020753_create_jobs_table.php
index 503837609..343f0e6bd 100644
--- a/database/migrations/2017_12_10_020753_create_jobs_table.php
+++ b/database/migrations/2017_12_10_020753_create_jobs_table.php
@@ -14,7 +14,8 @@
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
-return new class() extends Migration {
+return new class() extends Migration
+{
/**
* Run the migrations.
*/
diff --git a/database/migrations/2017_12_10_020753_create_likes_table.php b/database/migrations/2017_12_10_020753_create_likes_table.php
index 0e7f7e595..d797c2ae7 100644
--- a/database/migrations/2017_12_10_020753_create_likes_table.php
+++ b/database/migrations/2017_12_10_020753_create_likes_table.php
@@ -14,7 +14,8 @@
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
-return new class() extends Migration {
+return new class() extends Migration
+{
/**
* Run the migrations.
*/
diff --git a/database/migrations/2017_12_10_020753_create_log_activities_table.php b/database/migrations/2017_12_10_020753_create_log_activities_table.php
index f90eb00e8..0eb1a52f8 100644
--- a/database/migrations/2017_12_10_020753_create_log_activities_table.php
+++ b/database/migrations/2017_12_10_020753_create_log_activities_table.php
@@ -14,7 +14,8 @@
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
-return new class() extends Migration {
+return new class() extends Migration
+{
/**
* Run the migrations.
*/
diff --git a/database/migrations/2017_12_10_020753_create_notifications_table.php b/database/migrations/2017_12_10_020753_create_notifications_table.php
index 7cabda2c1..f2b2471c1 100644
--- a/database/migrations/2017_12_10_020753_create_notifications_table.php
+++ b/database/migrations/2017_12_10_020753_create_notifications_table.php
@@ -14,7 +14,8 @@
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
-return new class() extends Migration {
+return new class() extends Migration
+{
/**
* Run the migrations.
*/
diff --git a/database/migrations/2017_12_10_020753_create_options_table.php b/database/migrations/2017_12_10_020753_create_options_table.php
index bbfaf1225..a4a7b44a3 100644
--- a/database/migrations/2017_12_10_020753_create_options_table.php
+++ b/database/migrations/2017_12_10_020753_create_options_table.php
@@ -14,7 +14,8 @@
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
-return new class() extends Migration {
+return new class() extends Migration
+{
/**
* Run the migrations.
*/
diff --git a/database/migrations/2017_12_10_020753_create_pages_table.php b/database/migrations/2017_12_10_020753_create_pages_table.php
index 5f56ba92c..7f258bd8e 100644
--- a/database/migrations/2017_12_10_020753_create_pages_table.php
+++ b/database/migrations/2017_12_10_020753_create_pages_table.php
@@ -14,7 +14,8 @@
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
-return new class() extends Migration {
+return new class() extends Migration
+{
/**
* Run the migrations.
*/
diff --git a/database/migrations/2017_12_10_020753_create_password_resets_table.php b/database/migrations/2017_12_10_020753_create_password_resets_table.php
index 8a5cb4da1..e5fec0d00 100644
--- a/database/migrations/2017_12_10_020753_create_password_resets_table.php
+++ b/database/migrations/2017_12_10_020753_create_password_resets_table.php
@@ -14,7 +14,8 @@
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
-return new class() extends Migration {
+return new class() extends Migration
+{
/**
* Run the migrations.
*/
diff --git a/database/migrations/2017_12_10_020753_create_peers_table.php b/database/migrations/2017_12_10_020753_create_peers_table.php
index 541c53d68..d711101fe 100644
--- a/database/migrations/2017_12_10_020753_create_peers_table.php
+++ b/database/migrations/2017_12_10_020753_create_peers_table.php
@@ -13,7 +13,8 @@
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
-return new class() extends Migration {
+return new class() extends Migration
+{
/**
* Run the migrations.
*/
diff --git a/database/migrations/2017_12_10_020753_create_permissions_table.php b/database/migrations/2017_12_10_020753_create_permissions_table.php
index 5a5d3fe60..7f4451d25 100644
--- a/database/migrations/2017_12_10_020753_create_permissions_table.php
+++ b/database/migrations/2017_12_10_020753_create_permissions_table.php
@@ -14,7 +14,8 @@
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
-return new class() extends Migration {
+return new class() extends Migration
+{
/**
* Run the migrations.
*/
diff --git a/database/migrations/2017_12_10_020753_create_personal_freeleech_table.php b/database/migrations/2017_12_10_020753_create_personal_freeleech_table.php
index 0fa1b0b77..df644da09 100644
--- a/database/migrations/2017_12_10_020753_create_personal_freeleech_table.php
+++ b/database/migrations/2017_12_10_020753_create_personal_freeleech_table.php
@@ -14,7 +14,8 @@
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
-return new class() extends Migration {
+return new class() extends Migration
+{
/**
* Run the migrations.
*/
diff --git a/database/migrations/2017_12_10_020753_create_polls_table.php b/database/migrations/2017_12_10_020753_create_polls_table.php
index 08465d7de..5c51aeed0 100644
--- a/database/migrations/2017_12_10_020753_create_polls_table.php
+++ b/database/migrations/2017_12_10_020753_create_polls_table.php
@@ -14,7 +14,8 @@
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
-return new class() extends Migration {
+return new class() extends Migration
+{
/**
* Run the migrations.
*/
diff --git a/database/migrations/2017_12_10_020753_create_posts_table.php b/database/migrations/2017_12_10_020753_create_posts_table.php
index 647c4db69..058affc02 100644
--- a/database/migrations/2017_12_10_020753_create_posts_table.php
+++ b/database/migrations/2017_12_10_020753_create_posts_table.php
@@ -14,7 +14,8 @@
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
-return new class() extends Migration {
+return new class() extends Migration
+{
/**
* Run the migrations.
*/
diff --git a/database/migrations/2017_12_10_020753_create_private_messages_table.php b/database/migrations/2017_12_10_020753_create_private_messages_table.php
index 786c9e357..1b9a01534 100644
--- a/database/migrations/2017_12_10_020753_create_private_messages_table.php
+++ b/database/migrations/2017_12_10_020753_create_private_messages_table.php
@@ -14,7 +14,8 @@
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
-return new class() extends Migration {
+return new class() extends Migration
+{
/**
* Run the migrations.
*/
diff --git a/database/migrations/2017_12_10_020753_create_reports_table.php b/database/migrations/2017_12_10_020753_create_reports_table.php
index e3ebc0621..1b59c863a 100644
--- a/database/migrations/2017_12_10_020753_create_reports_table.php
+++ b/database/migrations/2017_12_10_020753_create_reports_table.php
@@ -14,7 +14,8 @@
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
-return new class() extends Migration {
+return new class() extends Migration
+{
/**
* Run the migrations.
*/
diff --git a/database/migrations/2017_12_10_020753_create_request_bounty_table.php b/database/migrations/2017_12_10_020753_create_request_bounty_table.php
index bbcda5cb2..359b4a10e 100644
--- a/database/migrations/2017_12_10_020753_create_request_bounty_table.php
+++ b/database/migrations/2017_12_10_020753_create_request_bounty_table.php
@@ -13,7 +13,8 @@
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
-return new class() extends Migration {
+return new class() extends Migration
+{
/**
* Run the migrations.
*/
diff --git a/database/migrations/2017_12_10_020753_create_request_claims_table.php b/database/migrations/2017_12_10_020753_create_request_claims_table.php
index 184d11fef..4553db709 100644
--- a/database/migrations/2017_12_10_020753_create_request_claims_table.php
+++ b/database/migrations/2017_12_10_020753_create_request_claims_table.php
@@ -14,7 +14,8 @@
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
-return new class() extends Migration {
+return new class() extends Migration
+{
/**
* Run the migrations.
*/
diff --git a/database/migrations/2017_12_10_020753_create_requests_table.php b/database/migrations/2017_12_10_020753_create_requests_table.php
index cf2eb086c..583deb2e2 100644
--- a/database/migrations/2017_12_10_020753_create_requests_table.php
+++ b/database/migrations/2017_12_10_020753_create_requests_table.php
@@ -13,7 +13,8 @@
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
-return new class() extends Migration {
+return new class() extends Migration
+{
/**
* Run the migrations.
*/
diff --git a/database/migrations/2017_12_10_020753_create_rss_table.php b/database/migrations/2017_12_10_020753_create_rss_table.php
index 6236d5c95..1babef4c2 100644
--- a/database/migrations/2017_12_10_020753_create_rss_table.php
+++ b/database/migrations/2017_12_10_020753_create_rss_table.php
@@ -13,7 +13,8 @@
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
-return new class() extends Migration {
+return new class() extends Migration
+{
/**
* Run the migrations.
*/
diff --git a/database/migrations/2017_12_10_020753_create_sessions_table.php b/database/migrations/2017_12_10_020753_create_sessions_table.php
index 7a08f2a6c..9cf3458a8 100644
--- a/database/migrations/2017_12_10_020753_create_sessions_table.php
+++ b/database/migrations/2017_12_10_020753_create_sessions_table.php
@@ -14,7 +14,8 @@
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
-return new class() extends Migration {
+return new class() extends Migration
+{
/**
* Run the migrations.
*/
diff --git a/database/migrations/2017_12_10_020753_create_shoutbox_table.php b/database/migrations/2017_12_10_020753_create_shoutbox_table.php
index 4e23c1c34..f17a10d0f 100644
--- a/database/migrations/2017_12_10_020753_create_shoutbox_table.php
+++ b/database/migrations/2017_12_10_020753_create_shoutbox_table.php
@@ -14,7 +14,8 @@
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
-return new class() extends Migration {
+return new class() extends Migration
+{
/**
* Run the migrations.
*/
diff --git a/database/migrations/2017_12_10_020753_create_tag_torrent_table.php b/database/migrations/2017_12_10_020753_create_tag_torrent_table.php
index 9284e218f..d08c27c0b 100644
--- a/database/migrations/2017_12_10_020753_create_tag_torrent_table.php
+++ b/database/migrations/2017_12_10_020753_create_tag_torrent_table.php
@@ -14,7 +14,8 @@
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
-return new class() extends Migration {
+return new class() extends Migration
+{
/**
* Run the migrations.
*/
diff --git a/database/migrations/2017_12_10_020753_create_tags_table.php b/database/migrations/2017_12_10_020753_create_tags_table.php
index 9cc49f4aa..635a7691d 100644
--- a/database/migrations/2017_12_10_020753_create_tags_table.php
+++ b/database/migrations/2017_12_10_020753_create_tags_table.php
@@ -14,7 +14,8 @@
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
-return new class() extends Migration {
+return new class() extends Migration
+{
/**
* Run the migrations.
*/
diff --git a/database/migrations/2017_12_10_020753_create_thanks_table.php b/database/migrations/2017_12_10_020753_create_thanks_table.php
index 02fea2a6c..2866c1efe 100644
--- a/database/migrations/2017_12_10_020753_create_thanks_table.php
+++ b/database/migrations/2017_12_10_020753_create_thanks_table.php
@@ -14,7 +14,8 @@
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
-return new class() extends Migration {
+return new class() extends Migration
+{
/**
* Run the migrations.
*/
diff --git a/database/migrations/2017_12_10_020753_create_topics_table.php b/database/migrations/2017_12_10_020753_create_topics_table.php
index 7dce0a29b..19df90119 100644
--- a/database/migrations/2017_12_10_020753_create_topics_table.php
+++ b/database/migrations/2017_12_10_020753_create_topics_table.php
@@ -14,7 +14,8 @@
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
-return new class() extends Migration {
+return new class() extends Migration
+{
/**
* Run the migrations.
*/
diff --git a/database/migrations/2017_12_10_020753_create_torrents_table.php b/database/migrations/2017_12_10_020753_create_torrents_table.php
index 5ee44dae2..51fbe2ea5 100644
--- a/database/migrations/2017_12_10_020753_create_torrents_table.php
+++ b/database/migrations/2017_12_10_020753_create_torrents_table.php
@@ -14,7 +14,8 @@
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
-return new class() extends Migration {
+return new class() extends Migration
+{
/**
* Run the migrations.
*/
diff --git a/database/migrations/2017_12_10_020753_create_types_table.php b/database/migrations/2017_12_10_020753_create_types_table.php
index aa567612f..1072f7382 100644
--- a/database/migrations/2017_12_10_020753_create_types_table.php
+++ b/database/migrations/2017_12_10_020753_create_types_table.php
@@ -14,7 +14,8 @@
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
-return new class() extends Migration {
+return new class() extends Migration
+{
/**
* Run the migrations.
*/
diff --git a/database/migrations/2017_12_10_020753_create_user_activations_table.php b/database/migrations/2017_12_10_020753_create_user_activations_table.php
index b8a02dc5c..f980e4f56 100644
--- a/database/migrations/2017_12_10_020753_create_user_activations_table.php
+++ b/database/migrations/2017_12_10_020753_create_user_activations_table.php
@@ -14,7 +14,8 @@
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
-return new class() extends Migration {
+return new class() extends Migration
+{
/**
* Run the migrations.
*/
diff --git a/database/migrations/2017_12_10_020753_create_user_notes_table.php b/database/migrations/2017_12_10_020753_create_user_notes_table.php
index ff8e984fb..ef48f19fd 100644
--- a/database/migrations/2017_12_10_020753_create_user_notes_table.php
+++ b/database/migrations/2017_12_10_020753_create_user_notes_table.php
@@ -14,7 +14,8 @@
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
-return new class() extends Migration {
+return new class() extends Migration
+{
/**
* Run the migrations.
*/
diff --git a/database/migrations/2017_12_10_020753_create_users_table.php b/database/migrations/2017_12_10_020753_create_users_table.php
index 8a36c16d0..bca76c382 100644
--- a/database/migrations/2017_12_10_020753_create_users_table.php
+++ b/database/migrations/2017_12_10_020753_create_users_table.php
@@ -14,7 +14,8 @@
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
-return new class() extends Migration {
+return new class() extends Migration
+{
/**
* Run the migrations.
*/
diff --git a/database/migrations/2017_12_10_020753_create_voters_table.php b/database/migrations/2017_12_10_020753_create_voters_table.php
index 64887bc58..3faa5092b 100644
--- a/database/migrations/2017_12_10_020753_create_voters_table.php
+++ b/database/migrations/2017_12_10_020753_create_voters_table.php
@@ -14,7 +14,8 @@
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
-return new class() extends Migration {
+return new class() extends Migration
+{
/**
* Run the migrations.
*/
diff --git a/database/migrations/2017_12_10_020753_create_warnings_table.php b/database/migrations/2017_12_10_020753_create_warnings_table.php
index 8933884e3..a58a895f9 100644
--- a/database/migrations/2017_12_10_020753_create_warnings_table.php
+++ b/database/migrations/2017_12_10_020753_create_warnings_table.php
@@ -13,7 +13,8 @@
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
-return new class() extends Migration {
+return new class() extends Migration
+{
/**
* Run the migrations.
*/
diff --git a/database/migrations/2017_12_10_020754_add_foreign_keys_to_articles_table.php b/database/migrations/2017_12_10_020754_add_foreign_keys_to_articles_table.php
index f2baac323..fefea0ee6 100644
--- a/database/migrations/2017_12_10_020754_add_foreign_keys_to_articles_table.php
+++ b/database/migrations/2017_12_10_020754_add_foreign_keys_to_articles_table.php
@@ -14,7 +14,8 @@
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
-return new class() extends Migration {
+return new class() extends Migration
+{
/**
* Run the migrations.
*/
diff --git a/database/migrations/2017_12_10_020754_add_foreign_keys_to_ban_table.php b/database/migrations/2017_12_10_020754_add_foreign_keys_to_ban_table.php
index 5941a260e..f7bf6f632 100644
--- a/database/migrations/2017_12_10_020754_add_foreign_keys_to_ban_table.php
+++ b/database/migrations/2017_12_10_020754_add_foreign_keys_to_ban_table.php
@@ -14,7 +14,8 @@
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
-return new class() extends Migration {
+return new class() extends Migration
+{
/**
* Run the migrations.
*/
diff --git a/database/migrations/2017_12_10_020754_add_foreign_keys_to_clients_table.php b/database/migrations/2017_12_10_020754_add_foreign_keys_to_clients_table.php
index d49fd4d94..536e687ea 100644
--- a/database/migrations/2017_12_10_020754_add_foreign_keys_to_clients_table.php
+++ b/database/migrations/2017_12_10_020754_add_foreign_keys_to_clients_table.php
@@ -14,7 +14,8 @@
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
-return new class() extends Migration {
+return new class() extends Migration
+{
/**
* Run the migrations.
*/
diff --git a/database/migrations/2017_12_10_020754_add_foreign_keys_to_comments_table.php b/database/migrations/2017_12_10_020754_add_foreign_keys_to_comments_table.php
index 1bf6104ba..c6ca219c7 100644
--- a/database/migrations/2017_12_10_020754_add_foreign_keys_to_comments_table.php
+++ b/database/migrations/2017_12_10_020754_add_foreign_keys_to_comments_table.php
@@ -14,7 +14,8 @@
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
-return new class() extends Migration {
+return new class() extends Migration
+{
/**
* Run the migrations.
*/
diff --git a/database/migrations/2017_12_10_020754_add_foreign_keys_to_history_table.php b/database/migrations/2017_12_10_020754_add_foreign_keys_to_history_table.php
index 990b83bd8..7b4aa44d9 100644
--- a/database/migrations/2017_12_10_020754_add_foreign_keys_to_history_table.php
+++ b/database/migrations/2017_12_10_020754_add_foreign_keys_to_history_table.php
@@ -14,7 +14,8 @@
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
-return new class() extends Migration {
+return new class() extends Migration
+{
/**
* Run the migrations.
*/
diff --git a/database/migrations/2017_12_10_020754_add_foreign_keys_to_peers_table.php b/database/migrations/2017_12_10_020754_add_foreign_keys_to_peers_table.php
index 879b5d590..2ff31c1ae 100644
--- a/database/migrations/2017_12_10_020754_add_foreign_keys_to_peers_table.php
+++ b/database/migrations/2017_12_10_020754_add_foreign_keys_to_peers_table.php
@@ -14,7 +14,8 @@
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
-return new class() extends Migration {
+return new class() extends Migration
+{
/**
* Run the migrations.
*/
diff --git a/database/migrations/2017_12_10_020754_add_foreign_keys_to_reports_table.php b/database/migrations/2017_12_10_020754_add_foreign_keys_to_reports_table.php
index 384426bc5..8634fd228 100644
--- a/database/migrations/2017_12_10_020754_add_foreign_keys_to_reports_table.php
+++ b/database/migrations/2017_12_10_020754_add_foreign_keys_to_reports_table.php
@@ -14,7 +14,8 @@
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
-return new class() extends Migration {
+return new class() extends Migration
+{
/**
* Run the migrations.
*/
diff --git a/database/migrations/2017_12_10_020754_add_foreign_keys_to_rss_table.php b/database/migrations/2017_12_10_020754_add_foreign_keys_to_rss_table.php
index fbe77a7d4..465fa134e 100644
--- a/database/migrations/2017_12_10_020754_add_foreign_keys_to_rss_table.php
+++ b/database/migrations/2017_12_10_020754_add_foreign_keys_to_rss_table.php
@@ -14,7 +14,8 @@
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
-return new class() extends Migration {
+return new class() extends Migration
+{
/**
* Run the migrations.
*/
diff --git a/database/migrations/2017_12_10_020754_add_foreign_keys_to_torrents_table.php b/database/migrations/2017_12_10_020754_add_foreign_keys_to_torrents_table.php
index 271c88778..2f9dc42c1 100644
--- a/database/migrations/2017_12_10_020754_add_foreign_keys_to_torrents_table.php
+++ b/database/migrations/2017_12_10_020754_add_foreign_keys_to_torrents_table.php
@@ -14,7 +14,8 @@
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
-return new class() extends Migration {
+return new class() extends Migration
+{
/**
* Run the migrations.
*/
diff --git a/database/migrations/2017_12_10_020754_add_foreign_keys_to_voters_table.php b/database/migrations/2017_12_10_020754_add_foreign_keys_to_voters_table.php
index 532ea9a98..395a1ad5d 100644
--- a/database/migrations/2017_12_10_020754_add_foreign_keys_to_voters_table.php
+++ b/database/migrations/2017_12_10_020754_add_foreign_keys_to_voters_table.php
@@ -14,7 +14,8 @@
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
-return new class() extends Migration {
+return new class() extends Migration
+{
/**
* Run the migrations.
*/
diff --git a/database/migrations/2017_12_10_020754_add_foreign_keys_to_warnings_table.php b/database/migrations/2017_12_10_020754_add_foreign_keys_to_warnings_table.php
index 4a07eaf4e..94ca6046e 100644
--- a/database/migrations/2017_12_10_020754_add_foreign_keys_to_warnings_table.php
+++ b/database/migrations/2017_12_10_020754_add_foreign_keys_to_warnings_table.php
@@ -14,7 +14,8 @@
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
-return new class() extends Migration {
+return new class() extends Migration
+{
/**
* Run the migrations.
*/
diff --git a/database/migrations/2017_12_21_123452_add_custom_css_to_users_table.php b/database/migrations/2017_12_21_123452_add_custom_css_to_users_table.php
index d995ac1d3..fdbc0dcc8 100644
--- a/database/migrations/2017_12_21_123452_add_custom_css_to_users_table.php
+++ b/database/migrations/2017_12_21_123452_add_custom_css_to_users_table.php
@@ -15,7 +15,8 @@ use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
-return new class() extends Migration {
+return new class() extends Migration
+{
/**
* Run the migrations.
*/
diff --git a/database/migrations/2017_12_27_000000_add_locale_column.php b/database/migrations/2017_12_27_000000_add_locale_column.php
index ca3f0db26..46301052a 100644
--- a/database/migrations/2017_12_27_000000_add_locale_column.php
+++ b/database/migrations/2017_12_27_000000_add_locale_column.php
@@ -14,7 +14,8 @@
use Illuminate\Database\Migrations\Migration;
use Illuminate\Support\Facades\Schema;
-return new class() extends Migration {
+return new class() extends Migration
+{
/**
* Run the migrations.
*/
diff --git a/database/migrations/2018_01_23_095412_add_implemented_to_topics_table.php b/database/migrations/2018_01_23_095412_add_implemented_to_topics_table.php
index 1ef6a7ef7..b405bdc19 100644
--- a/database/migrations/2018_01_23_095412_add_implemented_to_topics_table.php
+++ b/database/migrations/2018_01_23_095412_add_implemented_to_topics_table.php
@@ -15,7 +15,8 @@ use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
-return new class() extends Migration {
+return new class() extends Migration
+{
/**
* Run the migrations.
*/
diff --git a/database/migrations/2018_01_25_000000_add_twostep_to_users_table.php b/database/migrations/2018_01_25_000000_add_twostep_to_users_table.php
index 4efc8eea6..a15df961f 100644
--- a/database/migrations/2018_01_25_000000_add_twostep_to_users_table.php
+++ b/database/migrations/2018_01_25_000000_add_twostep_to_users_table.php
@@ -15,7 +15,8 @@ use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
-return new class() extends Migration {
+return new class() extends Migration
+{
/**
* Run the migrations.
*/
diff --git a/database/migrations/2018_02_06_142024_add_last_reply_at_to_topics_table.php b/database/migrations/2018_02_06_142024_add_last_reply_at_to_topics_table.php
index 9aa0683c0..fd52f44ed 100644
--- a/database/migrations/2018_02_06_142024_add_last_reply_at_to_topics_table.php
+++ b/database/migrations/2018_02_06_142024_add_last_reply_at_to_topics_table.php
@@ -15,7 +15,8 @@ use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
-return new class() extends Migration {
+return new class() extends Migration
+{
/**
* Run the migrations.
*/
diff --git a/database/migrations/2018_02_14_000000_add_is_internal_to_groups_table.php b/database/migrations/2018_02_14_000000_add_is_internal_to_groups_table.php
index 9cadb3775..ae9095bbb 100644
--- a/database/migrations/2018_02_14_000000_add_is_internal_to_groups_table.php
+++ b/database/migrations/2018_02_14_000000_add_is_internal_to_groups_table.php
@@ -15,7 +15,8 @@ use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
-return new class() extends Migration {
+return new class() extends Migration
+{
/**
* Run the migrations.
*/
diff --git a/database/migrations/2018_03_13_000000_add_position_to_categories_table.php b/database/migrations/2018_03_13_000000_add_position_to_categories_table.php
index c8a23b02e..2343dad1a 100644
--- a/database/migrations/2018_03_13_000000_add_position_to_categories_table.php
+++ b/database/migrations/2018_03_13_000000_add_position_to_categories_table.php
@@ -15,7 +15,8 @@ use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
-return new class() extends Migration {
+return new class() extends Migration
+{
/**
* Run the migrations.
*/
diff --git a/database/migrations/2018_03_21_000000_add_censor_to_users_table.php b/database/migrations/2018_03_21_000000_add_censor_to_users_table.php
index 7fae75978..53800105f 100644
--- a/database/migrations/2018_03_21_000000_add_censor_to_users_table.php
+++ b/database/migrations/2018_03_21_000000_add_censor_to_users_table.php
@@ -15,7 +15,8 @@ use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
-return new class() extends Migration {
+return new class() extends Migration
+{
/**
* Run the migrations.
*/
diff --git a/database/migrations/2018_03_27_000000_add_chat_hidden_to_users_table.php b/database/migrations/2018_03_27_000000_add_chat_hidden_to_users_table.php
index 9e6b2e1bf..e7d850109 100644
--- a/database/migrations/2018_03_27_000000_add_chat_hidden_to_users_table.php
+++ b/database/migrations/2018_03_27_000000_add_chat_hidden_to_users_table.php
@@ -15,7 +15,8 @@ use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
-return new class() extends Migration {
+return new class() extends Migration
+{
/**
* Run the migrations.
*/
diff --git a/database/migrations/2018_04_19_221542_create_failed_jobs_table.php b/database/migrations/2018_04_19_221542_create_failed_jobs_table.php
index 67d1a07df..95f652377 100644
--- a/database/migrations/2018_04_19_221542_create_failed_jobs_table.php
+++ b/database/migrations/2018_04_19_221542_create_failed_jobs_table.php
@@ -15,7 +15,8 @@ use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
-return new class() extends Migration {
+return new class() extends Migration
+{
/**
* Run the migrations.
*/
diff --git a/database/migrations/2018_04_21_181026_create_wishes_table.php b/database/migrations/2018_04_21_181026_create_wishes_table.php
index 1ff3c67e8..797a30159 100644
--- a/database/migrations/2018_04_21_181026_create_wishes_table.php
+++ b/database/migrations/2018_04_21_181026_create_wishes_table.php
@@ -14,7 +14,8 @@ use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
-return new class() extends Migration {
+return new class() extends Migration
+{
/**
* Run the migrations.
*/
diff --git a/database/migrations/2018_04_22_195516_alter_reports_table.php b/database/migrations/2018_04_22_195516_alter_reports_table.php
index d6c36ffd4..e8beb5204 100644
--- a/database/migrations/2018_04_22_195516_alter_reports_table.php
+++ b/database/migrations/2018_04_22_195516_alter_reports_table.php
@@ -15,7 +15,8 @@ use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
-return new class() extends Migration {
+return new class() extends Migration
+{
/**
* Run the migrations.
*/
diff --git a/database/migrations/2018_04_28_021651_alter_shoutbox_table.php b/database/migrations/2018_04_28_021651_alter_shoutbox_table.php
index dc159e168..3fa2454bf 100644
--- a/database/migrations/2018_04_28_021651_alter_shoutbox_table.php
+++ b/database/migrations/2018_04_28_021651_alter_shoutbox_table.php
@@ -15,7 +15,8 @@ use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
-return new class() extends Migration {
+return new class() extends Migration
+{
/**
* Run the migrations.
*/
diff --git a/database/migrations/2018_04_28_022305_create_chatrooms_table.php b/database/migrations/2018_04_28_022305_create_chatrooms_table.php
index ceb774062..30627fccd 100644
--- a/database/migrations/2018_04_28_022305_create_chatrooms_table.php
+++ b/database/migrations/2018_04_28_022305_create_chatrooms_table.php
@@ -15,7 +15,8 @@ use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
-return new class() extends Migration {
+return new class() extends Migration
+{
/**
* Run the migrations.
*/
diff --git a/database/migrations/2018_04_28_022344_add_chatroom_id_to_users_table.php b/database/migrations/2018_04_28_022344_add_chatroom_id_to_users_table.php
index 864c70f53..ed632298c 100644
--- a/database/migrations/2018_04_28_022344_add_chatroom_id_to_users_table.php
+++ b/database/migrations/2018_04_28_022344_add_chatroom_id_to_users_table.php
@@ -15,7 +15,8 @@ use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
-return new class() extends Migration {
+return new class() extends Migration
+{
/**
* Run the migrations.
*/
diff --git a/database/migrations/2018_05_04_101711_create_chat_statuses_table.php b/database/migrations/2018_05_04_101711_create_chat_statuses_table.php
index 525e1397b..edff1f15b 100644
--- a/database/migrations/2018_05_04_101711_create_chat_statuses_table.php
+++ b/database/migrations/2018_05_04_101711_create_chat_statuses_table.php
@@ -15,7 +15,8 @@ use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
-return new class() extends Migration {
+return new class() extends Migration
+{
/**
* Run the migrations.
*/
diff --git a/database/migrations/2018_05_04_102055_add_chat_status_id_to_users_table.php b/database/migrations/2018_05_04_102055_add_chat_status_id_to_users_table.php
index 3fc6bdb8b..7db381695 100644
--- a/database/migrations/2018_05_04_102055_add_chat_status_id_to_users_table.php
+++ b/database/migrations/2018_05_04_102055_add_chat_status_id_to_users_table.php
@@ -15,7 +15,8 @@ use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
-return new class() extends Migration {
+return new class() extends Migration
+{
/**
* Run the migrations.
*/
diff --git a/database/migrations/2018_05_07_183534_add_can_upload_to_groups_table.php b/database/migrations/2018_05_07_183534_add_can_upload_to_groups_table.php
index 9f2a2befe..bbb7d0d6a 100644
--- a/database/migrations/2018_05_07_183534_add_can_upload_to_groups_table.php
+++ b/database/migrations/2018_05_07_183534_add_can_upload_to_groups_table.php
@@ -15,7 +15,8 @@ use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
-return new class() extends Migration {
+return new class() extends Migration
+{
/**
* Run the migrations.
*/
diff --git a/database/migrations/2018_05_15_223339_add_receiver_id_column_to_messages_table.php b/database/migrations/2018_05_15_223339_add_receiver_id_column_to_messages_table.php
index a211c7d13..d10a5f7c6 100644
--- a/database/migrations/2018_05_15_223339_add_receiver_id_column_to_messages_table.php
+++ b/database/migrations/2018_05_15_223339_add_receiver_id_column_to_messages_table.php
@@ -15,7 +15,8 @@ use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
-return new class() extends Migration {
+return new class() extends Migration
+{
/**
* Run the migrations.
*/
diff --git a/database/migrations/2018_05_18_144651_rename_ban_table.php b/database/migrations/2018_05_18_144651_rename_ban_table.php
index c9a25c414..f13ebba29 100644
--- a/database/migrations/2018_05_18_144651_rename_ban_table.php
+++ b/database/migrations/2018_05_18_144651_rename_ban_table.php
@@ -14,7 +14,8 @@
use Illuminate\Database\Migrations\Migration;
use Illuminate\Support\Facades\Schema;
-return new class() extends Migration {
+return new class() extends Migration
+{
/**
* Run the migrations.
*/
diff --git a/database/migrations/2018_05_21_022459_add_torrent_layout_to_users_table.php b/database/migrations/2018_05_21_022459_add_torrent_layout_to_users_table.php
index c2f9748f0..c5858a216 100644
--- a/database/migrations/2018_05_21_022459_add_torrent_layout_to_users_table.php
+++ b/database/migrations/2018_05_21_022459_add_torrent_layout_to_users_table.php
@@ -15,7 +15,8 @@ use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
-return new class() extends Migration {
+return new class() extends Migration
+{
/**
* Run the migrations.
*/
diff --git a/database/migrations/2018_05_21_192858_alter_peers_table.php b/database/migrations/2018_05_21_192858_alter_peers_table.php
index bfaa716ea..91c79ee73 100644
--- a/database/migrations/2018_05_21_192858_alter_peers_table.php
+++ b/database/migrations/2018_05_21_192858_alter_peers_table.php
@@ -14,7 +14,8 @@
use Illuminate\Database\Migrations\Migration;
use Illuminate\Support\Facades\Schema;
-return new class() extends Migration {
+return new class() extends Migration
+{
/**
* Run the migrations.
*/
diff --git a/database/migrations/2018_05_22_224911_alter_private_messages_table.php b/database/migrations/2018_05_22_224911_alter_private_messages_table.php
index dc8e268d7..3bc17e236 100644
--- a/database/migrations/2018_05_22_224911_alter_private_messages_table.php
+++ b/database/migrations/2018_05_22_224911_alter_private_messages_table.php
@@ -14,7 +14,8 @@
use Illuminate\Database\Migrations\Migration;
use Illuminate\Support\Facades\Schema;
-return new class() extends Migration {
+return new class() extends Migration
+{
/**
* Run the migrations.
*/
diff --git a/database/migrations/2018_05_31_120936_create_albums_table.php b/database/migrations/2018_05_31_120936_create_albums_table.php
index ecf1fda9b..736cb5013 100644
--- a/database/migrations/2018_05_31_120936_create_albums_table.php
+++ b/database/migrations/2018_05_31_120936_create_albums_table.php
@@ -15,7 +15,8 @@ use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
-return new class() extends Migration {
+return new class() extends Migration
+{
public function up(): void
{
Schema::create('albums', function (Blueprint $table) {
diff --git a/database/migrations/2018_05_31_120955_create_images_table.php b/database/migrations/2018_05_31_120955_create_images_table.php
index b90e7479b..6519e7d1a 100644
--- a/database/migrations/2018_05_31_120955_create_images_table.php
+++ b/database/migrations/2018_05_31_120955_create_images_table.php
@@ -15,7 +15,8 @@ use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
-return new class() extends Migration {
+return new class() extends Migration
+{
public function up(): void
{
Schema::create('images', function (Blueprint $table) {
diff --git a/database/migrations/2018_06_11_110000_create_topic_subscriptions_table.php b/database/migrations/2018_06_11_110000_create_topic_subscriptions_table.php
index b6c552388..880a4f8e8 100644
--- a/database/migrations/2018_06_11_110000_create_topic_subscriptions_table.php
+++ b/database/migrations/2018_06_11_110000_create_topic_subscriptions_table.php
@@ -15,7 +15,8 @@ use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
-return new class() extends Migration {
+return new class() extends Migration
+{
/**
* Run the migrations.
*/
diff --git a/database/migrations/2018_07_12_114125_add_soft_deletes_to_warnings.php b/database/migrations/2018_07_12_114125_add_soft_deletes_to_warnings.php
index 159b433e5..2dcdf8855 100644
--- a/database/migrations/2018_07_12_114125_add_soft_deletes_to_warnings.php
+++ b/database/migrations/2018_07_12_114125_add_soft_deletes_to_warnings.php
@@ -15,7 +15,8 @@ use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
-return new class() extends Migration {
+return new class() extends Migration
+{
/**
* Run the migrations.
*/
diff --git a/database/migrations/2018_08_19_212319_create_git_updates_table.php b/database/migrations/2018_08_19_212319_create_git_updates_table.php
index 2517e01a7..3f22a0928 100644
--- a/database/migrations/2018_08_19_212319_create_git_updates_table.php
+++ b/database/migrations/2018_08_19_212319_create_git_updates_table.php
@@ -15,7 +15,8 @@ use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
-return new class() extends Migration {
+return new class() extends Migration
+{
/**
* Run the migrations.
*/
diff --git a/database/migrations/2018_09_08_153849_add_soft_deletes_to_user_table.php b/database/migrations/2018_09_08_153849_add_soft_deletes_to_user_table.php
index 20cc81552..e8da76c1c 100644
--- a/database/migrations/2018_09_08_153849_add_soft_deletes_to_user_table.php
+++ b/database/migrations/2018_09_08_153849_add_soft_deletes_to_user_table.php
@@ -15,7 +15,8 @@ use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
-return new class() extends Migration {
+return new class() extends Migration
+{
/**
* Run the migrations.
*/
diff --git a/database/migrations/2018_09_24_205852_add_internal_to_torrents_table.php b/database/migrations/2018_09_24_205852_add_internal_to_torrents_table.php
index 4d4617cdd..f0de87368 100644
--- a/database/migrations/2018_09_24_205852_add_internal_to_torrents_table.php
+++ b/database/migrations/2018_09_24_205852_add_internal_to_torrents_table.php
@@ -15,7 +15,8 @@ use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
-return new class() extends Migration {
+return new class() extends Migration
+{
/**
* Run the migrations.
*/
diff --git a/database/migrations/2018_09_29_163937_add_anon_to_requests_table.php b/database/migrations/2018_09_29_163937_add_anon_to_requests_table.php
index 1ad8f80a2..09b19ee46 100644
--- a/database/migrations/2018_09_29_163937_add_anon_to_requests_table.php
+++ b/database/migrations/2018_09_29_163937_add_anon_to_requests_table.php
@@ -15,7 +15,8 @@ use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
-return new class() extends Migration {
+return new class() extends Migration
+{
/**
* Run the migrations.
*/
diff --git a/database/migrations/2018_09_29_164525_add_anon_to_request_bounty_table.php b/database/migrations/2018_09_29_164525_add_anon_to_request_bounty_table.php
index b69654830..9aff5f008 100644
--- a/database/migrations/2018_09_29_164525_add_anon_to_request_bounty_table.php
+++ b/database/migrations/2018_09_29_164525_add_anon_to_request_bounty_table.php
@@ -15,7 +15,8 @@ use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
-return new class() extends Migration {
+return new class() extends Migration
+{
/**
* Run the migrations.
*/
diff --git a/database/migrations/2018_11_09_010002_add_immune_to_history_table.php b/database/migrations/2018_11_09_010002_add_immune_to_history_table.php
index 17f8fc9aa..63d40db4e 100644
--- a/database/migrations/2018_11_09_010002_add_immune_to_history_table.php
+++ b/database/migrations/2018_11_09_010002_add_immune_to_history_table.php
@@ -15,7 +15,8 @@ use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
-return new class() extends Migration {
+return new class() extends Migration
+{
/**
* Run the migrations.
*/
diff --git a/database/migrations/2018_12_03_024251_create_applications_table.php b/database/migrations/2018_12_03_024251_create_applications_table.php
index 2a0e171e3..780c1aeb6 100644
--- a/database/migrations/2018_12_03_024251_create_applications_table.php
+++ b/database/migrations/2018_12_03_024251_create_applications_table.php
@@ -15,7 +15,8 @@ use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
-return new class() extends Migration {
+return new class() extends Migration
+{
/**
* Run the migrations.
*/
diff --git a/database/migrations/2018_12_03_032701_create_application_image_proofs_table.php b/database/migrations/2018_12_03_032701_create_application_image_proofs_table.php
index 99e1ddf40..e46aaeb9d 100644
--- a/database/migrations/2018_12_03_032701_create_application_image_proofs_table.php
+++ b/database/migrations/2018_12_03_032701_create_application_image_proofs_table.php
@@ -15,7 +15,8 @@ use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
-return new class() extends Migration {
+return new class() extends Migration
+{
/**
* Run the migrations.
*/
diff --git a/database/migrations/2018_12_03_032712_create_application_url_proofs_table.php b/database/migrations/2018_12_03_032712_create_application_url_proofs_table.php
index 320d5b063..0765afc82 100644
--- a/database/migrations/2018_12_03_032712_create_application_url_proofs_table.php
+++ b/database/migrations/2018_12_03_032712_create_application_url_proofs_table.php
@@ -15,7 +15,8 @@ use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
-return new class() extends Migration {
+return new class() extends Migration
+{
/**
* Run the migrations.
*/
diff --git a/database/migrations/2018_12_06_012908_update_tag_torrent_table.php b/database/migrations/2018_12_06_012908_update_tag_torrent_table.php
index e3b42aa68..e82ea7a2d 100644
--- a/database/migrations/2018_12_06_012908_update_tag_torrent_table.php
+++ b/database/migrations/2018_12_06_012908_update_tag_torrent_table.php
@@ -15,7 +15,8 @@ use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
-return new class() extends Migration {
+return new class() extends Migration
+{
/**
* Run the migrations.
*/
diff --git a/database/migrations/2018_1_10_020753_create_freeleech_tokens_table.php b/database/migrations/2018_1_10_020753_create_freeleech_tokens_table.php
index 74ebf8217..607d2629f 100644
--- a/database/migrations/2018_1_10_020753_create_freeleech_tokens_table.php
+++ b/database/migrations/2018_1_10_020753_create_freeleech_tokens_table.php
@@ -14,7 +14,8 @@
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
-return new class() extends Migration {
+return new class() extends Migration
+{
/**
* Run the migrations.
*/
diff --git a/database/migrations/2018_1_20_070937_create_two_step_auth_table.php b/database/migrations/2018_1_20_070937_create_two_step_auth_table.php
index 05418d3ca..2560c2b0a 100644
--- a/database/migrations/2018_1_20_070937_create_two_step_auth_table.php
+++ b/database/migrations/2018_1_20_070937_create_two_step_auth_table.php
@@ -14,7 +14,8 @@
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
-return new class() extends Migration {
+return new class() extends Migration
+{
/**
* Run the migrations.
*/
diff --git a/database/migrations/2019_01_09_151754_alter_categories_table.php b/database/migrations/2019_01_09_151754_alter_categories_table.php
index 9d572a89f..4a8076223 100644
--- a/database/migrations/2019_01_09_151754_alter_categories_table.php
+++ b/database/migrations/2019_01_09_151754_alter_categories_table.php
@@ -15,7 +15,8 @@ use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
-return new class() extends Migration {
+return new class() extends Migration
+{
/**
* Run the migrations.
*/
diff --git a/database/migrations/2019_01_09_175336_add_incognito_to_groups_table.php b/database/migrations/2019_01_09_175336_add_incognito_to_groups_table.php
index 05ee9034b..5cead3bb5 100644
--- a/database/migrations/2019_01_09_175336_add_incognito_to_groups_table.php
+++ b/database/migrations/2019_01_09_175336_add_incognito_to_groups_table.php
@@ -15,7 +15,8 @@ use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
-return new class() extends Migration {
+return new class() extends Migration
+{
/**
* Run the migrations.
*/
diff --git a/database/migrations/2019_01_10_102512_add_request_id_to_reports_table.php b/database/migrations/2019_01_10_102512_add_request_id_to_reports_table.php
index 2025335db..e9cf27a6f 100644
--- a/database/migrations/2019_01_10_102512_add_request_id_to_reports_table.php
+++ b/database/migrations/2019_01_10_102512_add_request_id_to_reports_table.php
@@ -15,7 +15,8 @@ use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
-return new class() extends Migration {
+return new class() extends Migration
+{
/**
* Run the migrations.
*/
diff --git a/database/migrations/2019_01_11_001150_alter_rss_table.php b/database/migrations/2019_01_11_001150_alter_rss_table.php
index 043d880a1..7a45c3e95 100644
--- a/database/migrations/2019_01_11_001150_alter_rss_table.php
+++ b/database/migrations/2019_01_11_001150_alter_rss_table.php
@@ -15,7 +15,8 @@ use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
-return new class() extends Migration {
+return new class() extends Migration
+{
/**
* Run the migrations.
*/
diff --git a/database/migrations/2019_01_17_213210_add_torrent_filters_to_users_table.php b/database/migrations/2019_01_17_213210_add_torrent_filters_to_users_table.php
index 0858718e0..63de357e4 100644
--- a/database/migrations/2019_01_17_213210_add_torrent_filters_to_users_table.php
+++ b/database/migrations/2019_01_17_213210_add_torrent_filters_to_users_table.php
@@ -15,7 +15,8 @@ use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
-return new class() extends Migration {
+return new class() extends Migration
+{
/**
* Run the migrations.
*/
diff --git a/database/migrations/2019_01_23_034500_alter_bon_transactions_table.php b/database/migrations/2019_01_23_034500_alter_bon_transactions_table.php
index 364f74a50..5f5046323 100644
--- a/database/migrations/2019_01_23_034500_alter_bon_transactions_table.php
+++ b/database/migrations/2019_01_23_034500_alter_bon_transactions_table.php
@@ -15,7 +15,8 @@ use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
-return new class() extends Migration {
+return new class() extends Migration
+{
/**
* Run the migrations.
*/
diff --git a/database/migrations/2019_01_24_033802_rename_topic_subscriptions_table.php b/database/migrations/2019_01_24_033802_rename_topic_subscriptions_table.php
index 4ad6a791a..f99e2f572 100644
--- a/database/migrations/2019_01_24_033802_rename_topic_subscriptions_table.php
+++ b/database/migrations/2019_01_24_033802_rename_topic_subscriptions_table.php
@@ -15,7 +15,8 @@ use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
-return new class() extends Migration {
+return new class() extends Migration
+{
/**
* Run the migrations.
*/
diff --git a/database/migrations/2019_01_24_190220_alter_torrents_table.php b/database/migrations/2019_01_24_190220_alter_torrents_table.php
index fd95928e9..47fbbd6f1 100644
--- a/database/migrations/2019_01_24_190220_alter_torrents_table.php
+++ b/database/migrations/2019_01_24_190220_alter_torrents_table.php
@@ -15,7 +15,8 @@ use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
-return new class() extends Migration {
+return new class() extends Migration
+{
/**
* Run the migrations.
*/
diff --git a/database/migrations/2019_01_27_005216_create_user_privacy_table.php b/database/migrations/2019_01_27_005216_create_user_privacy_table.php
index fb17bd217..28676936e 100644
--- a/database/migrations/2019_01_27_005216_create_user_privacy_table.php
+++ b/database/migrations/2019_01_27_005216_create_user_privacy_table.php
@@ -15,7 +15,8 @@ use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
-return new class() extends Migration {
+return new class() extends Migration
+{
/**
* Run the migrations.
*/
diff --git a/database/migrations/2019_01_28_031842_alter_groups_table.php b/database/migrations/2019_01_28_031842_alter_groups_table.php
index fbba94ecd..df40654d3 100644
--- a/database/migrations/2019_01_28_031842_alter_groups_table.php
+++ b/database/migrations/2019_01_28_031842_alter_groups_table.php
@@ -15,7 +15,8 @@ use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
-return new class() extends Migration {
+return new class() extends Migration
+{
/**
* Run the migrations.
*/
diff --git a/database/migrations/2019_01_28_225127_create_user_notifications_table.php b/database/migrations/2019_01_28_225127_create_user_notifications_table.php
index 1f913dbea..fcde8aad9 100644
--- a/database/migrations/2019_01_28_225127_create_user_notifications_table.php
+++ b/database/migrations/2019_01_28_225127_create_user_notifications_table.php
@@ -15,7 +15,8 @@ use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
-return new class() extends Migration {
+return new class() extends Migration
+{
/**
* Run the migrations.
*/
diff --git a/database/migrations/2019_01_29_054104_alter_users_tables.php b/database/migrations/2019_01_29_054104_alter_users_tables.php
index 0607bcadb..27e6ce0ed 100644
--- a/database/migrations/2019_01_29_054104_alter_users_tables.php
+++ b/database/migrations/2019_01_29_054104_alter_users_tables.php
@@ -15,7 +15,8 @@ use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
-return new class() extends Migration {
+return new class() extends Migration
+{
/**
* Run the migrations.
*/
diff --git a/database/migrations/2019_02_04_041644_create_user_echoes_table.php b/database/migrations/2019_02_04_041644_create_user_echoes_table.php
index 0af598187..da5e60dfb 100644
--- a/database/migrations/2019_02_04_041644_create_user_echoes_table.php
+++ b/database/migrations/2019_02_04_041644_create_user_echoes_table.php
@@ -15,7 +15,8 @@ use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
-return new class() extends Migration {
+return new class() extends Migration
+{
/**
* Run the migrations.
*/
diff --git a/database/migrations/2019_02_05_220444_create_bots_table.php b/database/migrations/2019_02_05_220444_create_bots_table.php
index 3582eef1f..f7f4df9c0 100644
--- a/database/migrations/2019_02_05_220444_create_bots_table.php
+++ b/database/migrations/2019_02_05_220444_create_bots_table.php
@@ -15,7 +15,8 @@ use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
-return new class() extends Migration {
+return new class() extends Migration
+{
/**
* Run the migrations.
*/
diff --git a/database/migrations/2019_02_06_005248_add_bot_id_to_messages_table.php b/database/migrations/2019_02_06_005248_add_bot_id_to_messages_table.php
index e92756eb3..333a3a941 100644
--- a/database/migrations/2019_02_06_005248_add_bot_id_to_messages_table.php
+++ b/database/migrations/2019_02_06_005248_add_bot_id_to_messages_table.php
@@ -15,7 +15,8 @@ use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
-return new class() extends Migration {
+return new class() extends Migration
+{
/**
* Run the migrations.
*/
diff --git a/database/migrations/2019_02_06_075938_create_bot_transactions_table.php b/database/migrations/2019_02_06_075938_create_bot_transactions_table.php
index 9cbdbb6da..478c25926 100644
--- a/database/migrations/2019_02_06_075938_create_bot_transactions_table.php
+++ b/database/migrations/2019_02_06_075938_create_bot_transactions_table.php
@@ -15,7 +15,8 @@ use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
-return new class() extends Migration {
+return new class() extends Migration
+{
/**
* Run the migrations.
*/
diff --git a/database/migrations/2019_02_07_022409_create_user_audibles_table.php b/database/migrations/2019_02_07_022409_create_user_audibles_table.php
index a1973ebb0..e76c2e28c 100644
--- a/database/migrations/2019_02_07_022409_create_user_audibles_table.php
+++ b/database/migrations/2019_02_07_022409_create_user_audibles_table.php
@@ -15,7 +15,8 @@ use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
-return new class() extends Migration {
+return new class() extends Migration
+{
/**
* Run the migrations.
*/
diff --git a/database/migrations/2019_02_10_010213_fix_chat_related_tables.php b/database/migrations/2019_02_10_010213_fix_chat_related_tables.php
index 266ca1306..fd432bce2 100644
--- a/database/migrations/2019_02_10_010213_fix_chat_related_tables.php
+++ b/database/migrations/2019_02_10_010213_fix_chat_related_tables.php
@@ -15,7 +15,8 @@ use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
-return new class() extends Migration {
+return new class() extends Migration
+{
/**
* Run the migrations.
*/
diff --git a/database/migrations/2019_02_21_133950_add_is_owner_to_groups_table.php b/database/migrations/2019_02_21_133950_add_is_owner_to_groups_table.php
index 708267c45..a2ac41600 100644
--- a/database/migrations/2019_02_21_133950_add_is_owner_to_groups_table.php
+++ b/database/migrations/2019_02_21_133950_add_is_owner_to_groups_table.php
@@ -15,7 +15,8 @@ use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
-return new class() extends Migration {
+return new class() extends Migration
+{
/**
* Run the migrations.
*/
diff --git a/database/migrations/2019_02_21_221047_add_request_to_user_privacy_table.php b/database/migrations/2019_02_21_221047_add_request_to_user_privacy_table.php
index be95bbfd0..c1265d3d8 100644
--- a/database/migrations/2019_02_21_221047_add_request_to_user_privacy_table.php
+++ b/database/migrations/2019_02_21_221047_add_request_to_user_privacy_table.php
@@ -15,7 +15,8 @@ use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
-return new class() extends Migration {
+return new class() extends Migration
+{
/**
* Run the migrations.
*/
diff --git a/database/migrations/2019_03_20_214306_alter_users_table.php b/database/migrations/2019_03_20_214306_alter_users_table.php
index e8f9d8864..3343249c9 100644
--- a/database/migrations/2019_03_20_214306_alter_users_table.php
+++ b/database/migrations/2019_03_20_214306_alter_users_table.php
@@ -15,7 +15,8 @@ use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
-return new class() extends Migration {
+return new class() extends Migration
+{
/**
* Run the migrations.
*/
diff --git a/database/migrations/2019_06_17_172554_add_last_action_to_users_table.php b/database/migrations/2019_06_17_172554_add_last_action_to_users_table.php
index 8c38daa32..e0ed0bd2c 100644
--- a/database/migrations/2019_06_17_172554_add_last_action_to_users_table.php
+++ b/database/migrations/2019_06_17_172554_add_last_action_to_users_table.php
@@ -15,7 +15,8 @@ use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
-return new class() extends Migration {
+return new class() extends Migration
+{
/**
* Run the migrations.
*/
diff --git a/database/migrations/2019_07_09_225645_add_release_year_to_torrents_table.php b/database/migrations/2019_07_09_225645_add_release_year_to_torrents_table.php
index 916ed2a7f..572a192cb 100644
--- a/database/migrations/2019_07_09_225645_add_release_year_to_torrents_table.php
+++ b/database/migrations/2019_07_09_225645_add_release_year_to_torrents_table.php
@@ -15,7 +15,8 @@ use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
-return new class() extends Migration {
+return new class() extends Migration
+{
/**
* Run the migrations.
*/
diff --git a/database/migrations/2019_07_30_210848_create_tv_table.php b/database/migrations/2019_07_30_210848_create_tv_table.php
index 895b32ffb..e225d48af 100644
--- a/database/migrations/2019_07_30_210848_create_tv_table.php
+++ b/database/migrations/2019_07_30_210848_create_tv_table.php
@@ -4,7 +4,8 @@ use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
-return new class() extends Migration {
+return new class() extends Migration
+{
/**
* Run the migrations.
*/
diff --git a/database/migrations/2019_07_30_210849_create_seasons_table.php b/database/migrations/2019_07_30_210849_create_seasons_table.php
index f6c4b702a..3a0de491e 100644
--- a/database/migrations/2019_07_30_210849_create_seasons_table.php
+++ b/database/migrations/2019_07_30_210849_create_seasons_table.php
@@ -4,7 +4,8 @@ use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
-return new class() extends Migration {
+return new class() extends Migration
+{
/**
* Run the migrations.
*/
diff --git a/database/migrations/2019_07_30_210850_create_cast_table.php b/database/migrations/2019_07_30_210850_create_cast_table.php
index f53652aa1..7f44124a7 100644
--- a/database/migrations/2019_07_30_210850_create_cast_table.php
+++ b/database/migrations/2019_07_30_210850_create_cast_table.php
@@ -4,7 +4,8 @@ use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
-return new class() extends Migration {
+return new class() extends Migration
+{
/**
* Run the migrations.
*/
diff --git a/database/migrations/2019_07_30_210850_create_collection_table.php b/database/migrations/2019_07_30_210850_create_collection_table.php
index d422c9196..72c0b27ab 100644
--- a/database/migrations/2019_07_30_210850_create_collection_table.php
+++ b/database/migrations/2019_07_30_210850_create_collection_table.php
@@ -4,7 +4,8 @@ use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
-return new class() extends Migration {
+return new class() extends Migration
+{
/**
* Run the migrations.
*/
diff --git a/database/migrations/2019_07_30_210850_create_companies_table.php b/database/migrations/2019_07_30_210850_create_companies_table.php
index 5024eff10..9011083bb 100644
--- a/database/migrations/2019_07_30_210850_create_companies_table.php
+++ b/database/migrations/2019_07_30_210850_create_companies_table.php
@@ -4,7 +4,8 @@ use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
-return new class() extends Migration {
+return new class() extends Migration
+{
/**
* Run the migrations.
*/
diff --git a/database/migrations/2019_07_30_210850_create_episodes_table.php b/database/migrations/2019_07_30_210850_create_episodes_table.php
index af89ba0a4..f0ec880fb 100644
--- a/database/migrations/2019_07_30_210850_create_episodes_table.php
+++ b/database/migrations/2019_07_30_210850_create_episodes_table.php
@@ -4,7 +4,8 @@ use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
-return new class() extends Migration {
+return new class() extends Migration
+{
/**
* Run the migrations.
*/
diff --git a/database/migrations/2019_07_30_210850_create_genres_table.php b/database/migrations/2019_07_30_210850_create_genres_table.php
index ae6fd513a..52883710c 100644
--- a/database/migrations/2019_07_30_210850_create_genres_table.php
+++ b/database/migrations/2019_07_30_210850_create_genres_table.php
@@ -4,7 +4,8 @@ use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
-return new class() extends Migration {
+return new class() extends Migration
+{
/**
* Run the migrations.
*/
diff --git a/database/migrations/2019_07_30_210850_create_movie_table.php b/database/migrations/2019_07_30_210850_create_movie_table.php
index c5b6c5d8c..ca498fe97 100644
--- a/database/migrations/2019_07_30_210850_create_movie_table.php
+++ b/database/migrations/2019_07_30_210850_create_movie_table.php
@@ -4,7 +4,8 @@ use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
-return new class() extends Migration {
+return new class() extends Migration
+{
/**
* Run the migrations.
*/
diff --git a/database/migrations/2019_07_30_210850_create_networks_table.php b/database/migrations/2019_07_30_210850_create_networks_table.php
index 2f95f2d3a..4cd831bcb 100644
--- a/database/migrations/2019_07_30_210850_create_networks_table.php
+++ b/database/migrations/2019_07_30_210850_create_networks_table.php
@@ -4,7 +4,8 @@ use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
-return new class() extends Migration {
+return new class() extends Migration
+{
/**
* Run the migrations.
*/
diff --git a/database/migrations/2019_07_30_210850_create_person_table.php b/database/migrations/2019_07_30_210850_create_person_table.php
index 68809b30e..ed92b8b5f 100644
--- a/database/migrations/2019_07_30_210850_create_person_table.php
+++ b/database/migrations/2019_07_30_210850_create_person_table.php
@@ -4,7 +4,8 @@ use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
-return new class() extends Migration {
+return new class() extends Migration
+{
/**
* Run the migrations.
*/
diff --git a/database/migrations/2019_07_31_024816_alter_requests_table.php b/database/migrations/2019_07_31_024816_alter_requests_table.php
index 5e90ead8e..994ebc481 100644
--- a/database/migrations/2019_07_31_024816_alter_requests_table.php
+++ b/database/migrations/2019_07_31_024816_alter_requests_table.php
@@ -15,7 +15,8 @@ use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
-return new class() extends Migration {
+return new class() extends Migration
+{
/**
* Run the migrations.
*/
diff --git a/database/migrations/2019_07_31_210850_create_cast_episode_table.php b/database/migrations/2019_07_31_210850_create_cast_episode_table.php
index 25054cb13..d9f61d0e6 100644
--- a/database/migrations/2019_07_31_210850_create_cast_episode_table.php
+++ b/database/migrations/2019_07_31_210850_create_cast_episode_table.php
@@ -4,7 +4,8 @@ use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
-return new class() extends Migration {
+return new class() extends Migration
+{
/**
* Run the migrations.
*/
diff --git a/database/migrations/2019_07_31_210850_create_cast_movie_table.php b/database/migrations/2019_07_31_210850_create_cast_movie_table.php
index cd83dc0c5..190728caa 100644
--- a/database/migrations/2019_07_31_210850_create_cast_movie_table.php
+++ b/database/migrations/2019_07_31_210850_create_cast_movie_table.php
@@ -4,7 +4,8 @@ use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
-return new class() extends Migration {
+return new class() extends Migration
+{
/**
* Run the migrations.
*/
diff --git a/database/migrations/2019_07_31_210850_create_cast_season_table.php b/database/migrations/2019_07_31_210850_create_cast_season_table.php
index 0be2c1c49..103fe0564 100644
--- a/database/migrations/2019_07_31_210850_create_cast_season_table.php
+++ b/database/migrations/2019_07_31_210850_create_cast_season_table.php
@@ -4,7 +4,8 @@ use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
-return new class() extends Migration {
+return new class() extends Migration
+{
/**
* Run the migrations.
*/
diff --git a/database/migrations/2019_07_31_210850_create_cast_tv_table.php b/database/migrations/2019_07_31_210850_create_cast_tv_table.php
index 689824881..b6e2219b8 100644
--- a/database/migrations/2019_07_31_210850_create_cast_tv_table.php
+++ b/database/migrations/2019_07_31_210850_create_cast_tv_table.php
@@ -4,7 +4,8 @@ use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
-return new class() extends Migration {
+return new class() extends Migration
+{
/**
* Run the migrations.
*/
diff --git a/database/migrations/2019_07_31_210850_create_company_tv_table.php b/database/migrations/2019_07_31_210850_create_company_tv_table.php
index ac4d44b1f..9a710ade7 100644
--- a/database/migrations/2019_07_31_210850_create_company_tv_table.php
+++ b/database/migrations/2019_07_31_210850_create_company_tv_table.php
@@ -4,7 +4,8 @@ use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
-return new class() extends Migration {
+return new class() extends Migration
+{
/**
* Run the migrations.
*/
diff --git a/database/migrations/2019_07_31_210850_create_crew_episode_table.php b/database/migrations/2019_07_31_210850_create_crew_episode_table.php
index e35fc3241..9ccb15383 100644
--- a/database/migrations/2019_07_31_210850_create_crew_episode_table.php
+++ b/database/migrations/2019_07_31_210850_create_crew_episode_table.php
@@ -4,7 +4,8 @@ use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
-return new class() extends Migration {
+return new class() extends Migration
+{
/**
* Run the migrations.
*/
diff --git a/database/migrations/2019_07_31_210850_create_crew_movie_table.php b/database/migrations/2019_07_31_210850_create_crew_movie_table.php
index f2c0b1502..613150769 100644
--- a/database/migrations/2019_07_31_210850_create_crew_movie_table.php
+++ b/database/migrations/2019_07_31_210850_create_crew_movie_table.php
@@ -4,7 +4,8 @@ use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
-return new class() extends Migration {
+return new class() extends Migration
+{
/**
* Run the migrations.
*/
diff --git a/database/migrations/2019_07_31_210850_create_crew_season_table.php b/database/migrations/2019_07_31_210850_create_crew_season_table.php
index 1267a36fa..9726f63c9 100644
--- a/database/migrations/2019_07_31_210850_create_crew_season_table.php
+++ b/database/migrations/2019_07_31_210850_create_crew_season_table.php
@@ -4,7 +4,8 @@ use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
-return new class() extends Migration {
+return new class() extends Migration
+{
/**
* Run the migrations.
*/
diff --git a/database/migrations/2019_07_31_210850_create_crew_tv_table.php b/database/migrations/2019_07_31_210850_create_crew_tv_table.php
index 539eab55e..b07d19f90 100644
--- a/database/migrations/2019_07_31_210850_create_crew_tv_table.php
+++ b/database/migrations/2019_07_31_210850_create_crew_tv_table.php
@@ -4,7 +4,8 @@ use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
-return new class() extends Migration {
+return new class() extends Migration
+{
/**
* Run the migrations.
*/
diff --git a/database/migrations/2019_07_31_210850_create_episode_guest_star_table.php b/database/migrations/2019_07_31_210850_create_episode_guest_star_table.php
index 6fe66106c..f2071fef7 100644
--- a/database/migrations/2019_07_31_210850_create_episode_guest_star_table.php
+++ b/database/migrations/2019_07_31_210850_create_episode_guest_star_table.php
@@ -4,7 +4,8 @@ use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
-return new class() extends Migration {
+return new class() extends Migration
+{
/**
* Run the migrations.
*/
diff --git a/database/migrations/2019_07_31_210850_create_episode_person_table.php b/database/migrations/2019_07_31_210850_create_episode_person_table.php
index 664635744..e97b42cfd 100644
--- a/database/migrations/2019_07_31_210850_create_episode_person_table.php
+++ b/database/migrations/2019_07_31_210850_create_episode_person_table.php
@@ -4,7 +4,8 @@ use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
-return new class() extends Migration {
+return new class() extends Migration
+{
/**
* Run the migrations.
*/
diff --git a/database/migrations/2019_07_31_210850_create_genre_tv_table.php b/database/migrations/2019_07_31_210850_create_genre_tv_table.php
index 6d14d213c..bfee08602 100644
--- a/database/migrations/2019_07_31_210850_create_genre_tv_table.php
+++ b/database/migrations/2019_07_31_210850_create_genre_tv_table.php
@@ -4,7 +4,8 @@ use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
-return new class() extends Migration {
+return new class() extends Migration
+{
/**
* Run the migrations.
*/
diff --git a/database/migrations/2019_07_31_210850_create_network_tv_table.php b/database/migrations/2019_07_31_210850_create_network_tv_table.php
index 14567e963..5b4cf2db6 100644
--- a/database/migrations/2019_07_31_210850_create_network_tv_table.php
+++ b/database/migrations/2019_07_31_210850_create_network_tv_table.php
@@ -4,7 +4,8 @@ use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
-return new class() extends Migration {
+return new class() extends Migration
+{
/**
* Run the migrations.
*/
diff --git a/database/migrations/2019_07_31_210850_create_person_movie_table.php b/database/migrations/2019_07_31_210850_create_person_movie_table.php
index ea0aafa53..4a6d720a6 100644
--- a/database/migrations/2019_07_31_210850_create_person_movie_table.php
+++ b/database/migrations/2019_07_31_210850_create_person_movie_table.php
@@ -4,7 +4,8 @@ use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
-return new class() extends Migration {
+return new class() extends Migration
+{
/**
* Run the migrations.
*/
diff --git a/database/migrations/2019_07_31_210850_create_person_tv_table.php b/database/migrations/2019_07_31_210850_create_person_tv_table.php
index 3d4833dc8..c614a587e 100644
--- a/database/migrations/2019_07_31_210850_create_person_tv_table.php
+++ b/database/migrations/2019_07_31_210850_create_person_tv_table.php
@@ -4,7 +4,8 @@ use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
-return new class() extends Migration {
+return new class() extends Migration
+{
/**
* Run the migrations.
*/
diff --git a/database/migrations/2019_07_31_210851_create_collection_movie_table.php b/database/migrations/2019_07_31_210851_create_collection_movie_table.php
index 312fd5979..fe02cda8a 100644
--- a/database/migrations/2019_07_31_210851_create_collection_movie_table.php
+++ b/database/migrations/2019_07_31_210851_create_collection_movie_table.php
@@ -4,7 +4,8 @@ use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
-return new class() extends Migration {
+return new class() extends Migration
+{
/**
* Run the migrations.
*/
diff --git a/database/migrations/2019_07_31_210851_create_company_movie_table.php b/database/migrations/2019_07_31_210851_create_company_movie_table.php
index 17b4ef2c9..0155cbead 100644
--- a/database/migrations/2019_07_31_210851_create_company_movie_table.php
+++ b/database/migrations/2019_07_31_210851_create_company_movie_table.php
@@ -4,7 +4,8 @@ use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
-return new class() extends Migration {
+return new class() extends Migration
+{
/**
* Run the migrations.
*/
diff --git a/database/migrations/2019_07_31_210851_create_genre_movie_table.php b/database/migrations/2019_07_31_210851_create_genre_movie_table.php
index 5622edad5..c2f46a3e9 100644
--- a/database/migrations/2019_07_31_210851_create_genre_movie_table.php
+++ b/database/migrations/2019_07_31_210851_create_genre_movie_table.php
@@ -4,7 +4,8 @@ use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
-return new class() extends Migration {
+return new class() extends Migration
+{
/**
* Run the migrations.
*/
diff --git a/database/migrations/2019_07_31_210851_create_person_season_table.php b/database/migrations/2019_07_31_210851_create_person_season_table.php
index 24ad8163c..6387fa845 100644
--- a/database/migrations/2019_07_31_210851_create_person_season_table.php
+++ b/database/migrations/2019_07_31_210851_create_person_season_table.php
@@ -4,7 +4,8 @@ use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
-return new class() extends Migration {
+return new class() extends Migration
+{
/**
* Run the migrations.
*/
diff --git a/database/migrations/2019_09_22_204439_create_playlists_table.php b/database/migrations/2019_09_22_204439_create_playlists_table.php
index b2402011c..30471978f 100644
--- a/database/migrations/2019_09_22_204439_create_playlists_table.php
+++ b/database/migrations/2019_09_22_204439_create_playlists_table.php
@@ -15,7 +15,8 @@ use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
-return new class() extends Migration {
+return new class() extends Migration
+{
/**
* Run the migrations.
*/
diff --git a/database/migrations/2019_09_22_204613_create_playlist_torrents_table.php b/database/migrations/2019_09_22_204613_create_playlist_torrents_table.php
index e5b7c724f..ffda4ffc0 100644
--- a/database/migrations/2019_09_22_204613_create_playlist_torrents_table.php
+++ b/database/migrations/2019_09_22_204613_create_playlist_torrents_table.php
@@ -15,7 +15,8 @@ use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
-return new class() extends Migration {
+return new class() extends Migration
+{
/**
* Run the migrations.
*/
diff --git a/database/migrations/2019_09_24_160123_alter_comments_table.php b/database/migrations/2019_09_24_160123_alter_comments_table.php
index 2bcd735d0..c91377a31 100644
--- a/database/migrations/2019_09_24_160123_alter_comments_table.php
+++ b/database/migrations/2019_09_24_160123_alter_comments_table.php
@@ -15,7 +15,8 @@ use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
-return new class() extends Migration {
+return new class() extends Migration
+{
/**
* Run the migrations.
*/
diff --git a/database/migrations/2019_11_05_233558_create_audits_table.php b/database/migrations/2019_11_05_233558_create_audits_table.php
index fdc61a56a..16fc60c6e 100644
--- a/database/migrations/2019_11_05_233558_create_audits_table.php
+++ b/database/migrations/2019_11_05_233558_create_audits_table.php
@@ -15,7 +15,8 @@ use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
-return new class() extends Migration {
+return new class() extends Migration
+{
/**
* Run the migrations.
*/
diff --git a/database/migrations/2019_11_27_025048_add_api_token_field_users.php b/database/migrations/2019_11_27_025048_add_api_token_field_users.php
index eb578fa9b..0d8a92888 100644
--- a/database/migrations/2019_11_27_025048_add_api_token_field_users.php
+++ b/database/migrations/2019_11_27_025048_add_api_token_field_users.php
@@ -15,7 +15,8 @@ use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
-return new class() extends Migration {
+return new class() extends Migration
+{
/**
* Run the migrations.
*/
diff --git a/database/migrations/2019_12_17_030908_create_keywords_table.php b/database/migrations/2019_12_17_030908_create_keywords_table.php
index 40a22090b..4059ebd7e 100644
--- a/database/migrations/2019_12_17_030908_create_keywords_table.php
+++ b/database/migrations/2019_12_17_030908_create_keywords_table.php
@@ -4,7 +4,8 @@ use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
-return new class() extends Migration {
+return new class() extends Migration
+{
/**
* Run the migrations.
*/
diff --git a/database/migrations/2020_01_02_203432_bdinfo_to_torrents_table.php b/database/migrations/2020_01_02_203432_bdinfo_to_torrents_table.php
index bedde2a7b..59cb045c8 100644
--- a/database/migrations/2020_01_02_203432_bdinfo_to_torrents_table.php
+++ b/database/migrations/2020_01_02_203432_bdinfo_to_torrents_table.php
@@ -4,7 +4,8 @@ use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
-return new class() extends Migration {
+return new class() extends Migration
+{
/**
* Run the migrations.
*/
diff --git a/database/migrations/2020_02_14_185120_add_foreign_key_to_options_table.php b/database/migrations/2020_02_14_185120_add_foreign_key_to_options_table.php
index 6bca1a26b..3c5dbaf1a 100644
--- a/database/migrations/2020_02_14_185120_add_foreign_key_to_options_table.php
+++ b/database/migrations/2020_02_14_185120_add_foreign_key_to_options_table.php
@@ -4,7 +4,8 @@ use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
-return new class() extends Migration {
+return new class() extends Migration
+{
/**
* Run the migrations.
*/
diff --git a/database/migrations/2020_02_14_202935_drop_ip_checking_in_polls_table.php b/database/migrations/2020_02_14_202935_drop_ip_checking_in_polls_table.php
index 831947356..f0c198495 100644
--- a/database/migrations/2020_02_14_202935_drop_ip_checking_in_polls_table.php
+++ b/database/migrations/2020_02_14_202935_drop_ip_checking_in_polls_table.php
@@ -4,7 +4,8 @@ use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
-return new class() extends Migration {
+return new class() extends Migration
+{
/**
* Run the migrations.
*/
diff --git a/database/migrations/2020_02_14_203001_drop_ip_address_in_voters_table.php b/database/migrations/2020_02_14_203001_drop_ip_address_in_voters_table.php
index 306054326..e0a3f50d8 100644
--- a/database/migrations/2020_02_14_203001_drop_ip_address_in_voters_table.php
+++ b/database/migrations/2020_02_14_203001_drop_ip_address_in_voters_table.php
@@ -4,7 +4,8 @@ use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
-return new class() extends Migration {
+return new class() extends Migration
+{
/**
* Run the migrations.
*/
diff --git a/database/migrations/2020_03_02_031656_update_comments_table.php b/database/migrations/2020_03_02_031656_update_comments_table.php
index b8c13f303..8598010c3 100644
--- a/database/migrations/2020_03_02_031656_update_comments_table.php
+++ b/database/migrations/2020_03_02_031656_update_comments_table.php
@@ -4,7 +4,8 @@ use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
-return new class() extends Migration {
+return new class() extends Migration
+{
/**
* Run the migrations.
*/
diff --git a/database/migrations/2020_03_26_030235_create_subtitles_table.php b/database/migrations/2020_03_26_030235_create_subtitles_table.php
index 9b817c33f..e9421291c 100644
--- a/database/migrations/2020_03_26_030235_create_subtitles_table.php
+++ b/database/migrations/2020_03_26_030235_create_subtitles_table.php
@@ -15,7 +15,8 @@ use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
-return new class() extends Migration {
+return new class() extends Migration
+{
/**
* Run the migrations.
*/
diff --git a/database/migrations/2020_03_26_034620_create_media_languages_table.php b/database/migrations/2020_03_26_034620_create_media_languages_table.php
index f01d605d3..cd67e2440 100644
--- a/database/migrations/2020_03_26_034620_create_media_languages_table.php
+++ b/database/migrations/2020_03_26_034620_create_media_languages_table.php
@@ -15,7 +15,8 @@ use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
-return new class() extends Migration {
+return new class() extends Migration
+{
/**
* Run the migrations.
*/
diff --git a/database/migrations/2020_03_31_201107_add_is_double_upload_to_groups_table.php b/database/migrations/2020_03_31_201107_add_is_double_upload_to_groups_table.php
index f5e1cf794..d0f4715d5 100644
--- a/database/migrations/2020_03_31_201107_add_is_double_upload_to_groups_table.php
+++ b/database/migrations/2020_03_31_201107_add_is_double_upload_to_groups_table.php
@@ -4,7 +4,8 @@ use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
-return new class() extends Migration {
+return new class() extends Migration
+{
/**
* Run the migrations.
*/
diff --git a/database/migrations/2020_05_19_023939_add_type_id_to_torrents_table.php b/database/migrations/2020_05_19_023939_add_type_id_to_torrents_table.php
index ee7bb8f5d..744fde21f 100644
--- a/database/migrations/2020_05_19_023939_add_type_id_to_torrents_table.php
+++ b/database/migrations/2020_05_19_023939_add_type_id_to_torrents_table.php
@@ -17,7 +17,8 @@ use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
-return new class() extends Migration {
+return new class() extends Migration
+{
/**
* Run the migrations.
*/
diff --git a/database/migrations/2020_05_26_053632_add_type_id_to_requests_table.php b/database/migrations/2020_05_26_053632_add_type_id_to_requests_table.php
index 62e77f2b6..0cc62810d 100644
--- a/database/migrations/2020_05_26_053632_add_type_id_to_requests_table.php
+++ b/database/migrations/2020_05_26_053632_add_type_id_to_requests_table.php
@@ -17,7 +17,8 @@ use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
-return new class() extends Migration {
+return new class() extends Migration
+{
/**
* Run the migrations.
*/
diff --git a/database/migrations/2020_06_06_185230_create_resolutions_table.php b/database/migrations/2020_06_06_185230_create_resolutions_table.php
index 653c0dd28..a9e6d7a89 100644
--- a/database/migrations/2020_06_06_185230_create_resolutions_table.php
+++ b/database/migrations/2020_06_06_185230_create_resolutions_table.php
@@ -15,7 +15,8 @@ use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
-return new class() extends Migration {
+return new class() extends Migration
+{
/**
* Run the migrations.
*/
diff --git a/database/migrations/2020_06_07_023938_add_resolution_id_to_torrents_table.php b/database/migrations/2020_06_07_023938_add_resolution_id_to_torrents_table.php
index a6e5db1a5..1a23f318a 100644
--- a/database/migrations/2020_06_07_023938_add_resolution_id_to_torrents_table.php
+++ b/database/migrations/2020_06_07_023938_add_resolution_id_to_torrents_table.php
@@ -17,7 +17,8 @@ use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
-return new class() extends Migration {
+return new class() extends Migration
+{
/**
* Run the migrations.
*/
diff --git a/database/migrations/2020_06_07_054632_add_resolution_id_to_requests_table.php b/database/migrations/2020_06_07_054632_add_resolution_id_to_requests_table.php
index d6e1de270..fb44b1139 100644
--- a/database/migrations/2020_06_07_054632_add_resolution_id_to_requests_table.php
+++ b/database/migrations/2020_06_07_054632_add_resolution_id_to_requests_table.php
@@ -15,7 +15,8 @@ use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
-return new class() extends Migration {
+return new class() extends Migration
+{
/**
* Run the migrations.
*/
diff --git a/database/migrations/2020_06_10_014256_unique_groups.php b/database/migrations/2020_06_10_014256_unique_groups.php
index 47353231a..29f09887f 100644
--- a/database/migrations/2020_06_10_014256_unique_groups.php
+++ b/database/migrations/2020_06_10_014256_unique_groups.php
@@ -4,7 +4,8 @@ use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
-return new class() extends Migration {
+return new class() extends Migration
+{
/**
* Run the migrations.
*/
diff --git a/database/migrations/2020_06_18_115296_add_bumped_at_to_torrents_table.php b/database/migrations/2020_06_18_115296_add_bumped_at_to_torrents_table.php
index e28464665..b0e328241 100644
--- a/database/migrations/2020_06_18_115296_add_bumped_at_to_torrents_table.php
+++ b/database/migrations/2020_06_18_115296_add_bumped_at_to_torrents_table.php
@@ -4,7 +4,8 @@ use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
-return new class() extends Migration {
+return new class() extends Migration
+{
/**
* Run the migrations.
*/
diff --git a/database/migrations/2020_07_07_202935_drop_tags_tables.php b/database/migrations/2020_07_07_202935_drop_tags_tables.php
index 8b39852bd..62b9d0d65 100644
--- a/database/migrations/2020_07_07_202935_drop_tags_tables.php
+++ b/database/migrations/2020_07_07_202935_drop_tags_tables.php
@@ -3,7 +3,8 @@
use Illuminate\Database\Migrations\Migration;
use Illuminate\Support\Facades\Schema;
-return new class() extends Migration {
+return new class() extends Migration
+{
/**
* Run the migrations.
*/
diff --git a/database/migrations/2020_10_06_143759_add_uuid_to_failed_jobs_table.php b/database/migrations/2020_10_06_143759_add_uuid_to_failed_jobs_table.php
index cfa5a5c9a..99ff28e0c 100644
--- a/database/migrations/2020_10_06_143759_add_uuid_to_failed_jobs_table.php
+++ b/database/migrations/2020_10_06_143759_add_uuid_to_failed_jobs_table.php
@@ -4,7 +4,8 @@ use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
-return new class() extends Migration {
+return new class() extends Migration
+{
/**
* Run the migrations.
*/
diff --git a/database/migrations/2020_10_07_012129_create_job_batches_table.php b/database/migrations/2020_10_07_012129_create_job_batches_table.php
index d3fd7aee8..19ba049e7 100644
--- a/database/migrations/2020_10_07_012129_create_job_batches_table.php
+++ b/database/migrations/2020_10_07_012129_create_job_batches_table.php
@@ -4,7 +4,8 @@ use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
-return new class() extends Migration {
+return new class() extends Migration
+{
/**
* Run the migrations.
*/
diff --git a/database/migrations/2020_10_18_235628_create_genre_torrent_table.php b/database/migrations/2020_10_18_235628_create_genre_torrent_table.php
index 02f3552a1..3833ffc92 100644
--- a/database/migrations/2020_10_18_235628_create_genre_torrent_table.php
+++ b/database/migrations/2020_10_18_235628_create_genre_torrent_table.php
@@ -4,7 +4,8 @@ use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
-return new class() extends Migration {
+return new class() extends Migration
+{
/**
* Run the migrations.
*/
diff --git a/database/migrations/2020_11_01_165838_update_wishes_table.php b/database/migrations/2020_11_01_165838_update_wishes_table.php
index a509774ce..31ec22740 100644
--- a/database/migrations/2020_11_01_165838_update_wishes_table.php
+++ b/database/migrations/2020_11_01_165838_update_wishes_table.php
@@ -4,7 +4,8 @@ use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
-return new class() extends Migration {
+return new class() extends Migration
+{
/**
* Run the migrations.
*/
diff --git a/database/migrations/2021_01_02_230512_update_users_table.php b/database/migrations/2021_01_02_230512_update_users_table.php
index 4cfc227fb..b241f6157 100644
--- a/database/migrations/2021_01_02_230512_update_users_table.php
+++ b/database/migrations/2021_01_02_230512_update_users_table.php
@@ -4,7 +4,8 @@ use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
-return new class() extends Migration {
+return new class() extends Migration
+{
/**
* Run the migrations.
*/
diff --git a/database/migrations/2021_01_06_360572_update_nfo_column_on_torrents_table.php b/database/migrations/2021_01_06_360572_update_nfo_column_on_torrents_table.php
index b68dbfa4a..d716cb553 100644
--- a/database/migrations/2021_01_06_360572_update_nfo_column_on_torrents_table.php
+++ b/database/migrations/2021_01_06_360572_update_nfo_column_on_torrents_table.php
@@ -4,7 +4,8 @@ use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
-return new class() extends Migration {
+return new class() extends Migration
+{
/**
* Run the migrations.
*/
diff --git a/database/migrations/2021_01_18_191121_create_tickets_table.php b/database/migrations/2021_01_18_191121_create_tickets_table.php
index 61800bfdb..df4bf0bd6 100644
--- a/database/migrations/2021_01_18_191121_create_tickets_table.php
+++ b/database/migrations/2021_01_18_191121_create_tickets_table.php
@@ -4,7 +4,8 @@ use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
-return new class() extends Migration {
+return new class() extends Migration
+{
/**
* Run the migrations.
*/
diff --git a/database/migrations/2021_01_18_191321_create_ticket_categories_table.php b/database/migrations/2021_01_18_191321_create_ticket_categories_table.php
index 572fd05e1..931e4766d 100644
--- a/database/migrations/2021_01_18_191321_create_ticket_categories_table.php
+++ b/database/migrations/2021_01_18_191321_create_ticket_categories_table.php
@@ -4,7 +4,8 @@ use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
-return new class() extends Migration {
+return new class() extends Migration
+{
/**
* Run the migrations.
*/
diff --git a/database/migrations/2021_01_18_191336_create_ticket_priorities_table.php b/database/migrations/2021_01_18_191336_create_ticket_priorities_table.php
index 3115ba608..22523cb4e 100644
--- a/database/migrations/2021_01_18_191336_create_ticket_priorities_table.php
+++ b/database/migrations/2021_01_18_191336_create_ticket_priorities_table.php
@@ -4,7 +4,8 @@ use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
-return new class() extends Migration {
+return new class() extends Migration
+{
/**
* Run the migrations.
*/
diff --git a/database/migrations/2021_01_18_191357_create_ticket_attachments_table.php b/database/migrations/2021_01_18_191357_create_ticket_attachments_table.php
index d98529e9c..71dc9ac55 100644
--- a/database/migrations/2021_01_18_191357_create_ticket_attachments_table.php
+++ b/database/migrations/2021_01_18_191357_create_ticket_attachments_table.php
@@ -4,7 +4,8 @@ use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
-return new class() extends Migration {
+return new class() extends Migration
+{
/**
* Run the migrations.
*/
diff --git a/database/migrations/2021_01_18_191596_add_ticket_id_to_comments_table.php b/database/migrations/2021_01_18_191596_add_ticket_id_to_comments_table.php
index 0239769ca..850fa369c 100644
--- a/database/migrations/2021_01_18_191596_add_ticket_id_to_comments_table.php
+++ b/database/migrations/2021_01_18_191596_add_ticket_id_to_comments_table.php
@@ -4,7 +4,8 @@ use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
-return new class() extends Migration {
+return new class() extends Migration
+{
/**
* Run the migrations.
*/
diff --git a/database/migrations/2021_03_04_042851_create_watchlists_table.php b/database/migrations/2021_03_04_042851_create_watchlists_table.php
index f1a480a27..d12a6108c 100644
--- a/database/migrations/2021_03_04_042851_create_watchlists_table.php
+++ b/database/migrations/2021_03_04_042851_create_watchlists_table.php
@@ -4,7 +4,8 @@ use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
-return new class() extends Migration {
+return new class() extends Migration
+{
/**
* Run the migrations.
*/
diff --git a/database/migrations/2021_03_11_024605_add_personal_release_to_torrents_table.php b/database/migrations/2021_03_11_024605_add_personal_release_to_torrents_table.php
index 9defc7571..7371f8d0b 100644
--- a/database/migrations/2021_03_11_024605_add_personal_release_to_torrents_table.php
+++ b/database/migrations/2021_03_11_024605_add_personal_release_to_torrents_table.php
@@ -4,7 +4,8 @@ use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
-return new class() extends Migration {
+return new class() extends Migration
+{
/**
* Run the migrations.
*/
diff --git a/database/migrations/2021_03_14_093812_add_read_column_tickets_table.php b/database/migrations/2021_03_14_093812_add_read_column_tickets_table.php
index 2ca4683ab..d203b19f2 100644
--- a/database/migrations/2021_03_14_093812_add_read_column_tickets_table.php
+++ b/database/migrations/2021_03_14_093812_add_read_column_tickets_table.php
@@ -4,7 +4,8 @@ use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
-return new class() extends Migration {
+return new class() extends Migration
+{
/**
* Run the migrations.
*/
diff --git a/database/migrations/2021_04_13_200421_update_about_column_on_users_table.php b/database/migrations/2021_04_13_200421_update_about_column_on_users_table.php
index d81dda637..fc83be0d2 100644
--- a/database/migrations/2021_04_13_200421_update_about_column_on_users_table.php
+++ b/database/migrations/2021_04_13_200421_update_about_column_on_users_table.php
@@ -4,7 +4,8 @@ use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
-return new class() extends Migration {
+return new class() extends Migration
+{
/**
* Run the migrations.
*/
diff --git a/database/migrations/2021_04_18_085155_add_internals_table.php b/database/migrations/2021_04_18_085155_add_internals_table.php
index 661b9fd2a..925bb7eac 100644
--- a/database/migrations/2021_04_18_085155_add_internals_table.php
+++ b/database/migrations/2021_04_18_085155_add_internals_table.php
@@ -4,7 +4,8 @@ use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
-return new class() extends Migration {
+return new class() extends Migration
+{
/**
* Run the migrations.
*/
diff --git a/database/migrations/2021_05_26_215430_create_recommendations_table.php b/database/migrations/2021_05_26_215430_create_recommendations_table.php
index 83b15b26d..c636ef121 100644
--- a/database/migrations/2021_05_26_215430_create_recommendations_table.php
+++ b/database/migrations/2021_05_26_215430_create_recommendations_table.php
@@ -4,7 +4,8 @@ use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
-return new class() extends Migration {
+return new class() extends Migration
+{
/**
* Run the migrations.
*/
diff --git a/database/migrations/2021_06_28_123452_add_standalone_css_to_users_table.php b/database/migrations/2021_06_28_123452_add_standalone_css_to_users_table.php
index fcd6e9803..19d5d2eda 100644
--- a/database/migrations/2021_06_28_123452_add_standalone_css_to_users_table.php
+++ b/database/migrations/2021_06_28_123452_add_standalone_css_to_users_table.php
@@ -15,7 +15,8 @@ use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
-return new class() extends Migration {
+return new class() extends Migration
+{
/**
* Run the migrations.
*/
diff --git a/database/migrations/2021_07_08_135537_add_flush_own_peers_to_users_table.php b/database/migrations/2021_07_08_135537_add_flush_own_peers_to_users_table.php
index 3a7b9489f..9309ca3c6 100644
--- a/database/migrations/2021_07_08_135537_add_flush_own_peers_to_users_table.php
+++ b/database/migrations/2021_07_08_135537_add_flush_own_peers_to_users_table.php
@@ -4,7 +4,8 @@ use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
-return new class() extends Migration {
+return new class() extends Migration
+{
/**
* Run the migrations.
*/
diff --git a/database/migrations/2021_07_27_140562_change_torrents_table.php b/database/migrations/2021_07_27_140562_change_torrents_table.php
index 0d0519ad9..730a0495b 100644
--- a/database/migrations/2021_07_27_140562_change_torrents_table.php
+++ b/database/migrations/2021_07_27_140562_change_torrents_table.php
@@ -4,7 +4,8 @@ use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
-return new class() extends Migration {
+return new class() extends Migration
+{
/**
* Run the migrations.
*/
diff --git a/database/migrations/2021_07_27_185231_create_distributors_table.php b/database/migrations/2021_07_27_185231_create_distributors_table.php
index c5b321d1e..72f9069f3 100644
--- a/database/migrations/2021_07_27_185231_create_distributors_table.php
+++ b/database/migrations/2021_07_27_185231_create_distributors_table.php
@@ -15,7 +15,8 @@ use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
-return new class() extends Migration {
+return new class() extends Migration
+{
/**
* Run the migrations.
*/
diff --git a/database/migrations/2021_07_27_285231_create_regions_table.php b/database/migrations/2021_07_27_285231_create_regions_table.php
index b6a3e6a99..2835ee585 100644
--- a/database/migrations/2021_07_27_285231_create_regions_table.php
+++ b/database/migrations/2021_07_27_285231_create_regions_table.php
@@ -15,7 +15,8 @@ use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
-return new class() extends Migration {
+return new class() extends Migration
+{
/**
* Run the migrations.
*/
diff --git a/database/migrations/2021_07_31_172708_add_connectable_state_to_peers_table.php b/database/migrations/2021_07_31_172708_add_connectable_state_to_peers_table.php
index e763591b7..cb35a79ce 100644
--- a/database/migrations/2021_07_31_172708_add_connectable_state_to_peers_table.php
+++ b/database/migrations/2021_07_31_172708_add_connectable_state_to_peers_table.php
@@ -4,7 +4,8 @@ use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
-return new class() extends Migration {
+return new class() extends Migration
+{
/**
* Run the migrations.
*/
diff --git a/database/migrations/2021_08_20_121103_change_torrent_to_nullable_in_warning.php b/database/migrations/2021_08_20_121103_change_torrent_to_nullable_in_warning.php
index 0d5622dc6..456f4e88d 100644
--- a/database/migrations/2021_08_20_121103_change_torrent_to_nullable_in_warning.php
+++ b/database/migrations/2021_08_20_121103_change_torrent_to_nullable_in_warning.php
@@ -4,7 +4,8 @@ use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
-return new class() extends Migration {
+return new class() extends Migration
+{
/**
* Run the migrations.
*/
diff --git a/database/migrations/2021_10_03_180121_add_indexes_to_tables.php b/database/migrations/2021_10_03_180121_add_indexes_to_tables.php
index 04d870969..3f9327fa7 100644
--- a/database/migrations/2021_10_03_180121_add_indexes_to_tables.php
+++ b/database/migrations/2021_10_03_180121_add_indexes_to_tables.php
@@ -4,7 +4,8 @@ use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
-return new class() extends Migration {
+return new class() extends Migration
+{
/**
* Run the migrations.
*/
diff --git a/database/migrations/2021_11_22_115517_add_more_torrent_promos.php b/database/migrations/2021_11_22_115517_add_more_torrent_promos.php
index 86c110de4..cda32de0b 100644
--- a/database/migrations/2021_11_22_115517_add_more_torrent_promos.php
+++ b/database/migrations/2021_11_22_115517_add_more_torrent_promos.php
@@ -4,7 +4,8 @@ use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
-return new class() extends Migration {
+return new class() extends Migration
+{
/**
* Run the migrations.
*/
diff --git a/database/migrations/2021_11_26_024738_update_torrents_table.php b/database/migrations/2021_11_26_024738_update_torrents_table.php
index 10755573e..248fe23a9 100644
--- a/database/migrations/2021_11_26_024738_update_torrents_table.php
+++ b/database/migrations/2021_11_26_024738_update_torrents_table.php
@@ -4,7 +4,8 @@ use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
-return new class() extends Migration {
+return new class() extends Migration
+{
/**
* Run the migrations.
*/
diff --git a/database/migrations/2021_12_19_202317_fix_database_indexs.php b/database/migrations/2021_12_19_202317_fix_database_indexs.php
index 1842a1e28..343199541 100644
--- a/database/migrations/2021_12_19_202317_fix_database_indexs.php
+++ b/database/migrations/2021_12_19_202317_fix_database_indexs.php
@@ -3,7 +3,8 @@
use Illuminate\Database\Migrations\Migration;
use Illuminate\Support\Facades\DB;
-return new class() extends Migration {
+return new class() extends Migration
+{
/**
* Run the migrations.
*/
diff --git a/database/migrations/2022_02_03_080630_update_groups_table.php b/database/migrations/2022_02_03_080630_update_groups_table.php
index e4fd6ec37..b9dee5904 100644
--- a/database/migrations/2022_02_03_080630_update_groups_table.php
+++ b/database/migrations/2022_02_03_080630_update_groups_table.php
@@ -4,7 +4,8 @@ use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
-return new class() extends Migration {
+return new class() extends Migration
+{
/**
* Run the migrations.
*
diff --git a/database/migrations/2022_02_03_090219_update_torrents_table.php b/database/migrations/2022_02_03_090219_update_torrents_table.php
index ac7a0d3a7..e975530f0 100644
--- a/database/migrations/2022_02_03_090219_update_torrents_table.php
+++ b/database/migrations/2022_02_03_090219_update_torrents_table.php
@@ -4,7 +4,8 @@ use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
-return new class() extends Migration {
+return new class() extends Migration
+{
/**
* Run the migrations.
*
diff --git a/database/migrations/2022_02_06_210013_update_history_table.php b/database/migrations/2022_02_06_210013_update_history_table.php
index 337a7d070..e1e72a669 100644
--- a/database/migrations/2022_02_06_210013_update_history_table.php
+++ b/database/migrations/2022_02_06_210013_update_history_table.php
@@ -6,7 +6,8 @@ use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
-return new class() extends Migration {
+return new class() extends Migration
+{
/**
* Run the migrations.
*
diff --git a/database/migrations/2022_02_21_162827_create_torrent_downloads_table.php b/database/migrations/2022_02_21_162827_create_torrent_downloads_table.php
index 4d81d6110..450ff4de4 100644
--- a/database/migrations/2022_02_21_162827_create_torrent_downloads_table.php
+++ b/database/migrations/2022_02_21_162827_create_torrent_downloads_table.php
@@ -4,7 +4,8 @@ use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
-return new class() extends Migration {
+return new class() extends Migration
+{
/**
* Run the migrations.
*
diff --git a/database/migrations/2022_04_27_143156_update_users_table.php b/database/migrations/2022_04_27_143156_update_users_table.php
index 8f391f5ac..312fbae3f 100644
--- a/database/migrations/2022_04_27_143156_update_users_table.php
+++ b/database/migrations/2022_04_27_143156_update_users_table.php
@@ -4,7 +4,8 @@ use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
-return new class() extends Migration {
+return new class() extends Migration
+{
/**
* Run the migrations.
*
diff --git a/database/seeders/AchievementDetailsTableSeeder.php b/database/seeders/AchievementDetailsTableSeeder.php
index eccd9a0f0..3a3736553 100644
--- a/database/seeders/AchievementDetailsTableSeeder.php
+++ b/database/seeders/AchievementDetailsTableSeeder.php
@@ -39,404 +39,404 @@ class AchievementDetailsTableSeeder extends Seeder
{
return [
[
- 'id' => 2,
- 'name' => 'FirstComment',
+ 'id' => 2,
+ 'name' => 'FirstComment',
'description' => 'Congratulations! You have made your first comment!',
- 'points' => 1,
- 'secret' => 0,
- 'class_name' => \App\Achievements\UserMadeComment::class,
- 'created_at' => '2017-02-28 17:22:37',
- 'updated_at' => '2017-04-21 12:52:01',
+ 'points' => 1,
+ 'secret' => 0,
+ 'class_name' => \App\Achievements\UserMadeComment::class,
+ 'created_at' => '2017-02-28 17:22:37',
+ 'updated_at' => '2017-04-21 12:52:01',
],
[
- 'id' => 3,
- 'name' => '10Comments',
+ 'id' => 3,
+ 'name' => '10Comments',
'description' => 'Wow! You have already made 10 comments!',
- 'points' => 10,
- 'secret' => 0,
- 'class_name' => \App\Achievements\UserMadeTenComments::class,
- 'created_at' => '2017-02-28 17:22:37',
- 'updated_at' => '2017-04-21 12:21:06',
+ 'points' => 10,
+ 'secret' => 0,
+ 'class_name' => \App\Achievements\UserMadeTenComments::class,
+ 'created_at' => '2017-02-28 17:22:37',
+ 'updated_at' => '2017-04-21 12:21:06',
],
[
- 'id' => 4,
- 'name' => 'FirstUpload',
+ 'id' => 4,
+ 'name' => 'FirstUpload',
'description' => 'Congratulations! You have made your first torrent upload!',
- 'points' => 1,
- 'secret' => 0,
- 'class_name' => \App\Achievements\UserMadeUpload::class,
- 'created_at' => '2017-03-01 13:31:50',
- 'updated_at' => '2017-03-22 14:59:32',
+ 'points' => 1,
+ 'secret' => 0,
+ 'class_name' => \App\Achievements\UserMadeUpload::class,
+ 'created_at' => '2017-03-01 13:31:50',
+ 'updated_at' => '2017-03-22 14:59:32',
],
[
- 'id' => 5,
- 'name' => '25Uploads',
+ 'id' => 5,
+ 'name' => '25Uploads',
'description' => 'You have made 25 torrent uploads!',
- 'points' => 25,
- 'secret' => 0,
- 'class_name' => \App\Achievements\UserMade25Uploads::class,
- 'created_at' => '2017-03-02 23:19:34',
- 'updated_at' => '2017-04-21 12:21:06',
+ 'points' => 25,
+ 'secret' => 0,
+ 'class_name' => \App\Achievements\UserMade25Uploads::class,
+ 'created_at' => '2017-03-02 23:19:34',
+ 'updated_at' => '2017-04-21 12:21:06',
],
[
- 'id' => 6,
- 'name' => '50Comments',
+ 'id' => 6,
+ 'name' => '50Comments',
'description' => 'Wow! You have already made 50 comments!',
- 'points' => 50,
- 'secret' => 0,
- 'class_name' => \App\Achievements\UserMade50Comments::class,
- 'created_at' => '2017-04-21 13:04:26',
- 'updated_at' => '2017-04-21 13:04:26',
+ 'points' => 50,
+ 'secret' => 0,
+ 'class_name' => \App\Achievements\UserMade50Comments::class,
+ 'created_at' => '2017-04-21 13:04:26',
+ 'updated_at' => '2017-04-21 13:04:26',
],
[
- 'id' => 7,
- 'name' => '100Comments',
+ 'id' => 7,
+ 'name' => '100Comments',
'description' => 'Wow! You have already made 100 comments!',
- 'points' => 100,
- 'secret' => 0,
- 'class_name' => \App\Achievements\UserMade100Comments::class,
- 'created_at' => '2017-04-21 13:04:26',
- 'updated_at' => '2017-04-21 13:04:26',
+ 'points' => 100,
+ 'secret' => 0,
+ 'class_name' => \App\Achievements\UserMade100Comments::class,
+ 'created_at' => '2017-04-21 13:04:26',
+ 'updated_at' => '2017-04-21 13:04:26',
],
[
- 'id' => 8,
- 'name' => '200Comments',
+ 'id' => 8,
+ 'name' => '200Comments',
'description' => 'Wow! You have already made 200 comments!',
- 'points' => 200,
- 'secret' => 0,
- 'class_name' => \App\Achievements\UserMade200Comments::class,
- 'created_at' => '2017-04-21 13:04:26',
- 'updated_at' => '2017-04-21 13:04:26',
+ 'points' => 200,
+ 'secret' => 0,
+ 'class_name' => \App\Achievements\UserMade200Comments::class,
+ 'created_at' => '2017-04-21 13:04:26',
+ 'updated_at' => '2017-04-21 13:04:26',
],
[
- 'id' => 9,
- 'name' => '300Comments',
+ 'id' => 9,
+ 'name' => '300Comments',
'description' => 'Wow! You have already made 300 comments!',
- 'points' => 300,
- 'secret' => 0,
- 'class_name' => \App\Achievements\UserMade300Comments::class,
- 'created_at' => '2017-04-21 13:04:26',
- 'updated_at' => '2017-04-21 13:04:26',
+ 'points' => 300,
+ 'secret' => 0,
+ 'class_name' => \App\Achievements\UserMade300Comments::class,
+ 'created_at' => '2017-04-21 13:04:26',
+ 'updated_at' => '2017-04-21 13:04:26',
],
[
- 'id' => 10,
- 'name' => '400Comments',
+ 'id' => 10,
+ 'name' => '400Comments',
'description' => 'Wow! You have already made 400 comments!',
- 'points' => 400,
- 'secret' => 0,
- 'class_name' => \App\Achievements\UserMade400Comments::class,
- 'created_at' => '2017-04-21 13:04:26',
- 'updated_at' => '2017-04-21 13:04:26',
+ 'points' => 400,
+ 'secret' => 0,
+ 'class_name' => \App\Achievements\UserMade400Comments::class,
+ 'created_at' => '2017-04-21 13:04:26',
+ 'updated_at' => '2017-04-21 13:04:26',
],
[
- 'id' => 11,
- 'name' => '500Comments',
+ 'id' => 11,
+ 'name' => '500Comments',
'description' => 'Wow! You have already made 500 comments!',
- 'points' => 500,
- 'secret' => 0,
- 'class_name' => \App\Achievements\UserMade500Comments::class,
- 'created_at' => '2017-04-21 13:04:26',
- 'updated_at' => '2017-04-21 13:04:26',
+ 'points' => 500,
+ 'secret' => 0,
+ 'class_name' => \App\Achievements\UserMade500Comments::class,
+ 'created_at' => '2017-04-21 13:04:26',
+ 'updated_at' => '2017-04-21 13:04:26',
],
[
- 'id' => 12,
- 'name' => '600Comments',
+ 'id' => 12,
+ 'name' => '600Comments',
'description' => 'Wow! You have already made 600 comments!',
- 'points' => 600,
- 'secret' => 0,
- 'class_name' => \App\Achievements\UserMade600Comments::class,
- 'created_at' => '2017-04-21 13:04:26',
- 'updated_at' => '2017-04-21 13:04:26',
+ 'points' => 600,
+ 'secret' => 0,
+ 'class_name' => \App\Achievements\UserMade600Comments::class,
+ 'created_at' => '2017-04-21 13:04:26',
+ 'updated_at' => '2017-04-21 13:04:26',
],
[
- 'id' => 13,
- 'name' => '700Comments',
+ 'id' => 13,
+ 'name' => '700Comments',
'description' => 'Wow! You have already made 700 comments!',
- 'points' => 700,
- 'secret' => 0,
- 'class_name' => \App\Achievements\UserMade700Comments::class,
- 'created_at' => '2017-04-21 13:04:26',
- 'updated_at' => '2017-04-21 13:04:26',
+ 'points' => 700,
+ 'secret' => 0,
+ 'class_name' => \App\Achievements\UserMade700Comments::class,
+ 'created_at' => '2017-04-21 13:04:26',
+ 'updated_at' => '2017-04-21 13:04:26',
],
[
- 'id' => 14,
- 'name' => '800Comments',
+ 'id' => 14,
+ 'name' => '800Comments',
'description' => 'Wow! You have already made 800 comments!',
- 'points' => 800,
- 'secret' => 0,
- 'class_name' => \App\Achievements\UserMade800Comments::class,
- 'created_at' => '2017-04-21 13:04:26',
- 'updated_at' => '2017-04-21 13:04:26',
+ 'points' => 800,
+ 'secret' => 0,
+ 'class_name' => \App\Achievements\UserMade800Comments::class,
+ 'created_at' => '2017-04-21 13:04:26',
+ 'updated_at' => '2017-04-21 13:04:26',
],
[
- 'id' => 15,
- 'name' => '900Comments',
+ 'id' => 15,
+ 'name' => '900Comments',
'description' => 'DAMN BRO! You have made 900 comments!',
- 'points' => 900,
- 'secret' => 0,
- 'class_name' => \App\Achievements\UserMade900Comments::class,
- 'created_at' => '2017-04-21 13:04:26',
- 'updated_at' => '2017-04-21 13:04:26',
+ 'points' => 900,
+ 'secret' => 0,
+ 'class_name' => \App\Achievements\UserMade900Comments::class,
+ 'created_at' => '2017-04-21 13:04:26',
+ 'updated_at' => '2017-04-21 13:04:26',
],
[
- 'id' => 16,
- 'name' => '50Uploads',
+ 'id' => 16,
+ 'name' => '50Uploads',
'description' => 'You have made 50 torrent uploads!',
- 'points' => 50,
- 'secret' => 0,
- 'class_name' => \App\Achievements\UserMade50Uploads::class,
- 'created_at' => '2017-04-21 13:29:51',
- 'updated_at' => '2017-04-21 13:29:51',
+ 'points' => 50,
+ 'secret' => 0,
+ 'class_name' => \App\Achievements\UserMade50Uploads::class,
+ 'created_at' => '2017-04-21 13:29:51',
+ 'updated_at' => '2017-04-21 13:29:51',
],
[
- 'id' => 17,
- 'name' => '100Uploads',
+ 'id' => 17,
+ 'name' => '100Uploads',
'description' => 'You have made 100 torrent uploads!',
- 'points' => 100,
- 'secret' => 0,
- 'class_name' => \App\Achievements\UserMade100Uploads::class,
- 'created_at' => '2017-04-21 13:29:51',
- 'updated_at' => '2017-04-21 13:29:51',
+ 'points' => 100,
+ 'secret' => 0,
+ 'class_name' => \App\Achievements\UserMade100Uploads::class,
+ 'created_at' => '2017-04-21 13:29:51',
+ 'updated_at' => '2017-04-21 13:29:51',
],
[
- 'id' => 18,
- 'name' => '200Uploads',
+ 'id' => 18,
+ 'name' => '200Uploads',
'description' => 'You have made 200 torrent uploads!',
- 'points' => 200,
- 'secret' => 0,
- 'class_name' => \App\Achievements\UserMade200Uploads::class,
- 'created_at' => '2017-04-21 13:29:51',
- 'updated_at' => '2017-04-21 13:29:51',
+ 'points' => 200,
+ 'secret' => 0,
+ 'class_name' => \App\Achievements\UserMade200Uploads::class,
+ 'created_at' => '2017-04-21 13:29:51',
+ 'updated_at' => '2017-04-21 13:29:51',
],
[
- 'id' => 19,
- 'name' => '300Uploads',
+ 'id' => 19,
+ 'name' => '300Uploads',
'description' => 'You have made 300 torrent uploads!',
- 'points' => 300,
- 'secret' => 0,
- 'class_name' => \App\Achievements\UserMade300Uploads::class,
- 'created_at' => '2017-04-21 13:29:51',
- 'updated_at' => '2017-04-21 13:29:51',
+ 'points' => 300,
+ 'secret' => 0,
+ 'class_name' => \App\Achievements\UserMade300Uploads::class,
+ 'created_at' => '2017-04-21 13:29:51',
+ 'updated_at' => '2017-04-21 13:29:51',
],
[
- 'id' => 20,
- 'name' => '400Uploads',
+ 'id' => 20,
+ 'name' => '400Uploads',
'description' => 'You have made 400 torrent uploads!',
- 'points' => 400,
- 'secret' => 0,
- 'class_name' => \App\Achievements\UserMade400Uploads::class,
- 'created_at' => '2017-04-21 13:29:51',
- 'updated_at' => '2017-04-21 13:29:51',
+ 'points' => 400,
+ 'secret' => 0,
+ 'class_name' => \App\Achievements\UserMade400Uploads::class,
+ 'created_at' => '2017-04-21 13:29:51',
+ 'updated_at' => '2017-04-21 13:29:51',
],
[
- 'id' => 21,
- 'name' => '500Uploads',
+ 'id' => 21,
+ 'name' => '500Uploads',
'description' => 'You have made 500 torrent uploads!',
- 'points' => 500,
- 'secret' => 0,
- 'class_name' => \App\Achievements\UserMade500Uploads::class,
- 'created_at' => '2017-04-21 13:29:51',
- 'updated_at' => '2017-04-21 13:29:51',
+ 'points' => 500,
+ 'secret' => 0,
+ 'class_name' => \App\Achievements\UserMade500Uploads::class,
+ 'created_at' => '2017-04-21 13:29:51',
+ 'updated_at' => '2017-04-21 13:29:51',
],
[
- 'id' => 22,
- 'name' => '600Uploads',
+ 'id' => 22,
+ 'name' => '600Uploads',
'description' => 'You have made 600 torrent uploads!',
- 'points' => 600,
- 'secret' => 0,
- 'class_name' => \App\Achievements\UserMade600Uploads::class,
- 'created_at' => '2017-04-21 13:29:51',
- 'updated_at' => '2017-04-21 13:29:51',
+ 'points' => 600,
+ 'secret' => 0,
+ 'class_name' => \App\Achievements\UserMade600Uploads::class,
+ 'created_at' => '2017-04-21 13:29:51',
+ 'updated_at' => '2017-04-21 13:29:51',
],
[
- 'id' => 23,
- 'name' => '700Uploads',
+ 'id' => 23,
+ 'name' => '700Uploads',
'description' => 'You have made 700 torrent uploads!',
- 'points' => 700,
- 'secret' => 0,
- 'class_name' => \App\Achievements\UserMade700Uploads::class,
- 'created_at' => '2017-04-21 13:29:51',
- 'updated_at' => '2017-04-21 13:29:51',
+ 'points' => 700,
+ 'secret' => 0,
+ 'class_name' => \App\Achievements\UserMade700Uploads::class,
+ 'created_at' => '2017-04-21 13:29:51',
+ 'updated_at' => '2017-04-21 13:29:51',
],
[
- 'id' => 24,
- 'name' => '800Uploads',
+ 'id' => 24,
+ 'name' => '800Uploads',
'description' => 'You have made 800 torrent uploads!',
- 'points' => 800,
- 'secret' => 0,
- 'class_name' => \App\Achievements\UserMade800Uploads::class,
- 'created_at' => '2017-04-21 13:29:51',
- 'updated_at' => '2017-04-21 13:29:51',
+ 'points' => 800,
+ 'secret' => 0,
+ 'class_name' => \App\Achievements\UserMade800Uploads::class,
+ 'created_at' => '2017-04-21 13:29:51',
+ 'updated_at' => '2017-04-21 13:29:51',
],
[
- 'id' => 25,
- 'name' => '900Uploads',
+ 'id' => 25,
+ 'name' => '900Uploads',
'description' => 'DAMN BRO, you have made 900 torrent uploads!',
- 'points' => 900,
- 'secret' => 0,
- 'class_name' => \App\Achievements\UserMade900Uploads::class,
- 'created_at' => '2017-04-21 13:29:51',
- 'updated_at' => '2017-04-21 13:29:51',
+ 'points' => 900,
+ 'secret' => 0,
+ 'class_name' => \App\Achievements\UserMade900Uploads::class,
+ 'created_at' => '2017-04-21 13:29:51',
+ 'updated_at' => '2017-04-21 13:29:51',
],
[
- 'id' => 26,
- 'name' => 'FirstPost',
+ 'id' => 26,
+ 'name' => 'FirstPost',
'description' => 'Congratulations! You have made your first post!',
- 'points' => 1,
- 'secret' => 0,
- 'class_name' => \App\Achievements\UserMadeFirstPost::class,
- 'created_at' => '2017-04-21 18:37:09',
- 'updated_at' => '2017-04-21 18:38:48',
+ 'points' => 1,
+ 'secret' => 0,
+ 'class_name' => \App\Achievements\UserMadeFirstPost::class,
+ 'created_at' => '2017-04-21 18:37:09',
+ 'updated_at' => '2017-04-21 18:38:48',
],
[
- 'id' => 27,
- 'name' => '25Posts',
+ 'id' => 27,
+ 'name' => '25Posts',
'description' => 'Wow! You have already made 25 posts!',
- 'points' => 25,
- 'secret' => 0,
- 'class_name' => \App\Achievements\UserMade25Posts::class,
- 'created_at' => '2017-04-21 18:37:09',
- 'updated_at' => '2017-04-21 18:37:09',
+ 'points' => 25,
+ 'secret' => 0,
+ 'class_name' => \App\Achievements\UserMade25Posts::class,
+ 'created_at' => '2017-04-21 18:37:09',
+ 'updated_at' => '2017-04-21 18:37:09',
],
[
- 'id' => 28,
- 'name' => '50Posts',
+ 'id' => 28,
+ 'name' => '50Posts',
'description' => 'Wow! You have already made 50 posts!',
- 'points' => 50,
- 'secret' => 0,
- 'class_name' => \App\Achievements\UserMade50Posts::class,
- 'created_at' => '2017-04-21 18:37:09',
- 'updated_at' => '2017-04-21 18:37:09',
+ 'points' => 50,
+ 'secret' => 0,
+ 'class_name' => \App\Achievements\UserMade50Posts::class,
+ 'created_at' => '2017-04-21 18:37:09',
+ 'updated_at' => '2017-04-21 18:37:09',
],
[
- 'id' => 29,
- 'name' => '100Posts',
+ 'id' => 29,
+ 'name' => '100Posts',
'description' => 'Wow! You have already made 100 posts!',
- 'points' => 100,
- 'secret' => 0,
- 'class_name' => \App\Achievements\UserMade100Posts::class,
- 'created_at' => '2017-04-21 18:37:09',
- 'updated_at' => '2017-04-21 18:37:09',
+ 'points' => 100,
+ 'secret' => 0,
+ 'class_name' => \App\Achievements\UserMade100Posts::class,
+ 'created_at' => '2017-04-21 18:37:09',
+ 'updated_at' => '2017-04-21 18:37:09',
],
[
- 'id' => 30,
- 'name' => '200Posts',
+ 'id' => 30,
+ 'name' => '200Posts',
'description' => 'Wow! You have already made 200 posts!',
- 'points' => 200,
- 'secret' => 0,
- 'class_name' => \App\Achievements\UserMade200Posts::class,
- 'created_at' => '2017-04-21 18:37:09',
- 'updated_at' => '2017-04-21 18:37:09',
+ 'points' => 200,
+ 'secret' => 0,
+ 'class_name' => \App\Achievements\UserMade200Posts::class,
+ 'created_at' => '2017-04-21 18:37:09',
+ 'updated_at' => '2017-04-21 18:37:09',
],
[
- 'id' => 31,
- 'name' => '300Posts',
+ 'id' => 31,
+ 'name' => '300Posts',
'description' => 'Wow! You have already made 300 posts!',
- 'points' => 300,
- 'secret' => 0,
- 'class_name' => \App\Achievements\UserMade300Posts::class,
- 'created_at' => '2017-04-21 18:37:09',
- 'updated_at' => '2017-04-21 18:37:09',
+ 'points' => 300,
+ 'secret' => 0,
+ 'class_name' => \App\Achievements\UserMade300Posts::class,
+ 'created_at' => '2017-04-21 18:37:09',
+ 'updated_at' => '2017-04-21 18:37:09',
],
[
- 'id' => 32,
- 'name' => '400Posts',
+ 'id' => 32,
+ 'name' => '400Posts',
'description' => 'Wow! You have already made 400 posts!',
- 'points' => 400,
- 'secret' => 0,
- 'class_name' => \App\Achievements\UserMade400Posts::class,
- 'created_at' => '2017-04-21 18:37:09',
- 'updated_at' => '2017-04-21 18:37:09',
+ 'points' => 400,
+ 'secret' => 0,
+ 'class_name' => \App\Achievements\UserMade400Posts::class,
+ 'created_at' => '2017-04-21 18:37:09',
+ 'updated_at' => '2017-04-21 18:37:09',
],
[
- 'id' => 33,
- 'name' => '500Posts',
+ 'id' => 33,
+ 'name' => '500Posts',
'description' => 'Wow! You have already made 500 posts!',
- 'points' => 500,
- 'secret' => 0,
- 'class_name' => \App\Achievements\UserMade500Posts::class,
- 'created_at' => '2017-04-21 18:37:09',
- 'updated_at' => '2017-04-21 18:37:09',
+ 'points' => 500,
+ 'secret' => 0,
+ 'class_name' => \App\Achievements\UserMade500Posts::class,
+ 'created_at' => '2017-04-21 18:37:09',
+ 'updated_at' => '2017-04-21 18:37:09',
],
[
- 'id' => 34,
- 'name' => '600Posts',
+ 'id' => 34,
+ 'name' => '600Posts',
'description' => 'Wow! You have already made 600 posts!',
- 'points' => 600,
- 'secret' => 0,
- 'class_name' => \App\Achievements\UserMade600Posts::class,
- 'created_at' => '2017-04-21 18:37:09',
- 'updated_at' => '2017-04-21 18:37:09',
+ 'points' => 600,
+ 'secret' => 0,
+ 'class_name' => \App\Achievements\UserMade600Posts::class,
+ 'created_at' => '2017-04-21 18:37:09',
+ 'updated_at' => '2017-04-21 18:37:09',
],
[
- 'id' => 35,
- 'name' => '700Posts',
+ 'id' => 35,
+ 'name' => '700Posts',
'description' => 'Wow! You have already made 700 posts!',
- 'points' => 700,
- 'secret' => 0,
- 'class_name' => \App\Achievements\UserMade700Posts::class,
- 'created_at' => '2017-04-21 18:37:09',
- 'updated_at' => '2017-04-21 18:37:09',
+ 'points' => 700,
+ 'secret' => 0,
+ 'class_name' => \App\Achievements\UserMade700Posts::class,
+ 'created_at' => '2017-04-21 18:37:09',
+ 'updated_at' => '2017-04-21 18:37:09',
],
[
- 'id' => 36,
- 'name' => '800Posts',
+ 'id' => 36,
+ 'name' => '800Posts',
'description' => 'Wow! You have already made 800 posts!',
- 'points' => 800,
- 'secret' => 0,
- 'class_name' => \App\Achievements\UserMade800Posts::class,
- 'created_at' => '2017-04-21 18:37:09',
- 'updated_at' => '2017-04-21 18:37:09',
+ 'points' => 800,
+ 'secret' => 0,
+ 'class_name' => \App\Achievements\UserMade800Posts::class,
+ 'created_at' => '2017-04-21 18:37:09',
+ 'updated_at' => '2017-04-21 18:37:09',
],
[
- 'id' => 37,
- 'name' => '900Posts',
+ 'id' => 37,
+ 'name' => '900Posts',
'description' => 'Wow! You have already made 900 posts!',
- 'points' => 900,
- 'secret' => 0,
- 'class_name' => \App\Achievements\UserMade900Posts::class,
- 'created_at' => '2017-04-21 18:37:09',
- 'updated_at' => '2017-04-21 18:37:09',
+ 'points' => 900,
+ 'secret' => 0,
+ 'class_name' => \App\Achievements\UserMade900Posts::class,
+ 'created_at' => '2017-04-21 18:37:09',
+ 'updated_at' => '2017-04-21 18:37:09',
],
[
- 'id' => 38,
- 'name' => 'Filled25Requests',
+ 'id' => 38,
+ 'name' => 'Filled25Requests',
'description' => 'Congrats! You have already filled 25 requests!',
- 'points' => 25,
- 'secret' => 0,
- 'class_name' => \App\Achievements\UserFilled25Requests::class,
- 'created_at' => '2017-08-28 23:55:56',
- 'updated_at' => '2017-08-28 23:55:56',
+ 'points' => 25,
+ 'secret' => 0,
+ 'class_name' => \App\Achievements\UserFilled25Requests::class,
+ 'created_at' => '2017-08-28 23:55:56',
+ 'updated_at' => '2017-08-28 23:55:56',
],
[
- 'id' => 39,
- 'name' => 'Filled50Requests',
+ 'id' => 39,
+ 'name' => 'Filled50Requests',
'description' => 'Wow! You have already filled 50 requests!',
- 'points' => 50,
- 'secret' => 0,
- 'class_name' => \App\Achievements\UserFilled50Requests::class,
- 'created_at' => '2017-08-28 23:55:56',
- 'updated_at' => '2017-08-28 23:55:56',
+ 'points' => 50,
+ 'secret' => 0,
+ 'class_name' => \App\Achievements\UserFilled50Requests::class,
+ 'created_at' => '2017-08-28 23:55:56',
+ 'updated_at' => '2017-08-28 23:55:56',
],
[
- 'id' => 40,
- 'name' => 'Filled75Requests',
+ 'id' => 40,
+ 'name' => 'Filled75Requests',
'description' => 'Woot! You have already filled 75 requests!',
- 'points' => 75,
- 'secret' => 0,
- 'class_name' => \App\Achievements\UserFilled75Requests::class,
- 'created_at' => '2017-08-28 23:55:56',
- 'updated_at' => '2017-08-28 23:55:56',
+ 'points' => 75,
+ 'secret' => 0,
+ 'class_name' => \App\Achievements\UserFilled75Requests::class,
+ 'created_at' => '2017-08-28 23:55:56',
+ 'updated_at' => '2017-08-28 23:55:56',
],
[
- 'id' => 41,
- 'name' => 'Filled100Requests',
+ 'id' => 41,
+ 'name' => 'Filled100Requests',
'description' => 'DAMN BRO! You have already filled 100 requests!',
- 'points' => 100,
- 'secret' => 0,
- 'class_name' => \App\Achievements\UserFilled100Requests::class,
- 'created_at' => '2017-08-28 23:55:56',
- 'updated_at' => '2017-08-28 23:55:56',
+ 'points' => 100,
+ 'secret' => 0,
+ 'class_name' => \App\Achievements\UserFilled100Requests::class,
+ 'created_at' => '2017-08-28 23:55:56',
+ 'updated_at' => '2017-08-28 23:55:56',
],
];
}
diff --git a/database/seeders/ArticlesTableSeeder.php b/database/seeders/ArticlesTableSeeder.php
index 25a05e12c..89c64d5ac 100644
--- a/database/seeders/ArticlesTableSeeder.php
+++ b/database/seeders/ArticlesTableSeeder.php
@@ -39,11 +39,11 @@ class ArticlesTableSeeder extends Seeder
{
return [
[
- 'id' => 1,
- 'title' => 'Welcome To '.config('other.title').' .',
- 'slug' => 'welcome',
- 'content' => 'Welcome to '.config('other.title').'. Powered By '.config('unit3d.powered-by').'.',
- 'user_id' => 3,
+ 'id' => 1,
+ 'title' => 'Welcome To '.config('other.title').' .',
+ 'slug' => 'welcome',
+ 'content' => 'Welcome to '.config('other.title').'. Powered By '.config('unit3d.powered-by').'.',
+ 'user_id' => 3,
'created_at' => '2017-02-28 17:22:37',
'updated_at' => '2017-04-21 12:21:06',
],
diff --git a/database/seeders/BonExchangeTableSeeder.php b/database/seeders/BonExchangeTableSeeder.php
index fce2c01e0..2c6550028 100644
--- a/database/seeders/BonExchangeTableSeeder.php
+++ b/database/seeders/BonExchangeTableSeeder.php
@@ -40,64 +40,64 @@ class BonExchangeTableSeeder extends Seeder
{
return [
[
- 'id' => 1,
- 'description' => '2 GiB Upload',
- 'value' => $this->byteUnits->bytesFromUnit('2GiB'),
- 'cost' => 500,
- 'upload' => 1,
- 'download' => 0,
+ 'id' => 1,
+ 'description' => '2 GiB Upload',
+ 'value' => $this->byteUnits->bytesFromUnit('2GiB'),
+ 'cost' => 500,
+ 'upload' => 1,
+ 'download' => 0,
'personal_freeleech' => 0,
- 'invite' => 0,
+ 'invite' => 0,
],
[
- 'id' => 2,
- 'description' => '10 GiB Upload',
- 'value' => $this->byteUnits->bytesFromUnit('10GiB'),
- 'cost' => 1000,
- 'upload' => 1,
- 'download' => 0,
+ 'id' => 2,
+ 'description' => '10 GiB Upload',
+ 'value' => $this->byteUnits->bytesFromUnit('10GiB'),
+ 'cost' => 1000,
+ 'upload' => 1,
+ 'download' => 0,
'personal_freeleech' => 0,
- 'invite' => 0,
+ 'invite' => 0,
],
[
- 'id' => 3,
- 'description' => '25 GiB Upload',
- 'value' => $this->byteUnits->bytesFromUnit('25GiB'),
- 'cost' => 2000,
- 'upload' => 1,
- 'download' => 0,
+ 'id' => 3,
+ 'description' => '25 GiB Upload',
+ 'value' => $this->byteUnits->bytesFromUnit('25GiB'),
+ 'cost' => 2000,
+ 'upload' => 1,
+ 'download' => 0,
'personal_freeleech' => 0,
- 'invite' => 0,
+ 'invite' => 0,
],
[
- 'id' => 4,
- 'description' => '100 GiB Upload',
- 'value' => $this->byteUnits->bytesFromUnit('100GiB'),
- 'cost' => 5000,
- 'upload' => 1,
- 'download' => 0,
+ 'id' => 4,
+ 'description' => '100 GiB Upload',
+ 'value' => $this->byteUnits->bytesFromUnit('100GiB'),
+ 'cost' => 5000,
+ 'upload' => 1,
+ 'download' => 0,
'personal_freeleech' => 0,
- 'invite' => 0,
+ 'invite' => 0,
],
[
- 'id' => 9,
- 'description' => '1 Invite',
- 'value' => 1,
- 'cost' => 2500,
- 'upload' => 0,
- 'download' => 0,
+ 'id' => 9,
+ 'description' => '1 Invite',
+ 'value' => 1,
+ 'cost' => 2500,
+ 'upload' => 0,
+ 'download' => 0,
'personal_freeleech' => 0,
- 'invite' => 1,
+ 'invite' => 1,
],
[
- 'id' => 10,
- 'description' => 'Personal 24Hr Freeleech',
- 'value' => 1,
- 'cost' => 7500,
- 'upload' => 0,
- 'download' => 0,
+ 'id' => 10,
+ 'description' => 'Personal 24Hr Freeleech',
+ 'value' => 1,
+ 'cost' => 7500,
+ 'upload' => 0,
+ 'download' => 0,
'personal_freeleech' => 1,
- 'invite' => 0,
+ 'invite' => 0,
],
];
}
diff --git a/database/seeders/BotsTableSeeder.php b/database/seeders/BotsTableSeeder.php
index a1205e79c..7331d2d53 100644
--- a/database/seeders/BotsTableSeeder.php
+++ b/database/seeders/BotsTableSeeder.php
@@ -39,14 +39,14 @@ class BotsTableSeeder extends Seeder
{
return [
[
- 'name' => 'SystemBot',
- 'slug' => 'systembot',
- 'emoji' => '1f916',
- 'command' => 'systembot',
- 'position' => 1,
- 'color' => '#f1c40f',
- 'icon' => 'fab fa-android',
- 'help' => '{me} v0.1 Help -- Notes about / ! and @{me} tab
+ 'name' => 'SystemBot',
+ 'slug' => 'systembot',
+ 'emoji' => '1f916',
+ 'command' => 'systembot',
+ 'position' => 1,
+ 'color' => '#f1c40f',
+ 'icon' => 'fab fa-android',
+ 'help' => '{me} v0.1 Help -- Notes about / ! and @{me} tab
All [b]echo[/b] commands begin with / and echo output to current tab.
All [b]room[/b] commands begin with ! and echo output for all in current room.
@@ -62,14 +62,14 @@ Available Bots:
'is_systembot' => 1,
],
[
- 'name' => 'NerdBot',
- 'slug' => 'nerdbot',
- 'emoji' => '1f913',
- 'command' => 'nerdbot',
- 'position' => 2,
- 'color' => '#f1c40f',
- 'icon' => 'fab fa-android',
- 'help' => '{me} v0.1 Help -- Notes about / ! and @{me} tab
+ 'name' => 'NerdBot',
+ 'slug' => 'nerdbot',
+ 'emoji' => '1f913',
+ 'command' => 'nerdbot',
+ 'position' => 2,
+ 'color' => '#f1c40f',
+ 'icon' => 'fab fa-android',
+ 'help' => '{me} v0.1 Help -- Notes about / ! and @{me} tab
All [b]echo[/b] commands begin with / and echo output to current tab.
All [b]room[/b] commands begin with ! and echo output for all in current room.
@@ -101,41 +101,41 @@ None.
(All NerdBot statistics are cached for 60 minutes)',
'is_protected' => 1,
- 'is_nerdbot' => 1,
+ 'is_nerdbot' => 1,
],
[
- 'name' => 'CasinoBot',
- 'slug' => 'casinobot',
- 'command' => 'casinobot',
- 'emoji' => '1f3b0',
- 'position' => 3,
- 'color' => '#f1c40f',
- 'icon' => 'fab fa-android',
- 'help' => 'Coming soon',
+ 'name' => 'CasinoBot',
+ 'slug' => 'casinobot',
+ 'command' => 'casinobot',
+ 'emoji' => '1f3b0',
+ 'position' => 3,
+ 'color' => '#f1c40f',
+ 'icon' => 'fab fa-android',
+ 'help' => 'Coming soon',
'is_protected' => 1,
'is_casinobot' => 1,
],
[
- 'name' => 'BetBot',
- 'slug' => 'betbot',
- 'command' => 'betbot',
- 'emoji' => '1f3b2',
- 'position' => 4,
- 'color' => '#f1c40f',
- 'icon' => 'fab fa-android',
- 'help' => 'Coming soon',
+ 'name' => 'BetBot',
+ 'slug' => 'betbot',
+ 'command' => 'betbot',
+ 'emoji' => '1f3b2',
+ 'position' => 4,
+ 'color' => '#f1c40f',
+ 'icon' => 'fab fa-android',
+ 'help' => 'Coming soon',
'is_protected' => 1,
- 'is_betbot' => 1,
+ 'is_betbot' => 1,
],
[
- 'name' => 'TriviaBot',
- 'slug' => 'triviabot',
- 'command' => 'triviabot',
- 'emoji' => '2753',
- 'position' => 5,
- 'color' => '#f1c40f',
- 'icon' => 'fab fa-android',
- 'help' => 'Coming soon',
+ 'name' => 'TriviaBot',
+ 'slug' => 'triviabot',
+ 'command' => 'triviabot',
+ 'emoji' => '2753',
+ 'position' => 5,
+ 'color' => '#f1c40f',
+ 'icon' => 'fab fa-android',
+ 'help' => 'Coming soon',
'is_protected' => 1,
'is_triviabot' => 1,
],
diff --git a/database/seeders/CategoriesTableSeeder.php b/database/seeders/CategoriesTableSeeder.php
index d69a40cf2..ad1c9e46d 100644
--- a/database/seeders/CategoriesTableSeeder.php
+++ b/database/seeders/CategoriesTableSeeder.php
@@ -39,74 +39,74 @@ class CategoriesTableSeeder extends Seeder
{
return [
[
- 'id' => 1,
- 'name' => 'Movies',
- 'slug' => 'movies',
- 'position' => 0,
- 'icon' => config('other.font-awesome').' fa-film',
+ 'id' => 1,
+ 'name' => 'Movies',
+ 'slug' => 'movies',
+ 'position' => 0,
+ 'icon' => config('other.font-awesome').' fa-film',
'num_torrent' => 0,
- 'image' => null,
- 'movie_meta' => 1,
- 'tv_meta' => 0,
- 'game_meta' => 0,
- 'music_meta' => 0,
- 'no_meta' => 0,
+ 'image' => null,
+ 'movie_meta' => 1,
+ 'tv_meta' => 0,
+ 'game_meta' => 0,
+ 'music_meta' => 0,
+ 'no_meta' => 0,
],
[
- 'id' => 2,
- 'name' => 'TV',
- 'slug' => 'tv',
- 'position' => 1,
- 'icon' => config('other.font-awesome').' fa-tv-retro',
+ 'id' => 2,
+ 'name' => 'TV',
+ 'slug' => 'tv',
+ 'position' => 1,
+ 'icon' => config('other.font-awesome').' fa-tv-retro',
'num_torrent' => 0,
- 'image' => null,
- 'movie_meta' => 0,
- 'tv_meta' => 1,
- 'game_meta' => 0,
- 'music_meta' => 0,
- 'no_meta' => 0,
+ 'image' => null,
+ 'movie_meta' => 0,
+ 'tv_meta' => 1,
+ 'game_meta' => 0,
+ 'music_meta' => 0,
+ 'no_meta' => 0,
],
[
- 'id' => 3,
- 'name' => 'Music',
- 'slug' => 'music',
- 'position' => 2,
- 'icon' => config('other.font-awesome').' fa-music',
+ 'id' => 3,
+ 'name' => 'Music',
+ 'slug' => 'music',
+ 'position' => 2,
+ 'icon' => config('other.font-awesome').' fa-music',
'num_torrent' => 0,
- 'image' => null,
- 'movie_meta' => 0,
- 'tv_meta' => 0,
- 'game_meta' => 0,
- 'music_meta' => 1,
- 'no_meta' => 0,
+ 'image' => null,
+ 'movie_meta' => 0,
+ 'tv_meta' => 0,
+ 'game_meta' => 0,
+ 'music_meta' => 1,
+ 'no_meta' => 0,
],
[
- 'id' => 4,
- 'name' => 'Game',
- 'slug' => 'game',
- 'position' => 3,
- 'icon' => config('other.font-awesome').' fa-gamepad',
+ 'id' => 4,
+ 'name' => 'Game',
+ 'slug' => 'game',
+ 'position' => 3,
+ 'icon' => config('other.font-awesome').' fa-gamepad',
'num_torrent' => 0,
- 'image' => null,
- 'movie_meta' => 0,
- 'tv_meta' => 0,
- 'game_meta' => 1,
- 'music_meta' => 0,
- 'no_meta' => 0,
+ 'image' => null,
+ 'movie_meta' => 0,
+ 'tv_meta' => 0,
+ 'game_meta' => 1,
+ 'music_meta' => 0,
+ 'no_meta' => 0,
],
[
- 'id' => 5,
- 'name' => 'Application',
- 'slug' => 'application',
- 'position' => 4,
- 'icon' => config('other.font-awesome').' fa-compact-disc',
+ 'id' => 5,
+ 'name' => 'Application',
+ 'slug' => 'application',
+ 'position' => 4,
+ 'icon' => config('other.font-awesome').' fa-compact-disc',
'num_torrent' => 0,
- 'image' => null,
- 'movie_meta' => 0,
- 'tv_meta' => 0,
- 'game_meta' => 0,
- 'music_meta' => 0,
- 'no_meta' => 1,
+ 'image' => null,
+ 'movie_meta' => 0,
+ 'tv_meta' => 0,
+ 'game_meta' => 0,
+ 'music_meta' => 0,
+ 'no_meta' => 1,
],
];
}
diff --git a/database/seeders/ChatStatusSeeder.php b/database/seeders/ChatStatusSeeder.php
index b13517b2b..866c0ae59 100644
--- a/database/seeders/ChatStatusSeeder.php
+++ b/database/seeders/ChatStatusSeeder.php
@@ -39,24 +39,24 @@ class ChatStatusSeeder extends Seeder
{
return [
[
- 'name' => 'Online',
+ 'name' => 'Online',
'color' => '#2ECC40',
- 'icon' => config('other.font-awesome').' fa-comment-smile',
+ 'icon' => config('other.font-awesome').' fa-comment-smile',
],
[
- 'name' => 'Away',
+ 'name' => 'Away',
'color' => '#FFDC00',
- 'icon' => config('other.font-awesome').' fa-comment-minus',
+ 'icon' => config('other.font-awesome').' fa-comment-minus',
],
[
- 'name' => 'Busy',
+ 'name' => 'Busy',
'color' => '#FF4136',
- 'icon' => config('other.font-awesome').' fa-comment-exclamation',
+ 'icon' => config('other.font-awesome').' fa-comment-exclamation',
],
[
- 'name' => 'Offline',
+ 'name' => 'Offline',
'color' => '#AAAAAA',
- 'icon' => config('other.font-awesome').' fa-comment-slash',
+ 'icon' => config('other.font-awesome').' fa-comment-slash',
],
];
}
diff --git a/database/seeders/DistributorsTableSeeder.php b/database/seeders/DistributorsTableSeeder.php
index 60b83a343..049130d04 100644
--- a/database/seeders/DistributorsTableSeeder.php
+++ b/database/seeders/DistributorsTableSeeder.php
@@ -39,5793 +39,5793 @@ class DistributorsTableSeeder extends Seeder
{
return [
[
- 'id' => 1,
- 'name' => '01 Distribution',
- 'slug' => '01distribution',
+ 'id' => 1,
+ 'name' => '01 Distribution',
+ 'slug' => '01distribution',
'position' => 0,
],
[
- 'id' => 2,
- 'name' => '100 Destinations Travel Film',
- 'slug' => '100destinationstravelfilm',
+ 'id' => 2,
+ 'name' => '100 Destinations Travel Film',
+ 'slug' => '100destinationstravelfilm',
'position' => 1,
],
[
- 'id' => 3,
- 'name' => '101 Films',
- 'slug' => '101films',
+ 'id' => 3,
+ 'name' => '101 Films',
+ 'slug' => '101films',
'position' => 2,
],
[
- 'id' => 4,
- 'name' => '1Films',
- 'slug' => '1films',
+ 'id' => 4,
+ 'name' => '1Films',
+ 'slug' => '1films',
'position' => 3,
],
[
- 'id' => 5,
- 'name' => '2 Entertain Video',
- 'slug' => '2entertainvideo',
+ 'id' => 5,
+ 'name' => '2 Entertain Video',
+ 'slug' => '2entertainvideo',
'position' => 4,
],
[
- 'id' => 6,
- 'name' => '20th Century Fox',
- 'slug' => '20thcenturyfox',
+ 'id' => 6,
+ 'name' => '20th Century Fox',
+ 'slug' => '20thcenturyfox',
'position' => 5,
],
[
- 'id' => 7,
- 'name' => '2L',
- 'slug' => '2l',
+ 'id' => 7,
+ 'name' => '2L',
+ 'slug' => '2l',
'position' => 6,
],
[
- 'id' => 8,
- 'name' => '3D Content Hub',
- 'slug' => '3dcontenthub',
+ 'id' => 8,
+ 'name' => '3D Content Hub',
+ 'slug' => '3dcontenthub',
'position' => 7,
],
[
- 'id' => 9,
- 'name' => '3D Media',
- 'slug' => '3dmedia',
+ 'id' => 9,
+ 'name' => '3D Media',
+ 'slug' => '3dmedia',
'position' => 8,
],
[
- 'id' => 10,
- 'name' => '3L Film',
- 'slug' => '3lfilm',
+ 'id' => 10,
+ 'name' => '3L Film',
+ 'slug' => '3lfilm',
'position' => 9,
],
[
- 'id' => 11,
- 'name' => '4Digital',
- 'slug' => '4digital',
+ 'id' => 11,
+ 'name' => '4Digital',
+ 'slug' => '4digital',
'position' => 10,
],
[
- 'id' => 12,
- 'name' => '4dvd',
- 'slug' => '4dvd',
+ 'id' => 12,
+ 'name' => '4dvd',
+ 'slug' => '4dvd',
'position' => 11,
],
[
- 'id' => 13,
- 'name' => '4K Ultra HD Movies',
- 'slug' => '4kultrahdmovies',
+ 'id' => 13,
+ 'name' => '4K Ultra HD Movies',
+ 'slug' => '4kultrahdmovies',
'position' => 12,
],
[
- 'id' => 14,
- 'name' => '8-Films',
- 'slug' => '8films',
+ 'id' => 14,
+ 'name' => '8-Films',
+ 'slug' => '8films',
'position' => 13,
],
[
- 'id' => 15,
- 'name' => '84 Entertainment',
- 'slug' => '84entertainment',
+ 'id' => 15,
+ 'name' => '84 Entertainment',
+ 'slug' => '84entertainment',
'position' => 14,
],
[
- 'id' => 16,
- 'name' => '88 Films',
- 'slug' => '88films',
+ 'id' => 16,
+ 'name' => '88 Films',
+ 'slug' => '88films',
'position' => 15,
],
[
- 'id' => 17,
- 'name' => '@Anime',
- 'slug' => 'anime',
+ 'id' => 17,
+ 'name' => '@Anime',
+ 'slug' => 'anime',
'position' => 16,
],
[
- 'id' => 18,
- 'name' => 'A Contracorriente',
- 'slug' => 'acontracorriente',
+ 'id' => 18,
+ 'name' => 'A Contracorriente',
+ 'slug' => 'acontracorriente',
'position' => 17,
],
[
- 'id' => 19,
- 'name' => 'A Contracorriente Films',
- 'slug' => 'acontracorrientefilms',
+ 'id' => 19,
+ 'name' => 'A Contracorriente Films',
+ 'slug' => 'acontracorrientefilms',
'position' => 18,
],
[
- 'id' => 20,
- 'name' => 'A&E Home Video',
- 'slug' => 'aehomevideo',
+ 'id' => 20,
+ 'name' => 'A&E Home Video',
+ 'slug' => 'aehomevideo',
'position' => 19,
],
[
- 'id' => 21,
- 'name' => 'A&M Records',
- 'slug' => 'amrecords',
+ 'id' => 21,
+ 'name' => 'A&M Records',
+ 'slug' => 'amrecords',
'position' => 20,
],
[
- 'id' => 22,
- 'name' => 'A+E Networks',
- 'slug' => 'aenetworks',
+ 'id' => 22,
+ 'name' => 'A+E Networks',
+ 'slug' => 'aenetworks',
'position' => 21,
],
[
- 'id' => 23,
- 'name' => 'A+R',
- 'slug' => 'ar',
+ 'id' => 23,
+ 'name' => 'A+R',
+ 'slug' => 'ar',
'position' => 22,
],
[
- 'id' => 24,
- 'name' => 'A-film',
- 'slug' => 'afilm',
+ 'id' => 24,
+ 'name' => 'A-film',
+ 'slug' => 'afilm',
'position' => 23,
],
[
- 'id' => 25,
- 'name' => 'AAA',
- 'slug' => 'aaa',
+ 'id' => 25,
+ 'name' => 'AAA',
+ 'slug' => 'aaa',
'position' => 24,
],
[
- 'id' => 26,
- 'name' => 'AB Vidéo',
- 'slug' => 'abvideo',
+ 'id' => 26,
+ 'name' => 'AB Vidéo',
+ 'slug' => 'abvideo',
'position' => 25,
],
[
- 'id' => 27,
- 'name' => 'ABC - (Australian Broadcasting Corporation)',
- 'slug' => 'abcaustralianbroadcastingcorporation',
+ 'id' => 27,
+ 'name' => 'ABC - (Australian Broadcasting Corporation)',
+ 'slug' => 'abcaustralianbroadcastingcorporation',
'position' => 26,
],
[
- 'id' => 28,
- 'name' => 'abkco',
- 'slug' => 'abkco',
+ 'id' => 28,
+ 'name' => 'abkco',
+ 'slug' => 'abkco',
'position' => 27,
],
[
- 'id' => 29,
- 'name' => 'Absolut Medien',
- 'slug' => 'absolutmedien',
+ 'id' => 29,
+ 'name' => 'Absolut Medien',
+ 'slug' => 'absolutmedien',
'position' => 28,
],
[
- 'id' => 30,
- 'name' => 'Absolute',
- 'slug' => 'absolute',
+ 'id' => 30,
+ 'name' => 'Absolute',
+ 'slug' => 'absolute',
'position' => 29,
],
[
- 'id' => 31,
- 'name' => 'Accent Film Entertainment',
- 'slug' => 'accentfilmentertainment',
+ 'id' => 31,
+ 'name' => 'Accent Film Entertainment',
+ 'slug' => 'accentfilmentertainment',
'position' => 30,
],
[
- 'id' => 32,
- 'name' => 'Accentus',
- 'slug' => 'accentus',
+ 'id' => 32,
+ 'name' => 'Accentus',
+ 'slug' => 'accentus',
'position' => 31,
],
[
- 'id' => 33,
- 'name' => 'Acorn Media',
- 'slug' => 'acornmedia',
+ 'id' => 33,
+ 'name' => 'Acorn Media',
+ 'slug' => 'acornmedia',
'position' => 32,
],
[
- 'id' => 34,
- 'name' => 'Ad Vitam',
- 'slug' => 'advitam',
+ 'id' => 34,
+ 'name' => 'Ad Vitam',
+ 'slug' => 'advitam',
'position' => 33,
],
[
- 'id' => 35,
- 'name' => 'Ada',
- 'slug' => 'ada',
+ 'id' => 35,
+ 'name' => 'Ada',
+ 'slug' => 'ada',
'position' => 34,
],
[
- 'id' => 36,
- 'name' => 'Aditya Videos',
- 'slug' => 'adityavideos',
+ 'id' => 36,
+ 'name' => 'Aditya Videos',
+ 'slug' => 'adityavideos',
'position' => 35,
],
[
- 'id' => 37,
- 'name' => 'ADSO Films',
- 'slug' => 'adsofilms',
+ 'id' => 37,
+ 'name' => 'ADSO Films',
+ 'slug' => 'adsofilms',
'position' => 36,
],
[
- 'id' => 38,
- 'name' => 'AFM Records',
- 'slug' => 'afmrecords',
+ 'id' => 38,
+ 'name' => 'AFM Records',
+ 'slug' => 'afmrecords',
'position' => 37,
],
[
- 'id' => 39,
- 'name' => 'AGFA',
- 'slug' => 'agfa',
+ 'id' => 39,
+ 'name' => 'AGFA',
+ 'slug' => 'agfa',
'position' => 38,
],
[
- 'id' => 40,
- 'name' => 'AIX Records',
- 'slug' => 'aixrecords',
+ 'id' => 40,
+ 'name' => 'AIX Records',
+ 'slug' => 'aixrecords',
'position' => 39,
],
[
- 'id' => 41,
- 'name' => 'Alamode Film',
- 'slug' => 'alamodefilm',
+ 'id' => 41,
+ 'name' => 'Alamode Film',
+ 'slug' => 'alamodefilm',
'position' => 40,
],
[
- 'id' => 42,
- 'name' => 'Alba Records',
- 'slug' => 'albarecords',
+ 'id' => 42,
+ 'name' => 'Alba Records',
+ 'slug' => 'albarecords',
'position' => 41,
],
[
- 'id' => 43,
- 'name' => 'Albany Records',
- 'slug' => 'albanyrecords',
+ 'id' => 43,
+ 'name' => 'Albany Records',
+ 'slug' => 'albanyrecords',
'position' => 42,
],
[
- 'id' => 44,
- 'name' => 'Albatros',
- 'slug' => 'albatros',
+ 'id' => 44,
+ 'name' => 'Albatros',
+ 'slug' => 'albatros',
'position' => 43,
],
[
- 'id' => 45,
- 'name' => 'Alchemy',
- 'slug' => 'alchemy',
+ 'id' => 45,
+ 'name' => 'Alchemy',
+ 'slug' => 'alchemy',
'position' => 44,
],
[
- 'id' => 46,
- 'name' => 'Alive',
- 'slug' => 'alive',
+ 'id' => 46,
+ 'name' => 'Alive',
+ 'slug' => 'alive',
'position' => 45,
],
[
- 'id' => 47,
- 'name' => 'All Anime',
- 'slug' => 'allanime',
+ 'id' => 47,
+ 'name' => 'All Anime',
+ 'slug' => 'allanime',
'position' => 46,
],
[
- 'id' => 48,
- 'name' => 'All Interactive Entertainment',
- 'slug' => 'allinteractiveentertainment',
+ 'id' => 48,
+ 'name' => 'All Interactive Entertainment',
+ 'slug' => 'allinteractiveentertainment',
'position' => 47,
],
[
- 'id' => 49,
- 'name' => 'Allegro',
- 'slug' => 'allegro',
+ 'id' => 49,
+ 'name' => 'Allegro',
+ 'slug' => 'allegro',
'position' => 48,
],
[
- 'id' => 50,
- 'name' => 'Alliance',
- 'slug' => 'alliance',
+ 'id' => 50,
+ 'name' => 'Alliance',
+ 'slug' => 'alliance',
'position' => 49,
],
[
- 'id' => 51,
- 'name' => 'Alpha Music',
- 'slug' => 'alphamusic',
+ 'id' => 51,
+ 'name' => 'Alpha Music',
+ 'slug' => 'alphamusic',
'position' => 50,
],
[
- 'id' => 52,
- 'name' => 'AlterDystrybucja',
- 'slug' => 'alterdystrybucja',
+ 'id' => 52,
+ 'name' => 'AlterDystrybucja',
+ 'slug' => 'alterdystrybucja',
'position' => 51,
],
[
- 'id' => 53,
- 'name' => 'Altered Innocence',
- 'slug' => 'alteredinnocence',
+ 'id' => 53,
+ 'name' => 'Altered Innocence',
+ 'slug' => 'alteredinnocence',
'position' => 52,
],
[
- 'id' => 54,
- 'name' => 'Altitude Film Distribution',
- 'slug' => 'altitudefilmdistribution',
+ 'id' => 54,
+ 'name' => 'Altitude Film Distribution',
+ 'slug' => 'altitudefilmdistribution',
'position' => 53,
],
[
- 'id' => 55,
- 'name' => 'Alucard Records',
- 'slug' => 'alucardrecords',
+ 'id' => 55,
+ 'name' => 'Alucard Records',
+ 'slug' => 'alucardrecords',
'position' => 54,
],
[
- 'id' => 56,
- 'name' => 'Amazing D.C.',
- 'slug' => 'amazingdc',
+ 'id' => 56,
+ 'name' => 'Amazing D.C.',
+ 'slug' => 'amazingdc',
'position' => 55,
],
[
- 'id' => 57,
- 'name' => 'Ammo Content',
- 'slug' => 'ammocontent',
+ 'id' => 57,
+ 'name' => 'Ammo Content',
+ 'slug' => 'ammocontent',
'position' => 56,
],
[
- 'id' => 58,
- 'name' => 'Amuse Soft Entertainment',
- 'slug' => 'amusesoftentertainment',
+ 'id' => 58,
+ 'name' => 'Amuse Soft Entertainment',
+ 'slug' => 'amusesoftentertainment',
'position' => 57,
],
[
- 'id' => 59,
- 'name' => 'ANConnect',
- 'slug' => 'anconnect',
+ 'id' => 59,
+ 'name' => 'ANConnect',
+ 'slug' => 'anconnect',
'position' => 58,
],
[
- 'id' => 60,
- 'name' => 'Anec',
- 'slug' => 'anec',
+ 'id' => 60,
+ 'name' => 'Anec',
+ 'slug' => 'anec',
'position' => 59,
],
[
- 'id' => 61,
- 'name' => 'Animatsu',
- 'slug' => 'animatsu',
+ 'id' => 61,
+ 'name' => 'Animatsu',
+ 'slug' => 'animatsu',
'position' => 60,
],
[
- 'id' => 62,
- 'name' => 'Anime House',
- 'slug' => 'animehouse',
+ 'id' => 62,
+ 'name' => 'Anime House',
+ 'slug' => 'animehouse',
'position' => 61,
],
[
- 'id' => 63,
- 'name' => 'Anime Ltd',
- 'slug' => 'animeltd',
+ 'id' => 63,
+ 'name' => 'Anime Ltd',
+ 'slug' => 'animeltd',
'position' => 62,
],
[
- 'id' => 64,
- 'name' => 'Anime Works',
- 'slug' => 'animeworks',
+ 'id' => 64,
+ 'name' => 'Anime Works',
+ 'slug' => 'animeworks',
'position' => 63,
],
[
- 'id' => 65,
- 'name' => 'AnimEigo',
- 'slug' => 'animeigo',
+ 'id' => 65,
+ 'name' => 'AnimEigo',
+ 'slug' => 'animeigo',
'position' => 64,
],
[
- 'id' => 66,
- 'name' => 'Aniplex',
- 'slug' => 'aniplex',
+ 'id' => 66,
+ 'name' => 'Aniplex',
+ 'slug' => 'aniplex',
'position' => 65,
],
[
- 'id' => 67,
- 'name' => 'Anolis Entertainment',
- 'slug' => 'anolisentertainment',
+ 'id' => 67,
+ 'name' => 'Anolis Entertainment',
+ 'slug' => 'anolisentertainment',
'position' => 66,
],
[
- 'id' => 68,
- 'name' => 'Another World Entertainment',
- 'slug' => 'anotherworldentertainment',
+ 'id' => 68,
+ 'name' => 'Another World Entertainment',
+ 'slug' => 'anotherworldentertainment',
'position' => 67,
],
[
- 'id' => 69,
- 'name' => 'AP International',
- 'slug' => 'apinternational',
+ 'id' => 69,
+ 'name' => 'AP International',
+ 'slug' => 'apinternational',
'position' => 68,
],
[
- 'id' => 70,
- 'name' => 'Apple',
- 'slug' => 'apple',
+ 'id' => 70,
+ 'name' => 'Apple',
+ 'slug' => 'apple',
'position' => 69,
],
[
- 'id' => 71,
- 'name' => 'Ara Media',
- 'slug' => 'aramedia',
+ 'id' => 71,
+ 'name' => 'Ara Media',
+ 'slug' => 'aramedia',
'position' => 70,
],
[
- 'id' => 72,
- 'name' => 'Arbelos',
- 'slug' => 'arbelos',
+ 'id' => 72,
+ 'name' => 'Arbelos',
+ 'slug' => 'arbelos',
'position' => 71,
],
[
- 'id' => 73,
- 'name' => 'Arc Entertainment',
- 'slug' => 'arcentertainment',
+ 'id' => 73,
+ 'name' => 'Arc Entertainment',
+ 'slug' => 'arcentertainment',
'position' => 72,
],
[
- 'id' => 74,
- 'name' => 'ARP Sélection',
- 'slug' => 'arpselection',
+ 'id' => 74,
+ 'name' => 'ARP Sélection',
+ 'slug' => 'arpselection',
'position' => 73,
],
[
- 'id' => 75,
- 'name' => 'Arrow',
- 'slug' => 'arrow',
+ 'id' => 75,
+ 'name' => 'Arrow',
+ 'slug' => 'arrow',
'position' => 74,
],
[
- 'id' => 76,
- 'name' => 'Art Service',
- 'slug' => 'artservice',
+ 'id' => 76,
+ 'name' => 'Art Service',
+ 'slug' => 'artservice',
'position' => 75,
],
[
- 'id' => 77,
- 'name' => 'Art Vision',
- 'slug' => 'artvision',
+ 'id' => 77,
+ 'name' => 'Art Vision',
+ 'slug' => 'artvision',
'position' => 76,
],
[
- 'id' => 78,
- 'name' => 'Arte Éditions',
- 'slug' => 'arteeditions',
+ 'id' => 78,
+ 'name' => 'Arte Éditions',
+ 'slug' => 'arteeditions',
'position' => 77,
],
[
- 'id' => 79,
- 'name' => 'Arte Vidéo',
- 'slug' => 'artevideo',
+ 'id' => 79,
+ 'name' => 'Arte Vidéo',
+ 'slug' => 'artevideo',
'position' => 78,
],
[
- 'id' => 80,
- 'name' => 'Arthaus Musik',
- 'slug' => 'arthausmusik',
+ 'id' => 80,
+ 'name' => 'Arthaus Musik',
+ 'slug' => 'arthausmusik',
'position' => 79,
],
[
- 'id' => 81,
- 'name' => 'Artificial Eye',
- 'slug' => 'artificialeye',
+ 'id' => 81,
+ 'name' => 'Artificial Eye',
+ 'slug' => 'artificialeye',
'position' => 80,
],
[
- 'id' => 82,
- 'name' => 'Artsploitation Films',
- 'slug' => 'artsploitationfilms',
+ 'id' => 82,
+ 'name' => 'Artsploitation Films',
+ 'slug' => 'artsploitationfilms',
'position' => 81,
],
[
- 'id' => 83,
- 'name' => 'Artus Films',
- 'slug' => 'artusfilms',
+ 'id' => 83,
+ 'name' => 'Artus Films',
+ 'slug' => 'artusfilms',
'position' => 82,
],
[
- 'id' => 84,
- 'name' => 'Ascot Elite Home Entertainment',
- 'slug' => 'ascotelitehomeentertainment',
+ 'id' => 84,
+ 'name' => 'Ascot Elite Home Entertainment',
+ 'slug' => 'ascotelitehomeentertainment',
'position' => 83,
],
[
- 'id' => 85,
- 'name' => 'Asia Video',
- 'slug' => 'asiavideo',
+ 'id' => 85,
+ 'name' => 'Asia Video',
+ 'slug' => 'asiavideo',
'position' => 84,
],
[
- 'id' => 86,
- 'name' => 'Asmik Ace',
- 'slug' => 'asmikace',
+ 'id' => 86,
+ 'name' => 'Asmik Ace',
+ 'slug' => 'asmikace',
'position' => 85,
],
[
- 'id' => 87,
- 'name' => 'Astro Records & Filmworks',
- 'slug' => 'astrorecordsfilmworks',
+ 'id' => 87,
+ 'name' => 'Astro Records & Filmworks',
+ 'slug' => 'astrorecordsfilmworks',
'position' => 86,
],
[
- 'id' => 88,
- 'name' => 'Asylum',
- 'slug' => 'asylum',
+ 'id' => 88,
+ 'name' => 'Asylum',
+ 'slug' => 'asylum',
'position' => 87,
],
[
- 'id' => 89,
- 'name' => 'Atlantic Film',
- 'slug' => 'atlanticfilm',
+ 'id' => 89,
+ 'name' => 'Atlantic Film',
+ 'slug' => 'atlanticfilm',
'position' => 88,
],
[
- 'id' => 90,
- 'name' => 'Atlantic Records',
- 'slug' => 'atlanticrecords',
+ 'id' => 90,
+ 'name' => 'Atlantic Records',
+ 'slug' => 'atlanticrecords',
'position' => 89,
],
[
- 'id' => 91,
- 'name' => 'Atlas Film',
- 'slug' => 'atlasfilm',
+ 'id' => 91,
+ 'name' => 'Atlas Film',
+ 'slug' => 'atlasfilm',
'position' => 90,
],
[
- 'id' => 92,
- 'name' => 'Audio Visual Entertainment',
- 'slug' => 'audiovisualentertainment',
+ 'id' => 92,
+ 'name' => 'Audio Visual Entertainment',
+ 'slug' => 'audiovisualentertainment',
'position' => 91,
],
[
- 'id' => 93,
- 'name' => 'Auro-3D Creative Label',
- 'slug' => 'auro3dcreativelabel',
+ 'id' => 93,
+ 'name' => 'Auro-3D Creative Label',
+ 'slug' => 'auro3dcreativelabel',
'position' => 92,
],
[
- 'id' => 94,
- 'name' => 'Aurum',
- 'slug' => 'aurum',
+ 'id' => 94,
+ 'name' => 'Aurum',
+ 'slug' => 'aurum',
'position' => 93,
],
[
- 'id' => 95,
- 'name' => 'AV Visionen',
- 'slug' => 'avvisionen',
+ 'id' => 95,
+ 'name' => 'AV Visionen',
+ 'slug' => 'avvisionen',
'position' => 94,
],
[
- 'id' => 96,
- 'name' => 'AV-JET',
- 'slug' => 'avjet',
+ 'id' => 96,
+ 'name' => 'AV-JET',
+ 'slug' => 'avjet',
'position' => 95,
],
[
- 'id' => 97,
- 'name' => 'Avalon',
- 'slug' => 'avalon',
+ 'id' => 97,
+ 'name' => 'Avalon',
+ 'slug' => 'avalon',
'position' => 96,
],
[
- 'id' => 98,
- 'name' => 'Aventi',
- 'slug' => 'aventi',
+ 'id' => 98,
+ 'name' => 'Aventi',
+ 'slug' => 'aventi',
'position' => 97,
],
[
- 'id' => 99,
- 'name' => 'Avex Trax',
- 'slug' => 'avextrax',
+ 'id' => 99,
+ 'name' => 'Avex Trax',
+ 'slug' => 'avextrax',
'position' => 98,
],
[
- 'id' => 100,
- 'name' => 'Axiom',
- 'slug' => 'axiom',
+ 'id' => 100,
+ 'name' => 'Axiom',
+ 'slug' => 'axiom',
'position' => 99,
],
[
- 'id' => 101,
- 'name' => 'Axis Records',
- 'slug' => 'axisrecords',
+ 'id' => 101,
+ 'name' => 'Axis Records',
+ 'slug' => 'axisrecords',
'position' => 100,
],
[
- 'id' => 102,
- 'name' => 'Ayngaran',
- 'slug' => 'ayngaran',
+ 'id' => 102,
+ 'name' => 'Ayngaran',
+ 'slug' => 'ayngaran',
'position' => 101,
],
[
- 'id' => 103,
- 'name' => 'BAC Films',
- 'slug' => 'bacfilms',
+ 'id' => 103,
+ 'name' => 'BAC Films',
+ 'slug' => 'bacfilms',
'position' => 102,
],
[
- 'id' => 104,
- 'name' => 'Bach Films',
- 'slug' => 'bachfilms',
+ 'id' => 104,
+ 'name' => 'Bach Films',
+ 'slug' => 'bachfilms',
'position' => 103,
],
[
- 'id' => 105,
- 'name' => 'Bandai Visual',
- 'slug' => 'bandaivisual',
+ 'id' => 105,
+ 'name' => 'Bandai Visual',
+ 'slug' => 'bandaivisual',
'position' => 104,
],
[
- 'id' => 106,
- 'name' => 'Barclay',
- 'slug' => 'barclay',
+ 'id' => 106,
+ 'name' => 'Barclay',
+ 'slug' => 'barclay',
'position' => 105,
],
[
- 'id' => 107,
- 'name' => 'BBC',
- 'slug' => 'bbc',
+ 'id' => 107,
+ 'name' => 'BBC',
+ 'slug' => 'bbc',
'position' => 106,
],
[
- 'id' => 108,
- 'name' => 'BBi films',
- 'slug' => 'bbifilms',
+ 'id' => 108,
+ 'name' => 'BBi films',
+ 'slug' => 'bbifilms',
'position' => 107,
],
[
- 'id' => 109,
- 'name' => 'BCI Home Entertainment',
- 'slug' => 'bcihomeentertainment',
+ 'id' => 109,
+ 'name' => 'BCI Home Entertainment',
+ 'slug' => 'bcihomeentertainment',
'position' => 108,
],
[
- 'id' => 110,
- 'name' => 'Beggars Banquet',
- 'slug' => 'beggarsbanquet',
+ 'id' => 110,
+ 'name' => 'Beggars Banquet',
+ 'slug' => 'beggarsbanquet',
'position' => 109,
],
[
- 'id' => 111,
- 'name' => 'Bel Air Classiques',
- 'slug' => 'belairclassiques',
+ 'id' => 111,
+ 'name' => 'Bel Air Classiques',
+ 'slug' => 'belairclassiques',
'position' => 110,
],
[
- 'id' => 112,
- 'name' => 'Belga Films',
- 'slug' => 'belgafilms',
+ 'id' => 112,
+ 'name' => 'Belga Films',
+ 'slug' => 'belgafilms',
'position' => 111,
],
[
- 'id' => 113,
- 'name' => 'Belvedere',
- 'slug' => 'belvedere',
+ 'id' => 113,
+ 'name' => 'Belvedere',
+ 'slug' => 'belvedere',
'position' => 112,
],
[
- 'id' => 114,
- 'name' => 'Benelux Film Distributors',
- 'slug' => 'beneluxfilmdistributors',
+ 'id' => 114,
+ 'name' => 'Benelux Film Distributors',
+ 'slug' => 'beneluxfilmdistributors',
'position' => 113,
],
[
- 'id' => 115,
- 'name' => 'Bennett-Watt Media',
- 'slug' => 'bennettwattmedia',
+ 'id' => 115,
+ 'name' => 'Bennett-Watt Media',
+ 'slug' => 'bennettwattmedia',
'position' => 114,
],
[
- 'id' => 116,
- 'name' => 'Berlin Classics',
- 'slug' => 'berlinclassics',
+ 'id' => 116,
+ 'name' => 'Berlin Classics',
+ 'slug' => 'berlinclassics',
'position' => 115,
],
[
- 'id' => 117,
- 'name' => 'Berliner Philharmoniker Recordings',
- 'slug' => 'berlinerphilharmonikerrecordings',
+ 'id' => 117,
+ 'name' => 'Berliner Philharmoniker Recordings',
+ 'slug' => 'berlinerphilharmonikerrecordings',
'position' => 116,
],
[
- 'id' => 118,
- 'name' => 'Best Entertainment',
- 'slug' => 'bestentertainment',
+ 'id' => 118,
+ 'name' => 'Best Entertainment',
+ 'slug' => 'bestentertainment',
'position' => 117,
],
[
- 'id' => 119,
- 'name' => 'Beyond Home Entertainment',
- 'slug' => 'beyondhomeentertainment',
+ 'id' => 119,
+ 'name' => 'Beyond Home Entertainment',
+ 'slug' => 'beyondhomeentertainment',
'position' => 118,
],
[
- 'id' => 120,
- 'name' => 'BFI Video',
- 'slug' => 'bfivideo',
+ 'id' => 120,
+ 'name' => 'BFI Video',
+ 'slug' => 'bfivideo',
'position' => 119,
],
[
- 'id' => 121,
- 'name' => 'BFS Entertainment',
- 'slug' => 'bfsentertainment',
+ 'id' => 121,
+ 'name' => 'BFS Entertainment',
+ 'slug' => 'bfsentertainment',
'position' => 120,
],
[
- 'id' => 122,
- 'name' => 'Bhavani',
- 'slug' => 'bhavani',
+ 'id' => 122,
+ 'name' => 'Bhavani',
+ 'slug' => 'bhavani',
'position' => 121,
],
[
- 'id' => 123,
- 'name' => 'Biber Records',
- 'slug' => 'biberrecords',
+ 'id' => 123,
+ 'name' => 'Biber Records',
+ 'slug' => 'biberrecords',
'position' => 122,
],
[
- 'id' => 124,
- 'name' => 'Big Home Video',
- 'slug' => 'bighomevideo',
+ 'id' => 124,
+ 'name' => 'Big Home Video',
+ 'slug' => 'bighomevideo',
'position' => 123,
],
[
- 'id' => 125,
- 'name' => 'Bildstörung',
- 'slug' => 'bildstorung',
+ 'id' => 125,
+ 'name' => 'Bildstörung',
+ 'slug' => 'bildstorung',
'position' => 124,
],
[
- 'id' => 126,
- 'name' => 'Bill Zebub',
- 'slug' => 'billzebub',
+ 'id' => 126,
+ 'name' => 'Bill Zebub',
+ 'slug' => 'billzebub',
'position' => 125,
],
[
- 'id' => 127,
- 'name' => 'Birnenblatt',
- 'slug' => 'birnenblatt',
+ 'id' => 127,
+ 'name' => 'Birnenblatt',
+ 'slug' => 'birnenblatt',
'position' => 126,
],
[
- 'id' => 128,
- 'name' => 'Bit Wel',
- 'slug' => 'bitwel',
+ 'id' => 128,
+ 'name' => 'Bit Wel',
+ 'slug' => 'bitwel',
'position' => 127,
],
[
- 'id' => 129,
- 'name' => 'Black Box',
- 'slug' => 'blackbox',
+ 'id' => 129,
+ 'name' => 'Black Box',
+ 'slug' => 'blackbox',
'position' => 128,
],
[
- 'id' => 130,
- 'name' => 'Black Hill Pictures',
- 'slug' => 'blackhillpictures',
+ 'id' => 130,
+ 'name' => 'Black Hill Pictures',
+ 'slug' => 'blackhillpictures',
'position' => 129,
],
[
- 'id' => 131,
- 'name' => 'Black Hole Recordings',
- 'slug' => 'blackholerecordings',
+ 'id' => 131,
+ 'name' => 'Black Hole Recordings',
+ 'slug' => 'blackholerecordings',
'position' => 130,
],
[
- 'id' => 132,
- 'name' => 'Blaqout',
- 'slug' => 'blaqout',
+ 'id' => 132,
+ 'name' => 'Blaqout',
+ 'slug' => 'blaqout',
'position' => 131,
],
[
- 'id' => 133,
- 'name' => 'Blaufield Music',
- 'slug' => 'blaufieldmusic',
+ 'id' => 133,
+ 'name' => 'Blaufield Music',
+ 'slug' => 'blaufieldmusic',
'position' => 132,
],
[
- 'id' => 134,
- 'name' => 'Blockbuster Entertainment',
- 'slug' => 'blockbusterentertainment',
+ 'id' => 134,
+ 'name' => 'Blockbuster Entertainment',
+ 'slug' => 'blockbusterentertainment',
'position' => 133,
],
[
- 'id' => 135,
- 'name' => 'Blu Phase Media',
- 'slug' => 'bluphasemedia',
+ 'id' => 135,
+ 'name' => 'Blu Phase Media',
+ 'slug' => 'bluphasemedia',
'position' => 134,
],
[
- 'id' => 136,
- 'name' => 'Blu-ray Only',
- 'slug' => 'blurayonly',
+ 'id' => 136,
+ 'name' => 'Blu-ray Only',
+ 'slug' => 'blurayonly',
'position' => 135,
],
[
- 'id' => 137,
- 'name' => 'Blue Gentian Records',
- 'slug' => 'bluegentianrecords',
+ 'id' => 137,
+ 'name' => 'Blue Gentian Records',
+ 'slug' => 'bluegentianrecords',
'position' => 136,
],
[
- 'id' => 138,
- 'name' => 'Blue Kino',
- 'slug' => 'bluekino',
+ 'id' => 138,
+ 'name' => 'Blue Kino',
+ 'slug' => 'bluekino',
'position' => 137,
],
[
- 'id' => 139,
- 'name' => 'Blue Underground',
- 'slug' => 'blueunderground',
+ 'id' => 139,
+ 'name' => 'Blue Underground',
+ 'slug' => 'blueunderground',
'position' => 138,
],
[
- 'id' => 140,
- 'name' => 'BMG/Arista',
- 'slug' => 'bmgarista',
+ 'id' => 140,
+ 'name' => 'BMG/Arista',
+ 'slug' => 'bmgarista',
'position' => 139,
],
[
- 'id' => 141,
- 'name' => 'Bonton Film',
- 'slug' => 'bontonfilm',
+ 'id' => 141,
+ 'name' => 'Bonton Film',
+ 'slug' => 'bontonfilm',
'position' => 140,
],
[
- 'id' => 142,
- 'name' => 'Boomerang Pictures',
- 'slug' => 'boomerangpictures',
+ 'id' => 142,
+ 'name' => 'Boomerang Pictures',
+ 'slug' => 'boomerangpictures',
'position' => 141,
],
[
- 'id' => 143,
- 'name' => 'BQHL Éditions',
- 'slug' => 'bqhleditions',
+ 'id' => 143,
+ 'name' => 'BQHL Éditions',
+ 'slug' => 'bqhleditions',
'position' => 142,
],
[
- 'id' => 144,
- 'name' => 'Breaking Glass',
- 'slug' => 'breakingglass',
+ 'id' => 144,
+ 'name' => 'Breaking Glass',
+ 'slug' => 'breakingglass',
'position' => 143,
],
[
- 'id' => 145,
- 'name' => 'Bridgestone',
- 'slug' => 'bridgestone',
+ 'id' => 145,
+ 'name' => 'Bridgestone',
+ 'slug' => 'bridgestone',
'position' => 144,
],
[
- 'id' => 146,
- 'name' => 'Brink',
- 'slug' => 'brink',
+ 'id' => 146,
+ 'name' => 'Brink',
+ 'slug' => 'brink',
'position' => 145,
],
[
- 'id' => 147,
- 'name' => 'Broad Green Pictures',
- 'slug' => 'broadgreenpictures',
+ 'id' => 147,
+ 'name' => 'Broad Green Pictures',
+ 'slug' => 'broadgreenpictures',
'position' => 146,
],
[
- 'id' => 148,
- 'name' => 'Busch Media Group',
- 'slug' => 'buschmediagroup',
+ 'id' => 148,
+ 'name' => 'Busch Media Group',
+ 'slug' => 'buschmediagroup',
'position' => 147,
],
[
- 'id' => 149,
- 'name' => 'C MAJOR',
- 'slug' => 'cmajor',
+ 'id' => 149,
+ 'name' => 'C MAJOR',
+ 'slug' => 'cmajor',
'position' => 148,
],
[
- 'id' => 150,
- 'name' => 'C.B.S.',
- 'slug' => 'cbs',
+ 'id' => 150,
+ 'name' => 'C.B.S.',
+ 'slug' => 'cbs',
'position' => 149,
],
[
- 'id' => 151,
- 'name' => 'CaiChang',
- 'slug' => 'caichang',
+ 'id' => 151,
+ 'name' => 'CaiChang',
+ 'slug' => 'caichang',
'position' => 150,
],
[
- 'id' => 152,
- 'name' => 'Califórnia Filmes',
- 'slug' => 'californiafilmes',
+ 'id' => 152,
+ 'name' => 'Califórnia Filmes',
+ 'slug' => 'californiafilmes',
'position' => 151,
],
[
- 'id' => 153,
- 'name' => 'Cameo',
- 'slug' => 'cameo',
+ 'id' => 153,
+ 'name' => 'Cameo',
+ 'slug' => 'cameo',
'position' => 152,
],
[
- 'id' => 154,
- 'name' => 'Camera Obscura',
- 'slug' => 'cameraobscura',
+ 'id' => 154,
+ 'name' => 'Camera Obscura',
+ 'slug' => 'cameraobscura',
'position' => 153,
],
[
- 'id' => 155,
- 'name' => 'Camerata',
- 'slug' => 'camerata',
+ 'id' => 155,
+ 'name' => 'Camerata',
+ 'slug' => 'camerata',
'position' => 154,
],
[
- 'id' => 156,
- 'name' => 'Camp Motion Pictures',
- 'slug' => 'campmotionpictures',
+ 'id' => 156,
+ 'name' => 'Camp Motion Pictures',
+ 'slug' => 'campmotionpictures',
'position' => 155,
],
[
- 'id' => 157,
- 'name' => 'Capelight Pictures',
- 'slug' => 'capelightpictures',
+ 'id' => 157,
+ 'name' => 'Capelight Pictures',
+ 'slug' => 'capelightpictures',
'position' => 156,
],
[
- 'id' => 158,
- 'name' => 'Capitol',
- 'slug' => 'capitol',
+ 'id' => 158,
+ 'name' => 'Capitol',
+ 'slug' => 'capitol',
'position' => 157,
],
[
- 'id' => 159,
- 'name' => 'Capitol Records',
- 'slug' => 'capitolrecords',
+ 'id' => 159,
+ 'name' => 'Capitol Records',
+ 'slug' => 'capitolrecords',
'position' => 158,
],
[
- 'id' => 160,
- 'name' => 'Capricci',
- 'slug' => 'capricci',
+ 'id' => 160,
+ 'name' => 'Capricci',
+ 'slug' => 'capricci',
'position' => 159,
],
[
- 'id' => 161,
- 'name' => 'Cargo Records',
- 'slug' => 'cargorecords',
+ 'id' => 161,
+ 'name' => 'Cargo Records',
+ 'slug' => 'cargorecords',
'position' => 160,
],
[
- 'id' => 162,
- 'name' => 'Carlotta Films',
- 'slug' => 'carlottafilms',
+ 'id' => 162,
+ 'name' => 'Carlotta Films',
+ 'slug' => 'carlottafilms',
'position' => 161,
],
[
- 'id' => 163,
- 'name' => 'Carmen Film',
- 'slug' => 'carmenfilm',
+ 'id' => 163,
+ 'name' => 'Carmen Film',
+ 'slug' => 'carmenfilm',
'position' => 162,
],
[
- 'id' => 164,
- 'name' => 'Cascade',
- 'slug' => 'cascade',
+ 'id' => 164,
+ 'name' => 'Cascade',
+ 'slug' => 'cascade',
'position' => 163,
],
[
- 'id' => 165,
- 'name' => 'Catchplay',
- 'slug' => 'catchplay',
+ 'id' => 165,
+ 'name' => 'Catchplay',
+ 'slug' => 'catchplay',
'position' => 164,
],
[
- 'id' => 166,
- 'name' => 'Cauldron Films',
- 'slug' => 'cauldronfilms',
+ 'id' => 166,
+ 'name' => 'Cauldron Films',
+ 'slug' => 'cauldronfilms',
'position' => 165,
],
[
- 'id' => 167,
- 'name' => 'CBS Television Studios',
- 'slug' => 'cbstelevisionstudios',
+ 'id' => 167,
+ 'name' => 'CBS Television Studios',
+ 'slug' => 'cbstelevisionstudios',
'position' => 166,
],
[
- 'id' => 168,
- 'name' => 'CCTV',
- 'slug' => 'cctv',
+ 'id' => 168,
+ 'name' => 'CCTV',
+ 'slug' => 'cctv',
'position' => 167,
],
[
- 'id' => 169,
- 'name' => 'CCV Entertainment',
- 'slug' => 'ccventertainment',
+ 'id' => 169,
+ 'name' => 'CCV Entertainment',
+ 'slug' => 'ccventertainment',
'position' => 168,
],
[
- 'id' => 170,
- 'name' => 'CD Baby',
- 'slug' => 'cdbaby',
+ 'id' => 170,
+ 'name' => 'CD Baby',
+ 'slug' => 'cdbaby',
'position' => 169,
],
[
- 'id' => 171,
- 'name' => 'CD Land',
- 'slug' => 'cdland',
+ 'id' => 171,
+ 'name' => 'CD Land',
+ 'slug' => 'cdland',
'position' => 170,
],
[
- 'id' => 172,
- 'name' => 'Cecchi Gori',
- 'slug' => 'cecchigori',
+ 'id' => 172,
+ 'name' => 'Cecchi Gori',
+ 'slug' => 'cecchigori',
'position' => 171,
],
[
- 'id' => 173,
- 'name' => 'Century Media',
- 'slug' => 'centurymedia',
+ 'id' => 173,
+ 'name' => 'Century Media',
+ 'slug' => 'centurymedia',
'position' => 172,
],
[
- 'id' => 174,
- 'name' => 'Chuan Xun Shi Dai Multimedia',
- 'slug' => 'chuanxunshidaimultimedia',
+ 'id' => 174,
+ 'name' => 'Chuan Xun Shi Dai Multimedia',
+ 'slug' => 'chuanxunshidaimultimedia',
'position' => 173,
],
[
- 'id' => 175,
- 'name' => 'Cine-Asia',
- 'slug' => 'cineasia',
+ 'id' => 175,
+ 'name' => 'Cine-Asia',
+ 'slug' => 'cineasia',
'position' => 174,
],
[
- 'id' => 176,
- 'name' => 'Cinéart',
- 'slug' => 'cineart',
+ 'id' => 176,
+ 'name' => 'Cinéart',
+ 'slug' => 'cineart',
'position' => 175,
],
[
- 'id' => 177,
- 'name' => 'Cinedigm',
- 'slug' => 'cinedigm',
+ 'id' => 177,
+ 'name' => 'Cinedigm',
+ 'slug' => 'cinedigm',
'position' => 176,
],
[
- 'id' => 178,
- 'name' => 'Cinefil Imagica',
- 'slug' => 'cinefilimagica',
+ 'id' => 178,
+ 'name' => 'Cinefil Imagica',
+ 'slug' => 'cinefilimagica',
'position' => 177,
],
[
- 'id' => 179,
- 'name' => 'Cinema Epoch',
- 'slug' => 'cinemaepoch',
+ 'id' => 179,
+ 'name' => 'Cinema Epoch',
+ 'slug' => 'cinemaepoch',
'position' => 178,
],
[
- 'id' => 180,
- 'name' => 'Cinema Guild',
- 'slug' => 'cinemaguild',
+ 'id' => 180,
+ 'name' => 'Cinema Guild',
+ 'slug' => 'cinemaguild',
'position' => 179,
],
[
- 'id' => 181,
- 'name' => 'Cinema Libre Studios',
- 'slug' => 'cinemalibrestudios',
+ 'id' => 181,
+ 'name' => 'Cinema Libre Studios',
+ 'slug' => 'cinemalibrestudios',
'position' => 180,
],
[
- 'id' => 182,
- 'name' => 'Cinema Mondo',
- 'slug' => 'cinemamondo',
+ 'id' => 182,
+ 'name' => 'Cinema Mondo',
+ 'slug' => 'cinemamondo',
'position' => 181,
],
[
- 'id' => 183,
- 'name' => 'Cinematic Vision',
- 'slug' => 'cinematicvision',
+ 'id' => 183,
+ 'name' => 'Cinematic Vision',
+ 'slug' => 'cinematicvision',
'position' => 182,
],
[
- 'id' => 184,
- 'name' => 'Cineploit Records',
- 'slug' => 'cineploitrecords',
+ 'id' => 184,
+ 'name' => 'Cineploit Records',
+ 'slug' => 'cineploitrecords',
'position' => 183,
],
[
- 'id' => 185,
- 'name' => 'Cinestrange Extreme',
- 'slug' => 'cinestrangeextreme',
+ 'id' => 185,
+ 'name' => 'Cinestrange Extreme',
+ 'slug' => 'cinestrangeextreme',
'position' => 184,
],
[
- 'id' => 186,
- 'name' => 'Citel Video',
- 'slug' => 'citelvideo',
+ 'id' => 186,
+ 'name' => 'Citel Video',
+ 'slug' => 'citelvideo',
'position' => 185,
],
[
- 'id' => 187,
- 'name' => 'CJ Entertainment',
- 'slug' => 'cjentertainment',
+ 'id' => 187,
+ 'name' => 'CJ Entertainment',
+ 'slug' => 'cjentertainment',
'position' => 186,
],
[
- 'id' => 188,
- 'name' => 'Classic Media',
- 'slug' => 'classicmedia',
+ 'id' => 188,
+ 'name' => 'Classic Media',
+ 'slug' => 'classicmedia',
'position' => 187,
],
[
- 'id' => 189,
- 'name' => 'ClassicFlix',
- 'slug' => 'classicflix',
+ 'id' => 189,
+ 'name' => 'ClassicFlix',
+ 'slug' => 'classicflix',
'position' => 188,
],
[
- 'id' => 190,
- 'name' => 'ClassicLine',
- 'slug' => 'classicline',
+ 'id' => 190,
+ 'name' => 'ClassicLine',
+ 'slug' => 'classicline',
'position' => 189,
],
[
- 'id' => 191,
- 'name' => 'Claudio Records',
- 'slug' => 'claudiorecords',
+ 'id' => 191,
+ 'name' => 'Claudio Records',
+ 'slug' => 'claudiorecords',
'position' => 190,
],
[
- 'id' => 192,
- 'name' => 'Clear Vision',
- 'slug' => 'clearvision',
+ 'id' => 192,
+ 'name' => 'Clear Vision',
+ 'slug' => 'clearvision',
'position' => 191,
],
[
- 'id' => 193,
- 'name' => 'Cleopatra',
- 'slug' => 'cleopatra',
+ 'id' => 193,
+ 'name' => 'Cleopatra',
+ 'slug' => 'cleopatra',
'position' => 192,
],
[
- 'id' => 194,
- 'name' => 'Close Up',
- 'slug' => 'closeup',
+ 'id' => 194,
+ 'name' => 'Close Up',
+ 'slug' => 'closeup',
'position' => 193,
],
[
- 'id' => 195,
- 'name' => 'CMS Media Limited',
- 'slug' => 'cmsmedialimited',
+ 'id' => 195,
+ 'name' => 'CMS Media Limited',
+ 'slug' => 'cmsmedialimited',
'position' => 194,
],
[
- 'id' => 196,
- 'name' => 'CMV Laservision',
- 'slug' => 'cmvlaservision',
+ 'id' => 196,
+ 'name' => 'CMV Laservision',
+ 'slug' => 'cmvlaservision',
'position' => 195,
],
[
- 'id' => 197,
- 'name' => 'CN Entertainment',
- 'slug' => 'cnentertainment',
+ 'id' => 197,
+ 'name' => 'CN Entertainment',
+ 'slug' => 'cnentertainment',
'position' => 196,
],
[
- 'id' => 198,
- 'name' => 'Code Red',
- 'slug' => 'codered',
+ 'id' => 198,
+ 'name' => 'Code Red',
+ 'slug' => 'codered',
'position' => 197,
],
[
- 'id' => 199,
- 'name' => 'Cohen Media Group',
- 'slug' => 'cohenmediagroup',
+ 'id' => 199,
+ 'name' => 'Cohen Media Group',
+ 'slug' => 'cohenmediagroup',
'position' => 198,
],
[
- 'id' => 200,
- 'name' => 'Coin de mire Cinéma',
- 'slug' => 'coindemirecinema',
+ 'id' => 200,
+ 'name' => 'Coin de mire Cinéma',
+ 'slug' => 'coindemirecinema',
'position' => 199,
],
[
- 'id' => 201,
- 'name' => 'Colosseo Film',
- 'slug' => 'colosseofilm',
+ 'id' => 201,
+ 'name' => 'Colosseo Film',
+ 'slug' => 'colosseofilm',
'position' => 200,
],
[
- 'id' => 202,
- 'name' => 'Columbia',
- 'slug' => 'columbia',
+ 'id' => 202,
+ 'name' => 'Columbia',
+ 'slug' => 'columbia',
'position' => 201,
],
[
- 'id' => 203,
- 'name' => 'Columbia Pictures',
- 'slug' => 'columbiapictures',
+ 'id' => 203,
+ 'name' => 'Columbia Pictures',
+ 'slug' => 'columbiapictures',
'position' => 202,
],
[
- 'id' => 204,
- 'name' => 'Columbia/Tri-Star',
- 'slug' => 'columbiatristar',
+ 'id' => 204,
+ 'name' => 'Columbia/Tri-Star',
+ 'slug' => 'columbiatristar',
'position' => 203,
],
[
- 'id' => 205,
- 'name' => 'Commercial Marketing',
- 'slug' => 'commercialmarketing',
+ 'id' => 205,
+ 'name' => 'Commercial Marketing',
+ 'slug' => 'commercialmarketing',
'position' => 204,
],
[
- 'id' => 206,
- 'name' => 'Concord Music Group',
- 'slug' => 'concordmusicgroup',
+ 'id' => 206,
+ 'name' => 'Concord Music Group',
+ 'slug' => 'concordmusicgroup',
'position' => 205,
],
[
- 'id' => 207,
- 'name' => 'Concorde Video',
- 'slug' => 'concordevideo',
+ 'id' => 207,
+ 'name' => 'Concorde Video',
+ 'slug' => 'concordevideo',
'position' => 206,
],
[
- 'id' => 208,
- 'name' => 'Condor',
- 'slug' => 'condor',
+ 'id' => 208,
+ 'name' => 'Condor',
+ 'slug' => 'condor',
'position' => 207,
],
[
- 'id' => 209,
- 'name' => 'Constantin Film',
- 'slug' => 'constantinfilm',
+ 'id' => 209,
+ 'name' => 'Constantin Film',
+ 'slug' => 'constantinfilm',
'position' => 208,
],
[
- 'id' => 210,
- 'name' => 'Constantino Filmes',
- 'slug' => 'constantinofilmes',
+ 'id' => 210,
+ 'name' => 'Constantino Filmes',
+ 'slug' => 'constantinofilmes',
'position' => 209,
],
[
- 'id' => 211,
- 'name' => 'Constructive Media Service',
- 'slug' => 'constructivemediaservice',
+ 'id' => 211,
+ 'name' => 'Constructive Media Service',
+ 'slug' => 'constructivemediaservice',
'position' => 210,
],
[
- 'id' => 212,
- 'name' => 'Content Zone',
- 'slug' => 'contentzone',
+ 'id' => 212,
+ 'name' => 'Content Zone',
+ 'slug' => 'contentzone',
'position' => 211,
],
[
- 'id' => 213,
- 'name' => 'Contents Gate',
- 'slug' => 'contentsgate',
+ 'id' => 213,
+ 'name' => 'Contents Gate',
+ 'slug' => 'contentsgate',
'position' => 212,
],
[
- 'id' => 214,
- 'name' => 'Coqueiro Verde',
- 'slug' => 'coqueiroverde',
+ 'id' => 214,
+ 'name' => 'Coqueiro Verde',
+ 'slug' => 'coqueiroverde',
'position' => 213,
],
[
- 'id' => 215,
- 'name' => 'Cornerstone Media',
- 'slug' => 'cornerstonemedia',
+ 'id' => 215,
+ 'name' => 'Cornerstone Media',
+ 'slug' => 'cornerstonemedia',
'position' => 214,
],
[
- 'id' => 216,
- 'name' => 'CP Digital',
- 'slug' => 'cpdigital',
+ 'id' => 216,
+ 'name' => 'CP Digital',
+ 'slug' => 'cpdigital',
'position' => 215,
],
[
- 'id' => 217,
- 'name' => 'Crest Movies',
- 'slug' => 'crestmovies',
+ 'id' => 217,
+ 'name' => 'Crest Movies',
+ 'slug' => 'crestmovies',
'position' => 216,
],
[
- 'id' => 218,
- 'name' => 'Criterion',
- 'slug' => 'criterion',
+ 'id' => 218,
+ 'name' => 'Criterion',
+ 'slug' => 'criterion',
'position' => 217,
],
[
- 'id' => 219,
- 'name' => 'Crystal Classics',
- 'slug' => 'crystalclassics',
+ 'id' => 219,
+ 'name' => 'Crystal Classics',
+ 'slug' => 'crystalclassics',
'position' => 218,
],
[
- 'id' => 220,
- 'name' => 'Cult Epics',
- 'slug' => 'cultepics',
+ 'id' => 220,
+ 'name' => 'Cult Epics',
+ 'slug' => 'cultepics',
'position' => 219,
],
[
- 'id' => 221,
- 'name' => 'Cult Films',
- 'slug' => 'cultfilms',
+ 'id' => 221,
+ 'name' => 'Cult Films',
+ 'slug' => 'cultfilms',
'position' => 220,
],
[
- 'id' => 222,
- 'name' => 'Cult Video',
- 'slug' => 'cultvideo',
+ 'id' => 222,
+ 'name' => 'Cult Video',
+ 'slug' => 'cultvideo',
'position' => 221,
],
[
- 'id' => 223,
- 'name' => 'Curzon Film World',
- 'slug' => 'curzonfilmworld',
+ 'id' => 223,
+ 'name' => 'Curzon Film World',
+ 'slug' => 'curzonfilmworld',
'position' => 222,
],
[
- 'id' => 224,
- 'name' => 'D Films',
- 'slug' => 'dfilms',
+ 'id' => 224,
+ 'name' => 'D Films',
+ 'slug' => 'dfilms',
'position' => 223,
],
[
- 'id' => 225,
- 'name' => 'D\'ailly Company',
- 'slug' => 'daillycompany',
+ 'id' => 225,
+ 'name' => 'D\'ailly Company',
+ 'slug' => 'daillycompany',
'position' => 224,
],
[
- 'id' => 226,
- 'name' => 'Da Capo',
- 'slug' => 'dacapo',
+ 'id' => 226,
+ 'name' => 'Da Capo',
+ 'slug' => 'dacapo',
'position' => 225,
],
[
- 'id' => 227,
- 'name' => 'DA Music',
- 'slug' => 'damusic',
+ 'id' => 227,
+ 'name' => 'DA Music',
+ 'slug' => 'damusic',
'position' => 226,
],
[
- 'id' => 228,
- 'name' => 'Dall\'Angelo Pictures',
- 'slug' => 'dallangelopictures',
+ 'id' => 228,
+ 'name' => 'Dall\'Angelo Pictures',
+ 'slug' => 'dallangelopictures',
'position' => 227,
],
[
- 'id' => 229,
- 'name' => 'Daredo',
- 'slug' => 'daredo',
+ 'id' => 229,
+ 'name' => 'Daredo',
+ 'slug' => 'daredo',
'position' => 228,
],
[
- 'id' => 230,
- 'name' => 'Dark Force Entertainment',
- 'slug' => 'darkforceentertainment',
+ 'id' => 230,
+ 'name' => 'Dark Force Entertainment',
+ 'slug' => 'darkforceentertainment',
'position' => 229,
],
[
- 'id' => 231,
- 'name' => 'Dark Side Releasing',
- 'slug' => 'darksidereleasing',
+ 'id' => 231,
+ 'name' => 'Dark Side Releasing',
+ 'slug' => 'darksidereleasing',
'position' => 230,
],
[
- 'id' => 232,
- 'name' => 'Dazzler Media',
- 'slug' => 'dazzlermedia',
+ 'id' => 232,
+ 'name' => 'Dazzler Media',
+ 'slug' => 'dazzlermedia',
'position' => 231,
],
[
- 'id' => 233,
- 'name' => 'DCM Pictures',
- 'slug' => 'dcmpictures',
+ 'id' => 233,
+ 'name' => 'DCM Pictures',
+ 'slug' => 'dcmpictures',
'position' => 232,
],
[
- 'id' => 234,
- 'name' => 'DeAPlaneta',
- 'slug' => 'deaplaneta',
+ 'id' => 234,
+ 'name' => 'DeAPlaneta',
+ 'slug' => 'deaplaneta',
'position' => 233,
],
[
- 'id' => 235,
- 'name' => 'Decca',
- 'slug' => 'decca',
+ 'id' => 235,
+ 'name' => 'Decca',
+ 'slug' => 'decca',
'position' => 234,
],
[
- 'id' => 236,
- 'name' => 'Deepjoy',
- 'slug' => 'deepjoy',
+ 'id' => 236,
+ 'name' => 'Deepjoy',
+ 'slug' => 'deepjoy',
'position' => 235,
],
[
- 'id' => 237,
- 'name' => 'Defiant Screen Entertainment',
- 'slug' => 'defiantscreenentertainment',
+ 'id' => 237,
+ 'name' => 'Defiant Screen Entertainment',
+ 'slug' => 'defiantscreenentertainment',
'position' => 236,
],
[
- 'id' => 238,
- 'name' => 'Delos',
- 'slug' => 'delos',
+ 'id' => 238,
+ 'name' => 'Delos',
+ 'slug' => 'delos',
'position' => 237,
],
[
- 'id' => 239,
- 'name' => 'Delphian Records',
- 'slug' => 'delphianrecords',
+ 'id' => 239,
+ 'name' => 'Delphian Records',
+ 'slug' => 'delphianrecords',
'position' => 238,
],
[
- 'id' => 240,
- 'name' => 'Delta Music & Entertainment',
- 'slug' => 'deltamusicentertainment',
+ 'id' => 240,
+ 'name' => 'Delta Music & Entertainment',
+ 'slug' => 'deltamusicentertainment',
'position' => 239,
],
[
- 'id' => 241,
- 'name' => 'Deltamac Co. Ltd.',
- 'slug' => 'deltamaccoltd',
+ 'id' => 241,
+ 'name' => 'Deltamac Co. Ltd.',
+ 'slug' => 'deltamaccoltd',
'position' => 240,
],
[
- 'id' => 242,
- 'name' => 'Demand Media',
- 'slug' => 'demandmedia',
+ 'id' => 242,
+ 'name' => 'Demand Media',
+ 'slug' => 'demandmedia',
'position' => 241,
],
[
- 'id' => 243,
- 'name' => 'DEP',
- 'slug' => 'dep',
+ 'id' => 243,
+ 'name' => 'DEP',
+ 'slug' => 'dep',
'position' => 242,
],
[
- 'id' => 244,
- 'name' => 'Deutsche Grammophon',
- 'slug' => 'deutschegrammophon',
+ 'id' => 244,
+ 'name' => 'Deutsche Grammophon',
+ 'slug' => 'deutschegrammophon',
'position' => 243,
],
[
- 'id' => 245,
- 'name' => 'DFW',
- 'slug' => 'dfw',
+ 'id' => 245,
+ 'name' => 'DFW',
+ 'slug' => 'dfw',
'position' => 244,
],
[
- 'id' => 246,
- 'name' => 'DGM',
- 'slug' => 'dgm',
+ 'id' => 246,
+ 'name' => 'DGM',
+ 'slug' => 'dgm',
'position' => 245,
],
[
- 'id' => 247,
- 'name' => 'Diaphana',
- 'slug' => 'diaphana',
+ 'id' => 247,
+ 'name' => 'Diaphana',
+ 'slug' => 'diaphana',
'position' => 246,
],
[
- 'id' => 248,
- 'name' => 'DigiDreams Studios',
- 'slug' => 'digidreamsstudios',
+ 'id' => 248,
+ 'name' => 'DigiDreams Studios',
+ 'slug' => 'digidreamsstudios',
'position' => 247,
],
[
- 'id' => 249,
- 'name' => 'Digital Environments',
- 'slug' => 'digitalenvironments',
+ 'id' => 249,
+ 'name' => 'Digital Environments',
+ 'slug' => 'digitalenvironments',
'position' => 248,
],
[
- 'id' => 250,
- 'name' => 'Discotek Media',
- 'slug' => 'discotekmedia',
+ 'id' => 250,
+ 'name' => 'Discotek Media',
+ 'slug' => 'discotekmedia',
'position' => 249,
],
[
- 'id' => 251,
- 'name' => 'Discovery Channel',
- 'slug' => 'discoverychannel',
+ 'id' => 251,
+ 'name' => 'Discovery Channel',
+ 'slug' => 'discoverychannel',
'position' => 250,
],
[
- 'id' => 252,
- 'name' => 'Disk Kino',
- 'slug' => 'diskkino',
+ 'id' => 252,
+ 'name' => 'Disk Kino',
+ 'slug' => 'diskkino',
'position' => 251,
],
[
- 'id' => 253,
- 'name' => 'Disney / Buena Vista',
- 'slug' => 'disneybuenavista',
+ 'id' => 253,
+ 'name' => 'Disney / Buena Vista',
+ 'slug' => 'disneybuenavista',
'position' => 252,
],
[
- 'id' => 254,
- 'name' => 'Distribution Select',
- 'slug' => 'distributionselect',
+ 'id' => 254,
+ 'name' => 'Distribution Select',
+ 'slug' => 'distributionselect',
'position' => 253,
],
[
- 'id' => 255,
- 'name' => 'Divisa',
- 'slug' => 'divisa',
+ 'id' => 255,
+ 'name' => 'Divisa',
+ 'slug' => 'divisa',
'position' => 254,
],
[
- 'id' => 256,
- 'name' => 'Dnc Entertainment',
- 'slug' => 'dncentertainment',
+ 'id' => 256,
+ 'name' => 'Dnc Entertainment',
+ 'slug' => 'dncentertainment',
'position' => 255,
],
[
- 'id' => 257,
- 'name' => 'Dogwoof',
- 'slug' => 'dogwoof',
+ 'id' => 257,
+ 'name' => 'Dogwoof',
+ 'slug' => 'dogwoof',
'position' => 256,
],
[
- 'id' => 258,
- 'name' => 'Dolmen Home Video',
- 'slug' => 'dolmenhomevideo',
+ 'id' => 258,
+ 'name' => 'Dolmen Home Video',
+ 'slug' => 'dolmenhomevideo',
'position' => 257,
],
[
- 'id' => 259,
- 'name' => 'Donau Film',
- 'slug' => 'donaufilm',
+ 'id' => 259,
+ 'name' => 'Donau Film',
+ 'slug' => 'donaufilm',
'position' => 258,
],
[
- 'id' => 260,
- 'name' => 'Dorado Films',
- 'slug' => 'doradofilms',
+ 'id' => 260,
+ 'name' => 'Dorado Films',
+ 'slug' => 'doradofilms',
'position' => 259,
],
[
- 'id' => 261,
- 'name' => 'Drafthouse Films',
- 'slug' => 'drafthousefilms',
+ 'id' => 261,
+ 'name' => 'Drafthouse Films',
+ 'slug' => 'drafthousefilms',
'position' => 260,
],
[
- 'id' => 262,
- 'name' => 'Dragon Film Entertainment',
- 'slug' => 'dragonfilmentertainment',
+ 'id' => 262,
+ 'name' => 'Dragon Film Entertainment',
+ 'slug' => 'dragonfilmentertainment',
'position' => 261,
],
[
- 'id' => 263,
- 'name' => 'DreamWorks',
- 'slug' => 'dreamworks',
+ 'id' => 263,
+ 'name' => 'DreamWorks',
+ 'slug' => 'dreamworks',
'position' => 262,
],
[
- 'id' => 264,
- 'name' => 'Drive On Records',
- 'slug' => 'driveonrecords',
+ 'id' => 264,
+ 'name' => 'Drive On Records',
+ 'slug' => 'driveonrecords',
'position' => 263,
],
[
- 'id' => 265,
- 'name' => 'DS Media',
- 'slug' => 'dsmedia',
+ 'id' => 265,
+ 'name' => 'DS Media',
+ 'slug' => 'dsmedia',
'position' => 264,
],
[
- 'id' => 266,
- 'name' => 'DTP Entertainment AG',
- 'slug' => 'dtpentertainmentag',
+ 'id' => 266,
+ 'name' => 'DTP Entertainment AG',
+ 'slug' => 'dtpentertainmentag',
'position' => 265,
],
[
- 'id' => 267,
- 'name' => 'DTS Entertainment',
- 'slug' => 'dtsentertainment',
+ 'id' => 267,
+ 'name' => 'DTS Entertainment',
+ 'slug' => 'dtsentertainment',
'position' => 266,
],
[
- 'id' => 268,
- 'name' => 'Duke Marketing',
- 'slug' => 'dukemarketing',
+ 'id' => 268,
+ 'name' => 'Duke Marketing',
+ 'slug' => 'dukemarketing',
'position' => 267,
],
[
- 'id' => 269,
- 'name' => 'Duke Video Distribution',
- 'slug' => 'dukevideodistribution',
+ 'id' => 269,
+ 'name' => 'Duke Video Distribution',
+ 'slug' => 'dukevideodistribution',
'position' => 268,
],
[
- 'id' => 270,
- 'name' => 'Dutch FilmWorks',
- 'slug' => 'dutchfilmworks',
+ 'id' => 270,
+ 'name' => 'Dutch FilmWorks',
+ 'slug' => 'dutchfilmworks',
'position' => 269,
],
[
- 'id' => 271,
- 'name' => 'DVD International',
- 'slug' => 'dvdinternational',
+ 'id' => 271,
+ 'name' => 'DVD International',
+ 'slug' => 'dvdinternational',
'position' => 270,
],
[
- 'id' => 272,
- 'name' => 'Dybex',
- 'slug' => 'dybex',
+ 'id' => 272,
+ 'name' => 'Dybex',
+ 'slug' => 'dybex',
'position' => 271,
],
[
- 'id' => 273,
- 'name' => 'Dynamic',
- 'slug' => 'dynamic',
+ 'id' => 273,
+ 'name' => 'Dynamic',
+ 'slug' => 'dynamic',
'position' => 272,
],
[
- 'id' => 274,
- 'name' => 'Dynit',
- 'slug' => 'dynit',
+ 'id' => 274,
+ 'name' => 'Dynit',
+ 'slug' => 'dynit',
'position' => 273,
],
[
- 'id' => 275,
- 'name' => 'E1 Entertainment',
- 'slug' => 'e1entertainment',
+ 'id' => 275,
+ 'name' => 'E1 Entertainment',
+ 'slug' => 'e1entertainment',
'position' => 274,
],
[
- 'id' => 276,
- 'name' => 'Eagle Entertainment',
- 'slug' => 'eagleentertainment',
+ 'id' => 276,
+ 'name' => 'Eagle Entertainment',
+ 'slug' => 'eagleentertainment',
'position' => 275,
],
[
- 'id' => 277,
- 'name' => 'Eagle Home Entertainment Pvt.Ltd.',
- 'slug' => 'eaglehomeentertainmentpvtltd',
+ 'id' => 277,
+ 'name' => 'Eagle Home Entertainment Pvt.Ltd.',
+ 'slug' => 'eaglehomeentertainmentpvtltd',
'position' => 276,
],
[
- 'id' => 278,
- 'name' => 'Eagle Pictures',
- 'slug' => 'eaglepictures',
+ 'id' => 278,
+ 'name' => 'Eagle Pictures',
+ 'slug' => 'eaglepictures',
'position' => 277,
],
[
- 'id' => 279,
- 'name' => 'Eagle Rock Entertainment',
- 'slug' => 'eaglerockentertainment',
+ 'id' => 279,
+ 'name' => 'Eagle Rock Entertainment',
+ 'slug' => 'eaglerockentertainment',
'position' => 278,
],
[
- 'id' => 280,
- 'name' => 'Eagle Vision Media',
- 'slug' => 'eaglevisionmedia',
+ 'id' => 280,
+ 'name' => 'Eagle Vision Media',
+ 'slug' => 'eaglevisionmedia',
'position' => 279,
],
[
- 'id' => 281,
- 'name' => 'Earmusic',
- 'slug' => 'earmusic',
+ 'id' => 281,
+ 'name' => 'Earmusic',
+ 'slug' => 'earmusic',
'position' => 280,
],
[
- 'id' => 282,
- 'name' => 'Earth Entertainment',
- 'slug' => 'earthentertainment',
+ 'id' => 282,
+ 'name' => 'Earth Entertainment',
+ 'slug' => 'earthentertainment',
'position' => 281,
],
[
- 'id' => 283,
- 'name' => 'Echo Bridge Entertainment',
- 'slug' => 'echobridgeentertainment',
+ 'id' => 283,
+ 'name' => 'Echo Bridge Entertainment',
+ 'slug' => 'echobridgeentertainment',
'position' => 282,
],
[
- 'id' => 284,
- 'name' => 'Edel Germany GmbH',
- 'slug' => 'edelgermanygmbh',
+ 'id' => 284,
+ 'name' => 'Edel Germany GmbH',
+ 'slug' => 'edelgermanygmbh',
'position' => 283,
],
[
- 'id' => 285,
- 'name' => 'Edel records',
- 'slug' => 'edelrecords',
+ 'id' => 285,
+ 'name' => 'Edel records',
+ 'slug' => 'edelrecords',
'position' => 284,
],
[
- 'id' => 286,
- 'name' => 'Edition Tonfilm',
- 'slug' => 'editiontonfilm',
+ 'id' => 286,
+ 'name' => 'Edition Tonfilm',
+ 'slug' => 'editiontonfilm',
'position' => 285,
],
[
- 'id' => 287,
- 'name' => 'Editions Montparnasse',
- 'slug' => 'editionsmontparnasse',
+ 'id' => 287,
+ 'name' => 'Editions Montparnasse',
+ 'slug' => 'editionsmontparnasse',
'position' => 286,
],
[
- 'id' => 288,
- 'name' => 'Edko Films Ltd.',
- 'slug' => 'edkofilmsltd',
+ 'id' => 288,
+ 'name' => 'Edko Films Ltd.',
+ 'slug' => 'edkofilmsltd',
'position' => 287,
],
[
- 'id' => 289,
- 'name' => 'Ein\'s M&M CO',
- 'slug' => 'einsmmco',
+ 'id' => 289,
+ 'name' => 'Ein\'s M&M CO',
+ 'slug' => 'einsmmco',
'position' => 288,
],
[
- 'id' => 290,
- 'name' => 'ELEA-Media',
- 'slug' => 'eleamedia',
+ 'id' => 290,
+ 'name' => 'ELEA-Media',
+ 'slug' => 'eleamedia',
'position' => 289,
],
[
- 'id' => 291,
- 'name' => 'Electric Picture',
- 'slug' => 'electricpicture',
+ 'id' => 291,
+ 'name' => 'Electric Picture',
+ 'slug' => 'electricpicture',
'position' => 290,
],
[
- 'id' => 292,
- 'name' => 'Elephant Films',
- 'slug' => 'elephantfilms',
+ 'id' => 292,
+ 'name' => 'Elephant Films',
+ 'slug' => 'elephantfilms',
'position' => 291,
],
[
- 'id' => 293,
- 'name' => 'Elevation',
- 'slug' => 'elevation',
+ 'id' => 293,
+ 'name' => 'Elevation',
+ 'slug' => 'elevation',
'position' => 292,
],
[
- 'id' => 294,
- 'name' => 'EMI',
- 'slug' => 'emi',
+ 'id' => 294,
+ 'name' => 'EMI',
+ 'slug' => 'emi',
'position' => 293,
],
[
- 'id' => 295,
- 'name' => 'Emon',
- 'slug' => 'emon',
+ 'id' => 295,
+ 'name' => 'Emon',
+ 'slug' => 'emon',
'position' => 294,
],
[
- 'id' => 296,
- 'name' => 'EMS',
- 'slug' => 'ems',
+ 'id' => 296,
+ 'name' => 'EMS',
+ 'slug' => 'ems',
'position' => 295,
],
[
- 'id' => 297,
- 'name' => 'Emylia',
- 'slug' => 'emylia',
+ 'id' => 297,
+ 'name' => 'Emylia',
+ 'slug' => 'emylia',
'position' => 296,
],
[
- 'id' => 298,
- 'name' => 'ENE Media',
- 'slug' => 'enemedia',
+ 'id' => 298,
+ 'name' => 'ENE Media',
+ 'slug' => 'enemedia',
'position' => 297,
],
[
- 'id' => 299,
- 'name' => 'Entertainment in Video',
- 'slug' => 'entertainmentinvideo',
+ 'id' => 299,
+ 'name' => 'Entertainment in Video',
+ 'slug' => 'entertainmentinvideo',
'position' => 298,
],
[
- 'id' => 300,
- 'name' => 'Entertainment One',
- 'slug' => 'entertainmentone',
+ 'id' => 300,
+ 'name' => 'Entertainment One',
+ 'slug' => 'entertainmentone',
'position' => 299,
],
[
- 'id' => 301,
- 'name' => 'Entertainment One Films Canada Inc.',
- 'slug' => 'entertainmentonefilmscanadainc',
+ 'id' => 301,
+ 'name' => 'Entertainment One Films Canada Inc.',
+ 'slug' => 'entertainmentonefilmscanadainc',
'position' => 300,
],
[
- 'id' => 302,
- 'name' => 'entertainmentone',
- 'slug' => 'entertainmentone',
+ 'id' => 302,
+ 'name' => 'entertainmentone',
+ 'slug' => 'entertainmentone',
'position' => 301,
],
[
- 'id' => 303,
- 'name' => 'Eone',
- 'slug' => 'eone',
+ 'id' => 303,
+ 'name' => 'Eone',
+ 'slug' => 'eone',
'position' => 302,
],
[
- 'id' => 304,
- 'name' => 'Eos',
- 'slug' => 'eos',
+ 'id' => 304,
+ 'name' => 'Eos',
+ 'slug' => 'eos',
'position' => 303,
],
[
- 'id' => 305,
- 'name' => 'Epic Pictures',
- 'slug' => 'epicpictures',
+ 'id' => 305,
+ 'name' => 'Epic Pictures',
+ 'slug' => 'epicpictures',
'position' => 304,
],
[
- 'id' => 306,
- 'name' => 'Epic Records',
- 'slug' => 'epicrecords',
+ 'id' => 306,
+ 'name' => 'Epic Records',
+ 'slug' => 'epicrecords',
'position' => 305,
],
[
- 'id' => 307,
- 'name' => 'Erato',
- 'slug' => 'erato',
+ 'id' => 307,
+ 'name' => 'Erato',
+ 'slug' => 'erato',
'position' => 306,
],
[
- 'id' => 308,
- 'name' => 'Eros',
- 'slug' => 'eros',
+ 'id' => 308,
+ 'name' => 'Eros',
+ 'slug' => 'eros',
'position' => 307,
],
[
- 'id' => 309,
- 'name' => 'ESC Editions',
- 'slug' => 'esceditions',
+ 'id' => 309,
+ 'name' => 'ESC Editions',
+ 'slug' => 'esceditions',
'position' => 308,
],
[
- 'id' => 310,
- 'name' => 'Escapi Media BV',
- 'slug' => 'escapimediabv',
+ 'id' => 310,
+ 'name' => 'Escapi Media BV',
+ 'slug' => 'escapimediabv',
'position' => 309,
],
[
- 'id' => 311,
- 'name' => 'Esoteric Recordings',
- 'slug' => 'esotericrecordings',
+ 'id' => 311,
+ 'name' => 'Esoteric Recordings',
+ 'slug' => 'esotericrecordings',
'position' => 310,
],
[
- 'id' => 312,
- 'name' => 'ESPN Films',
- 'slug' => 'espnfilms',
+ 'id' => 312,
+ 'name' => 'ESPN Films',
+ 'slug' => 'espnfilms',
'position' => 311,
],
[
- 'id' => 313,
- 'name' => 'Eureka Entertainment',
- 'slug' => 'eurekaentertainment',
+ 'id' => 313,
+ 'name' => 'Eureka Entertainment',
+ 'slug' => 'eurekaentertainment',
'position' => 312,
],
[
- 'id' => 314,
- 'name' => 'Euro Pictures',
- 'slug' => 'europictures',
+ 'id' => 314,
+ 'name' => 'Euro Pictures',
+ 'slug' => 'europictures',
'position' => 313,
],
[
- 'id' => 315,
- 'name' => 'Euro Video',
- 'slug' => 'eurovideo',
+ 'id' => 315,
+ 'name' => 'Euro Video',
+ 'slug' => 'eurovideo',
'position' => 314,
],
[
- 'id' => 316,
- 'name' => 'EuroArts',
- 'slug' => 'euroarts',
+ 'id' => 316,
+ 'name' => 'EuroArts',
+ 'slug' => 'euroarts',
'position' => 315,
],
[
- 'id' => 317,
- 'name' => 'Europa Filmes',
- 'slug' => 'europafilmes',
+ 'id' => 317,
+ 'name' => 'Europa Filmes',
+ 'slug' => 'europafilmes',
'position' => 316,
],
[
- 'id' => 318,
- 'name' => 'EuropaCorp',
- 'slug' => 'europacorp',
+ 'id' => 318,
+ 'name' => 'EuropaCorp',
+ 'slug' => 'europacorp',
'position' => 317,
],
[
- 'id' => 319,
- 'name' => 'Eurozoom',
- 'slug' => 'eurozoom',
+ 'id' => 319,
+ 'name' => 'Eurozoom',
+ 'slug' => 'eurozoom',
'position' => 318,
],
[
- 'id' => 320,
- 'name' => 'Excel',
- 'slug' => 'excel',
+ 'id' => 320,
+ 'name' => 'Excel',
+ 'slug' => 'excel',
'position' => 319,
],
[
- 'id' => 321,
- 'name' => 'Explosive Media',
- 'slug' => 'explosivemedia',
+ 'id' => 321,
+ 'name' => 'Explosive Media',
+ 'slug' => 'explosivemedia',
'position' => 320,
],
[
- 'id' => 322,
- 'name' => 'Extralucid Films',
- 'slug' => 'extralucidfilms',
+ 'id' => 322,
+ 'name' => 'Extralucid Films',
+ 'slug' => 'extralucidfilms',
'position' => 321,
],
[
- 'id' => 323,
- 'name' => 'Eye See Movies',
- 'slug' => 'eyeseemovies',
+ 'id' => 323,
+ 'name' => 'Eye See Movies',
+ 'slug' => 'eyeseemovies',
'position' => 322,
],
[
- 'id' => 324,
- 'name' => 'EYK Media',
- 'slug' => 'eykmedia',
+ 'id' => 324,
+ 'name' => 'EYK Media',
+ 'slug' => 'eykmedia',
'position' => 323,
],
[
- 'id' => 325,
- 'name' => 'Fabulous Films',
- 'slug' => 'fabulousfilms',
+ 'id' => 325,
+ 'name' => 'Fabulous Films',
+ 'slug' => 'fabulousfilms',
'position' => 324,
],
[
- 'id' => 326,
- 'name' => 'Factoris Films',
- 'slug' => 'factorisfilms',
+ 'id' => 326,
+ 'name' => 'Factoris Films',
+ 'slug' => 'factorisfilms',
'position' => 325,
],
[
- 'id' => 327,
- 'name' => 'Farao Records',
- 'slug' => 'faraorecords',
+ 'id' => 327,
+ 'name' => 'Farao Records',
+ 'slug' => 'faraorecords',
'position' => 326,
],
[
- 'id' => 328,
- 'name' => 'Farbfilm Home Entertainment',
- 'slug' => 'farbfilmhomeentertainment',
+ 'id' => 328,
+ 'name' => 'Farbfilm Home Entertainment',
+ 'slug' => 'farbfilmhomeentertainment',
'position' => 327,
],
[
- 'id' => 329,
- 'name' => 'Feelgood Entertainment',
- 'slug' => 'feelgoodentertainment',
+ 'id' => 329,
+ 'name' => 'Feelgood Entertainment',
+ 'slug' => 'feelgoodentertainment',
'position' => 328,
],
[
- 'id' => 330,
- 'name' => 'Fernsehjuwelen',
- 'slug' => 'fernsehjuwelen',
+ 'id' => 330,
+ 'name' => 'Fernsehjuwelen',
+ 'slug' => 'fernsehjuwelen',
'position' => 329,
],
[
- 'id' => 331,
- 'name' => 'Film Chest',
- 'slug' => 'filmchest',
+ 'id' => 331,
+ 'name' => 'Film Chest',
+ 'slug' => 'filmchest',
'position' => 330,
],
[
- 'id' => 332,
- 'name' => 'Film Media',
- 'slug' => 'filmmedia',
+ 'id' => 332,
+ 'name' => 'Film Media',
+ 'slug' => 'filmmedia',
'position' => 331,
],
[
- 'id' => 333,
- 'name' => 'Film Movement',
- 'slug' => 'filmmovement',
+ 'id' => 333,
+ 'name' => 'Film Movement',
+ 'slug' => 'filmmovement',
'position' => 332,
],
[
- 'id' => 334,
- 'name' => 'Film4',
- 'slug' => 'film4',
+ 'id' => 334,
+ 'name' => 'Film4',
+ 'slug' => 'film4',
'position' => 333,
],
[
- 'id' => 335,
- 'name' => 'Filmart',
- 'slug' => 'filmart',
+ 'id' => 335,
+ 'name' => 'Filmart',
+ 'slug' => 'filmart',
'position' => 334,
],
[
- 'id' => 336,
- 'name' => 'Filmauro',
- 'slug' => 'filmauro',
+ 'id' => 336,
+ 'name' => 'Filmauro',
+ 'slug' => 'filmauro',
'position' => 335,
],
[
- 'id' => 337,
- 'name' => 'Filmax',
- 'slug' => 'filmax',
+ 'id' => 337,
+ 'name' => 'Filmax',
+ 'slug' => 'filmax',
'position' => 336,
],
[
- 'id' => 338,
- 'name' => 'FilmConfect Home Entertainment',
- 'slug' => 'filmconfecthomeentertainment',
+ 'id' => 338,
+ 'name' => 'FilmConfect Home Entertainment',
+ 'slug' => 'filmconfecthomeentertainment',
'position' => 337,
],
[
- 'id' => 339,
- 'name' => 'Filmedia',
- 'slug' => 'filmedia',
+ 'id' => 339,
+ 'name' => 'Filmedia',
+ 'slug' => 'filmedia',
'position' => 338,
],
[
- 'id' => 340,
- 'name' => 'Filmjuwelen',
- 'slug' => 'filmjuwelen',
+ 'id' => 340,
+ 'name' => 'Filmjuwelen',
+ 'slug' => 'filmjuwelen',
'position' => 339,
],
[
- 'id' => 341,
- 'name' => 'Filmoteka Narodawa',
- 'slug' => 'filmotekanarodawa',
+ 'id' => 341,
+ 'name' => 'Filmoteka Narodawa',
+ 'slug' => 'filmotekanarodawa',
'position' => 340,
],
[
- 'id' => 342,
- 'name' => 'FilmRise',
- 'slug' => 'filmrise',
+ 'id' => 342,
+ 'name' => 'FilmRise',
+ 'slug' => 'filmrise',
'position' => 341,
],
[
- 'id' => 343,
- 'name' => 'Final Cut Entertainment',
- 'slug' => 'finalcutentertainment',
+ 'id' => 343,
+ 'name' => 'Final Cut Entertainment',
+ 'slug' => 'finalcutentertainment',
'position' => 342,
],
[
- 'id' => 344,
- 'name' => 'Firehouse 12 Records',
- 'slug' => 'firehouse12records',
+ 'id' => 344,
+ 'name' => 'Firehouse 12 Records',
+ 'slug' => 'firehouse12records',
'position' => 343,
],
[
- 'id' => 345,
- 'name' => 'First International Production',
- 'slug' => 'firstinternationalproduction',
+ 'id' => 345,
+ 'name' => 'First International Production',
+ 'slug' => 'firstinternationalproduction',
'position' => 344,
],
[
- 'id' => 346,
- 'name' => 'First Look Studios',
- 'slug' => 'firstlookstudios',
+ 'id' => 346,
+ 'name' => 'First Look Studios',
+ 'slug' => 'firstlookstudios',
'position' => 345,
],
[
- 'id' => 347,
- 'name' => 'Flagman trade',
- 'slug' => 'flagmantrade',
+ 'id' => 347,
+ 'name' => 'Flagman trade',
+ 'slug' => 'flagmantrade',
'position' => 346,
],
[
- 'id' => 348,
- 'name' => 'Flashstar Filmes',
- 'slug' => 'flashstarfilmes',
+ 'id' => 348,
+ 'name' => 'Flashstar Filmes',
+ 'slug' => 'flashstarfilmes',
'position' => 347,
],
[
- 'id' => 349,
- 'name' => 'Flicker Alley',
- 'slug' => 'flickeralley',
+ 'id' => 349,
+ 'name' => 'Flicker Alley',
+ 'slug' => 'flickeralley',
'position' => 348,
],
[
- 'id' => 350,
- 'name' => 'FNC Add Culture',
- 'slug' => 'fncaddculture',
+ 'id' => 350,
+ 'name' => 'FNC Add Culture',
+ 'slug' => 'fncaddculture',
'position' => 349,
],
[
- 'id' => 351,
- 'name' => 'Focus Filmes',
- 'slug' => 'focusfilmes',
+ 'id' => 351,
+ 'name' => 'Focus Filmes',
+ 'slug' => 'focusfilmes',
'position' => 350,
],
[
- 'id' => 352,
- 'name' => 'Fokus Media',
- 'slug' => 'fokusmedia',
+ 'id' => 352,
+ 'name' => 'Fokus Media',
+ 'slug' => 'fokusmedia',
'position' => 351,
],
[
- 'id' => 353,
- 'name' => 'Fox Pathe Europa',
- 'slug' => 'foxpatheeuropa',
+ 'id' => 353,
+ 'name' => 'Fox Pathe Europa',
+ 'slug' => 'foxpatheeuropa',
'position' => 352,
],
[
- 'id' => 354,
- 'name' => 'Fox/MGM',
- 'slug' => 'foxmgm',
+ 'id' => 354,
+ 'name' => 'Fox/MGM',
+ 'slug' => 'foxmgm',
'position' => 353,
],
[
- 'id' => 355,
- 'name' => 'FPE',
- 'slug' => 'fpe',
+ 'id' => 355,
+ 'name' => 'FPE',
+ 'slug' => 'fpe',
'position' => 354,
],
[
- 'id' => 356,
- 'name' => 'France Télévisions Distribution',
- 'slug' => 'francetelevisionsdistribution',
+ 'id' => 356,
+ 'name' => 'France Télévisions Distribution',
+ 'slug' => 'francetelevisionsdistribution',
'position' => 355,
],
[
- 'id' => 357,
- 'name' => 'Free Dolphin Entertainment',
- 'slug' => 'freedolphinentertainment',
+ 'id' => 357,
+ 'name' => 'Free Dolphin Entertainment',
+ 'slug' => 'freedolphinentertainment',
'position' => 356,
],
[
- 'id' => 358,
- 'name' => 'Freestyle Digital Media',
- 'slug' => 'freestyledigitalmedia',
+ 'id' => 358,
+ 'name' => 'Freestyle Digital Media',
+ 'slug' => 'freestyledigitalmedia',
'position' => 357,
],
[
- 'id' => 359,
- 'name' => 'Fremantle Home Entertainment',
- 'slug' => 'fremantlehomeentertainment',
+ 'id' => 359,
+ 'name' => 'Fremantle Home Entertainment',
+ 'slug' => 'fremantlehomeentertainment',
'position' => 358,
],
[
- 'id' => 360,
- 'name' => 'Frenetic Films',
- 'slug' => 'freneticfilms',
+ 'id' => 360,
+ 'name' => 'Frenetic Films',
+ 'slug' => 'freneticfilms',
'position' => 359,
],
[
- 'id' => 361,
- 'name' => 'Frontier Works',
- 'slug' => 'frontierworks',
+ 'id' => 361,
+ 'name' => 'Frontier Works',
+ 'slug' => 'frontierworks',
'position' => 360,
],
[
- 'id' => 362,
- 'name' => 'Frontiers Music',
- 'slug' => 'frontiersmusic',
+ 'id' => 362,
+ 'name' => 'Frontiers Music',
+ 'slug' => 'frontiersmusic',
'position' => 361,
],
[
- 'id' => 363,
- 'name' => 'Frontiers Records',
- 'slug' => 'frontiersrecords',
+ 'id' => 363,
+ 'name' => 'Frontiers Records',
+ 'slug' => 'frontiersrecords',
'position' => 362,
],
[
- 'id' => 364,
- 'name' => 'FS Film Oy',
- 'slug' => 'fsfilmoy',
+ 'id' => 364,
+ 'name' => 'FS Film Oy',
+ 'slug' => 'fsfilmoy',
'position' => 363,
],
[
- 'id' => 365,
- 'name' => 'Full Moon Features',
- 'slug' => 'fullmoonfeatures',
+ 'id' => 365,
+ 'name' => 'Full Moon Features',
+ 'slug' => 'fullmoonfeatures',
'position' => 364,
],
[
- 'id' => 366,
- 'name' => 'Fun City Editions',
- 'slug' => 'funcityeditions',
+ 'id' => 366,
+ 'name' => 'Fun City Editions',
+ 'slug' => 'funcityeditions',
'position' => 365,
],
[
- 'id' => 367,
- 'name' => 'FUNimation Entertainment',
- 'slug' => 'funimationentertainment',
+ 'id' => 367,
+ 'name' => 'FUNimation Entertainment',
+ 'slug' => 'funimationentertainment',
'position' => 366,
],
[
- 'id' => 368,
- 'name' => 'Fusion',
- 'slug' => 'fusion',
+ 'id' => 368,
+ 'name' => 'Fusion',
+ 'slug' => 'fusion',
'position' => 367,
],
[
- 'id' => 369,
- 'name' => 'Futurefilm',
- 'slug' => 'futurefilm',
+ 'id' => 369,
+ 'name' => 'Futurefilm',
+ 'slug' => 'futurefilm',
'position' => 368,
],
[
- 'id' => 370,
- 'name' => 'G2 Pictures',
- 'slug' => 'g2pictures',
+ 'id' => 370,
+ 'name' => 'G2 Pictures',
+ 'slug' => 'g2pictures',
'position' => 369,
],
[
- 'id' => 371,
- 'name' => 'Gaga Communications',
- 'slug' => 'gagacommunications',
+ 'id' => 371,
+ 'name' => 'Gaga Communications',
+ 'slug' => 'gagacommunications',
'position' => 370,
],
[
- 'id' => 372,
- 'name' => 'Gaiam',
- 'slug' => 'gaiam',
+ 'id' => 372,
+ 'name' => 'Gaiam',
+ 'slug' => 'gaiam',
'position' => 371,
],
[
- 'id' => 373,
- 'name' => 'Galapagos',
- 'slug' => 'galapagos',
+ 'id' => 373,
+ 'name' => 'Galapagos',
+ 'slug' => 'galapagos',
'position' => 372,
],
[
- 'id' => 374,
- 'name' => 'Gamma Home Entertainment',
- 'slug' => 'gammahomeentertainment',
+ 'id' => 374,
+ 'name' => 'Gamma Home Entertainment',
+ 'slug' => 'gammahomeentertainment',
'position' => 373,
],
[
- 'id' => 375,
- 'name' => 'Garagehouse Pictures',
- 'slug' => 'garagehousepictures',
+ 'id' => 375,
+ 'name' => 'Garagehouse Pictures',
+ 'slug' => 'garagehousepictures',
'position' => 374,
],
[
- 'id' => 376,
- 'name' => 'GaragePlay (車庫娛樂)',
- 'slug' => 'garageplayheuue',
+ 'id' => 376,
+ 'name' => 'GaragePlay (車庫娛樂)',
+ 'slug' => 'garageplayheuue',
'position' => 375,
],
[
- 'id' => 377,
- 'name' => 'Gaumont',
- 'slug' => 'gaumont',
+ 'id' => 377,
+ 'name' => 'Gaumont',
+ 'slug' => 'gaumont',
'position' => 376,
],
[
- 'id' => 378,
- 'name' => 'Geffen',
- 'slug' => 'geffen',
+ 'id' => 378,
+ 'name' => 'Geffen',
+ 'slug' => 'geffen',
'position' => 377,
],
[
- 'id' => 379,
- 'name' => 'Geneon Entertainment',
- 'slug' => 'geneonentertainment',
+ 'id' => 379,
+ 'name' => 'Geneon Entertainment',
+ 'slug' => 'geneonentertainment',
'position' => 378,
],
[
- 'id' => 380,
- 'name' => 'Geneon Universal Entertainment',
- 'slug' => 'geneonuniversalentertainment',
+ 'id' => 380,
+ 'name' => 'Geneon Universal Entertainment',
+ 'slug' => 'geneonuniversalentertainment',
'position' => 379,
],
[
- 'id' => 381,
- 'name' => 'General Video Recording',
- 'slug' => 'generalvideorecording',
+ 'id' => 381,
+ 'name' => 'General Video Recording',
+ 'slug' => 'generalvideorecording',
'position' => 380,
],
[
- 'id' => 382,
- 'name' => 'Glass Doll Films',
- 'slug' => 'glassdollfilms',
+ 'id' => 382,
+ 'name' => 'Glass Doll Films',
+ 'slug' => 'glassdollfilms',
'position' => 381,
],
[
- 'id' => 383,
- 'name' => 'Globe Music Media',
- 'slug' => 'globemusicmedia',
+ 'id' => 383,
+ 'name' => 'Globe Music Media',
+ 'slug' => 'globemusicmedia',
'position' => 382,
],
[
- 'id' => 384,
- 'name' => 'Go Entertain',
- 'slug' => 'goentertain',
+ 'id' => 384,
+ 'name' => 'Go Entertain',
+ 'slug' => 'goentertain',
'position' => 383,
],
[
- 'id' => 385,
- 'name' => 'Golden Harvest',
- 'slug' => 'goldenharvest',
+ 'id' => 385,
+ 'name' => 'Golden Harvest',
+ 'slug' => 'goldenharvest',
'position' => 384,
],
[
- 'id' => 386,
- 'name' => 'good!movies',
- 'slug' => 'goodmovies',
+ 'id' => 386,
+ 'name' => 'good!movies',
+ 'slug' => 'goodmovies',
'position' => 385,
],
[
- 'id' => 387,
- 'name' => 'Grapevine Video',
- 'slug' => 'grapevinevideo',
+ 'id' => 387,
+ 'name' => 'Grapevine Video',
+ 'slug' => 'grapevinevideo',
'position' => 386,
],
[
- 'id' => 388,
- 'name' => 'Grasshopper Film',
- 'slug' => 'grasshopperfilm',
+ 'id' => 388,
+ 'name' => 'Grasshopper Film',
+ 'slug' => 'grasshopperfilm',
'position' => 387,
],
[
- 'id' => 389,
- 'name' => 'Gravitas Ventures',
- 'slug' => 'gravitasventures',
+ 'id' => 389,
+ 'name' => 'Gravitas Ventures',
+ 'slug' => 'gravitasventures',
'position' => 388,
],
[
- 'id' => 390,
- 'name' => 'Great Movies',
- 'slug' => 'greatmovies',
+ 'id' => 390,
+ 'name' => 'Great Movies',
+ 'slug' => 'greatmovies',
'position' => 389,
],
[
- 'id' => 391,
- 'name' => 'Green Apple Entertainment',
- 'slug' => 'greenappleentertainment',
+ 'id' => 391,
+ 'name' => 'Green Apple Entertainment',
+ 'slug' => 'greenappleentertainment',
'position' => 390,
],
[
- 'id' => 392,
- 'name' => 'GreenNarae Media',
- 'slug' => 'greennaraemedia',
+ 'id' => 392,
+ 'name' => 'GreenNarae Media',
+ 'slug' => 'greennaraemedia',
'position' => 391,
],
[
- 'id' => 393,
- 'name' => 'Grindhouse Releasing',
- 'slug' => 'grindhousereleasing',
+ 'id' => 393,
+ 'name' => 'Grindhouse Releasing',
+ 'slug' => 'grindhousereleasing',
'position' => 392,
],
[
- 'id' => 394,
- 'name' => 'Gryphon Entertainment',
- 'slug' => 'gryphonentertainment',
+ 'id' => 394,
+ 'name' => 'Gryphon Entertainment',
+ 'slug' => 'gryphonentertainment',
'position' => 393,
],
[
- 'id' => 395,
- 'name' => 'Gunpowder & Sky',
- 'slug' => 'gunpowdersky',
+ 'id' => 395,
+ 'name' => 'Gunpowder & Sky',
+ 'slug' => 'gunpowdersky',
'position' => 394,
],
[
- 'id' => 396,
- 'name' => 'Hanabee Entertainment',
- 'slug' => 'hanabeeentertainment',
+ 'id' => 396,
+ 'name' => 'Hanabee Entertainment',
+ 'slug' => 'hanabeeentertainment',
'position' => 395,
],
[
- 'id' => 397,
- 'name' => 'Hannover House',
- 'slug' => 'hannoverhouse',
+ 'id' => 397,
+ 'name' => 'Hannover House',
+ 'slug' => 'hannoverhouse',
'position' => 396,
],
[
- 'id' => 398,
- 'name' => 'HanseSound',
- 'slug' => 'hansesound',
+ 'id' => 398,
+ 'name' => 'HanseSound',
+ 'slug' => 'hansesound',
'position' => 397,
],
[
- 'id' => 399,
- 'name' => 'Happinet',
- 'slug' => 'happinet',
+ 'id' => 399,
+ 'name' => 'Happinet',
+ 'slug' => 'happinet',
'position' => 398,
],
[
- 'id' => 400,
- 'name' => 'Harmonia Mundi',
- 'slug' => 'harmoniamundi',
+ 'id' => 400,
+ 'name' => 'Harmonia Mundi',
+ 'slug' => 'harmoniamundi',
'position' => 399,
],
[
- 'id' => 401,
- 'name' => 'HBO',
- 'slug' => 'hbo',
+ 'id' => 401,
+ 'name' => 'HBO',
+ 'slug' => 'hbo',
'position' => 400,
],
[
- 'id' => 402,
- 'name' => 'HDC',
- 'slug' => 'hdc',
+ 'id' => 402,
+ 'name' => 'HDC',
+ 'slug' => 'hdc',
'position' => 401,
],
[
- 'id' => 403,
- 'name' => 'HEC',
- 'slug' => 'hec',
+ 'id' => 403,
+ 'name' => 'HEC',
+ 'slug' => 'hec',
'position' => 402,
],
[
- 'id' => 404,
- 'name' => 'Hell & Back Recordings',
- 'slug' => 'hellbackrecordings',
+ 'id' => 404,
+ 'name' => 'Hell & Back Recordings',
+ 'slug' => 'hellbackrecordings',
'position' => 403,
],
[
- 'id' => 405,
- 'name' => 'Hen\'s Tooth Video',
- 'slug' => 'henstoothvideo',
+ 'id' => 405,
+ 'name' => 'Hen\'s Tooth Video',
+ 'slug' => 'henstoothvideo',
'position' => 404,
],
[
- 'id' => 406,
- 'name' => 'High Fliers',
- 'slug' => 'highfliers',
+ 'id' => 406,
+ 'name' => 'High Fliers',
+ 'slug' => 'highfliers',
'position' => 405,
],
[
- 'id' => 407,
- 'name' => 'Highlight',
- 'slug' => 'highlight',
+ 'id' => 407,
+ 'name' => 'Highlight',
+ 'slug' => 'highlight',
'position' => 406,
],
[
- 'id' => 408,
- 'name' => 'Hillsong',
- 'slug' => 'hillsong',
+ 'id' => 408,
+ 'name' => 'Hillsong',
+ 'slug' => 'hillsong',
'position' => 407,
],
[
- 'id' => 409,
- 'name' => 'History Channel',
- 'slug' => 'historychannel',
+ 'id' => 409,
+ 'name' => 'History Channel',
+ 'slug' => 'historychannel',
'position' => 408,
],
[
- 'id' => 410,
- 'name' => 'HK Vidéo',
- 'slug' => 'hkvideo',
+ 'id' => 410,
+ 'name' => 'HK Vidéo',
+ 'slug' => 'hkvideo',
'position' => 409,
],
[
- 'id' => 411,
- 'name' => 'HMH Hamburger Medien Haus',
- 'slug' => 'hmhhamburgermedienhaus',
+ 'id' => 411,
+ 'name' => 'HMH Hamburger Medien Haus',
+ 'slug' => 'hmhhamburgermedienhaus',
'position' => 410,
],
[
- 'id' => 412,
- 'name' => 'Hollywood Classic Entertainment',
- 'slug' => 'hollywoodclassicentertainment',
+ 'id' => 412,
+ 'name' => 'Hollywood Classic Entertainment',
+ 'slug' => 'hollywoodclassicentertainment',
'position' => 411,
],
[
- 'id' => 413,
- 'name' => 'Hollywood Pictures',
- 'slug' => 'hollywoodpictures',
+ 'id' => 413,
+ 'name' => 'Hollywood Pictures',
+ 'slug' => 'hollywoodpictures',
'position' => 412,
],
[
- 'id' => 414,
- 'name' => 'Hopscotch Entertainment',
- 'slug' => 'hopscotchentertainment',
+ 'id' => 414,
+ 'name' => 'Hopscotch Entertainment',
+ 'slug' => 'hopscotchentertainment',
'position' => 413,
],
[
- 'id' => 415,
- 'name' => 'HPM',
- 'slug' => 'hpm',
+ 'id' => 415,
+ 'name' => 'HPM',
+ 'slug' => 'hpm',
'position' => 414,
],
[
- 'id' => 416,
- 'name' => 'Hännsler Classic',
- 'slug' => 'hannslerclassic',
+ 'id' => 416,
+ 'name' => 'Hännsler Classic',
+ 'slug' => 'hannslerclassic',
'position' => 415,
],
[
- 'id' => 417,
- 'name' => 'i-catcher',
- 'slug' => 'icatcher',
+ 'id' => 417,
+ 'name' => 'i-catcher',
+ 'slug' => 'icatcher',
'position' => 416,
],
[
- 'id' => 418,
- 'name' => 'I-ON New Media',
- 'slug' => 'ionnewmedia',
+ 'id' => 418,
+ 'name' => 'I-ON New Media',
+ 'slug' => 'ionnewmedia',
'position' => 417,
],
[
- 'id' => 419,
- 'name' => 'IAN Productions',
- 'slug' => 'ianproductions',
+ 'id' => 419,
+ 'name' => 'IAN Productions',
+ 'slug' => 'ianproductions',
'position' => 418,
],
[
- 'id' => 420,
- 'name' => 'Icestorm',
- 'slug' => 'icestorm',
+ 'id' => 420,
+ 'name' => 'Icestorm',
+ 'slug' => 'icestorm',
'position' => 419,
],
[
- 'id' => 421,
- 'name' => 'Icon Film Distribution',
- 'slug' => 'iconfilmdistribution',
+ 'id' => 421,
+ 'name' => 'Icon Film Distribution',
+ 'slug' => 'iconfilmdistribution',
'position' => 420,
],
[
- 'id' => 422,
- 'name' => 'Ideale Audience',
- 'slug' => 'idealeaudience',
+ 'id' => 422,
+ 'name' => 'Ideale Audience',
+ 'slug' => 'idealeaudience',
'position' => 421,
],
[
- 'id' => 423,
- 'name' => 'IFC Films',
- 'slug' => 'ifcfilms',
+ 'id' => 423,
+ 'name' => 'IFC Films',
+ 'slug' => 'ifcfilms',
'position' => 422,
],
[
- 'id' => 424,
- 'name' => 'ifilm',
- 'slug' => 'ifilm',
+ 'id' => 424,
+ 'name' => 'ifilm',
+ 'slug' => 'ifilm',
'position' => 423,
],
[
- 'id' => 425,
- 'name' => 'Illusions Unltd.',
- 'slug' => 'illusionsunltd',
+ 'id' => 425,
+ 'name' => 'Illusions Unltd.',
+ 'slug' => 'illusionsunltd',
'position' => 424,
],
[
- 'id' => 426,
- 'name' => 'Image Entertainment',
- 'slug' => 'imageentertainment',
+ 'id' => 426,
+ 'name' => 'Image Entertainment',
+ 'slug' => 'imageentertainment',
'position' => 425,
],
[
- 'id' => 427,
- 'name' => 'Imagem Filmes',
- 'slug' => 'imagemfilmes',
+ 'id' => 427,
+ 'name' => 'Imagem Filmes',
+ 'slug' => 'imagemfilmes',
'position' => 426,
],
[
- 'id' => 428,
- 'name' => 'Imovision',
- 'slug' => 'imovision',
+ 'id' => 428,
+ 'name' => 'Imovision',
+ 'slug' => 'imovision',
'position' => 427,
],
[
- 'id' => 429,
- 'name' => 'Imperial Cinepix',
- 'slug' => 'imperialcinepix',
+ 'id' => 429,
+ 'name' => 'Imperial Cinepix',
+ 'slug' => 'imperialcinepix',
'position' => 428,
],
[
- 'id' => 430,
- 'name' => 'Imprint',
- 'slug' => 'imprint',
+ 'id' => 430,
+ 'name' => 'Imprint',
+ 'slug' => 'imprint',
'position' => 429,
],
[
- 'id' => 431,
- 'name' => 'Impuls Home Entertainment',
- 'slug' => 'impulshomeentertainment',
+ 'id' => 431,
+ 'name' => 'Impuls Home Entertainment',
+ 'slug' => 'impulshomeentertainment',
'position' => 430,
],
[
- 'id' => 432,
- 'name' => 'in-akustik',
- 'slug' => 'inakustik',
+ 'id' => 432,
+ 'name' => 'in-akustik',
+ 'slug' => 'inakustik',
'position' => 431,
],
[
- 'id' => 433,
- 'name' => 'Inception Media Group',
- 'slug' => 'inceptionmediagroup',
+ 'id' => 433,
+ 'name' => 'Inception Media Group',
+ 'slug' => 'inceptionmediagroup',
'position' => 432,
],
[
- 'id' => 434,
- 'name' => 'Independent',
- 'slug' => 'independent',
+ 'id' => 434,
+ 'name' => 'Independent',
+ 'slug' => 'independent',
'position' => 433,
],
[
- 'id' => 435,
- 'name' => 'Indican',
- 'slug' => 'indican',
+ 'id' => 435,
+ 'name' => 'Indican',
+ 'slug' => 'indican',
'position' => 434,
],
[
- 'id' => 436,
- 'name' => 'Indie Rights',
- 'slug' => 'indierights',
+ 'id' => 436,
+ 'name' => 'Indie Rights',
+ 'slug' => 'indierights',
'position' => 435,
],
[
- 'id' => 437,
- 'name' => 'Indigo',
- 'slug' => 'indigo',
+ 'id' => 437,
+ 'name' => 'Indigo',
+ 'slug' => 'indigo',
'position' => 436,
],
[
- 'id' => 438,
- 'name' => 'INFO',
- 'slug' => 'info',
+ 'id' => 438,
+ 'name' => 'INFO',
+ 'slug' => 'info',
'position' => 437,
],
[
- 'id' => 439,
- 'name' => 'Injoingan',
- 'slug' => 'injoingan',
+ 'id' => 439,
+ 'name' => 'Injoingan',
+ 'slug' => 'injoingan',
'position' => 438,
],
[
- 'id' => 440,
- 'name' => 'Inked Pictures',
- 'slug' => 'inkedpictures',
+ 'id' => 440,
+ 'name' => 'Inked Pictures',
+ 'slug' => 'inkedpictures',
'position' => 439,
],
[
- 'id' => 441,
- 'name' => 'Inside Out Music',
- 'slug' => 'insideoutmusic',
+ 'id' => 441,
+ 'name' => 'Inside Out Music',
+ 'slug' => 'insideoutmusic',
'position' => 440,
],
[
- 'id' => 442,
- 'name' => 'InterCom',
- 'slug' => 'intercom',
+ 'id' => 442,
+ 'name' => 'InterCom',
+ 'slug' => 'intercom',
'position' => 441,
],
[
- 'id' => 443,
- 'name' => 'Intercontinental Video',
- 'slug' => 'intercontinentalvideo',
+ 'id' => 443,
+ 'name' => 'Intercontinental Video',
+ 'slug' => 'intercontinentalvideo',
'position' => 442,
],
[
- 'id' => 444,
- 'name' => 'Intergroove',
- 'slug' => 'intergroove',
+ 'id' => 444,
+ 'name' => 'Intergroove',
+ 'slug' => 'intergroove',
'position' => 443,
],
[
- 'id' => 445,
- 'name' => 'Interscope',
- 'slug' => 'interscope',
+ 'id' => 445,
+ 'name' => 'Interscope',
+ 'slug' => 'interscope',
'position' => 444,
],
[
- 'id' => 446,
- 'name' => 'Invincible Pictures',
- 'slug' => 'invinciblepictures',
+ 'id' => 446,
+ 'name' => 'Invincible Pictures',
+ 'slug' => 'invinciblepictures',
'position' => 445,
],
[
- 'id' => 447,
- 'name' => 'Island/Mercury',
- 'slug' => 'islandmercury',
+ 'id' => 447,
+ 'name' => 'Island/Mercury',
+ 'slug' => 'islandmercury',
'position' => 446,
],
[
- 'id' => 448,
- 'name' => 'ITN',
- 'slug' => 'itn',
+ 'id' => 448,
+ 'name' => 'ITN',
+ 'slug' => 'itn',
'position' => 447,
],
[
- 'id' => 449,
- 'name' => 'ITV DVD',
- 'slug' => 'itvdvd',
+ 'id' => 449,
+ 'name' => 'ITV DVD',
+ 'slug' => 'itvdvd',
'position' => 448,
],
[
- 'id' => 450,
- 'name' => 'IVC',
- 'slug' => 'ivc',
+ 'id' => 450,
+ 'name' => 'IVC',
+ 'slug' => 'ivc',
'position' => 449,
],
[
- 'id' => 451,
- 'name' => 'Ive Entertainment',
- 'slug' => 'iveentertainment',
+ 'id' => 451,
+ 'name' => 'Ive Entertainment',
+ 'slug' => 'iveentertainment',
'position' => 450,
],
[
- 'id' => 452,
- 'name' => 'J&R Adventures',
- 'slug' => 'jradventures',
+ 'id' => 452,
+ 'name' => 'J&R Adventures',
+ 'slug' => 'jradventures',
'position' => 451,
],
[
- 'id' => 453,
- 'name' => 'Jakob',
- 'slug' => 'jakob',
+ 'id' => 453,
+ 'name' => 'Jakob',
+ 'slug' => 'jakob',
'position' => 452,
],
[
- 'id' => 454,
- 'name' => 'Jonu Media',
- 'slug' => 'jonumedia',
+ 'id' => 454,
+ 'name' => 'Jonu Media',
+ 'slug' => 'jonumedia',
'position' => 453,
],
[
- 'id' => 455,
- 'name' => 'JRB Productions',
- 'slug' => 'jrbproductions',
+ 'id' => 455,
+ 'name' => 'JRB Productions',
+ 'slug' => 'jrbproductions',
'position' => 454,
],
[
- 'id' => 456,
- 'name' => 'Just Bridge Entertainment',
- 'slug' => 'justbridgeentertainment',
+ 'id' => 456,
+ 'name' => 'Just Bridge Entertainment',
+ 'slug' => 'justbridgeentertainment',
'position' => 455,
],
[
- 'id' => 457,
- 'name' => 'Kaboom Entertainment',
- 'slug' => 'kaboomentertainment',
+ 'id' => 457,
+ 'name' => 'Kaboom Entertainment',
+ 'slug' => 'kaboomentertainment',
'position' => 456,
],
[
- 'id' => 458,
- 'name' => 'Kadokawa Entertainment',
- 'slug' => 'kadokawaentertainment',
+ 'id' => 458,
+ 'name' => 'Kadokawa Entertainment',
+ 'slug' => 'kadokawaentertainment',
'position' => 457,
],
[
- 'id' => 459,
- 'name' => 'Kairos',
- 'slug' => 'kairos',
+ 'id' => 459,
+ 'name' => 'Kairos',
+ 'slug' => 'kairos',
'position' => 458,
],
[
- 'id' => 460,
- 'name' => 'Kaleidoscope Entertainment',
- 'slug' => 'kaleidoscopeentertainment',
+ 'id' => 460,
+ 'name' => 'Kaleidoscope Entertainment',
+ 'slug' => 'kaleidoscopeentertainment',
'position' => 459,
],
[
- 'id' => 461,
- 'name' => 'Kam & Ronson Enterprises',
- 'slug' => 'kamronsonenterprises',
+ 'id' => 461,
+ 'name' => 'Kam & Ronson Enterprises',
+ 'slug' => 'kamronsonenterprises',
'position' => 460,
],
[
- 'id' => 462,
- 'name' => 'Kana Home Video',
- 'slug' => 'kanahomevideo',
+ 'id' => 462,
+ 'name' => 'Kana Home Video',
+ 'slug' => 'kanahomevideo',
'position' => 461,
],
[
- 'id' => 463,
- 'name' => 'Karma Films',
- 'slug' => 'karmafilms',
+ 'id' => 463,
+ 'name' => 'Karma Films',
+ 'slug' => 'karmafilms',
'position' => 462,
],
[
- 'id' => 464,
- 'name' => 'Katzenberger',
- 'slug' => 'katzenberger',
+ 'id' => 464,
+ 'name' => 'Katzenberger',
+ 'slug' => 'katzenberger',
'position' => 463,
],
[
- 'id' => 465,
- 'name' => 'Kaze',
- 'slug' => 'kaze',
+ 'id' => 465,
+ 'name' => 'Kaze',
+ 'slug' => 'kaze',
'position' => 464,
],
[
- 'id' => 466,
- 'name' => 'KBS Media',
- 'slug' => 'kbsmedia',
+ 'id' => 466,
+ 'name' => 'KBS Media',
+ 'slug' => 'kbsmedia',
'position' => 465,
],
[
- 'id' => 467,
- 'name' => 'KD MEDIA',
- 'slug' => 'kdmedia',
+ 'id' => 467,
+ 'name' => 'KD MEDIA',
+ 'slug' => 'kdmedia',
'position' => 466,
],
[
- 'id' => 468,
- 'name' => 'King Media',
- 'slug' => 'kingmedia',
+ 'id' => 468,
+ 'name' => 'King Media',
+ 'slug' => 'kingmedia',
'position' => 467,
],
[
- 'id' => 469,
- 'name' => 'King Records',
- 'slug' => 'kingrecords',
+ 'id' => 469,
+ 'name' => 'King Records',
+ 'slug' => 'kingrecords',
'position' => 468,
],
[
- 'id' => 470,
- 'name' => 'Kino Lorber',
- 'slug' => 'kinolorber',
+ 'id' => 470,
+ 'name' => 'Kino Lorber',
+ 'slug' => 'kinolorber',
'position' => 469,
],
[
- 'id' => 471,
- 'name' => 'Kino Swiat',
- 'slug' => 'kinoswiat',
+ 'id' => 471,
+ 'name' => 'Kino Swiat',
+ 'slug' => 'kinoswiat',
'position' => 470,
],
[
- 'id' => 472,
- 'name' => 'Kinokuniya',
- 'slug' => 'kinokuniya',
+ 'id' => 472,
+ 'name' => 'Kinokuniya',
+ 'slug' => 'kinokuniya',
'position' => 471,
],
[
- 'id' => 473,
- 'name' => 'Kinowelt Home Entertainment/DVD',
- 'slug' => 'kinowelthomeentertainmentdvd',
+ 'id' => 473,
+ 'name' => 'Kinowelt Home Entertainment/DVD',
+ 'slug' => 'kinowelthomeentertainmentdvd',
'position' => 472,
],
[
- 'id' => 474,
- 'name' => 'Kit Parker Films',
- 'slug' => 'kitparkerfilms',
+ 'id' => 474,
+ 'name' => 'Kit Parker Films',
+ 'slug' => 'kitparkerfilms',
'position' => 473,
],
[
- 'id' => 475,
- 'name' => 'Kitty Media',
- 'slug' => 'kittymedia',
+ 'id' => 475,
+ 'name' => 'Kitty Media',
+ 'slug' => 'kittymedia',
'position' => 474,
],
[
- 'id' => 476,
- 'name' => 'KNM Home Entertainment',
- 'slug' => 'knmhomeentertainment',
+ 'id' => 476,
+ 'name' => 'KNM Home Entertainment',
+ 'slug' => 'knmhomeentertainment',
'position' => 475,
],
[
- 'id' => 477,
- 'name' => 'Koba Films',
- 'slug' => 'kobafilms',
+ 'id' => 477,
+ 'name' => 'Koba Films',
+ 'slug' => 'kobafilms',
'position' => 476,
],
[
- 'id' => 478,
- 'name' => 'Koch Entertainment',
- 'slug' => 'kochentertainment',
+ 'id' => 478,
+ 'name' => 'Koch Entertainment',
+ 'slug' => 'kochentertainment',
'position' => 477,
],
[
- 'id' => 479,
- 'name' => 'Koch Media',
- 'slug' => 'kochmedia',
+ 'id' => 479,
+ 'name' => 'Koch Media',
+ 'slug' => 'kochmedia',
'position' => 478,
],
[
- 'id' => 480,
- 'name' => 'Kraken Releasing',
- 'slug' => 'krakenreleasing',
+ 'id' => 480,
+ 'name' => 'Kraken Releasing',
+ 'slug' => 'krakenreleasing',
'position' => 479,
],
[
- 'id' => 481,
- 'name' => 'Kscope',
- 'slug' => 'kscope',
+ 'id' => 481,
+ 'name' => 'Kscope',
+ 'slug' => 'kscope',
'position' => 480,
],
[
- 'id' => 482,
- 'name' => 'KSM',
- 'slug' => 'ksm',
+ 'id' => 482,
+ 'name' => 'KSM',
+ 'slug' => 'ksm',
'position' => 481,
],
[
- 'id' => 483,
- 'name' => 'Kultur',
- 'slug' => 'kultur',
+ 'id' => 483,
+ 'name' => 'Kultur',
+ 'slug' => 'kultur',
'position' => 482,
],
[
- 'id' => 484,
- 'name' => 'L\'atelier d\'images',
- 'slug' => 'latelierdimages',
+ 'id' => 484,
+ 'name' => 'L\'atelier d\'images',
+ 'slug' => 'latelierdimages',
'position' => 483,
],
[
- 'id' => 485,
- 'name' => 'La Aventura Audiovisual',
- 'slug' => 'laaventuraaudiovisual',
+ 'id' => 485,
+ 'name' => 'La Aventura Audiovisual',
+ 'slug' => 'laaventuraaudiovisual',
'position' => 484,
],
[
- 'id' => 486,
- 'name' => 'Lace Group',
- 'slug' => 'lacegroup',
+ 'id' => 486,
+ 'name' => 'Lace Group',
+ 'slug' => 'lacegroup',
'position' => 485,
],
[
- 'id' => 487,
- 'name' => 'Laser Paradise',
- 'slug' => 'laserparadise',
+ 'id' => 487,
+ 'name' => 'Laser Paradise',
+ 'slug' => 'laserparadise',
'position' => 486,
],
[
- 'id' => 488,
- 'name' => 'Layons',
- 'slug' => 'layons',
+ 'id' => 488,
+ 'name' => 'Layons',
+ 'slug' => 'layons',
'position' => 487,
],
[
- 'id' => 489,
- 'name' => 'LCJ Editions',
- 'slug' => 'lcjeditions',
+ 'id' => 489,
+ 'name' => 'LCJ Editions',
+ 'slug' => 'lcjeditions',
'position' => 488,
],
[
- 'id' => 490,
- 'name' => 'Le chat qui fume',
- 'slug' => 'lechatquifume',
+ 'id' => 490,
+ 'name' => 'Le chat qui fume',
+ 'slug' => 'lechatquifume',
'position' => 489,
],
[
- 'id' => 491,
- 'name' => 'Le Pacte',
- 'slug' => 'lepacte',
+ 'id' => 491,
+ 'name' => 'Le Pacte',
+ 'slug' => 'lepacte',
'position' => 490,
],
[
- 'id' => 492,
- 'name' => 'Ledick Filmhandel',
- 'slug' => 'ledickfilmhandel',
+ 'id' => 492,
+ 'name' => 'Ledick Filmhandel',
+ 'slug' => 'ledickfilmhandel',
'position' => 491,
],
[
- 'id' => 493,
- 'name' => 'Legend',
- 'slug' => 'legend',
+ 'id' => 493,
+ 'name' => 'Legend',
+ 'slug' => 'legend',
'position' => 492,
],
[
- 'id' => 494,
- 'name' => 'Leomark Studios',
- 'slug' => 'leomarkstudios',
+ 'id' => 494,
+ 'name' => 'Leomark Studios',
+ 'slug' => 'leomarkstudios',
'position' => 493,
],
[
- 'id' => 495,
- 'name' => 'Leonine Films',
- 'slug' => 'leoninefilms',
+ 'id' => 495,
+ 'name' => 'Leonine Films',
+ 'slug' => 'leoninefilms',
'position' => 494,
],
[
- 'id' => 496,
- 'name' => 'Lichtung Media Ltd',
- 'slug' => 'lichtungmedialtd',
+ 'id' => 496,
+ 'name' => 'Lichtung Media Ltd',
+ 'slug' => 'lichtungmedialtd',
'position' => 495,
],
[
- 'id' => 497,
- 'name' => 'Lighthouse Home Entertainment',
- 'slug' => 'lighthousehomeentertainment',
+ 'id' => 497,
+ 'name' => 'Lighthouse Home Entertainment',
+ 'slug' => 'lighthousehomeentertainment',
'position' => 496,
],
[
- 'id' => 498,
- 'name' => 'Lightyear',
- 'slug' => 'lightyear',
+ 'id' => 498,
+ 'name' => 'Lightyear',
+ 'slug' => 'lightyear',
'position' => 497,
],
[
- 'id' => 499,
- 'name' => 'Lionsgate Films',
- 'slug' => 'lionsgatefilms',
+ 'id' => 499,
+ 'name' => 'Lionsgate Films',
+ 'slug' => 'lionsgatefilms',
'position' => 498,
],
[
- 'id' => 500,
- 'name' => 'Lizard Cinema Trade',
- 'slug' => 'lizardcinematrade',
+ 'id' => 500,
+ 'name' => 'Lizard Cinema Trade',
+ 'slug' => 'lizardcinematrade',
'position' => 499,
],
[
- 'id' => 501,
- 'name' => 'Llamentol',
- 'slug' => 'llamentol',
+ 'id' => 501,
+ 'name' => 'Llamentol',
+ 'slug' => 'llamentol',
'position' => 500,
],
[
- 'id' => 502,
- 'name' => 'Lobster Films',
- 'slug' => 'lobsterfilms',
+ 'id' => 502,
+ 'name' => 'Lobster Films',
+ 'slug' => 'lobsterfilms',
'position' => 501,
],
[
- 'id' => 503,
- 'name' => 'LogOn',
- 'slug' => 'logon',
+ 'id' => 503,
+ 'name' => 'LogOn',
+ 'slug' => 'logon',
'position' => 502,
],
[
- 'id' => 504,
- 'name' => 'Lorber Films',
- 'slug' => 'lorberfilms',
+ 'id' => 504,
+ 'name' => 'Lorber Films',
+ 'slug' => 'lorberfilms',
'position' => 503,
],
[
- 'id' => 505,
- 'name' => 'Los Banditos Films',
- 'slug' => 'losbanditosfilms',
+ 'id' => 505,
+ 'name' => 'Los Banditos Films',
+ 'slug' => 'losbanditosfilms',
'position' => 504,
],
[
- 'id' => 506,
- 'name' => 'Loud & Proud Records',
- 'slug' => 'loudproudrecords',
+ 'id' => 506,
+ 'name' => 'Loud & Proud Records',
+ 'slug' => 'loudproudrecords',
'position' => 505,
],
[
- 'id' => 507,
- 'name' => 'LSO Live',
- 'slug' => 'lsolive',
+ 'id' => 507,
+ 'name' => 'LSO Live',
+ 'slug' => 'lsolive',
'position' => 506,
],
[
- 'id' => 508,
- 'name' => 'Lucasfilm',
- 'slug' => 'lucasfilm',
+ 'id' => 508,
+ 'name' => 'Lucasfilm',
+ 'slug' => 'lucasfilm',
'position' => 507,
],
[
- 'id' => 509,
- 'name' => 'Lucky Red',
- 'slug' => 'luckyred',
+ 'id' => 509,
+ 'name' => 'Lucky Red',
+ 'slug' => 'luckyred',
'position' => 508,
],
[
- 'id' => 510,
- 'name' => 'Lumière Home Entertainment',
- 'slug' => 'lumierehomeentertainment',
+ 'id' => 510,
+ 'name' => 'Lumière Home Entertainment',
+ 'slug' => 'lumierehomeentertainment',
'position' => 509,
],
[
- 'id' => 511,
- 'name' => 'M6 Video',
- 'slug' => 'm6video',
+ 'id' => 511,
+ 'name' => 'M6 Video',
+ 'slug' => 'm6video',
'position' => 510,
],
[
- 'id' => 512,
- 'name' => 'Mad Dimension',
- 'slug' => 'maddimension',
+ 'id' => 512,
+ 'name' => 'Mad Dimension',
+ 'slug' => 'maddimension',
'position' => 511,
],
[
- 'id' => 513,
- 'name' => 'Madman Entertainment',
- 'slug' => 'madmanentertainment',
+ 'id' => 513,
+ 'name' => 'Madman Entertainment',
+ 'slug' => 'madmanentertainment',
'position' => 512,
],
[
- 'id' => 514,
- 'name' => 'Magic Box',
- 'slug' => 'magicbox',
+ 'id' => 514,
+ 'name' => 'Magic Box',
+ 'slug' => 'magicbox',
'position' => 513,
],
[
- 'id' => 515,
- 'name' => 'Magic Play',
- 'slug' => 'magicplay',
+ 'id' => 515,
+ 'name' => 'Magic Play',
+ 'slug' => 'magicplay',
'position' => 514,
],
[
- 'id' => 516,
- 'name' => 'Magna Home Entertainment',
- 'slug' => 'magnahomeentertainment',
+ 'id' => 516,
+ 'name' => 'Magna Home Entertainment',
+ 'slug' => 'magnahomeentertainment',
'position' => 515,
],
[
- 'id' => 517,
- 'name' => 'Magnolia Pictures',
- 'slug' => 'magnoliapictures',
+ 'id' => 517,
+ 'name' => 'Magnolia Pictures',
+ 'slug' => 'magnoliapictures',
'position' => 516,
],
[
- 'id' => 518,
- 'name' => 'Maiden Japan',
- 'slug' => 'maidenjapan',
+ 'id' => 518,
+ 'name' => 'Maiden Japan',
+ 'slug' => 'maidenjapan',
'position' => 517,
],
[
- 'id' => 519,
- 'name' => 'Majeng Media',
- 'slug' => 'majengmedia',
+ 'id' => 519,
+ 'name' => 'Majeng Media',
+ 'slug' => 'majengmedia',
'position' => 518,
],
[
- 'id' => 520,
- 'name' => 'Majestic Home Entertainment',
- 'slug' => 'majestichomeentertainment',
+ 'id' => 520,
+ 'name' => 'Majestic Home Entertainment',
+ 'slug' => 'majestichomeentertainment',
'position' => 519,
],
[
- 'id' => 521,
- 'name' => 'Manga Home Entertainment',
- 'slug' => 'mangahomeentertainment',
+ 'id' => 521,
+ 'name' => 'Manga Home Entertainment',
+ 'slug' => 'mangahomeentertainment',
'position' => 520,
],
[
- 'id' => 522,
- 'name' => 'Manta Lab',
- 'slug' => 'mantalab',
+ 'id' => 522,
+ 'name' => 'Manta Lab',
+ 'slug' => 'mantalab',
'position' => 521,
],
[
- 'id' => 523,
- 'name' => 'Maple Studios',
- 'slug' => 'maplestudios',
+ 'id' => 523,
+ 'name' => 'Maple Studios',
+ 'slug' => 'maplestudios',
'position' => 522,
],
[
- 'id' => 524,
- 'name' => 'Marco Polo Production',
- 'slug' => 'marcopoloproduction',
+ 'id' => 524,
+ 'name' => 'Marco Polo Production',
+ 'slug' => 'marcopoloproduction',
'position' => 523,
],
[
- 'id' => 525,
- 'name' => 'Mariinsky',
- 'slug' => 'mariinsky',
+ 'id' => 525,
+ 'name' => 'Mariinsky',
+ 'slug' => 'mariinsky',
'position' => 524,
],
[
- 'id' => 526,
- 'name' => 'Marvel Studios',
- 'slug' => 'marvelstudios',
+ 'id' => 526,
+ 'name' => 'Marvel Studios',
+ 'slug' => 'marvelstudios',
'position' => 525,
],
[
- 'id' => 527,
- 'name' => 'Mascot Records',
- 'slug' => 'mascotrecords',
+ 'id' => 527,
+ 'name' => 'Mascot Records',
+ 'slug' => 'mascotrecords',
'position' => 526,
],
[
- 'id' => 528,
- 'name' => 'Massacre Video',
- 'slug' => 'massacrevideo',
+ 'id' => 528,
+ 'name' => 'Massacre Video',
+ 'slug' => 'massacrevideo',
'position' => 527,
],
[
- 'id' => 529,
- 'name' => 'Matchbox',
- 'slug' => 'matchbox',
+ 'id' => 529,
+ 'name' => 'Matchbox',
+ 'slug' => 'matchbox',
'position' => 528,
],
[
- 'id' => 530,
- 'name' => 'Matrix D',
- 'slug' => 'matrixd',
+ 'id' => 530,
+ 'name' => 'Matrix D',
+ 'slug' => 'matrixd',
'position' => 529,
],
[
- 'id' => 531,
- 'name' => 'Maxam',
- 'slug' => 'maxam',
+ 'id' => 531,
+ 'name' => 'Maxam',
+ 'slug' => 'maxam',
'position' => 530,
],
[
- 'id' => 532,
- 'name' => 'Maya Home Entertainment',
- 'slug' => 'mayahomeentertainment',
+ 'id' => 532,
+ 'name' => 'Maya Home Entertainment',
+ 'slug' => 'mayahomeentertainment',
'position' => 531,
],
[
- 'id' => 533,
- 'name' => 'MDG',
- 'slug' => 'mdg',
+ 'id' => 533,
+ 'name' => 'MDG',
+ 'slug' => 'mdg',
'position' => 532,
],
[
- 'id' => 534,
- 'name' => 'Media Blasters',
- 'slug' => 'mediablasters',
+ 'id' => 534,
+ 'name' => 'Media Blasters',
+ 'slug' => 'mediablasters',
'position' => 533,
],
[
- 'id' => 535,
- 'name' => 'Media Factory',
- 'slug' => 'mediafactory',
+ 'id' => 535,
+ 'name' => 'Media Factory',
+ 'slug' => 'mediafactory',
'position' => 534,
],
[
- 'id' => 536,
- 'name' => 'Media Target Distribution',
- 'slug' => 'mediatargetdistribution',
+ 'id' => 536,
+ 'name' => 'Media Target Distribution',
+ 'slug' => 'mediatargetdistribution',
'position' => 535,
],
[
- 'id' => 537,
- 'name' => 'MediaInVision',
- 'slug' => 'mediainvision',
+ 'id' => 537,
+ 'name' => 'MediaInVision',
+ 'slug' => 'mediainvision',
'position' => 536,
],
[
- 'id' => 538,
- 'name' => 'Mediatoon',
- 'slug' => 'mediatoon',
+ 'id' => 538,
+ 'name' => 'Mediatoon',
+ 'slug' => 'mediatoon',
'position' => 537,
],
[
- 'id' => 539,
- 'name' => 'Mediatres Estudio',
- 'slug' => 'mediatresestudio',
+ 'id' => 539,
+ 'name' => 'Mediatres Estudio',
+ 'slug' => 'mediatresestudio',
'position' => 538,
],
[
- 'id' => 540,
- 'name' => 'Medici Arts',
- 'slug' => 'mediciarts',
+ 'id' => 540,
+ 'name' => 'Medici Arts',
+ 'slug' => 'mediciarts',
'position' => 539,
],
[
- 'id' => 541,
- 'name' => 'Medici Classics',
- 'slug' => 'mediciclassics',
+ 'id' => 541,
+ 'name' => 'Medici Classics',
+ 'slug' => 'mediciclassics',
'position' => 540,
],
[
- 'id' => 542,
- 'name' => 'Mediumrare Entertainment',
- 'slug' => 'mediumrareentertainment',
+ 'id' => 542,
+ 'name' => 'Mediumrare Entertainment',
+ 'slug' => 'mediumrareentertainment',
'position' => 541,
],
[
- 'id' => 543,
- 'name' => 'Medusa',
- 'slug' => 'medusa',
+ 'id' => 543,
+ 'name' => 'Medusa',
+ 'slug' => 'medusa',
'position' => 542,
],
[
- 'id' => 544,
- 'name' => 'MegaStar',
- 'slug' => 'megastar',
+ 'id' => 544,
+ 'name' => 'MegaStar',
+ 'slug' => 'megastar',
'position' => 543,
],
[
- 'id' => 545,
- 'name' => 'Mei Ah',
- 'slug' => 'meiah',
+ 'id' => 545,
+ 'name' => 'Mei Ah',
+ 'slug' => 'meiah',
'position' => 544,
],
[
- 'id' => 546,
- 'name' => 'Meli Médias',
- 'slug' => 'melimedias',
+ 'id' => 546,
+ 'name' => 'Meli Médias',
+ 'slug' => 'melimedias',
'position' => 545,
],
[
- 'id' => 547,
- 'name' => 'Memento Films',
- 'slug' => 'mementofilms',
+ 'id' => 547,
+ 'name' => 'Memento Films',
+ 'slug' => 'mementofilms',
'position' => 546,
],
[
- 'id' => 548,
- 'name' => 'Menemsha Films',
- 'slug' => 'menemshafilms',
+ 'id' => 548,
+ 'name' => 'Menemsha Films',
+ 'slug' => 'menemshafilms',
'position' => 547,
],
[
- 'id' => 549,
- 'name' => 'Mercury',
- 'slug' => 'mercury',
+ 'id' => 549,
+ 'name' => 'Mercury',
+ 'slug' => 'mercury',
'position' => 548,
],
[
- 'id' => 550,
- 'name' => 'Mercury Studios',
- 'slug' => 'mercurystudios',
+ 'id' => 550,
+ 'name' => 'Mercury Studios',
+ 'slug' => 'mercurystudios',
'position' => 549,
],
[
- 'id' => 551,
- 'name' => 'Merge Soft Productions',
- 'slug' => 'mergesoftproductions',
+ 'id' => 551,
+ 'name' => 'Merge Soft Productions',
+ 'slug' => 'mergesoftproductions',
'position' => 550,
],
[
- 'id' => 552,
- 'name' => 'Metal Blade Records',
- 'slug' => 'metalbladerecords',
+ 'id' => 552,
+ 'name' => 'Metal Blade Records',
+ 'slug' => 'metalbladerecords',
'position' => 551,
],
[
- 'id' => 553,
- 'name' => 'Meteor',
- 'slug' => 'meteor',
+ 'id' => 553,
+ 'name' => 'Meteor',
+ 'slug' => 'meteor',
'position' => 552,
],
[
- 'id' => 554,
- 'name' => 'Metro-Goldwyn-Mayer',
- 'slug' => 'metrogoldwynmayer',
+ 'id' => 554,
+ 'name' => 'Metro-Goldwyn-Mayer',
+ 'slug' => 'metrogoldwynmayer',
'position' => 553,
],
[
- 'id' => 555,
- 'name' => 'Metrodome Video',
- 'slug' => 'metrodomevideo',
+ 'id' => 555,
+ 'name' => 'Metrodome Video',
+ 'slug' => 'metrodomevideo',
'position' => 554,
],
[
- 'id' => 556,
- 'name' => 'Metropolitan',
- 'slug' => 'metropolitan',
+ 'id' => 556,
+ 'name' => 'Metropolitan',
+ 'slug' => 'metropolitan',
'position' => 555,
],
[
- 'id' => 557,
- 'name' => 'MFA+',
- 'slug' => 'mfa',
+ 'id' => 557,
+ 'name' => 'MFA+',
+ 'slug' => 'mfa',
'position' => 556,
],
[
- 'id' => 558,
- 'name' => 'MIG Filmgroup',
- 'slug' => 'migfilmgroup',
+ 'id' => 558,
+ 'name' => 'MIG Filmgroup',
+ 'slug' => 'migfilmgroup',
'position' => 557,
],
[
- 'id' => 559,
- 'name' => 'Milestone',
- 'slug' => 'milestone',
+ 'id' => 559,
+ 'name' => 'Milestone',
+ 'slug' => 'milestone',
'position' => 558,
],
[
- 'id' => 560,
- 'name' => 'Mill Creek Entertainment',
- 'slug' => 'millcreekentertainment',
+ 'id' => 560,
+ 'name' => 'Mill Creek Entertainment',
+ 'slug' => 'millcreekentertainment',
'position' => 559,
],
[
- 'id' => 561,
- 'name' => 'Millennium Media',
- 'slug' => 'millenniummedia',
+ 'id' => 561,
+ 'name' => 'Millennium Media',
+ 'slug' => 'millenniummedia',
'position' => 560,
],
[
- 'id' => 562,
- 'name' => 'Mirage Entertainment',
- 'slug' => 'mirageentertainment',
+ 'id' => 562,
+ 'name' => 'Mirage Entertainment',
+ 'slug' => 'mirageentertainment',
'position' => 561,
],
[
- 'id' => 563,
- 'name' => 'Miramax',
- 'slug' => 'miramax',
+ 'id' => 563,
+ 'name' => 'Miramax',
+ 'slug' => 'miramax',
'position' => 562,
],
[
- 'id' => 564,
- 'name' => 'Misteriya Zvuka',
- 'slug' => 'misteriyazvuka',
+ 'id' => 564,
+ 'name' => 'Misteriya Zvuka',
+ 'slug' => 'misteriyazvuka',
'position' => 563,
],
[
- 'id' => 565,
- 'name' => 'MK2',
- 'slug' => 'mk2',
+ 'id' => 565,
+ 'name' => 'MK2',
+ 'slug' => 'mk2',
'position' => 564,
],
[
- 'id' => 566,
- 'name' => 'Mode Records',
- 'slug' => 'moderecords',
+ 'id' => 566,
+ 'name' => 'Mode Records',
+ 'slug' => 'moderecords',
'position' => 565,
],
[
- 'id' => 567,
- 'name' => 'Momentum Pictures',
- 'slug' => 'momentumpictures',
+ 'id' => 567,
+ 'name' => 'Momentum Pictures',
+ 'slug' => 'momentumpictures',
'position' => 566,
],
[
- 'id' => 568,
- 'name' => 'Mondo Home Entertainment',
- 'slug' => 'mondohomeentertainment',
+ 'id' => 568,
+ 'name' => 'Mondo Home Entertainment',
+ 'slug' => 'mondohomeentertainment',
'position' => 567,
],
[
- 'id' => 569,
- 'name' => 'Mondo Macabro',
- 'slug' => 'mondomacabro',
+ 'id' => 569,
+ 'name' => 'Mondo Macabro',
+ 'slug' => 'mondomacabro',
'position' => 568,
],
[
- 'id' => 570,
- 'name' => 'Mongrel Media',
- 'slug' => 'mongrelmedia',
+ 'id' => 570,
+ 'name' => 'Mongrel Media',
+ 'slug' => 'mongrelmedia',
'position' => 569,
],
[
- 'id' => 571,
- 'name' => 'Monolit',
- 'slug' => 'monolit',
+ 'id' => 571,
+ 'name' => 'Monolit',
+ 'slug' => 'monolit',
'position' => 570,
],
[
- 'id' => 572,
- 'name' => 'Monolith Video',
- 'slug' => 'monolithvideo',
+ 'id' => 572,
+ 'name' => 'Monolith Video',
+ 'slug' => 'monolithvideo',
'position' => 571,
],
[
- 'id' => 573,
- 'name' => 'Monster Pictures',
- 'slug' => 'monsterpictures',
+ 'id' => 573,
+ 'name' => 'Monster Pictures',
+ 'slug' => 'monsterpictures',
'position' => 572,
],
[
- 'id' => 574,
- 'name' => 'Monterey Video',
- 'slug' => 'montereyvideo',
+ 'id' => 574,
+ 'name' => 'Monterey Video',
+ 'slug' => 'montereyvideo',
'position' => 573,
],
[
- 'id' => 575,
- 'name' => 'Monument Releasing',
- 'slug' => 'monumentreleasing',
+ 'id' => 575,
+ 'name' => 'Monument Releasing',
+ 'slug' => 'monumentreleasing',
'position' => 574,
],
[
- 'id' => 576,
- 'name' => 'Morningstar',
- 'slug' => 'morningstar',
+ 'id' => 576,
+ 'name' => 'Morningstar',
+ 'slug' => 'morningstar',
'position' => 575,
],
[
- 'id' => 577,
- 'name' => 'Moserbaer',
- 'slug' => 'moserbaer',
+ 'id' => 577,
+ 'name' => 'Moserbaer',
+ 'slug' => 'moserbaer',
'position' => 576,
],
[
- 'id' => 578,
- 'name' => 'Moviemax',
- 'slug' => 'moviemax',
+ 'id' => 578,
+ 'name' => 'Moviemax',
+ 'slug' => 'moviemax',
'position' => 577,
],
[
- 'id' => 579,
- 'name' => 'Movinside',
- 'slug' => 'movinside',
+ 'id' => 579,
+ 'name' => 'Movinside',
+ 'slug' => 'movinside',
'position' => 578,
],
[
- 'id' => 580,
- 'name' => 'MPI Media Group',
- 'slug' => 'mpimediagroup',
+ 'id' => 580,
+ 'name' => 'MPI Media Group',
+ 'slug' => 'mpimediagroup',
'position' => 579,
],
[
- 'id' => 581,
- 'name' => 'Mr. Bongo Films',
- 'slug' => 'mrbongofilms',
+ 'id' => 581,
+ 'name' => 'Mr. Bongo Films',
+ 'slug' => 'mrbongofilms',
'position' => 580,
],
[
- 'id' => 582,
- 'name' => 'Mrg (Meridian)',
- 'slug' => 'mrgmeridian',
+ 'id' => 582,
+ 'name' => 'Mrg (Meridian)',
+ 'slug' => 'mrgmeridian',
'position' => 581,
],
[
- 'id' => 583,
- 'name' => 'MUBI',
- 'slug' => 'mubi',
+ 'id' => 583,
+ 'name' => 'MUBI',
+ 'slug' => 'mubi',
'position' => 582,
],
[
- 'id' => 584,
- 'name' => 'Mug Shot Productions',
- 'slug' => 'mugshotproductions',
+ 'id' => 584,
+ 'name' => 'Mug Shot Productions',
+ 'slug' => 'mugshotproductions',
'position' => 583,
],
[
- 'id' => 585,
- 'name' => 'Multimusic',
- 'slug' => 'multimusic',
+ 'id' => 585,
+ 'name' => 'Multimusic',
+ 'slug' => 'multimusic',
'position' => 584,
],
[
- 'id' => 586,
- 'name' => 'Muse',
- 'slug' => 'muse',
+ 'id' => 586,
+ 'name' => 'Muse',
+ 'slug' => 'muse',
'position' => 585,
],
[
- 'id' => 587,
- 'name' => 'Music Box Films',
- 'slug' => 'musicboxfilms',
+ 'id' => 587,
+ 'name' => 'Music Box Films',
+ 'slug' => 'musicboxfilms',
'position' => 586,
],
[
- 'id' => 588,
- 'name' => 'Music Brokers',
- 'slug' => 'musicbrokers',
+ 'id' => 588,
+ 'name' => 'Music Brokers',
+ 'slug' => 'musicbrokers',
'position' => 587,
],
[
- 'id' => 589,
- 'name' => 'Music Theories',
- 'slug' => 'musictheories',
+ 'id' => 589,
+ 'name' => 'Music Theories',
+ 'slug' => 'musictheories',
'position' => 588,
],
[
- 'id' => 590,
- 'name' => 'Music Video Distributors',
- 'slug' => 'musicvideodistributors',
+ 'id' => 590,
+ 'name' => 'Music Video Distributors',
+ 'slug' => 'musicvideodistributors',
'position' => 589,
],
[
- 'id' => 591,
- 'name' => 'Mustang Entertainment',
- 'slug' => 'mustangentertainment',
+ 'id' => 591,
+ 'name' => 'Mustang Entertainment',
+ 'slug' => 'mustangentertainment',
'position' => 590,
],
[
- 'id' => 592,
- 'name' => 'MVD Visual',
- 'slug' => 'mvdvisual',
+ 'id' => 592,
+ 'name' => 'MVD Visual',
+ 'slug' => 'mvdvisual',
'position' => 591,
],
[
- 'id' => 593,
- 'name' => 'MVD/VSC',
- 'slug' => 'mvdvsc',
+ 'id' => 593,
+ 'name' => 'MVD/VSC',
+ 'slug' => 'mvdvsc',
'position' => 592,
],
[
- 'id' => 594,
- 'name' => 'MVL',
- 'slug' => 'mvl',
+ 'id' => 594,
+ 'name' => 'MVL',
+ 'slug' => 'mvl',
'position' => 593,
],
[
- 'id' => 595,
- 'name' => 'MVM Entertainment',
- 'slug' => 'mvmentertainment',
+ 'id' => 595,
+ 'name' => 'MVM Entertainment',
+ 'slug' => 'mvmentertainment',
'position' => 594,
],
[
- 'id' => 596,
- 'name' => 'Myndform',
- 'slug' => 'myndform',
+ 'id' => 596,
+ 'name' => 'Myndform',
+ 'slug' => 'myndform',
'position' => 595,
],
[
- 'id' => 597,
- 'name' => 'Mystic Night Pictures',
- 'slug' => 'mysticnightpictures',
+ 'id' => 597,
+ 'name' => 'Mystic Night Pictures',
+ 'slug' => 'mysticnightpictures',
'position' => 596,
],
[
- 'id' => 598,
- 'name' => 'Nameless Media',
- 'slug' => 'namelessmedia',
+ 'id' => 598,
+ 'name' => 'Nameless Media',
+ 'slug' => 'namelessmedia',
'position' => 597,
],
[
- 'id' => 599,
- 'name' => 'Napalm Records',
- 'slug' => 'napalmrecords',
+ 'id' => 599,
+ 'name' => 'Napalm Records',
+ 'slug' => 'napalmrecords',
'position' => 598,
],
[
- 'id' => 600,
- 'name' => 'National Entertainment Media',
- 'slug' => 'nationalentertainmentmedia',
+ 'id' => 600,
+ 'name' => 'National Entertainment Media',
+ 'slug' => 'nationalentertainmentmedia',
'position' => 599,
],
[
- 'id' => 601,
- 'name' => 'National Film Archive',
- 'slug' => 'nationalfilmarchive',
+ 'id' => 601,
+ 'name' => 'National Film Archive',
+ 'slug' => 'nationalfilmarchive',
'position' => 600,
],
[
- 'id' => 602,
- 'name' => 'National Geographic',
- 'slug' => 'nationalgeographic',
+ 'id' => 602,
+ 'name' => 'National Geographic',
+ 'slug' => 'nationalgeographic',
'position' => 601,
],
[
- 'id' => 603,
- 'name' => 'Naxos',
- 'slug' => 'naxos',
+ 'id' => 603,
+ 'name' => 'Naxos',
+ 'slug' => 'naxos',
'position' => 602,
],
[
- 'id' => 604,
- 'name' => 'NBCUniversal Entertainment Japan',
- 'slug' => 'nbcuniversalentertainmentjapan',
+ 'id' => 604,
+ 'name' => 'NBCUniversal Entertainment Japan',
+ 'slug' => 'nbcuniversalentertainmentjapan',
'position' => 603,
],
[
- 'id' => 605,
- 'name' => 'NBO Entertainment',
- 'slug' => 'nboentertainment',
+ 'id' => 605,
+ 'name' => 'NBO Entertainment',
+ 'slug' => 'nboentertainment',
'position' => 604,
],
[
- 'id' => 606,
- 'name' => 'Neos',
- 'slug' => 'neos',
+ 'id' => 606,
+ 'name' => 'Neos',
+ 'slug' => 'neos',
'position' => 605,
],
[
- 'id' => 607,
- 'name' => 'Netflix',
- 'slug' => 'netflix',
+ 'id' => 607,
+ 'name' => 'Netflix',
+ 'slug' => 'netflix',
'position' => 606,
],
[
- 'id' => 608,
- 'name' => 'Network',
- 'slug' => 'network',
+ 'id' => 608,
+ 'name' => 'Network',
+ 'slug' => 'network',
'position' => 607,
],
[
- 'id' => 609,
- 'name' => 'New Blood',
- 'slug' => 'newblood',
+ 'id' => 609,
+ 'name' => 'New Blood',
+ 'slug' => 'newblood',
'position' => 608,
],
[
- 'id' => 610,
- 'name' => 'New Disc',
- 'slug' => 'newdisc',
+ 'id' => 610,
+ 'name' => 'New Disc',
+ 'slug' => 'newdisc',
'position' => 609,
],
[
- 'id' => 611,
- 'name' => 'New KSM',
- 'slug' => 'newksm',
+ 'id' => 611,
+ 'name' => 'New KSM',
+ 'slug' => 'newksm',
'position' => 610,
],
[
- 'id' => 612,
- 'name' => 'New Line Cinema',
- 'slug' => 'newlinecinema',
+ 'id' => 612,
+ 'name' => 'New Line Cinema',
+ 'slug' => 'newlinecinema',
'position' => 611,
],
[
- 'id' => 613,
- 'name' => 'New Movie Trading Co. Ltd',
- 'slug' => 'newmovietradingcoltd',
+ 'id' => 613,
+ 'name' => 'New Movie Trading Co. Ltd',
+ 'slug' => 'newmovietradingcoltd',
'position' => 612,
],
[
- 'id' => 614,
- 'name' => 'New Wave Films',
- 'slug' => 'newwavefilms',
+ 'id' => 614,
+ 'name' => 'New Wave Films',
+ 'slug' => 'newwavefilms',
'position' => 613,
],
[
- 'id' => 615,
- 'name' => 'NFi',
- 'slug' => 'nfi',
+ 'id' => 615,
+ 'name' => 'NFi',
+ 'slug' => 'nfi',
'position' => 614,
],
[
- 'id' => 616,
- 'name' => 'NHK',
- 'slug' => 'nhk',
+ 'id' => 616,
+ 'name' => 'NHK',
+ 'slug' => 'nhk',
'position' => 615,
],
[
- 'id' => 617,
- 'name' => 'Nipponart',
- 'slug' => 'nipponart',
+ 'id' => 617,
+ 'name' => 'Nipponart',
+ 'slug' => 'nipponart',
'position' => 616,
],
[
- 'id' => 618,
- 'name' => 'NIS America',
- 'slug' => 'nisamerica',
+ 'id' => 618,
+ 'name' => 'NIS America',
+ 'slug' => 'nisamerica',
'position' => 617,
],
[
- 'id' => 619,
- 'name' => 'Njutafilms',
- 'slug' => 'njutafilms',
+ 'id' => 619,
+ 'name' => 'Njutafilms',
+ 'slug' => 'njutafilms',
'position' => 618,
],
[
- 'id' => 620,
- 'name' => 'Noble Entertainment',
- 'slug' => 'nobleentertainment',
+ 'id' => 620,
+ 'name' => 'Noble Entertainment',
+ 'slug' => 'nobleentertainment',
'position' => 619,
],
[
- 'id' => 621,
- 'name' => 'Nordisk Film',
- 'slug' => 'nordiskfilm',
+ 'id' => 621,
+ 'name' => 'Nordisk Film',
+ 'slug' => 'nordiskfilm',
'position' => 620,
],
[
- 'id' => 622,
- 'name' => 'Norsk Film',
- 'slug' => 'norskfilm',
+ 'id' => 622,
+ 'name' => 'Norsk Film',
+ 'slug' => 'norskfilm',
'position' => 621,
],
[
- 'id' => 623,
- 'name' => 'North American Motion Pictures',
- 'slug' => 'northamericanmotionpictures',
+ 'id' => 623,
+ 'name' => 'North American Motion Pictures',
+ 'slug' => 'northamericanmotionpictures',
'position' => 622,
],
[
- 'id' => 624,
- 'name' => 'NOS Audiovisuais',
- 'slug' => 'nosaudiovisuais',
+ 'id' => 624,
+ 'name' => 'NOS Audiovisuais',
+ 'slug' => 'nosaudiovisuais',
'position' => 623,
],
[
- 'id' => 625,
- 'name' => 'Notorious Pictures',
- 'slug' => 'notoriouspictures',
+ 'id' => 625,
+ 'name' => 'Notorious Pictures',
+ 'slug' => 'notoriouspictures',
'position' => 624,
],
[
- 'id' => 626,
- 'name' => 'Nova Media',
- 'slug' => 'novamedia',
+ 'id' => 626,
+ 'name' => 'Nova Media',
+ 'slug' => 'novamedia',
'position' => 625,
],
[
- 'id' => 627,
- 'name' => 'Nova Sales and Distribution',
- 'slug' => 'novasalesanddistribution',
+ 'id' => 627,
+ 'name' => 'Nova Sales and Distribution',
+ 'slug' => 'novasalesanddistribution',
'position' => 626,
],
[
- 'id' => 628,
- 'name' => 'NSM',
- 'slug' => 'nsm',
+ 'id' => 628,
+ 'name' => 'NSM',
+ 'slug' => 'nsm',
'position' => 627,
],
[
- 'id' => 629,
- 'name' => 'NSM Records',
- 'slug' => 'nsmrecords',
+ 'id' => 629,
+ 'name' => 'NSM Records',
+ 'slug' => 'nsmrecords',
'position' => 628,
],
[
- 'id' => 630,
- 'name' => 'Nuclear Blast',
- 'slug' => 'nuclearblast',
+ 'id' => 630,
+ 'name' => 'Nuclear Blast',
+ 'slug' => 'nuclearblast',
'position' => 629,
],
[
- 'id' => 631,
- 'name' => 'Nucleus Films',
- 'slug' => 'nucleusfilms',
+ 'id' => 631,
+ 'name' => 'Nucleus Films',
+ 'slug' => 'nucleusfilms',
'position' => 630,
],
[
- 'id' => 632,
- 'name' => 'Oberlin Music',
- 'slug' => 'oberlinmusic',
+ 'id' => 632,
+ 'name' => 'Oberlin Music',
+ 'slug' => 'oberlinmusic',
'position' => 631,
],
[
- 'id' => 633,
- 'name' => 'Obras-Primas do Cinema',
- 'slug' => 'obrasprimasdocinema',
+ 'id' => 633,
+ 'name' => 'Obras-Primas do Cinema',
+ 'slug' => 'obrasprimasdocinema',
'position' => 632,
],
[
- 'id' => 634,
- 'name' => 'Odeon',
- 'slug' => 'odeon',
+ 'id' => 634,
+ 'name' => 'Odeon',
+ 'slug' => 'odeon',
'position' => 633,
],
[
- 'id' => 635,
- 'name' => 'OFDb Filmworks',
- 'slug' => 'ofdbfilmworks',
+ 'id' => 635,
+ 'name' => 'OFDb Filmworks',
+ 'slug' => 'ofdbfilmworks',
'position' => 634,
],
[
- 'id' => 636,
- 'name' => 'Olive Films',
- 'slug' => 'olivefilms',
+ 'id' => 636,
+ 'name' => 'Olive Films',
+ 'slug' => 'olivefilms',
'position' => 635,
],
[
- 'id' => 637,
- 'name' => 'Ondine',
- 'slug' => 'ondine',
+ 'id' => 637,
+ 'name' => 'Ondine',
+ 'slug' => 'ondine',
'position' => 636,
],
[
- 'id' => 638,
- 'name' => 'OnScreen Films',
- 'slug' => 'onscreenfilms',
+ 'id' => 638,
+ 'name' => 'OnScreen Films',
+ 'slug' => 'onscreenfilms',
'position' => 637,
],
[
- 'id' => 639,
- 'name' => 'Opening Distribution',
- 'slug' => 'openingdistribution',
+ 'id' => 639,
+ 'name' => 'Opening Distribution',
+ 'slug' => 'openingdistribution',
'position' => 638,
],
[
- 'id' => 640,
- 'name' => 'Opera Australia',
- 'slug' => 'operaaustralia',
+ 'id' => 640,
+ 'name' => 'Opera Australia',
+ 'slug' => 'operaaustralia',
'position' => 639,
],
[
- 'id' => 641,
- 'name' => 'Optimum Home Entertainment',
- 'slug' => 'optimumhomeentertainment',
+ 'id' => 641,
+ 'name' => 'Optimum Home Entertainment',
+ 'slug' => 'optimumhomeentertainment',
'position' => 640,
],
[
- 'id' => 642,
- 'name' => 'Opus Arte',
- 'slug' => 'opusarte',
+ 'id' => 642,
+ 'name' => 'Opus Arte',
+ 'slug' => 'opusarte',
'position' => 641,
],
[
- 'id' => 643,
- 'name' => 'Orange Studio',
- 'slug' => 'orangestudio',
+ 'id' => 643,
+ 'name' => 'Orange Studio',
+ 'slug' => 'orangestudio',
'position' => 642,
],
[
- 'id' => 644,
- 'name' => 'Orlando Eastwood Films',
- 'slug' => 'orlandoeastwoodfilms',
+ 'id' => 644,
+ 'name' => 'Orlando Eastwood Films',
+ 'slug' => 'orlandoeastwoodfilms',
'position' => 643,
],
[
- 'id' => 645,
- 'name' => 'Orustak Pictures',
- 'slug' => 'orustakpictures',
+ 'id' => 645,
+ 'name' => 'Orustak Pictures',
+ 'slug' => 'orustakpictures',
'position' => 644,
],
[
- 'id' => 646,
- 'name' => 'Oscilloscope Pictures',
- 'slug' => 'oscilloscopepictures',
+ 'id' => 646,
+ 'name' => 'Oscilloscope Pictures',
+ 'slug' => 'oscilloscopepictures',
'position' => 645,
],
[
- 'id' => 647,
- 'name' => 'Outplay',
- 'slug' => 'outplay',
+ 'id' => 647,
+ 'name' => 'Outplay',
+ 'slug' => 'outplay',
'position' => 646,
],
[
- 'id' => 648,
- 'name' => 'Palisades Tartan',
- 'slug' => 'palisadestartan',
+ 'id' => 648,
+ 'name' => 'Palisades Tartan',
+ 'slug' => 'palisadestartan',
'position' => 647,
],
[
- 'id' => 649,
- 'name' => 'Pan Vision',
- 'slug' => 'panvision',
+ 'id' => 649,
+ 'name' => 'Pan Vision',
+ 'slug' => 'panvision',
'position' => 648,
],
[
- 'id' => 650,
- 'name' => 'Panamint Cinema',
- 'slug' => 'panamintcinema',
+ 'id' => 650,
+ 'name' => 'Panamint Cinema',
+ 'slug' => 'panamintcinema',
'position' => 649,
],
[
- 'id' => 651,
- 'name' => 'Pandastorm Entertainment',
- 'slug' => 'pandastormentertainment',
+ 'id' => 651,
+ 'name' => 'Pandastorm Entertainment',
+ 'slug' => 'pandastormentertainment',
'position' => 650,
],
[
- 'id' => 652,
- 'name' => 'Pandora Film',
- 'slug' => 'pandorafilm',
+ 'id' => 652,
+ 'name' => 'Pandora Film',
+ 'slug' => 'pandorafilm',
'position' => 651,
],
[
- 'id' => 653,
- 'name' => 'Panegyric',
- 'slug' => 'panegyric',
+ 'id' => 653,
+ 'name' => 'Panegyric',
+ 'slug' => 'panegyric',
'position' => 652,
],
[
- 'id' => 654,
- 'name' => 'Panorama',
- 'slug' => 'panorama',
+ 'id' => 654,
+ 'name' => 'Panorama',
+ 'slug' => 'panorama',
'position' => 653,
],
[
- 'id' => 655,
- 'name' => 'Parade Deck Films',
- 'slug' => 'paradedeckfilms',
+ 'id' => 655,
+ 'name' => 'Parade Deck Films',
+ 'slug' => 'paradedeckfilms',
'position' => 654,
],
[
- 'id' => 656,
- 'name' => 'Paradise',
- 'slug' => 'paradise',
+ 'id' => 656,
+ 'name' => 'Paradise',
+ 'slug' => 'paradise',
'position' => 655,
],
[
- 'id' => 657,
- 'name' => 'Paradiso Films',
- 'slug' => 'paradisofilms',
+ 'id' => 657,
+ 'name' => 'Paradiso Films',
+ 'slug' => 'paradisofilms',
'position' => 656,
],
[
- 'id' => 658,
- 'name' => 'Paradox',
- 'slug' => 'paradox',
+ 'id' => 658,
+ 'name' => 'Paradox',
+ 'slug' => 'paradox',
'position' => 657,
],
[
- 'id' => 659,
- 'name' => 'Paramount Pictures',
- 'slug' => 'paramountpictures',
+ 'id' => 659,
+ 'name' => 'Paramount Pictures',
+ 'slug' => 'paramountpictures',
'position' => 658,
],
[
- 'id' => 660,
- 'name' => 'Paris Filmes',
- 'slug' => 'parisfilmes',
+ 'id' => 660,
+ 'name' => 'Paris Filmes',
+ 'slug' => 'parisfilmes',
'position' => 659,
],
[
- 'id' => 661,
- 'name' => 'Park Circus',
- 'slug' => 'parkcircus',
+ 'id' => 661,
+ 'name' => 'Park Circus',
+ 'slug' => 'parkcircus',
'position' => 660,
],
[
- 'id' => 662,
- 'name' => 'Parlophone',
- 'slug' => 'parlophone',
+ 'id' => 662,
+ 'name' => 'Parlophone',
+ 'slug' => 'parlophone',
'position' => 661,
],
[
- 'id' => 663,
- 'name' => 'Passion River',
- 'slug' => 'passionriver',
+ 'id' => 663,
+ 'name' => 'Passion River',
+ 'slug' => 'passionriver',
'position' => 662,
],
[
- 'id' => 664,
- 'name' => 'Pathe Distribution',
- 'slug' => 'pathedistribution',
+ 'id' => 664,
+ 'name' => 'Pathe Distribution',
+ 'slug' => 'pathedistribution',
'position' => 663,
],
[
- 'id' => 665,
- 'name' => 'PBS',
- 'slug' => 'pbs',
+ 'id' => 665,
+ 'name' => 'PBS',
+ 'slug' => 'pbs',
'position' => 664,
],
[
- 'id' => 666,
- 'name' => 'Peace Arch Trinity',
- 'slug' => 'peacearchtrinity',
+ 'id' => 666,
+ 'name' => 'Peace Arch Trinity',
+ 'slug' => 'peacearchtrinity',
'position' => 665,
],
[
- 'id' => 667,
- 'name' => 'Peccadillo Pictures',
- 'slug' => 'peccadillopictures',
+ 'id' => 667,
+ 'name' => 'Peccadillo Pictures',
+ 'slug' => 'peccadillopictures',
'position' => 666,
],
[
- 'id' => 668,
- 'name' => 'peppermint',
- 'slug' => 'peppermint',
+ 'id' => 668,
+ 'name' => 'peppermint',
+ 'slug' => 'peppermint',
'position' => 667,
],
[
- 'id' => 669,
- 'name' => 'Phase 4 Films',
- 'slug' => 'phase4films',
+ 'id' => 669,
+ 'name' => 'Phase 4 Films',
+ 'slug' => 'phase4films',
'position' => 668,
],
[
- 'id' => 670,
- 'name' => 'Philharmonia Baroque',
- 'slug' => 'philharmoniabaroque',
+ 'id' => 670,
+ 'name' => 'Philharmonia Baroque',
+ 'slug' => 'philharmoniabaroque',
'position' => 669,
],
[
- 'id' => 671,
- 'name' => 'Picture House Entertainment',
- 'slug' => 'picturehouseentertainment',
+ 'id' => 671,
+ 'name' => 'Picture House Entertainment',
+ 'slug' => 'picturehouseentertainment',
'position' => 670,
],
[
- 'id' => 672,
- 'name' => 'Pidax',
- 'slug' => 'pidax',
+ 'id' => 672,
+ 'name' => 'Pidax',
+ 'slug' => 'pidax',
'position' => 671,
],
[
- 'id' => 673,
- 'name' => 'Pink Floyd Records',
- 'slug' => 'pinkfloydrecords',
+ 'id' => 673,
+ 'name' => 'Pink Floyd Records',
+ 'slug' => 'pinkfloydrecords',
'position' => 672,
],
[
- 'id' => 674,
- 'name' => 'Pinnacle Films',
- 'slug' => 'pinnaclefilms',
+ 'id' => 674,
+ 'name' => 'Pinnacle Films',
+ 'slug' => 'pinnaclefilms',
'position' => 673,
],
[
- 'id' => 675,
- 'name' => 'Plain',
- 'slug' => 'plain',
+ 'id' => 675,
+ 'name' => 'Plain',
+ 'slug' => 'plain',
'position' => 674,
],
[
- 'id' => 676,
- 'name' => 'Platform Entertainment Limited',
- 'slug' => 'platformentertainmentlimited',
+ 'id' => 676,
+ 'name' => 'Platform Entertainment Limited',
+ 'slug' => 'platformentertainmentlimited',
'position' => 675,
],
[
- 'id' => 677,
- 'name' => 'PlayArte',
- 'slug' => 'playarte',
+ 'id' => 677,
+ 'name' => 'PlayArte',
+ 'slug' => 'playarte',
'position' => 676,
],
[
- 'id' => 678,
- 'name' => 'PLG UK Classics',
- 'slug' => 'plgukclassics',
+ 'id' => 678,
+ 'name' => 'PLG UK Classics',
+ 'slug' => 'plgukclassics',
'position' => 677,
],
[
- 'id' => 679,
- 'name' => 'Polyband & Toppic Video/WVG',
- 'slug' => 'polybandtoppicvideowvg',
+ 'id' => 679,
+ 'name' => 'Polyband & Toppic Video/WVG',
+ 'slug' => 'polybandtoppicvideowvg',
'position' => 678,
],
[
- 'id' => 680,
- 'name' => 'Polydor',
- 'slug' => 'polydor',
+ 'id' => 680,
+ 'name' => 'Polydor',
+ 'slug' => 'polydor',
'position' => 679,
],
[
- 'id' => 681,
- 'name' => 'Pony',
- 'slug' => 'pony',
+ 'id' => 681,
+ 'name' => 'Pony',
+ 'slug' => 'pony',
'position' => 680,
],
[
- 'id' => 682,
- 'name' => 'Pony Canyon',
- 'slug' => 'ponycanyon',
+ 'id' => 682,
+ 'name' => 'Pony Canyon',
+ 'slug' => 'ponycanyon',
'position' => 681,
],
[
- 'id' => 683,
- 'name' => 'Potemkine',
- 'slug' => 'potemkine',
+ 'id' => 683,
+ 'name' => 'Potemkine',
+ 'slug' => 'potemkine',
'position' => 682,
],
[
- 'id' => 684,
- 'name' => 'Powerhouse Films',
- 'slug' => 'powerhousefilms',
+ 'id' => 684,
+ 'name' => 'Powerhouse Films',
+ 'slug' => 'powerhousefilms',
'position' => 683,
],
[
- 'id' => 685,
- 'name' => 'Powerstatiom',
- 'slug' => 'powerstatiom',
+ 'id' => 685,
+ 'name' => 'Powerstatiom',
+ 'slug' => 'powerstatiom',
'position' => 684,
],
[
- 'id' => 686,
- 'name' => 'Pride & Joy',
- 'slug' => 'pridejoy',
+ 'id' => 686,
+ 'name' => 'Pride & Joy',
+ 'slug' => 'pridejoy',
'position' => 685,
],
[
- 'id' => 687,
- 'name' => 'Prinz Media',
- 'slug' => 'prinzmedia',
+ 'id' => 687,
+ 'name' => 'Prinz Media',
+ 'slug' => 'prinzmedia',
'position' => 686,
],
[
- 'id' => 688,
- 'name' => 'Pris Audiovisuais',
- 'slug' => 'prisaudiovisuais',
+ 'id' => 688,
+ 'name' => 'Pris Audiovisuais',
+ 'slug' => 'prisaudiovisuais',
'position' => 687,
],
[
- 'id' => 689,
- 'name' => 'Pro Video',
- 'slug' => 'provideo',
+ 'id' => 689,
+ 'name' => 'Pro Video',
+ 'slug' => 'provideo',
'position' => 688,
],
[
- 'id' => 690,
- 'name' => 'Pro-Motion',
- 'slug' => 'promotion',
+ 'id' => 690,
+ 'name' => 'Pro-Motion',
+ 'slug' => 'promotion',
'position' => 689,
],
[
- 'id' => 691,
- 'name' => 'Prod. JRB',
- 'slug' => 'prodjrb',
+ 'id' => 691,
+ 'name' => 'Prod. JRB',
+ 'slug' => 'prodjrb',
'position' => 690,
],
[
- 'id' => 692,
- 'name' => 'ProDisc',
- 'slug' => 'prodisc',
+ 'id' => 692,
+ 'name' => 'ProDisc',
+ 'slug' => 'prodisc',
'position' => 691,
],
[
- 'id' => 693,
- 'name' => 'Prokino',
- 'slug' => 'prokino',
+ 'id' => 693,
+ 'name' => 'Prokino',
+ 'slug' => 'prokino',
'position' => 692,
],
[
- 'id' => 694,
- 'name' => 'Provogue Records',
- 'slug' => 'provoguerecords',
+ 'id' => 694,
+ 'name' => 'Provogue Records',
+ 'slug' => 'provoguerecords',
'position' => 693,
],
[
- 'id' => 695,
- 'name' => 'Proware',
- 'slug' => 'proware',
+ 'id' => 695,
+ 'name' => 'Proware',
+ 'slug' => 'proware',
'position' => 694,
],
[
- 'id' => 696,
- 'name' => 'Pulp Video',
- 'slug' => 'pulpvideo',
+ 'id' => 696,
+ 'name' => 'Pulp Video',
+ 'slug' => 'pulpvideo',
'position' => 695,
],
[
- 'id' => 697,
- 'name' => 'Pulse Video',
- 'slug' => 'pulsevideo',
+ 'id' => 697,
+ 'name' => 'Pulse Video',
+ 'slug' => 'pulsevideo',
'position' => 696,
],
[
- 'id' => 698,
- 'name' => 'Pure Audio Recordings',
- 'slug' => 'pureaudiorecordings',
+ 'id' => 698,
+ 'name' => 'Pure Audio Recordings',
+ 'slug' => 'pureaudiorecordings',
'position' => 697,
],
[
- 'id' => 699,
- 'name' => 'Pure Flix Entertainment',
- 'slug' => 'pureflixentertainment',
+ 'id' => 699,
+ 'name' => 'Pure Flix Entertainment',
+ 'slug' => 'pureflixentertainment',
'position' => 698,
],
[
- 'id' => 700,
- 'name' => 'Pyramide Video',
- 'slug' => 'pyramidevideo',
+ 'id' => 700,
+ 'name' => 'Pyramide Video',
+ 'slug' => 'pyramidevideo',
'position' => 699,
],
[
- 'id' => 701,
- 'name' => 'Quality Films',
- 'slug' => 'qualityfilms',
+ 'id' => 701,
+ 'name' => 'Quality Films',
+ 'slug' => 'qualityfilms',
'position' => 700,
],
[
- 'id' => 702,
- 'name' => 'Quarto Valley Records',
- 'slug' => 'quartovalleyrecords',
+ 'id' => 702,
+ 'name' => 'Quarto Valley Records',
+ 'slug' => 'quartovalleyrecords',
'position' => 701,
],
[
- 'id' => 703,
- 'name' => 'Questar',
- 'slug' => 'questar',
+ 'id' => 703,
+ 'name' => 'Questar',
+ 'slug' => 'questar',
'position' => 702,
],
[
- 'id' => 704,
- 'name' => 'R Squared Films',
- 'slug' => 'rsquaredfilms',
+ 'id' => 704,
+ 'name' => 'R Squared Films',
+ 'slug' => 'rsquaredfilms',
'position' => 703,
],
[
- 'id' => 705,
- 'name' => 'Rapid Eye Movies',
- 'slug' => 'rapideyemovies',
+ 'id' => 705,
+ 'name' => 'Rapid Eye Movies',
+ 'slug' => 'rapideyemovies',
'position' => 704,
],
[
- 'id' => 706,
- 'name' => 'Raro Video',
- 'slug' => 'rarovideo',
+ 'id' => 706,
+ 'name' => 'Raro Video',
+ 'slug' => 'rarovideo',
'position' => 705,
],
[
- 'id' => 707,
- 'name' => 'RaroVideo U.S.',
- 'slug' => 'rarovideous',
+ 'id' => 707,
+ 'name' => 'RaroVideo U.S.',
+ 'slug' => 'rarovideous',
'position' => 706,
],
[
- 'id' => 708,
- 'name' => 'Raven Banner Releasing',
- 'slug' => 'ravenbannerreleasing',
+ 'id' => 708,
+ 'name' => 'Raven Banner Releasing',
+ 'slug' => 'ravenbannerreleasing',
'position' => 707,
],
[
- 'id' => 709,
- 'name' => 'Razor Digital Entertainment',
- 'slug' => 'razordigitalentertainment',
+ 'id' => 709,
+ 'name' => 'Razor Digital Entertainment',
+ 'slug' => 'razordigitalentertainment',
'position' => 708,
],
[
- 'id' => 710,
- 'name' => 'RCA',
- 'slug' => 'rca',
+ 'id' => 710,
+ 'name' => 'RCA',
+ 'slug' => 'rca',
'position' => 709,
],
[
- 'id' => 711,
- 'name' => 'RCO Live',
- 'slug' => 'rcolive',
+ 'id' => 711,
+ 'name' => 'RCO Live',
+ 'slug' => 'rcolive',
'position' => 710,
],
[
- 'id' => 712,
- 'name' => 'RCV',
- 'slug' => 'rcv',
+ 'id' => 712,
+ 'name' => 'RCV',
+ 'slug' => 'rcv',
'position' => 711,
],
[
- 'id' => 713,
- 'name' => 'Real Gone Music',
- 'slug' => 'realgonemusic',
+ 'id' => 713,
+ 'name' => 'Real Gone Music',
+ 'slug' => 'realgonemusic',
'position' => 712,
],
[
- 'id' => 714,
- 'name' => 'Reanimedia',
- 'slug' => 'reanimedia',
+ 'id' => 714,
+ 'name' => 'Reanimedia',
+ 'slug' => 'reanimedia',
'position' => 713,
],
[
- 'id' => 715,
- 'name' => 'Redemption',
- 'slug' => 'redemption',
+ 'id' => 715,
+ 'name' => 'Redemption',
+ 'slug' => 'redemption',
'position' => 714,
],
[
- 'id' => 716,
- 'name' => 'Reel',
- 'slug' => 'reel',
+ 'id' => 716,
+ 'name' => 'Reel',
+ 'slug' => 'reel',
'position' => 715,
],
[
- 'id' => 717,
- 'name' => 'Reliance Home Video & Games',
- 'slug' => 'reliancehomevideogames',
+ 'id' => 717,
+ 'name' => 'Reliance Home Video & Games',
+ 'slug' => 'reliancehomevideogames',
'position' => 716,
],
[
- 'id' => 718,
- 'name' => 'REM Culture',
- 'slug' => 'remculture',
+ 'id' => 718,
+ 'name' => 'REM Culture',
+ 'slug' => 'remculture',
'position' => 717,
],
[
- 'id' => 719,
- 'name' => 'Remain in Light',
- 'slug' => 'remaininlight',
+ 'id' => 719,
+ 'name' => 'Remain in Light',
+ 'slug' => 'remaininlight',
'position' => 718,
],
[
- 'id' => 720,
- 'name' => 'Reprise',
- 'slug' => 'reprise',
+ 'id' => 720,
+ 'name' => 'Reprise',
+ 'slug' => 'reprise',
'position' => 719,
],
[
- 'id' => 721,
- 'name' => 'Resen',
- 'slug' => 'resen',
+ 'id' => 721,
+ 'name' => 'Resen',
+ 'slug' => 'resen',
'position' => 720,
],
[
- 'id' => 722,
- 'name' => 'Retromedia',
- 'slug' => 'retromedia',
+ 'id' => 722,
+ 'name' => 'Retromedia',
+ 'slug' => 'retromedia',
'position' => 721,
],
[
- 'id' => 723,
- 'name' => 'Revelation Films Ltd.',
- 'slug' => 'revelationfilmsltd',
+ 'id' => 723,
+ 'name' => 'Revelation Films Ltd.',
+ 'slug' => 'revelationfilmsltd',
'position' => 722,
],
[
- 'id' => 724,
- 'name' => 'Revolver Entertainment',
- 'slug' => 'revolverentertainment',
+ 'id' => 724,
+ 'name' => 'Revolver Entertainment',
+ 'slug' => 'revolverentertainment',
'position' => 723,
],
[
- 'id' => 725,
- 'name' => 'Rhino Music',
- 'slug' => 'rhinomusic',
+ 'id' => 725,
+ 'name' => 'Rhino Music',
+ 'slug' => 'rhinomusic',
'position' => 724,
],
[
- 'id' => 726,
- 'name' => 'RHV',
- 'slug' => 'rhv',
+ 'id' => 726,
+ 'name' => 'RHV',
+ 'slug' => 'rhv',
'position' => 725,
],
[
- 'id' => 727,
- 'name' => 'Right Stuf',
- 'slug' => 'rightstuf',
+ 'id' => 727,
+ 'name' => 'Right Stuf',
+ 'slug' => 'rightstuf',
'position' => 726,
],
[
- 'id' => 728,
- 'name' => 'Rimini Editions',
- 'slug' => 'riminieditions',
+ 'id' => 728,
+ 'name' => 'Rimini Editions',
+ 'slug' => 'riminieditions',
'position' => 727,
],
[
- 'id' => 729,
- 'name' => 'Rising Sun Media',
- 'slug' => 'risingsunmedia',
+ 'id' => 729,
+ 'name' => 'Rising Sun Media',
+ 'slug' => 'risingsunmedia',
'position' => 728,
],
[
- 'id' => 730,
- 'name' => 'RLJ Entertainment',
- 'slug' => 'rljentertainment',
+ 'id' => 730,
+ 'name' => 'RLJ Entertainment',
+ 'slug' => 'rljentertainment',
'position' => 729,
],
[
- 'id' => 731,
- 'name' => 'Roadrunner Records',
- 'slug' => 'roadrunnerrecords',
+ 'id' => 731,
+ 'name' => 'Roadrunner Records',
+ 'slug' => 'roadrunnerrecords',
'position' => 730,
],
[
- 'id' => 732,
- 'name' => 'Roadshow Entertainment',
- 'slug' => 'roadshowentertainment',
+ 'id' => 732,
+ 'name' => 'Roadshow Entertainment',
+ 'slug' => 'roadshowentertainment',
'position' => 731,
],
[
- 'id' => 733,
- 'name' => 'Rone',
- 'slug' => 'rone',
+ 'id' => 733,
+ 'name' => 'Rone',
+ 'slug' => 'rone',
'position' => 732,
],
[
- 'id' => 734,
- 'name' => 'Ronin Flix',
- 'slug' => 'roninflix',
+ 'id' => 734,
+ 'name' => 'Ronin Flix',
+ 'slug' => 'roninflix',
'position' => 733,
],
[
- 'id' => 735,
- 'name' => 'Rotana Home Entertainment',
- 'slug' => 'rotanahomeentertainment',
+ 'id' => 735,
+ 'name' => 'Rotana Home Entertainment',
+ 'slug' => 'rotanahomeentertainment',
'position' => 734,
],
[
- 'id' => 736,
- 'name' => 'Rough Trade',
- 'slug' => 'roughtrade',
+ 'id' => 736,
+ 'name' => 'Rough Trade',
+ 'slug' => 'roughtrade',
'position' => 735,
],
[
- 'id' => 737,
- 'name' => 'Rounder',
- 'slug' => 'rounder',
+ 'id' => 737,
+ 'name' => 'Rounder',
+ 'slug' => 'rounder',
'position' => 736,
],
[
- 'id' => 738,
- 'name' => 'Saffron Hill Films',
- 'slug' => 'saffronhillfilms',
+ 'id' => 738,
+ 'name' => 'Saffron Hill Films',
+ 'slug' => 'saffronhillfilms',
'position' => 737,
],
[
- 'id' => 739,
- 'name' => 'Samuel Goldwyn Films',
- 'slug' => 'samuelgoldwynfilms',
+ 'id' => 739,
+ 'name' => 'Samuel Goldwyn Films',
+ 'slug' => 'samuelgoldwynfilms',
'position' => 738,
],
[
- 'id' => 740,
- 'name' => 'San Francisco Symphony',
- 'slug' => 'sanfranciscosymphony',
+ 'id' => 740,
+ 'name' => 'San Francisco Symphony',
+ 'slug' => 'sanfranciscosymphony',
'position' => 739,
],
[
- 'id' => 741,
- 'name' => 'Sandrew Metronome',
- 'slug' => 'sandrewmetronome',
+ 'id' => 741,
+ 'name' => 'Sandrew Metronome',
+ 'slug' => 'sandrewmetronome',
'position' => 740,
],
[
- 'id' => 742,
- 'name' => 'Saphrane',
- 'slug' => 'saphrane',
+ 'id' => 742,
+ 'name' => 'Saphrane',
+ 'slug' => 'saphrane',
'position' => 741,
],
[
- 'id' => 743,
- 'name' => 'Savor',
- 'slug' => 'savor',
+ 'id' => 743,
+ 'name' => 'Savor',
+ 'slug' => 'savor',
'position' => 742,
],
[
- 'id' => 744,
- 'name' => 'Scanbox Entertainment',
- 'slug' => 'scanboxentertainment',
+ 'id' => 744,
+ 'name' => 'Scanbox Entertainment',
+ 'slug' => 'scanboxentertainment',
'position' => 743,
],
[
- 'id' => 745,
- 'name' => 'Scenic Labs',
- 'slug' => 'sceniclabs',
+ 'id' => 745,
+ 'name' => 'Scenic Labs',
+ 'slug' => 'sceniclabs',
'position' => 744,
],
[
- 'id' => 746,
- 'name' => 'SchröderMedia',
- 'slug' => 'schrodermedia',
+ 'id' => 746,
+ 'name' => 'SchröderMedia',
+ 'slug' => 'schrodermedia',
'position' => 745,
],
[
- 'id' => 747,
- 'name' => 'Scorpion Releasing',
- 'slug' => 'scorpionreleasing',
+ 'id' => 747,
+ 'name' => 'Scorpion Releasing',
+ 'slug' => 'scorpionreleasing',
'position' => 746,
],
[
- 'id' => 748,
- 'name' => 'Scream Team Releasing',
- 'slug' => 'screamteamreleasing',
+ 'id' => 748,
+ 'name' => 'Scream Team Releasing',
+ 'slug' => 'screamteamreleasing',
'position' => 747,
],
[
- 'id' => 749,
- 'name' => 'Screen Media',
- 'slug' => 'screenmedia',
+ 'id' => 749,
+ 'name' => 'Screen Media',
+ 'slug' => 'screenmedia',
'position' => 748,
],
[
- 'id' => 750,
- 'name' => 'Screenbound Pictures',
- 'slug' => 'screenboundpictures',
+ 'id' => 750,
+ 'name' => 'Screenbound Pictures',
+ 'slug' => 'screenboundpictures',
'position' => 749,
],
[
- 'id' => 751,
- 'name' => 'Screenwave Media',
- 'slug' => 'screenwavemedia',
+ 'id' => 751,
+ 'name' => 'Screenwave Media',
+ 'slug' => 'screenwavemedia',
'position' => 750,
],
[
- 'id' => 752,
- 'name' => 'Second Run',
- 'slug' => 'secondrun',
+ 'id' => 752,
+ 'name' => 'Second Run',
+ 'slug' => 'secondrun',
'position' => 751,
],
[
- 'id' => 753,
- 'name' => 'Second Sight',
- 'slug' => 'secondsight',
+ 'id' => 753,
+ 'name' => 'Second Sight',
+ 'slug' => 'secondsight',
'position' => 752,
],
[
- 'id' => 754,
- 'name' => 'Seedsman Group',
- 'slug' => 'seedsmangroup',
+ 'id' => 754,
+ 'name' => 'Seedsman Group',
+ 'slug' => 'seedsmangroup',
'position' => 753,
],
[
- 'id' => 755,
- 'name' => 'Select Video',
- 'slug' => 'selectvideo',
+ 'id' => 755,
+ 'name' => 'Select Video',
+ 'slug' => 'selectvideo',
'position' => 754,
],
[
- 'id' => 756,
- 'name' => 'Selecta Vision',
- 'slug' => 'selectavision',
+ 'id' => 756,
+ 'name' => 'Selecta Vision',
+ 'slug' => 'selectavision',
'position' => 755,
],
[
- 'id' => 757,
- 'name' => 'Senator',
- 'slug' => 'senator',
+ 'id' => 757,
+ 'name' => 'Senator',
+ 'slug' => 'senator',
'position' => 756,
],
[
- 'id' => 758,
- 'name' => 'Sentai Filmworks',
- 'slug' => 'sentaifilmworks',
+ 'id' => 758,
+ 'name' => 'Sentai Filmworks',
+ 'slug' => 'sentaifilmworks',
'position' => 757,
],
[
- 'id' => 759,
- 'name' => 'Seven7',
- 'slug' => 'seven7',
+ 'id' => 759,
+ 'name' => 'Seven7',
+ 'slug' => 'seven7',
'position' => 758,
],
[
- 'id' => 760,
- 'name' => 'Severin Films',
- 'slug' => 'severinfilms',
+ 'id' => 760,
+ 'name' => 'Severin Films',
+ 'slug' => 'severinfilms',
'position' => 759,
],
[
- 'id' => 761,
- 'name' => 'Seville',
- 'slug' => 'seville',
+ 'id' => 761,
+ 'name' => 'Seville',
+ 'slug' => 'seville',
'position' => 760,
],
[
- 'id' => 762,
- 'name' => 'Seyons Entertainment',
- 'slug' => 'seyonsentertainment',
+ 'id' => 762,
+ 'name' => 'Seyons Entertainment',
+ 'slug' => 'seyonsentertainment',
'position' => 761,
],
[
- 'id' => 763,
- 'name' => 'SF Studios',
- 'slug' => 'sfstudios',
+ 'id' => 763,
+ 'name' => 'SF Studios',
+ 'slug' => 'sfstudios',
'position' => 762,
],
[
- 'id' => 764,
- 'name' => 'SGL Entertainment',
- 'slug' => 'sglentertainment',
+ 'id' => 764,
+ 'name' => 'SGL Entertainment',
+ 'slug' => 'sglentertainment',
'position' => 763,
],
[
- 'id' => 765,
- 'name' => 'Shameless',
- 'slug' => 'shameless',
+ 'id' => 765,
+ 'name' => 'Shameless',
+ 'slug' => 'shameless',
'position' => 764,
],
[
- 'id' => 766,
- 'name' => 'Shamrock Media',
- 'slug' => 'shamrockmedia',
+ 'id' => 766,
+ 'name' => 'Shamrock Media',
+ 'slug' => 'shamrockmedia',
'position' => 765,
],
[
- 'id' => 767,
- 'name' => 'Shanghai Epic Music Entertainment',
- 'slug' => 'shanghaiepicmusicentertainment',
+ 'id' => 767,
+ 'name' => 'Shanghai Epic Music Entertainment',
+ 'slug' => 'shanghaiepicmusicentertainment',
'position' => 766,
],
[
- 'id' => 768,
- 'name' => 'Shemaroo',
- 'slug' => 'shemaroo',
+ 'id' => 768,
+ 'name' => 'Shemaroo',
+ 'slug' => 'shemaroo',
'position' => 767,
],
[
- 'id' => 769,
- 'name' => 'Shochiku',
- 'slug' => 'shochiku',
+ 'id' => 769,
+ 'name' => 'Shochiku',
+ 'slug' => 'shochiku',
'position' => 768,
],
[
- 'id' => 770,
- 'name' => 'Shock',
- 'slug' => 'shock',
+ 'id' => 770,
+ 'name' => 'Shock',
+ 'slug' => 'shock',
'position' => 769,
],
[
- 'id' => 771,
- 'name' => 'Shogaku Kan',
- 'slug' => 'shogakukan',
+ 'id' => 771,
+ 'name' => 'Shogaku Kan',
+ 'slug' => 'shogakukan',
'position' => 770,
],
[
- 'id' => 772,
- 'name' => 'Shout Factory',
- 'slug' => 'shoutfactory',
+ 'id' => 772,
+ 'name' => 'Shout Factory',
+ 'slug' => 'shoutfactory',
'position' => 771,
],
[
- 'id' => 773,
- 'name' => 'Showbox',
- 'slug' => 'showbox',
+ 'id' => 773,
+ 'name' => 'Showbox',
+ 'slug' => 'showbox',
'position' => 772,
],
[
- 'id' => 774,
- 'name' => 'Showtime Entertainment',
- 'slug' => 'showtimeentertainment',
+ 'id' => 774,
+ 'name' => 'Showtime Entertainment',
+ 'slug' => 'showtimeentertainment',
'position' => 773,
],
[
- 'id' => 775,
- 'name' => 'Shriek Show',
- 'slug' => 'shriekshow',
+ 'id' => 775,
+ 'name' => 'Shriek Show',
+ 'slug' => 'shriekshow',
'position' => 774,
],
[
- 'id' => 776,
- 'name' => 'Shudder',
- 'slug' => 'shudder',
+ 'id' => 776,
+ 'name' => 'Shudder',
+ 'slug' => 'shudder',
'position' => 775,
],
[
- 'id' => 777,
- 'name' => 'Sidonis',
- 'slug' => 'sidonis',
+ 'id' => 777,
+ 'name' => 'Sidonis',
+ 'slug' => 'sidonis',
'position' => 776,
],
[
- 'id' => 778,
- 'name' => 'Sidonis Calysta',
- 'slug' => 'sidoniscalysta',
+ 'id' => 778,
+ 'name' => 'Sidonis Calysta',
+ 'slug' => 'sidoniscalysta',
'position' => 777,
],
[
- 'id' => 779,
- 'name' => 'Signal One Entertainment',
- 'slug' => 'signaloneentertainment',
+ 'id' => 779,
+ 'name' => 'Signal One Entertainment',
+ 'slug' => 'signaloneentertainment',
'position' => 778,
],
[
- 'id' => 780,
- 'name' => 'Signature Entertainment',
- 'slug' => 'signatureentertainment',
+ 'id' => 780,
+ 'name' => 'Signature Entertainment',
+ 'slug' => 'signatureentertainment',
'position' => 779,
],
[
- 'id' => 781,
- 'name' => 'Silver Vision',
- 'slug' => 'silvervision',
+ 'id' => 781,
+ 'name' => 'Silver Vision',
+ 'slug' => 'silvervision',
'position' => 780,
],
[
- 'id' => 782,
- 'name' => 'Sinister Film',
- 'slug' => 'sinisterfilm',
+ 'id' => 782,
+ 'name' => 'Sinister Film',
+ 'slug' => 'sinisterfilm',
'position' => 781,
],
[
- 'id' => 783,
- 'name' => 'Siren Visual Entertainment',
- 'slug' => 'sirenvisualentertainment',
+ 'id' => 783,
+ 'name' => 'Siren Visual Entertainment',
+ 'slug' => 'sirenvisualentertainment',
'position' => 782,
],
[
- 'id' => 784,
- 'name' => 'Skani',
- 'slug' => 'skani',
+ 'id' => 784,
+ 'name' => 'Skani',
+ 'slug' => 'skani',
'position' => 783,
],
[
- 'id' => 785,
- 'name' => 'Sky Digi',
- 'slug' => 'skydigi',
+ 'id' => 785,
+ 'name' => 'Sky Digi',
+ 'slug' => 'skydigi',
'position' => 784,
],
[
- 'id' => 786,
- 'name' => 'Slasher // Video',
- 'slug' => 'slashervideo',
+ 'id' => 786,
+ 'name' => 'Slasher // Video',
+ 'slug' => 'slashervideo',
'position' => 785,
],
[
- 'id' => 787,
- 'name' => 'Slovak Film Institute',
- 'slug' => 'slovakfilminstitute',
+ 'id' => 787,
+ 'name' => 'Slovak Film Institute',
+ 'slug' => 'slovakfilminstitute',
'position' => 786,
],
[
- 'id' => 788,
- 'name' => 'SM Life Design Group',
- 'slug' => 'smlifedesigngroup',
+ 'id' => 788,
+ 'name' => 'SM Life Design Group',
+ 'slug' => 'smlifedesigngroup',
'position' => 787,
],
[
- 'id' => 789,
- 'name' => 'Smooth Pictures',
- 'slug' => 'smoothpictures',
+ 'id' => 789,
+ 'name' => 'Smooth Pictures',
+ 'slug' => 'smoothpictures',
'position' => 788,
],
[
- 'id' => 790,
- 'name' => 'Snapper Music',
- 'slug' => 'snappermusic',
+ 'id' => 790,
+ 'name' => 'Snapper Music',
+ 'slug' => 'snappermusic',
'position' => 789,
],
[
- 'id' => 791,
- 'name' => 'Soda Pictures',
- 'slug' => 'sodapictures',
+ 'id' => 791,
+ 'name' => 'Soda Pictures',
+ 'slug' => 'sodapictures',
'position' => 790,
],
[
- 'id' => 792,
- 'name' => 'Sono Luminus',
- 'slug' => 'sonoluminus',
+ 'id' => 792,
+ 'name' => 'Sono Luminus',
+ 'slug' => 'sonoluminus',
'position' => 791,
],
[
- 'id' => 793,
- 'name' => 'Sony Music',
- 'slug' => 'sonymusic',
+ 'id' => 793,
+ 'name' => 'Sony Music',
+ 'slug' => 'sonymusic',
'position' => 792,
],
[
- 'id' => 794,
- 'name' => 'Sony Pictures',
- 'slug' => 'sonypictures',
+ 'id' => 794,
+ 'name' => 'Sony Pictures',
+ 'slug' => 'sonypictures',
'position' => 793,
],
[
- 'id' => 795,
- 'name' => 'Sony Pictures Classics',
- 'slug' => 'sonypicturesclassics',
+ 'id' => 795,
+ 'name' => 'Sony Pictures Classics',
+ 'slug' => 'sonypicturesclassics',
'position' => 794,
],
[
- 'id' => 796,
- 'name' => 'Soul Media',
- 'slug' => 'soulmedia',
+ 'id' => 796,
+ 'name' => 'Soul Media',
+ 'slug' => 'soulmedia',
'position' => 795,
],
[
- 'id' => 797,
- 'name' => 'Soulfood Music Distribution',
- 'slug' => 'soulfoodmusicdistribution',
+ 'id' => 797,
+ 'name' => 'Soulfood Music Distribution',
+ 'slug' => 'soulfoodmusicdistribution',
'position' => 796,
],
[
- 'id' => 798,
- 'name' => 'Soyuz',
- 'slug' => 'soyuz',
+ 'id' => 798,
+ 'name' => 'Soyuz',
+ 'slug' => 'soyuz',
'position' => 797,
],
[
- 'id' => 799,
- 'name' => 'Spectrum',
- 'slug' => 'spectrum',
+ 'id' => 799,
+ 'name' => 'Spectrum',
+ 'slug' => 'spectrum',
'position' => 798,
],
[
- 'id' => 800,
- 'name' => 'Spentzos Film',
- 'slug' => 'spentzosfilm',
+ 'id' => 800,
+ 'name' => 'Spentzos Film',
+ 'slug' => 'spentzosfilm',
'position' => 799,
],
[
- 'id' => 801,
- 'name' => 'Spirit Entertainment',
- 'slug' => 'spiritentertainment',
+ 'id' => 801,
+ 'name' => 'Spirit Entertainment',
+ 'slug' => 'spiritentertainment',
'position' => 800,
],
[
- 'id' => 802,
- 'name' => 'Spirit Media GmbH',
- 'slug' => 'spiritmediagmbh',
+ 'id' => 802,
+ 'name' => 'Spirit Media GmbH',
+ 'slug' => 'spiritmediagmbh',
'position' => 801,
],
[
- 'id' => 803,
- 'name' => 'Splendid Entertainment',
- 'slug' => 'splendidentertainment',
+ 'id' => 803,
+ 'name' => 'Splendid Entertainment',
+ 'slug' => 'splendidentertainment',
'position' => 802,
],
[
- 'id' => 804,
- 'name' => 'Splendid Film',
- 'slug' => 'splendidfilm',
+ 'id' => 804,
+ 'name' => 'Splendid Film',
+ 'slug' => 'splendidfilm',
'position' => 803,
],
[
- 'id' => 805,
- 'name' => 'SPO',
- 'slug' => 'spo',
+ 'id' => 805,
+ 'name' => 'SPO',
+ 'slug' => 'spo',
'position' => 804,
],
[
- 'id' => 806,
- 'name' => 'Square Enix',
- 'slug' => 'squareenix',
+ 'id' => 806,
+ 'name' => 'Square Enix',
+ 'slug' => 'squareenix',
'position' => 805,
],
[
- 'id' => 807,
- 'name' => 'Sri Balaji Video',
- 'slug' => 'sribalajivideo',
+ 'id' => 807,
+ 'name' => 'Sri Balaji Video',
+ 'slug' => 'sribalajivideo',
'position' => 806,
],
[
- 'id' => 808,
- 'name' => 'SRS Cinema',
- 'slug' => 'srscinema',
+ 'id' => 808,
+ 'name' => 'SRS Cinema',
+ 'slug' => 'srscinema',
'position' => 807,
],
[
- 'id' => 809,
- 'name' => 'SSO Recordings',
- 'slug' => 'ssorecordings',
+ 'id' => 809,
+ 'name' => 'SSO Recordings',
+ 'slug' => 'ssorecordings',
'position' => 808,
],
[
- 'id' => 810,
- 'name' => 'ST2 Music',
- 'slug' => 'st2music',
+ 'id' => 810,
+ 'name' => 'ST2 Music',
+ 'slug' => 'st2music',
'position' => 809,
],
[
- 'id' => 811,
- 'name' => 'Star Media Entertainment',
- 'slug' => 'starmediaentertainment',
+ 'id' => 811,
+ 'name' => 'Star Media Entertainment',
+ 'slug' => 'starmediaentertainment',
'position' => 810,
],
[
- 'id' => 812,
- 'name' => 'Starlight',
- 'slug' => 'starlight',
+ 'id' => 812,
+ 'name' => 'Starlight',
+ 'slug' => 'starlight',
'position' => 811,
],
[
- 'id' => 813,
- 'name' => 'Starz / Anchor Bay',
- 'slug' => 'starzanchorbay',
+ 'id' => 813,
+ 'name' => 'Starz / Anchor Bay',
+ 'slug' => 'starzanchorbay',
'position' => 812,
],
[
- 'id' => 814,
- 'name' => 'Ster Kinekor',
- 'slug' => 'sterkinekor',
+ 'id' => 814,
+ 'name' => 'Ster Kinekor',
+ 'slug' => 'sterkinekor',
'position' => 813,
],
[
- 'id' => 815,
- 'name' => 'Sterling Entertainment',
- 'slug' => 'sterlingentertainment',
+ 'id' => 815,
+ 'name' => 'Sterling Entertainment',
+ 'slug' => 'sterlingentertainment',
'position' => 814,
],
[
- 'id' => 816,
- 'name' => 'Stingray',
- 'slug' => 'stingray',
+ 'id' => 816,
+ 'name' => 'Stingray',
+ 'slug' => 'stingray',
'position' => 815,
],
[
- 'id' => 817,
- 'name' => 'Stockfisch Records',
- 'slug' => 'stockfischrecords',
+ 'id' => 817,
+ 'name' => 'Stockfisch Records',
+ 'slug' => 'stockfischrecords',
'position' => 816,
],
[
- 'id' => 818,
- 'name' => 'Strand Releasing',
- 'slug' => 'strandreleasing',
+ 'id' => 818,
+ 'name' => 'Strand Releasing',
+ 'slug' => 'strandreleasing',
'position' => 817,
],
[
- 'id' => 819,
- 'name' => 'Studio 4K',
- 'slug' => 'studio4k',
+ 'id' => 819,
+ 'name' => 'Studio 4K',
+ 'slug' => 'studio4k',
'position' => 818,
],
[
- 'id' => 820,
- 'name' => 'Studio Canal',
- 'slug' => 'studiocanal',
+ 'id' => 820,
+ 'name' => 'Studio Canal',
+ 'slug' => 'studiocanal',
'position' => 819,
],
[
- 'id' => 821,
- 'name' => 'Studio Ghibli',
- 'slug' => 'studioghibli',
+ 'id' => 821,
+ 'name' => 'Studio Ghibli',
+ 'slug' => 'studioghibli',
'position' => 820,
],
[
- 'id' => 822,
- 'name' => 'Studio Hamburg Enterprises',
- 'slug' => 'studiohamburgenterprises',
+ 'id' => 822,
+ 'name' => 'Studio Hamburg Enterprises',
+ 'slug' => 'studiohamburgenterprises',
'position' => 821,
],
[
- 'id' => 823,
- 'name' => 'Studio S',
- 'slug' => 'studios',
+ 'id' => 823,
+ 'name' => 'Studio S',
+ 'slug' => 'studios',
'position' => 822,
],
[
- 'id' => 824,
- 'name' => 'Subkultur Entertainment',
- 'slug' => 'subkulturentertainment',
+ 'id' => 824,
+ 'name' => 'Subkultur Entertainment',
+ 'slug' => 'subkulturentertainment',
'position' => 823,
],
[
- 'id' => 825,
- 'name' => 'Suevia Films',
- 'slug' => 'sueviafilms',
+ 'id' => 825,
+ 'name' => 'Suevia Films',
+ 'slug' => 'sueviafilms',
'position' => 824,
],
[
- 'id' => 826,
- 'name' => 'Summit Entertainment',
- 'slug' => 'summitentertainment',
+ 'id' => 826,
+ 'name' => 'Summit Entertainment',
+ 'slug' => 'summitentertainment',
'position' => 825,
],
[
- 'id' => 827,
- 'name' => 'Sunfilm Entertainment',
- 'slug' => 'sunfilmentertainment',
+ 'id' => 827,
+ 'name' => 'Sunfilm Entertainment',
+ 'slug' => 'sunfilmentertainment',
'position' => 826,
],
[
- 'id' => 828,
- 'name' => 'Surround Records',
- 'slug' => 'surroundrecords',
+ 'id' => 828,
+ 'name' => 'Surround Records',
+ 'slug' => 'surroundrecords',
'position' => 827,
],
[
- 'id' => 829,
- 'name' => 'Svensk Filmindustri',
- 'slug' => 'svenskfilmindustri',
+ 'id' => 829,
+ 'name' => 'Svensk Filmindustri',
+ 'slug' => 'svenskfilmindustri',
'position' => 828,
],
[
- 'id' => 830,
- 'name' => 'Swen Filmes',
- 'slug' => 'swenfilmes',
+ 'id' => 830,
+ 'name' => 'Swen Filmes',
+ 'slug' => 'swenfilmes',
'position' => 829,
],
[
- 'id' => 831,
- 'name' => 'Synapse Films',
- 'slug' => 'synapsefilms',
+ 'id' => 831,
+ 'name' => 'Synapse Films',
+ 'slug' => 'synapsefilms',
'position' => 830,
],
[
- 'id' => 832,
- 'name' => 'Syndicado',
- 'slug' => 'syndicado',
+ 'id' => 832,
+ 'name' => 'Syndicado',
+ 'slug' => 'syndicado',
'position' => 831,
],
[
- 'id' => 833,
- 'name' => 'Synergetic',
- 'slug' => 'synergetic',
+ 'id' => 833,
+ 'name' => 'Synergetic',
+ 'slug' => 'synergetic',
'position' => 832,
],
[
- 'id' => 834,
- 'name' => 'T- Series',
- 'slug' => 'tseries',
+ 'id' => 834,
+ 'name' => 'T- Series',
+ 'slug' => 'tseries',
'position' => 833,
],
[
- 'id' => 835,
- 'name' => 'T.V.P.',
- 'slug' => 'tvp',
+ 'id' => 835,
+ 'name' => 'T.V.P.',
+ 'slug' => 'tvp',
'position' => 834,
],
[
- 'id' => 836,
- 'name' => 'Tacet Records',
- 'slug' => 'tacetrecords',
+ 'id' => 836,
+ 'name' => 'Tacet Records',
+ 'slug' => 'tacetrecords',
'position' => 835,
],
[
- 'id' => 837,
- 'name' => 'Tai Seng',
- 'slug' => 'taiseng',
+ 'id' => 837,
+ 'name' => 'Tai Seng',
+ 'slug' => 'taiseng',
'position' => 836,
],
[
- 'id' => 838,
- 'name' => 'Tai Sheng',
- 'slug' => 'taisheng',
+ 'id' => 838,
+ 'name' => 'Tai Sheng',
+ 'slug' => 'taisheng',
'position' => 837,
],
[
- 'id' => 839,
- 'name' => 'TakeOne',
- 'slug' => 'takeone',
+ 'id' => 839,
+ 'name' => 'TakeOne',
+ 'slug' => 'takeone',
'position' => 838,
],
[
- 'id' => 840,
- 'name' => 'Takeshobo',
- 'slug' => 'takeshobo',
+ 'id' => 840,
+ 'name' => 'Takeshobo',
+ 'slug' => 'takeshobo',
'position' => 839,
],
[
- 'id' => 841,
- 'name' => 'Tamasa Diffusion',
- 'slug' => 'tamasadiffusion',
+ 'id' => 841,
+ 'name' => 'Tamasa Diffusion',
+ 'slug' => 'tamasadiffusion',
'position' => 840,
],
[
- 'id' => 842,
- 'name' => 'TC Entertainment',
- 'slug' => 'tcentertainment',
+ 'id' => 842,
+ 'name' => 'TC Entertainment',
+ 'slug' => 'tcentertainment',
'position' => 841,
],
[
- 'id' => 843,
- 'name' => 'TDK',
- 'slug' => 'tdk',
+ 'id' => 843,
+ 'name' => 'TDK',
+ 'slug' => 'tdk',
'position' => 842,
],
[
- 'id' => 844,
- 'name' => 'Team Marketing',
- 'slug' => 'teammarketing',
+ 'id' => 844,
+ 'name' => 'Team Marketing',
+ 'slug' => 'teammarketing',
'position' => 843,
],
[
- 'id' => 845,
- 'name' => 'Teatro Real',
- 'slug' => 'teatroreal',
+ 'id' => 845,
+ 'name' => 'Teatro Real',
+ 'slug' => 'teatroreal',
'position' => 844,
],
[
- 'id' => 846,
- 'name' => 'Tema Distribuciones',
- 'slug' => 'temadistribuciones',
+ 'id' => 846,
+ 'name' => 'Tema Distribuciones',
+ 'slug' => 'temadistribuciones',
'position' => 845,
],
[
- 'id' => 847,
- 'name' => 'Tempe Digital',
- 'slug' => 'tempedigital',
+ 'id' => 847,
+ 'name' => 'Tempe Digital',
+ 'slug' => 'tempedigital',
'position' => 846,
],
[
- 'id' => 848,
- 'name' => 'TF1 Vidéo',
- 'slug' => 'tf1video',
+ 'id' => 848,
+ 'name' => 'TF1 Vidéo',
+ 'slug' => 'tf1video',
'position' => 847,
],
[
- 'id' => 849,
- 'name' => 'The Blu',
- 'slug' => 'theblu',
+ 'id' => 849,
+ 'name' => 'The Blu',
+ 'slug' => 'theblu',
'position' => 848,
],
[
- 'id' => 850,
- 'name' => 'The Ecstasy of Films',
- 'slug' => 'theecstasyoffilms',
+ 'id' => 850,
+ 'name' => 'The Ecstasy of Films',
+ 'slug' => 'theecstasyoffilms',
'position' => 849,
],
[
- 'id' => 851,
- 'name' => 'The Film Detective',
- 'slug' => 'thefilmdetective',
+ 'id' => 851,
+ 'name' => 'The Film Detective',
+ 'slug' => 'thefilmdetective',
'position' => 850,
],
[
- 'id' => 852,
- 'name' => 'The Jokers',
- 'slug' => 'thejokers',
+ 'id' => 852,
+ 'name' => 'The Jokers',
+ 'slug' => 'thejokers',
'position' => 851,
],
[
- 'id' => 853,
- 'name' => 'The On',
- 'slug' => 'theon',
+ 'id' => 853,
+ 'name' => 'The On',
+ 'slug' => 'theon',
'position' => 852,
],
[
- 'id' => 854,
- 'name' => 'Thimfilm',
- 'slug' => 'thimfilm',
+ 'id' => 854,
+ 'name' => 'Thimfilm',
+ 'slug' => 'thimfilm',
'position' => 853,
],
[
- 'id' => 855,
- 'name' => 'Third Window Films',
- 'slug' => 'thirdwindowfilms',
+ 'id' => 855,
+ 'name' => 'Third Window Films',
+ 'slug' => 'thirdwindowfilms',
'position' => 854,
],
[
- 'id' => 856,
- 'name' => 'Thunderbean Animation',
- 'slug' => 'thunderbeananimation',
+ 'id' => 856,
+ 'name' => 'Thunderbean Animation',
+ 'slug' => 'thunderbeananimation',
'position' => 855,
],
[
- 'id' => 857,
- 'name' => 'Thunderbird Releasing',
- 'slug' => 'thunderbirdreleasing',
+ 'id' => 857,
+ 'name' => 'Thunderbird Releasing',
+ 'slug' => 'thunderbirdreleasing',
'position' => 856,
],
[
- 'id' => 858,
- 'name' => 'Tiberius Film',
- 'slug' => 'tiberiusfilm',
+ 'id' => 858,
+ 'name' => 'Tiberius Film',
+ 'slug' => 'tiberiusfilm',
'position' => 857,
],
[
- 'id' => 859,
- 'name' => 'Time Life',
- 'slug' => 'timelife',
+ 'id' => 859,
+ 'name' => 'Time Life',
+ 'slug' => 'timelife',
'position' => 858,
],
[
- 'id' => 860,
- 'name' => 'Timeless Media Group',
- 'slug' => 'timelessmediagroup',
+ 'id' => 860,
+ 'name' => 'Timeless Media Group',
+ 'slug' => 'timelessmediagroup',
'position' => 859,
],
[
- 'id' => 861,
- 'name' => 'TLA Releasing',
- 'slug' => 'tlareleasing',
+ 'id' => 861,
+ 'name' => 'TLA Releasing',
+ 'slug' => 'tlareleasing',
'position' => 860,
],
[
- 'id' => 862,
- 'name' => 'Tobis Film',
- 'slug' => 'tobisfilm',
+ 'id' => 862,
+ 'name' => 'Tobis Film',
+ 'slug' => 'tobisfilm',
'position' => 861,
],
[
- 'id' => 863,
- 'name' => 'Toei',
- 'slug' => 'toei',
+ 'id' => 863,
+ 'name' => 'Toei',
+ 'slug' => 'toei',
'position' => 862,
],
[
- 'id' => 864,
- 'name' => 'Toho',
- 'slug' => 'toho',
+ 'id' => 864,
+ 'name' => 'Toho',
+ 'slug' => 'toho',
'position' => 863,
],
[
- 'id' => 865,
- 'name' => 'Tokyo Shock',
- 'slug' => 'tokyoshock',
+ 'id' => 865,
+ 'name' => 'Tokyo Shock',
+ 'slug' => 'tokyoshock',
'position' => 864,
],
[
- 'id' => 866,
- 'name' => 'Tonpool Medien GmbH',
- 'slug' => 'tonpoolmediengmbh',
+ 'id' => 866,
+ 'name' => 'Tonpool Medien GmbH',
+ 'slug' => 'tonpoolmediengmbh',
'position' => 865,
],
[
- 'id' => 867,
- 'name' => 'Topics Entertainment',
- 'slug' => 'topicsentertainment',
+ 'id' => 867,
+ 'name' => 'Topics Entertainment',
+ 'slug' => 'topicsentertainment',
'position' => 866,
],
[
- 'id' => 868,
- 'name' => 'Touchstone Pictures',
- 'slug' => 'touchstonepictures',
+ 'id' => 868,
+ 'name' => 'Touchstone Pictures',
+ 'slug' => 'touchstonepictures',
'position' => 867,
],
[
- 'id' => 869,
- 'name' => 'Transmission Films',
- 'slug' => 'transmissionfilms',
+ 'id' => 869,
+ 'name' => 'Transmission Films',
+ 'slug' => 'transmissionfilms',
'position' => 868,
],
[
- 'id' => 870,
- 'name' => 'Travel Video Store',
- 'slug' => 'travelvideostore',
+ 'id' => 870,
+ 'name' => 'Travel Video Store',
+ 'slug' => 'travelvideostore',
'position' => 869,
],
[
- 'id' => 871,
- 'name' => 'TriArt',
- 'slug' => 'triart',
+ 'id' => 871,
+ 'name' => 'TriArt',
+ 'slug' => 'triart',
'position' => 870,
],
[
- 'id' => 872,
- 'name' => 'Trigon Film',
- 'slug' => 'trigonfilm',
+ 'id' => 872,
+ 'name' => 'Trigon Film',
+ 'slug' => 'trigonfilm',
'position' => 871,
],
[
- 'id' => 873,
- 'name' => 'Trinity Home Entertainment',
- 'slug' => 'trinityhomeentertainment',
+ 'id' => 873,
+ 'name' => 'Trinity Home Entertainment',
+ 'slug' => 'trinityhomeentertainment',
'position' => 872,
],
[
- 'id' => 874,
- 'name' => 'TriPictures',
- 'slug' => 'tripictures',
+ 'id' => 874,
+ 'name' => 'TriPictures',
+ 'slug' => 'tripictures',
'position' => 873,
],
[
- 'id' => 875,
- 'name' => 'Troma',
- 'slug' => 'troma',
+ 'id' => 875,
+ 'name' => 'Troma',
+ 'slug' => 'troma',
'position' => 874,
],
[
- 'id' => 876,
- 'name' => 'Turbine Medien',
- 'slug' => 'turbinemedien',
+ 'id' => 876,
+ 'name' => 'Turbine Medien',
+ 'slug' => 'turbinemedien',
'position' => 875,
],
[
- 'id' => 877,
- 'name' => 'Turtle Records',
- 'slug' => 'turtlerecords',
+ 'id' => 877,
+ 'name' => 'Turtle Records',
+ 'slug' => 'turtlerecords',
'position' => 876,
],
[
- 'id' => 878,
- 'name' => 'TVA Films',
- 'slug' => 'tvafilms',
+ 'id' => 878,
+ 'name' => 'TVA Films',
+ 'slug' => 'tvafilms',
'position' => 877,
],
[
- 'id' => 879,
- 'name' => 'Twilight Time',
- 'slug' => 'twilighttime',
+ 'id' => 879,
+ 'name' => 'Twilight Time',
+ 'slug' => 'twilighttime',
'position' => 878,
],
[
- 'id' => 880,
- 'name' => 'TWIN Co., Ltd.',
- 'slug' => 'twincoltd',
+ 'id' => 880,
+ 'name' => 'TWIN Co., Ltd.',
+ 'slug' => 'twincoltd',
'position' => 879,
],
[
- 'id' => 881,
- 'name' => 'UCA',
- 'slug' => 'uca',
+ 'id' => 881,
+ 'name' => 'UCA',
+ 'slug' => 'uca',
'position' => 880,
],
[
- 'id' => 882,
- 'name' => 'UDR',
- 'slug' => 'udr',
+ 'id' => 882,
+ 'name' => 'UDR',
+ 'slug' => 'udr',
'position' => 881,
],
[
- 'id' => 883,
- 'name' => 'UEK',
- 'slug' => 'uek',
+ 'id' => 883,
+ 'name' => 'UEK',
+ 'slug' => 'uek',
'position' => 882,
],
[
- 'id' => 884,
- 'name' => 'UFA/DVD',
- 'slug' => 'ufadvd',
+ 'id' => 884,
+ 'name' => 'UFA/DVD',
+ 'slug' => 'ufadvd',
'position' => 883,
],
[
- 'id' => 885,
- 'name' => 'UGC PH',
- 'slug' => 'ugcph',
+ 'id' => 885,
+ 'name' => 'UGC PH',
+ 'slug' => 'ugcph',
'position' => 884,
],
[
- 'id' => 886,
- 'name' => 'Ultimate3DHeaven',
- 'slug' => 'ultimate3dheaven',
+ 'id' => 886,
+ 'name' => 'Ultimate3DHeaven',
+ 'slug' => 'ultimate3dheaven',
'position' => 885,
],
[
- 'id' => 887,
- 'name' => 'Ultra',
- 'slug' => 'ultra',
+ 'id' => 887,
+ 'name' => 'Ultra',
+ 'slug' => 'ultra',
'position' => 886,
],
[
- 'id' => 888,
- 'name' => 'Umbrella Entertainment',
- 'slug' => 'umbrellaentertainment',
+ 'id' => 888,
+ 'name' => 'Umbrella Entertainment',
+ 'slug' => 'umbrellaentertainment',
'position' => 887,
],
[
- 'id' => 889,
- 'name' => 'UMC',
- 'slug' => 'umc',
+ 'id' => 889,
+ 'name' => 'UMC',
+ 'slug' => 'umc',
'position' => 888,
],
[
- 'id' => 890,
- 'name' => 'Uncork\'d Entertainment',
- 'slug' => 'uncorkdentertainment',
+ 'id' => 890,
+ 'name' => 'Uncork\'d Entertainment',
+ 'slug' => 'uncorkdentertainment',
'position' => 889,
],
[
- 'id' => 891,
- 'name' => 'Unearthed Films',
- 'slug' => 'unearthedfilms',
+ 'id' => 891,
+ 'name' => 'Unearthed Films',
+ 'slug' => 'unearthedfilms',
'position' => 890,
],
[
- 'id' => 892,
- 'name' => 'UNI DISC',
- 'slug' => 'unidisc',
+ 'id' => 892,
+ 'name' => 'UNI DISC',
+ 'slug' => 'unidisc',
'position' => 891,
],
[
- 'id' => 893,
- 'name' => 'Unimundos',
- 'slug' => 'unimundos',
+ 'id' => 893,
+ 'name' => 'Unimundos',
+ 'slug' => 'unimundos',
'position' => 892,
],
[
- 'id' => 894,
- 'name' => 'Unitel',
- 'slug' => 'unitel',
+ 'id' => 894,
+ 'name' => 'Unitel',
+ 'slug' => 'unitel',
'position' => 893,
],
[
- 'id' => 895,
- 'name' => 'Universal Music',
- 'slug' => 'universalmusic',
+ 'id' => 895,
+ 'name' => 'Universal Music',
+ 'slug' => 'universalmusic',
'position' => 894,
],
[
- 'id' => 896,
- 'name' => 'Universal Sony Pictures Home Entertainment',
- 'slug' => 'universalsonypictureshomeentertainment',
+ 'id' => 896,
+ 'name' => 'Universal Sony Pictures Home Entertainment',
+ 'slug' => 'universalsonypictureshomeentertainment',
'position' => 895,
],
[
- 'id' => 897,
- 'name' => 'Universal Studios',
- 'slug' => 'universalstudios',
+ 'id' => 897,
+ 'name' => 'Universal Studios',
+ 'slug' => 'universalstudios',
'position' => 896,
],
[
- 'id' => 898,
- 'name' => 'Universe Laser & Video Co.',
- 'slug' => 'universelaservideoco',
+ 'id' => 898,
+ 'name' => 'Universe Laser & Video Co.',
+ 'slug' => 'universelaservideoco',
'position' => 897,
],
[
- 'id' => 899,
- 'name' => 'Universum Film',
- 'slug' => 'universumfilm',
+ 'id' => 899,
+ 'name' => 'Universum Film',
+ 'slug' => 'universumfilm',
'position' => 898,
],
[
- 'id' => 900,
- 'name' => 'UTV',
- 'slug' => 'utv',
+ 'id' => 900,
+ 'name' => 'UTV',
+ 'slug' => 'utv',
'position' => 899,
],
[
- 'id' => 901,
- 'name' => 'VAP',
- 'slug' => 'vap',
+ 'id' => 901,
+ 'name' => 'VAP',
+ 'slug' => 'vap',
'position' => 900,
],
[
- 'id' => 902,
- 'name' => 'VCI',
- 'slug' => 'vci',
+ 'id' => 902,
+ 'name' => 'VCI',
+ 'slug' => 'vci',
'position' => 901,
],
[
- 'id' => 903,
- 'name' => 'Vendetta Films',
- 'slug' => 'vendettafilms',
+ 'id' => 903,
+ 'name' => 'Vendetta Films',
+ 'slug' => 'vendettafilms',
'position' => 902,
],
[
- 'id' => 904,
- 'name' => 'Versátil Home Video',
- 'slug' => 'versatilhomevideo',
+ 'id' => 904,
+ 'name' => 'Versátil Home Video',
+ 'slug' => 'versatilhomevideo',
'position' => 903,
],
[
- 'id' => 905,
- 'name' => 'Vertical Entertainment',
- 'slug' => 'verticalentertainment',
+ 'id' => 905,
+ 'name' => 'Vertical Entertainment',
+ 'slug' => 'verticalentertainment',
'position' => 904,
],
[
- 'id' => 906,
- 'name' => 'Vértice 360º',
- 'slug' => 'vertice360o',
+ 'id' => 906,
+ 'name' => 'Vértice 360º',
+ 'slug' => 'vertice360o',
'position' => 905,
],
[
- 'id' => 907,
- 'name' => 'Vertigo Berlin',
- 'slug' => 'vertigoberlin',
+ 'id' => 907,
+ 'name' => 'Vertigo Berlin',
+ 'slug' => 'vertigoberlin',
'position' => 906,
],
[
- 'id' => 908,
- 'name' => 'Vértigo Films',
- 'slug' => 'vertigofilms',
+ 'id' => 908,
+ 'name' => 'Vértigo Films',
+ 'slug' => 'vertigofilms',
'position' => 907,
],
[
- 'id' => 909,
- 'name' => 'Verve Pictures',
- 'slug' => 'vervepictures',
+ 'id' => 909,
+ 'name' => 'Verve Pictures',
+ 'slug' => 'vervepictures',
'position' => 908,
],
[
- 'id' => 910,
- 'name' => 'Via Vision Entertainment',
- 'slug' => 'viavisionentertainment',
+ 'id' => 910,
+ 'name' => 'Via Vision Entertainment',
+ 'slug' => 'viavisionentertainment',
'position' => 909,
],
[
- 'id' => 911,
- 'name' => 'Vicol Entertainment',
- 'slug' => 'vicolentertainment',
+ 'id' => 911,
+ 'name' => 'Vicol Entertainment',
+ 'slug' => 'vicolentertainment',
'position' => 910,
],
[
- 'id' => 912,
- 'name' => 'Vicom',
- 'slug' => 'vicom',
+ 'id' => 912,
+ 'name' => 'Vicom',
+ 'slug' => 'vicom',
'position' => 911,
],
[
- 'id' => 913,
- 'name' => 'Victor Entertainment',
- 'slug' => 'victorentertainment',
+ 'id' => 913,
+ 'name' => 'Victor Entertainment',
+ 'slug' => 'victorentertainment',
'position' => 912,
],
[
- 'id' => 914,
- 'name' => 'Videa Cde',
- 'slug' => 'videacde',
+ 'id' => 914,
+ 'name' => 'Videa Cde',
+ 'slug' => 'videacde',
'position' => 913,
],
[
- 'id' => 915,
- 'name' => 'Video Film Express',
- 'slug' => 'videofilmexpress',
+ 'id' => 915,
+ 'name' => 'Video Film Express',
+ 'slug' => 'videofilmexpress',
'position' => 914,
],
[
- 'id' => 916,
- 'name' => 'Video Music, Inc.',
- 'slug' => 'videomusicinc',
+ 'id' => 916,
+ 'name' => 'Video Music, Inc.',
+ 'slug' => 'videomusicinc',
'position' => 915,
],
[
- 'id' => 917,
- 'name' => 'Video Service Corp.',
- 'slug' => 'videoservicecorp',
+ 'id' => 917,
+ 'name' => 'Video Service Corp.',
+ 'slug' => 'videoservicecorp',
'position' => 916,
],
[
- 'id' => 918,
- 'name' => 'Video Travel',
- 'slug' => 'videotravel',
+ 'id' => 918,
+ 'name' => 'Video Travel',
+ 'slug' => 'videotravel',
'position' => 917,
],
[
- 'id' => 919,
- 'name' => 'Videomax',
- 'slug' => 'videomax',
+ 'id' => 919,
+ 'name' => 'Videomax',
+ 'slug' => 'videomax',
'position' => 918,
],
[
- 'id' => 920,
- 'name' => 'Vii Pillars Entertainment',
- 'slug' => 'viipillarsentertainment',
+ 'id' => 920,
+ 'name' => 'Vii Pillars Entertainment',
+ 'slug' => 'viipillarsentertainment',
'position' => 919,
],
[
- 'id' => 921,
- 'name' => 'Village Films',
- 'slug' => 'villagefilms',
+ 'id' => 921,
+ 'name' => 'Village Films',
+ 'slug' => 'villagefilms',
'position' => 920,
],
[
- 'id' => 922,
- 'name' => 'Vinegar Syndrome',
- 'slug' => 'vinegarsyndrome',
+ 'id' => 922,
+ 'name' => 'Vinegar Syndrome',
+ 'slug' => 'vinegarsyndrome',
'position' => 921,
],
[
- 'id' => 923,
- 'name' => 'Vinny Movies',
- 'slug' => 'vinnymovies',
+ 'id' => 923,
+ 'name' => 'Vinny Movies',
+ 'slug' => 'vinnymovies',
'position' => 922,
],
[
- 'id' => 924,
- 'name' => 'Virgil Films & Entertainment',
- 'slug' => 'virgilfilmsentertainment',
+ 'id' => 924,
+ 'name' => 'Virgil Films & Entertainment',
+ 'slug' => 'virgilfilmsentertainment',
'position' => 923,
],
[
- 'id' => 925,
- 'name' => 'Virgin Records',
- 'slug' => 'virginrecords',
+ 'id' => 925,
+ 'name' => 'Virgin Records',
+ 'slug' => 'virginrecords',
'position' => 924,
],
[
- 'id' => 926,
- 'name' => 'Vision Films',
- 'slug' => 'visionfilms',
+ 'id' => 926,
+ 'name' => 'Vision Films',
+ 'slug' => 'visionfilms',
'position' => 925,
],
[
- 'id' => 927,
- 'name' => 'Visual Entertainment Group',
- 'slug' => 'visualentertainmentgroup',
+ 'id' => 927,
+ 'name' => 'Visual Entertainment Group',
+ 'slug' => 'visualentertainmentgroup',
'position' => 926,
],
[
- 'id' => 928,
- 'name' => 'Vivendi Visual Entertainment',
- 'slug' => 'vivendivisualentertainment',
+ 'id' => 928,
+ 'name' => 'Vivendi Visual Entertainment',
+ 'slug' => 'vivendivisualentertainment',
'position' => 927,
],
[
- 'id' => 929,
- 'name' => 'Viz Pictures',
- 'slug' => 'vizpictures',
+ 'id' => 929,
+ 'name' => 'Viz Pictures',
+ 'slug' => 'vizpictures',
'position' => 928,
],
[
- 'id' => 930,
- 'name' => 'VLMedia',
- 'slug' => 'vlmedia',
+ 'id' => 930,
+ 'name' => 'VLMedia',
+ 'slug' => 'vlmedia',
'position' => 929,
],
[
- 'id' => 931,
- 'name' => 'Volga',
- 'slug' => 'volga',
+ 'id' => 931,
+ 'name' => 'Volga',
+ 'slug' => 'volga',
'position' => 930,
],
[
- 'id' => 932,
- 'name' => 'VVS Films',
- 'slug' => 'vvsfilms',
+ 'id' => 932,
+ 'name' => 'VVS Films',
+ 'slug' => 'vvsfilms',
'position' => 931,
],
[
- 'id' => 933,
- 'name' => 'VZ Handels GmbH',
- 'slug' => 'vzhandelsgmbh',
+ 'id' => 933,
+ 'name' => 'VZ Handels GmbH',
+ 'slug' => 'vzhandelsgmbh',
'position' => 932,
],
[
- 'id' => 934,
- 'name' => 'Ward Records',
- 'slug' => 'wardrecords',
+ 'id' => 934,
+ 'name' => 'Ward Records',
+ 'slug' => 'wardrecords',
'position' => 933,
],
[
- 'id' => 935,
- 'name' => 'Warner Bros.',
- 'slug' => 'warnerbros',
+ 'id' => 935,
+ 'name' => 'Warner Bros.',
+ 'slug' => 'warnerbros',
'position' => 934,
],
[
- 'id' => 936,
- 'name' => 'Warner Music',
- 'slug' => 'warnermusic',
+ 'id' => 936,
+ 'name' => 'Warner Music',
+ 'slug' => 'warnermusic',
'position' => 935,
],
[
- 'id' => 937,
- 'name' => 'WEA',
- 'slug' => 'wea',
+ 'id' => 937,
+ 'name' => 'WEA',
+ 'slug' => 'wea',
'position' => 936,
],
[
- 'id' => 938,
- 'name' => 'Weinstein Company',
- 'slug' => 'weinsteincompany',
+ 'id' => 938,
+ 'name' => 'Weinstein Company',
+ 'slug' => 'weinsteincompany',
'position' => 937,
],
[
- 'id' => 939,
- 'name' => 'Well Go USA',
- 'slug' => 'wellgousa',
+ 'id' => 939,
+ 'name' => 'Well Go USA',
+ 'slug' => 'wellgousa',
'position' => 938,
],
[
- 'id' => 940,
- 'name' => 'Weltkino Filmverleih',
- 'slug' => 'weltkinofilmverleih',
+ 'id' => 940,
+ 'name' => 'Weltkino Filmverleih',
+ 'slug' => 'weltkinofilmverleih',
'position' => 939,
],
[
- 'id' => 941,
- 'name' => 'West Video',
- 'slug' => 'westvideo',
+ 'id' => 941,
+ 'name' => 'West Video',
+ 'slug' => 'westvideo',
'position' => 940,
],
[
- 'id' => 942,
- 'name' => 'White Pearl Movies',
- 'slug' => 'whitepearlmovies',
+ 'id' => 942,
+ 'name' => 'White Pearl Movies',
+ 'slug' => 'whitepearlmovies',
'position' => 941,
],
[
- 'id' => 943,
- 'name' => 'Wicked-Vision Media',
- 'slug' => 'wickedvisionmedia',
+ 'id' => 943,
+ 'name' => 'Wicked-Vision Media',
+ 'slug' => 'wickedvisionmedia',
'position' => 942,
],
[
- 'id' => 944,
- 'name' => 'Wienerworld',
- 'slug' => 'wienerworld',
+ 'id' => 944,
+ 'name' => 'Wienerworld',
+ 'slug' => 'wienerworld',
'position' => 943,
],
[
- 'id' => 945,
- 'name' => 'Wild Bunch',
- 'slug' => 'wildbunch',
+ 'id' => 945,
+ 'name' => 'Wild Bunch',
+ 'slug' => 'wildbunch',
'position' => 944,
],
[
- 'id' => 946,
- 'name' => 'Wild Eye Releasing',
- 'slug' => 'wildeyereleasing',
+ 'id' => 946,
+ 'name' => 'Wild Eye Releasing',
+ 'slug' => 'wildeyereleasing',
'position' => 945,
],
[
- 'id' => 947,
- 'name' => 'Wild Side Video',
- 'slug' => 'wildsidevideo',
+ 'id' => 947,
+ 'name' => 'Wild Side Video',
+ 'slug' => 'wildsidevideo',
'position' => 946,
],
[
- 'id' => 948,
- 'name' => 'WME',
- 'slug' => 'wme',
+ 'id' => 948,
+ 'name' => 'WME',
+ 'slug' => 'wme',
'position' => 947,
],
[
- 'id' => 949,
- 'name' => 'Wolfe Video',
- 'slug' => 'wolfevideo',
+ 'id' => 949,
+ 'name' => 'Wolfe Video',
+ 'slug' => 'wolfevideo',
'position' => 948,
],
[
- 'id' => 950,
- 'name' => 'Word on Fire',
- 'slug' => 'wordonfire',
+ 'id' => 950,
+ 'name' => 'Word on Fire',
+ 'slug' => 'wordonfire',
'position' => 949,
],
[
- 'id' => 951,
- 'name' => 'Works Film Group',
- 'slug' => 'worksfilmgroup',
+ 'id' => 951,
+ 'name' => 'Works Film Group',
+ 'slug' => 'worksfilmgroup',
'position' => 950,
],
[
- 'id' => 952,
- 'name' => 'World Wrestling',
- 'slug' => 'worldwrestling',
+ 'id' => 952,
+ 'name' => 'World Wrestling',
+ 'slug' => 'worldwrestling',
'position' => 951,
],
[
- 'id' => 953,
- 'name' => 'WVG Medien',
- 'slug' => 'wvgmedien',
+ 'id' => 953,
+ 'name' => 'WVG Medien',
+ 'slug' => 'wvgmedien',
'position' => 952,
],
[
- 'id' => 954,
- 'name' => 'WWE Studios',
- 'slug' => 'wwestudios',
+ 'id' => 954,
+ 'name' => 'WWE Studios',
+ 'slug' => 'wwestudios',
'position' => 953,
],
[
- 'id' => 955,
- 'name' => 'X Rated Kult',
- 'slug' => 'xratedkult',
+ 'id' => 955,
+ 'name' => 'X Rated Kult',
+ 'slug' => 'xratedkult',
'position' => 954,
],
[
- 'id' => 956,
- 'name' => 'XCess',
- 'slug' => 'xcess',
+ 'id' => 956,
+ 'name' => 'XCess',
+ 'slug' => 'xcess',
'position' => 955,
],
[
- 'id' => 957,
- 'name' => 'XLrator',
- 'slug' => 'xlrator',
+ 'id' => 957,
+ 'name' => 'XLrator',
+ 'slug' => 'xlrator',
'position' => 956,
],
[
- 'id' => 958,
- 'name' => 'XT Video',
- 'slug' => 'xtvideo',
+ 'id' => 958,
+ 'name' => 'XT Video',
+ 'slug' => 'xtvideo',
'position' => 957,
],
[
- 'id' => 959,
- 'name' => 'Yamato Video',
- 'slug' => 'yamatovideo',
+ 'id' => 959,
+ 'name' => 'Yamato Video',
+ 'slug' => 'yamatovideo',
'position' => 958,
],
[
- 'id' => 960,
- 'name' => 'Yash Raj Films',
- 'slug' => 'yashrajfilms',
+ 'id' => 960,
+ 'name' => 'Yash Raj Films',
+ 'slug' => 'yashrajfilms',
'position' => 959,
],
[
- 'id' => 961,
- 'name' => 'Zeitgeist Films',
- 'slug' => 'zeitgeistfilms',
+ 'id' => 961,
+ 'name' => 'Zeitgeist Films',
+ 'slug' => 'zeitgeistfilms',
'position' => 960,
],
[
- 'id' => 962,
- 'name' => 'Zenith Pictures',
- 'slug' => 'zenithpictures',
+ 'id' => 962,
+ 'name' => 'Zenith Pictures',
+ 'slug' => 'zenithpictures',
'position' => 961,
],
[
- 'id' => 963,
- 'name' => 'Zima',
- 'slug' => 'zima',
+ 'id' => 963,
+ 'name' => 'Zima',
+ 'slug' => 'zima',
'position' => 962,
],
[
- 'id' => 964,
- 'name' => 'Zylo',
- 'slug' => 'zylo',
+ 'id' => 964,
+ 'name' => 'Zylo',
+ 'slug' => 'zylo',
'position' => 963,
],
[
- 'id' => 965,
- 'name' => 'Zyx Music',
- 'slug' => 'zyxmusic',
+ 'id' => 965,
+ 'name' => 'Zyx Music',
+ 'slug' => 'zyxmusic',
'position' => 964,
],
];
diff --git a/database/seeders/ForumsTableSeeder.php b/database/seeders/ForumsTableSeeder.php
index 6b420f95c..97fa5942c 100644
--- a/database/seeders/ForumsTableSeeder.php
+++ b/database/seeders/ForumsTableSeeder.php
@@ -39,38 +39,38 @@ class ForumsTableSeeder extends Seeder
{
return [
[
- 'id' => 1,
- 'position' => 1,
- 'num_topic' => null,
- 'num_post' => null,
- 'last_topic_id' => null,
- 'last_topic_name' => null,
- 'last_topic_slug' => null,
- 'last_post_user_id' => null,
+ 'id' => 1,
+ 'position' => 1,
+ 'num_topic' => null,
+ 'num_post' => null,
+ 'last_topic_id' => null,
+ 'last_topic_name' => null,
+ 'last_topic_slug' => null,
+ 'last_post_user_id' => null,
'last_post_user_username' => null,
- 'name' => 'UNIT3D Forums',
- 'slug' => 'unit3d-forums',
- 'description' => 'UNIT3D Forums',
- 'parent_id' => 0,
- 'created_at' => '2017-01-03 18:29:21',
- 'updated_at' => '2017-01-03 18:29:21',
+ 'name' => 'UNIT3D Forums',
+ 'slug' => 'unit3d-forums',
+ 'description' => 'UNIT3D Forums',
+ 'parent_id' => 0,
+ 'created_at' => '2017-01-03 18:29:21',
+ 'updated_at' => '2017-01-03 18:29:21',
],
[
- 'id' => 2,
- 'position' => 2,
- 'num_topic' => null,
- 'num_post' => null,
- 'last_topic_id' => null,
- 'last_topic_name' => null,
- 'last_topic_slug' => null,
- 'last_post_user_id' => null,
+ 'id' => 2,
+ 'position' => 2,
+ 'num_topic' => null,
+ 'num_post' => null,
+ 'last_topic_id' => null,
+ 'last_topic_name' => null,
+ 'last_topic_slug' => null,
+ 'last_post_user_id' => null,
'last_post_user_username' => null,
- 'name' => 'Welcome',
- 'slug' => 'welcome',
- 'description' => 'Introduce Yourself Here!',
- 'parent_id' => 1,
- 'created_at' => '2017-04-01 20:16:06',
- 'updated_at' => '2017-12-27 18:19:07',
+ 'name' => 'Welcome',
+ 'slug' => 'welcome',
+ 'description' => 'Introduce Yourself Here!',
+ 'parent_id' => 1,
+ 'created_at' => '2017-04-01 20:16:06',
+ 'updated_at' => '2017-12-27 18:19:07',
],
];
}
diff --git a/database/seeders/GroupsTableSeeder.php b/database/seeders/GroupsTableSeeder.php
index 726f0e571..adf7aed3a 100644
--- a/database/seeders/GroupsTableSeeder.php
+++ b/database/seeders/GroupsTableSeeder.php
@@ -39,223 +39,223 @@ class GroupsTableSeeder extends Seeder
{
return [
[
- 'name' => 'Validating',
- 'slug' => 'validating',
- 'position' => 4,
- 'color' => '#95A5A6',
- 'icon' => config('other.font-awesome').' fa-question-circle',
+ 'name' => 'Validating',
+ 'slug' => 'validating',
+ 'position' => 4,
+ 'color' => '#95A5A6',
+ 'icon' => config('other.font-awesome').' fa-question-circle',
'can_upload' => 0,
- 'level' => 0,
+ 'level' => 0,
],
[
- 'name' => 'Guest',
- 'slug' => 'guest',
- 'position' => 3,
- 'color' => '#575757',
- 'icon' => config('other.font-awesome').' fa-question-circle',
+ 'name' => 'Guest',
+ 'slug' => 'guest',
+ 'position' => 3,
+ 'color' => '#575757',
+ 'icon' => config('other.font-awesome').' fa-question-circle',
'can_upload' => 0,
- 'level' => 10,
+ 'level' => 10,
],
[
- 'name' => 'User',
- 'slug' => 'user',
- 'position' => 6,
- 'color' => '#7289DA',
- 'icon' => config('other.font-awesome').' fa-user',
+ 'name' => 'User',
+ 'slug' => 'user',
+ 'position' => 6,
+ 'color' => '#7289DA',
+ 'icon' => config('other.font-awesome').' fa-user',
'autogroup' => 1,
- 'level' => 30,
+ 'level' => 30,
],
[
- 'name' => 'Administrator',
- 'slug' => 'administrator',
- 'position' => 18,
- 'color' => '#f92672',
- 'icon' => config('other.font-awesome').' fa-user-secret',
- 'is_admin' => 1,
- 'is_modo' => 1,
+ 'name' => 'Administrator',
+ 'slug' => 'administrator',
+ 'position' => 18,
+ 'color' => '#f92672',
+ 'icon' => config('other.font-awesome').' fa-user-secret',
+ 'is_admin' => 1,
+ 'is_modo' => 1,
'is_trusted' => 1,
- 'is_immune' => 1,
- 'level' => 5000,
+ 'is_immune' => 1,
+ 'level' => 5000,
],
[
- 'name' => 'Banned',
- 'slug' => 'banned',
- 'position' => 1,
- 'color' => 'red',
- 'icon' => config('other.font-awesome').' fa-ban',
+ 'name' => 'Banned',
+ 'slug' => 'banned',
+ 'position' => 1,
+ 'color' => 'red',
+ 'icon' => config('other.font-awesome').' fa-ban',
'can_upload' => 0,
- 'level' => 0,
+ 'level' => 0,
],
[
- 'name' => 'Moderator',
- 'slug' => 'moderator',
- 'position' => 17,
- 'color' => '#4ECDC4',
- 'icon' => config('other.font-awesome').' fa-user-secret',
- 'is_modo' => 1,
+ 'name' => 'Moderator',
+ 'slug' => 'moderator',
+ 'position' => 17,
+ 'color' => '#4ECDC4',
+ 'icon' => config('other.font-awesome').' fa-user-secret',
+ 'is_modo' => 1,
'is_trusted' => 1,
- 'is_immune' => 1,
- 'level' => 2500,
+ 'is_immune' => 1,
+ 'level' => 2500,
],
[
- 'name' => 'Uploader',
- 'slug' => 'uploader',
- 'position' => 15,
- 'color' => '#2ECC71',
- 'icon' => config('other.font-awesome').' fa-upload',
- 'is_trusted' => 1,
- 'is_immune' => 1,
+ 'name' => 'Uploader',
+ 'slug' => 'uploader',
+ 'position' => 15,
+ 'color' => '#2ECC71',
+ 'icon' => config('other.font-awesome').' fa-upload',
+ 'is_trusted' => 1,
+ 'is_immune' => 1,
'is_freeleech' => 1,
- 'level' => 250,
+ 'level' => 250,
],
[
- 'name' => 'Trustee',
- 'slug' => 'trustee',
- 'position' => 16,
- 'color' => '#BF55EC',
- 'icon' => config('other.font-awesome').' fa-shield',
- 'is_trusted' => 1,
- 'is_immune' => 1,
+ 'name' => 'Trustee',
+ 'slug' => 'trustee',
+ 'position' => 16,
+ 'color' => '#BF55EC',
+ 'icon' => config('other.font-awesome').' fa-shield',
+ 'is_trusted' => 1,
+ 'is_immune' => 1,
'is_freeleech' => 1,
- 'level' => 1000,
+ 'level' => 1000,
],
[
- 'name' => 'Bot',
- 'slug' => 'bot',
- 'position' => 20,
- 'color' => '#f1c40f',
- 'icon' => 'fab fa-android',
- 'is_modo' => 1,
+ 'name' => 'Bot',
+ 'slug' => 'bot',
+ 'position' => 20,
+ 'color' => '#f1c40f',
+ 'icon' => 'fab fa-android',
+ 'is_modo' => 1,
'is_trusted' => 1,
- 'is_immune' => 1,
- 'level' => 0,
+ 'is_immune' => 1,
+ 'level' => 0,
],
[
- 'name' => 'Owner',
- 'slug' => 'owner',
- 'position' => 19,
- 'color' => '#00abff',
- 'icon' => config('other.font-awesome').' fa-user-secret',
- 'is_owner' => 1,
- 'is_admin' => 1,
- 'is_modo' => 1,
+ 'name' => 'Owner',
+ 'slug' => 'owner',
+ 'position' => 19,
+ 'color' => '#00abff',
+ 'icon' => config('other.font-awesome').' fa-user-secret',
+ 'is_owner' => 1,
+ 'is_admin' => 1,
+ 'is_modo' => 1,
'is_trusted' => 1,
- 'is_immune' => 1,
- 'level' => 9999,
+ 'is_immune' => 1,
+ 'level' => 9999,
],
[
- 'name' => 'PowerUser',
- 'slug' => 'poweruser',
- 'position' => 7,
- 'color' => '#3c78d8',
- 'icon' => config('other.font-awesome').' fa-user-circle',
+ 'name' => 'PowerUser',
+ 'slug' => 'poweruser',
+ 'position' => 7,
+ 'color' => '#3c78d8',
+ 'icon' => config('other.font-awesome').' fa-user-circle',
'autogroup' => 1,
- 'level' => 40,
+ 'level' => 40,
],
[
- 'name' => 'SuperUser',
- 'slug' => 'superuser',
- 'position' => 8,
- 'color' => '#1155cc',
- 'icon' => config('other.font-awesome').' fa-power-off',
+ 'name' => 'SuperUser',
+ 'slug' => 'superuser',
+ 'position' => 8,
+ 'color' => '#1155cc',
+ 'icon' => config('other.font-awesome').' fa-power-off',
'autogroup' => 1,
- 'level' => 50,
+ 'level' => 50,
],
[
- 'name' => 'ExtremeUser',
- 'slug' => 'extremeuser',
- 'position' => 9,
- 'color' => '#1c4587',
- 'icon' => config('other.font-awesome').' fa-bolt',
+ 'name' => 'ExtremeUser',
+ 'slug' => 'extremeuser',
+ 'position' => 9,
+ 'color' => '#1c4587',
+ 'icon' => config('other.font-awesome').' fa-bolt',
'is_trusted' => 1,
- 'autogroup' => 1,
- 'level' => 60,
- ],
- [
- 'name' => 'InsaneUser',
- 'slug' => 'insaneuser',
- 'position' => 10,
- 'color' => '#1c4587',
- 'icon' => config('other.font-awesome').' fa-rocket',
- 'is_trusted' => 1,
- 'autogroup' => 1,
- 'level' => 70,
- ],
- [
- 'name' => 'Leech',
- 'slug' => 'leech',
- 'position' => 5,
- 'color' => '#96281B',
- 'icon' => config('other.font-awesome').' fa-times',
'autogroup' => 1,
- 'level' => 20,
+ 'level' => 60,
],
[
- 'name' => 'Veteran',
- 'slug' => 'veteran',
- 'position' => 11,
- 'color' => '#1c4587',
- 'icon' => config('other.font-awesome').' fa-key',
- 'effect' => 'url(/img/sparkels.gif)',
- 'is_trusted' => 1,
- 'is_immune' => 1,
- 'is_freeleech' => 1,
- 'autogroup' => 1,
- 'level' => 100,
- ],
- [
- 'name' => 'Seeder',
- 'slug' => 'seeder',
- 'position' => 12,
- 'color' => '#1c4587',
- 'icon' => config('other.font-awesome').' fa-hdd',
+ 'name' => 'InsaneUser',
+ 'slug' => 'insaneuser',
+ 'position' => 10,
+ 'color' => '#1c4587',
+ 'icon' => config('other.font-awesome').' fa-rocket',
'is_trusted' => 1,
- 'is_immune' => 1,
- 'autogroup' => 1,
- 'level' => 80,
+ 'autogroup' => 1,
+ 'level' => 70,
],
[
- 'name' => 'Archivist',
- 'slug' => 'archivist',
- 'position' => 13,
- 'color' => '#1c4587',
- 'icon' => config('other.font-awesome').' fa-server',
- 'effect' => 'url(/img/sparkels.gif)',
- 'is_trusted' => 1,
- 'is_immune' => 1,
+ 'name' => 'Leech',
+ 'slug' => 'leech',
+ 'position' => 5,
+ 'color' => '#96281B',
+ 'icon' => config('other.font-awesome').' fa-times',
+ 'autogroup' => 1,
+ 'level' => 20,
+ ],
+ [
+ 'name' => 'Veteran',
+ 'slug' => 'veteran',
+ 'position' => 11,
+ 'color' => '#1c4587',
+ 'icon' => config('other.font-awesome').' fa-key',
+ 'effect' => 'url(/img/sparkels.gif)',
+ 'is_trusted' => 1,
+ 'is_immune' => 1,
'is_freeleech' => 1,
- 'autogroup' => 1,
- 'level' => 90,
+ 'autogroup' => 1,
+ 'level' => 100,
],
[
- 'name' => 'Internal',
- 'slug' => 'internal',
- 'position' => 14,
- 'color' => '#BAAF92',
- 'icon' => config('other.font-awesome').' fa-magic',
- 'is_trusted' => 1,
- 'is_immune' => 1,
+ 'name' => 'Seeder',
+ 'slug' => 'seeder',
+ 'position' => 12,
+ 'color' => '#1c4587',
+ 'icon' => config('other.font-awesome').' fa-hdd',
+ 'is_trusted' => 1,
+ 'is_immune' => 1,
+ 'autogroup' => 1,
+ 'level' => 80,
+ ],
+ [
+ 'name' => 'Archivist',
+ 'slug' => 'archivist',
+ 'position' => 13,
+ 'color' => '#1c4587',
+ 'icon' => config('other.font-awesome').' fa-server',
+ 'effect' => 'url(/img/sparkels.gif)',
+ 'is_trusted' => 1,
+ 'is_immune' => 1,
'is_freeleech' => 1,
- 'is_internal' => 1,
- 'level' => 500,
+ 'autogroup' => 1,
+ 'level' => 90,
],
[
- 'name' => 'Disabled',
- 'slug' => 'disabled',
- 'position' => 2,
- 'color' => '#8D6262',
- 'icon' => config('other.font-awesome').' fa-pause-circle',
+ 'name' => 'Internal',
+ 'slug' => 'internal',
+ 'position' => 14,
+ 'color' => '#BAAF92',
+ 'icon' => config('other.font-awesome').' fa-magic',
+ 'is_trusted' => 1,
+ 'is_immune' => 1,
+ 'is_freeleech' => 1,
+ 'is_internal' => 1,
+ 'level' => 500,
+ ],
+ [
+ 'name' => 'Disabled',
+ 'slug' => 'disabled',
+ 'position' => 2,
+ 'color' => '#8D6262',
+ 'icon' => config('other.font-awesome').' fa-pause-circle',
'can_upload' => 0,
- 'level' => 0,
+ 'level' => 0,
],
[
- 'name' => 'Pruned',
- 'slug' => 'pruned',
- 'position' => 0,
- 'color' => '#8D6262',
- 'icon' => config('other.font-awesome').' fa-times-circle',
+ 'name' => 'Pruned',
+ 'slug' => 'pruned',
+ 'position' => 0,
+ 'color' => '#8D6262',
+ 'icon' => config('other.font-awesome').' fa-times-circle',
'can_upload' => 0,
- 'level' => 0,
+ 'level' => 0,
],
];
diff --git a/database/seeders/MediaLanguagesSeeder.php b/database/seeders/MediaLanguagesSeeder.php
index 3d1b7050e..2db3fc278 100644
--- a/database/seeders/MediaLanguagesSeeder.php
+++ b/database/seeders/MediaLanguagesSeeder.php
@@ -21,8 +21,8 @@ class MediaLanguagesSeeder extends Seeder
{
foreach ($this->languages as $code => $language) {
MediaLanguage::updateOrCreate([
- 'code' => $code,
- 'name' => $language,
+ 'code' => $code,
+ 'name' => $language,
]);
}
}
diff --git a/database/seeders/PagesTableSeeder.php b/database/seeders/PagesTableSeeder.php
index 27e4d93f4..3a0eb9be0 100644
--- a/database/seeders/PagesTableSeeder.php
+++ b/database/seeders/PagesTableSeeder.php
@@ -43,39 +43,39 @@ class PagesTableSeeder extends Seeder
{
return [
[
- 'id' => 1,
- 'name' => 'Rules',
- 'slug' => 'rules',
+ 'id' => 1,
+ 'name' => 'Rules',
+ 'slug' => 'rules',
'content' => 'RULES GOES HERE',
],
[
- 'id' => 2,
- 'name' => 'FAQ',
- 'slug' => 'faq',
+ 'id' => 2,
+ 'name' => 'FAQ',
+ 'slug' => 'faq',
'content' => 'FAQ GOES HERE',
],
[
- 'id' => 3,
- 'name' => 'Suggested Clients',
- 'slug' => 'suggested-clients',
+ 'id' => 3,
+ 'name' => 'Suggested Clients',
+ 'slug' => 'suggested-clients',
'content' => 'We suggest the following BitTorrent clients.',
],
[
- 'id' => 4,
- 'name' => 'Upload Guide',
- 'slug' => 'upload-guide',
+ 'id' => 4,
+ 'name' => 'Upload Guide',
+ 'slug' => 'upload-guide',
'content' => 'UPLOAD GUIDE HERE',
],
[
- 'id' => 5,
- 'name' => 'Tracker Codes',
- 'slug' => 'tracker-codes',
+ 'id' => 5,
+ 'name' => 'Tracker Codes',
+ 'slug' => 'tracker-codes',
'content' => 'Our Tracker Codes/Responses',
],
[
- 'id' => 6,
- 'name' => 'Terms Of Use',
- 'slug' => 'terms-of-use',
+ 'id' => 6,
+ 'name' => 'Terms Of Use',
+ 'slug' => 'terms-of-use',
'content' => '*All references to "we", "us" or "our" refer to the site owner(s).
Welcome to our website located at '.config('app.url').' (this "Site")! This Site allows you to:
diff --git a/database/seeders/PermissionsTableSeeder.php b/database/seeders/PermissionsTableSeeder.php
index fd0f9a795..17a0c87ee 100644
--- a/database/seeders/PermissionsTableSeeder.php
+++ b/database/seeders/PermissionsTableSeeder.php
@@ -39,380 +39,380 @@ class PermissionsTableSeeder extends Seeder
{
return [
[
- 'id' => 1,
- 'forum_id' => 1,
- 'group_id' => 1,
- 'show_forum' => 0,
- 'read_topic' => 0,
+ 'id' => 1,
+ 'forum_id' => 1,
+ 'group_id' => 1,
+ 'show_forum' => 0,
+ 'read_topic' => 0,
'reply_topic' => 0,
'start_topic' => 0,
],
[
- 'id' => 2,
- 'forum_id' => 1,
- 'group_id' => 2,
- 'show_forum' => 0,
- 'read_topic' => 0,
+ 'id' => 2,
+ 'forum_id' => 1,
+ 'group_id' => 2,
+ 'show_forum' => 0,
+ 'read_topic' => 0,
'reply_topic' => 0,
'start_topic' => 0,
],
[
- 'id' => 3,
- 'forum_id' => 1,
- 'group_id' => 3,
- 'show_forum' => 1,
- 'read_topic' => 1,
+ 'id' => 3,
+ 'forum_id' => 1,
+ 'group_id' => 3,
+ 'show_forum' => 1,
+ 'read_topic' => 1,
'reply_topic' => 1,
'start_topic' => 1,
],
[
- 'id' => 4,
- 'forum_id' => 1,
- 'group_id' => 4,
- 'show_forum' => 1,
- 'read_topic' => 1,
+ 'id' => 4,
+ 'forum_id' => 1,
+ 'group_id' => 4,
+ 'show_forum' => 1,
+ 'read_topic' => 1,
'reply_topic' => 1,
'start_topic' => 1,
],
[
- 'id' => 5,
- 'forum_id' => 1,
- 'group_id' => 5,
- 'show_forum' => 0,
- 'read_topic' => 0,
+ 'id' => 5,
+ 'forum_id' => 1,
+ 'group_id' => 5,
+ 'show_forum' => 0,
+ 'read_topic' => 0,
'reply_topic' => 0,
'start_topic' => 0,
],
[
- 'id' => 6,
- 'forum_id' => 1,
- 'group_id' => 6,
- 'show_forum' => 1,
- 'read_topic' => 1,
+ 'id' => 6,
+ 'forum_id' => 1,
+ 'group_id' => 6,
+ 'show_forum' => 1,
+ 'read_topic' => 1,
'reply_topic' => 1,
'start_topic' => 1,
],
[
- 'id' => 7,
- 'forum_id' => 1,
- 'group_id' => 7,
- 'show_forum' => 1,
- 'read_topic' => 1,
+ 'id' => 7,
+ 'forum_id' => 1,
+ 'group_id' => 7,
+ 'show_forum' => 1,
+ 'read_topic' => 1,
'reply_topic' => 1,
'start_topic' => 1,
],
[
- 'id' => 8,
- 'forum_id' => 1,
- 'group_id' => 8,
- 'show_forum' => 1,
- 'read_topic' => 1,
+ 'id' => 8,
+ 'forum_id' => 1,
+ 'group_id' => 8,
+ 'show_forum' => 1,
+ 'read_topic' => 1,
'reply_topic' => 1,
'start_topic' => 1,
],
[
- 'id' => 9,
- 'forum_id' => 1,
- 'group_id' => 9,
- 'show_forum' => 1,
- 'read_topic' => 1,
+ 'id' => 9,
+ 'forum_id' => 1,
+ 'group_id' => 9,
+ 'show_forum' => 1,
+ 'read_topic' => 1,
'reply_topic' => 1,
'start_topic' => 1,
],
[
- 'id' => 10,
- 'forum_id' => 1,
- 'group_id' => 10,
- 'show_forum' => 1,
- 'read_topic' => 1,
+ 'id' => 10,
+ 'forum_id' => 1,
+ 'group_id' => 10,
+ 'show_forum' => 1,
+ 'read_topic' => 1,
'reply_topic' => 1,
'start_topic' => 1,
],
[
- 'id' => 11,
- 'forum_id' => 1,
- 'group_id' => 11,
- 'show_forum' => 1,
- 'read_topic' => 1,
+ 'id' => 11,
+ 'forum_id' => 1,
+ 'group_id' => 11,
+ 'show_forum' => 1,
+ 'read_topic' => 1,
'reply_topic' => 1,
'start_topic' => 1,
],
[
- 'id' => 12,
- 'forum_id' => 1,
- 'group_id' => 12,
- 'show_forum' => 1,
- 'read_topic' => 1,
+ 'id' => 12,
+ 'forum_id' => 1,
+ 'group_id' => 12,
+ 'show_forum' => 1,
+ 'read_topic' => 1,
'reply_topic' => 1,
'start_topic' => 1,
],
[
- 'id' => 13,
- 'forum_id' => 1,
- 'group_id' => 13,
- 'show_forum' => 1,
- 'read_topic' => 1,
+ 'id' => 13,
+ 'forum_id' => 1,
+ 'group_id' => 13,
+ 'show_forum' => 1,
+ 'read_topic' => 1,
'reply_topic' => 1,
'start_topic' => 1,
],
[
- 'id' => 14,
- 'forum_id' => 1,
- 'group_id' => 14,
- 'show_forum' => 1,
- 'read_topic' => 1,
+ 'id' => 14,
+ 'forum_id' => 1,
+ 'group_id' => 14,
+ 'show_forum' => 1,
+ 'read_topic' => 1,
'reply_topic' => 1,
'start_topic' => 1,
],
[
- 'id' => 15,
- 'forum_id' => 1,
- 'group_id' => 15,
- 'show_forum' => 1,
- 'read_topic' => 1,
+ 'id' => 15,
+ 'forum_id' => 1,
+ 'group_id' => 15,
+ 'show_forum' => 1,
+ 'read_topic' => 1,
'reply_topic' => 1,
'start_topic' => 1,
],
[
- 'id' => 16,
- 'forum_id' => 1,
- 'group_id' => 16,
- 'show_forum' => 1,
- 'read_topic' => 1,
+ 'id' => 16,
+ 'forum_id' => 1,
+ 'group_id' => 16,
+ 'show_forum' => 1,
+ 'read_topic' => 1,
'reply_topic' => 1,
'start_topic' => 1,
],
[
- 'id' => 17,
- 'forum_id' => 1,
- 'group_id' => 17,
- 'show_forum' => 1,
- 'read_topic' => 1,
+ 'id' => 17,
+ 'forum_id' => 1,
+ 'group_id' => 17,
+ 'show_forum' => 1,
+ 'read_topic' => 1,
'reply_topic' => 1,
'start_topic' => 1,
],
[
- 'id' => 18,
- 'forum_id' => 1,
- 'group_id' => 18,
- 'show_forum' => 1,
- 'read_topic' => 1,
+ 'id' => 18,
+ 'forum_id' => 1,
+ 'group_id' => 18,
+ 'show_forum' => 1,
+ 'read_topic' => 1,
'reply_topic' => 1,
'start_topic' => 1,
],
[
- 'id' => 19,
- 'forum_id' => 2,
- 'group_id' => 1,
- 'show_forum' => 0,
- 'read_topic' => 0,
+ 'id' => 19,
+ 'forum_id' => 2,
+ 'group_id' => 1,
+ 'show_forum' => 0,
+ 'read_topic' => 0,
'reply_topic' => 0,
'start_topic' => 0,
],
[
- 'id' => 20,
- 'forum_id' => 2,
- 'group_id' => 2,
- 'show_forum' => 0,
- 'read_topic' => 0,
+ 'id' => 20,
+ 'forum_id' => 2,
+ 'group_id' => 2,
+ 'show_forum' => 0,
+ 'read_topic' => 0,
'reply_topic' => 0,
'start_topic' => 0,
],
[
- 'id' => 21,
- 'forum_id' => 2,
- 'group_id' => 3,
- 'show_forum' => 1,
- 'read_topic' => 1,
+ 'id' => 21,
+ 'forum_id' => 2,
+ 'group_id' => 3,
+ 'show_forum' => 1,
+ 'read_topic' => 1,
'reply_topic' => 1,
'start_topic' => 1,
],
[
- 'id' => 22,
- 'forum_id' => 2,
- 'group_id' => 4,
- 'show_forum' => 1,
- 'read_topic' => 1,
+ 'id' => 22,
+ 'forum_id' => 2,
+ 'group_id' => 4,
+ 'show_forum' => 1,
+ 'read_topic' => 1,
'reply_topic' => 1,
'start_topic' => 1,
],
[
- 'id' => 23,
- 'forum_id' => 2,
- 'group_id' => 5,
- 'show_forum' => 0,
- 'read_topic' => 0,
+ 'id' => 23,
+ 'forum_id' => 2,
+ 'group_id' => 5,
+ 'show_forum' => 0,
+ 'read_topic' => 0,
'reply_topic' => 0,
'start_topic' => 0,
],
[
- 'id' => 24,
- 'forum_id' => 2,
- 'group_id' => 6,
- 'show_forum' => 1,
- 'read_topic' => 1,
+ 'id' => 24,
+ 'forum_id' => 2,
+ 'group_id' => 6,
+ 'show_forum' => 1,
+ 'read_topic' => 1,
'reply_topic' => 1,
'start_topic' => 1,
],
[
- 'id' => 25,
- 'forum_id' => 2,
- 'group_id' => 7,
- 'show_forum' => 1,
- 'read_topic' => 1,
+ 'id' => 25,
+ 'forum_id' => 2,
+ 'group_id' => 7,
+ 'show_forum' => 1,
+ 'read_topic' => 1,
'reply_topic' => 1,
'start_topic' => 1,
],
[
- 'id' => 26,
- 'forum_id' => 2,
- 'group_id' => 8,
- 'show_forum' => 1,
- 'read_topic' => 1,
+ 'id' => 26,
+ 'forum_id' => 2,
+ 'group_id' => 8,
+ 'show_forum' => 1,
+ 'read_topic' => 1,
'reply_topic' => 1,
'start_topic' => 1,
],
[
- 'id' => 27,
- 'forum_id' => 2,
- 'group_id' => 9,
- 'show_forum' => 1,
- 'read_topic' => 1,
+ 'id' => 27,
+ 'forum_id' => 2,
+ 'group_id' => 9,
+ 'show_forum' => 1,
+ 'read_topic' => 1,
'reply_topic' => 1,
'start_topic' => 1,
],
[
- 'id' => 28,
- 'forum_id' => 2,
- 'group_id' => 10,
- 'show_forum' => 1,
- 'read_topic' => 1,
+ 'id' => 28,
+ 'forum_id' => 2,
+ 'group_id' => 10,
+ 'show_forum' => 1,
+ 'read_topic' => 1,
'reply_topic' => 1,
'start_topic' => 1,
],
[
- 'id' => 29,
- 'forum_id' => 2,
- 'group_id' => 11,
- 'show_forum' => 1,
- 'read_topic' => 1,
+ 'id' => 29,
+ 'forum_id' => 2,
+ 'group_id' => 11,
+ 'show_forum' => 1,
+ 'read_topic' => 1,
'reply_topic' => 1,
'start_topic' => 1,
],
[
- 'id' => 30,
- 'forum_id' => 2,
- 'group_id' => 12,
- 'show_forum' => 1,
- 'read_topic' => 1,
+ 'id' => 30,
+ 'forum_id' => 2,
+ 'group_id' => 12,
+ 'show_forum' => 1,
+ 'read_topic' => 1,
'reply_topic' => 1,
'start_topic' => 1,
],
[
- 'id' => 31,
- 'forum_id' => 2,
- 'group_id' => 13,
- 'show_forum' => 1,
- 'read_topic' => 1,
+ 'id' => 31,
+ 'forum_id' => 2,
+ 'group_id' => 13,
+ 'show_forum' => 1,
+ 'read_topic' => 1,
'reply_topic' => 1,
'start_topic' => 1,
],
[
- 'id' => 32,
- 'forum_id' => 2,
- 'group_id' => 14,
- 'show_forum' => 1,
- 'read_topic' => 1,
+ 'id' => 32,
+ 'forum_id' => 2,
+ 'group_id' => 14,
+ 'show_forum' => 1,
+ 'read_topic' => 1,
'reply_topic' => 1,
'start_topic' => 1,
],
[
- 'id' => 33,
- 'forum_id' => 2,
- 'group_id' => 15,
- 'show_forum' => 1,
- 'read_topic' => 1,
+ 'id' => 33,
+ 'forum_id' => 2,
+ 'group_id' => 15,
+ 'show_forum' => 1,
+ 'read_topic' => 1,
'reply_topic' => 1,
'start_topic' => 1,
],
[
- 'id' => 34,
- 'forum_id' => 2,
- 'group_id' => 16,
- 'show_forum' => 1,
- 'read_topic' => 1,
+ 'id' => 34,
+ 'forum_id' => 2,
+ 'group_id' => 16,
+ 'show_forum' => 1,
+ 'read_topic' => 1,
'reply_topic' => 1,
'start_topic' => 1,
],
[
- 'id' => 35,
- 'forum_id' => 2,
- 'group_id' => 17,
- 'show_forum' => 1,
- 'read_topic' => 1,
+ 'id' => 35,
+ 'forum_id' => 2,
+ 'group_id' => 17,
+ 'show_forum' => 1,
+ 'read_topic' => 1,
'reply_topic' => 1,
'start_topic' => 1,
],
[
- 'id' => 36,
- 'forum_id' => 2,
- 'group_id' => 18,
- 'show_forum' => 1,
- 'read_topic' => 1,
+ 'id' => 36,
+ 'forum_id' => 2,
+ 'group_id' => 18,
+ 'show_forum' => 1,
+ 'read_topic' => 1,
'reply_topic' => 1,
'start_topic' => 1,
],
[
- 'id' => 37,
- 'forum_id' => 1,
- 'group_id' => 19,
- 'show_forum' => 1,
- 'read_topic' => 1,
+ 'id' => 37,
+ 'forum_id' => 1,
+ 'group_id' => 19,
+ 'show_forum' => 1,
+ 'read_topic' => 1,
'reply_topic' => 1,
'start_topic' => 1,
],
[
- 'id' => 38,
- 'forum_id' => 2,
- 'group_id' => 19,
- 'show_forum' => 1,
- 'read_topic' => 1,
+ 'id' => 38,
+ 'forum_id' => 2,
+ 'group_id' => 19,
+ 'show_forum' => 1,
+ 'read_topic' => 1,
'reply_topic' => 1,
'start_topic' => 1,
],
[
- 'id' => 39,
- 'forum_id' => 1,
- 'group_id' => 20,
- 'show_forum' => 0,
- 'read_topic' => 0,
+ 'id' => 39,
+ 'forum_id' => 1,
+ 'group_id' => 20,
+ 'show_forum' => 0,
+ 'read_topic' => 0,
'reply_topic' => 0,
'start_topic' => 0,
],
[
- 'id' => 40,
- 'forum_id' => 1,
- 'group_id' => 21,
- 'show_forum' => 0,
- 'read_topic' => 0,
+ 'id' => 40,
+ 'forum_id' => 1,
+ 'group_id' => 21,
+ 'show_forum' => 0,
+ 'read_topic' => 0,
'reply_topic' => 0,
'start_topic' => 0,
],
[
- 'id' => 41,
- 'forum_id' => 2,
- 'group_id' => 20,
- 'show_forum' => 0,
- 'read_topic' => 0,
+ 'id' => 41,
+ 'forum_id' => 2,
+ 'group_id' => 20,
+ 'show_forum' => 0,
+ 'read_topic' => 0,
'reply_topic' => 0,
'start_topic' => 0,
],
[
- 'id' => 42,
- 'forum_id' => 2,
- 'group_id' => 21,
- 'show_forum' => 0,
- 'read_topic' => 0,
+ 'id' => 42,
+ 'forum_id' => 2,
+ 'group_id' => 21,
+ 'show_forum' => 0,
+ 'read_topic' => 0,
'reply_topic' => 0,
'start_topic' => 0,
],
diff --git a/database/seeders/RegionsTableSeeder.php b/database/seeders/RegionsTableSeeder.php
index 294642267..08bb6a58e 100644
--- a/database/seeders/RegionsTableSeeder.php
+++ b/database/seeders/RegionsTableSeeder.php
@@ -39,1455 +39,1455 @@ class RegionsTableSeeder extends Seeder
{
return [
[
- 'id' => 1,
- 'name' => 'AFG',
- 'slug' => 'afg',
+ 'id' => 1,
+ 'name' => 'AFG',
+ 'slug' => 'afg',
'position' => 0,
],
[
- 'id' => 2,
- 'name' => 'AIA',
- 'slug' => 'aia',
+ 'id' => 2,
+ 'name' => 'AIA',
+ 'slug' => 'aia',
'position' => 1,
],
[
- 'id' => 3,
- 'name' => 'ALA',
- 'slug' => 'ala',
+ 'id' => 3,
+ 'name' => 'ALA',
+ 'slug' => 'ala',
'position' => 2,
],
[
- 'id' => 4,
- 'name' => 'ALG',
- 'slug' => 'alg',
+ 'id' => 4,
+ 'name' => 'ALG',
+ 'slug' => 'alg',
'position' => 3,
],
[
- 'id' => 5,
- 'name' => 'AND',
- 'slug' => 'and',
+ 'id' => 5,
+ 'name' => 'AND',
+ 'slug' => 'and',
'position' => 4,
],
[
- 'id' => 6,
- 'name' => 'ANG',
- 'slug' => 'ang',
+ 'id' => 6,
+ 'name' => 'ANG',
+ 'slug' => 'ang',
'position' => 5,
],
[
- 'id' => 7,
- 'name' => 'ARG',
- 'slug' => 'arg',
+ 'id' => 7,
+ 'name' => 'ARG',
+ 'slug' => 'arg',
'position' => 6,
],
[
- 'id' => 8,
- 'name' => 'ARM',
- 'slug' => 'arm',
+ 'id' => 8,
+ 'name' => 'ARM',
+ 'slug' => 'arm',
'position' => 7,
],
[
- 'id' => 9,
- 'name' => 'ARU',
- 'slug' => 'aru',
+ 'id' => 9,
+ 'name' => 'ARU',
+ 'slug' => 'aru',
'position' => 8,
],
[
- 'id' => 10,
- 'name' => 'ASA',
- 'slug' => 'asa',
+ 'id' => 10,
+ 'name' => 'ASA',
+ 'slug' => 'asa',
'position' => 9,
],
[
- 'id' => 11,
- 'name' => 'ATA',
- 'slug' => 'ata',
+ 'id' => 11,
+ 'name' => 'ATA',
+ 'slug' => 'ata',
'position' => 10,
],
[
- 'id' => 12,
- 'name' => 'ATF',
- 'slug' => 'atf',
+ 'id' => 12,
+ 'name' => 'ATF',
+ 'slug' => 'atf',
'position' => 11,
],
[
- 'id' => 13,
- 'name' => 'ATG',
- 'slug' => 'atg',
+ 'id' => 13,
+ 'name' => 'ATG',
+ 'slug' => 'atg',
'position' => 12,
],
[
- 'id' => 14,
- 'name' => 'AUS',
- 'slug' => 'aus',
+ 'id' => 14,
+ 'name' => 'AUS',
+ 'slug' => 'aus',
'position' => 13,
],
[
- 'id' => 15,
- 'name' => 'AUT',
- 'slug' => 'aut',
+ 'id' => 15,
+ 'name' => 'AUT',
+ 'slug' => 'aut',
'position' => 14,
],
[
- 'id' => 16,
- 'name' => 'AZE',
- 'slug' => 'aze',
+ 'id' => 16,
+ 'name' => 'AZE',
+ 'slug' => 'aze',
'position' => 15,
],
[
- 'id' => 17,
- 'name' => 'BAH',
- 'slug' => 'bah',
+ 'id' => 17,
+ 'name' => 'BAH',
+ 'slug' => 'bah',
'position' => 16,
],
[
- 'id' => 18,
- 'name' => 'BAN',
- 'slug' => 'ban',
+ 'id' => 18,
+ 'name' => 'BAN',
+ 'slug' => 'ban',
'position' => 17,
],
[
- 'id' => 19,
- 'name' => 'BDI',
- 'slug' => 'bdi',
+ 'id' => 19,
+ 'name' => 'BDI',
+ 'slug' => 'bdi',
'position' => 18,
],
[
- 'id' => 20,
- 'name' => 'BEL',
- 'slug' => 'bel',
+ 'id' => 20,
+ 'name' => 'BEL',
+ 'slug' => 'bel',
'position' => 19,
],
[
- 'id' => 21,
- 'name' => 'BEN',
- 'slug' => 'ben',
+ 'id' => 21,
+ 'name' => 'BEN',
+ 'slug' => 'ben',
'position' => 20,
],
[
- 'id' => 22,
- 'name' => 'BER',
- 'slug' => 'ber',
+ 'id' => 22,
+ 'name' => 'BER',
+ 'slug' => 'ber',
'position' => 21,
],
[
- 'id' => 23,
- 'name' => 'BES',
- 'slug' => 'bes',
+ 'id' => 23,
+ 'name' => 'BES',
+ 'slug' => 'bes',
'position' => 22,
],
[
- 'id' => 24,
- 'name' => 'BFA',
- 'slug' => 'bfa',
+ 'id' => 24,
+ 'name' => 'BFA',
+ 'slug' => 'bfa',
'position' => 23,
],
[
- 'id' => 25,
- 'name' => 'BHR',
- 'slug' => 'bhr',
+ 'id' => 25,
+ 'name' => 'BHR',
+ 'slug' => 'bhr',
'position' => 24,
],
[
- 'id' => 26,
- 'name' => 'BHU',
- 'slug' => 'bhu',
+ 'id' => 26,
+ 'name' => 'BHU',
+ 'slug' => 'bhu',
'position' => 25,
],
[
- 'id' => 27,
- 'name' => 'BIH',
- 'slug' => 'bih',
+ 'id' => 27,
+ 'name' => 'BIH',
+ 'slug' => 'bih',
'position' => 26,
],
[
- 'id' => 28,
- 'name' => 'BLM',
- 'slug' => 'blm',
+ 'id' => 28,
+ 'name' => 'BLM',
+ 'slug' => 'blm',
'position' => 27,
],
[
- 'id' => 29,
- 'name' => 'BLR',
- 'slug' => 'blr',
+ 'id' => 29,
+ 'name' => 'BLR',
+ 'slug' => 'blr',
'position' => 28,
],
[
- 'id' => 30,
- 'name' => 'BLZ',
- 'slug' => 'blz',
+ 'id' => 30,
+ 'name' => 'BLZ',
+ 'slug' => 'blz',
'position' => 29,
],
[
- 'id' => 31,
- 'name' => 'BOL',
- 'slug' => 'bol',
+ 'id' => 31,
+ 'name' => 'BOL',
+ 'slug' => 'bol',
'position' => 30,
],
[
- 'id' => 32,
- 'name' => 'BOT',
- 'slug' => 'bot',
+ 'id' => 32,
+ 'name' => 'BOT',
+ 'slug' => 'bot',
'position' => 31,
],
[
- 'id' => 33,
- 'name' => 'BRA',
- 'slug' => 'bra',
+ 'id' => 33,
+ 'name' => 'BRA',
+ 'slug' => 'bra',
'position' => 32,
],
[
- 'id' => 34,
- 'name' => 'BRB',
- 'slug' => 'brb',
+ 'id' => 34,
+ 'name' => 'BRB',
+ 'slug' => 'brb',
'position' => 33,
],
[
- 'id' => 35,
- 'name' => 'BRU',
- 'slug' => 'bru',
+ 'id' => 35,
+ 'name' => 'BRU',
+ 'slug' => 'bru',
'position' => 34,
],
[
- 'id' => 36,
- 'name' => 'BVT',
- 'slug' => 'bvt',
+ 'id' => 36,
+ 'name' => 'BVT',
+ 'slug' => 'bvt',
'position' => 35,
],
[
- 'id' => 37,
- 'name' => 'CAM',
- 'slug' => 'cam',
+ 'id' => 37,
+ 'name' => 'CAM',
+ 'slug' => 'cam',
'position' => 36,
],
[
- 'id' => 38,
- 'name' => 'CAN',
- 'slug' => 'can',
+ 'id' => 38,
+ 'name' => 'CAN',
+ 'slug' => 'can',
'position' => 37,
],
[
- 'id' => 39,
- 'name' => 'CAY',
- 'slug' => 'cay',
+ 'id' => 39,
+ 'name' => 'CAY',
+ 'slug' => 'cay',
'position' => 38,
],
[
- 'id' => 40,
- 'name' => 'CCK',
- 'slug' => 'cck',
+ 'id' => 40,
+ 'name' => 'CCK',
+ 'slug' => 'cck',
'position' => 39,
],
[
- 'id' => 41,
- 'name' => 'CEE',
- 'slug' => 'cee',
+ 'id' => 41,
+ 'name' => 'CEE',
+ 'slug' => 'cee',
'position' => 40,
],
[
- 'id' => 42,
- 'name' => 'CGO',
- 'slug' => 'cgo',
+ 'id' => 42,
+ 'name' => 'CGO',
+ 'slug' => 'cgo',
'position' => 41,
],
[
- 'id' => 43,
- 'name' => 'CHA',
- 'slug' => 'cha',
+ 'id' => 43,
+ 'name' => 'CHA',
+ 'slug' => 'cha',
'position' => 42,
],
[
- 'id' => 44,
- 'name' => 'CHI',
- 'slug' => 'chi',
+ 'id' => 44,
+ 'name' => 'CHI',
+ 'slug' => 'chi',
'position' => 43,
],
[
- 'id' => 45,
- 'name' => 'CHN',
- 'slug' => 'chn',
+ 'id' => 45,
+ 'name' => 'CHN',
+ 'slug' => 'chn',
'position' => 44,
],
[
- 'id' => 46,
- 'name' => 'CIV',
- 'slug' => 'civ',
+ 'id' => 46,
+ 'name' => 'CIV',
+ 'slug' => 'civ',
'position' => 45,
],
[
- 'id' => 47,
- 'name' => 'CMR',
- 'slug' => 'cmr',
+ 'id' => 47,
+ 'name' => 'CMR',
+ 'slug' => 'cmr',
'position' => 46,
],
[
- 'id' => 48,
- 'name' => 'COD',
- 'slug' => 'cod',
+ 'id' => 48,
+ 'name' => 'COD',
+ 'slug' => 'cod',
'position' => 47,
],
[
- 'id' => 49,
- 'name' => 'COK',
- 'slug' => 'cok',
+ 'id' => 49,
+ 'name' => 'COK',
+ 'slug' => 'cok',
'position' => 48,
],
[
- 'id' => 50,
- 'name' => 'COL',
- 'slug' => 'col',
+ 'id' => 50,
+ 'name' => 'COL',
+ 'slug' => 'col',
'position' => 49,
],
[
- 'id' => 51,
- 'name' => 'COM',
- 'slug' => 'com',
+ 'id' => 51,
+ 'name' => 'COM',
+ 'slug' => 'com',
'position' => 50,
],
[
- 'id' => 52,
- 'name' => 'CPV',
- 'slug' => 'cpv',
+ 'id' => 52,
+ 'name' => 'CPV',
+ 'slug' => 'cpv',
'position' => 51,
],
[
- 'id' => 53,
- 'name' => 'CRC',
- 'slug' => 'crc',
+ 'id' => 53,
+ 'name' => 'CRC',
+ 'slug' => 'crc',
'position' => 52,
],
[
- 'id' => 54,
- 'name' => 'CRO',
- 'slug' => 'cro',
+ 'id' => 54,
+ 'name' => 'CRO',
+ 'slug' => 'cro',
'position' => 53,
],
[
- 'id' => 55,
- 'name' => 'CTA',
- 'slug' => 'cta',
+ 'id' => 55,
+ 'name' => 'CTA',
+ 'slug' => 'cta',
'position' => 54,
],
[
- 'id' => 56,
- 'name' => 'CUB',
- 'slug' => 'cub',
+ 'id' => 56,
+ 'name' => 'CUB',
+ 'slug' => 'cub',
'position' => 55,
],
[
- 'id' => 57,
- 'name' => 'CUW',
- 'slug' => 'cuw',
+ 'id' => 57,
+ 'name' => 'CUW',
+ 'slug' => 'cuw',
'position' => 56,
],
[
- 'id' => 58,
- 'name' => 'CXR',
- 'slug' => 'cxr',
+ 'id' => 58,
+ 'name' => 'CXR',
+ 'slug' => 'cxr',
'position' => 57,
],
[
- 'id' => 59,
- 'name' => 'CYP',
- 'slug' => 'cyp',
+ 'id' => 59,
+ 'name' => 'CYP',
+ 'slug' => 'cyp',
'position' => 58,
],
[
- 'id' => 60,
- 'name' => 'DJI',
- 'slug' => 'dji',
+ 'id' => 60,
+ 'name' => 'DJI',
+ 'slug' => 'dji',
'position' => 59,
],
[
- 'id' => 61,
- 'name' => 'DMA',
- 'slug' => 'dma',
+ 'id' => 61,
+ 'name' => 'DMA',
+ 'slug' => 'dma',
'position' => 60,
],
[
- 'id' => 62,
- 'name' => 'DOM',
- 'slug' => 'dom',
+ 'id' => 62,
+ 'name' => 'DOM',
+ 'slug' => 'dom',
'position' => 61,
],
[
- 'id' => 63,
- 'name' => 'ECU',
- 'slug' => 'ecu',
+ 'id' => 63,
+ 'name' => 'ECU',
+ 'slug' => 'ecu',
'position' => 62,
],
[
- 'id' => 64,
- 'name' => 'EGY',
- 'slug' => 'egy',
+ 'id' => 64,
+ 'name' => 'EGY',
+ 'slug' => 'egy',
'position' => 63,
],
[
- 'id' => 65,
- 'name' => 'ENG',
- 'slug' => 'eng',
+ 'id' => 65,
+ 'name' => 'ENG',
+ 'slug' => 'eng',
'position' => 64,
],
[
- 'id' => 66,
- 'name' => 'EQG',
- 'slug' => 'eqg',
+ 'id' => 66,
+ 'name' => 'EQG',
+ 'slug' => 'eqg',
'position' => 65,
],
[
- 'id' => 67,
- 'name' => 'ERI',
- 'slug' => 'eri',
+ 'id' => 67,
+ 'name' => 'ERI',
+ 'slug' => 'eri',
'position' => 66,
],
[
- 'id' => 68,
- 'name' => 'ESH',
- 'slug' => 'esh',
+ 'id' => 68,
+ 'name' => 'ESH',
+ 'slug' => 'esh',
'position' => 67,
],
[
- 'id' => 69,
- 'name' => 'ESP',
- 'slug' => 'esp',
+ 'id' => 69,
+ 'name' => 'ESP',
+ 'slug' => 'esp',
'position' => 68,
],
[
- 'id' => 70,
- 'name' => 'ETH',
- 'slug' => 'eth',
+ 'id' => 70,
+ 'name' => 'ETH',
+ 'slug' => 'eth',
'position' => 69,
],
[
- 'id' => 71,
- 'name' => 'FIJ',
- 'slug' => 'fij',
+ 'id' => 71,
+ 'name' => 'FIJ',
+ 'slug' => 'fij',
'position' => 70,
],
[
- 'id' => 72,
- 'name' => 'FLK',
- 'slug' => 'flk',
+ 'id' => 72,
+ 'name' => 'FLK',
+ 'slug' => 'flk',
'position' => 71,
],
[
- 'id' => 73,
- 'name' => 'FRA',
- 'slug' => 'fra',
+ 'id' => 73,
+ 'name' => 'FRA',
+ 'slug' => 'fra',
'position' => 72,
],
[
- 'id' => 74,
- 'name' => 'FRO',
- 'slug' => 'fro',
+ 'id' => 74,
+ 'name' => 'FRO',
+ 'slug' => 'fro',
'position' => 73,
],
[
- 'id' => 75,
- 'name' => 'FSM',
- 'slug' => 'fsm',
+ 'id' => 75,
+ 'name' => 'FSM',
+ 'slug' => 'fsm',
'position' => 74,
],
[
- 'id' => 76,
- 'name' => 'GAB',
- 'slug' => 'gab',
+ 'id' => 76,
+ 'name' => 'GAB',
+ 'slug' => 'gab',
'position' => 75,
],
[
- 'id' => 77,
- 'name' => 'GAM',
- 'slug' => 'gam',
+ 'id' => 77,
+ 'name' => 'GAM',
+ 'slug' => 'gam',
'position' => 76,
],
[
- 'id' => 78,
- 'name' => 'GBR',
- 'slug' => 'gbr',
+ 'id' => 78,
+ 'name' => 'GBR',
+ 'slug' => 'gbr',
'position' => 77,
],
[
- 'id' => 79,
- 'name' => 'GEO',
- 'slug' => 'geo',
+ 'id' => 79,
+ 'name' => 'GEO',
+ 'slug' => 'geo',
'position' => 78,
],
[
- 'id' => 80,
- 'name' => 'GER',
- 'slug' => 'ger',
+ 'id' => 80,
+ 'name' => 'GER',
+ 'slug' => 'ger',
'position' => 79,
],
[
- 'id' => 81,
- 'name' => 'GGY',
- 'slug' => 'ggy',
+ 'id' => 81,
+ 'name' => 'GGY',
+ 'slug' => 'ggy',
'position' => 80,
],
[
- 'id' => 82,
- 'name' => 'GHA',
- 'slug' => 'gha',
+ 'id' => 82,
+ 'name' => 'GHA',
+ 'slug' => 'gha',
'position' => 81,
],
[
- 'id' => 83,
- 'name' => 'GIB',
- 'slug' => 'gib',
+ 'id' => 83,
+ 'name' => 'GIB',
+ 'slug' => 'gib',
'position' => 82,
],
[
- 'id' => 84,
- 'name' => 'GLP',
- 'slug' => 'glp',
+ 'id' => 84,
+ 'name' => 'GLP',
+ 'slug' => 'glp',
'position' => 83,
],
[
- 'id' => 85,
- 'name' => 'GNB',
- 'slug' => 'gnb',
+ 'id' => 85,
+ 'name' => 'GNB',
+ 'slug' => 'gnb',
'position' => 84,
],
[
- 'id' => 86,
- 'name' => 'GRE',
- 'slug' => 'gre',
+ 'id' => 86,
+ 'name' => 'GRE',
+ 'slug' => 'gre',
'position' => 85,
],
[
- 'id' => 87,
- 'name' => 'GRL',
- 'slug' => 'grl',
+ 'id' => 87,
+ 'name' => 'GRL',
+ 'slug' => 'grl',
'position' => 86,
],
[
- 'id' => 88,
- 'name' => 'GRN',
- 'slug' => 'grn',
+ 'id' => 88,
+ 'name' => 'GRN',
+ 'slug' => 'grn',
'position' => 87,
],
[
- 'id' => 89,
- 'name' => 'GUA',
- 'slug' => 'gua',
+ 'id' => 89,
+ 'name' => 'GUA',
+ 'slug' => 'gua',
'position' => 88,
],
[
- 'id' => 90,
- 'name' => 'GUF',
- 'slug' => 'guf',
+ 'id' => 90,
+ 'name' => 'GUF',
+ 'slug' => 'guf',
'position' => 89,
],
[
- 'id' => 91,
- 'name' => 'GUI',
- 'slug' => 'gui',
+ 'id' => 91,
+ 'name' => 'GUI',
+ 'slug' => 'gui',
'position' => 90,
],
[
- 'id' => 92,
- 'name' => 'GUM',
- 'slug' => 'gum',
+ 'id' => 92,
+ 'name' => 'GUM',
+ 'slug' => 'gum',
'position' => 91,
],
[
- 'id' => 93,
- 'name' => 'GUY',
- 'slug' => 'guy',
+ 'id' => 93,
+ 'name' => 'GUY',
+ 'slug' => 'guy',
'position' => 92,
],
[
- 'id' => 94,
- 'name' => 'HAI',
- 'slug' => 'hai',
+ 'id' => 94,
+ 'name' => 'HAI',
+ 'slug' => 'hai',
'position' => 93,
],
[
- 'id' => 95,
- 'name' => 'HKG',
- 'slug' => 'hkg',
+ 'id' => 95,
+ 'name' => 'HKG',
+ 'slug' => 'hkg',
'position' => 94,
],
[
- 'id' => 96,
- 'name' => 'HMD',
- 'slug' => 'hmd',
+ 'id' => 96,
+ 'name' => 'HMD',
+ 'slug' => 'hmd',
'position' => 95,
],
[
- 'id' => 97,
- 'name' => 'HON',
- 'slug' => 'hon',
+ 'id' => 97,
+ 'name' => 'HON',
+ 'slug' => 'hon',
'position' => 96,
],
[
- 'id' => 98,
- 'name' => 'HUN',
- 'slug' => 'hun',
+ 'id' => 98,
+ 'name' => 'HUN',
+ 'slug' => 'hun',
'position' => 97,
],
[
- 'id' => 99,
- 'name' => 'IDN',
- 'slug' => 'idn',
+ 'id' => 99,
+ 'name' => 'IDN',
+ 'slug' => 'idn',
'position' => 98,
],
[
- 'id' => 100,
- 'name' => 'IMN',
- 'slug' => 'imn',
+ 'id' => 100,
+ 'name' => 'IMN',
+ 'slug' => 'imn',
'position' => 99,
],
[
- 'id' => 101,
- 'name' => 'IND',
- 'slug' => 'ind',
+ 'id' => 101,
+ 'name' => 'IND',
+ 'slug' => 'ind',
'position' => 100,
],
[
- 'id' => 102,
- 'name' => 'IOT',
- 'slug' => 'iot',
+ 'id' => 102,
+ 'name' => 'IOT',
+ 'slug' => 'iot',
'position' => 101,
],
[
- 'id' => 103,
- 'name' => 'IRL',
- 'slug' => 'irl',
+ 'id' => 103,
+ 'name' => 'IRL',
+ 'slug' => 'irl',
'position' => 102,
],
[
- 'id' => 104,
- 'name' => 'IRN',
- 'slug' => 'irn',
+ 'id' => 104,
+ 'name' => 'IRN',
+ 'slug' => 'irn',
'position' => 103,
],
[
- 'id' => 105,
- 'name' => 'IRQ',
- 'slug' => 'irq',
+ 'id' => 105,
+ 'name' => 'IRQ',
+ 'slug' => 'irq',
'position' => 104,
],
[
- 'id' => 106,
- 'name' => 'ISL',
- 'slug' => 'isl',
+ 'id' => 106,
+ 'name' => 'ISL',
+ 'slug' => 'isl',
'position' => 105,
],
[
- 'id' => 107,
- 'name' => 'ISR',
- 'slug' => 'isr',
+ 'id' => 107,
+ 'name' => 'ISR',
+ 'slug' => 'isr',
'position' => 106,
],
[
- 'id' => 108,
- 'name' => 'ITA',
- 'slug' => 'ita',
+ 'id' => 108,
+ 'name' => 'ITA',
+ 'slug' => 'ita',
'position' => 107,
],
[
- 'id' => 109,
- 'name' => 'JAM',
- 'slug' => 'jam',
+ 'id' => 109,
+ 'name' => 'JAM',
+ 'slug' => 'jam',
'position' => 108,
],
[
- 'id' => 110,
- 'name' => 'JEY',
- 'slug' => 'jey',
+ 'id' => 110,
+ 'name' => 'JEY',
+ 'slug' => 'jey',
'position' => 109,
],
[
- 'id' => 111,
- 'name' => 'JOR',
- 'slug' => 'jor',
+ 'id' => 111,
+ 'name' => 'JOR',
+ 'slug' => 'jor',
'position' => 110,
],
[
- 'id' => 112,
- 'name' => 'JPN',
- 'slug' => 'jpn',
+ 'id' => 112,
+ 'name' => 'JPN',
+ 'slug' => 'jpn',
'position' => 111,
],
[
- 'id' => 113,
- 'name' => 'KAZ',
- 'slug' => 'kaz',
+ 'id' => 113,
+ 'name' => 'KAZ',
+ 'slug' => 'kaz',
'position' => 112,
],
[
- 'id' => 114,
- 'name' => 'KEN',
- 'slug' => 'ken',
+ 'id' => 114,
+ 'name' => 'KEN',
+ 'slug' => 'ken',
'position' => 113,
],
[
- 'id' => 115,
- 'name' => 'KGZ',
- 'slug' => 'kgz',
+ 'id' => 115,
+ 'name' => 'KGZ',
+ 'slug' => 'kgz',
'position' => 114,
],
[
- 'id' => 116,
- 'name' => 'KIR',
- 'slug' => 'kir',
+ 'id' => 116,
+ 'name' => 'KIR',
+ 'slug' => 'kir',
'position' => 115,
],
[
- 'id' => 117,
- 'name' => 'KNA',
- 'slug' => 'kna',
+ 'id' => 117,
+ 'name' => 'KNA',
+ 'slug' => 'kna',
'position' => 116,
],
[
- 'id' => 118,
- 'name' => 'KOR',
- 'slug' => 'kor',
+ 'id' => 118,
+ 'name' => 'KOR',
+ 'slug' => 'kor',
'position' => 117,
],
[
- 'id' => 119,
- 'name' => 'KSA',
- 'slug' => 'ksa',
+ 'id' => 119,
+ 'name' => 'KSA',
+ 'slug' => 'ksa',
'position' => 118,
],
[
- 'id' => 120,
- 'name' => 'KUW',
- 'slug' => 'kuw',
+ 'id' => 120,
+ 'name' => 'KUW',
+ 'slug' => 'kuw',
'position' => 119,
],
[
- 'id' => 121,
- 'name' => 'KVX',
- 'slug' => 'kvx',
+ 'id' => 121,
+ 'name' => 'KVX',
+ 'slug' => 'kvx',
'position' => 120,
],
[
- 'id' => 122,
- 'name' => 'LAO',
- 'slug' => 'lao',
+ 'id' => 122,
+ 'name' => 'LAO',
+ 'slug' => 'lao',
'position' => 121,
],
[
- 'id' => 123,
- 'name' => 'LBN',
- 'slug' => 'lbn',
+ 'id' => 123,
+ 'name' => 'LBN',
+ 'slug' => 'lbn',
'position' => 122,
],
[
- 'id' => 124,
- 'name' => 'LBR',
- 'slug' => 'lbr',
+ 'id' => 124,
+ 'name' => 'LBR',
+ 'slug' => 'lbr',
'position' => 123,
],
[
- 'id' => 125,
- 'name' => 'LBY',
- 'slug' => 'lby',
+ 'id' => 125,
+ 'name' => 'LBY',
+ 'slug' => 'lby',
'position' => 124,
],
[
- 'id' => 126,
- 'name' => 'LCA',
- 'slug' => 'lca',
+ 'id' => 126,
+ 'name' => 'LCA',
+ 'slug' => 'lca',
'position' => 125,
],
[
- 'id' => 127,
- 'name' => 'LES',
- 'slug' => 'les',
+ 'id' => 127,
+ 'name' => 'LES',
+ 'slug' => 'les',
'position' => 126,
],
[
- 'id' => 128,
- 'name' => 'LIE',
- 'slug' => 'lie',
+ 'id' => 128,
+ 'name' => 'LIE',
+ 'slug' => 'lie',
'position' => 127,
],
[
- 'id' => 129,
- 'name' => 'LKA',
- 'slug' => 'lka',
+ 'id' => 129,
+ 'name' => 'LKA',
+ 'slug' => 'lka',
'position' => 128,
],
[
- 'id' => 130,
- 'name' => 'LUX',
- 'slug' => 'lux',
+ 'id' => 130,
+ 'name' => 'LUX',
+ 'slug' => 'lux',
'position' => 129,
],
[
- 'id' => 131,
- 'name' => 'MAC',
- 'slug' => 'mac',
+ 'id' => 131,
+ 'name' => 'MAC',
+ 'slug' => 'mac',
'position' => 130,
],
[
- 'id' => 132,
- 'name' => 'MAD',
- 'slug' => 'mad',
+ 'id' => 132,
+ 'name' => 'MAD',
+ 'slug' => 'mad',
'position' => 131,
],
[
- 'id' => 133,
- 'name' => 'MAF',
- 'slug' => 'maf',
+ 'id' => 133,
+ 'name' => 'MAF',
+ 'slug' => 'maf',
'position' => 132,
],
[
- 'id' => 134,
- 'name' => 'MAR',
- 'slug' => 'mar',
+ 'id' => 134,
+ 'name' => 'MAR',
+ 'slug' => 'mar',
'position' => 133,
],
[
- 'id' => 135,
- 'name' => 'MAS',
- 'slug' => 'mas',
+ 'id' => 135,
+ 'name' => 'MAS',
+ 'slug' => 'mas',
'position' => 134,
],
[
- 'id' => 136,
- 'name' => 'MDA',
- 'slug' => 'mda',
+ 'id' => 136,
+ 'name' => 'MDA',
+ 'slug' => 'mda',
'position' => 135,
],
[
- 'id' => 137,
- 'name' => 'MDV',
- 'slug' => 'mdv',
+ 'id' => 137,
+ 'name' => 'MDV',
+ 'slug' => 'mdv',
'position' => 136,
],
[
- 'id' => 138,
- 'name' => 'MEX',
- 'slug' => 'mex',
+ 'id' => 138,
+ 'name' => 'MEX',
+ 'slug' => 'mex',
'position' => 137,
],
[
- 'id' => 139,
- 'name' => 'MHL',
- 'slug' => 'mhl',
+ 'id' => 139,
+ 'name' => 'MHL',
+ 'slug' => 'mhl',
'position' => 138,
],
[
- 'id' => 140,
- 'name' => 'MKD',
- 'slug' => 'mkd',
+ 'id' => 140,
+ 'name' => 'MKD',
+ 'slug' => 'mkd',
'position' => 139,
],
[
- 'id' => 141,
- 'name' => 'MLI',
- 'slug' => 'mli',
+ 'id' => 141,
+ 'name' => 'MLI',
+ 'slug' => 'mli',
'position' => 140,
],
[
- 'id' => 142,
- 'name' => 'MLT',
- 'slug' => 'mlt',
+ 'id' => 142,
+ 'name' => 'MLT',
+ 'slug' => 'mlt',
'position' => 141,
],
[
- 'id' => 143,
- 'name' => 'MNG',
- 'slug' => 'mng',
+ 'id' => 143,
+ 'name' => 'MNG',
+ 'slug' => 'mng',
'position' => 142,
],
[
- 'id' => 144,
- 'name' => 'MNP',
- 'slug' => 'mnp',
+ 'id' => 144,
+ 'name' => 'MNP',
+ 'slug' => 'mnp',
'position' => 143,
],
[
- 'id' => 145,
- 'name' => 'MON',
- 'slug' => 'mon',
+ 'id' => 145,
+ 'name' => 'MON',
+ 'slug' => 'mon',
'position' => 144,
],
[
- 'id' => 146,
- 'name' => 'MOZ',
- 'slug' => 'moz',
+ 'id' => 146,
+ 'name' => 'MOZ',
+ 'slug' => 'moz',
'position' => 145,
],
[
- 'id' => 147,
- 'name' => 'MRI',
- 'slug' => 'mri',
+ 'id' => 147,
+ 'name' => 'MRI',
+ 'slug' => 'mri',
'position' => 146,
],
[
- 'id' => 148,
- 'name' => 'MSR',
- 'slug' => 'msr',
+ 'id' => 148,
+ 'name' => 'MSR',
+ 'slug' => 'msr',
'position' => 147,
],
[
- 'id' => 149,
- 'name' => 'MTN',
- 'slug' => 'mtn',
+ 'id' => 149,
+ 'name' => 'MTN',
+ 'slug' => 'mtn',
'position' => 148,
],
[
- 'id' => 150,
- 'name' => 'MTQ',
- 'slug' => 'mtq',
+ 'id' => 150,
+ 'name' => 'MTQ',
+ 'slug' => 'mtq',
'position' => 149,
],
[
- 'id' => 151,
- 'name' => 'MWI',
- 'slug' => 'mwi',
+ 'id' => 151,
+ 'name' => 'MWI',
+ 'slug' => 'mwi',
'position' => 150,
],
[
- 'id' => 152,
- 'name' => 'MYA',
- 'slug' => 'mya',
+ 'id' => 152,
+ 'name' => 'MYA',
+ 'slug' => 'mya',
'position' => 151,
],
[
- 'id' => 153,
- 'name' => 'MYT',
- 'slug' => 'myt',
+ 'id' => 153,
+ 'name' => 'MYT',
+ 'slug' => 'myt',
'position' => 152,
],
[
- 'id' => 154,
- 'name' => 'NAM',
- 'slug' => 'nam',
+ 'id' => 154,
+ 'name' => 'NAM',
+ 'slug' => 'nam',
'position' => 153,
],
[
- 'id' => 155,
- 'name' => 'NCA',
- 'slug' => 'nca',
+ 'id' => 155,
+ 'name' => 'NCA',
+ 'slug' => 'nca',
'position' => 154,
],
[
- 'id' => 156,
- 'name' => 'NCL',
- 'slug' => 'ncl',
+ 'id' => 156,
+ 'name' => 'NCL',
+ 'slug' => 'ncl',
'position' => 155,
],
[
- 'id' => 157,
- 'name' => 'NEP',
- 'slug' => 'nep',
+ 'id' => 157,
+ 'name' => 'NEP',
+ 'slug' => 'nep',
'position' => 156,
],
[
- 'id' => 158,
- 'name' => 'NFK',
- 'slug' => 'nfk',
+ 'id' => 158,
+ 'name' => 'NFK',
+ 'slug' => 'nfk',
'position' => 157,
],
[
- 'id' => 159,
- 'name' => 'NIG',
- 'slug' => 'nig',
+ 'id' => 159,
+ 'name' => 'NIG',
+ 'slug' => 'nig',
'position' => 158,
],
[
- 'id' => 160,
- 'name' => 'NIR',
- 'slug' => 'nir',
+ 'id' => 160,
+ 'name' => 'NIR',
+ 'slug' => 'nir',
'position' => 159,
],
[
- 'id' => 161,
- 'name' => 'NIU',
- 'slug' => 'niu',
+ 'id' => 161,
+ 'name' => 'NIU',
+ 'slug' => 'niu',
'position' => 160,
],
[
- 'id' => 162,
- 'name' => 'NLD',
- 'slug' => 'nld',
+ 'id' => 162,
+ 'name' => 'NLD',
+ 'slug' => 'nld',
'position' => 161,
],
[
- 'id' => 163,
- 'name' => 'NOR',
- 'slug' => 'nor',
+ 'id' => 163,
+ 'name' => 'NOR',
+ 'slug' => 'nor',
'position' => 162,
],
[
- 'id' => 164,
- 'name' => 'NRU',
- 'slug' => 'nru',
+ 'id' => 164,
+ 'name' => 'NRU',
+ 'slug' => 'nru',
'position' => 163,
],
[
- 'id' => 165,
- 'name' => 'NZL',
- 'slug' => 'nzl',
+ 'id' => 165,
+ 'name' => 'NZL',
+ 'slug' => 'nzl',
'position' => 164,
],
[
- 'id' => 166,
- 'name' => 'OMA',
- 'slug' => 'oma',
+ 'id' => 166,
+ 'name' => 'OMA',
+ 'slug' => 'oma',
'position' => 165,
],
[
- 'id' => 167,
- 'name' => 'PAK',
- 'slug' => 'pak',
+ 'id' => 167,
+ 'name' => 'PAK',
+ 'slug' => 'pak',
'position' => 166,
],
[
- 'id' => 168,
- 'name' => 'PAN',
- 'slug' => 'pan',
+ 'id' => 168,
+ 'name' => 'PAN',
+ 'slug' => 'pan',
'position' => 167,
],
[
- 'id' => 169,
- 'name' => 'PAR',
- 'slug' => 'par',
+ 'id' => 169,
+ 'name' => 'PAR',
+ 'slug' => 'par',
'position' => 168,
],
[
- 'id' => 170,
- 'name' => 'PCN',
- 'slug' => 'pcn',
+ 'id' => 170,
+ 'name' => 'PCN',
+ 'slug' => 'pcn',
'position' => 169,
],
[
- 'id' => 171,
- 'name' => 'PER',
- 'slug' => 'per',
+ 'id' => 171,
+ 'name' => 'PER',
+ 'slug' => 'per',
'position' => 170,
],
[
- 'id' => 172,
- 'name' => 'PHI',
- 'slug' => 'phi',
+ 'id' => 172,
+ 'name' => 'PHI',
+ 'slug' => 'phi',
'position' => 171,
],
[
- 'id' => 173,
- 'name' => 'PLE',
- 'slug' => 'ple',
+ 'id' => 173,
+ 'name' => 'PLE',
+ 'slug' => 'ple',
'position' => 172,
],
[
- 'id' => 174,
- 'name' => 'PLW',
- 'slug' => 'plw',
+ 'id' => 174,
+ 'name' => 'PLW',
+ 'slug' => 'plw',
'position' => 173,
],
[
- 'id' => 175,
- 'name' => 'PNG',
- 'slug' => 'png',
+ 'id' => 175,
+ 'name' => 'PNG',
+ 'slug' => 'png',
'position' => 174,
],
[
- 'id' => 176,
- 'name' => 'POL',
- 'slug' => 'pol',
+ 'id' => 176,
+ 'name' => 'POL',
+ 'slug' => 'pol',
'position' => 175,
],
[
- 'id' => 177,
- 'name' => 'POR',
- 'slug' => 'por',
+ 'id' => 177,
+ 'name' => 'POR',
+ 'slug' => 'por',
'position' => 176,
],
[
- 'id' => 178,
- 'name' => 'PRK',
- 'slug' => 'prk',
+ 'id' => 178,
+ 'name' => 'PRK',
+ 'slug' => 'prk',
'position' => 177,
],
[
- 'id' => 179,
- 'name' => 'PUR',
- 'slug' => 'pur',
+ 'id' => 179,
+ 'name' => 'PUR',
+ 'slug' => 'pur',
'position' => 178,
],
[
- 'id' => 180,
- 'name' => 'QAT',
- 'slug' => 'qat',
+ 'id' => 180,
+ 'name' => 'QAT',
+ 'slug' => 'qat',
'position' => 179,
],
[
- 'id' => 181,
- 'name' => 'REU',
- 'slug' => 'reu',
+ 'id' => 181,
+ 'name' => 'REU',
+ 'slug' => 'reu',
'position' => 180,
],
[
- 'id' => 182,
- 'name' => 'ROU',
- 'slug' => 'rou',
+ 'id' => 182,
+ 'name' => 'ROU',
+ 'slug' => 'rou',
'position' => 181,
],
[
- 'id' => 183,
- 'name' => 'RSA',
- 'slug' => 'rsa',
+ 'id' => 183,
+ 'name' => 'RSA',
+ 'slug' => 'rsa',
'position' => 182,
],
[
- 'id' => 184,
- 'name' => 'RUS',
- 'slug' => 'rus',
+ 'id' => 184,
+ 'name' => 'RUS',
+ 'slug' => 'rus',
'position' => 183,
],
[
- 'id' => 185,
- 'name' => 'RWA',
- 'slug' => 'rwa',
+ 'id' => 185,
+ 'name' => 'RWA',
+ 'slug' => 'rwa',
'position' => 184,
],
[
- 'id' => 186,
- 'name' => 'SAM',
- 'slug' => 'sam',
+ 'id' => 186,
+ 'name' => 'SAM',
+ 'slug' => 'sam',
'position' => 185,
],
[
- 'id' => 187,
- 'name' => 'SCO',
- 'slug' => 'sco',
+ 'id' => 187,
+ 'name' => 'SCO',
+ 'slug' => 'sco',
'position' => 186,
],
[
- 'id' => 188,
- 'name' => 'SDN',
- 'slug' => 'sdn',
+ 'id' => 188,
+ 'name' => 'SDN',
+ 'slug' => 'sdn',
'position' => 187,
],
[
- 'id' => 189,
- 'name' => 'SEN',
- 'slug' => 'sen',
+ 'id' => 189,
+ 'name' => 'SEN',
+ 'slug' => 'sen',
'position' => 188,
],
[
- 'id' => 190,
- 'name' => 'SEY',
- 'slug' => 'sey',
+ 'id' => 190,
+ 'name' => 'SEY',
+ 'slug' => 'sey',
'position' => 189,
],
[
- 'id' => 191,
- 'name' => 'SGS',
- 'slug' => 'sgs',
+ 'id' => 191,
+ 'name' => 'SGS',
+ 'slug' => 'sgs',
'position' => 190,
],
[
- 'id' => 192,
- 'name' => 'SHN',
- 'slug' => 'shn',
+ 'id' => 192,
+ 'name' => 'SHN',
+ 'slug' => 'shn',
'position' => 191,
],
[
- 'id' => 193,
- 'name' => 'SIN',
- 'slug' => 'sin',
+ 'id' => 193,
+ 'name' => 'SIN',
+ 'slug' => 'sin',
'position' => 192,
],
[
- 'id' => 194,
- 'name' => 'SJM',
- 'slug' => 'sjm',
+ 'id' => 194,
+ 'name' => 'SJM',
+ 'slug' => 'sjm',
'position' => 193,
],
[
- 'id' => 195,
- 'name' => 'SLE',
- 'slug' => 'sle',
+ 'id' => 195,
+ 'name' => 'SLE',
+ 'slug' => 'sle',
'position' => 194,
],
[
- 'id' => 196,
- 'name' => 'SLV',
- 'slug' => 'slv',
+ 'id' => 196,
+ 'name' => 'SLV',
+ 'slug' => 'slv',
'position' => 195,
],
[
- 'id' => 197,
- 'name' => 'SMR',
- 'slug' => 'smr',
+ 'id' => 197,
+ 'name' => 'SMR',
+ 'slug' => 'smr',
'position' => 196,
],
[
- 'id' => 198,
- 'name' => 'SOL',
- 'slug' => 'sol',
+ 'id' => 198,
+ 'name' => 'SOL',
+ 'slug' => 'sol',
'position' => 197,
],
[
- 'id' => 199,
- 'name' => 'SOM',
- 'slug' => 'som',
+ 'id' => 199,
+ 'name' => 'SOM',
+ 'slug' => 'som',
'position' => 198,
],
[
- 'id' => 200,
- 'name' => 'SPM',
- 'slug' => 'spm',
+ 'id' => 200,
+ 'name' => 'SPM',
+ 'slug' => 'spm',
'position' => 199,
],
[
- 'id' => 201,
- 'name' => 'SRB',
- 'slug' => 'srb',
+ 'id' => 201,
+ 'name' => 'SRB',
+ 'slug' => 'srb',
'position' => 200,
],
[
- 'id' => 202,
- 'name' => 'SSD',
- 'slug' => 'ssd',
+ 'id' => 202,
+ 'name' => 'SSD',
+ 'slug' => 'ssd',
'position' => 201,
],
[
- 'id' => 203,
- 'name' => 'STP',
- 'slug' => 'stp',
+ 'id' => 203,
+ 'name' => 'STP',
+ 'slug' => 'stp',
'position' => 202,
],
[
- 'id' => 204,
- 'name' => 'SUI',
- 'slug' => 'sui',
+ 'id' => 204,
+ 'name' => 'SUI',
+ 'slug' => 'sui',
'position' => 203,
],
[
- 'id' => 205,
- 'name' => 'SUR',
- 'slug' => 'sur',
+ 'id' => 205,
+ 'name' => 'SUR',
+ 'slug' => 'sur',
'position' => 204,
],
[
- 'id' => 206,
- 'name' => 'SWZ',
- 'slug' => 'swz',
+ 'id' => 206,
+ 'name' => 'SWZ',
+ 'slug' => 'swz',
'position' => 205,
],
[
- 'id' => 207,
- 'name' => 'SXM',
- 'slug' => 'sxm',
+ 'id' => 207,
+ 'name' => 'SXM',
+ 'slug' => 'sxm',
'position' => 206,
],
[
- 'id' => 208,
- 'name' => 'SYR',
- 'slug' => 'syr',
+ 'id' => 208,
+ 'name' => 'SYR',
+ 'slug' => 'syr',
'position' => 207,
],
[
- 'id' => 209,
- 'name' => 'TAH',
- 'slug' => 'tah',
+ 'id' => 209,
+ 'name' => 'TAH',
+ 'slug' => 'tah',
'position' => 208,
],
[
- 'id' => 210,
- 'name' => 'TAN',
- 'slug' => 'tan',
+ 'id' => 210,
+ 'name' => 'TAN',
+ 'slug' => 'tan',
'position' => 209,
],
[
- 'id' => 211,
- 'name' => 'TCA',
- 'slug' => 'tca',
+ 'id' => 211,
+ 'name' => 'TCA',
+ 'slug' => 'tca',
'position' => 210,
],
[
- 'id' => 212,
- 'name' => 'TGA',
- 'slug' => 'tga',
+ 'id' => 212,
+ 'name' => 'TGA',
+ 'slug' => 'tga',
'position' => 211,
],
[
- 'id' => 213,
- 'name' => 'THA',
- 'slug' => 'tha',
+ 'id' => 213,
+ 'name' => 'THA',
+ 'slug' => 'tha',
'position' => 212,
],
[
- 'id' => 214,
- 'name' => 'TJK',
- 'slug' => 'tjk',
+ 'id' => 214,
+ 'name' => 'TJK',
+ 'slug' => 'tjk',
'position' => 213,
],
[
- 'id' => 215,
- 'name' => 'TKL',
- 'slug' => 'tkl',
+ 'id' => 215,
+ 'name' => 'TKL',
+ 'slug' => 'tkl',
'position' => 214,
],
[
- 'id' => 216,
- 'name' => 'TKM',
- 'slug' => 'tkm',
+ 'id' => 216,
+ 'name' => 'TKM',
+ 'slug' => 'tkm',
'position' => 215,
],
[
- 'id' => 217,
- 'name' => 'TLS',
- 'slug' => 'tls',
+ 'id' => 217,
+ 'name' => 'TLS',
+ 'slug' => 'tls',
'position' => 216,
],
[
- 'id' => 218,
- 'name' => 'TOG',
- 'slug' => 'tog',
+ 'id' => 218,
+ 'name' => 'TOG',
+ 'slug' => 'tog',
'position' => 217,
],
[
- 'id' => 219,
- 'name' => 'TRI',
- 'slug' => 'tri',
+ 'id' => 219,
+ 'name' => 'TRI',
+ 'slug' => 'tri',
'position' => 218,
],
[
- 'id' => 220,
- 'name' => 'TUN',
- 'slug' => 'tun',
+ 'id' => 220,
+ 'name' => 'TUN',
+ 'slug' => 'tun',
'position' => 219,
],
[
- 'id' => 221,
- 'name' => 'TUR',
- 'slug' => 'tur',
+ 'id' => 221,
+ 'name' => 'TUR',
+ 'slug' => 'tur',
'position' => 220,
],
[
- 'id' => 222,
- 'name' => 'TUV',
- 'slug' => 'tuv',
+ 'id' => 222,
+ 'name' => 'TUV',
+ 'slug' => 'tuv',
'position' => 221,
],
[
- 'id' => 223,
- 'name' => 'TWN',
- 'slug' => 'twn',
+ 'id' => 223,
+ 'name' => 'TWN',
+ 'slug' => 'twn',
'position' => 222,
],
[
- 'id' => 224,
- 'name' => 'UAE',
- 'slug' => 'uae',
+ 'id' => 224,
+ 'name' => 'UAE',
+ 'slug' => 'uae',
'position' => 223,
],
[
- 'id' => 225,
- 'name' => 'UGA',
- 'slug' => 'uga',
+ 'id' => 225,
+ 'name' => 'UGA',
+ 'slug' => 'uga',
'position' => 224,
],
[
- 'id' => 226,
- 'name' => 'UKR',
- 'slug' => 'ukr',
+ 'id' => 226,
+ 'name' => 'UKR',
+ 'slug' => 'ukr',
'position' => 225,
],
[
- 'id' => 227,
- 'name' => 'UMI',
- 'slug' => 'umi',
+ 'id' => 227,
+ 'name' => 'UMI',
+ 'slug' => 'umi',
'position' => 226,
],
[
- 'id' => 228,
- 'name' => 'URU',
- 'slug' => 'uru',
+ 'id' => 228,
+ 'name' => 'URU',
+ 'slug' => 'uru',
'position' => 227,
],
[
- 'id' => 229,
- 'name' => 'USA',
- 'slug' => 'usa',
+ 'id' => 229,
+ 'name' => 'USA',
+ 'slug' => 'usa',
'position' => 228,
],
[
- 'id' => 230,
- 'name' => 'UZB',
- 'slug' => 'uzb',
+ 'id' => 230,
+ 'name' => 'UZB',
+ 'slug' => 'uzb',
'position' => 229,
],
[
- 'id' => 231,
- 'name' => 'VAN',
- 'slug' => 'van',
+ 'id' => 231,
+ 'name' => 'VAN',
+ 'slug' => 'van',
'position' => 230,
],
[
- 'id' => 232,
- 'name' => 'VAT',
- 'slug' => 'vat',
+ 'id' => 232,
+ 'name' => 'VAT',
+ 'slug' => 'vat',
'position' => 231,
],
[
- 'id' => 233,
- 'name' => 'VEN',
- 'slug' => 'ven',
+ 'id' => 233,
+ 'name' => 'VEN',
+ 'slug' => 'ven',
'position' => 232,
],
[
- 'id' => 234,
- 'name' => 'VGB',
- 'slug' => 'vgb',
+ 'id' => 234,
+ 'name' => 'VGB',
+ 'slug' => 'vgb',
'position' => 233,
],
[
- 'id' => 235,
- 'name' => 'VIE',
- 'slug' => 'vie',
+ 'id' => 235,
+ 'name' => 'VIE',
+ 'slug' => 'vie',
'position' => 234,
],
[
- 'id' => 236,
- 'name' => 'VIN',
- 'slug' => 'vin',
+ 'id' => 236,
+ 'name' => 'VIN',
+ 'slug' => 'vin',
'position' => 235,
],
[
- 'id' => 237,
- 'name' => 'VIR',
- 'slug' => 'vir',
+ 'id' => 237,
+ 'name' => 'VIR',
+ 'slug' => 'vir',
'position' => 236,
],
[
- 'id' => 238,
- 'name' => 'WAL',
- 'slug' => 'wal',
+ 'id' => 238,
+ 'name' => 'WAL',
+ 'slug' => 'wal',
'position' => 237,
],
[
- 'id' => 239,
- 'name' => 'WLF',
- 'slug' => 'wlf',
+ 'id' => 239,
+ 'name' => 'WLF',
+ 'slug' => 'wlf',
'position' => 238,
],
[
- 'id' => 240,
- 'name' => 'YEM',
- 'slug' => 'yem',
+ 'id' => 240,
+ 'name' => 'YEM',
+ 'slug' => 'yem',
'position' => 239,
],
[
- 'id' => 241,
- 'name' => 'ZAM',
- 'slug' => 'zam',
+ 'id' => 241,
+ 'name' => 'ZAM',
+ 'slug' => 'zam',
'position' => 240,
],
[
- 'id' => 242,
- 'name' => 'ZIM',
- 'slug' => 'zim',
+ 'id' => 242,
+ 'name' => 'ZIM',
+ 'slug' => 'zim',
'position' => 241,
],
];
diff --git a/database/seeders/ResolutionsTableSeeder.php b/database/seeders/ResolutionsTableSeeder.php
index 50d478fdc..0284a2647 100644
--- a/database/seeders/ResolutionsTableSeeder.php
+++ b/database/seeders/ResolutionsTableSeeder.php
@@ -39,63 +39,63 @@ class ResolutionsTableSeeder extends Seeder
{
return [
[
- 'id' => 1,
- 'name' => '4320p',
- 'slug' => '4320p',
+ 'id' => 1,
+ 'name' => '4320p',
+ 'slug' => '4320p',
'position' => 0,
],
[
- 'id' => 2,
- 'name' => '2160p',
- 'slug' => '2160p',
+ 'id' => 2,
+ 'name' => '2160p',
+ 'slug' => '2160p',
'position' => 1,
],
[
- 'id' => 3,
- 'name' => '1080p',
- 'slug' => '1080p',
+ 'id' => 3,
+ 'name' => '1080p',
+ 'slug' => '1080p',
'position' => 2,
],
[
- 'id' => 4,
- 'name' => '1080i',
- 'slug' => '1080i',
+ 'id' => 4,
+ 'name' => '1080i',
+ 'slug' => '1080i',
'position' => 4,
],
[
- 'id' => 5,
- 'name' => '720p',
- 'slug' => '720p',
+ 'id' => 5,
+ 'name' => '720p',
+ 'slug' => '720p',
'position' => 5,
],
[
- 'id' => 6,
- 'name' => '576p',
- 'slug' => '576p',
+ 'id' => 6,
+ 'name' => '576p',
+ 'slug' => '576p',
'position' => 6,
],
[
- 'id' => 7,
- 'name' => '576i',
- 'slug' => '576i',
+ 'id' => 7,
+ 'name' => '576i',
+ 'slug' => '576i',
'position' => 7,
],
[
- 'id' => 8,
- 'name' => '480p',
- 'slug' => '480p',
+ 'id' => 8,
+ 'name' => '480p',
+ 'slug' => '480p',
'position' => 8,
],
[
- 'id' => 9,
- 'name' => '480i',
- 'slug' => '480i',
+ 'id' => 9,
+ 'name' => '480i',
+ 'slug' => '480i',
'position' => 9,
],
[
- 'id' => 10,
- 'name' => 'Other',
- 'slug' => 'other',
+ 'id' => 10,
+ 'name' => 'Other',
+ 'slug' => 'other',
'position' => 10,
],
];
diff --git a/database/seeders/TicketCategoriesTableSeeder.php b/database/seeders/TicketCategoriesTableSeeder.php
index e7a419ca6..6806220f6 100644
--- a/database/seeders/TicketCategoriesTableSeeder.php
+++ b/database/seeders/TicketCategoriesTableSeeder.php
@@ -44,47 +44,47 @@ class TicketCategoriesTableSeeder extends Seeder
{
return [
[
- 'name' => 'Accounts',
+ 'name' => 'Accounts',
'position' => 0,
],
[
- 'name' => 'Appeals',
+ 'name' => 'Appeals',
'position' => 1,
],
[
- 'name' => 'Forums',
+ 'name' => 'Forums',
'position' => 2,
],
[
- 'name' => 'Requests',
+ 'name' => 'Requests',
'position' => 3,
],
[
- 'name' => 'Subtitles',
+ 'name' => 'Subtitles',
'position' => 4,
],
[
- 'name' => 'Torrents',
+ 'name' => 'Torrents',
'position' => 5,
],
[
- 'name' => 'MediaHub',
+ 'name' => 'MediaHub',
'position' => 6,
],
[
- 'name' => 'Technical',
+ 'name' => 'Technical',
'position' => 7,
],
[
- 'name' => 'Playlists',
+ 'name' => 'Playlists',
'position' => 8,
],
[
- 'name' => 'Bugs',
+ 'name' => 'Bugs',
'position' => 9,
],
[
- 'name' => 'Other',
+ 'name' => 'Other',
'position' => 10,
],
];
diff --git a/database/seeders/TicketPrioritiesTableSeeder.php b/database/seeders/TicketPrioritiesTableSeeder.php
index 43a7a6d74..8c56bc791 100644
--- a/database/seeders/TicketPrioritiesTableSeeder.php
+++ b/database/seeders/TicketPrioritiesTableSeeder.php
@@ -44,15 +44,15 @@ class TicketPrioritiesTableSeeder extends Seeder
{
return [
[
- 'name' => 'Low',
+ 'name' => 'Low',
'position' => 0,
],
[
- 'name' => 'Medium',
+ 'name' => 'Medium',
'position' => 1,
],
[
- 'name' => 'High',
+ 'name' => 'High',
'position' => 2,
],
];
diff --git a/database/seeders/TypesTableSeeder.php b/database/seeders/TypesTableSeeder.php
index 972265209..7280c97f9 100644
--- a/database/seeders/TypesTableSeeder.php
+++ b/database/seeders/TypesTableSeeder.php
@@ -39,82 +39,82 @@ class TypesTableSeeder extends Seeder
{
return [
[
- 'id' => 1,
- 'name' => 'Full Disc',
- 'slug' => 'full-disc',
+ 'id' => 1,
+ 'name' => 'Full Disc',
+ 'slug' => 'full-disc',
'position' => 0,
],
[
- 'id' => 2,
- 'name' => 'Remux',
- 'slug' => 'remux',
+ 'id' => 2,
+ 'name' => 'Remux',
+ 'slug' => 'remux',
'position' => 1,
],
[
- 'id' => 3,
- 'name' => 'Encode',
- 'slug' => 'encode',
+ 'id' => 3,
+ 'name' => 'Encode',
+ 'slug' => 'encode',
'position' => 2,
],
[
- 'id' => 4,
- 'name' => 'WEB-DL',
- 'slug' => 'web-dl',
+ 'id' => 4,
+ 'name' => 'WEB-DL',
+ 'slug' => 'web-dl',
'position' => 4,
],
[
- 'id' => 5,
- 'name' => 'WEBRip',
- 'slug' => 'web-rip',
+ 'id' => 5,
+ 'name' => 'WEBRip',
+ 'slug' => 'web-rip',
'position' => 5,
],
[
- 'id' => 6,
- 'name' => 'HDTV',
- 'slug' => 'hdtv',
+ 'id' => 6,
+ 'name' => 'HDTV',
+ 'slug' => 'hdtv',
'position' => 6,
],
[
- 'id' => 7,
- 'name' => 'FLAC',
- 'slug' => 'flac',
+ 'id' => 7,
+ 'name' => 'FLAC',
+ 'slug' => 'flac',
'position' => 7,
],
[
- 'id' => 8,
- 'name' => 'ALAC',
- 'slug' => 'alac',
+ 'id' => 8,
+ 'name' => 'ALAC',
+ 'slug' => 'alac',
'position' => 8,
],
[
- 'id' => 9,
- 'name' => 'AC3',
- 'slug' => 'ac3',
+ 'id' => 9,
+ 'name' => 'AC3',
+ 'slug' => 'ac3',
'position' => 9,
],
[
- 'id' => 10,
- 'name' => 'AAC',
- 'slug' => 'aac',
+ 'id' => 10,
+ 'name' => 'AAC',
+ 'slug' => 'aac',
'position' => 10,
],
[
- 'id' => 11,
- 'name' => 'MP3',
- 'slug' => 'mp3',
+ 'id' => 11,
+ 'name' => 'MP3',
+ 'slug' => 'mp3',
'position' => 11,
],
[
- 'id' => 12,
- 'name' => 'Mac',
- 'slug' => 'mac',
+ 'id' => 12,
+ 'name' => 'Mac',
+ 'slug' => 'mac',
'position' => 12,
],
[
- 'id' => 13,
- 'name' => 'Windows',
- 'slug' => 'windows',
+ 'id' => 13,
+ 'name' => 'Windows',
+ 'slug' => 'windows',
'position' => 13,
],
];
diff --git a/database/seeders/UsersTableSeeder.php b/database/seeders/UsersTableSeeder.php
index e80f7293f..fcaff1fda 100644
--- a/database/seeders/UsersTableSeeder.php
+++ b/database/seeders/UsersTableSeeder.php
@@ -40,34 +40,34 @@ class UsersTableSeeder extends Seeder
{
return [
[
- 'username' => 'System',
- 'email' => config('unit3d.default-owner-email'),
- 'group_id' => 9,
- 'password' => \Hash::make(config('unit3d.default-owner-password')),
- 'passkey' => md5(random_bytes(60)),
- 'rsskey' => md5(random_bytes(60)),
+ 'username' => 'System',
+ 'email' => config('unit3d.default-owner-email'),
+ 'group_id' => 9,
+ 'password' => \Hash::make(config('unit3d.default-owner-password')),
+ 'passkey' => md5(random_bytes(60)),
+ 'rsskey' => md5(random_bytes(60)),
'api_token' => Str::random(100),
- 'active' => 1,
+ 'active' => 1,
],
[
- 'username' => 'Bot',
- 'email' => config('unit3d.default-owner-email'),
- 'group_id' => 9,
- 'password' => \Hash::make(config('unit3d.default-owner-password')),
- 'passkey' => md5(random_bytes(60)),
- 'rsskey' => md5(random_bytes(60)),
+ 'username' => 'Bot',
+ 'email' => config('unit3d.default-owner-email'),
+ 'group_id' => 9,
+ 'password' => \Hash::make(config('unit3d.default-owner-password')),
+ 'passkey' => md5(random_bytes(60)),
+ 'rsskey' => md5(random_bytes(60)),
'api_token' => Str::random(100),
- 'active' => 1,
+ 'active' => 1,
],
[
- 'username' => config('unit3d.owner-username'),
- 'email' => config('unit3d.default-owner-email'),
- 'group_id' => 10,
- 'password' => \Hash::make(config('unit3d.default-owner-password')),
- 'passkey' => md5(random_bytes(60)),
- 'rsskey' => md5(random_bytes(60)),
+ 'username' => config('unit3d.owner-username'),
+ 'email' => config('unit3d.default-owner-email'),
+ 'group_id' => 10,
+ 'password' => \Hash::make(config('unit3d.default-owner-password')),
+ 'passkey' => md5(random_bytes(60)),
+ 'rsskey' => md5(random_bytes(60)),
'api_token' => Str::random(100),
- 'active' => 1,
+ 'active' => 1,
],
];
}
diff --git a/lang/ar/articles.php b/lang/ar/articles.php
index 760bea316..c4eace779 100644
--- a/lang/ar/articles.php
+++ b/lang/ar/articles.php
@@ -12,8 +12,8 @@
*/
return [
- 'articles' => 'مقالات',
+ 'articles' => 'مقالات',
'meta-articles' => 'المقالات والأخبار على تعقب والمجتمع',
- 'published-at' => 'نشرت على',
- 'read-more' => 'قراءة المزيد',
+ 'published-at' => 'نشرت على',
+ 'read-more' => 'قراءة المزيد',
];
diff --git a/lang/ar/auth.php b/lang/ar/auth.php
index 40baa7919..9b4f53859 100644
--- a/lang/ar/auth.php
+++ b/lang/ar/auth.php
@@ -23,6 +23,6 @@ return [
|
*/
- 'failed' => 'بيانات الاعتماد هذه غير متطابقة مع البيانات المسجلة لدينا.',
+ 'failed' => 'بيانات الاعتماد هذه غير متطابقة مع البيانات المسجلة لدينا.',
'throttle' => 'عدد كبير جدا من محاولات الدخول. يرجى المحاولة مرة أخرى بعد :seconds ثانية.',
];
diff --git a/lang/ar/backup.php b/lang/ar/backup.php
index 0b77010a4..678f0014b 100644
--- a/lang/ar/backup.php
+++ b/lang/ar/backup.php
@@ -23,31 +23,31 @@ return [
|
*/
- 'backup' => 'نسخة احتياطية',
- 'create_a_new_backup' => 'إنشاء النسخ الاحتياطي الكامل',
- 'create_a_new_files_backup' => 'إنشاء ملفات النسخ الاحتياطي',
- 'create_a_new_db_backup' => 'إنشاء قاعدة بيانات النسخ الاحتياطي',
- 'existing_backups' => 'النسخ الاحتياطية الموجودة',
- 'date' => 'التاريخ',
- 'file_size' => 'حجم الملف',
- 'actions' => 'اجراءات',
- 'download' => 'تحميل',
- 'delete' => 'حذف',
- 'delete_confirm' => 'هل انت متأكد من حذف النسخة الاحتياطية؟',
- 'delete_confirmation_title' => 'تم بالنجاح',
- 'delete_confirmation_message' => 'تم حذف ملف النسخة الاحتياطية',
- 'delete_error_title' => 'هناك خطأ',
- 'delete_error_message' => 'ملف النسخة الاحتياطية لم يتم حذفه.',
- 'delete_cancel_title' => 'كل شيئ على مايرام.',
- 'delete_cancel_message' => 'ملف النسخة الاحتياطية لم يتم حذفه.',
- 'create_confirmation_title' => 'تم عمل النسخ الاحتياطية بالنجاح',
- 'create_confirmation_message' => 'سيتم اعادة اعادة تحميل الصفحة خلال 3 ثواني.',
- 'create_error_title' => 'هناك خطأ في النسخة الاحتياطية',
- 'create_error_message' => 'لا يمكن إنشاء ملف النسخة الاحتياطية.',
- 'create_warning_title' => 'هناك خطأ غير معروف',
- 'create_warning_message' => 'ربما لم يتم إنشاء النسخة الاحتياطية. يرجى التحقق من ملفات السجل للحصول على التفاصيل.',
- 'location' => 'الموقع',
- 'no_disks_configured' => 'لايوجد أقراص تم تحددها في ملف config/backup.php',
- 'backup_doesnt_exist' => 'ملف النسخ الاحتياطي غير موجود.',
+ 'backup' => 'نسخة احتياطية',
+ 'create_a_new_backup' => 'إنشاء النسخ الاحتياطي الكامل',
+ 'create_a_new_files_backup' => 'إنشاء ملفات النسخ الاحتياطي',
+ 'create_a_new_db_backup' => 'إنشاء قاعدة بيانات النسخ الاحتياطي',
+ 'existing_backups' => 'النسخ الاحتياطية الموجودة',
+ 'date' => 'التاريخ',
+ 'file_size' => 'حجم الملف',
+ 'actions' => 'اجراءات',
+ 'download' => 'تحميل',
+ 'delete' => 'حذف',
+ 'delete_confirm' => 'هل انت متأكد من حذف النسخة الاحتياطية؟',
+ 'delete_confirmation_title' => 'تم بالنجاح',
+ 'delete_confirmation_message' => 'تم حذف ملف النسخة الاحتياطية',
+ 'delete_error_title' => 'هناك خطأ',
+ 'delete_error_message' => 'ملف النسخة الاحتياطية لم يتم حذفه.',
+ 'delete_cancel_title' => 'كل شيئ على مايرام.',
+ 'delete_cancel_message' => 'ملف النسخة الاحتياطية لم يتم حذفه.',
+ 'create_confirmation_title' => 'تم عمل النسخ الاحتياطية بالنجاح',
+ 'create_confirmation_message' => 'سيتم اعادة اعادة تحميل الصفحة خلال 3 ثواني.',
+ 'create_error_title' => 'هناك خطأ في النسخة الاحتياطية',
+ 'create_error_message' => 'لا يمكن إنشاء ملف النسخة الاحتياطية.',
+ 'create_warning_title' => 'هناك خطأ غير معروف',
+ 'create_warning_message' => 'ربما لم يتم إنشاء النسخة الاحتياطية. يرجى التحقق من ملفات السجل للحصول على التفاصيل.',
+ 'location' => 'الموقع',
+ 'no_disks_configured' => 'لايوجد أقراص تم تحددها في ملف config/backup.php',
+ 'backup_doesnt_exist' => 'ملف النسخ الاحتياطي غير موجود.',
'only_local_downloads_supported' => 'لايمكن تحميل النسخة الاحتياطية الا من القرص المحلي.',
];
diff --git a/lang/ar/blocks.php b/lang/ar/blocks.php
index 70e179a04..7bb184979 100644
--- a/lang/ar/blocks.php
+++ b/lang/ar/blocks.php
@@ -12,19 +12,19 @@
*/
return [
- 'chatbox' => 'صندوق الدردشه',
- 'click' => 'انقر',
- 'to-enable-editor' => 'لتمكين المحرر',
- 'featured-by' => 'مقدم من',
- 'featured-torrents' => 'ظهرت السيول',
+ 'chatbox' => 'صندوق الدردشه',
+ 'click' => 'انقر',
+ 'to-enable-editor' => 'لتمكين المحرر',
+ 'featured-by' => 'مقدم من',
+ 'featured-torrents' => 'ظهرت السيول',
'featured-torrents-intro' => 'الحصول عليها في حين يمكنك!',
- 'featured-until' => 'هذا هو المميز سيل حتى',
- 'top-torrents' => 'السيول الأعلى',
- 'latest-posts' => 'آخر المشاركات',
- 'latest-topics' => 'أحدث المواضيع',
- 'active-in-last' => 'نشط في الماضي',
- 'users-online' => 'المستخدمين على الانترنت',
- 'check-news' => 'الأخبار (تحقق يوميًا)',
- 'new-news' => 'اخبار جديدة',
- 'new-torrents' => 'السيول الجديدة',
+ 'featured-until' => 'هذا هو المميز سيل حتى',
+ 'top-torrents' => 'السيول الأعلى',
+ 'latest-posts' => 'آخر المشاركات',
+ 'latest-topics' => 'أحدث المواضيع',
+ 'active-in-last' => 'نشط في الماضي',
+ 'users-online' => 'المستخدمين على الانترنت',
+ 'check-news' => 'الأخبار (تحقق يوميًا)',
+ 'new-news' => 'اخبار جديدة',
+ 'new-torrents' => 'السيول الجديدة',
];
diff --git a/lang/ar/bon.php b/lang/ar/bon.php
index 83cfe3f48..16fb909f2 100644
--- a/lang/ar/bon.php
+++ b/lang/ar/bon.php
@@ -12,44 +12,44 @@
*/
return [
- 'activated' => 'مفعل',
- 'active' => 'مفعل!',
- 'amount' => 'كمية',
- 'bon' => 'BON',
- 'bonus' => 'علاوة',
- 'date' => 'تاريخ',
- 'earning' => 'كسب',
- 'earning-rate' => 'على هذا المعدل من الكسب سوف تكسب ما يلي في الإطار الزمني ..',
- 'earnings' => 'أرباح',
- 'exchange' => 'تبادل',
- 'exchange-warning' => 'التبادلات نهائية ، يرجى التحقق من اختياراتك قبل إجراء عملية تبادل.',
- 'extended-stats' => 'إحصائيات الموسعة',
- 'gift' => 'هدية مجانية',
- 'gift-bonus' => 'الهدايا مكافأة نقاط',
- 'gift-to' => 'الهدايا مكافأة نقاط ل',
- 'gifts' => 'الهدايا',
- 'item' => 'بند',
- 'no-refund' => 'لا المستردة!',
- 'per-day' => 'نقاط في اليوم الواحد',
- 'per-hour' => 'نقاط لكل ساعة',
- 'per-minute' => 'نقاط في الدقيقة',
- 'per-month' => 'نقاط في الشهر',
- 'per-second' => 'نقاط في الثانية الواحدة',
- 'per-week' => 'نقاط في الأسبوع',
- 'per-year' => 'نقاط في السنة',
- 'points' => 'نقاط',
- 'receiver' => 'المتلقي',
- 'review-seeds' => 'مراجعة جميع السيول المصنفة',
- 'send-gift' => 'أرسل هدية',
- 'sender' => 'مرسل',
- 'store' => 'متجر',
- 'tips' => 'نصائح',
- 'total' => 'الأرباح الكلية',
- 'total-gifts' => 'في مجموع الهدايا بون',
- 'total-tips' => 'في مجموع نصائح بون',
+ 'activated' => 'مفعل',
+ 'active' => 'مفعل!',
+ 'amount' => 'كمية',
+ 'bon' => 'BON',
+ 'bonus' => 'علاوة',
+ 'date' => 'تاريخ',
+ 'earning' => 'كسب',
+ 'earning-rate' => 'على هذا المعدل من الكسب سوف تكسب ما يلي في الإطار الزمني ..',
+ 'earnings' => 'أرباح',
+ 'exchange' => 'تبادل',
+ 'exchange-warning' => 'التبادلات نهائية ، يرجى التحقق من اختياراتك قبل إجراء عملية تبادل.',
+ 'extended-stats' => 'إحصائيات الموسعة',
+ 'gift' => 'هدية مجانية',
+ 'gift-bonus' => 'الهدايا مكافأة نقاط',
+ 'gift-to' => 'الهدايا مكافأة نقاط ل',
+ 'gifts' => 'الهدايا',
+ 'item' => 'بند',
+ 'no-refund' => 'لا المستردة!',
+ 'per-day' => 'نقاط في اليوم الواحد',
+ 'per-hour' => 'نقاط لكل ساعة',
+ 'per-minute' => 'نقاط في الدقيقة',
+ 'per-month' => 'نقاط في الشهر',
+ 'per-second' => 'نقاط في الثانية الواحدة',
+ 'per-week' => 'نقاط في الأسبوع',
+ 'per-year' => 'نقاط في السنة',
+ 'points' => 'نقاط',
+ 'receiver' => 'المتلقي',
+ 'review-seeds' => 'مراجعة جميع السيول المصنفة',
+ 'send-gift' => 'أرسل هدية',
+ 'sender' => 'مرسل',
+ 'store' => 'متجر',
+ 'tips' => 'نصائح',
+ 'total' => 'الأرباح الكلية',
+ 'total-gifts' => 'في مجموع الهدايا بون',
+ 'total-tips' => 'في مجموع نصائح بون',
'you-have-received-gifts' => 'لقد تلقيت',
- 'you-have-sent-gifts' => 'لقد أرسلت',
- 'you-have-received-tips' => 'لقد تلقيت',
- 'you-have-sent-tips' => 'لقد أرسلت',
- 'your-points' => 'نقاطك',
+ 'you-have-sent-gifts' => 'لقد أرسلت',
+ 'you-have-received-tips' => 'لقد تلقيت',
+ 'you-have-sent-tips' => 'لقد أرسلت',
+ 'your-points' => 'نقاطك',
];
diff --git a/lang/ar/bot.php b/lang/ar/bot.php
index ec9ebe47d..60977e43d 100644
--- a/lang/ar/bot.php
+++ b/lang/ar/bot.php
@@ -12,15 +12,15 @@
*/
return [
- 'about' => 'حول',
- 'bot' => 'بوت',
- 'bots' => 'السير',
- 'color' => 'اللون',
- 'command' => 'أمر',
- 'edit-bot' => 'تحرير بوت',
+ 'about' => 'حول',
+ 'bot' => 'بوت',
+ 'bots' => 'السير',
+ 'color' => 'اللون',
+ 'command' => 'أمر',
+ 'edit-bot' => 'تحرير بوت',
'emoji-code' => 'رمز تعبيري',
- 'help' => 'مساعدة',
- 'icon' => 'أيقونة',
- 'info' => 'معلومات',
- 'name' => 'اسم',
+ 'help' => 'مساعدة',
+ 'icon' => 'أيقونة',
+ 'info' => 'معلومات',
+ 'name' => 'اسم',
];
diff --git a/lang/ar/bug.php b/lang/ar/bug.php
index 1cf4dfa9f..46c94ca1f 100644
--- a/lang/ar/bug.php
+++ b/lang/ar/bug.php
@@ -12,15 +12,15 @@
*/
return [
- 'bug-report' => 'تقرير الشوائب',
+ 'bug-report' => 'تقرير الشوائب',
'bug-report-description' => 'الإبلاغ عن خطأ في الموقع',
- 'enter-description' => 'صف المشكلة بأفضل شكل ممكن',
- 'enter-email' => 'رجاءا أدخل بريدك الإلكتروني',
- 'enter-title' => 'يرجى اختيار العنوان المناسب',
- 'enter-username' => 'الرجاء إدخال اسم المستخدم',
- 'high' => 'متوسط',
- 'low' => 'منخفض',
- 'priority' => 'أفضلية',
- 'priority-description' => 'اختر فقط مرتفعًا جدًا إذا كان الخطأ يمثل مشكلة بالفعل لاستخدام الموقع.',
- 'very-high' => 'عالي جدا',
+ 'enter-description' => 'صف المشكلة بأفضل شكل ممكن',
+ 'enter-email' => 'رجاءا أدخل بريدك الإلكتروني',
+ 'enter-title' => 'يرجى اختيار العنوان المناسب',
+ 'enter-username' => 'الرجاء إدخال اسم المستخدم',
+ 'high' => 'متوسط',
+ 'low' => 'منخفض',
+ 'priority' => 'أفضلية',
+ 'priority-description' => 'اختر فقط مرتفعًا جدًا إذا كان الخطأ يمثل مشكلة بالفعل لاستخدام الموقع.',
+ 'very-high' => 'عالي جدا',
];
diff --git a/lang/ar/common.php b/lang/ar/common.php
index 0a3624567..3b734dc13 100644
--- a/lang/ar/common.php
+++ b/lang/ar/common.php
@@ -12,179 +12,179 @@
*/
return [
- 'a-an-art' => '',
- 'about' => 'معلومات عنا',
- 'account' => 'الحساب',
- 'achievement-title' => 'رائع',
+ 'a-an-art' => '',
+ 'about' => 'معلومات عنا',
+ 'account' => 'الحساب',
+ 'achievement-title' => 'رائع',
'achievement-unlocked' => 'لقد فتحت ":name" الإنجاز',
- 'active' => 'نشيط',
- 'active-warning' => 'تحذير نشط',
- 'add' => 'إضافة',
- 'added' => 'وأضاف',
- 'amount' => 'كمية',
- 'anonymous' => 'مجهول',
- 'author' => 'مؤلف',
- 'balance' => 'توازن',
- 'blacklist' => 'القائمة السوداء للعميل',
- 'buffer' => 'متعادل',
- 'bug' => 'الإبلاغ عن خطأ',
- 'but' => 'لكن',
- 'cancel' => 'إلغاء',
- 'category' => 'الفئة',
- 'categories' => 'الاقسام',
- 'close' => 'قريب',
- 'comment' => 'تعليق',
- 'comments' => 'تعليقات',
- 'community' => 'تواصل اجتماعي',
- 'contact' => 'اتصل',
- 'contact-desc' => 'سيتم إرسال طلب الاتصال هذا إلى المالك وسيتم الرد عليك في أسرع وقت ممكن',
- 'contact-header' => 'مرحبا',
- 'create' => 'خلق',
- 'created_at' => 'أنشئت في',
- 'day' => 'يوم',
- 'delete' => 'حذف',
- 'delete-your-comment' => 'حذف تعليقك',
- 'description' => 'وصف',
- 'direction' => 'اتجاه',
- 'disable' => 'تعطيل',
- 'doubleup_activated' => 'وضع التحميل الشامل المزدوج مفعل',
- 'download' => 'تحميل',
- 'edit' => 'تصحيح',
- 'edit-your-comment' => 'تعديل تعليقك',
- 'email' => 'البريد الإلكتروني',
- 'email-blacklist' => 'البريد الإلكتروني القائمة السوداء',
- 'email-whitelist' => 'القائمة البيضاء للبريد الإلكتروني',
+ 'active' => 'نشيط',
+ 'active-warning' => 'تحذير نشط',
+ 'add' => 'إضافة',
+ 'added' => 'وأضاف',
+ 'amount' => 'كمية',
+ 'anonymous' => 'مجهول',
+ 'author' => 'مؤلف',
+ 'balance' => 'توازن',
+ 'blacklist' => 'القائمة السوداء للعميل',
+ 'buffer' => 'متعادل',
+ 'bug' => 'الإبلاغ عن خطأ',
+ 'but' => 'لكن',
+ 'cancel' => 'إلغاء',
+ 'category' => 'الفئة',
+ 'categories' => 'الاقسام',
+ 'close' => 'قريب',
+ 'comment' => 'تعليق',
+ 'comments' => 'تعليقات',
+ 'community' => 'تواصل اجتماعي',
+ 'contact' => 'اتصل',
+ 'contact-desc' => 'سيتم إرسال طلب الاتصال هذا إلى المالك وسيتم الرد عليك في أسرع وقت ممكن',
+ 'contact-header' => 'مرحبا',
+ 'create' => 'خلق',
+ 'created_at' => 'أنشئت في',
+ 'day' => 'يوم',
+ 'delete' => 'حذف',
+ 'delete-your-comment' => 'حذف تعليقك',
+ 'description' => 'وصف',
+ 'direction' => 'اتجاه',
+ 'disable' => 'تعطيل',
+ 'doubleup_activated' => 'وضع التحميل الشامل المزدوج مفعل',
+ 'download' => 'تحميل',
+ 'edit' => 'تصحيح',
+ 'edit-your-comment' => 'تعديل تعليقك',
+ 'email' => 'البريد الإلكتروني',
+ 'email-blacklist' => 'البريد الإلكتروني القائمة السوداء',
+ 'email-whitelist' => 'القائمة البيضاء للبريد الإلكتروني',
'email-list-notactive' => 'لم يتم تنشيط نظام القائمة البيضاء / القائمة السوداء للبريد الإلكتروني',
- 'enable' => 'مكن',
- 'enter' => 'أدخل',
- 'error' => 'خطأ',
- 'everyday' => 'كل يوم',
- 'expired' => 'منتهية الصلاحية',
- 'extra' => 'إضافي',
- 'extra-stats' => 'خارج إحصائيات',
- 'faq' => 'التعليمات',
- 'files' => 'ملفات',
- 'fl_token' => 'رمزية حرة',
- 'fl_tokens' => 'الرموز الحرة',
- 'for' => 'إلى عن على',
- 'forum' => 'المنتدى',
- 'free' => 'حر',
- 'freeleech_activated' => 'وضع Freeleech العالمي مفعل',
- 'global' => 'عالمي',
- 'group' => 'مجموعة',
- 'groups' => 'المجموعات',
- 'hidden' => 'مخفي',
- 'high-speeds' => 'سرعات عالية',
- 'home' => 'الصفحة الرئيسية',
- 'hot' => 'الحار!',
- 'hour' => 'ساعة',
- 'huge' => 'ضخم',
- 'info' => 'معلومات',
- 'internal' => 'داخلي',
- 'ip' => 'IP',
- 'is-allowed' => 'مسموح',
- 'large' => 'كبير',
- 'latest' => 'آخر',
- 'latest-posts' => 'آخر المشاركات',
- 'latest-topics' => 'أحدث المواضيع',
- 'legal' => 'قانوني',
- 'legend' => 'عنوان تفسيري',
- 'lists' => 'قوائم',
- 'lock-account' => 'حساب قفل',
- 'logout' => 'الخروج',
- 'members' => 'أفراد',
- 'message' => 'رسالة',
- 'minute' => 'اللحظة',
- 'moderated-by' => 'خاضعة للإشراف من',
- 'moderation' => 'الاعتدال',
- 'moderation-approve' => 'يوافق',
- 'moderation-postpone' => 'تأجيل',
- 'moderation-reject' => 'رفض',
- 'month' => 'شهر',
- 'months' => 'الشهور',
- 'my' => 'لي',
- 'name' => 'اسم',
- 'navigation' => 'التنقل',
- 'new' => 'الجديد!',
- 'new-adj' => 'الجديد',
- 'news' => 'أخبار',
- 'next' => 'التالى',
- 'no' => 'لا',
- 'no-comments' => 'لا توجد تعليقات حتى الآن',
- 'no-result' => 'لا توجد نتيجة في قاعدة البيانات للاستعلام',
- 'notifications' => 'إخطارات',
- 'older-than' => 'أقدم من',
- 'oldest' => 'أقدم',
- 'openreg_activated' => 'فتح التسجيل تفعيلها',
- 'order-by' => 'ترتيب حسب',
- 'other' => 'آخر',
- 'pages' => 'صفحات',
- 'password' => 'كلمه السر',
- 'patron' => 'كن راعيا',
- 'pending-torrents' => 'في انتظار السيول',
- 'personal' => 'الشخصية',
- 'plural-suffix' => 'الصورة',
- 'port' => 'ميناء',
- 'position' => 'موضع',
- 'posts' => 'المشاركات',
- 'powered-by' => 'مدعوم من UNIT3D',
- 'preview' => 'معاينة',
- 'previous' => 'سابق',
- 'progress' => 'تقدم',
- 'publish' => 'نشر',
- 'quantity' => 'كمية',
- 'quick-search' => 'بحث سريع',
- 'ratio' => 'نسبة',
- 'reason' => 'السبب',
- 'remove' => 'إزالة',
- 'report' => 'أبلغ عن',
- 'resend' => 'إعادة إرسال',
- 'reporter' => 'مراسل',
- 'required' => 'مطلوب',
- 'results' => 'النتائج',
- 'rss-system' => 'نظام RSS',
- 'rules' => 'قواعد',
- 'save' => 'حفظ',
- 'search' => 'بحث',
- 'search-results' => 'نتائج البحث',
- 'search-results-desc' => 'يرجى الاطلاع على النتائج الخاصة بك أدناه',
- 'second' => 'ثانيا',
- 'select' => 'تحديد',
- 'sort' => 'فرز',
- 'special' => 'خاص',
- 'staff' => 'العاملين',
- 'staff-tools' => 'أدوات الموظفين',
- 'stats' => 'احصائيات',
- 'status' => 'الحالة',
- 'sticked' => 'طبش',
- 'submit' => 'خضع',
- 'subscriptions' => 'الاشتراكات',
- 'teams' => 'فرق',
- 'terms' => 'تعليمات الاستخدام',
- 'times' => 'مرات',
- 'title' => 'عنوان',
- 'top-bountied' => 'أعلى مكافأة',
- 'topics' => 'المواضيع',
- 'tracker-codes' => 'رموز تعقب',
- 'type' => 'نوع',
- 'type-verb' => 'نوع',
- 'types' => 'أنواع',
- 'genre' => 'نوع أدبي',
- 'genres' => 'الجنس الأدبي',
- 'action' => 'عمل',
- 'actions' => 'أفعال',
- 'unknown' => 'غير معروف',
+ 'enable' => 'مكن',
+ 'enter' => 'أدخل',
+ 'error' => 'خطأ',
+ 'everyday' => 'كل يوم',
+ 'expired' => 'منتهية الصلاحية',
+ 'extra' => 'إضافي',
+ 'extra-stats' => 'خارج إحصائيات',
+ 'faq' => 'التعليمات',
+ 'files' => 'ملفات',
+ 'fl_token' => 'رمزية حرة',
+ 'fl_tokens' => 'الرموز الحرة',
+ 'for' => 'إلى عن على',
+ 'forum' => 'المنتدى',
+ 'free' => 'حر',
+ 'freeleech_activated' => 'وضع Freeleech العالمي مفعل',
+ 'global' => 'عالمي',
+ 'group' => 'مجموعة',
+ 'groups' => 'المجموعات',
+ 'hidden' => 'مخفي',
+ 'high-speeds' => 'سرعات عالية',
+ 'home' => 'الصفحة الرئيسية',
+ 'hot' => 'الحار!',
+ 'hour' => 'ساعة',
+ 'huge' => 'ضخم',
+ 'info' => 'معلومات',
+ 'internal' => 'داخلي',
+ 'ip' => 'IP',
+ 'is-allowed' => 'مسموح',
+ 'large' => 'كبير',
+ 'latest' => 'آخر',
+ 'latest-posts' => 'آخر المشاركات',
+ 'latest-topics' => 'أحدث المواضيع',
+ 'legal' => 'قانوني',
+ 'legend' => 'عنوان تفسيري',
+ 'lists' => 'قوائم',
+ 'lock-account' => 'حساب قفل',
+ 'logout' => 'الخروج',
+ 'members' => 'أفراد',
+ 'message' => 'رسالة',
+ 'minute' => 'اللحظة',
+ 'moderated-by' => 'خاضعة للإشراف من',
+ 'moderation' => 'الاعتدال',
+ 'moderation-approve' => 'يوافق',
+ 'moderation-postpone' => 'تأجيل',
+ 'moderation-reject' => 'رفض',
+ 'month' => 'شهر',
+ 'months' => 'الشهور',
+ 'my' => 'لي',
+ 'name' => 'اسم',
+ 'navigation' => 'التنقل',
+ 'new' => 'الجديد!',
+ 'new-adj' => 'الجديد',
+ 'news' => 'أخبار',
+ 'next' => 'التالى',
+ 'no' => 'لا',
+ 'no-comments' => 'لا توجد تعليقات حتى الآن',
+ 'no-result' => 'لا توجد نتيجة في قاعدة البيانات للاستعلام',
+ 'notifications' => 'إخطارات',
+ 'older-than' => 'أقدم من',
+ 'oldest' => 'أقدم',
+ 'openreg_activated' => 'فتح التسجيل تفعيلها',
+ 'order-by' => 'ترتيب حسب',
+ 'other' => 'آخر',
+ 'pages' => 'صفحات',
+ 'password' => 'كلمه السر',
+ 'patron' => 'كن راعيا',
+ 'pending-torrents' => 'في انتظار السيول',
+ 'personal' => 'الشخصية',
+ 'plural-suffix' => 'الصورة',
+ 'port' => 'ميناء',
+ 'position' => 'موضع',
+ 'posts' => 'المشاركات',
+ 'powered-by' => 'مدعوم من UNIT3D',
+ 'preview' => 'معاينة',
+ 'previous' => 'سابق',
+ 'progress' => 'تقدم',
+ 'publish' => 'نشر',
+ 'quantity' => 'كمية',
+ 'quick-search' => 'بحث سريع',
+ 'ratio' => 'نسبة',
+ 'reason' => 'السبب',
+ 'remove' => 'إزالة',
+ 'report' => 'أبلغ عن',
+ 'resend' => 'إعادة إرسال',
+ 'reporter' => 'مراسل',
+ 'required' => 'مطلوب',
+ 'results' => 'النتائج',
+ 'rss-system' => 'نظام RSS',
+ 'rules' => 'قواعد',
+ 'save' => 'حفظ',
+ 'search' => 'بحث',
+ 'search-results' => 'نتائج البحث',
+ 'search-results-desc' => 'يرجى الاطلاع على النتائج الخاصة بك أدناه',
+ 'second' => 'ثانيا',
+ 'select' => 'تحديد',
+ 'sort' => 'فرز',
+ 'special' => 'خاص',
+ 'staff' => 'العاملين',
+ 'staff-tools' => 'أدوات الموظفين',
+ 'stats' => 'احصائيات',
+ 'status' => 'الحالة',
+ 'sticked' => 'طبش',
+ 'submit' => 'خضع',
+ 'subscriptions' => 'الاشتراكات',
+ 'teams' => 'فرق',
+ 'terms' => 'تعليمات الاستخدام',
+ 'times' => 'مرات',
+ 'title' => 'عنوان',
+ 'top-bountied' => 'أعلى مكافأة',
+ 'topics' => 'المواضيع',
+ 'tracker-codes' => 'رموز تعقب',
+ 'type' => 'نوع',
+ 'type-verb' => 'نوع',
+ 'types' => 'أنواع',
+ 'genre' => 'نوع أدبي',
+ 'genres' => 'الجنس الأدبي',
+ 'action' => 'عمل',
+ 'actions' => 'أفعال',
+ 'unknown' => 'غير معروف',
'unlocked-achievement' => 'لقد achievement: إنجاز الإنجاز',
- 'upload' => 'رفع',
- 'upload-guide' => 'تحميل دليل',
- 'user' => 'المستعمل',
- 'username' => 'اسم المستخدم',
- 'users' => 'المستخدمين',
- 'view' => 'رأي',
- 'view-all' => 'عرض الكل',
- 'warnings' => 'تحذيرات',
- 'year' => 'عام',
- 'yes' => 'نعم فعلا',
- 'your' => 'ك',
- 'your-comment' => 'تعليقك',
+ 'upload' => 'رفع',
+ 'upload-guide' => 'تحميل دليل',
+ 'user' => 'المستعمل',
+ 'username' => 'اسم المستخدم',
+ 'users' => 'المستخدمين',
+ 'view' => 'رأي',
+ 'view-all' => 'عرض الكل',
+ 'warnings' => 'تحذيرات',
+ 'year' => 'عام',
+ 'yes' => 'نعم فعلا',
+ 'your' => 'ك',
+ 'your-comment' => 'تعليقك',
];
diff --git a/lang/ar/email.php b/lang/ar/email.php
index a04ad9884..b219bf0c2 100644
--- a/lang/ar/email.php
+++ b/lang/ar/email.php
@@ -12,46 +12,46 @@
*/
return [
- 'activate-account' => 'تفعيل حساب',
- 'ban-reason' => 'السبب',
- 'banned-footer' => 'هذا ما تحصل عليه لعدم اتباع القواعد',
- 'banned-header' => 'لقد تم حظرك',
- 'bug-description' => 'مشكلة',
- 'bug-footer' => 'إصلاح هذا القرف',
- 'bug-header' => 'تقرير علة جديد من',
- 'bug-priority' => 'أفضلية',
- 'bug-title' => 'عنوان الشوائب',
- 'contact-header' => 'بريد اتصال جديد من',
- 'contact-message' => 'رسالة',
- 'contact-name' => 'اسم',
+ 'activate-account' => 'تفعيل حساب',
+ 'ban-reason' => 'السبب',
+ 'banned-footer' => 'هذا ما تحصل عليه لعدم اتباع القواعد',
+ 'banned-header' => 'لقد تم حظرك',
+ 'bug-description' => 'مشكلة',
+ 'bug-footer' => 'إصلاح هذا القرف',
+ 'bug-header' => 'تقرير علة جديد من',
+ 'bug-priority' => 'أفضلية',
+ 'bug-title' => 'عنوان الشوائب',
+ 'contact-header' => 'بريد اتصال جديد من',
+ 'contact-message' => 'رسالة',
+ 'contact-name' => 'اسم',
'fail-login-greeting' => 'فشل تسجيل الدخول إلى الحساب!',
- 'fail-login-line1' => 'تم اكتشاف فشل تسجيل الدخول لحسابك.',
- 'fail-login-line2' => 'نشأ هذا الطلب من: ip : (host) في: time',
- 'fail-login-subject' => 'إخفاق تسجيل الدخول',
- 'footer-link' => 'إذا كنت تواجه مشكلة في النقر على زر: actionText ، فانسخ والصق عنوان URL أدناه في متصفح الويب الخاص بك:',
- 'invite-header' => 'دعوة إلى',
- 'invite-invited' => 'لقد تمت دعوتك إلى',
- 'invite-message' => 'رسالة',
- 'invite-signup' => 'أفتح حساب الأن',
- 'newreply-header' => 'يوجد رد جديد في موضوعك',
- 'newreply-message' => 'رسالة',
- 'newreply-replied' => 'لقد رد على الموضوع الخاص بك',
- 'newreply-view' => 'عرضه الآن',
- 'no-email-found' => 'لم نتمكن من العثور على هذا البريد الإلكتروني في نظامنا!',
- 'register-code' => 'لإكمال تنشيط حسابك ، انقر فوق الزر أدناه',
- 'register-footer' => 'إذا لم يعمل الزر أعلاه ، فانسخ عنوان URL والصقه في شريط عناوين المستعرضات',
- 'register-header' => 'مرحبا! شكرا لك على التسجيل',
- 'report-comment' => 'تعليق',
- 'report-email' => 'البريد الإلكتروني',
- 'report-header' => 'مرحبًا Admin ، تم الإبلاغ عن رابط بتاريخ',
- 'report-link' => 'حلقة الوصل',
- 'report-link-hash' => 'الرابط الفعلي',
- 'thanks' => 'شكرا لأستخدامك',
- 'unban-footer' => 'مرحبا بعودتك!',
- 'unban-header' => 'لقد تم حظره',
- 'unban-reason' => 'السبب',
- 'username-reminder' => 'لقد أرسلت إلينا مؤخرًا طلبًا لاسم المستخدم الخاص بك على تطبيقنا اسم المستخدم الخاص بك هو',
- 'username-sent' => 'تم إرسال اسم المستخدم الخاص بك إلى عنوان بريدك الإلكتروني!',
- 'disabled-header' => 'تم تعطيل حسابك',
- 'pruned-header' => 'تم تشذيب حسابك',
+ 'fail-login-line1' => 'تم اكتشاف فشل تسجيل الدخول لحسابك.',
+ 'fail-login-line2' => 'نشأ هذا الطلب من: ip : (host) في: time',
+ 'fail-login-subject' => 'إخفاق تسجيل الدخول',
+ 'footer-link' => 'إذا كنت تواجه مشكلة في النقر على زر: actionText ، فانسخ والصق عنوان URL أدناه في متصفح الويب الخاص بك:',
+ 'invite-header' => 'دعوة إلى',
+ 'invite-invited' => 'لقد تمت دعوتك إلى',
+ 'invite-message' => 'رسالة',
+ 'invite-signup' => 'أفتح حساب الأن',
+ 'newreply-header' => 'يوجد رد جديد في موضوعك',
+ 'newreply-message' => 'رسالة',
+ 'newreply-replied' => 'لقد رد على الموضوع الخاص بك',
+ 'newreply-view' => 'عرضه الآن',
+ 'no-email-found' => 'لم نتمكن من العثور على هذا البريد الإلكتروني في نظامنا!',
+ 'register-code' => 'لإكمال تنشيط حسابك ، انقر فوق الزر أدناه',
+ 'register-footer' => 'إذا لم يعمل الزر أعلاه ، فانسخ عنوان URL والصقه في شريط عناوين المستعرضات',
+ 'register-header' => 'مرحبا! شكرا لك على التسجيل',
+ 'report-comment' => 'تعليق',
+ 'report-email' => 'البريد الإلكتروني',
+ 'report-header' => 'مرحبًا Admin ، تم الإبلاغ عن رابط بتاريخ',
+ 'report-link' => 'حلقة الوصل',
+ 'report-link-hash' => 'الرابط الفعلي',
+ 'thanks' => 'شكرا لأستخدامك',
+ 'unban-footer' => 'مرحبا بعودتك!',
+ 'unban-header' => 'لقد تم حظره',
+ 'unban-reason' => 'السبب',
+ 'username-reminder' => 'لقد أرسلت إلينا مؤخرًا طلبًا لاسم المستخدم الخاص بك على تطبيقنا اسم المستخدم الخاص بك هو',
+ 'username-sent' => 'تم إرسال اسم المستخدم الخاص بك إلى عنوان بريدك الإلكتروني!',
+ 'disabled-header' => 'تم تعطيل حسابك',
+ 'pruned-header' => 'تم تشذيب حسابك',
];
diff --git a/lang/ar/forum.php b/lang/ar/forum.php
index a918a08dc..2caeb12e0 100644
--- a/lang/ar/forum.php
+++ b/lang/ar/forum.php
@@ -12,63 +12,63 @@
*/
return [
- 'action' => 'عمل',
- 'activity' => 'نشاط',
- 'approved' => 'وافق',
- 'author' => 'مؤلف',
- 'bug' => 'بق',
- 'category-quick-search' => 'موضوع البحث بحث سريع (ضمن الفئة)',
- 'close-topic' => 'قفل الموضوع',
- 'closed' => 'مغلق',
- 'create-new-topic' => 'إنشاء موضوع جديد',
- 'created' => 'خلقت',
- 'current' => 'تيار',
- 'delete-topic' => 'حذف هذا الموضوع',
- 'denied' => 'رفض',
- 'dislike-post' => 'كره هذا المنصب',
- 'display-forum' => 'عرض المواضيع في',
- 'edit-post' => 'تعديل المنشور',
- 'edit-topic' => 'تحرير الموضوع',
- 'forum' => 'المنتدى',
- 'forums' => 'المنتديات',
- 'implemented' => 'نفذت',
- 'in' => 'في',
- 'invalid' => 'غير صالحة',
- 'label' => 'ضع الكلمة المناسبة',
- 'label-system' => 'نظام التسمية',
- 'last-message' => 'اخر رسالة',
- 'last-post-info' => 'آخر مشاركة معلومات',
- 'latest' => 'آخر',
- 'like-post' => 'هل أعجبتك هذه التدوينة',
- 'meta-category' => 'قائمة المنتديات في الفئة',
- 'moderation' => 'الاعتدال',
- 'name' => 'اسم',
- 'not-connected' => 'يجب أن تكون متصلا',
- 'not-subscribed' => 'غير مشترك',
- 'open' => 'افتح',
- 'open-topic' => 'افتح هذا الموضوع',
- 'permalink' => 'الرابط الثابت',
- 'pin' => 'دبوس',
- 'post' => 'بريد',
- 'post-quick-search' => 'وظيفة الجسم للبحث السريع',
- 'posts' => 'المشاركات',
- 'quote' => 'اقتبس',
- 'read-topic' => 'قراءة الموضوع',
- 'replies' => 'الردود',
- 'send-new-topic' => 'احفظ هذا الموضوع',
- 'solved' => 'تم حلها',
- 'state' => 'حالة',
- 'stats' => 'احصائيات',
- 'subscribed' => 'المشترك',
+ 'action' => 'عمل',
+ 'activity' => 'نشاط',
+ 'approved' => 'وافق',
+ 'author' => 'مؤلف',
+ 'bug' => 'بق',
+ 'category-quick-search' => 'موضوع البحث بحث سريع (ضمن الفئة)',
+ 'close-topic' => 'قفل الموضوع',
+ 'closed' => 'مغلق',
+ 'create-new-topic' => 'إنشاء موضوع جديد',
+ 'created' => 'خلقت',
+ 'current' => 'تيار',
+ 'delete-topic' => 'حذف هذا الموضوع',
+ 'denied' => 'رفض',
+ 'dislike-post' => 'كره هذا المنصب',
+ 'display-forum' => 'عرض المواضيع في',
+ 'edit-post' => 'تعديل المنشور',
+ 'edit-topic' => 'تحرير الموضوع',
+ 'forum' => 'المنتدى',
+ 'forums' => 'المنتديات',
+ 'implemented' => 'نفذت',
+ 'in' => 'في',
+ 'invalid' => 'غير صالحة',
+ 'label' => 'ضع الكلمة المناسبة',
+ 'label-system' => 'نظام التسمية',
+ 'last-message' => 'اخر رسالة',
+ 'last-post-info' => 'آخر مشاركة معلومات',
+ 'latest' => 'آخر',
+ 'like-post' => 'هل أعجبتك هذه التدوينة',
+ 'meta-category' => 'قائمة المنتديات في الفئة',
+ 'moderation' => 'الاعتدال',
+ 'name' => 'اسم',
+ 'not-connected' => 'يجب أن تكون متصلا',
+ 'not-subscribed' => 'غير مشترك',
+ 'open' => 'افتح',
+ 'open-topic' => 'افتح هذا الموضوع',
+ 'permalink' => 'الرابط الثابت',
+ 'pin' => 'دبوس',
+ 'post' => 'بريد',
+ 'post-quick-search' => 'وظيفة الجسم للبحث السريع',
+ 'posts' => 'المشاركات',
+ 'quote' => 'اقتبس',
+ 'read-topic' => 'قراءة الموضوع',
+ 'replies' => 'الردود',
+ 'send-new-topic' => 'احفظ هذا الموضوع',
+ 'solved' => 'تم حلها',
+ 'state' => 'حالة',
+ 'stats' => 'احصائيات',
+ 'subscribed' => 'المشترك',
'subscription-quick-search' => 'موضوع البحث بحث سريع (ضمن الاشتراكات)',
- 'suggestion' => 'اقتراح',
- 'topic' => 'موضوع',
- 'topic-closed' => 'هذا الموضوع مغلق',
- 'topic-name' => 'اسم الموضوع',
- 'topic-quick-search' => 'اسم الموضوع بحث سريع',
- 'topic-title' => 'عنوان هذا الموضوع',
- 'topics' => 'المواضيع',
- 'unpin' => 'إزالة التثبيت',
- 'view-all' => 'عرض جميع المواضيع',
- 'views' => 'الآراء',
+ 'suggestion' => 'اقتراح',
+ 'topic' => 'موضوع',
+ 'topic-closed' => 'هذا الموضوع مغلق',
+ 'topic-name' => 'اسم الموضوع',
+ 'topic-quick-search' => 'اسم الموضوع بحث سريع',
+ 'topic-title' => 'عنوان هذا الموضوع',
+ 'topics' => 'المواضيع',
+ 'unpin' => 'إزالة التثبيت',
+ 'view-all' => 'عرض جميع المواضيع',
+ 'views' => 'الآراء',
];
diff --git a/lang/ar/graveyard.php b/lang/ar/graveyard.php
index da91fc6d2..4a715ec6d 100644
--- a/lang/ar/graveyard.php
+++ b/lang/ar/graveyard.php
@@ -12,15 +12,15 @@
*/
return [
- 'dead' => 'ميت',
- 'graveyard' => 'مقبرة',
- 'guidelines' => 'القواعد الارشادية',
+ 'dead' => 'ميت',
+ 'graveyard' => 'مقبرة',
+ 'guidelines' => 'القواعد الارشادية',
'guidelines-content' => '1) لا يمكنك إحياء عمليات التحميل الخاصة بك.
2) لا تقم بإحياء شيء لا يمكنك ارتكابه أيضًا.',
- 'howto' => 'هيريس القاعدة',
- 'howto-desc1' => 'يجب عليك البذور : اسم لمدة <30 يوما لإقامة ناجحة. في هذه الحالة عندما يكون لديك الوقت الحالي من',
- 'howto-desc2' => 'سوف يكافأ',
- 'howto-hits' => 'الفعالية',
- 'pending' => 'قيد الانتظار',
- 'resurrect' => 'بعث',
- 'reward' => 'الرموز الحرة',
+ 'howto' => 'هيريس القاعدة',
+ 'howto-desc1' => 'يجب عليك البذور : اسم لمدة <30 يوما لإقامة ناجحة. في هذه الحالة عندما يكون لديك الوقت الحالي من',
+ 'howto-desc2' => 'سوف يكافأ',
+ 'howto-hits' => 'الفعالية',
+ 'pending' => 'قيد الانتظار',
+ 'resurrect' => 'بعث',
+ 'reward' => 'الرموز الحرة',
];
diff --git a/lang/ar/notification.php b/lang/ar/notification.php
index e441d71db..7f6eba66d 100644
--- a/lang/ar/notification.php
+++ b/lang/ar/notification.php
@@ -12,14 +12,14 @@
*/
return [
- 'date' => 'تاريخ',
- 'delete' => 'حذف',
- 'delete-all' => 'حذف جميع الإخطارات',
- 'mark-all-read' => 'اشر عليها بانها قرات',
- 'mark-read' => 'ضع إشارة مقروء',
- 'message' => 'رسالة',
+ 'date' => 'تاريخ',
+ 'delete' => 'حذف',
+ 'delete-all' => 'حذف جميع الإخطارات',
+ 'mark-all-read' => 'اشر عليها بانها قرات',
+ 'mark-read' => 'ضع إشارة مقروء',
+ 'message' => 'رسالة',
'no-notifications' => 'لا توجد إخطارات',
- 'notifications' => 'إخطارات',
- 'read' => 'اقرأ',
- 'title' => 'عنوان',
+ 'notifications' => 'إخطارات',
+ 'read' => 'اقرأ',
+ 'title' => 'عنوان',
];
diff --git a/lang/ar/page.php b/lang/ar/page.php
index 62cbcbfe7..14611f548 100644
--- a/lang/ar/page.php
+++ b/lang/ar/page.php
@@ -12,28 +12,28 @@
*/
return [
- 'aboutus-advantage' => 'ميزة',
- 'aboutus-advantage1' => 'لدينا أعضاء وموظفون ذوو خبرة واسعة في عالم الفيديو عالي الدقة / الصوت والدعم الفني.',
- 'aboutus-advantage2' => 'إلى جانب شغفنا الكبير بالأفلام والبرامج التلفزيونية ، فإننا نقدم أيضًا واحدة من أفضل الاختيارات لشيء لا يحبذه كثيرًا - FANRES! شكرا جزيلا لجلب المحتوى لدينا.',
- 'aboutus-advantage3' => 'على الرغم من أننا نقبل التبرعات للحفاظ على تشغيل الموقع ، فلن يكون هناك رؤساء وزراء أو لافتات مقلقة في الموقع. لا التسول منا.',
- 'aboutus-advantage4' => 'مجتمعنا لا يعلى عليه في سن مبكرة. بين موظفينا وقاعدة المستخدم ، كانوا دائمًا هنا للمساعدة. كنا شغوفين بالتأكد من تجربتك في: العنوان ليس مذهلاً',
- 'aboutus-advantage5' => 'يستخدم خدمتنا يوميا من قبل العديد من الناس في جميع أنحاء العالم. لقد أثبتنا أننا نهتم بالوظائف والأمان لقواعد البيانات الخاصة بنا ويمكن الوثوق بها والاعتماد عليها. يعمل مطورونا يوميًا لتوفير قاعدة بيانات nex-gen حقًا.',
- 'aboutus-header' => 'مرحبا',
- 'aboutus-rules' => 'ماذا نحتاج منك',
- 'aboutus-rules1' => 'أن تكون عضوًا نشطًا في المجتمع! هذا يعني الانضمام إلى المحادثات بشكل منتج ، وإضافة محتوى معتمد ومساعدة المستخدمين الآخرين إذا كنت قادرًا على ذلك.',
- 'aboutus-rules2' => 'لقراءة القواعد بالكامل والرجاء احترامها!',
- 'aboutus-rules3' => 'تقديم الاقتراحات! نحن نسعى جاهدين لجعل: عنوان أفضل كل يوم. نحن قلقون من قول أنه سيتم استخدام كل اقتراح ، لكنه لن يضر أبداً برؤية أفكار جديدة.',
- 'aboutus-welcome' => 'دعونا نتحدث عن',
- 'aboutus-welcome-desc' => ': title هو قاعدة بيانات الأفلام / التليفزيون / FANRES المبنية على المجتمع . تمت إضافة كل جزء من البيانات من قبل مجتمعنا المذهل منذ عام 2017.: تركز الألقاب القوية على محتوى HD ، وقاعدة مستخدم استباقية ، وقاعدة بيانات رهيبة / آمنة وفريق عمل متعاون وودود.',
- 'blacklist-browsers' => 'المتصفحات',
- 'blacklist-btclient' => 'تورنت العميل',
- 'blacklist-clients' => 'عملاء',
- 'blacklist-desc' => 'المتصفحات التالية وعملاء Bittorrent مدرجون في القائمة السوداء / ممنوعون من الإعلان عن:',
- 'blacklist-webbrowser' => 'متصفح الإنترنت',
+ 'aboutus-advantage' => 'ميزة',
+ 'aboutus-advantage1' => 'لدينا أعضاء وموظفون ذوو خبرة واسعة في عالم الفيديو عالي الدقة / الصوت والدعم الفني.',
+ 'aboutus-advantage2' => 'إلى جانب شغفنا الكبير بالأفلام والبرامج التلفزيونية ، فإننا نقدم أيضًا واحدة من أفضل الاختيارات لشيء لا يحبذه كثيرًا - FANRES! شكرا جزيلا لجلب المحتوى لدينا.',
+ 'aboutus-advantage3' => 'على الرغم من أننا نقبل التبرعات للحفاظ على تشغيل الموقع ، فلن يكون هناك رؤساء وزراء أو لافتات مقلقة في الموقع. لا التسول منا.',
+ 'aboutus-advantage4' => 'مجتمعنا لا يعلى عليه في سن مبكرة. بين موظفينا وقاعدة المستخدم ، كانوا دائمًا هنا للمساعدة. كنا شغوفين بالتأكد من تجربتك في: العنوان ليس مذهلاً',
+ 'aboutus-advantage5' => 'يستخدم خدمتنا يوميا من قبل العديد من الناس في جميع أنحاء العالم. لقد أثبتنا أننا نهتم بالوظائف والأمان لقواعد البيانات الخاصة بنا ويمكن الوثوق بها والاعتماد عليها. يعمل مطورونا يوميًا لتوفير قاعدة بيانات nex-gen حقًا.',
+ 'aboutus-header' => 'مرحبا',
+ 'aboutus-rules' => 'ماذا نحتاج منك',
+ 'aboutus-rules1' => 'أن تكون عضوًا نشطًا في المجتمع! هذا يعني الانضمام إلى المحادثات بشكل منتج ، وإضافة محتوى معتمد ومساعدة المستخدمين الآخرين إذا كنت قادرًا على ذلك.',
+ 'aboutus-rules2' => 'لقراءة القواعد بالكامل والرجاء احترامها!',
+ 'aboutus-rules3' => 'تقديم الاقتراحات! نحن نسعى جاهدين لجعل: عنوان أفضل كل يوم. نحن قلقون من قول أنه سيتم استخدام كل اقتراح ، لكنه لن يضر أبداً برؤية أفكار جديدة.',
+ 'aboutus-welcome' => 'دعونا نتحدث عن',
+ 'aboutus-welcome-desc' => ': title هو قاعدة بيانات الأفلام / التليفزيون / FANRES المبنية على المجتمع . تمت إضافة كل جزء من البيانات من قبل مجتمعنا المذهل منذ عام 2017.: تركز الألقاب القوية على محتوى HD ، وقاعدة مستخدم استباقية ، وقاعدة بيانات رهيبة / آمنة وفريق عمل متعاون وودود.',
+ 'blacklist-browsers' => 'المتصفحات',
+ 'blacklist-btclient' => 'تورنت العميل',
+ 'blacklist-clients' => 'عملاء',
+ 'blacklist-desc' => 'المتصفحات التالية وعملاء Bittorrent مدرجون في القائمة السوداء / ممنوعون من الإعلان عن:',
+ 'blacklist-webbrowser' => 'متصفح الإنترنت',
'blacklist-emaildomain' => 'تم حظر النطاق',
- 'email-blacklist-desc' => 'يتم حظر مجالات البريد الإلكتروني التالية من الاستخدام. لا يمكنك التسجيل أو إرسال دعوة إلى ما يلي.',
- 'email-whitelist-desc' => 'مجالات البريد الإلكتروني التالية هي مجالات البريد الإلكتروني الوحيدة المسموح باستخدامها. يمكنك فقط التسجيل أو إرسال دعوة باستخدام ما يلي.',
- 'staff-group' => 'مجموعة',
- 'staff-title' => 'عنوان',
+ 'email-blacklist-desc' => 'يتم حظر مجالات البريد الإلكتروني التالية من الاستخدام. لا يمكنك التسجيل أو إرسال دعوة إلى ما يلي.',
+ 'email-whitelist-desc' => 'مجالات البريد الإلكتروني التالية هي مجالات البريد الإلكتروني الوحيدة المسموح باستخدامها. يمكنك فقط التسجيل أو إرسال دعوة باستخدام ما يلي.',
+ 'staff-group' => 'مجموعة',
+ 'staff-title' => 'عنوان',
'whitelist-emaildomain' => 'مجال موثوق',
];
diff --git a/lang/ar/pagination.php b/lang/ar/pagination.php
index b08f38b94..c7181dea0 100644
--- a/lang/ar/pagination.php
+++ b/lang/ar/pagination.php
@@ -24,5 +24,5 @@ return [
*/
'previous' => '« السابق',
- 'next' => 'التالي »',
+ 'next' => 'التالي »',
];
diff --git a/lang/ar/passwords.php b/lang/ar/passwords.php
index 8bbecd4e1..8d3231b3b 100644
--- a/lang/ar/passwords.php
+++ b/lang/ar/passwords.php
@@ -24,8 +24,8 @@ return [
*/
'password' => 'يجب أن لا يقل طول كلمة المرور عن ستة أحرف، كما يجب أن تتطابق مع حقل التأكيد.',
- 'reset' => 'تمت إعادة تعيين كلمة المرور!',
- 'sent' => 'تم إرسال تفاصيل استعادة كلمة المرور الخاصة بك إلى بريدك الإلكتروني!',
- 'token' => 'رمز استعادة كلمة المرور الذي أدخلته غير صحيح.',
- 'user' => 'لم يتم العثور على أيّ حسابٍ بهذا العنوان الإلكتروني.',
+ 'reset' => 'تمت إعادة تعيين كلمة المرور!',
+ 'sent' => 'تم إرسال تفاصيل استعادة كلمة المرور الخاصة بك إلى بريدك الإلكتروني!',
+ 'token' => 'رمز استعادة كلمة المرور الذي أدخلته غير صحيح.',
+ 'user' => 'لم يتم العثور على أيّ حسابٍ بهذا العنوان الإلكتروني.',
];
diff --git a/lang/ar/pm.php b/lang/ar/pm.php
index 29ddb6592..0c96931dc 100644
--- a/lang/ar/pm.php
+++ b/lang/ar/pm.php
@@ -12,28 +12,28 @@
*/
return [
- 'create' => 'خلق',
- 'delete' => 'حذف',
+ 'create' => 'خلق',
+ 'delete' => 'حذف',
'enter-subject' => 'أدخل الموضوع',
- 'from' => 'من عند',
- 'inbox' => 'صندوق الوارد',
+ 'from' => 'من عند',
+ 'inbox' => 'صندوق الوارد',
'mark-all-read' => 'اجعل كل الرسائل مقروءة',
- 'message' => 'رسالة',
- 'messages' => 'رسائل',
- 'new' => 'رسالة جديدة',
- 'outbox' => 'صندوق الحفظ',
- 'private' => 'نشر',
- 'read' => 'اقرأ',
- 'received-at' => 'تلقى في',
- 'refresh' => 'تحديث',
- 'reply' => 'الرد',
- 'search' => 'البحث حسب الموضوع',
- 'select' => 'اختر مستخدم',
- 'send' => 'إرسال PM',
- 'send-to' => 'إرسال PM إلى',
- 'sent' => 'أرسلت',
- 'sent-at' => 'أرسلت في',
- 'subject' => 'موضوع',
- 'to' => 'إلى',
- 'unread' => 'غير مقروء',
+ 'message' => 'رسالة',
+ 'messages' => 'رسائل',
+ 'new' => 'رسالة جديدة',
+ 'outbox' => 'صندوق الحفظ',
+ 'private' => 'نشر',
+ 'read' => 'اقرأ',
+ 'received-at' => 'تلقى في',
+ 'refresh' => 'تحديث',
+ 'reply' => 'الرد',
+ 'search' => 'البحث حسب الموضوع',
+ 'select' => 'اختر مستخدم',
+ 'send' => 'إرسال PM',
+ 'send-to' => 'إرسال PM إلى',
+ 'sent' => 'أرسلت',
+ 'sent-at' => 'أرسلت في',
+ 'subject' => 'موضوع',
+ 'to' => 'إلى',
+ 'unread' => 'غير مقروء',
];
diff --git a/lang/ar/poll.php b/lang/ar/poll.php
index f338a1132..6d509eb2b 100644
--- a/lang/ar/poll.php
+++ b/lang/ar/poll.php
@@ -12,18 +12,18 @@
*/
return [
- 'add-option' => 'إضافة خيار',
- 'create-poll' => 'إنشاء استطلاع',
- 'current' => 'الاستطلاع الحالي',
- 'delete-option' => 'حذف الخيار',
+ 'add-option' => 'إضافة خيار',
+ 'create-poll' => 'إنشاء استطلاع',
+ 'current' => 'الاستطلاع الحالي',
+ 'delete-option' => 'حذف الخيار',
'multiple-choice' => 'هذا استطلاع متعدد الاختيارات. حدد العديد من الإجابات التي تريدها.',
- 'option' => 'اختيار',
- 'poll' => 'تصويت',
- 'polls' => 'استطلاعات الرأي',
- 'results' => 'نتائج الاستطلاع',
- 'title' => 'عنوان',
- 'total' => 'مجموع الأصوات من أي وقت مضى',
- 'vote' => 'تصويت',
- 'vote-now' => 'احصل على صوتك الآن!',
- 'votes' => 'الأصوات',
+ 'option' => 'اختيار',
+ 'poll' => 'تصويت',
+ 'polls' => 'استطلاعات الرأي',
+ 'results' => 'نتائج الاستطلاع',
+ 'title' => 'عنوان',
+ 'total' => 'مجموع الأصوات من أي وقت مضى',
+ 'vote' => 'تصويت',
+ 'vote-now' => 'احصل على صوتك الآن!',
+ 'votes' => 'الأصوات',
];
diff --git a/lang/ar/request.php b/lang/ar/request.php
index 724912d2c..03fa5a270 100644
--- a/lang/ar/request.php
+++ b/lang/ar/request.php
@@ -12,67 +12,67 @@
*/
return [
- 'add-request' => 'إضافة طلب',
- 'age' => 'عمر',
- 'all-requests' => 'جميع الطلبات',
- 'approve' => 'يوافق',
- 'bounty' => 'هبة',
- 'bounty-claimed' => 'ادعى باونتي',
- 'bounty-unclaimed' => 'فضله لم يطالب بها أحد',
- 'category' => 'الفئة',
- 'claim' => 'يطالب',
- 'claim-anon-choose' => 'الرجاء اختيار بحكمة',
- 'claim-as-anon' => 'هل ترغب في المطالبة بهذا بشكل شاذ',
- 'claim-now' => 'يدعون الآن',
- 'claimed' => 'ادعى',
- 'current' => 'تيار',
- 'delete' => 'حذف هذا الطلب',
+ 'add-request' => 'إضافة طلب',
+ 'age' => 'عمر',
+ 'all-requests' => 'جميع الطلبات',
+ 'approve' => 'يوافق',
+ 'bounty' => 'هبة',
+ 'bounty-claimed' => 'ادعى باونتي',
+ 'bounty-unclaimed' => 'فضله لم يطالب بها أحد',
+ 'category' => 'الفئة',
+ 'claim' => 'يطالب',
+ 'claim-anon-choose' => 'الرجاء اختيار بحكمة',
+ 'claim-as-anon' => 'هل ترغب في المطالبة بهذا بشكل شاذ',
+ 'claim-now' => 'يدعون الآن',
+ 'claimed' => 'ادعى',
+ 'current' => 'تيار',
+ 'delete' => 'حذف هذا الطلب',
'delete-confirmation' => 'هل أنت متأكد أنك تريد حذف هذا الطلب؟',
- 'delete-filled' => 'لا يمكن حذف هذا الطلب إلا في حالة عدم ملؤه',
- 'description' => 'وصف',
- 'dont-have-bps' => 'ليس لديك ما يكفي من المكافآت',
- 'edit-request' => 'تحرير الطلب',
- 'enter-bp' => 'أدخل نقاط المكافأة (الحد الأدنى 100)',
- 'enter-hash' => 'أدخل معلومات التجزئة من السيل المحملة',
- 'fill' => 'ملء',
- 'fill-request' => 'ملء هذا الطلب',
- 'filled' => 'معبأ',
- 'filled-by' => 'مملوء ب',
- 'for' => 'إلى عن على',
- 'fulfill' => 'تحقيق',
- 'last-vote' => 'التصويت الأخير',
- 'my-requests' => 'طلباتي',
- 'no' => 'لا،',
- 'no-imdb-id' => 'يجب أن تحتوي جميع الطلبات على رقم IMDB',
- 'no-privileges' => 'خطأ: تم تعطيل حقوق طلبك',
- 'no-privileges-desc' => 'إذا كنت تشعر أن هذا خطأ ، يرجى الاتصال بفريق العمل',
- 'no-refunds' => 'التبادلات BON على إنشاء وملء والمكافآت نهائية!
لا المستردة!',
- 'pending' => 'قيد الانتظار',
- 'reason' => 'السبب',
- 'reject' => 'رفض',
- 'report' => 'طلب تقرير',
- 'request' => 'طلب',
- 'request-details' => 'طلب تفاصيل',
- 'requested-by' => 'بتوصية من',
- 'requests' => 'طلبات',
- 'required' => 'مطلوب',
- 'reset' => 'إعادة تعيين',
- 'reset-confirmation' => 'هل تريد بالتأكيد إعادة تعيين هذا الطلب؟',
- 'reset-request' => 'إعادة ضبط هذا الطلب',
- 'reward' => 'مكافأة',
- 'reward-desc' => 'كم نقطة المكافأة التي ترغب في مكافأة؟ الحد الأدنى 100 BP',
- 'reward-from' => 'من عند',
- 'title' => 'عنوان',
- 'torrent-hash' => 'سيل هاش',
- 'total-bounty' => 'مجموع المكافأة',
- 'type' => 'نوع',
- 'unclaim' => 'إلغاء المطالبة بهذا الطلب',
- 'unfilled' => 'شاغرة',
- 'view-filled' => 'عرض شغلها',
- 'view-unfilled' => 'عرض شاغرة',
- 'vote' => 'تصويت',
- 'vote-that' => 'صوت هذا الطلب',
- 'voters' => 'المصوتون',
- 'votes' => 'الأصوات',
- 'yes' => 'نعم فعلا',
+ 'delete-filled' => 'لا يمكن حذف هذا الطلب إلا في حالة عدم ملؤه',
+ 'description' => 'وصف',
+ 'dont-have-bps' => 'ليس لديك ما يكفي من المكافآت',
+ 'edit-request' => 'تحرير الطلب',
+ 'enter-bp' => 'أدخل نقاط المكافأة (الحد الأدنى 100)',
+ 'enter-hash' => 'أدخل معلومات التجزئة من السيل المحملة',
+ 'fill' => 'ملء',
+ 'fill-request' => 'ملء هذا الطلب',
+ 'filled' => 'معبأ',
+ 'filled-by' => 'مملوء ب',
+ 'for' => 'إلى عن على',
+ 'fulfill' => 'تحقيق',
+ 'last-vote' => 'التصويت الأخير',
+ 'my-requests' => 'طلباتي',
+ 'no' => 'لا،',
+ 'no-imdb-id' => 'يجب أن تحتوي جميع الطلبات على رقم IMDB',
+ 'no-privileges' => 'خطأ: تم تعطيل حقوق طلبك',
+ 'no-privileges-desc' => 'إذا كنت تشعر أن هذا خطأ ، يرجى الاتصال بفريق العمل',
+ 'no-refunds' => 'التبادلات BON على إنشاء وملء والمكافآت نهائية!
لا المستردة!',
+ 'pending' => 'قيد الانتظار',
+ 'reason' => 'السبب',
+ 'reject' => 'رفض',
+ 'report' => 'طلب تقرير',
+ 'request' => 'طلب',
+ 'request-details' => 'طلب تفاصيل',
+ 'requested-by' => 'بتوصية من',
+ 'requests' => 'طلبات',
+ 'required' => 'مطلوب',
+ 'reset' => 'إعادة تعيين',
+ 'reset-confirmation' => 'هل تريد بالتأكيد إعادة تعيين هذا الطلب؟',
+ 'reset-request' => 'إعادة ضبط هذا الطلب',
+ 'reward' => 'مكافأة',
+ 'reward-desc' => 'كم نقطة المكافأة التي ترغب في مكافأة؟ الحد الأدنى 100 BP',
+ 'reward-from' => 'من عند',
+ 'title' => 'عنوان',
+ 'torrent-hash' => 'سيل هاش',
+ 'total-bounty' => 'مجموع المكافأة',
+ 'type' => 'نوع',
+ 'unclaim' => 'إلغاء المطالبة بهذا الطلب',
+ 'unfilled' => 'شاغرة',
+ 'view-filled' => 'عرض شغلها',
+ 'view-unfilled' => 'عرض شاغرة',
+ 'vote' => 'تصويت',
+ 'vote-that' => 'صوت هذا الطلب',
+ 'voters' => 'المصوتون',
+ 'votes' => 'الأصوات',
+ 'yes' => 'نعم فعلا',
];
diff --git a/lang/ar/rss.php b/lang/ar/rss.php
index 2a51fdaad..19b30c8e6 100644
--- a/lang/ar/rss.php
+++ b/lang/ar/rss.php
@@ -12,19 +12,19 @@
*/
return [
- 'create' => 'خلق',
+ 'create' => 'خلق',
'create-private-feed' => 'إنشاء تغذية RSS خاصة',
- 'create-public-feed' => 'إنشاء تغذية RSS العامة',
- 'delete' => 'حذف',
- 'edit' => 'تصحيح',
- 'edit-private-feed' => 'تحرير تغذية RSS الخاصة',
- 'edit-public-feed' => 'تحرير آر إس إس العامة',
- 'feed' => 'تغذية',
- 'feeds' => 'يغذي',
- 'name' => 'اسم',
- 'public' => 'عامة',
- 'private' => 'نشر',
- 'rss' => 'RSS',
- 'rss-feed' => 'تغذية ار اس اس',
- 'type' => 'نوع',
+ 'create-public-feed' => 'إنشاء تغذية RSS العامة',
+ 'delete' => 'حذف',
+ 'edit' => 'تصحيح',
+ 'edit-private-feed' => 'تحرير تغذية RSS الخاصة',
+ 'edit-public-feed' => 'تحرير آر إس إس العامة',
+ 'feed' => 'تغذية',
+ 'feeds' => 'يغذي',
+ 'name' => 'اسم',
+ 'public' => 'عامة',
+ 'private' => 'نشر',
+ 'rss' => 'RSS',
+ 'rss-feed' => 'تغذية ار اس اس',
+ 'type' => 'نوع',
];
diff --git a/lang/ar/staff.php b/lang/ar/staff.php
index cc8313ed9..e5f2e10fc 100644
--- a/lang/ar/staff.php
+++ b/lang/ar/staff.php
@@ -12,48 +12,48 @@
*/
return [
- 'audit-log' => 'سجل النشاطات',
- 'articles' => 'مقالات',
- 'applications' => 'تطبيقات',
- 'bans-log' => 'سجل الحظر',
- 'blocks' => 'كتل',
- 'bot' => 'بوت',
- 'bots' => 'السير',
- 'chat' => 'دردشة',
- 'config-manager' => 'مدير التكوين',
- 'dashboard' => 'لوحة القيادة',
- 'failed-login-log' => 'فشل تسجيل الدخول',
- 'flush-ghost-peers' => 'فلوش شبح أقرانهم',
- 'forums' => 'المنتديات',
- 'frontend' => 'نهاية المقدمة',
- 'general-tools' => 'أدوات عامة',
- 'groups' => 'المجموعات',
- 'invites-log' => 'يدعو سجل',
- 'laravel-log' => 'سجل Laravel',
- 'links' => 'الروابط',
- 'logs' => 'سجلات',
- 'mass-pm' => 'قداس PM',
- 'mass-validate-users' => 'التحقق من صحة المستخدمين',
- 'moderation' => 'الاعتدال',
- 'pages' => 'صفحات',
- 'please-moderate' => 'يرجى معتدلة هذا السيل!',
- 'polls' => 'استطلاعات الرأي',
- 'reports-log' => 'سجل التقارير',
- 'rss' => 'RSS',
- 'staff-dashboard' => 'لوحة القيادة للموظفين',
- 'torrent-categories' => 'فئات تورنت',
- 'torrent-moderation' => 'سيل الاعتدال',
- 'torrent-tools' => 'أدوات السيل',
- 'torrent-types' => 'أنواع السيل',
- 'torrents' => 'السيول',
- 'user-gifting' => 'الإهداء المستخدم',
- 'user-notes' => 'سجل ملاحظات المستخدم',
- 'user-search' => 'بحث المستخدم',
- 'user-tools' => 'أدوات المستخدم',
- 'warnings-log' => 'سجل التحذيرات',
- 'you-have' => 'عندك',
+ 'audit-log' => 'سجل النشاطات',
+ 'articles' => 'مقالات',
+ 'applications' => 'تطبيقات',
+ 'bans-log' => 'سجل الحظر',
+ 'blocks' => 'كتل',
+ 'bot' => 'بوت',
+ 'bots' => 'السير',
+ 'chat' => 'دردشة',
+ 'config-manager' => 'مدير التكوين',
+ 'dashboard' => 'لوحة القيادة',
+ 'failed-login-log' => 'فشل تسجيل الدخول',
+ 'flush-ghost-peers' => 'فلوش شبح أقرانهم',
+ 'forums' => 'المنتديات',
+ 'frontend' => 'نهاية المقدمة',
+ 'general-tools' => 'أدوات عامة',
+ 'groups' => 'المجموعات',
+ 'invites-log' => 'يدعو سجل',
+ 'laravel-log' => 'سجل Laravel',
+ 'links' => 'الروابط',
+ 'logs' => 'سجلات',
+ 'mass-pm' => 'قداس PM',
+ 'mass-validate-users' => 'التحقق من صحة المستخدمين',
+ 'moderation' => 'الاعتدال',
+ 'pages' => 'صفحات',
+ 'please-moderate' => 'يرجى معتدلة هذا السيل!',
+ 'polls' => 'استطلاعات الرأي',
+ 'reports-log' => 'سجل التقارير',
+ 'rss' => 'RSS',
+ 'staff-dashboard' => 'لوحة القيادة للموظفين',
+ 'torrent-categories' => 'فئات تورنت',
+ 'torrent-moderation' => 'سيل الاعتدال',
+ 'torrent-tools' => 'أدوات السيل',
+ 'torrent-types' => 'أنواع السيل',
+ 'torrents' => 'السيول',
+ 'user-gifting' => 'الإهداء المستخدم',
+ 'user-notes' => 'سجل ملاحظات المستخدم',
+ 'user-search' => 'بحث المستخدم',
+ 'user-tools' => 'أدوات المستخدم',
+ 'warnings-log' => 'سجل التحذيرات',
+ 'you-have' => 'عندك',
'possible-leech-cheaters' => 'الغشاشون ممكن',
- 'chat-tools' => 'أدوات الدردشة',
- 'flush-chat' => 'فلوش شات بوكس',
- 'seedboxes' => 'صناديق البذور المسجلة',
+ 'chat-tools' => 'أدوات الدردشة',
+ 'flush-chat' => 'فلوش شات بوكس',
+ 'seedboxes' => 'صناديق البذور المسجلة',
];
diff --git a/lang/ar/stat.php b/lang/ar/stat.php
index 7962ab0df..03d8ef01c 100644
--- a/lang/ar/stat.php
+++ b/lang/ar/stat.php
@@ -12,40 +12,40 @@
*/
return [
- 'by-count' => 'بواسطة العد',
- 'by-data' => 'حسب البيانات',
- 'by-volume' => 'بالصوت',
- 'group' => 'مجموعة',
- 'groups' => 'المجموعات',
- 'nerd-stats' => 'احصائيات الطالب الذي يذاكر كثيرا',
- 'nerd-stats-desc' => 'نحن جميعا نحب احصائيات. إليك بعض منها التي نجدها مهمة',
- 'registration-date' => 'تاريخ التسجيل',
- 'request-fulfilled' => 'طلب الوفاء',
- 'request-not-fulfilled' => 'طلب لم يتحقق',
+ 'by-count' => 'بواسطة العد',
+ 'by-data' => 'حسب البيانات',
+ 'by-volume' => 'بالصوت',
+ 'group' => 'مجموعة',
+ 'groups' => 'المجموعات',
+ 'nerd-stats' => 'احصائيات الطالب الذي يذاكر كثيرا',
+ 'nerd-stats-desc' => 'نحن جميعا نحب احصائيات. إليك بعض منها التي نجدها مهمة',
+ 'registration-date' => 'تاريخ التسجيل',
+ 'request-fulfilled' => 'طلب الوفاء',
+ 'request-not-fulfilled' => 'طلب لم يتحقق',
'request-pending-aproval' => 'طلب معلق aproval',
- 'select-category' => 'يرجى اختيار فئة أدناه',
- 'site-stats' => 'احصائيات الموقع',
- 'stats' => 'احصائيات',
- 'stats-format' => 'جميع الإحصائيات المعروضة في أفضل 100 تنسيق',
- 'top-bankers' => 'كبار المصرفيين',
- 'top-bountied' => 'أعلى مكافأة',
- 'top-completed' => 'اكتمل الأعلى',
- 'top-dead' => 'قمة الميت',
- 'top-downloaded' => 'أعلى تحميل السيول',
- 'top-downloaders' => 'كبار التنزيل',
- 'top-dying' => 'أعلى الموت',
- 'top-leeched' => 'أعلى علقت',
- 'top-leechers' => 'كبار Leechers',
- 'top-seeded' => 'أعلى البذور',
- 'top-seeding' => 'قمة البذر',
- 'top-seeders' => 'كبار البذور',
- 'top-seedsize' => 'أعلى البذور',
- 'top-seedtime' => 'أعلى البذور',
- 'top-uploaders' => 'أعلى رافعون',
- 'total-download' => 'مجموع التنزيل',
- 'total-torrents' => 'مجموع السيول',
- 'total-traffic' => 'إجمالي حركة المرور',
- 'total-upload' => 'مجموع التحميل',
- 'users-in-group' => 'المستخدمين في المجموعة',
- 'users-per-group' => 'المستخدمين لكل مجموعة',
+ 'select-category' => 'يرجى اختيار فئة أدناه',
+ 'site-stats' => 'احصائيات الموقع',
+ 'stats' => 'احصائيات',
+ 'stats-format' => 'جميع الإحصائيات المعروضة في أفضل 100 تنسيق',
+ 'top-bankers' => 'كبار المصرفيين',
+ 'top-bountied' => 'أعلى مكافأة',
+ 'top-completed' => 'اكتمل الأعلى',
+ 'top-dead' => 'قمة الميت',
+ 'top-downloaded' => 'أعلى تحميل السيول',
+ 'top-downloaders' => 'كبار التنزيل',
+ 'top-dying' => 'أعلى الموت',
+ 'top-leeched' => 'أعلى علقت',
+ 'top-leechers' => 'كبار Leechers',
+ 'top-seeded' => 'أعلى البذور',
+ 'top-seeding' => 'قمة البذر',
+ 'top-seeders' => 'كبار البذور',
+ 'top-seedsize' => 'أعلى البذور',
+ 'top-seedtime' => 'أعلى البذور',
+ 'top-uploaders' => 'أعلى رافعون',
+ 'total-download' => 'مجموع التنزيل',
+ 'total-torrents' => 'مجموع السيول',
+ 'total-traffic' => 'إجمالي حركة المرور',
+ 'total-upload' => 'مجموع التحميل',
+ 'users-in-group' => 'المستخدمين في المجموعة',
+ 'users-per-group' => 'المستخدمين لكل مجموعة',
];
diff --git a/lang/ar/torrent.php b/lang/ar/torrent.php
index 269e42e4d..e49663414 100644
--- a/lang/ar/torrent.php
+++ b/lang/ar/torrent.php
@@ -12,197 +12,197 @@
*/
return [
- 'activity' => 'نشاط',
- 'age' => 'عمر',
- 'agent' => 'وكيل',
- 'alive' => 'على قيد الحياة',
- 'announce-url' => 'أعلن URL',
- 'announce-url-desc' => 'يرجى استخدام عنوان URL للإعلان أعلاه عند إنشاء سيل جديد. إذا كنت تريد استخدام التورنت دون تنزيله من الموقع ، فأنت بحاجة إلى تعيين العلم الخاص والمصدر على: المصدر',
- 'announce-url-desc-url' => 'واقع في مشكلة؟ انظر دليلنا هنا',
- 'announce-url-desc2' => 'TMDB و IMDB مطلوبان لجميع عمليات التحميل! فهو يستخدم لانتزاع الملصقات / الخلفيات و ExtraInfo',
- 'approved' => 'وافق',
- 'audio' => 'سمعي',
- 'bon-tipped' => 'بون يميل',
- 'bookmark' => 'المرجعية',
- 'bookmarks' => 'إرسال',
- 'bump' => 'صدم',
- 'cant-upload' => 'خطأ: حقوق التحميل معطلة',
- 'cant-upload-desc' => 'إذا كنت تشعر أن هذا خطأ ، فيرجى الاتصال بفريق العمل',
- 'cards' => 'بطاقات',
- 'cards-view' => 'عرض بطاقات السيل',
- 'categories' => 'الاقسام',
- 'category' => 'الفئة',
- 'client' => 'عميل',
- 'commited' => 'ارتكبت',
- 'completed' => 'منجز',
- 'completed_at' => 'اكتمل في',
- 'completed-not-seeding' => 'لقد أكملت هذا التنزيل ولكن لم تعد البذر',
- 'created_at' => 'أنشئت في',
- 'credited' => 'الفضل',
- 'current' => 'تيار',
- 'current-filters' => 'المرشحات الحالية',
- 'currently-leeching' => 'حاليا علقة',
- 'currently-seeding' => 'حاليا البذر',
- 'dead-torrent' => 'ميت السيل',
- 'dead-torrents' => 'السيول الميتة',
- 'delete-bookmark' => 'حذف هذه الإشارة المرجعية',
- 'description' => 'وصف',
- 'discounts' => 'خصومات',
- 'double-upload' => 'تحميل مزدوج',
- 'download-all' => 'تحميل الكل',
- 'download-check' => 'تحميل الاختيار',
- 'downloaded' => 'تحميلها',
- 'dying-torrent' => 'الموت سيل',
- 'dying-torrents' => 'الموت السيول',
- 'encode-settings' => 'تشفير الإعدادات',
- 'estimated-ratio' => 'النسبة المقدرة بعد التنزيل',
- 'failed' => 'فشل',
- 'feature' => 'خاصية',
- 'featured' => 'متميز',
- 'featured-desc' => 'السيول المميزة هي 100 ٪ مجانا و تحميل مزدوج!',
- 'featured-until' => 'هذا هو سيل مميزة حتى',
- 'file' => 'ملف',
- 'filters' => 'مرشحات',
- 'fl-tokens-left' => 'عندك : الرموز اليسار',
- 'freeleech' => 'Freeleech',
- 'freeleech-token' => 'رمزية حرة',
- 'general' => 'جنرال لواء',
- 'genre' => 'نوع أدبي',
- 'global-double-upload' => 'تحميل عالمي مزدوج',
- 'global-freeleech' => 'Freeleech العالمية',
- 'grant' => 'منحة',
- 'greater-than' => 'أكثر من',
- 'grouping' => 'تجمع',
- 'groupings' => 'التجمعات',
- 'grouping-categories' => 'فئات التجميع',
+ 'activity' => 'نشاط',
+ 'age' => 'عمر',
+ 'agent' => 'وكيل',
+ 'alive' => 'على قيد الحياة',
+ 'announce-url' => 'أعلن URL',
+ 'announce-url-desc' => 'يرجى استخدام عنوان URL للإعلان أعلاه عند إنشاء سيل جديد. إذا كنت تريد استخدام التورنت دون تنزيله من الموقع ، فأنت بحاجة إلى تعيين العلم الخاص والمصدر على: المصدر',
+ 'announce-url-desc-url' => 'واقع في مشكلة؟ انظر دليلنا هنا',
+ 'announce-url-desc2' => 'TMDB و IMDB مطلوبان لجميع عمليات التحميل! فهو يستخدم لانتزاع الملصقات / الخلفيات و ExtraInfo',
+ 'approved' => 'وافق',
+ 'audio' => 'سمعي',
+ 'bon-tipped' => 'بون يميل',
+ 'bookmark' => 'المرجعية',
+ 'bookmarks' => 'إرسال',
+ 'bump' => 'صدم',
+ 'cant-upload' => 'خطأ: حقوق التحميل معطلة',
+ 'cant-upload-desc' => 'إذا كنت تشعر أن هذا خطأ ، فيرجى الاتصال بفريق العمل',
+ 'cards' => 'بطاقات',
+ 'cards-view' => 'عرض بطاقات السيل',
+ 'categories' => 'الاقسام',
+ 'category' => 'الفئة',
+ 'client' => 'عميل',
+ 'commited' => 'ارتكبت',
+ 'completed' => 'منجز',
+ 'completed_at' => 'اكتمل في',
+ 'completed-not-seeding' => 'لقد أكملت هذا التنزيل ولكن لم تعد البذر',
+ 'created_at' => 'أنشئت في',
+ 'credited' => 'الفضل',
+ 'current' => 'تيار',
+ 'current-filters' => 'المرشحات الحالية',
+ 'currently-leeching' => 'حاليا علقة',
+ 'currently-seeding' => 'حاليا البذر',
+ 'dead-torrent' => 'ميت السيل',
+ 'dead-torrents' => 'السيول الميتة',
+ 'delete-bookmark' => 'حذف هذه الإشارة المرجعية',
+ 'description' => 'وصف',
+ 'discounts' => 'خصومات',
+ 'double-upload' => 'تحميل مزدوج',
+ 'download-all' => 'تحميل الكل',
+ 'download-check' => 'تحميل الاختيار',
+ 'downloaded' => 'تحميلها',
+ 'dying-torrent' => 'الموت سيل',
+ 'dying-torrents' => 'الموت السيول',
+ 'encode-settings' => 'تشفير الإعدادات',
+ 'estimated-ratio' => 'النسبة المقدرة بعد التنزيل',
+ 'failed' => 'فشل',
+ 'feature' => 'خاصية',
+ 'featured' => 'متميز',
+ 'featured-desc' => 'السيول المميزة هي 100 ٪ مجانا و تحميل مزدوج!',
+ 'featured-until' => 'هذا هو سيل مميزة حتى',
+ 'file' => 'ملف',
+ 'filters' => 'مرشحات',
+ 'fl-tokens-left' => 'عندك : الرموز اليسار',
+ 'freeleech' => 'Freeleech',
+ 'freeleech-token' => 'رمزية حرة',
+ 'general' => 'جنرال لواء',
+ 'genre' => 'نوع أدبي',
+ 'global-double-upload' => 'تحميل عالمي مزدوج',
+ 'global-freeleech' => 'Freeleech العالمية',
+ 'grant' => 'منحة',
+ 'greater-than' => 'أكثر من',
+ 'grouping' => 'تجمع',
+ 'groupings' => 'التجمعات',
+ 'grouping-categories' => 'فئات التجميع',
'grouping-categories-desc' => 'ما الفئة التي ترغب في تجميعها؟',
- 'grouping-results' => 'نتائج التجميع',
- 'groupings-view' => 'عرض التجمعات',
- 'have-completed' => 'منجز',
- 'have-downloaded' => 'تحميلها',
- 'have-not-completed' => 'غير مكتمل',
- 'have-not-downloaded' => 'لم يحمل',
- 'health' => 'الصحة',
- 'history' => 'التاريخ',
- 'hitrun' => 'H&R؟',
- 'hit-and-runs' => 'ضرب وتشغيل',
- 'immune' => 'مناعة؟',
- 'info' => 'معلومات',
- 'internal' => 'داخلي',
- 'internal-release' => 'الإصدار الداخلي',
- 'last-seed-activity' => 'نشاط البذور الماضي',
- 'last-seeder' => 'أنت آخر البذور المتبقية! (تم تنزيله على الأقل 3 مرات)',
- 'last-update' => 'اخر تحديث',
- 'leave-tip' => 'اترك نصيحة',
- 'leecher' => 'يشر',
- 'leechers' => 'حاصدين',
- 'leeching' => 'الإمتصاص',
- 'left' => 'اليسار',
- 'legendary-seeder' => 'بذارة الأسطوري',
- 'legendary-torrent' => 'سيل الأسطوري',
- 'list' => 'قائمة',
- 'me' => 'أنا',
- 'media-info' => 'معلومات الوسائط',
- 'media-info-parser' => 'محلل MediaInfo',
- 'media-info-paste' => 'لصق MediaInfo تفريغ هنا',
- 'meta-desc' => 'تنزيل: الاسم بأقصى سرعة',
- 'moderation' => 'الاعتدال',
- 'movies' => 'أفلام',
- 'mvp' => 'MVP',
- 'my-active-torrents' => 'بلدي السيول النشطة',
- 'name' => 'اسم',
- 'no-bookmarks' => 'لا توجد إشارات مرجعية.',
- 'no-discounts' => 'حاليا لا خصومات',
- 'no-meta' => 'لم يتم العثور على بيانات وصفية',
- 'no-privileges' => 'أنت غير قادر على تنزيل هذا الملف - يرجى مراجعة أدناه للحصول على مزيد من المعلومات',
- 'no-privileges-desc' => 'الرجاء حل النتائج الفاشلة أعلاه حتى يظهر زر التنزيل',
- 'not-completed' => 'بدأت التنزيل ولكن لم تكتمل مطلقًا',
- 'not-downloaded' => 'لم يحمل',
- 'old-torrent' => 'سيل قديم',
- 'optional' => 'اختياري',
- 'original-output' => 'إظهار / إخفاء الإخراج الأصلي',
- 'participant' => 'مشارك',
- 'passed' => 'مرت',
- 'peers' => 'الأقران',
- 'pending' => 'قيد الانتظار',
- 'personal-freeleech' => 'Freeleech الشخصية',
- 'poster' => 'الملصق',
- 'poster-view' => 'عرض الملصق',
- 'posters' => 'ملصقات',
- 'prewarn' => 'Prewarned؟',
- 'progress' => 'تقدم',
- 'quick-comment' => 'تعليق سريع',
- 'quick-tip' => 'غيض سريع المبالغ',
- 'rated' => 'تقييمه',
- 'rating' => 'تقييم',
- 'ready' => 'هذا الملف جاهز للتنزيل',
- 'rejected' => 'مرفوض',
- 'released' => 'صدر',
- 'remaining' => 'متبق',
- 'request-reseed' => 'طلب إعادة البذور',
- 'requires-reseed' => 'يتطلب إعادة',
- 'resurrections' => 'الإحياء',
- 'revoke' => 'سحب',
- 'rss' => 'RSS',
- 'runtime' => 'وقت التشغيل',
- 'satisfied_in' => 'راضي في',
- 'say-thanks' => 'يرجى تذكر أن أقول شكرا والبذور لأطول فترة ممكنة',
- 'sd-content' => 'محتوى SD',
- 'search' => 'بحث',
- 'seed-time' => 'وقت البذور',
- 'seeder' => 'بزار',
- 'seeders' => 'بزار',
- 'seeding' => 'زراعة',
- 'seedsize' => 'Seedsize',
- 'seedtime' => 'Seedtime',
- 'short-completed' => 'C',
- 'short-leechs' => 'L',
- 'short-seeds' => 'S',
- 'show-files' => 'اظهار الملفات',
- 'similar' => 'السيول مماثلة',
- 'size' => 'بحجم',
- 'special' => 'خاص',
- 'special-freeleech' => 'حرة خاصة',
- 'started' => 'بدأت',
- 'status' => 'الحالة',
- 'statistics' => 'الإحصاء',
- 'stats' => 'احصائيات',
- 'sticky' => 'لزج',
- 'stream-optimized' => 'تيار الأمثل',
- 'subtitle' => 'عنوان فرعي',
- 'team-player' => 'لاعب فريق',
- 'thank' => 'شكر',
- 'thanked' => 'تم شكره',
- 'thanks' => 'شكر',
- 'thanks-given' => 'عيد الشكر',
- 'times' => 'مرات',
- 'tip-jar' => 'نصيحة جرة',
- 'title' => 'عنوان',
- 'titles' => 'العناوين',
- 'top-completed' => 'الانتهاء من الأعلى',
- 'top-dead' => 'الموتى الأعلى',
- 'top-dying' => 'كبار الموت',
- 'top-leeched' => 'أعلى مستنقع',
- 'top-seeded' => 'أعلى المصنفة',
- 'torrent' => 'سيل',
- 'torrent-request' => 'طلب سيل',
- 'torrent-tips' => 'في المجموع : تم نقل إجمالي BON إلى القائم بالتحميل ، منها : مستخدم منك',
- 'torrent-tips-desc' => 'سيتم خصم هذا من نقاط المكافآت المتوفرة لديك',
- 'torrents' => 'السيول',
- 'trailer' => 'عرض مقطورة',
- 'type' => 'نوع',
- 'types' => 'أنواع',
- 'unbookmark' => 'Unbookmark',
- 'unsatisfieds' => 'Unsatisfieds',
- 'unsticky' => 'Unsticky',
- 'updated' => 'محدث',
- 'updated_at' => 'تم التحديث في',
- 'uploaded' => 'تم تحميلها',
- 'uploaded-by' => 'تم الرفع بواسطة',
- 'uploader' => 'رافع',
- 'use-fl-token' => 'استخدام رمز Freeleech',
- 'video' => 'فيديو',
- 'view-more' => 'عرض المزيد',
- 'view-trailer' => 'عرض مقطورة',
- 'votes' => 'الأصوات',
+ 'grouping-results' => 'نتائج التجميع',
+ 'groupings-view' => 'عرض التجمعات',
+ 'have-completed' => 'منجز',
+ 'have-downloaded' => 'تحميلها',
+ 'have-not-completed' => 'غير مكتمل',
+ 'have-not-downloaded' => 'لم يحمل',
+ 'health' => 'الصحة',
+ 'history' => 'التاريخ',
+ 'hitrun' => 'H&R؟',
+ 'hit-and-runs' => 'ضرب وتشغيل',
+ 'immune' => 'مناعة؟',
+ 'info' => 'معلومات',
+ 'internal' => 'داخلي',
+ 'internal-release' => 'الإصدار الداخلي',
+ 'last-seed-activity' => 'نشاط البذور الماضي',
+ 'last-seeder' => 'أنت آخر البذور المتبقية! (تم تنزيله على الأقل 3 مرات)',
+ 'last-update' => 'اخر تحديث',
+ 'leave-tip' => 'اترك نصيحة',
+ 'leecher' => 'يشر',
+ 'leechers' => 'حاصدين',
+ 'leeching' => 'الإمتصاص',
+ 'left' => 'اليسار',
+ 'legendary-seeder' => 'بذارة الأسطوري',
+ 'legendary-torrent' => 'سيل الأسطوري',
+ 'list' => 'قائمة',
+ 'me' => 'أنا',
+ 'media-info' => 'معلومات الوسائط',
+ 'media-info-parser' => 'محلل MediaInfo',
+ 'media-info-paste' => 'لصق MediaInfo تفريغ هنا',
+ 'meta-desc' => 'تنزيل: الاسم بأقصى سرعة',
+ 'moderation' => 'الاعتدال',
+ 'movies' => 'أفلام',
+ 'mvp' => 'MVP',
+ 'my-active-torrents' => 'بلدي السيول النشطة',
+ 'name' => 'اسم',
+ 'no-bookmarks' => 'لا توجد إشارات مرجعية.',
+ 'no-discounts' => 'حاليا لا خصومات',
+ 'no-meta' => 'لم يتم العثور على بيانات وصفية',
+ 'no-privileges' => 'أنت غير قادر على تنزيل هذا الملف - يرجى مراجعة أدناه للحصول على مزيد من المعلومات',
+ 'no-privileges-desc' => 'الرجاء حل النتائج الفاشلة أعلاه حتى يظهر زر التنزيل',
+ 'not-completed' => 'بدأت التنزيل ولكن لم تكتمل مطلقًا',
+ 'not-downloaded' => 'لم يحمل',
+ 'old-torrent' => 'سيل قديم',
+ 'optional' => 'اختياري',
+ 'original-output' => 'إظهار / إخفاء الإخراج الأصلي',
+ 'participant' => 'مشارك',
+ 'passed' => 'مرت',
+ 'peers' => 'الأقران',
+ 'pending' => 'قيد الانتظار',
+ 'personal-freeleech' => 'Freeleech الشخصية',
+ 'poster' => 'الملصق',
+ 'poster-view' => 'عرض الملصق',
+ 'posters' => 'ملصقات',
+ 'prewarn' => 'Prewarned؟',
+ 'progress' => 'تقدم',
+ 'quick-comment' => 'تعليق سريع',
+ 'quick-tip' => 'غيض سريع المبالغ',
+ 'rated' => 'تقييمه',
+ 'rating' => 'تقييم',
+ 'ready' => 'هذا الملف جاهز للتنزيل',
+ 'rejected' => 'مرفوض',
+ 'released' => 'صدر',
+ 'remaining' => 'متبق',
+ 'request-reseed' => 'طلب إعادة البذور',
+ 'requires-reseed' => 'يتطلب إعادة',
+ 'resurrections' => 'الإحياء',
+ 'revoke' => 'سحب',
+ 'rss' => 'RSS',
+ 'runtime' => 'وقت التشغيل',
+ 'satisfied_in' => 'راضي في',
+ 'say-thanks' => 'يرجى تذكر أن أقول شكرا والبذور لأطول فترة ممكنة',
+ 'sd-content' => 'محتوى SD',
+ 'search' => 'بحث',
+ 'seed-time' => 'وقت البذور',
+ 'seeder' => 'بزار',
+ 'seeders' => 'بزار',
+ 'seeding' => 'زراعة',
+ 'seedsize' => 'Seedsize',
+ 'seedtime' => 'Seedtime',
+ 'short-completed' => 'C',
+ 'short-leechs' => 'L',
+ 'short-seeds' => 'S',
+ 'show-files' => 'اظهار الملفات',
+ 'similar' => 'السيول مماثلة',
+ 'size' => 'بحجم',
+ 'special' => 'خاص',
+ 'special-freeleech' => 'حرة خاصة',
+ 'started' => 'بدأت',
+ 'status' => 'الحالة',
+ 'statistics' => 'الإحصاء',
+ 'stats' => 'احصائيات',
+ 'sticky' => 'لزج',
+ 'stream-optimized' => 'تيار الأمثل',
+ 'subtitle' => 'عنوان فرعي',
+ 'team-player' => 'لاعب فريق',
+ 'thank' => 'شكر',
+ 'thanked' => 'تم شكره',
+ 'thanks' => 'شكر',
+ 'thanks-given' => 'عيد الشكر',
+ 'times' => 'مرات',
+ 'tip-jar' => 'نصيحة جرة',
+ 'title' => 'عنوان',
+ 'titles' => 'العناوين',
+ 'top-completed' => 'الانتهاء من الأعلى',
+ 'top-dead' => 'الموتى الأعلى',
+ 'top-dying' => 'كبار الموت',
+ 'top-leeched' => 'أعلى مستنقع',
+ 'top-seeded' => 'أعلى المصنفة',
+ 'torrent' => 'سيل',
+ 'torrent-request' => 'طلب سيل',
+ 'torrent-tips' => 'في المجموع : تم نقل إجمالي BON إلى القائم بالتحميل ، منها : مستخدم منك',
+ 'torrent-tips-desc' => 'سيتم خصم هذا من نقاط المكافآت المتوفرة لديك',
+ 'torrents' => 'السيول',
+ 'trailer' => 'عرض مقطورة',
+ 'type' => 'نوع',
+ 'types' => 'أنواع',
+ 'unbookmark' => 'Unbookmark',
+ 'unsatisfieds' => 'Unsatisfieds',
+ 'unsticky' => 'Unsticky',
+ 'updated' => 'محدث',
+ 'updated_at' => 'تم التحديث في',
+ 'uploaded' => 'تم تحميلها',
+ 'uploaded-by' => 'تم الرفع بواسطة',
+ 'uploader' => 'رافع',
+ 'use-fl-token' => 'استخدام رمز Freeleech',
+ 'video' => 'فيديو',
+ 'view-more' => 'عرض المزيد',
+ 'view-trailer' => 'عرض مقطورة',
+ 'votes' => 'الأصوات',
];
diff --git a/lang/ar/user.php b/lang/ar/user.php
index 0741aa5b7..d8c804bbb 100644
--- a/lang/ar/user.php
+++ b/lang/ar/user.php
@@ -12,316 +12,316 @@
*/
return [
- 'about' => 'حول',
- 'about-me' => 'عني',
- 'accepted-at' => 'مقبول في',
- 'accepted-by' => 'قبلها',
- 'account-notification' => 'إعدادات إعلام الحساب',
- 'account-notification-follow' => 'تلقي إشعار عندما يتبع المستخدم حسابك',
- 'account-notification-unfollow' => 'تلقي إشعار عندما يتابع المستخدم حسابك',
- 'account-notification-help' => 'التحكم في الإخطارات التي يتم إرسالها بخصوص حسابك. يتم تجاوز هذه الإعدادات إذا لم تسمح لأي مجموعة بإرسال إشعارات بشأن حسابك أو إذا قمت بتعطيل الإشعارات',
- 'account-settings' => 'إعدادت الحساب',
- 'achievement-privacy' => 'إعدادات الإنجاز',
- 'achievement-privacy-list' => 'اسمح للمستخدمين بعرض قائمة بإنجازاتك',
- 'achievement-help' => 'التحكم في مشاركة المعلومات المتعلقة بالإنجاز المحدد مع المجموعات المسموح لها بالوصول إلى ملف التعريف الخاص بك. يتم تجاوز هذه الإعدادات إذا لم تسمح لأية مجموعات بالوصول إلى إنجازاتك أو إذا أصبحت خاصة',
- 'achievements' => 'الإنجازات',
- 'active' => 'نشيط',
- 'active-table' => 'بلدي الجدول النشط',
- 'active-torrents' => 'السيول النشطة',
- 'active-warning' => 'تحذير نشط',
- 'active-warnings' => 'تحذيرات نشطة',
- 'add-seedbox' => 'أضف Seedbox',
- 'all-torrents' => 'جميع السيول',
- 'article-comments' => 'المادة تعليقات مصنوعة',
- 'avatar' => 'الصورة الرمزية',
- 'avg-seedtime' => 'متوسط البذور',
- 'badges' => 'شارات',
- 'ban' => 'حجب المستخدم',
- 'ban-log' => 'سجل الحظر',
- 'become-hidden' => 'تصبح مخفية',
- 'become-visible' => 'تصبح مرئية',
- 'bon' => 'BON',
- 'bon-notification' => 'إعدادات إخطار بون',
- 'bon-notification-gift' => 'تلقي إشعار عندما هدايا المستخدم لك بون',
- 'bon-notification-help' => 'السيطرة على الإخطارات التي يتم إرسالها بشأن المعاملات بون. يتم تجاوز هذه الإعدادات إذا لم تسمح لأي مجموعة بإرسال إشعارات بخصوص BON أو إذا قمت بتعطيل الإشعارات',
- 'bookmarks' => 'إرسال',
- 'bounty-given' => 'مكافأة المقدمة',
- 'bounty-received' => 'تلقى فضله',
- 'can-chat' => 'ممكن الحديث',
- 'can-comment' => 'يمكن التعليق',
- 'can-download' => 'يمكن تحميل',
- 'can-invite' => 'يمكن دعوة',
- 'can-request' => 'يمكن طلب',
- 'can-upload' => 'يمكن تحميل',
- 'certified-banker' => 'مصرفي معتمد',
- 'certified-banker-desc' => 'لديها 50،000 أو أكثر BON في البنك',
- 'certified-downloader' => 'تنزيل معتمد',
- 'certified-downloader-desc' => 'تم التنزيل 100 أو أكثر من السيول!',
- 'certified-seeder' => 'بذارة معتمدة',
- 'certified-seeder-desc' => 'البذر 150 أو أكثر السيول!',
- 'change-email' => 'تغيير الايميل',
- 'change-email-help' => 'سيتعين عليك إعادة تأكيد حسابك ، بعد تغيير بريدك الإلكتروني',
- 'change-password' => 'غير كلمة السر',
- 'change-password-help' => 'سوف تضطر إلى تسجيل الدخول مرة أخرى ، بعد تغيير كلمة المرور الخاصة بك',
- 'client-ip-address' => 'عنوان IP للعميل',
- 'code' => 'الشفرة',
- 'comments' => 'تعليقات',
- 'created-on' => 'تم إنشاؤها على',
- 'credited-download' => 'التحميل المعتمدة',
- 'credited-upload' => 'تحميل معتمد',
- 'current-password' => 'كلمة المرور الحالي',
- 'custom-title' => 'عنوان مخصص',
- 'delete' => 'مسح المستخدم',
- 'disable-notifications' => 'أوقف التنبيهات',
- 'disclaimer' => 'تنصل',
- 'disclaimer-info' => 'نحن بشكل افتراضي لا نقوم بتسجيل عناوين IP للمستخدمين مثل معظم أجهزة التتبع. عن طريق إضافة عنوان IP الخاص بـ seedbox أدناه ، من المتوقع أن تعرف أن عناوين IP الخاصة بك المدرجة أدناه مخزنة الآن في قاعدة البيانات الخاصة بنا ما لم تحذف السجلات.',
- 'disclaimer-info-bordered' => 'ستؤدي عناوين IP الخاصة بـ Seedbox المضافة إلى تشغيل علامة سيل عالية السرعة على السيول المصنفة من عناوين IP المدرجة أدناه',
- 'download-bon' => 'تنزيل إزالتها من متجر BON',
- 'download-recorded' => 'تحميل مسجلة',
- 'download-true' => 'تحميل صحيح',
- 'downloads' => 'التنزيلات',
- 'edit' => 'تحرير العضو',
- 'edit-profile' => 'تعديل الملف الشخصي',
- 'enable-notifications' => 'تمكين الإشعارات',
- 'expired' => 'منتهية الصلاحية',
- 'expires-on' => 'تنتهي صلاحيته في',
- 'extra' => 'إضافي',
- 'filled-request' => 'طلبات الأعضاء المملوءة',
- 'follow' => 'إتبع',
- 'follower-privacy' => 'إعدادات المتابع',
- 'follower-privacy-list' => 'اسمح للمستخدمين بعرض قائمة من متابعيك',
- 'follower-help' => 'يمكنك التحكم في مشاركة معلومات معينة متعلقة بالتابعين مع المجموعات المسموح لها بالوصول إلى ملف التعريف الخاص بك. يتم تجاوز هذه الإعدادات إذا لم تسمح لأية مجموعات بالوصول إلى متابعيك أو إذا كنت تذهب إلى Private',
- 'followers' => 'متابعون',
- 'following-notification' => 'إعدادات إعلام المستخدم المتبعة',
- 'following-notification-upload' => 'تلقي إشعار عندما يقوم المستخدم الذي يليه بتحميل سيل',
- 'following-notification-help' => 'التحكم في الإخطارات التي يتم إرسالها فيما يتعلق بإجراءات موقع المستخدم المتبع. يتم تجاوز هذه الإعدادات إذا لم تسمح لأي مجموعة بإرسال إشعارات بخصوص المستخدمين الذين تم متابعتهم أو إذا قمت بتعطيل الإشعارات',
- 'formats-are-supported' => ': الأشكال المدعومة',
- 'forum-notification' => 'إعدادات إعلام المنتدى',
- 'forum-notification-topic' => 'تلقي إشعار عندما يحصل موضوع بدأت على منشور جديد',
- 'forum-notification-help' => 'التحكم في الإخطارات التي يتم إرسالها فيما يتعلق بأنشطة المنتدى. يتم تجاوز هذه الإعدادات إذا لم تسمح لأي مجموعة بإرسال إشعارات بشأن أنشطة المنتدى أو إذا قمت بتعطيل الإشعارات',
- 'forum-privacy' => 'إعدادات المنتدى',
- 'forum-privacy-post' => 'السماح للمستخدمين بعرض قائمة منشورات المنتدى التي نشرتها',
- 'forum-privacy-topic' => 'السماح للمستخدمين بعرض قائمة مواضيع المنتدى التي بدأت',
- 'forum-help' => 'يمكنك التحكم في مشاركة إحصائيات ومعلومات خاصة بالمنتدى مع المجموعات المسموح لها بالوصول إلى ملف التعريف الخاص بك. يتم تجاوز هذه الإعدادات إذا لم تسمح لأية مجموعات بالوصول إلى الإحصاءات والمعلومات المتعلقة بالمنتدى أو إذا كنت تذهب إلى Private',
- 'forum-signature' => 'توقيع المنتدى',
- 'forums' => 'المنتديات',
- 'general' => 'جنرال لواء',
- 'general-settings' => 'الاعدادات العامة',
- 'gift-given' => 'هدية المقدمة',
- 'gift-received' => 'تلقى هدية',
- 'go-public' => 'الذهاب العامة',
- 'go-private' => 'تذهب الخاص',
- 'history' => 'التاريخ',
- 'history-table' => 'بلدي الجدول التاريخ',
- 'hit-n-runs' => 'ضرب ويدير',
- 'hit-n-runs-count' => 'عدد مرات التشغيل (طوال الوقت)',
- 'hit-n-runs-history' => 'سيل هيت ويدير التاريخ',
- 'image' => 'صورة',
- 'important' => 'مهم',
- 'important-info' => 'معلومات مهمة',
- 'information' => 'معلومات',
- 'invite-friend' => 'دعوة صديقك (البريد الإلكتروني + الرسالة المطلوبة)',
- 'invite-tree' => 'دعوة شجرة',
- 'invites' => 'تدعو',
- 'invites-banned' => 'خطأ: تم تعطيل حقوق الدعوة الخاصة بك',
- 'invites-banned-desc' => 'إذا كنت تشعر أن هذا خطأ ، فيرجى الاتصال بفريق العمل!',
- 'invites-count' => 'لديك: عد دعوة الرموز',
- 'invites-disabled' => 'انتباه: الدعوات معطلة بسبب فتح التسجيل!',
- 'invites-disabled-desc' => 'الرجاء التحقق مرة اخرى قريبا!',
- 'invites-rules' => ' قم فقط بدعوة الأشخاص الذين تعرفهم وتثق بهم. ستكون مسؤولاً شخصياً عن من تدعوهم. لا تدع نفسك ، نحن نتحقق من كل مستخدم مدعو. لا تتاجر أو تبيع الدعوات. إذا تم القبض على الشخص الذي قمت بدعوته وهو يقوم بالغش أو حساب التداول أو دعوات البيع / التداول ، سيتم تحذيرك. ',
- 'invites-send' => 'يدعو إرسال',
- 'last-login' => 'آخر تسجيل دخول',
- 'locked' => 'مقفل',
- 'locked-achievements' => 'إنجازات مغلقة',
- 'member-since' => 'عضو منذ',
- 'members-desc' => 'قائمة المستخدمين المسجلين على: العنوان مع جميع المجموعات. العثور على مستخدم الآن.',
- 'mention-notification' => '@ أذكر إعدادات الإعلام',
+ 'about' => 'حول',
+ 'about-me' => 'عني',
+ 'accepted-at' => 'مقبول في',
+ 'accepted-by' => 'قبلها',
+ 'account-notification' => 'إعدادات إعلام الحساب',
+ 'account-notification-follow' => 'تلقي إشعار عندما يتبع المستخدم حسابك',
+ 'account-notification-unfollow' => 'تلقي إشعار عندما يتابع المستخدم حسابك',
+ 'account-notification-help' => 'التحكم في الإخطارات التي يتم إرسالها بخصوص حسابك. يتم تجاوز هذه الإعدادات إذا لم تسمح لأي مجموعة بإرسال إشعارات بشأن حسابك أو إذا قمت بتعطيل الإشعارات',
+ 'account-settings' => 'إعدادت الحساب',
+ 'achievement-privacy' => 'إعدادات الإنجاز',
+ 'achievement-privacy-list' => 'اسمح للمستخدمين بعرض قائمة بإنجازاتك',
+ 'achievement-help' => 'التحكم في مشاركة المعلومات المتعلقة بالإنجاز المحدد مع المجموعات المسموح لها بالوصول إلى ملف التعريف الخاص بك. يتم تجاوز هذه الإعدادات إذا لم تسمح لأية مجموعات بالوصول إلى إنجازاتك أو إذا أصبحت خاصة',
+ 'achievements' => 'الإنجازات',
+ 'active' => 'نشيط',
+ 'active-table' => 'بلدي الجدول النشط',
+ 'active-torrents' => 'السيول النشطة',
+ 'active-warning' => 'تحذير نشط',
+ 'active-warnings' => 'تحذيرات نشطة',
+ 'add-seedbox' => 'أضف Seedbox',
+ 'all-torrents' => 'جميع السيول',
+ 'article-comments' => 'المادة تعليقات مصنوعة',
+ 'avatar' => 'الصورة الرمزية',
+ 'avg-seedtime' => 'متوسط البذور',
+ 'badges' => 'شارات',
+ 'ban' => 'حجب المستخدم',
+ 'ban-log' => 'سجل الحظر',
+ 'become-hidden' => 'تصبح مخفية',
+ 'become-visible' => 'تصبح مرئية',
+ 'bon' => 'BON',
+ 'bon-notification' => 'إعدادات إخطار بون',
+ 'bon-notification-gift' => 'تلقي إشعار عندما هدايا المستخدم لك بون',
+ 'bon-notification-help' => 'السيطرة على الإخطارات التي يتم إرسالها بشأن المعاملات بون. يتم تجاوز هذه الإعدادات إذا لم تسمح لأي مجموعة بإرسال إشعارات بخصوص BON أو إذا قمت بتعطيل الإشعارات',
+ 'bookmarks' => 'إرسال',
+ 'bounty-given' => 'مكافأة المقدمة',
+ 'bounty-received' => 'تلقى فضله',
+ 'can-chat' => 'ممكن الحديث',
+ 'can-comment' => 'يمكن التعليق',
+ 'can-download' => 'يمكن تحميل',
+ 'can-invite' => 'يمكن دعوة',
+ 'can-request' => 'يمكن طلب',
+ 'can-upload' => 'يمكن تحميل',
+ 'certified-banker' => 'مصرفي معتمد',
+ 'certified-banker-desc' => 'لديها 50،000 أو أكثر BON في البنك',
+ 'certified-downloader' => 'تنزيل معتمد',
+ 'certified-downloader-desc' => 'تم التنزيل 100 أو أكثر من السيول!',
+ 'certified-seeder' => 'بذارة معتمدة',
+ 'certified-seeder-desc' => 'البذر 150 أو أكثر السيول!',
+ 'change-email' => 'تغيير الايميل',
+ 'change-email-help' => 'سيتعين عليك إعادة تأكيد حسابك ، بعد تغيير بريدك الإلكتروني',
+ 'change-password' => 'غير كلمة السر',
+ 'change-password-help' => 'سوف تضطر إلى تسجيل الدخول مرة أخرى ، بعد تغيير كلمة المرور الخاصة بك',
+ 'client-ip-address' => 'عنوان IP للعميل',
+ 'code' => 'الشفرة',
+ 'comments' => 'تعليقات',
+ 'created-on' => 'تم إنشاؤها على',
+ 'credited-download' => 'التحميل المعتمدة',
+ 'credited-upload' => 'تحميل معتمد',
+ 'current-password' => 'كلمة المرور الحالي',
+ 'custom-title' => 'عنوان مخصص',
+ 'delete' => 'مسح المستخدم',
+ 'disable-notifications' => 'أوقف التنبيهات',
+ 'disclaimer' => 'تنصل',
+ 'disclaimer-info' => 'نحن بشكل افتراضي لا نقوم بتسجيل عناوين IP للمستخدمين مثل معظم أجهزة التتبع. عن طريق إضافة عنوان IP الخاص بـ seedbox أدناه ، من المتوقع أن تعرف أن عناوين IP الخاصة بك المدرجة أدناه مخزنة الآن في قاعدة البيانات الخاصة بنا ما لم تحذف السجلات.',
+ 'disclaimer-info-bordered' => 'ستؤدي عناوين IP الخاصة بـ Seedbox المضافة إلى تشغيل علامة سيل عالية السرعة على السيول المصنفة من عناوين IP المدرجة أدناه',
+ 'download-bon' => 'تنزيل إزالتها من متجر BON',
+ 'download-recorded' => 'تحميل مسجلة',
+ 'download-true' => 'تحميل صحيح',
+ 'downloads' => 'التنزيلات',
+ 'edit' => 'تحرير العضو',
+ 'edit-profile' => 'تعديل الملف الشخصي',
+ 'enable-notifications' => 'تمكين الإشعارات',
+ 'expired' => 'منتهية الصلاحية',
+ 'expires-on' => 'تنتهي صلاحيته في',
+ 'extra' => 'إضافي',
+ 'filled-request' => 'طلبات الأعضاء المملوءة',
+ 'follow' => 'إتبع',
+ 'follower-privacy' => 'إعدادات المتابع',
+ 'follower-privacy-list' => 'اسمح للمستخدمين بعرض قائمة من متابعيك',
+ 'follower-help' => 'يمكنك التحكم في مشاركة معلومات معينة متعلقة بالتابعين مع المجموعات المسموح لها بالوصول إلى ملف التعريف الخاص بك. يتم تجاوز هذه الإعدادات إذا لم تسمح لأية مجموعات بالوصول إلى متابعيك أو إذا كنت تذهب إلى Private',
+ 'followers' => 'متابعون',
+ 'following-notification' => 'إعدادات إعلام المستخدم المتبعة',
+ 'following-notification-upload' => 'تلقي إشعار عندما يقوم المستخدم الذي يليه بتحميل سيل',
+ 'following-notification-help' => 'التحكم في الإخطارات التي يتم إرسالها فيما يتعلق بإجراءات موقع المستخدم المتبع. يتم تجاوز هذه الإعدادات إذا لم تسمح لأي مجموعة بإرسال إشعارات بخصوص المستخدمين الذين تم متابعتهم أو إذا قمت بتعطيل الإشعارات',
+ 'formats-are-supported' => ': الأشكال المدعومة',
+ 'forum-notification' => 'إعدادات إعلام المنتدى',
+ 'forum-notification-topic' => 'تلقي إشعار عندما يحصل موضوع بدأت على منشور جديد',
+ 'forum-notification-help' => 'التحكم في الإخطارات التي يتم إرسالها فيما يتعلق بأنشطة المنتدى. يتم تجاوز هذه الإعدادات إذا لم تسمح لأي مجموعة بإرسال إشعارات بشأن أنشطة المنتدى أو إذا قمت بتعطيل الإشعارات',
+ 'forum-privacy' => 'إعدادات المنتدى',
+ 'forum-privacy-post' => 'السماح للمستخدمين بعرض قائمة منشورات المنتدى التي نشرتها',
+ 'forum-privacy-topic' => 'السماح للمستخدمين بعرض قائمة مواضيع المنتدى التي بدأت',
+ 'forum-help' => 'يمكنك التحكم في مشاركة إحصائيات ومعلومات خاصة بالمنتدى مع المجموعات المسموح لها بالوصول إلى ملف التعريف الخاص بك. يتم تجاوز هذه الإعدادات إذا لم تسمح لأية مجموعات بالوصول إلى الإحصاءات والمعلومات المتعلقة بالمنتدى أو إذا كنت تذهب إلى Private',
+ 'forum-signature' => 'توقيع المنتدى',
+ 'forums' => 'المنتديات',
+ 'general' => 'جنرال لواء',
+ 'general-settings' => 'الاعدادات العامة',
+ 'gift-given' => 'هدية المقدمة',
+ 'gift-received' => 'تلقى هدية',
+ 'go-public' => 'الذهاب العامة',
+ 'go-private' => 'تذهب الخاص',
+ 'history' => 'التاريخ',
+ 'history-table' => 'بلدي الجدول التاريخ',
+ 'hit-n-runs' => 'ضرب ويدير',
+ 'hit-n-runs-count' => 'عدد مرات التشغيل (طوال الوقت)',
+ 'hit-n-runs-history' => 'سيل هيت ويدير التاريخ',
+ 'image' => 'صورة',
+ 'important' => 'مهم',
+ 'important-info' => 'معلومات مهمة',
+ 'information' => 'معلومات',
+ 'invite-friend' => 'دعوة صديقك (البريد الإلكتروني + الرسالة المطلوبة)',
+ 'invite-tree' => 'دعوة شجرة',
+ 'invites' => 'تدعو',
+ 'invites-banned' => 'خطأ: تم تعطيل حقوق الدعوة الخاصة بك',
+ 'invites-banned-desc' => 'إذا كنت تشعر أن هذا خطأ ، فيرجى الاتصال بفريق العمل!',
+ 'invites-count' => 'لديك: عد دعوة الرموز',
+ 'invites-disabled' => 'انتباه: الدعوات معطلة بسبب فتح التسجيل!',
+ 'invites-disabled-desc' => 'الرجاء التحقق مرة اخرى قريبا!',
+ 'invites-rules' => ' قم فقط بدعوة الأشخاص الذين تعرفهم وتثق بهم. ستكون مسؤولاً شخصياً عن من تدعوهم. لا تدع نفسك ، نحن نتحقق من كل مستخدم مدعو. لا تتاجر أو تبيع الدعوات. إذا تم القبض على الشخص الذي قمت بدعوته وهو يقوم بالغش أو حساب التداول أو دعوات البيع / التداول ، سيتم تحذيرك. ',
+ 'invites-send' => 'يدعو إرسال',
+ 'last-login' => 'آخر تسجيل دخول',
+ 'locked' => 'مقفل',
+ 'locked-achievements' => 'إنجازات مغلقة',
+ 'member-since' => 'عضو منذ',
+ 'members-desc' => 'قائمة المستخدمين المسجلين على: العنوان مع جميع المجموعات. العثور على مستخدم الآن.',
+ 'mention-notification' => '@ أذكر إعدادات الإعلام',
'mention-notification-article-comment' => 'تلقي إشعار عندما تكون @ المذكورة في تعليق المقالة',
'mention-notification-torrent-comment' => 'تلقي إشعار عندما تكون @ المذكورة في تعليق سيل',
'mention-notification-request-comment' => 'تلقي إشعار عندما تكون @ المذكورة في تعليق الطلب',
- 'mention-notification-forum-post' => 'تلقي إشعار عندما تكون @ المذكورة في منشور المنتدى',
- 'mention-notification-help' => 'السيطرة على الإخطارات التي يتم إرسالها عند المستخدمmentions لك. يتم تجاوز هذه الإعدادات إذا لم تسمح لأي مجموعة بإرسال إشعارات إذا كان هناك مستخدمmentions لك أو إذا تم تعطيل الإشعارات',
- 'moderated-by' => 'يديرها: وزارة الدفاع على',
- 'my-bonus-points' => 'نقاط المكافآت الخاصة بي',
- 'my-bookmarks' => 'متجر كتبي',
- 'my-fl-tokens' => 'بلدي الرموز FL',
- 'my-general-settings' => 'الإعدادات العامة الخاصة بي',
- 'my-notification' => 'إخطاري',
- 'my-notification-settings' => 'إعدادات الإشعارات الخاصة بي',
- 'my-privacy' => 'خصوصيتي',
- 'my-privacy-settings' => 'إعدادات الخصوصية الخاصة بي',
- 'my-profile' => 'ملفي',
- 'my-requested' => 'بلدي المطلوبة',
- 'my-security' => 'بلدي الأمن',
- 'my-security-settings' => 'إعدادات الأمان الخاصة بي',
- 'my-seedboxes' => 'صناديق البذور الخاصة بي',
- 'my-settings' => 'اعداداتي',
- 'my-wishlist' => 'قائمة امنياتي',
- 'no-logs' => 'لا توجد سجلات دعوة في قاعدة البيانات لهذا المستخدم!',
- 'no-seedboxes' => 'لا صناديق البذور 😔',
- 'not-authorized' => 'لا تملك الصلاحيات لتصفح هذه الصفحة. هذا العضو يفضل أن يكون مخفيًا مثل النينجا!',
- 'note' => 'ملحوظة',
- 'notification' => 'إعلام',
- 'notification-settings' => 'إعدادات الإشعار',
- 'notification-from-account' => 'تلقي إعلامات الحساب من',
- 'notification-from-account-help' => 'سوف تتلقى إعلامات الحساب فقط من النظام والموظفين والمجموعات التالية. يتم تجاوز هذه الإعدادات إذا قمت بتعطيل الإشعارات',
- 'notification-from-bon' => 'تلقي الإخطارات بون من',
- 'notification-from-bon-help' => 'سوف تتلقى فقط إشعارات BON من النظام والموظفين والمجموعات التالية. يتم تجاوز هذه الإعدادات إذا قمت بتعطيل الإشعارات',
- 'notification-from-following' => 'تلقي إعلامات المستخدم المتبعه من',
- 'notification-from-following-help' => 'سوف تتلقى إعلامات المستخدم المتبع فقط من المجموعات التالية. يتم تجاوز هذه الإعدادات إذا قمت بتعطيل الإشعارات',
- 'notification-from-forum' => 'تلقي إشعارات المنتدى من',
- 'notification-from-forum-help' => 'سوف تتلقى إعلامات المنتدى فقط من النظام والموظفين والمجموعات التالية. يتم تجاوز هذه الإعدادات إذا قمت بتعطيل الإشعارات',
- 'notification-from-subscription' => 'تلقي إعلامات الاشتراك من',
- 'notification-from-subscription-help' => 'سوف تتلقى إعلامات المنتدى فقط من النظام والموظفين والمجموعات التالية. يتم تجاوز هذه الإعدادات إذا قمت بتعطيل الإشعارات',
- 'notification-from-torrent' => 'تلقي إخطارات السيل من',
- 'notification-from-torrent-help' => 'سوف تتلقى فقط إعلامات سيل من النظام والموظفين والمجموعات التالية. يتم تجاوز هذه الإعدادات إذا قمت بتعطيل الإشعارات',
- 'notification-from-mention' => 'تلقي إشعارات @ من',
- 'notification-from-mention-help' => 'سوف تتلقى إشعاراتmention فقط من النظام والموظفين والمجموعات التالية. يتم تجاوز هذه الإعدادات إذا قمت بتعطيل الإشعارات',
- 'notification-from-request' => 'تلقي إعلامات الطلب من',
- 'notification-from-request-help' => 'سوف تتلقى فقط إخطارات الطلب من النظام والموظفين والمجموعات التالية. يتم تجاوز هذه الإعدادات إذا قمت بتعطيل الإشعارات',
- 'notifications' => 'إخطارات',
- 'offline' => 'العضو غير متصل!',
- 'online' => 'العضو متواجد',
- 'options' => 'خيارات',
- 'other-help' => 'يمكنك التحكم في مشاركة الإحصاءات والمعلومات الأخرى مع المجموعات المسموح لها بالوصول إلى ملف التعريف الخاص بك. يتم تجاوز هذه الإعدادات إذا لم تسمح لأية مجموعات بالوصول إلى الإحصاءات والمعلومات الأخرى الخاصة بك أو إذا كنت تذهب إلى Private',
- 'other-privacy' => 'اعدادات اخرى',
- 'other-privacy-online' => 'السماح للمستخدمين برؤيتك في حظر المستخدمين عبر الإنترنت',
- 'passkey' => 'PID',
- 'passkey-warning' => 'PID يشبه كلمة المرور الخاصة بك ، يجب عليك الاحتفاظ بها آمنة!',
- 'pending-achievements' => 'في انتظار الإنجازات',
- 'per-torrent' => 'لكل سيل',
- 'posts' => 'المشاركات',
- 'posts-posted' => 'منتدى المشاركات',
- 'privacy' => 'الإجمالية',
- 'privacy-settings' => 'إعدادات الخصوصية',
- 'private-info' => 'معلومات خاصة',
- 'private-forum-profile' => 'انتباه: هذا الموضوع للأعضاء تاريخ النشر قد تم ضبطه على الخصوصية!',
- 'private-profile' => 'انتباه: تم ضبط هذا الملف الشخصي على الخصوصية',
- 'profile' => 'الملف الشخصي',
- 'profile-desc' => 'المستخدم: ملف تعريف المستخدم المسجل في: العنوان',
- 'profile-privacy' => 'إعدادات الملف الشخصي',
- 'profile-privacy-torrent-count' => 'شارك العدد الإجمالي للتنزيلات والتحميلات والبذور والعلق',
- 'profile-privacy-torrent-ratio' => 'شارك إجمالي بيانات التحميل / التنزيل مع النسبة المسجلة',
- 'profile-privacy-torrent-seed' => 'مشاركة مجموع وقتك البذر ومتوسط',
- 'profile-privacy-title' => 'مشاركة معلومات العنوان الشخصية الخاصة بك',
- 'profile-privacy-about' => 'مشاركة معلوماتك الشخصية عني',
- 'profile-privacy-bon-extra' => 'مشاركة إحصائيات BON الخاصة بك',
- 'profile-privacy-comment-extra' => 'مشاركة إحصائيات تعليقك',
- 'profile-privacy-forum-extra' => 'مشاركة إحصائيات المنتدى الخاص بك',
- 'profile-privacy-request-extra' => 'مشاركة إحصائيات طلبك',
- 'profile-privacy-torrent-extra' => 'مشاركة إحصائيات تورنت',
- 'profile-privacy-badge' => 'مشاركة شاراتك المكتسبة',
- 'profile-privacy-achievement' => 'مشاركة إنجازاتك الأخيرة',
- 'profile-privacy-follower' => 'شارك متابعيك الجدد',
- 'profile-privacy-warning' => 'مشاركة تحذيرات H&R الخاصة بك',
- 'profile-privacy-help' => 'تحكم في الإحصائيات وأجزاء المعلومات التي تظهر في ملفك الشخصي. يتم تجاوز هذه الإعدادات إذا لم تسمح لأي مجموعة بالوصول إلى ملف التعريف الخاص بك أو إذا كنت تستخدم برنامج Private',
- 'public-info' => 'معلومات عامة',
- 'recent-achievements' => 'الانجازات الاخيرة',
- 'recent-followers' => 'المتابعين الجدد',
- 'registration-date' => 'تاريخ التسجيل',
- 'report' => 'أبلغ عن',
- 'request-help' => 'يمكنك التحكم في مشاركة إحصائيات ومعلومات متعلقة بطلب معين مع المجموعات المسموح لها بالوصول إلى ملف التعريف الخاص بك. يتم تجاوز هذه الإعدادات إذا لم تسمح لأية مجموعات بالوصول إلى الإحصاءات والمعلومات ذات الصلة المطلوبة أو إذا كنت تذهب إلى Private',
- 'request' => 'طلب',
- 'requested' => 'طلب',
- 'requests' => 'طلبات',
- 'request-comments' => 'طلب التعليقات',
- 'request-notification' => 'طلب إعدادات الإخطار',
- 'request-notification-bounty' => 'تلقي إشعار عندما يحصل سيل المطلوبة مكافأة جديدة',
- 'request-notification-comment' => 'تلقي إشعار عندما يحصل سيل المطلوب على تعليق جديد',
- 'request-notification-fill' => 'تلقي إشعار عندما يتم ملء سيل المطلوبة',
- 'request-notification-fill-approve' => 'تلقي إخطارًا عند الموافقة على تعبئة سيل مطلوبة',
- 'request-notification-fill-reject' => 'تلقي إشعار عندما يتم رفض طلب تعبئة سيل',
- 'request-notification-claim' => 'تلقي إشعار عند المطالبة سيل',
- 'request-notification-unclaim' => 'تلقي إشعار عندما يحصل على طلب سيل',
- 'request-notification-help' => 'السيطرة على الإخطارات التي يتم إرسالها فيما يتعلق بأنشطة الطلب. يتم تجاوز هذه الإعدادات إذا لم تسمح لأي مجموعة بإرسال إشعارات بشأن أنشطة الطلب أو إذا قمت بتعطيل الإشعارات',
- 'request-privacy' => 'طلب إعدادات',
- 'request-privacy-requested' => 'اسمح للمستخدمين بعرض قائمة بالطلبات التي قدمتها',
- 'reset-passkey' => 'إعادة تعيين مفتاح المرور (PID)',
- 'reset-passkey-help' => 'سيتعين عليك إعادة تنزيل / إعادة تحميل جميع السيول النشطة ، بعد إعادة تعيين PID',
- 'reset-rss' => 'إعادة تعيين مفتاح RSS (RID)',
- 'reset-rss-help' => 'سيكون عليك إعادة تحميل جميع خلاصات RSS النشطة ، بعد إعادة تعيين RID',
- 'resurrections' => 'الإحياء',
- 'search' => 'بحث سريع عن طريق اسم المستخدم',
- 'security' => 'الأمان',
- 'security-settings' => 'اعدادات الامان',
- 'seedboxes' => 'Seedboxes',
- 'seeds' => 'بذور',
- 'send-invite' => 'ارسل دعوة',
- 'sender' => 'مرسل',
- 'settings' => 'الإعدادات',
- 'show-passkey' => 'إظهار PID',
- 'staff-noted' => 'حساب الموظفين',
- 'statistics' => 'الإحصاء',
- 'subscription-notification' => 'إعدادات إعلام الاشتراك',
- 'subscription-notification-forum' => 'تلقي إشعار عندما يحصل منتدى مشترك على موضوع جديد',
- 'subscription-notification-topic' => 'تلقي إشعار عندما يحصل موضوع مشترك على منشور جديد',
- 'subscription-notification-help' => 'السيطرة على الإخطارات التي يتم إرسالها فيما يتعلق اشتراكاتك. يتم تجاوز هذه الإعدادات إذا لم تسمح لأي مجموعة بإرسال إشعارات بخصوص اشتراكاتك أو إذا قمت بتعطيل الإعلامات',
- 'thanks-given' => 'عيد الشكر',
- 'thanks-received' => 'شكرا تلقى',
- 'tips-given' => 'نصائح معينة',
- 'tips-received' => 'نصائح وردت',
- 'title' => 'عنوان',
- 'top-bankers' => 'كبار المصرفيين',
- 'top-downloaders-data' => 'أهم برامج التنزيل (البيانات)',
- 'top-leechers' => 'كبار Leechers',
- 'top-leechers-count' => 'كبار المتسكعون (العد)',
- 'top-seeders' => 'كبار البذور',
- 'top-seeders-count' => 'أهم البذور (عدد)',
- 'top-seeding-size' => 'أعلى البذور (الحجم)',
- 'top-seedtime' => 'أعلى البذور',
- 'top-uploaders-data' => 'أهم برامج التحميل (البيانات)',
- 'top-uploaders-count' => 'أهم برامج التحميل (عدد)',
- 'topics' => 'المواضيع',
- 'topics-started' => 'منتدى المواضيع بدأت',
- 'torrent-comments' => 'سيل تعليقات أدلى',
- 'torrent-help' => 'تحكم في مشاركة إحصائيات ومعلومات متعلقة بسيل معين مع مجموعات يُسمح لها بالوصول إلى ملفك الشخصي. يتم تجاوز هذه الإعدادات إذا لم تسمح لأية مجموعات بالوصول إلى إحصائيات ومعلومات تورنت أو إذا كنت تستخدم Private Private',
- 'torrent-notification' => 'إعدادات الإخطار السيل',
- 'torrent-notification-comment' => 'تلقي إشعار عندما يحصل سيل محمّل على تعليق جديد',
- 'torrent-notification-thank' => 'تلقي إشعار عندما يحصل سيل محمّل على شكر جديد',
- 'torrent-notification-tip' => 'تلقي إشعار عندما يحصل سيل محمّل على معلومات جديدة',
- 'torrent-notification-help' => 'السيطرة على الإخطارات التي يتم إرسالها بشأن أنشطة سيل. يتم تجاوز هذه الإعدادات إذا لم تسمح لأي مجموعة بإرسال إشعارات بشأن أنشطة التورنت أو إذا قمت بتعطيل الإشعارات',
- 'torrent-privacy' => 'إعدادات السيل',
- 'torrent-privacy-download' => 'السماح للمستخدمين بعرض قائمة السيول التي قمت بتنزيلها',
- 'torrent-privacy-upload' => 'اسمح للمستخدمين بعرض قائمة السيول التي حمّلتها',
- 'torrent-privacy-peer' => 'اسمح للمستخدمين برؤيتك في جدول سجل نظير سيل',
- 'torrents' => 'السيول',
- 'torrents-history' => 'السيول التاريخ',
- 'total-download' => 'مجموع التنزيل',
- 'total-downloads' => 'إجمالي التنزيلات',
- 'total-leeching' => 'علقة كاملة',
- 'total-seeding' => 'مجموع البذر',
- 'total-seedtime' => 'مجموع البذور',
- 'total-upload' => 'مجموع التحميل',
- 'total-uploads' => 'إجمالي التحميلات',
- 'unban' => 'المستخدم غير المحظور',
- 'unfollow' => 'الغاء المتابعة',
- 'unlocked' => 'مفتوحة',
- 'unlocked-achievements' => 'إنجازات غير مقفلة',
- 'unsatisfieds' => 'Unsatisfieds',
- 'upload-bon' => 'تم اضافة التحميل من BON Store',
- 'upload-recorded' => 'تحميل مسجلة',
- 'upload-true' => 'تحميل صحيح',
- 'uploads' => 'تحميل',
- 'uploads-table' => 'تحميل الجدول',
- 'user' => 'المستعمل',
- 'user-id' => 'هوية المستخدم',
- 'username-seedbox' => 'اسم المستخدم',
- 'visible-to-achievement' => 'إنجازات مرئية ل',
- 'visible-to-achievement-help' => 'ستكون إنجازاتك مرئية فقط للموظفين والمجموعات التالية. يتم تجاوز هذه الإعدادات إذا كنت Go Private',
- 'visible-to-follower' => 'أتباع مرئي لـ',
- 'visible-to-follower-help' => 'سيكون متابعيك مرئيًا للموظفين والمجموعات التالية فقط. يتم تجاوز هذه الإعدادات إذا كنت Go Private',
- 'visible-to-forum' => 'منتدى المعلومات المرئية إلى',
- 'visible-to-forum-help' => 'ستكون معلومات المنتدى مرئية فقط للموظفين والمجموعات التالية. يتم تجاوز هذه الإعدادات إذا كنت Go Private',
- 'visible-to-other' => 'أخرى مرئية ل',
- 'visible-to-other-help' => 'ستكون المعلومات الأخرى المتعلقة بحسابك مرئية فقط للموظفين والمجموعات التالية. يتم تجاوز هذه الإعدادات إذا كنت Go Private أو إذا Go Hidden',
- 'visible-to-profile' => 'الملف الشخصي مرئي ل',
- 'visible-to-profile-help' => 'سيكون ملفك الشخصي مرئيًا للموظفين والمجموعات التالية فقط. يتم تجاوز هذه الإعدادات إذا كنت Go Private',
- 'visible-to-request' => 'طلب معلومات مرئية لـ',
- 'visible-to-request-help' => 'ستكون معلومات طلبك مرئية فقط للموظفين والمجموعات التالية. يتم تجاوز هذه الإعدادات إذا كنت Go Private',
- 'visible-to-torrent' => 'سيل المعلومات المرئية ل',
- 'visible-to-torrent-help' => 'ستكون معلومات تورنت مرئية فقط للموظفين والمجموعات التالية يتم تجاوز هذه الإعدادات إذا كنت Go Private أو إذا Go Hidden',
- 'warned-on' => 'حذر في',
- 'warning' => 'تحذير',
- 'warning-log' => 'سجل تحذير',
- 'wishlist' => 'الأماني',
+ 'mention-notification-forum-post' => 'تلقي إشعار عندما تكون @ المذكورة في منشور المنتدى',
+ 'mention-notification-help' => 'السيطرة على الإخطارات التي يتم إرسالها عند المستخدمmentions لك. يتم تجاوز هذه الإعدادات إذا لم تسمح لأي مجموعة بإرسال إشعارات إذا كان هناك مستخدمmentions لك أو إذا تم تعطيل الإشعارات',
+ 'moderated-by' => 'يديرها: وزارة الدفاع على',
+ 'my-bonus-points' => 'نقاط المكافآت الخاصة بي',
+ 'my-bookmarks' => 'متجر كتبي',
+ 'my-fl-tokens' => 'بلدي الرموز FL',
+ 'my-general-settings' => 'الإعدادات العامة الخاصة بي',
+ 'my-notification' => 'إخطاري',
+ 'my-notification-settings' => 'إعدادات الإشعارات الخاصة بي',
+ 'my-privacy' => 'خصوصيتي',
+ 'my-privacy-settings' => 'إعدادات الخصوصية الخاصة بي',
+ 'my-profile' => 'ملفي',
+ 'my-requested' => 'بلدي المطلوبة',
+ 'my-security' => 'بلدي الأمن',
+ 'my-security-settings' => 'إعدادات الأمان الخاصة بي',
+ 'my-seedboxes' => 'صناديق البذور الخاصة بي',
+ 'my-settings' => 'اعداداتي',
+ 'my-wishlist' => 'قائمة امنياتي',
+ 'no-logs' => 'لا توجد سجلات دعوة في قاعدة البيانات لهذا المستخدم!',
+ 'no-seedboxes' => 'لا صناديق البذور 😔',
+ 'not-authorized' => 'لا تملك الصلاحيات لتصفح هذه الصفحة. هذا العضو يفضل أن يكون مخفيًا مثل النينجا!',
+ 'note' => 'ملحوظة',
+ 'notification' => 'إعلام',
+ 'notification-settings' => 'إعدادات الإشعار',
+ 'notification-from-account' => 'تلقي إعلامات الحساب من',
+ 'notification-from-account-help' => 'سوف تتلقى إعلامات الحساب فقط من النظام والموظفين والمجموعات التالية. يتم تجاوز هذه الإعدادات إذا قمت بتعطيل الإشعارات',
+ 'notification-from-bon' => 'تلقي الإخطارات بون من',
+ 'notification-from-bon-help' => 'سوف تتلقى فقط إشعارات BON من النظام والموظفين والمجموعات التالية. يتم تجاوز هذه الإعدادات إذا قمت بتعطيل الإشعارات',
+ 'notification-from-following' => 'تلقي إعلامات المستخدم المتبعه من',
+ 'notification-from-following-help' => 'سوف تتلقى إعلامات المستخدم المتبع فقط من المجموعات التالية. يتم تجاوز هذه الإعدادات إذا قمت بتعطيل الإشعارات',
+ 'notification-from-forum' => 'تلقي إشعارات المنتدى من',
+ 'notification-from-forum-help' => 'سوف تتلقى إعلامات المنتدى فقط من النظام والموظفين والمجموعات التالية. يتم تجاوز هذه الإعدادات إذا قمت بتعطيل الإشعارات',
+ 'notification-from-subscription' => 'تلقي إعلامات الاشتراك من',
+ 'notification-from-subscription-help' => 'سوف تتلقى إعلامات المنتدى فقط من النظام والموظفين والمجموعات التالية. يتم تجاوز هذه الإعدادات إذا قمت بتعطيل الإشعارات',
+ 'notification-from-torrent' => 'تلقي إخطارات السيل من',
+ 'notification-from-torrent-help' => 'سوف تتلقى فقط إعلامات سيل من النظام والموظفين والمجموعات التالية. يتم تجاوز هذه الإعدادات إذا قمت بتعطيل الإشعارات',
+ 'notification-from-mention' => 'تلقي إشعارات @ من',
+ 'notification-from-mention-help' => 'سوف تتلقى إشعاراتmention فقط من النظام والموظفين والمجموعات التالية. يتم تجاوز هذه الإعدادات إذا قمت بتعطيل الإشعارات',
+ 'notification-from-request' => 'تلقي إعلامات الطلب من',
+ 'notification-from-request-help' => 'سوف تتلقى فقط إخطارات الطلب من النظام والموظفين والمجموعات التالية. يتم تجاوز هذه الإعدادات إذا قمت بتعطيل الإشعارات',
+ 'notifications' => 'إخطارات',
+ 'offline' => 'العضو غير متصل!',
+ 'online' => 'العضو متواجد',
+ 'options' => 'خيارات',
+ 'other-help' => 'يمكنك التحكم في مشاركة الإحصاءات والمعلومات الأخرى مع المجموعات المسموح لها بالوصول إلى ملف التعريف الخاص بك. يتم تجاوز هذه الإعدادات إذا لم تسمح لأية مجموعات بالوصول إلى الإحصاءات والمعلومات الأخرى الخاصة بك أو إذا كنت تذهب إلى Private',
+ 'other-privacy' => 'اعدادات اخرى',
+ 'other-privacy-online' => 'السماح للمستخدمين برؤيتك في حظر المستخدمين عبر الإنترنت',
+ 'passkey' => 'PID',
+ 'passkey-warning' => 'PID يشبه كلمة المرور الخاصة بك ، يجب عليك الاحتفاظ بها آمنة!',
+ 'pending-achievements' => 'في انتظار الإنجازات',
+ 'per-torrent' => 'لكل سيل',
+ 'posts' => 'المشاركات',
+ 'posts-posted' => 'منتدى المشاركات',
+ 'privacy' => 'الإجمالية',
+ 'privacy-settings' => 'إعدادات الخصوصية',
+ 'private-info' => 'معلومات خاصة',
+ 'private-forum-profile' => 'انتباه: هذا الموضوع للأعضاء تاريخ النشر قد تم ضبطه على الخصوصية!',
+ 'private-profile' => 'انتباه: تم ضبط هذا الملف الشخصي على الخصوصية',
+ 'profile' => 'الملف الشخصي',
+ 'profile-desc' => 'المستخدم: ملف تعريف المستخدم المسجل في: العنوان',
+ 'profile-privacy' => 'إعدادات الملف الشخصي',
+ 'profile-privacy-torrent-count' => 'شارك العدد الإجمالي للتنزيلات والتحميلات والبذور والعلق',
+ 'profile-privacy-torrent-ratio' => 'شارك إجمالي بيانات التحميل / التنزيل مع النسبة المسجلة',
+ 'profile-privacy-torrent-seed' => 'مشاركة مجموع وقتك البذر ومتوسط',
+ 'profile-privacy-title' => 'مشاركة معلومات العنوان الشخصية الخاصة بك',
+ 'profile-privacy-about' => 'مشاركة معلوماتك الشخصية عني',
+ 'profile-privacy-bon-extra' => 'مشاركة إحصائيات BON الخاصة بك',
+ 'profile-privacy-comment-extra' => 'مشاركة إحصائيات تعليقك',
+ 'profile-privacy-forum-extra' => 'مشاركة إحصائيات المنتدى الخاص بك',
+ 'profile-privacy-request-extra' => 'مشاركة إحصائيات طلبك',
+ 'profile-privacy-torrent-extra' => 'مشاركة إحصائيات تورنت',
+ 'profile-privacy-badge' => 'مشاركة شاراتك المكتسبة',
+ 'profile-privacy-achievement' => 'مشاركة إنجازاتك الأخيرة',
+ 'profile-privacy-follower' => 'شارك متابعيك الجدد',
+ 'profile-privacy-warning' => 'مشاركة تحذيرات H&R الخاصة بك',
+ 'profile-privacy-help' => 'تحكم في الإحصائيات وأجزاء المعلومات التي تظهر في ملفك الشخصي. يتم تجاوز هذه الإعدادات إذا لم تسمح لأي مجموعة بالوصول إلى ملف التعريف الخاص بك أو إذا كنت تستخدم برنامج Private',
+ 'public-info' => 'معلومات عامة',
+ 'recent-achievements' => 'الانجازات الاخيرة',
+ 'recent-followers' => 'المتابعين الجدد',
+ 'registration-date' => 'تاريخ التسجيل',
+ 'report' => 'أبلغ عن',
+ 'request-help' => 'يمكنك التحكم في مشاركة إحصائيات ومعلومات متعلقة بطلب معين مع المجموعات المسموح لها بالوصول إلى ملف التعريف الخاص بك. يتم تجاوز هذه الإعدادات إذا لم تسمح لأية مجموعات بالوصول إلى الإحصاءات والمعلومات ذات الصلة المطلوبة أو إذا كنت تذهب إلى Private',
+ 'request' => 'طلب',
+ 'requested' => 'طلب',
+ 'requests' => 'طلبات',
+ 'request-comments' => 'طلب التعليقات',
+ 'request-notification' => 'طلب إعدادات الإخطار',
+ 'request-notification-bounty' => 'تلقي إشعار عندما يحصل سيل المطلوبة مكافأة جديدة',
+ 'request-notification-comment' => 'تلقي إشعار عندما يحصل سيل المطلوب على تعليق جديد',
+ 'request-notification-fill' => 'تلقي إشعار عندما يتم ملء سيل المطلوبة',
+ 'request-notification-fill-approve' => 'تلقي إخطارًا عند الموافقة على تعبئة سيل مطلوبة',
+ 'request-notification-fill-reject' => 'تلقي إشعار عندما يتم رفض طلب تعبئة سيل',
+ 'request-notification-claim' => 'تلقي إشعار عند المطالبة سيل',
+ 'request-notification-unclaim' => 'تلقي إشعار عندما يحصل على طلب سيل',
+ 'request-notification-help' => 'السيطرة على الإخطارات التي يتم إرسالها فيما يتعلق بأنشطة الطلب. يتم تجاوز هذه الإعدادات إذا لم تسمح لأي مجموعة بإرسال إشعارات بشأن أنشطة الطلب أو إذا قمت بتعطيل الإشعارات',
+ 'request-privacy' => 'طلب إعدادات',
+ 'request-privacy-requested' => 'اسمح للمستخدمين بعرض قائمة بالطلبات التي قدمتها',
+ 'reset-passkey' => 'إعادة تعيين مفتاح المرور (PID)',
+ 'reset-passkey-help' => 'سيتعين عليك إعادة تنزيل / إعادة تحميل جميع السيول النشطة ، بعد إعادة تعيين PID',
+ 'reset-rss' => 'إعادة تعيين مفتاح RSS (RID)',
+ 'reset-rss-help' => 'سيكون عليك إعادة تحميل جميع خلاصات RSS النشطة ، بعد إعادة تعيين RID',
+ 'resurrections' => 'الإحياء',
+ 'search' => 'بحث سريع عن طريق اسم المستخدم',
+ 'security' => 'الأمان',
+ 'security-settings' => 'اعدادات الامان',
+ 'seedboxes' => 'Seedboxes',
+ 'seeds' => 'بذور',
+ 'send-invite' => 'ارسل دعوة',
+ 'sender' => 'مرسل',
+ 'settings' => 'الإعدادات',
+ 'show-passkey' => 'إظهار PID',
+ 'staff-noted' => 'حساب الموظفين',
+ 'statistics' => 'الإحصاء',
+ 'subscription-notification' => 'إعدادات إعلام الاشتراك',
+ 'subscription-notification-forum' => 'تلقي إشعار عندما يحصل منتدى مشترك على موضوع جديد',
+ 'subscription-notification-topic' => 'تلقي إشعار عندما يحصل موضوع مشترك على منشور جديد',
+ 'subscription-notification-help' => 'السيطرة على الإخطارات التي يتم إرسالها فيما يتعلق اشتراكاتك. يتم تجاوز هذه الإعدادات إذا لم تسمح لأي مجموعة بإرسال إشعارات بخصوص اشتراكاتك أو إذا قمت بتعطيل الإعلامات',
+ 'thanks-given' => 'عيد الشكر',
+ 'thanks-received' => 'شكرا تلقى',
+ 'tips-given' => 'نصائح معينة',
+ 'tips-received' => 'نصائح وردت',
+ 'title' => 'عنوان',
+ 'top-bankers' => 'كبار المصرفيين',
+ 'top-downloaders-data' => 'أهم برامج التنزيل (البيانات)',
+ 'top-leechers' => 'كبار Leechers',
+ 'top-leechers-count' => 'كبار المتسكعون (العد)',
+ 'top-seeders' => 'كبار البذور',
+ 'top-seeders-count' => 'أهم البذور (عدد)',
+ 'top-seeding-size' => 'أعلى البذور (الحجم)',
+ 'top-seedtime' => 'أعلى البذور',
+ 'top-uploaders-data' => 'أهم برامج التحميل (البيانات)',
+ 'top-uploaders-count' => 'أهم برامج التحميل (عدد)',
+ 'topics' => 'المواضيع',
+ 'topics-started' => 'منتدى المواضيع بدأت',
+ 'torrent-comments' => 'سيل تعليقات أدلى',
+ 'torrent-help' => 'تحكم في مشاركة إحصائيات ومعلومات متعلقة بسيل معين مع مجموعات يُسمح لها بالوصول إلى ملفك الشخصي. يتم تجاوز هذه الإعدادات إذا لم تسمح لأية مجموعات بالوصول إلى إحصائيات ومعلومات تورنت أو إذا كنت تستخدم Private Private',
+ 'torrent-notification' => 'إعدادات الإخطار السيل',
+ 'torrent-notification-comment' => 'تلقي إشعار عندما يحصل سيل محمّل على تعليق جديد',
+ 'torrent-notification-thank' => 'تلقي إشعار عندما يحصل سيل محمّل على شكر جديد',
+ 'torrent-notification-tip' => 'تلقي إشعار عندما يحصل سيل محمّل على معلومات جديدة',
+ 'torrent-notification-help' => 'السيطرة على الإخطارات التي يتم إرسالها بشأن أنشطة سيل. يتم تجاوز هذه الإعدادات إذا لم تسمح لأي مجموعة بإرسال إشعارات بشأن أنشطة التورنت أو إذا قمت بتعطيل الإشعارات',
+ 'torrent-privacy' => 'إعدادات السيل',
+ 'torrent-privacy-download' => 'السماح للمستخدمين بعرض قائمة السيول التي قمت بتنزيلها',
+ 'torrent-privacy-upload' => 'اسمح للمستخدمين بعرض قائمة السيول التي حمّلتها',
+ 'torrent-privacy-peer' => 'اسمح للمستخدمين برؤيتك في جدول سجل نظير سيل',
+ 'torrents' => 'السيول',
+ 'torrents-history' => 'السيول التاريخ',
+ 'total-download' => 'مجموع التنزيل',
+ 'total-downloads' => 'إجمالي التنزيلات',
+ 'total-leeching' => 'علقة كاملة',
+ 'total-seeding' => 'مجموع البذر',
+ 'total-seedtime' => 'مجموع البذور',
+ 'total-upload' => 'مجموع التحميل',
+ 'total-uploads' => 'إجمالي التحميلات',
+ 'unban' => 'المستخدم غير المحظور',
+ 'unfollow' => 'الغاء المتابعة',
+ 'unlocked' => 'مفتوحة',
+ 'unlocked-achievements' => 'إنجازات غير مقفلة',
+ 'unsatisfieds' => 'Unsatisfieds',
+ 'upload-bon' => 'تم اضافة التحميل من BON Store',
+ 'upload-recorded' => 'تحميل مسجلة',
+ 'upload-true' => 'تحميل صحيح',
+ 'uploads' => 'تحميل',
+ 'uploads-table' => 'تحميل الجدول',
+ 'user' => 'المستعمل',
+ 'user-id' => 'هوية المستخدم',
+ 'username-seedbox' => 'اسم المستخدم',
+ 'visible-to-achievement' => 'إنجازات مرئية ل',
+ 'visible-to-achievement-help' => 'ستكون إنجازاتك مرئية فقط للموظفين والمجموعات التالية. يتم تجاوز هذه الإعدادات إذا كنت Go Private',
+ 'visible-to-follower' => 'أتباع مرئي لـ',
+ 'visible-to-follower-help' => 'سيكون متابعيك مرئيًا للموظفين والمجموعات التالية فقط. يتم تجاوز هذه الإعدادات إذا كنت Go Private',
+ 'visible-to-forum' => 'منتدى المعلومات المرئية إلى',
+ 'visible-to-forum-help' => 'ستكون معلومات المنتدى مرئية فقط للموظفين والمجموعات التالية. يتم تجاوز هذه الإعدادات إذا كنت Go Private',
+ 'visible-to-other' => 'أخرى مرئية ل',
+ 'visible-to-other-help' => 'ستكون المعلومات الأخرى المتعلقة بحسابك مرئية فقط للموظفين والمجموعات التالية. يتم تجاوز هذه الإعدادات إذا كنت Go Private أو إذا Go Hidden',
+ 'visible-to-profile' => 'الملف الشخصي مرئي ل',
+ 'visible-to-profile-help' => 'سيكون ملفك الشخصي مرئيًا للموظفين والمجموعات التالية فقط. يتم تجاوز هذه الإعدادات إذا كنت Go Private',
+ 'visible-to-request' => 'طلب معلومات مرئية لـ',
+ 'visible-to-request-help' => 'ستكون معلومات طلبك مرئية فقط للموظفين والمجموعات التالية. يتم تجاوز هذه الإعدادات إذا كنت Go Private',
+ 'visible-to-torrent' => 'سيل المعلومات المرئية ل',
+ 'visible-to-torrent-help' => 'ستكون معلومات تورنت مرئية فقط للموظفين والمجموعات التالية يتم تجاوز هذه الإعدادات إذا كنت Go Private أو إذا Go Hidden',
+ 'warned-on' => 'حذر في',
+ 'warning' => 'تحذير',
+ 'warning-log' => 'سجل تحذير',
+ 'wishlist' => 'الأماني',
];
diff --git a/lang/ar/validation.php b/lang/ar/validation.php
index e672d377a..f63375197 100644
--- a/lang/ar/validation.php
+++ b/lang/ar/validation.php
@@ -23,108 +23,108 @@ return [
|
*/
- 'accepted' => 'يجب قبول :attribute.',
- 'active_url' => ':attribute لا يُمثّل رابطًا صحيحًا.',
- 'after' => 'يجب على :attribute أن يكون تاريخًا لاحقًا للتاريخ :date.',
- 'after_or_equal' => ':attribute يجب أن يكون تاريخاً لاحقاً أو مطابقاً للتاريخ :date.',
- 'alpha' => 'يجب أن لا يحتوي :attribute سوى على حروف.',
- 'alpha_dash' => 'يجب أن لا يحتوي :attribute سوى على حروف، أرقام ومطّات.',
- 'alpha_num' => 'يجب أن يحتوي :attribute على حروفٍ وأرقامٍ فقط.',
- 'array' => 'يجب أن يكون :attribute ًمصفوفة.',
- 'before' => 'يجب على :attribute أن يكون تاريخًا سابقًا للتاريخ :date.',
- 'before_or_equal' => ':attribute يجب أن يكون تاريخا سابقا أو مطابقا للتاريخ :date.',
- 'between' => [
+ 'accepted' => 'يجب قبول :attribute.',
+ 'active_url' => ':attribute لا يُمثّل رابطًا صحيحًا.',
+ 'after' => 'يجب على :attribute أن يكون تاريخًا لاحقًا للتاريخ :date.',
+ 'after_or_equal' => ':attribute يجب أن يكون تاريخاً لاحقاً أو مطابقاً للتاريخ :date.',
+ 'alpha' => 'يجب أن لا يحتوي :attribute سوى على حروف.',
+ 'alpha_dash' => 'يجب أن لا يحتوي :attribute سوى على حروف، أرقام ومطّات.',
+ 'alpha_num' => 'يجب أن يحتوي :attribute على حروفٍ وأرقامٍ فقط.',
+ 'array' => 'يجب أن يكون :attribute ًمصفوفة.',
+ 'before' => 'يجب على :attribute أن يكون تاريخًا سابقًا للتاريخ :date.',
+ 'before_or_equal' => ':attribute يجب أن يكون تاريخا سابقا أو مطابقا للتاريخ :date.',
+ 'between' => [
'numeric' => 'يجب أن تكون قيمة :attribute بين :min و :max.',
- 'file' => 'يجب أن يكون حجم الملف :attribute بين :min و :max كيلوبايت.',
- 'string' => 'يجب أن يكون عدد حروف النّص :attribute بين :min و :max.',
- 'array' => 'يجب أن يحتوي :attribute على عدد من العناصر بين :min و :max.',
+ 'file' => 'يجب أن يكون حجم الملف :attribute بين :min و :max كيلوبايت.',
+ 'string' => 'يجب أن يكون عدد حروف النّص :attribute بين :min و :max.',
+ 'array' => 'يجب أن يحتوي :attribute على عدد من العناصر بين :min و :max.',
],
- 'boolean' => 'يجب أن تكون قيمة :attribute إما true أو false .',
- 'confirmed' => 'حقل التأكيد غير مُطابق للحقل :attribute.',
- 'date' => ':attribute ليس تاريخًا صحيحًا.',
- 'date_equals' => 'يجب أن يكون :attribute مطابقاً للتاريخ :date.',
- 'date_format' => 'لا يتوافق :attribute مع الشكل :format.',
- 'different' => 'يجب أن يكون الحقلان :attribute و :other مُختلفين.',
- 'digits' => 'يجب أن يحتوي :attribute على :digits رقمًا/أرقام.',
- 'digits_between' => 'يجب أن يحتوي :attribute بين :min و :max رقمًا/أرقام .',
- 'dimensions' => 'الـ :attribute يحتوي على أبعاد صورة غير صالحة.',
- 'distinct' => 'للحقل :attribute قيمة مُكرّرة.',
- 'email' => 'يجب أن يكون :attribute عنوان بريد إلكتروني صحيح البُنية.',
- 'exists' => 'القيمة المحددة :attribute غير موجودة.',
- 'file' => 'الـ :attribute يجب أن يكون ملفا.',
- 'filled' => ':attribute إجباري.',
- 'gt' => [
+ 'boolean' => 'يجب أن تكون قيمة :attribute إما true أو false .',
+ 'confirmed' => 'حقل التأكيد غير مُطابق للحقل :attribute.',
+ 'date' => ':attribute ليس تاريخًا صحيحًا.',
+ 'date_equals' => 'يجب أن يكون :attribute مطابقاً للتاريخ :date.',
+ 'date_format' => 'لا يتوافق :attribute مع الشكل :format.',
+ 'different' => 'يجب أن يكون الحقلان :attribute و :other مُختلفين.',
+ 'digits' => 'يجب أن يحتوي :attribute على :digits رقمًا/أرقام.',
+ 'digits_between' => 'يجب أن يحتوي :attribute بين :min و :max رقمًا/أرقام .',
+ 'dimensions' => 'الـ :attribute يحتوي على أبعاد صورة غير صالحة.',
+ 'distinct' => 'للحقل :attribute قيمة مُكرّرة.',
+ 'email' => 'يجب أن يكون :attribute عنوان بريد إلكتروني صحيح البُنية.',
+ 'exists' => 'القيمة المحددة :attribute غير موجودة.',
+ 'file' => 'الـ :attribute يجب أن يكون ملفا.',
+ 'filled' => ':attribute إجباري.',
+ 'gt' => [
'numeric' => 'يجب أن تكون قيمة :attribute أكبر من :value.',
- 'file' => 'يجب أن يكون حجم الملف :attribute أكبر من :value كيلوبايت.',
- 'string' => 'يجب أن يكون طول النّص :attribute أكثر من :value حروفٍ/حرفًا.',
- 'array' => 'يجب أن يحتوي :attribute على أكثر من :value عناصر/عنصر.',
+ 'file' => 'يجب أن يكون حجم الملف :attribute أكبر من :value كيلوبايت.',
+ 'string' => 'يجب أن يكون طول النّص :attribute أكثر من :value حروفٍ/حرفًا.',
+ 'array' => 'يجب أن يحتوي :attribute على أكثر من :value عناصر/عنصر.',
],
- 'gte' => [
+ 'gte' => [
'numeric' => 'يجب أن تكون قيمة :attribute مساوية أو أكبر من :value.',
- 'file' => 'يجب أن يكون حجم الملف :attribute على الأقل :value كيلوبايت.',
- 'string' => 'يجب أن يكون طول النص :attribute على الأقل :value حروفٍ/حرفًا.',
- 'array' => 'يجب أن يحتوي :attribute على الأقل على :value عُنصرًا/عناصر.',
+ 'file' => 'يجب أن يكون حجم الملف :attribute على الأقل :value كيلوبايت.',
+ 'string' => 'يجب أن يكون طول النص :attribute على الأقل :value حروفٍ/حرفًا.',
+ 'array' => 'يجب أن يحتوي :attribute على الأقل على :value عُنصرًا/عناصر.',
],
- 'image' => 'يجب أن يكون :attribute صورةً.',
- 'in' => ':attribute غير موجود.',
- 'in_array' => ':attribute غير موجود في :other.',
- 'integer' => 'يجب أن يكون :attribute عددًا صحيحًا.',
- 'ip' => 'يجب أن يكون :attribute عنوان IP صحيحًا.',
- 'ipv4' => 'يجب أن يكون :attribute عنوان IPv4 صحيحًا.',
- 'ipv6' => 'يجب أن يكون :attribute عنوان IPv6 صحيحًا.',
- 'json' => 'يجب أن يكون :attribute نصآ من نوع JSON.',
- 'lt' => [
+ 'image' => 'يجب أن يكون :attribute صورةً.',
+ 'in' => ':attribute غير موجود.',
+ 'in_array' => ':attribute غير موجود في :other.',
+ 'integer' => 'يجب أن يكون :attribute عددًا صحيحًا.',
+ 'ip' => 'يجب أن يكون :attribute عنوان IP صحيحًا.',
+ 'ipv4' => 'يجب أن يكون :attribute عنوان IPv4 صحيحًا.',
+ 'ipv6' => 'يجب أن يكون :attribute عنوان IPv6 صحيحًا.',
+ 'json' => 'يجب أن يكون :attribute نصآ من نوع JSON.',
+ 'lt' => [
'numeric' => 'يجب أن تكون قيمة :attribute أصغر من :value.',
- 'file' => 'يجب أن يكون حجم الملف :attribute أصغر من :value كيلوبايت.',
- 'string' => 'يجب أن يكون طول النّص :attribute أقل من :value حروفٍ/حرفًا.',
- 'array' => 'يجب أن يحتوي :attribute على أقل من :value عناصر/عنصر.',
+ 'file' => 'يجب أن يكون حجم الملف :attribute أصغر من :value كيلوبايت.',
+ 'string' => 'يجب أن يكون طول النّص :attribute أقل من :value حروفٍ/حرفًا.',
+ 'array' => 'يجب أن يحتوي :attribute على أقل من :value عناصر/عنصر.',
],
- 'lte' => [
+ 'lte' => [
'numeric' => 'يجب أن تكون قيمة :attribute مساوية أو أصغر من :value.',
- 'file' => 'يجب أن لا يتجاوز حجم الملف :attribute :value كيلوبايت.',
- 'string' => 'يجب أن لا يتجاوز طول النّص :attribute :value حروفٍ/حرفًا.',
- 'array' => 'يجب أن لا يحتوي :attribute على أكثر من :value عناصر/عنصر.',
+ 'file' => 'يجب أن لا يتجاوز حجم الملف :attribute :value كيلوبايت.',
+ 'string' => 'يجب أن لا يتجاوز طول النّص :attribute :value حروفٍ/حرفًا.',
+ 'array' => 'يجب أن لا يحتوي :attribute على أكثر من :value عناصر/عنصر.',
],
- 'max' => [
+ 'max' => [
'numeric' => 'يجب أن تكون قيمة :attribute مساوية أو أصغر من :max.',
- 'file' => 'يجب أن لا يتجاوز حجم الملف :attribute :max كيلوبايت.',
- 'string' => 'يجب أن لا يتجاوز طول النّص :attribute :max حروفٍ/حرفًا.',
- 'array' => 'يجب أن لا يحتوي :attribute على أكثر من :max عناصر/عنصر.',
+ 'file' => 'يجب أن لا يتجاوز حجم الملف :attribute :max كيلوبايت.',
+ 'string' => 'يجب أن لا يتجاوز طول النّص :attribute :max حروفٍ/حرفًا.',
+ 'array' => 'يجب أن لا يحتوي :attribute على أكثر من :max عناصر/عنصر.',
],
- 'mimes' => 'يجب أن يكون ملفًا من نوع : :values.',
- 'mimetypes' => 'يجب أن يكون ملفًا من نوع : :values.',
- 'min' => [
+ 'mimes' => 'يجب أن يكون ملفًا من نوع : :values.',
+ 'mimetypes' => 'يجب أن يكون ملفًا من نوع : :values.',
+ 'min' => [
'numeric' => 'يجب أن تكون قيمة :attribute مساوية أو أكبر من :min.',
- 'file' => 'يجب أن يكون حجم الملف :attribute على الأقل :min كيلوبايت.',
- 'string' => 'يجب أن يكون طول النص :attribute على الأقل :min حروفٍ/حرفًا.',
- 'array' => 'يجب أن يحتوي :attribute على الأقل على :min عُنصرًا/عناصر.',
+ 'file' => 'يجب أن يكون حجم الملف :attribute على الأقل :min كيلوبايت.',
+ 'string' => 'يجب أن يكون طول النص :attribute على الأقل :min حروفٍ/حرفًا.',
+ 'array' => 'يجب أن يحتوي :attribute على الأقل على :min عُنصرًا/عناصر.',
],
- 'not_in' => ':attribute موجود.',
- 'not_regex' => 'صيغة :attribute غير صحيحة.',
- 'numeric' => 'يجب على :attribute أن يكون رقمًا.',
- 'present' => 'يجب تقديم :attribute.',
- 'regex' => 'صيغة :attribute .غير صحيحة.',
- 'required' => ':attribute مطلوب.',
- 'required_if' => ':attribute مطلوب في حال ما إذا كان :other يساوي :value.',
- 'required_unless' => ':attribute مطلوب في حال ما لم يكن :other يساوي :values.',
- 'required_with' => ':attribute مطلوب إذا توفّر :values.',
- 'required_with_all' => ':attribute مطلوب إذا توفّر :values.',
- 'required_without' => ':attribute مطلوب إذا لم يتوفّر :values.',
+ 'not_in' => ':attribute موجود.',
+ 'not_regex' => 'صيغة :attribute غير صحيحة.',
+ 'numeric' => 'يجب على :attribute أن يكون رقمًا.',
+ 'present' => 'يجب تقديم :attribute.',
+ 'regex' => 'صيغة :attribute .غير صحيحة.',
+ 'required' => ':attribute مطلوب.',
+ 'required_if' => ':attribute مطلوب في حال ما إذا كان :other يساوي :value.',
+ 'required_unless' => ':attribute مطلوب في حال ما لم يكن :other يساوي :values.',
+ 'required_with' => ':attribute مطلوب إذا توفّر :values.',
+ 'required_with_all' => ':attribute مطلوب إذا توفّر :values.',
+ 'required_without' => ':attribute مطلوب إذا لم يتوفّر :values.',
'required_without_all' => ':attribute مطلوب إذا لم يتوفّر :values.',
- 'same' => 'يجب أن يتطابق :attribute مع :other.',
- 'size' => [
+ 'same' => 'يجب أن يتطابق :attribute مع :other.',
+ 'size' => [
'numeric' => 'يجب أن تكون قيمة :attribute مساوية لـ :size.',
- 'file' => 'يجب أن يكون حجم الملف :attribute :size كيلوبايت.',
- 'string' => 'يجب أن يحتوي النص :attribute على :size حروفٍ/حرفًا بالضبط.',
- 'array' => 'يجب أن يحتوي :attribute على :size عنصرٍ/عناصر بالضبط.',
+ 'file' => 'يجب أن يكون حجم الملف :attribute :size كيلوبايت.',
+ 'string' => 'يجب أن يحتوي النص :attribute على :size حروفٍ/حرفًا بالضبط.',
+ 'array' => 'يجب أن يحتوي :attribute على :size عنصرٍ/عناصر بالضبط.',
],
- 'starts_with' => 'يجب أن يبدأ :attribute بأحد القيم التالية: :values',
- 'string' => 'يجب أن يكون :attribute نصًا.',
- 'timezone' => 'يجب أن يكون :attribute نطاقًا زمنيًا صحيحًا.',
- 'unique' => 'قيمة :attribute مُستخدمة من قبل.',
- 'uploaded' => 'فشل في تحميل الـ :attribute.',
- 'url' => 'صيغة الرابط :attribute غير صحيحة.',
- 'uuid' => ':attribute يجب أن يكون بصيغة UUID سليمة.',
+ 'starts_with' => 'يجب أن يبدأ :attribute بأحد القيم التالية: :values',
+ 'string' => 'يجب أن يكون :attribute نصًا.',
+ 'timezone' => 'يجب أن يكون :attribute نطاقًا زمنيًا صحيحًا.',
+ 'unique' => 'قيمة :attribute مُستخدمة من قبل.',
+ 'uploaded' => 'فشل في تحميل الـ :attribute.',
+ 'url' => 'صيغة الرابط :attribute غير صحيحة.',
+ 'uuid' => ':attribute يجب أن يكون بصيغة UUID سليمة.',
/*
|--------------------------------------------------------------------------
@@ -155,34 +155,34 @@ return [
*/
'attributes' => [
- 'name' => 'الاسم',
- 'username' => 'اسم المُستخدم',
- 'email' => 'البريد الالكتروني',
- 'first_name' => 'الاسم الأول',
- 'last_name' => 'اسم العائلة',
- 'password' => 'كلمة المرور',
+ 'name' => 'الاسم',
+ 'username' => 'اسم المُستخدم',
+ 'email' => 'البريد الالكتروني',
+ 'first_name' => 'الاسم الأول',
+ 'last_name' => 'اسم العائلة',
+ 'password' => 'كلمة المرور',
'password_confirmation' => 'تأكيد كلمة المرور',
- 'city' => 'المدينة',
- 'country' => 'الدولة',
- 'address' => 'عنوان السكن',
- 'phone' => 'الهاتف',
- 'mobile' => 'الجوال',
- 'age' => 'العمر',
- 'sex' => 'الجنس',
- 'gender' => 'النوع',
- 'day' => 'اليوم',
- 'month' => 'الشهر',
- 'year' => 'السنة',
- 'hour' => 'ساعة',
- 'minute' => 'دقيقة',
- 'second' => 'ثانية',
- 'title' => 'العنوان',
- 'content' => 'المُحتوى',
- 'description' => 'الوصف',
- 'excerpt' => 'المُلخص',
- 'date' => 'التاريخ',
- 'time' => 'الوقت',
- 'available' => 'مُتاح',
- 'size' => 'الحجم',
+ 'city' => 'المدينة',
+ 'country' => 'الدولة',
+ 'address' => 'عنوان السكن',
+ 'phone' => 'الهاتف',
+ 'mobile' => 'الجوال',
+ 'age' => 'العمر',
+ 'sex' => 'الجنس',
+ 'gender' => 'النوع',
+ 'day' => 'اليوم',
+ 'month' => 'الشهر',
+ 'year' => 'السنة',
+ 'hour' => 'ساعة',
+ 'minute' => 'دقيقة',
+ 'second' => 'ثانية',
+ 'title' => 'العنوان',
+ 'content' => 'المُحتوى',
+ 'description' => 'الوصف',
+ 'excerpt' => 'المُلخص',
+ 'date' => 'التاريخ',
+ 'time' => 'الوقت',
+ 'available' => 'مُتاح',
+ 'size' => 'الحجم',
],
];
diff --git a/lang/az/articles.php b/lang/az/articles.php
index 41915d3a7..7fc5df3a3 100644
--- a/lang/az/articles.php
+++ b/lang/az/articles.php
@@ -12,8 +12,8 @@
*/
return [
- 'articles' => 'Məqalələr',
+ 'articles' => 'Məqalələr',
'meta-articles' => 'İzləyici və icma haqqında yazılar və xəbərlər',
- 'published-at' => 'Yayınlandı',
- 'read-more' => 'Daha çox oxu',
+ 'published-at' => 'Yayınlandı',
+ 'read-more' => 'Daha çox oxu',
];
diff --git a/lang/az/auth.php b/lang/az/auth.php
index 511ed2f31..d9bdba024 100644
--- a/lang/az/auth.php
+++ b/lang/az/auth.php
@@ -23,6 +23,6 @@ return [
|
*/
- 'failed' => 'İstifadəçi adı və ya şifrə səhvdir',
+ 'failed' => 'İstifadəçi adı və ya şifrə səhvdir',
'throttle' => ':seconds saniyə ərzində yenidən cəhd edin',
];
diff --git a/lang/az/backup.php b/lang/az/backup.php
index 7f0e7de6e..bc59174d8 100644
--- a/lang/az/backup.php
+++ b/lang/az/backup.php
@@ -12,32 +12,32 @@
*/
return [
- 'actions' => 'Tədbirlər',
- 'backup' => 'Backup',
- 'backup_doesnt_exist' => 'Yedek fayl yoxdur.',
- 'create_a_new_backup' => 'Tam Yedəklənmə yaradın',
- 'create_a_new_files_backup' => 'Faylların Yaddaşını yaradın',
- 'create_a_new_db_backup' => 'Verilənlər bazasının saxlanması yaradın',
- 'create_confirmation_message' => 'Səhifəni 3 saniyə geri yüklə.',
- 'create_confirmation_title' => 'Backup tamamlandı',
- 'create_error_message' => 'Yedek fayl yaradıla bilməzdi.',
- 'create_error_title' => 'Backup səhv',
- 'create_warning_message' => 'Sizin ehtiyatınız yaradıla bilməz. Ayrıntılar üçün günlük faylları kontrol edin.',
- 'create_warning_title' => 'Bilinməyən səhv',
- 'date' => 'Tarix',
- 'delete' => 'Sil',
- 'delete_cancel_message' => 'Zərər faylının silinməməsi.',
- 'delete_cancel_title' => 'Tamam',
- 'delete_confirm' => 'Bu arxiv faylını silmək istədiyinizdən əminsinizmi?',
- 'delete_confirmation_message' => 'Yedek fayl silindi.',
- 'delete_confirmation_title' => 'Tamamlandı',
- 'delete_error_message' => 'Zərər faylının silinməməsi.',
- 'delete_error_title' => 'Səhv',
- 'download' => 'Yüklə',
- 'existing_backups' => 'Mövcud yedeklər',
- 'file_size' => 'Faylın ölçüsü',
- 'location' => 'Yer',
- 'manager' => 'Menecer',
- 'no_disks_configured' => 'Config / backup.php ünvanında yapılandırılmış yedekleme diskləri yoxdur',
+ 'actions' => 'Tədbirlər',
+ 'backup' => 'Backup',
+ 'backup_doesnt_exist' => 'Yedek fayl yoxdur.',
+ 'create_a_new_backup' => 'Tam Yedəklənmə yaradın',
+ 'create_a_new_files_backup' => 'Faylların Yaddaşını yaradın',
+ 'create_a_new_db_backup' => 'Verilənlər bazasının saxlanması yaradın',
+ 'create_confirmation_message' => 'Səhifəni 3 saniyə geri yüklə.',
+ 'create_confirmation_title' => 'Backup tamamlandı',
+ 'create_error_message' => 'Yedek fayl yaradıla bilməzdi.',
+ 'create_error_title' => 'Backup səhv',
+ 'create_warning_message' => 'Sizin ehtiyatınız yaradıla bilməz. Ayrıntılar üçün günlük faylları kontrol edin.',
+ 'create_warning_title' => 'Bilinməyən səhv',
+ 'date' => 'Tarix',
+ 'delete' => 'Sil',
+ 'delete_cancel_message' => 'Zərər faylının silinməməsi.',
+ 'delete_cancel_title' => 'Tamam',
+ 'delete_confirm' => 'Bu arxiv faylını silmək istədiyinizdən əminsinizmi?',
+ 'delete_confirmation_message' => 'Yedek fayl silindi.',
+ 'delete_confirmation_title' => 'Tamamlandı',
+ 'delete_error_message' => 'Zərər faylının silinməməsi.',
+ 'delete_error_title' => 'Səhv',
+ 'download' => 'Yüklə',
+ 'existing_backups' => 'Mövcud yedeklər',
+ 'file_size' => 'Faylın ölçüsü',
+ 'location' => 'Yer',
+ 'manager' => 'Menecer',
+ 'no_disks_configured' => 'Config / backup.php ünvanında yapılandırılmış yedekleme diskləri yoxdur',
'only_local_downloads_supported' => 'Yerli fayl sistemindən yalnız downloads dəstəklənir.',
];
diff --git a/lang/az/blocks.php b/lang/az/blocks.php
index ef7e6af6a..82ec50f36 100644
--- a/lang/az/blocks.php
+++ b/lang/az/blocks.php
@@ -12,19 +12,19 @@
*/
return [
- 'chatbox' => 'Chat qutusu',
- 'click' => 'Basın',
- 'to-enable-editor' => 'redaktoru təmin etmək üçün',
- 'featured-by' => 'Seçilmiş',
- 'featured-torrents' => 'Seçilmiş Torrents',
+ 'chatbox' => 'Chat qutusu',
+ 'click' => 'Basın',
+ 'to-enable-editor' => 'redaktoru təmin etmək üçün',
+ 'featured-by' => 'Seçilmiş',
+ 'featured-torrents' => 'Seçilmiş Torrents',
'featured-torrents-intro' => 'Siz edə bilərsiniz baxmayaraq alın!',
- 'featured-until' => 'Bu qədər qədər torrent səsləndi',
- 'top-torrents' => 'Yuxarı Torrents',
- 'latest-posts' => 'Ən son yazılar',
- 'latest-topics' => 'Son Mövzular',
- 'active-in-last' => 'Sonda aktivdir',
- 'users-online' => 'İstifadəçilər Online',
- 'check-news' => 'Xəbərlər (gündəlik yoxlayın)',
- 'new-news' => 'Yeni xəbərlər',
- 'new-torrents' => 'Yeni torrentlər',
+ 'featured-until' => 'Bu qədər qədər torrent səsləndi',
+ 'top-torrents' => 'Yuxarı Torrents',
+ 'latest-posts' => 'Ən son yazılar',
+ 'latest-topics' => 'Son Mövzular',
+ 'active-in-last' => 'Sonda aktivdir',
+ 'users-online' => 'İstifadəçilər Online',
+ 'check-news' => 'Xəbərlər (gündəlik yoxlayın)',
+ 'new-news' => 'Yeni xəbərlər',
+ 'new-torrents' => 'Yeni torrentlər',
];
diff --git a/lang/az/bon.php b/lang/az/bon.php
index 40b295841..96ffc4320 100644
--- a/lang/az/bon.php
+++ b/lang/az/bon.php
@@ -12,44 +12,44 @@
*/
return [
- 'activated' => 'Aktivləşdirildi',
- 'active' => 'Aktivləşdirildi!',
- 'amount' => 'Məbləğ',
- 'bon' => 'BON',
- 'bonus' => 'Bonus',
- 'date' => 'Tarix',
- 'earning' => 'Kazanma',
- 'earning-rate' => 'Qazancınız bu dərəcədə hər bir müddət üçün aşağıdakı qazanacaqsınız ..',
- 'earnings' => 'Kazançlar',
- 'exchange' => 'Mübadilə',
- 'exchange-warning' => 'Birjalar yekundır, mübadilə etməzdən əvvəl seçiminizi ikiqat birləşdirin.',
- 'extended-stats' => 'Genişləndirilmiş Statistikalar',
- 'gift' => 'Hədiyyə',
- 'gift-bonus' => 'Hədiyyə bonus xalları',
- 'gift-to' => 'Hədiyyə bonus xalları',
- 'gifts' => 'Hədiyyələr',
- 'item' => 'Maddə',
- 'no-refund' => 'YARANMAYACAQ!',
- 'per-day' => 'Gündəlik Günlər',
- 'per-hour' => 'Saat üzrə bal',
- 'per-minute' => 'Dəqiqə nöqtələri',
- 'per-month' => 'Aylıq Aylar',
- 'per-second' => 'İkinci dəfə xallar',
- 'per-week' => 'Həftədə nöqtələr',
- 'per-year' => 'Yıllara görə ballar',
- 'points' => 'Xallar',
- 'receiver' => 'Alıcı',
- 'review-seeds' => 'Bütün Seeded torrentləri nəzərdən keçirin',
- 'send-gift' => 'Hədiyyə göndər',
- 'sender' => 'Göndərən',
- 'store' => 'Mağaza',
- 'tips' => 'İpuçları',
- 'total' => 'Ümumi mənfəət',
- 'total-gifts' => 'Total BON hədiyyələrində',
- 'total-tips' => 'Ümumi BON Tipsində',
+ 'activated' => 'Aktivləşdirildi',
+ 'active' => 'Aktivləşdirildi!',
+ 'amount' => 'Məbləğ',
+ 'bon' => 'BON',
+ 'bonus' => 'Bonus',
+ 'date' => 'Tarix',
+ 'earning' => 'Kazanma',
+ 'earning-rate' => 'Qazancınız bu dərəcədə hər bir müddət üçün aşağıdakı qazanacaqsınız ..',
+ 'earnings' => 'Kazançlar',
+ 'exchange' => 'Mübadilə',
+ 'exchange-warning' => 'Birjalar yekundır, mübadilə etməzdən əvvəl seçiminizi ikiqat birləşdirin.',
+ 'extended-stats' => 'Genişləndirilmiş Statistikalar',
+ 'gift' => 'Hədiyyə',
+ 'gift-bonus' => 'Hədiyyə bonus xalları',
+ 'gift-to' => 'Hədiyyə bonus xalları',
+ 'gifts' => 'Hədiyyələr',
+ 'item' => 'Maddə',
+ 'no-refund' => 'YARANMAYACAQ!',
+ 'per-day' => 'Gündəlik Günlər',
+ 'per-hour' => 'Saat üzrə bal',
+ 'per-minute' => 'Dəqiqə nöqtələri',
+ 'per-month' => 'Aylıq Aylar',
+ 'per-second' => 'İkinci dəfə xallar',
+ 'per-week' => 'Həftədə nöqtələr',
+ 'per-year' => 'Yıllara görə ballar',
+ 'points' => 'Xallar',
+ 'receiver' => 'Alıcı',
+ 'review-seeds' => 'Bütün Seeded torrentləri nəzərdən keçirin',
+ 'send-gift' => 'Hədiyyə göndər',
+ 'sender' => 'Göndərən',
+ 'store' => 'Mağaza',
+ 'tips' => 'İpuçları',
+ 'total' => 'Ümumi mənfəət',
+ 'total-gifts' => 'Total BON hədiyyələrində',
+ 'total-tips' => 'Ümumi BON Tipsində',
'you-have-received-gifts' => 'Siz aldınız',
- 'you-have-sent-gifts' => 'Sən göndərdin',
- 'you-have-received-tips' => 'Siz aldınız',
- 'you-have-sent-tips' => 'Sən göndərdin',
- 'your-points' => 'Sizin nöqtələriniz',
+ 'you-have-sent-gifts' => 'Sən göndərdin',
+ 'you-have-received-tips' => 'Siz aldınız',
+ 'you-have-sent-tips' => 'Sən göndərdin',
+ 'your-points' => 'Sizin nöqtələriniz',
];
diff --git a/lang/az/bot.php b/lang/az/bot.php
index 0a40a0068..dddd0a8b5 100644
--- a/lang/az/bot.php
+++ b/lang/az/bot.php
@@ -12,15 +12,15 @@
*/
return [
- 'about' => 'Haqqında',
- 'bot' => 'Bot',
- 'bots' => 'Bots',
- 'color' => 'Rəng',
- 'command' => 'Komanda',
- 'edit-bot' => 'Bot redaktə edin',
+ 'about' => 'Haqqında',
+ 'bot' => 'Bot',
+ 'bots' => 'Bots',
+ 'color' => 'Rəng',
+ 'command' => 'Komanda',
+ 'edit-bot' => 'Bot redaktə edin',
'emoji-code' => 'Emoji Kodu',
- 'help' => 'Kömək edin',
- 'icon' => 'Icon',
- 'info' => 'Məlumat',
- 'name' => 'Adı',
+ 'help' => 'Kömək edin',
+ 'icon' => 'Icon',
+ 'info' => 'Məlumat',
+ 'name' => 'Adı',
];
diff --git a/lang/az/bug.php b/lang/az/bug.php
index 74b835d7c..c25a5ef0e 100644
--- a/lang/az/bug.php
+++ b/lang/az/bug.php
@@ -12,15 +12,15 @@
*/
return [
- 'bug-report' => 'Səhv hesabatı',
+ 'bug-report' => 'Səhv hesabatı',
'bug-report-description' => 'Bir sayt səhvini bildirin',
- 'enter-description' => 'Problemi mümkün qədər yaxşı təsvir edin',
- 'enter-email' => 'E-poçtunuzu daxil edin',
- 'enter-title' => 'Xahiş edirik uyğun bir ad seçin',
- 'enter-username' => 'Xahiş edirik istifadəçi adınızı daxil edin',
- 'high' => 'Yüksək',
- 'low' => 'Aşağı',
- 'priority' => 'Prioritet',
- 'priority-description' => 'Səhv həqiqətən saytın istifadəsi problemi olduqda, çox yüksək seçin.',
- 'very-high' => 'Çox hündür',
+ 'enter-description' => 'Problemi mümkün qədər yaxşı təsvir edin',
+ 'enter-email' => 'E-poçtunuzu daxil edin',
+ 'enter-title' => 'Xahiş edirik uyğun bir ad seçin',
+ 'enter-username' => 'Xahiş edirik istifadəçi adınızı daxil edin',
+ 'high' => 'Yüksək',
+ 'low' => 'Aşağı',
+ 'priority' => 'Prioritet',
+ 'priority-description' => 'Səhv həqiqətən saytın istifadəsi problemi olduqda, çox yüksək seçin.',
+ 'very-high' => 'Çox hündür',
];
diff --git a/lang/az/common.php b/lang/az/common.php
index f9a92355c..61ce9d13c 100644
--- a/lang/az/common.php
+++ b/lang/az/common.php
@@ -12,179 +12,179 @@
*/
return [
- 'a-an-art' => '',
- 'about' => 'Bizim haqqımızda',
- 'account' => 'Hesab',
- 'achievement-title' => 'Awesome',
+ 'a-an-art' => '',
+ 'about' => 'Bizim haqqımızda',
+ 'account' => 'Hesab',
+ 'achievement-title' => 'Awesome',
'achievement-unlocked' => 'Siz ": ad" müvəffəqiyyətini çıxardınız',
- 'active' => 'Aktivdir',
- 'active-warning' => 'Aktiv xəbərdarlıq',
- 'add' => 'Əlavə et',
- 'added' => 'Əlavə edildi',
- 'amount' => 'Məbləğ',
- 'anonymous' => 'anonim',
- 'author' => 'Müəllif',
- 'balance' => 'Balans',
- 'blacklist' => 'Müştəri Siyahısı',
- 'buffer' => 'Buffer',
- 'bug' => 'Səhv bildir',
- 'but' => 'Amma',
- 'cancel' => 'Ləğv et',
- 'category' => 'Kateqoriya',
- 'categories' => 'Kateqoriyalar',
- 'close' => 'Yaxın',
- 'comment' => 'Şərh',
- 'comments' => 'Şərhlər',
- 'community' => 'İcma',
- 'contact' => 'Əlaqə',
- 'contact-desc' => 'Bu əlaqə sorğusu sahibinə göndəriləcək və mümkün qədər tez geri qaytarılacaq',
- 'contact-header' => 'Salam',
- 'create' => 'Yaradın',
- 'created_at' => 'At yaradılıb',
- 'day' => 'Gün',
- 'delete' => 'Sil',
- 'delete-your-comment' => 'Şərhinizi silin',
- 'description' => 'Təsvir',
- 'direction' => 'Direction',
- 'disable' => 'Çıxarın',
- 'doubleup_activated' => 'Qlobal ikiqat yükləmə rejimi aktivləşdirildi',
- 'download' => 'Yüklə',
- 'edit' => 'Düzəliş edin',
- 'edit-your-comment' => 'Şərhinizi redaktə edin',
- 'email' => 'E-poçt',
- 'email-blacklist' => 'E-poçt Blacklist',
- 'email-whitelist' => 'E-poçt siyahısı',
+ 'active' => 'Aktivdir',
+ 'active-warning' => 'Aktiv xəbərdarlıq',
+ 'add' => 'Əlavə et',
+ 'added' => 'Əlavə edildi',
+ 'amount' => 'Məbləğ',
+ 'anonymous' => 'anonim',
+ 'author' => 'Müəllif',
+ 'balance' => 'Balans',
+ 'blacklist' => 'Müştəri Siyahısı',
+ 'buffer' => 'Buffer',
+ 'bug' => 'Səhv bildir',
+ 'but' => 'Amma',
+ 'cancel' => 'Ləğv et',
+ 'category' => 'Kateqoriya',
+ 'categories' => 'Kateqoriyalar',
+ 'close' => 'Yaxın',
+ 'comment' => 'Şərh',
+ 'comments' => 'Şərhlər',
+ 'community' => 'İcma',
+ 'contact' => 'Əlaqə',
+ 'contact-desc' => 'Bu əlaqə sorğusu sahibinə göndəriləcək və mümkün qədər tez geri qaytarılacaq',
+ 'contact-header' => 'Salam',
+ 'create' => 'Yaradın',
+ 'created_at' => 'At yaradılıb',
+ 'day' => 'Gün',
+ 'delete' => 'Sil',
+ 'delete-your-comment' => 'Şərhinizi silin',
+ 'description' => 'Təsvir',
+ 'direction' => 'Direction',
+ 'disable' => 'Çıxarın',
+ 'doubleup_activated' => 'Qlobal ikiqat yükləmə rejimi aktivləşdirildi',
+ 'download' => 'Yüklə',
+ 'edit' => 'Düzəliş edin',
+ 'edit-your-comment' => 'Şərhinizi redaktə edin',
+ 'email' => 'E-poçt',
+ 'email-blacklist' => 'E-poçt Blacklist',
+ 'email-whitelist' => 'E-poçt siyahısı',
'email-list-notactive' => 'E-poçta siyahı / siyahlist sistemi aktiv deyil',
- 'enable' => 'Enable',
- 'enter' => 'Daxil edin',
- 'error' => 'Səhv',
- 'everyday' => 'Hər gün',
- 'expired' => 'Müddəti bitdi',
- 'extra' => 'Əlavə',
- 'extra-stats' => 'Əlavə Statistikalar',
- 'faq' => 'Suallar',
- 'files' => 'Fayllar',
- 'fl_token' => 'Freeleech Token',
- 'fl_tokens' => 'Freeleech Tokens',
- 'for' => 'üçün',
- 'forum' => 'Forum',
- 'free' => 'Pulsuz',
- 'freeleech_activated' => 'Global Freeleech rejimi aktivləşdirildi',
- 'global' => 'Qlobal',
- 'group' => 'Qrup',
- 'groups' => 'Qruplar',
- 'hidden' => 'Gizli',
- 'high-speeds' => 'Yüksək sürət',
- 'home' => 'Ev',
- 'hot' => 'İsti!',
- 'hour' => 'Saat',
- 'huge' => 'Böyük',
- 'info' => 'Məlumat',
- 'internal' => 'Daxili',
- 'ip' => 'IP',
- 'is-allowed' => 'icazə verilir',
- 'large' => 'Böyük',
- 'latest' => 'Ən son',
- 'latest-posts' => 'Ən son yazılar',
- 'latest-topics' => 'Son Mövzular',
- 'legal' => 'Hüquqi',
- 'legend' => 'Əfsanə',
- 'lists' => 'Siyahıları',
- 'lock-account' => 'Hesabınızı kilitləyin',
- 'logout' => 'Çıxış',
- 'members' => 'İstifadəçilər',
- 'message' => 'Mesaj',
- 'minute' => 'Dəqiqə',
- 'moderated-by' => 'Moderated by',
- 'moderation' => 'Moderasiya',
- 'moderation-approve' => 'Təsdiq edin',
- 'moderation-postpone' => 'Təxirə salın',
- 'moderation-reject' => 'Rədd et',
- 'month' => 'Ay',
- 'months' => 'Aylar',
- 'my' => 'Mənim',
- 'name' => 'Adı',
- 'navigation' => 'Naviqasiya',
- 'new' => 'Yeni!',
- 'new-adj' => 'Yeni',
- 'news' => 'Xəbərlər',
- 'next' => 'İrəli',
- 'no' => 'Yox',
- 'no-comments' => 'Şərh yoxdur',
- 'no-result' => 'Sorgu üçün verilənlər bazasında heç bir nəticə yoxdur',
- 'notifications' => 'Bildirişlər',
- 'older-than' => 'Daha yaşlı',
- 'oldest' => 'Ən qədim',
- 'openreg_activated' => 'Açıq qeydiyyat aktivləşdirildi',
- 'order-by' => 'Sifariş',
- 'other' => 'Digərləri',
- 'pages' => 'Səhifələr',
- 'password' => 'Şifrə',
- 'patron' => 'Patron ol',
- 'pending-torrents' => 'Bekleyen torrentlər',
- 'personal' => 'Şəxsi',
- 'plural-suffix' => 's',
- 'port' => 'Port',
- 'position' => 'Vəzifə',
- 'posts' => 'Mesajlar',
- 'powered-by' => 'UNIT3D tərəfindən hazırlanmışdır',
- 'preview' => 'Ön görünüş',
- 'previous' => 'Əvvəlki',
- 'progress' => 'Tərəqqi',
- 'publish' => 'Yayınla',
- 'quantity' => 'Miqdarı',
- 'quick-search' => 'Cəld axtarış',
- 'ratio' => 'Nisbət',
- 'reason' => 'Səbəb',
- 'remove' => 'Sil',
- 'report' => 'Hesabat',
- 'resend' => 'Yenidən göndərmək',
- 'reporter' => 'Reportyor',
- 'required' => 'Lazımdır',
- 'results' => 'Nəticələr',
- 'rss-system' => 'RSS sistemi',
- 'rules' => 'Qaydalar',
- 'save' => 'Yadda saxla',
- 'search' => 'Axtarış',
- 'search-results' => 'Axtarış nəticələri',
- 'search-results-desc' => 'Aşağıdakı nəticələrə baxın',
- 'second' => 'İkincisi',
- 'select' => 'Seçin',
- 'sort' => 'Cür',
- 'special' => 'Xüsusi',
- 'staff' => 'Heyət',
- 'staff-tools' => 'İşçi heyəti',
- 'stats' => 'Stats',
- 'status' => 'Status',
- 'sticked' => 'Yapışdı',
- 'submit' => 'təqdim',
- 'subscriptions' => 'Abunəliklər',
- 'teams' => 'Komandalar',
- 'terms' => 'İstifadə qaydaları',
- 'times' => 'Times',
- 'title' => 'Başlıq',
- 'top-bountied' => 'Üst Bountied',
- 'topics' => 'Mövzular',
- 'tracker-codes' => 'Tracker kodları',
- 'type' => 'Tipi',
- 'type-verb' => 'Tipi',
- 'types' => 'Türləri',
- 'genre' => 'Janr',
- 'genres' => 'Janrlar',
- 'action' => 'Fəaliyyət',
- 'actions' => 'Tədbirlər',
- 'unknown' => 'Naməlum',
+ 'enable' => 'Enable',
+ 'enter' => 'Daxil edin',
+ 'error' => 'Səhv',
+ 'everyday' => 'Hər gün',
+ 'expired' => 'Müddəti bitdi',
+ 'extra' => 'Əlavə',
+ 'extra-stats' => 'Əlavə Statistikalar',
+ 'faq' => 'Suallar',
+ 'files' => 'Fayllar',
+ 'fl_token' => 'Freeleech Token',
+ 'fl_tokens' => 'Freeleech Tokens',
+ 'for' => 'üçün',
+ 'forum' => 'Forum',
+ 'free' => 'Pulsuz',
+ 'freeleech_activated' => 'Global Freeleech rejimi aktivləşdirildi',
+ 'global' => 'Qlobal',
+ 'group' => 'Qrup',
+ 'groups' => 'Qruplar',
+ 'hidden' => 'Gizli',
+ 'high-speeds' => 'Yüksək sürət',
+ 'home' => 'Ev',
+ 'hot' => 'İsti!',
+ 'hour' => 'Saat',
+ 'huge' => 'Böyük',
+ 'info' => 'Məlumat',
+ 'internal' => 'Daxili',
+ 'ip' => 'IP',
+ 'is-allowed' => 'icazə verilir',
+ 'large' => 'Böyük',
+ 'latest' => 'Ən son',
+ 'latest-posts' => 'Ən son yazılar',
+ 'latest-topics' => 'Son Mövzular',
+ 'legal' => 'Hüquqi',
+ 'legend' => 'Əfsanə',
+ 'lists' => 'Siyahıları',
+ 'lock-account' => 'Hesabınızı kilitləyin',
+ 'logout' => 'Çıxış',
+ 'members' => 'İstifadəçilər',
+ 'message' => 'Mesaj',
+ 'minute' => 'Dəqiqə',
+ 'moderated-by' => 'Moderated by',
+ 'moderation' => 'Moderasiya',
+ 'moderation-approve' => 'Təsdiq edin',
+ 'moderation-postpone' => 'Təxirə salın',
+ 'moderation-reject' => 'Rədd et',
+ 'month' => 'Ay',
+ 'months' => 'Aylar',
+ 'my' => 'Mənim',
+ 'name' => 'Adı',
+ 'navigation' => 'Naviqasiya',
+ 'new' => 'Yeni!',
+ 'new-adj' => 'Yeni',
+ 'news' => 'Xəbərlər',
+ 'next' => 'İrəli',
+ 'no' => 'Yox',
+ 'no-comments' => 'Şərh yoxdur',
+ 'no-result' => 'Sorgu üçün verilənlər bazasında heç bir nəticə yoxdur',
+ 'notifications' => 'Bildirişlər',
+ 'older-than' => 'Daha yaşlı',
+ 'oldest' => 'Ən qədim',
+ 'openreg_activated' => 'Açıq qeydiyyat aktivləşdirildi',
+ 'order-by' => 'Sifariş',
+ 'other' => 'Digərləri',
+ 'pages' => 'Səhifələr',
+ 'password' => 'Şifrə',
+ 'patron' => 'Patron ol',
+ 'pending-torrents' => 'Bekleyen torrentlər',
+ 'personal' => 'Şəxsi',
+ 'plural-suffix' => 's',
+ 'port' => 'Port',
+ 'position' => 'Vəzifə',
+ 'posts' => 'Mesajlar',
+ 'powered-by' => 'UNIT3D tərəfindən hazırlanmışdır',
+ 'preview' => 'Ön görünüş',
+ 'previous' => 'Əvvəlki',
+ 'progress' => 'Tərəqqi',
+ 'publish' => 'Yayınla',
+ 'quantity' => 'Miqdarı',
+ 'quick-search' => 'Cəld axtarış',
+ 'ratio' => 'Nisbət',
+ 'reason' => 'Səbəb',
+ 'remove' => 'Sil',
+ 'report' => 'Hesabat',
+ 'resend' => 'Yenidən göndərmək',
+ 'reporter' => 'Reportyor',
+ 'required' => 'Lazımdır',
+ 'results' => 'Nəticələr',
+ 'rss-system' => 'RSS sistemi',
+ 'rules' => 'Qaydalar',
+ 'save' => 'Yadda saxla',
+ 'search' => 'Axtarış',
+ 'search-results' => 'Axtarış nəticələri',
+ 'search-results-desc' => 'Aşağıdakı nəticələrə baxın',
+ 'second' => 'İkincisi',
+ 'select' => 'Seçin',
+ 'sort' => 'Cür',
+ 'special' => 'Xüsusi',
+ 'staff' => 'Heyət',
+ 'staff-tools' => 'İşçi heyəti',
+ 'stats' => 'Stats',
+ 'status' => 'Status',
+ 'sticked' => 'Yapışdı',
+ 'submit' => 'təqdim',
+ 'subscriptions' => 'Abunəliklər',
+ 'teams' => 'Komandalar',
+ 'terms' => 'İstifadə qaydaları',
+ 'times' => 'Times',
+ 'title' => 'Başlıq',
+ 'top-bountied' => 'Üst Bountied',
+ 'topics' => 'Mövzular',
+ 'tracker-codes' => 'Tracker kodları',
+ 'type' => 'Tipi',
+ 'type-verb' => 'Tipi',
+ 'types' => 'Türləri',
+ 'genre' => 'Janr',
+ 'genres' => 'Janrlar',
+ 'action' => 'Fəaliyyət',
+ 'actions' => 'Tədbirlər',
+ 'unknown' => 'Naməlum',
'unlocked-achievement' => 'Siz kiliddən çıxdınız: nailiyyət nailiyyəti',
- 'upload' => 'Yükləmək',
- 'upload-guide' => 'Yükləmə bələdçisi',
- 'user' => 'İstifadəçi',
- 'username' => 'İstifadəçi adı',
- 'users' => 'İstifadəçilər',
- 'view' => 'Görünüş',
- 'view-all' => 'Hamısına baxın',
- 'warnings' => 'Uyarılar',
- 'year' => 'İl',
- 'yes' => 'Bəli',
- 'your' => 'Sizin',
- 'your-comment' => 'Şərhiniz',
+ 'upload' => 'Yükləmək',
+ 'upload-guide' => 'Yükləmə bələdçisi',
+ 'user' => 'İstifadəçi',
+ 'username' => 'İstifadəçi adı',
+ 'users' => 'İstifadəçilər',
+ 'view' => 'Görünüş',
+ 'view-all' => 'Hamısına baxın',
+ 'warnings' => 'Uyarılar',
+ 'year' => 'İl',
+ 'yes' => 'Bəli',
+ 'your' => 'Sizin',
+ 'your-comment' => 'Şərhiniz',
];
diff --git a/lang/az/email.php b/lang/az/email.php
index 0d9525bb8..f7e38fc18 100644
--- a/lang/az/email.php
+++ b/lang/az/email.php
@@ -12,46 +12,46 @@
*/
return [
- 'activate-account' => 'Hesabınızı aktivləşdirin',
- 'ban-reason' => 'Səbəb',
- 'banned-footer' => 'Qaydalara əməl etmədiyiniz üçün aldığınız şey',
- 'banned-header' => 'Sən qadağan oldun',
- 'bug-description' => 'Problem',
- 'bug-footer' => 'Fix That Shit',
- 'bug-header' => 'Yeni səhv hesabatı',
- 'bug-priority' => 'Prioritet',
- 'bug-title' => 'Səhv başlığı',
- 'contact-header' => 'Yeni əlaqə poçtu',
- 'contact-message' => 'Mesaj',
- 'contact-name' => 'Adı',
+ 'activate-account' => 'Hesabınızı aktivləşdirin',
+ 'ban-reason' => 'Səbəb',
+ 'banned-footer' => 'Qaydalara əməl etmədiyiniz üçün aldığınız şey',
+ 'banned-header' => 'Sən qadağan oldun',
+ 'bug-description' => 'Problem',
+ 'bug-footer' => 'Fix That Shit',
+ 'bug-header' => 'Yeni səhv hesabatı',
+ 'bug-priority' => 'Prioritet',
+ 'bug-title' => 'Səhv başlığı',
+ 'contact-header' => 'Yeni əlaqə poçtu',
+ 'contact-message' => 'Mesaj',
+ 'contact-name' => 'Adı',
'fail-login-greeting' => 'Hesab Giriş Yapılamadı!',
- 'fail-login-line1' => 'Hesabınız üçün uğursuz giriş aşkar edilib.',
- 'fail-login-line2' => 'Bu istek: ip (: ana) at: zaman',
- 'fail-login-subject' => 'Giriş Qeydləri uğursuz oldu',
- 'footer-link' => 'Düyməni tıkladığınız halda: actionText düyməsini kopyalayın və aşağıdakı URL yi veb brauzerinizə yapışdırın:',
- 'invite-header' => 'Davetiye',
- 'invite-invited' => 'Siz dəvət olunmuşdunuz',
- 'invite-message' => 'Mesaj',
- 'invite-signup' => 'İndi qeydiyyatdan keçin',
- 'newreply-header' => 'Mövzunuzda yeni cavab var',
- 'newreply-message' => 'Mesaj',
- 'newreply-replied' => 'Mövzuya cavab verdi',
- 'newreply-view' => 'İndi baxın',
- 'no-email-found' => 'Bu e-poçtu sistemimizdə tapa bilmədi!',
- 'register-code' => 'Hesabınızı aktivləşdirmək üçün aşağıdakı düyməni basın',
- 'register-footer' => 'Yuxarıdakı düyməni işləmirsə, brauzerinizin ünvan çubuğuna URL yi kopyalayıb yapışdırın',
- 'register-header' => 'Salam! Qeydiyyatınız üçün təşəkkür edirik',
- 'report-comment' => 'Şərh',
- 'report-email' => 'E-poçt',
- 'report-header' => 'Salam Admin, Bağlantı haqqında məlumat verildi',
- 'report-link' => 'Link',
- 'report-link-hash' => 'Həqiqi link',
- 'thanks' => 'Istifadə etdiyiniz üçün təşəkkür edirik',
- 'unban-footer' => 'Xoş gəldiniz!',
- 'unban-header' => 'Sənsiz qaldınız',
- 'unban-reason' => 'Səbəb',
- 'username-reminder' => 'Bu yaxınlarda siz bizim istifadəçi adınız üçün bizim appdə bir müraciət göndərdiniz. İstifadəçi adınızdır',
- 'username-sent' => 'İstifadəçi adınız e-poçt ünvanınıza göndərilib!',
- 'disabled-header' => 'Hesabınız Əlil edildi',
- 'pruned-header' => 'Hesabınız boğulub',
+ 'fail-login-line1' => 'Hesabınız üçün uğursuz giriş aşkar edilib.',
+ 'fail-login-line2' => 'Bu istek: ip (: ana) at: zaman',
+ 'fail-login-subject' => 'Giriş Qeydləri uğursuz oldu',
+ 'footer-link' => 'Düyməni tıkladığınız halda: actionText düyməsini kopyalayın və aşağıdakı URL yi veb brauzerinizə yapışdırın:',
+ 'invite-header' => 'Davetiye',
+ 'invite-invited' => 'Siz dəvət olunmuşdunuz',
+ 'invite-message' => 'Mesaj',
+ 'invite-signup' => 'İndi qeydiyyatdan keçin',
+ 'newreply-header' => 'Mövzunuzda yeni cavab var',
+ 'newreply-message' => 'Mesaj',
+ 'newreply-replied' => 'Mövzuya cavab verdi',
+ 'newreply-view' => 'İndi baxın',
+ 'no-email-found' => 'Bu e-poçtu sistemimizdə tapa bilmədi!',
+ 'register-code' => 'Hesabınızı aktivləşdirmək üçün aşağıdakı düyməni basın',
+ 'register-footer' => 'Yuxarıdakı düyməni işləmirsə, brauzerinizin ünvan çubuğuna URL yi kopyalayıb yapışdırın',
+ 'register-header' => 'Salam! Qeydiyyatınız üçün təşəkkür edirik',
+ 'report-comment' => 'Şərh',
+ 'report-email' => 'E-poçt',
+ 'report-header' => 'Salam Admin, Bağlantı haqqında məlumat verildi',
+ 'report-link' => 'Link',
+ 'report-link-hash' => 'Həqiqi link',
+ 'thanks' => 'Istifadə etdiyiniz üçün təşəkkür edirik',
+ 'unban-footer' => 'Xoş gəldiniz!',
+ 'unban-header' => 'Sənsiz qaldınız',
+ 'unban-reason' => 'Səbəb',
+ 'username-reminder' => 'Bu yaxınlarda siz bizim istifadəçi adınız üçün bizim appdə bir müraciət göndərdiniz. İstifadəçi adınızdır',
+ 'username-sent' => 'İstifadəçi adınız e-poçt ünvanınıza göndərilib!',
+ 'disabled-header' => 'Hesabınız Əlil edildi',
+ 'pruned-header' => 'Hesabınız boğulub',
];
diff --git a/lang/az/forum.php b/lang/az/forum.php
index fdc30f3f3..c0afaa9cd 100644
--- a/lang/az/forum.php
+++ b/lang/az/forum.php
@@ -12,63 +12,63 @@
*/
return [
- 'action' => 'Fəaliyyət',
- 'activity' => 'Fəaliyyət',
- 'approved' => 'Təsdiqləndi',
- 'author' => 'Müəllif',
- 'bug' => 'Bug',
- 'category-quick-search' => 'Mövzu adı tez axtarış (kateqoriya daxilində)',
- 'close-topic' => 'Lock Mövzu',
- 'closed' => 'Bağlı',
- 'create-new-topic' => 'Yeni Mövzu yarat',
- 'created' => 'Yaradıldı',
- 'current' => 'Cari',
- 'delete-topic' => 'Bu Mövzu Sil',
- 'denied' => 'Rədd edildi',
- 'dislike-post' => 'Bu yazı sevməmək',
- 'display-forum' => 'Mövzuları göstər',
- 'edit-post' => 'Postu redaktə edin',
- 'edit-topic' => 'Mövzuları redaktə edin',
- 'forum' => 'Forum',
- 'forums' => 'Forumlar',
- 'implemented' => 'Həyata keçirilən',
- 'in' => 'Daxildir',
- 'invalid' => 'Yanlış',
- 'label' => 'Etiket',
- 'label-system' => 'Etiket sistemi',
- 'last-message' => 'Son mesaj',
- 'last-post-info' => 'Son Mesaj Məlumat',
- 'latest' => 'Ən son',
- 'like-post' => 'Bu yazı kimi',
- 'meta-category' => 'Kateqoriyada forumların siyahısı',
- 'moderation' => 'Moderasiya',
- 'name' => 'Adı',
- 'not-connected' => 'Bağlı olmalısan',
- 'not-subscribed' => 'Abunə olunmayıb',
- 'open' => 'Açıq',
- 'open-topic' => 'Bu Mövzu Açın',
- 'permalink' => 'Permalink',
- 'pin' => 'Pin',
- 'post' => 'Post',
- 'post-quick-search' => 'Bədəndən tez axtarış',
- 'posts' => 'Mesajlar',
- 'quote' => 'Sitat gətir',
- 'read-topic' => 'Mövzu oxuyun',
- 'replies' => 'Cavablar',
- 'send-new-topic' => 'Bu Mövzu Saxla',
- 'solved' => 'Çözdüm',
- 'state' => 'Dövlət',
- 'stats' => 'Stats',
- 'subscribed' => 'Abunə olundu',
+ 'action' => 'Fəaliyyət',
+ 'activity' => 'Fəaliyyət',
+ 'approved' => 'Təsdiqləndi',
+ 'author' => 'Müəllif',
+ 'bug' => 'Bug',
+ 'category-quick-search' => 'Mövzu adı tez axtarış (kateqoriya daxilində)',
+ 'close-topic' => 'Lock Mövzu',
+ 'closed' => 'Bağlı',
+ 'create-new-topic' => 'Yeni Mövzu yarat',
+ 'created' => 'Yaradıldı',
+ 'current' => 'Cari',
+ 'delete-topic' => 'Bu Mövzu Sil',
+ 'denied' => 'Rədd edildi',
+ 'dislike-post' => 'Bu yazı sevməmək',
+ 'display-forum' => 'Mövzuları göstər',
+ 'edit-post' => 'Postu redaktə edin',
+ 'edit-topic' => 'Mövzuları redaktə edin',
+ 'forum' => 'Forum',
+ 'forums' => 'Forumlar',
+ 'implemented' => 'Həyata keçirilən',
+ 'in' => 'Daxildir',
+ 'invalid' => 'Yanlış',
+ 'label' => 'Etiket',
+ 'label-system' => 'Etiket sistemi',
+ 'last-message' => 'Son mesaj',
+ 'last-post-info' => 'Son Mesaj Məlumat',
+ 'latest' => 'Ən son',
+ 'like-post' => 'Bu yazı kimi',
+ 'meta-category' => 'Kateqoriyada forumların siyahısı',
+ 'moderation' => 'Moderasiya',
+ 'name' => 'Adı',
+ 'not-connected' => 'Bağlı olmalısan',
+ 'not-subscribed' => 'Abunə olunmayıb',
+ 'open' => 'Açıq',
+ 'open-topic' => 'Bu Mövzu Açın',
+ 'permalink' => 'Permalink',
+ 'pin' => 'Pin',
+ 'post' => 'Post',
+ 'post-quick-search' => 'Bədəndən tez axtarış',
+ 'posts' => 'Mesajlar',
+ 'quote' => 'Sitat gətir',
+ 'read-topic' => 'Mövzu oxuyun',
+ 'replies' => 'Cavablar',
+ 'send-new-topic' => 'Bu Mövzu Saxla',
+ 'solved' => 'Çözdüm',
+ 'state' => 'Dövlət',
+ 'stats' => 'Stats',
+ 'subscribed' => 'Abunə olundu',
'subscription-quick-search' => 'Mövzu adı tez axtarış (abunəliklər daxilində)',
- 'suggestion' => 'Təklif',
- 'topic' => 'Mövzu',
- 'topic-closed' => 'Bu Mövzu Bağlıdır',
- 'topic-name' => 'Mövzu adı',
- 'topic-quick-search' => 'Mövzu adı tez axtarış',
- 'topic-title' => 'Bu mövzunun adı',
- 'topics' => 'Mövzular',
- 'unpin' => 'Ləğv edin',
- 'view-all' => 'Bütün Mövzular bax',
- 'views' => 'Views',
+ 'suggestion' => 'Təklif',
+ 'topic' => 'Mövzu',
+ 'topic-closed' => 'Bu Mövzu Bağlıdır',
+ 'topic-name' => 'Mövzu adı',
+ 'topic-quick-search' => 'Mövzu adı tez axtarış',
+ 'topic-title' => 'Bu mövzunun adı',
+ 'topics' => 'Mövzular',
+ 'unpin' => 'Ləğv edin',
+ 'view-all' => 'Bütün Mövzular bax',
+ 'views' => 'Views',
];
diff --git a/lang/az/graveyard.php b/lang/az/graveyard.php
index 751a9476b..6defc3e2c 100644
--- a/lang/az/graveyard.php
+++ b/lang/az/graveyard.php
@@ -12,15 +12,15 @@
*/
return [
- 'dead' => 'Ölü',
- 'graveyard' => 'Qəbiristanlıq',
- 'guidelines' => 'Təlimatlar',
+ 'dead' => 'Ölü',
+ 'graveyard' => 'Qəbiristanlıq',
+ 'guidelines' => 'Təlimatlar',
'guidelines-content' => '1) Öz yükləmələrinizi bərpa edə bilməzsiniz.
2) Diqqətsiz bir şeyi də törətməyin.',
- 'howto' => 'Hörmət Qaydası',
- 'howto-desc1' => 'Siz toxumunuz olmalıdır : uğurlu bir xilasetmə üçün 30 gündür . Hansı dövrdə toxumunuz varsa',
- 'howto-desc2' => 'Sizə mükafat veriləcəkdir',
- 'howto-hits' => 'Hits',
- 'pending' => 'gözləyən',
- 'resurrect' => 'Canlıdır',
- 'reward' => 'Freeleech ayələri',
+ 'howto' => 'Hörmət Qaydası',
+ 'howto-desc1' => 'Siz toxumunuz olmalıdır : uğurlu bir xilasetmə üçün 30 gündür . Hansı dövrdə toxumunuz varsa',
+ 'howto-desc2' => 'Sizə mükafat veriləcəkdir',
+ 'howto-hits' => 'Hits',
+ 'pending' => 'gözləyən',
+ 'resurrect' => 'Canlıdır',
+ 'reward' => 'Freeleech ayələri',
];
diff --git a/lang/az/notification.php b/lang/az/notification.php
index 50e40b7a2..ef414c495 100644
--- a/lang/az/notification.php
+++ b/lang/az/notification.php
@@ -12,14 +12,14 @@
*/
return [
- 'date' => 'Tarix',
- 'delete' => 'Sil',
- 'delete-all' => 'Bütün bildirişləri silin',
- 'mark-all-read' => 'Hamısını oxunmuş olaraq işarələ',
- 'mark-read' => 'Oxunduğu kimi qeyd edin',
- 'message' => 'Mesaj',
+ 'date' => 'Tarix',
+ 'delete' => 'Sil',
+ 'delete-all' => 'Bütün bildirişləri silin',
+ 'mark-all-read' => 'Hamısını oxunmuş olaraq işarələ',
+ 'mark-read' => 'Oxunduğu kimi qeyd edin',
+ 'message' => 'Mesaj',
'no-notifications' => 'Heç bir bildiriş tapılmadı',
- 'notifications' => 'Bildirişlər',
- 'read' => 'Oxuyun',
- 'title' => 'Başlıq',
+ 'notifications' => 'Bildirişlər',
+ 'read' => 'Oxuyun',
+ 'title' => 'Başlıq',
];
diff --git a/lang/az/page.php b/lang/az/page.php
index d16c6cd30..c4472df43 100644
--- a/lang/az/page.php
+++ b/lang/az/page.php
@@ -12,28 +12,28 @@
*/
return [
- 'aboutus-advantage' => 'Üstünlük',
- 'aboutus-advantage1' => 'HD video / audio və texniki dəstək dünyasında yaxşı bilikli olan üzvləri və heyəti var.',
- 'aboutus-advantage2' => 'Kino və televiziya şousu üçün geniş ehtiraslarımızla yanaşı, biz də ən yaxşı şeylərin ən yaxşı seçimlərini təqdim edirik - FANRES! Məzmunu gətirənlərə böyük bir təşəkkür edirəm.',
- 'aboutus-advantage3' => 'Saytın saxlanılması və işləməməsi üçün ianələr qəbul edərkən saytda heç bir pestering PM və ya banner olmayacaq. Bizdən dilənməyin.',
- 'aboutus-advantage4' => 'Cəmiyyətimiz erkən yaşda heç kimə ikinci deyil. Bizim əməkdaşlarımız və userbase arasında, həmişə kömək etmək üçün buradayıq. Təcrübənizin əmin olunduğuna dair ehtiraslı id: başlıq inanılmaz bir şey deyil.',
- 'aboutus-advantage5' => 'Bizim xidmətimiz dünyanın müxtəlif yerlərində gündəlik istifadə olunur. Weve, kodbazımızın funksionallığı və təhlükəsizliyi ilə bağlı olduğumuzu sübut etdi və ona etibar və etibarlı ola bilər. Bizim developers gündəlik həqiqətən nex-gen kod bazası təmin etmək üçün çalışırlar.',
- 'aboutus-header' => 'Salam',
- 'aboutus-rules' => 'Bizdən sizə nə lazımdır',
- 'aboutus-rules1' => 'Cəmiyyətin fəal üzvü olmaq! Bu, məhsuldar söhbətlərə qoşulmaq, təsdiq edilmiş məzmun əlavə etmək və mümkünsə digər istifadəçilərə kömək etmək deməkdir.',
- 'aboutus-rules2' => 'Qaydaları tam oxumaq və onlara hörmət edin!',
- 'aboutus-rules3' => 'Təqdim olun! Biz hər gün yaxşılaşdırmaq üçün çalışırıq. Hər təklifin istifadə ediləcəyini söyləyirik, ancaq yeni ideyalar görməyimiz heç vaxt yaraşmaz.',
- 'aboutus-welcome' => 'Söz verin',
- 'aboutus-welcome-desc' => ': başlıq cəmiyyətdə qurulmuş film / TV / FANRES bazasıdır. 2017-ci ildən etibarən hər cür məlumat heyətimiz inanılmaz cəmiyyətimiz tərəfindən əlavə olunmuşdur: başlıqları güclü diqqət HD kontentinə, proaktiv istifadəçi bazasına, zəhmli / təhlükəsiz kod bazasına və faydalı və dostluq heyətinə aiddir.',
- 'blacklist-browsers' => 'Brauzerlər',
- 'blacklist-btclient' => 'BitTorrent Müştərisi',
- 'blacklist-clients' => 'Müştərilər',
- 'blacklist-desc' => 'Aşağıdakı brauzerlər və Bittorrent müştəriləri siyahıya alındıqları / qadağan olunduqları üçün: adı',
- 'blacklist-webbrowser' => 'Web Browser',
+ 'aboutus-advantage' => 'Üstünlük',
+ 'aboutus-advantage1' => 'HD video / audio və texniki dəstək dünyasında yaxşı bilikli olan üzvləri və heyəti var.',
+ 'aboutus-advantage2' => 'Kino və televiziya şousu üçün geniş ehtiraslarımızla yanaşı, biz də ən yaxşı şeylərin ən yaxşı seçimlərini təqdim edirik - FANRES! Məzmunu gətirənlərə böyük bir təşəkkür edirəm.',
+ 'aboutus-advantage3' => 'Saytın saxlanılması və işləməməsi üçün ianələr qəbul edərkən saytda heç bir pestering PM və ya banner olmayacaq. Bizdən dilənməyin.',
+ 'aboutus-advantage4' => 'Cəmiyyətimiz erkən yaşda heç kimə ikinci deyil. Bizim əməkdaşlarımız və userbase arasında, həmişə kömək etmək üçün buradayıq. Təcrübənizin əmin olunduğuna dair ehtiraslı id: başlıq inanılmaz bir şey deyil.',
+ 'aboutus-advantage5' => 'Bizim xidmətimiz dünyanın müxtəlif yerlərində gündəlik istifadə olunur. Weve, kodbazımızın funksionallığı və təhlükəsizliyi ilə bağlı olduğumuzu sübut etdi və ona etibar və etibarlı ola bilər. Bizim developers gündəlik həqiqətən nex-gen kod bazası təmin etmək üçün çalışırlar.',
+ 'aboutus-header' => 'Salam',
+ 'aboutus-rules' => 'Bizdən sizə nə lazımdır',
+ 'aboutus-rules1' => 'Cəmiyyətin fəal üzvü olmaq! Bu, məhsuldar söhbətlərə qoşulmaq, təsdiq edilmiş məzmun əlavə etmək və mümkünsə digər istifadəçilərə kömək etmək deməkdir.',
+ 'aboutus-rules2' => 'Qaydaları tam oxumaq və onlara hörmət edin!',
+ 'aboutus-rules3' => 'Təqdim olun! Biz hər gün yaxşılaşdırmaq üçün çalışırıq. Hər təklifin istifadə ediləcəyini söyləyirik, ancaq yeni ideyalar görməyimiz heç vaxt yaraşmaz.',
+ 'aboutus-welcome' => 'Söz verin',
+ 'aboutus-welcome-desc' => ': başlıq cəmiyyətdə qurulmuş film / TV / FANRES bazasıdır. 2017-ci ildən etibarən hər cür məlumat heyətimiz inanılmaz cəmiyyətimiz tərəfindən əlavə olunmuşdur: başlıqları güclü diqqət HD kontentinə, proaktiv istifadəçi bazasına, zəhmli / təhlükəsiz kod bazasına və faydalı və dostluq heyətinə aiddir.',
+ 'blacklist-browsers' => 'Brauzerlər',
+ 'blacklist-btclient' => 'BitTorrent Müştərisi',
+ 'blacklist-clients' => 'Müştərilər',
+ 'blacklist-desc' => 'Aşağıdakı brauzerlər və Bittorrent müştəriləri siyahıya alındıqları / qadağan olunduqları üçün: adı',
+ 'blacklist-webbrowser' => 'Web Browser',
'blacklist-emaildomain' => 'Blocked Domain',
- 'email-blacklist-desc' => 'Aşağıdakı E-poçt Domains istifadə olunmaqdan maneə törədilib. Siz qeydiyyatdan keçə və ya aşağıdakılara dəvət göndərə bilərsiniz.',
- 'email-whitelist-desc' => 'Aşağıdakı E-poçt Alanları İstifadə Ediləcək Yalnız E-poçt Alanlarıdır. Siz yalnız qeydiyyatdan bilər və ya aşağıdakılardan istifadə edərək bir dəvət göndərin.',
- 'staff-group' => 'Qrup',
- 'staff-title' => 'Başlıq',
+ 'email-blacklist-desc' => 'Aşağıdakı E-poçt Domains istifadə olunmaqdan maneə törədilib. Siz qeydiyyatdan keçə və ya aşağıdakılara dəvət göndərə bilərsiniz.',
+ 'email-whitelist-desc' => 'Aşağıdakı E-poçt Alanları İstifadə Ediləcək Yalnız E-poçt Alanlarıdır. Siz yalnız qeydiyyatdan bilər və ya aşağıdakılardan istifadə edərək bir dəvət göndərin.',
+ 'staff-group' => 'Qrup',
+ 'staff-title' => 'Başlıq',
'whitelist-emaildomain' => 'Etibarlı Alan',
];
diff --git a/lang/az/pagination.php b/lang/az/pagination.php
index de495b27b..32785d3f1 100644
--- a/lang/az/pagination.php
+++ b/lang/az/pagination.php
@@ -24,5 +24,5 @@ return [
*/
'previous' => '« Əvvəl',
- 'next' => 'Sonra »',
+ 'next' => 'Sonra »',
];
diff --git a/lang/az/passwords.php b/lang/az/passwords.php
index 2e63b64ba..e15e85a52 100644
--- a/lang/az/passwords.php
+++ b/lang/az/passwords.php
@@ -24,8 +24,8 @@ return [
*/
'password' => 'Şifrə ən az 6 simvoldan ibarət olmalı və təkrarı ilə uyğun olmalıdır',
- 'reset' => 'Şifrə yeniləndi',
- 'sent' => 'Şifrə yeniləmə adresi sizə email olaraq göndərildi',
- 'token' => 'Bu şifrə yeniləmə kodu yanlışdır',
- 'user' => "Bu email'ə uyğun istifadəçi tapılmadı",
+ 'reset' => 'Şifrə yeniləndi',
+ 'sent' => 'Şifrə yeniləmə adresi sizə email olaraq göndərildi',
+ 'token' => 'Bu şifrə yeniləmə kodu yanlışdır',
+ 'user' => "Bu email'ə uyğun istifadəçi tapılmadı",
];
diff --git a/lang/az/pm.php b/lang/az/pm.php
index 2b2ea0cc5..131d7c272 100644
--- a/lang/az/pm.php
+++ b/lang/az/pm.php
@@ -12,28 +12,28 @@
*/
return [
- 'create' => 'Yaradın',
- 'delete' => 'Sil',
+ 'create' => 'Yaradın',
+ 'delete' => 'Sil',
'enter-subject' => 'Mövzu daxil edin',
- 'from' => 'From',
- 'inbox' => 'Gələnlər qutusu',
+ 'from' => 'From',
+ 'inbox' => 'Gələnlər qutusu',
'mark-all-read' => 'Bütün mesajları oxunduğu kimi qeyd edin',
- 'message' => 'Mesaj',
- 'messages' => 'Mesajlar',
- 'new' => 'Yeni mesaj',
- 'outbox' => 'Gedənlər',
- 'private' => 'Şəxsi',
- 'read' => 'Oxuyun',
- 'received-at' => 'Alındı',
- 'refresh' => 'təzələmək',
- 'reply' => 'Cavab ver',
- 'search' => 'Mövzu ilə axtarış',
- 'select' => 'İstifadəçi seçin',
- 'send' => 'PM göndər',
- 'send-to' => 'Baş nazirinə göndər',
- 'sent' => 'Göndərildi',
- 'sent-at' => 'Atəşə verildi',
- 'subject' => 'Mövzu',
- 'to' => 'Kənar',
- 'unread' => 'Oxunmamışdır',
+ 'message' => 'Mesaj',
+ 'messages' => 'Mesajlar',
+ 'new' => 'Yeni mesaj',
+ 'outbox' => 'Gedənlər',
+ 'private' => 'Şəxsi',
+ 'read' => 'Oxuyun',
+ 'received-at' => 'Alındı',
+ 'refresh' => 'təzələmək',
+ 'reply' => 'Cavab ver',
+ 'search' => 'Mövzu ilə axtarış',
+ 'select' => 'İstifadəçi seçin',
+ 'send' => 'PM göndər',
+ 'send-to' => 'Baş nazirinə göndər',
+ 'sent' => 'Göndərildi',
+ 'sent-at' => 'Atəşə verildi',
+ 'subject' => 'Mövzu',
+ 'to' => 'Kənar',
+ 'unread' => 'Oxunmamışdır',
];
diff --git a/lang/az/poll.php b/lang/az/poll.php
index e49d63e6a..13e6dc830 100644
--- a/lang/az/poll.php
+++ b/lang/az/poll.php
@@ -12,18 +12,18 @@
*/
return [
- 'add-option' => 'Seçim əlavə edin',
- 'create-poll' => 'Anket yaradın',
- 'current' => 'Cari Anket (lər)',
- 'delete-option' => 'Seçimi sil',
+ 'add-option' => 'Seçim əlavə edin',
+ 'create-poll' => 'Anket yaradın',
+ 'current' => 'Cari Anket (lər)',
+ 'delete-option' => 'Seçimi sil',
'multiple-choice' => 'Bu çoxsaylı seçki anketidir. Istədiyiniz qədər çox cavabı seçin.',
- 'option' => 'Seçim',
- 'poll' => 'Anket',
- 'polls' => 'Sorğular',
- 'results' => 'Anket nəticələri',
- 'title' => 'Başlıq',
- 'total' => 'Hörmətli səs sayı',
- 'vote' => 'Vote',
- 'vote-now' => 'İndi səs verin!',
- 'votes' => 'Votes',
+ 'option' => 'Seçim',
+ 'poll' => 'Anket',
+ 'polls' => 'Sorğular',
+ 'results' => 'Anket nəticələri',
+ 'title' => 'Başlıq',
+ 'total' => 'Hörmətli səs sayı',
+ 'vote' => 'Vote',
+ 'vote-now' => 'İndi səs verin!',
+ 'votes' => 'Votes',
];
diff --git a/lang/az/request.php b/lang/az/request.php
index 0ec277fd4..5e2e6c866 100644
--- a/lang/az/request.php
+++ b/lang/az/request.php
@@ -12,67 +12,67 @@
*/
return [
- 'add-request' => 'İstək əlavə edin',
- 'age' => 'Yaş',
- 'all-requests' => 'Bütün istəklər',
- 'approve' => 'Təsdiq edin',
- 'bounty' => 'Bounty',
- 'bounty-claimed' => 'Bounty iddia etdi',
- 'bounty-unclaimed' => 'Bounty tələb edilmədi',
- 'category' => 'Kateqoriya',
- 'claim' => 'Şikayət',
- 'claim-anon-choose' => 'Xahiş edirik Seçməni Seçin',
- 'claim-as-anon' => 'İstəyirəm bu iddianı istəməyəcəksən',
- 'claim-now' => 'İndi iddia',
- 'claimed' => 'İddialar',
- 'current' => 'Cari',
- 'delete' => 'Bu İstek Sil',
+ 'add-request' => 'İstək əlavə edin',
+ 'age' => 'Yaş',
+ 'all-requests' => 'Bütün istəklər',
+ 'approve' => 'Təsdiq edin',
+ 'bounty' => 'Bounty',
+ 'bounty-claimed' => 'Bounty iddia etdi',
+ 'bounty-unclaimed' => 'Bounty tələb edilmədi',
+ 'category' => 'Kateqoriya',
+ 'claim' => 'Şikayət',
+ 'claim-anon-choose' => 'Xahiş edirik Seçməni Seçin',
+ 'claim-as-anon' => 'İstəyirəm bu iddianı istəməyəcəksən',
+ 'claim-now' => 'İndi iddia',
+ 'claimed' => 'İddialar',
+ 'current' => 'Cari',
+ 'delete' => 'Bu İstek Sil',
'delete-confirmation' => 'Bu İstədiyi silmək istədiyinizə əminsinizmi?',
- 'delete-filled' => 'Bu tələb yalnız doldurulmadıqda silinəcəkdir',
- 'description' => 'Təsvir',
- 'dont-have-bps' => 'Siz kifayət qədər Bonusunuz yoxdur',
- 'edit-request' => 'İstəkləri redaktə edin',
- 'enter-bp' => 'Bonus xallarını daxil edin (minimum 100)',
- 'enter-hash' => 'Yüklənmiş Torrent məlumat xaşını daxil edin',
- 'fill' => 'Doldur',
- 'fill-request' => 'Bu tələbi doldurun',
- 'filled' => 'Dolmuş',
- 'filled-by' => 'Doldurulmuş',
- 'for' => 'üçün',
- 'fulfill' => 'Əvəz edin',
- 'last-vote' => 'Son səsvermə',
- 'my-requests' => 'Mənim istəklərim',
- 'no' => 'Yox,',
- 'no-imdb-id' => 'Bütün İstekler IMDB nömrəsi içermelidir',
- 'no-privileges' => 'Hata: İstək hüquqlarınız aradan qaldırıldı',
- 'no-privileges-desc' => 'Bu səhv olduğunu düşünüyorsanız, Xahiş edirik Xahiş olunur',
- 'no-refunds' => 'Yaratmaq, doldurmaq və xeyir-dualar üçün BON mübadiləsi sonuncu!
YARANMAYACAQ!',
- 'pending' => 'gözləyən',
- 'reason' => 'Səbəb',
- 'reject' => 'Rədd et',
- 'report' => 'Hesabat tələbi',
- 'request' => 'İstək',
- 'request-details' => 'Ətraflı məlumat tələb edin',
- 'requested-by' => 'İstənənlər',
- 'requests' => 'İstək',
- 'required' => 'Lazımdır',
- 'reset' => 'Sıfırla',
- 'reset-confirmation' => 'Bu İstəyi sıfırlamağınızdan əminsinizmi?',
- 'reset-request' => 'Bu İstədiyi sıfırlayın',
- 'reward' => 'Mükafat',
- 'reward-desc' => 'Nə qədər mükafat qazanmaq istəyirsən? Minimum 100 BP',
- 'reward-from' => 'From',
- 'title' => 'Başlıq',
- 'torrent-hash' => 'Torrent Hash',
- 'total-bounty' => 'Ümumi bəxşiş',
- 'type' => 'Tipi',
- 'unclaim' => 'Bu tələbi tələb etmə',
- 'unfilled' => 'Doldurulmadı',
- 'view-filled' => 'Baxış dolu',
- 'view-unfilled' => 'Fillə baxılmadı',
- 'vote' => 'Vote',
- 'vote-that' => 'Bu tələbi səsləndirin',
- 'voters' => 'Seçicilər',
- 'votes' => 'Votes',
- 'yes' => 'Bəli',
+ 'delete-filled' => 'Bu tələb yalnız doldurulmadıqda silinəcəkdir',
+ 'description' => 'Təsvir',
+ 'dont-have-bps' => 'Siz kifayət qədər Bonusunuz yoxdur',
+ 'edit-request' => 'İstəkləri redaktə edin',
+ 'enter-bp' => 'Bonus xallarını daxil edin (minimum 100)',
+ 'enter-hash' => 'Yüklənmiş Torrent məlumat xaşını daxil edin',
+ 'fill' => 'Doldur',
+ 'fill-request' => 'Bu tələbi doldurun',
+ 'filled' => 'Dolmuş',
+ 'filled-by' => 'Doldurulmuş',
+ 'for' => 'üçün',
+ 'fulfill' => 'Əvəz edin',
+ 'last-vote' => 'Son səsvermə',
+ 'my-requests' => 'Mənim istəklərim',
+ 'no' => 'Yox,',
+ 'no-imdb-id' => 'Bütün İstekler IMDB nömrəsi içermelidir',
+ 'no-privileges' => 'Hata: İstək hüquqlarınız aradan qaldırıldı',
+ 'no-privileges-desc' => 'Bu səhv olduğunu düşünüyorsanız, Xahiş edirik Xahiş olunur',
+ 'no-refunds' => 'Yaratmaq, doldurmaq və xeyir-dualar üçün BON mübadiləsi sonuncu!
YARANMAYACAQ!',
+ 'pending' => 'gözləyən',
+ 'reason' => 'Səbəb',
+ 'reject' => 'Rədd et',
+ 'report' => 'Hesabat tələbi',
+ 'request' => 'İstək',
+ 'request-details' => 'Ətraflı məlumat tələb edin',
+ 'requested-by' => 'İstənənlər',
+ 'requests' => 'İstək',
+ 'required' => 'Lazımdır',
+ 'reset' => 'Sıfırla',
+ 'reset-confirmation' => 'Bu İstəyi sıfırlamağınızdan əminsinizmi?',
+ 'reset-request' => 'Bu İstədiyi sıfırlayın',
+ 'reward' => 'Mükafat',
+ 'reward-desc' => 'Nə qədər mükafat qazanmaq istəyirsən? Minimum 100 BP',
+ 'reward-from' => 'From',
+ 'title' => 'Başlıq',
+ 'torrent-hash' => 'Torrent Hash',
+ 'total-bounty' => 'Ümumi bəxşiş',
+ 'type' => 'Tipi',
+ 'unclaim' => 'Bu tələbi tələb etmə',
+ 'unfilled' => 'Doldurulmadı',
+ 'view-filled' => 'Baxış dolu',
+ 'view-unfilled' => 'Fillə baxılmadı',
+ 'vote' => 'Vote',
+ 'vote-that' => 'Bu tələbi səsləndirin',
+ 'voters' => 'Seçicilər',
+ 'votes' => 'Votes',
+ 'yes' => 'Bəli',
];
diff --git a/lang/az/rss.php b/lang/az/rss.php
index 69280370a..04b39b99b 100644
--- a/lang/az/rss.php
+++ b/lang/az/rss.php
@@ -12,19 +12,19 @@
*/
return [
- 'create' => 'Yaradın',
+ 'create' => 'Yaradın',
'create-private-feed' => 'Xüsusi RSS Feed yaradın',
- 'create-public-feed' => 'Rəqəmsal RSS Feed yaradın',
- 'delete' => 'Sil',
- 'edit' => 'Düzəliş edin',
- 'edit-private-feed' => 'Şəxsi RSS rəyini redaktə edin',
- 'edit-public-feed' => 'İctimaiyyətin RSS rəyini redaktə edin',
- 'feed' => 'Yemək',
- 'feeds' => 'Yemləri',
- 'name' => 'Adı',
- 'public' => 'İctimai',
- 'private' => 'Şəxsi',
- 'rss' => 'RSS',
- 'rss-feed' => 'RSS Feed',
- 'type' => 'Tipi',
+ 'create-public-feed' => 'Rəqəmsal RSS Feed yaradın',
+ 'delete' => 'Sil',
+ 'edit' => 'Düzəliş edin',
+ 'edit-private-feed' => 'Şəxsi RSS rəyini redaktə edin',
+ 'edit-public-feed' => 'İctimaiyyətin RSS rəyini redaktə edin',
+ 'feed' => 'Yemək',
+ 'feeds' => 'Yemləri',
+ 'name' => 'Adı',
+ 'public' => 'İctimai',
+ 'private' => 'Şəxsi',
+ 'rss' => 'RSS',
+ 'rss-feed' => 'RSS Feed',
+ 'type' => 'Tipi',
];
diff --git a/lang/az/staff.php b/lang/az/staff.php
index d375ad2b0..6c1b04617 100644
--- a/lang/az/staff.php
+++ b/lang/az/staff.php
@@ -12,48 +12,48 @@
*/
return [
- 'audit-log' => 'Fəaliyyət Giriş',
- 'articles' => 'Məqalələr',
- 'applications' => 'Proqramlar',
- 'bans-log' => 'Bant Giriş',
- 'blocks' => 'Bloklar',
- 'bot' => 'Bot',
- 'bots' => 'Bots',
- 'chat' => 'Chat',
- 'config-manager' => 'Konfiqurasiya meneceri',
- 'dashboard' => 'Dashboard',
- 'failed-login-log' => 'Giriş Giriş Yapamadı',
- 'flush-ghost-peers' => 'Ghost Peers ı Flush',
- 'forums' => 'Forumlar',
- 'frontend' => 'Ön tərəfdə',
- 'general-tools' => 'Ümumi Tools',
- 'groups' => 'Qruplar',
- 'invites-log' => 'Girişə dəvət edir',
- 'laravel-log' => 'Laravel Log',
- 'links' => 'Linklər',
- 'logs' => 'Günlükler',
- 'mass-pm' => 'Kütləvi PM',
- 'mass-validate-users' => 'Kütləvi Validate İstifadəçilər',
- 'moderation' => 'Moderasiya',
- 'pages' => 'Səhifələr',
- 'please-moderate' => 'Xahiş edirik bu Torrent i dəyişdirin!',
- 'polls' => 'Sorğular',
- 'reports-log' => 'Hesabatlar Giriş',
- 'rss' => 'RSS',
- 'staff-dashboard' => 'Personal Dashboard',
- 'torrent-categories' => 'Torrent Kateqoriyalar',
- 'torrent-moderation' => 'Torrent Moderation',
- 'torrent-tools' => 'Torrent Tools',
- 'torrent-types' => 'Torrent növləri',
- 'torrents' => 'Torrents',
- 'user-gifting' => 'İstifadəçi Gifting',
- 'user-notes' => 'İstifadəçi qeydləri Giriş',
- 'user-search' => 'İstifadəçi axtarışı',
- 'user-tools' => 'İstifadəçi Tools',
- 'warnings-log' => 'Uyarılar Giriş',
- 'you-have' => 'Siz var',
+ 'audit-log' => 'Fəaliyyət Giriş',
+ 'articles' => 'Məqalələr',
+ 'applications' => 'Proqramlar',
+ 'bans-log' => 'Bant Giriş',
+ 'blocks' => 'Bloklar',
+ 'bot' => 'Bot',
+ 'bots' => 'Bots',
+ 'chat' => 'Chat',
+ 'config-manager' => 'Konfiqurasiya meneceri',
+ 'dashboard' => 'Dashboard',
+ 'failed-login-log' => 'Giriş Giriş Yapamadı',
+ 'flush-ghost-peers' => 'Ghost Peers ı Flush',
+ 'forums' => 'Forumlar',
+ 'frontend' => 'Ön tərəfdə',
+ 'general-tools' => 'Ümumi Tools',
+ 'groups' => 'Qruplar',
+ 'invites-log' => 'Girişə dəvət edir',
+ 'laravel-log' => 'Laravel Log',
+ 'links' => 'Linklər',
+ 'logs' => 'Günlükler',
+ 'mass-pm' => 'Kütləvi PM',
+ 'mass-validate-users' => 'Kütləvi Validate İstifadəçilər',
+ 'moderation' => 'Moderasiya',
+ 'pages' => 'Səhifələr',
+ 'please-moderate' => 'Xahiş edirik bu Torrent i dəyişdirin!',
+ 'polls' => 'Sorğular',
+ 'reports-log' => 'Hesabatlar Giriş',
+ 'rss' => 'RSS',
+ 'staff-dashboard' => 'Personal Dashboard',
+ 'torrent-categories' => 'Torrent Kateqoriyalar',
+ 'torrent-moderation' => 'Torrent Moderation',
+ 'torrent-tools' => 'Torrent Tools',
+ 'torrent-types' => 'Torrent növləri',
+ 'torrents' => 'Torrents',
+ 'user-gifting' => 'İstifadəçi Gifting',
+ 'user-notes' => 'İstifadəçi qeydləri Giriş',
+ 'user-search' => 'İstifadəçi axtarışı',
+ 'user-tools' => 'İstifadəçi Tools',
+ 'warnings-log' => 'Uyarılar Giriş',
+ 'you-have' => 'Siz var',
'possible-leech-cheaters' => 'Mümkün Cheaters',
- 'chat-tools' => 'Chat Tools',
- 'flush-chat' => 'Chatbox yandırın',
- 'seedboxes' => 'Qeydiyyatlı Seedboxes',
+ 'chat-tools' => 'Chat Tools',
+ 'flush-chat' => 'Chatbox yandırın',
+ 'seedboxes' => 'Qeydiyyatlı Seedboxes',
];
diff --git a/lang/az/stat.php b/lang/az/stat.php
index c8659fc77..89d1400ab 100644
--- a/lang/az/stat.php
+++ b/lang/az/stat.php
@@ -12,40 +12,40 @@
*/
return [
- 'by-count' => 'Count ilə',
- 'by-data' => 'Data ilə',
- 'by-volume' => 'Səs ilə',
- 'group' => 'Qrup',
- 'groups' => 'Qruplar',
- 'nerd-stats' => 'Nerd stats',
- 'nerd-stats-desc' => 'Biz hamımız stats sevirik. Burada əhəmiyyətli olan bir neçə adam var',
- 'registration-date' => 'Qeydiyyat tarixi',
- 'request-fulfilled' => 'İstək yerinə yetirildi',
- 'request-not-fulfilled' => 'İstək yerinə yetirilməmişdir',
+ 'by-count' => 'Count ilə',
+ 'by-data' => 'Data ilə',
+ 'by-volume' => 'Səs ilə',
+ 'group' => 'Qrup',
+ 'groups' => 'Qruplar',
+ 'nerd-stats' => 'Nerd stats',
+ 'nerd-stats-desc' => 'Biz hamımız stats sevirik. Burada əhəmiyyətli olan bir neçə adam var',
+ 'registration-date' => 'Qeydiyyat tarixi',
+ 'request-fulfilled' => 'İstək yerinə yetirildi',
+ 'request-not-fulfilled' => 'İstək yerinə yetirilməmişdir',
'request-pending-aproval' => 'Bekleyen aproval isteyin',
- 'select-category' => 'Xahiş edirik aşağıda bir kateqoriya seçin',
- 'site-stats' => 'Saytın statistikası',
- 'stats' => 'Stats',
- 'stats-format' => 'Bütün Statistikalar Top 100 Formatında Göstərildi',
- 'top-bankers' => 'Top Banklar',
- 'top-bountied' => 'Üst Bountied',
- 'top-completed' => 'Tamamlandı',
- 'top-dead' => 'Üst Ölülər',
- 'top-downloaded' => 'Ən çox yüklənən Torrents',
- 'top-downloaders' => 'Top Downloaders',
- 'top-dying' => 'Ən çox ölmək',
- 'top-leeched' => 'Yuxarı Leeched',
- 'top-leechers' => 'Ən yaxşı Leechers',
- 'top-seeded' => 'Top Seeded',
- 'top-seeding' => 'Top toxum',
- 'top-seeders' => 'Top Seeders',
- 'top-seedsize' => 'Top toxum',
- 'top-seedtime' => 'Top Seedtime',
- 'top-uploaders' => 'Ən yükləyicilər',
- 'total-download' => 'Total Download',
- 'total-torrents' => 'Total Torrents',
- 'total-traffic' => 'Ümumi trafik',
- 'total-upload' => 'Ümumi yükləmə',
- 'users-in-group' => 'Qrupda İstifadəçilər',
- 'users-per-group' => 'Qruplar üzrə istifadəçilər',
+ 'select-category' => 'Xahiş edirik aşağıda bir kateqoriya seçin',
+ 'site-stats' => 'Saytın statistikası',
+ 'stats' => 'Stats',
+ 'stats-format' => 'Bütün Statistikalar Top 100 Formatında Göstərildi',
+ 'top-bankers' => 'Top Banklar',
+ 'top-bountied' => 'Üst Bountied',
+ 'top-completed' => 'Tamamlandı',
+ 'top-dead' => 'Üst Ölülər',
+ 'top-downloaded' => 'Ən çox yüklənən Torrents',
+ 'top-downloaders' => 'Top Downloaders',
+ 'top-dying' => 'Ən çox ölmək',
+ 'top-leeched' => 'Yuxarı Leeched',
+ 'top-leechers' => 'Ən yaxşı Leechers',
+ 'top-seeded' => 'Top Seeded',
+ 'top-seeding' => 'Top toxum',
+ 'top-seeders' => 'Top Seeders',
+ 'top-seedsize' => 'Top toxum',
+ 'top-seedtime' => 'Top Seedtime',
+ 'top-uploaders' => 'Ən yükləyicilər',
+ 'total-download' => 'Total Download',
+ 'total-torrents' => 'Total Torrents',
+ 'total-traffic' => 'Ümumi trafik',
+ 'total-upload' => 'Ümumi yükləmə',
+ 'users-in-group' => 'Qrupda İstifadəçilər',
+ 'users-per-group' => 'Qruplar üzrə istifadəçilər',
];
diff --git a/lang/az/torrent.php b/lang/az/torrent.php
index da1e31e92..f067a0430 100644
--- a/lang/az/torrent.php
+++ b/lang/az/torrent.php
@@ -12,197 +12,197 @@
*/
return [
- 'activity' => 'Fəaliyyət',
- 'age' => 'Yaş',
- 'agent' => 'Agent',
- 'alive' => 'Alive',
- 'announce-url' => 'URL bildirin',
- 'announce-url-desc' => 'Yeni bir torrent yaratarkən yuxarıdakı URL yi istifadə edin. Torrentinizi saytdan yükləmədən istifadə etmək istəyirsinizsə, özəl bayrağı və mənbəyi təyin etməlisiniz: source',
- 'announce-url-desc-url' => 'Çətinlik çəkmək? Bizim Baxışımıza BURA baxın',
- 'announce-url-desc2' => 'TMDB və IMDB bütün yükləmələr üçün tələb olunur! Afişa / fonları və ExtraInfo işğal etmək üçün istifadə olunur',
- 'approved' => 'Təsdiqləndi',
- 'audio' => 'Audio',
- 'bon-tipped' => 'BON tipped',
- 'bookmark' => 'Bookmark',
- 'bookmarks' => 'Bookmarks',
- 'bump' => 'Bump',
- 'cant-upload' => 'Hata: Yükləmə Haqqlarınız Əlil',
- 'cant-upload-desc' => 'Səhv etdiyinizi düşünsəniz, əlaqə saxlayın',
- 'cards' => 'Kartlar',
- 'cards-view' => 'Torrent kartları bax',
- 'categories' => 'Kateqoriyalar',
- 'category' => 'Kateqoriya',
- 'client' => 'Müştəri',
- 'commited' => 'Tövsiyə etdi',
- 'completed' => 'Tamamlandı',
- 'completed_at' => 'Tamamlandı',
- 'completed-not-seeding' => 'Siz bu yükləməni tamamladıqdan sonra daha çox toxum yetirirsiniz',
- 'created_at' => 'Yaradılan at',
- 'credited' => 'Kredilendirilmiş',
- 'current' => 'Cari',
- 'current-filters' => 'Cari filtrlər',
- 'currently-leeching' => 'Hal-hazırda Leeching',
- 'currently-seeding' => 'Hazırda toxum',
- 'dead-torrent' => 'Ölü Torrent',
- 'dead-torrents' => 'Ölü Torrents',
- 'delete-bookmark' => 'Bu səhifəni sil',
- 'description' => 'Təsvir',
- 'discounts' => 'Endirimlər',
- 'double-upload' => 'Double Upload',
- 'download-all' => 'Bütün yükləyin',
- 'download-check' => 'Çek edin',
- 'downloaded' => 'Yüklədi',
- 'dying-torrent' => 'Ölüm Torrent',
- 'dying-torrents' => 'Ölən Torrents',
- 'encode-settings' => 'Ayarları kodlaşdırın',
- 'estimated-ratio' => 'İndirdikten Sonra Tahmini Oran',
- 'failed' => 'Failed',
- 'feature' => 'Xüsusiyyət',
- 'featured' => 'Featured',
- 'featured-desc' => 'Seçilmiş torrentlər var 100% pulsuz və Double Upload!',
- 'featured-until' => 'Bu qədər qədər bir Torrent var',
- 'file' => 'Fayl',
- 'filters' => 'Filtrlər',
- 'fl-tokens-left' => 'Siz var : ayələr sol',
- 'freeleech' => 'Freeleech',
- 'freeleech-token' => 'Freeleech Token',
- 'general' => 'Ümumi',
- 'genre' => 'Janr',
- 'global-double-upload' => 'Qlobal cüt yükləmə',
- 'global-freeleech' => 'Qlobal Freeleek',
- 'grant' => 'Qrant',
- 'greater-than' => 'Daha çox',
- 'grouping' => 'Qruplaşdırma',
- 'groupings' => 'Qruplar',
- 'grouping-categories' => 'Kateqoriyalara qrupları',
+ 'activity' => 'Fəaliyyət',
+ 'age' => 'Yaş',
+ 'agent' => 'Agent',
+ 'alive' => 'Alive',
+ 'announce-url' => 'URL bildirin',
+ 'announce-url-desc' => 'Yeni bir torrent yaratarkən yuxarıdakı URL yi istifadə edin. Torrentinizi saytdan yükləmədən istifadə etmək istəyirsinizsə, özəl bayrağı və mənbəyi təyin etməlisiniz: source',
+ 'announce-url-desc-url' => 'Çətinlik çəkmək? Bizim Baxışımıza BURA baxın',
+ 'announce-url-desc2' => 'TMDB və IMDB bütün yükləmələr üçün tələb olunur! Afişa / fonları və ExtraInfo işğal etmək üçün istifadə olunur',
+ 'approved' => 'Təsdiqləndi',
+ 'audio' => 'Audio',
+ 'bon-tipped' => 'BON tipped',
+ 'bookmark' => 'Bookmark',
+ 'bookmarks' => 'Bookmarks',
+ 'bump' => 'Bump',
+ 'cant-upload' => 'Hata: Yükləmə Haqqlarınız Əlil',
+ 'cant-upload-desc' => 'Səhv etdiyinizi düşünsəniz, əlaqə saxlayın',
+ 'cards' => 'Kartlar',
+ 'cards-view' => 'Torrent kartları bax',
+ 'categories' => 'Kateqoriyalar',
+ 'category' => 'Kateqoriya',
+ 'client' => 'Müştəri',
+ 'commited' => 'Tövsiyə etdi',
+ 'completed' => 'Tamamlandı',
+ 'completed_at' => 'Tamamlandı',
+ 'completed-not-seeding' => 'Siz bu yükləməni tamamladıqdan sonra daha çox toxum yetirirsiniz',
+ 'created_at' => 'Yaradılan at',
+ 'credited' => 'Kredilendirilmiş',
+ 'current' => 'Cari',
+ 'current-filters' => 'Cari filtrlər',
+ 'currently-leeching' => 'Hal-hazırda Leeching',
+ 'currently-seeding' => 'Hazırda toxum',
+ 'dead-torrent' => 'Ölü Torrent',
+ 'dead-torrents' => 'Ölü Torrents',
+ 'delete-bookmark' => 'Bu səhifəni sil',
+ 'description' => 'Təsvir',
+ 'discounts' => 'Endirimlər',
+ 'double-upload' => 'Double Upload',
+ 'download-all' => 'Bütün yükləyin',
+ 'download-check' => 'Çek edin',
+ 'downloaded' => 'Yüklədi',
+ 'dying-torrent' => 'Ölüm Torrent',
+ 'dying-torrents' => 'Ölən Torrents',
+ 'encode-settings' => 'Ayarları kodlaşdırın',
+ 'estimated-ratio' => 'İndirdikten Sonra Tahmini Oran',
+ 'failed' => 'Failed',
+ 'feature' => 'Xüsusiyyət',
+ 'featured' => 'Featured',
+ 'featured-desc' => 'Seçilmiş torrentlər var 100% pulsuz və Double Upload!',
+ 'featured-until' => 'Bu qədər qədər bir Torrent var',
+ 'file' => 'Fayl',
+ 'filters' => 'Filtrlər',
+ 'fl-tokens-left' => 'Siz var : ayələr sol',
+ 'freeleech' => 'Freeleech',
+ 'freeleech-token' => 'Freeleech Token',
+ 'general' => 'Ümumi',
+ 'genre' => 'Janr',
+ 'global-double-upload' => 'Qlobal cüt yükləmə',
+ 'global-freeleech' => 'Qlobal Freeleek',
+ 'grant' => 'Qrant',
+ 'greater-than' => 'Daha çox',
+ 'grouping' => 'Qruplaşdırma',
+ 'groupings' => 'Qruplar',
+ 'grouping-categories' => 'Kateqoriyalara qrupları',
'grouping-categories-desc' => 'Qrupa hansı qrup qoşulmaq istəyirsiniz?',
- 'grouping-results' => 'Nəticələri Qruplaşdırma',
- 'groupings-view' => 'Qruplar baxışı',
- 'have-completed' => 'Tamamlandı',
- 'have-downloaded' => 'Yüklədi',
- 'have-not-completed' => 'Tamamlanmadı',
- 'have-not-downloaded' => 'Yükləməmişəm',
- 'health' => 'Sağlamlıq',
- 'history' => 'Tarix',
- 'hitrun' => 'H & R?',
- 'hit-and-runs' => 'Hit və Run sayıları',
- 'immune' => 'İmmün?',
- 'info' => 'Məlumat',
- 'internal' => 'Daxili',
- 'internal-release' => 'Daxili azadlıq',
- 'last-seed-activity' => 'Son toxum fəaliyyəti',
- 'last-seeder' => 'Siz sonuncu toxumunuzdur! (ən az 3 dəfə yüklənmişdir)',
- 'last-update' => 'Son yeniləmə',
- 'leave-tip' => 'Ucunu buraxın',
- 'leecher' => 'Leecher',
- 'leechers' => 'Leechers',
- 'leeching' => 'Leeching',
- 'left' => 'Sol',
- 'legendary-seeder' => 'Əfsanəvi toxucu',
- 'legendary-torrent' => 'Əfsanəvi torrent',
- 'list' => 'Siyahı',
- 'me' => 'Mənə',
- 'media-info' => 'MediaInfo',
- 'media-info-parser' => 'MediaInfo Parser',
- 'media-info-paste' => 'Burada MediaInfo yığışdırın',
- 'meta-desc' => 'Download: adını maksimum sürətlə',
- 'moderation' => 'Moderasiya',
- 'movies' => 'Filmlər',
- 'mvp' => 'MVP',
- 'my-active-torrents' => 'Mənim aktiv sellərim',
- 'name' => 'Adı',
- 'no-bookmarks' => 'Heç bir əlfəcin tapılmadı.',
- 'no-discounts' => 'Hal-hazırda heç bir endirim yoxdur',
- 'no-meta' => 'Heç bir metadata tapılmadı',
- 'no-privileges' => 'Bu dosyanı yükləyə bilmirsiniz - daha çox məlumat üçün aşağıya baxın',
- 'no-privileges-desc' => 'Yüklənmə düyməsinin görünməsi üçün yuxarıda göstərilən uğursuz nəticələri həll edin',
- 'not-completed' => 'Yükləmə başlamışdır, lakin heç vaxt başa çatmamışdır',
- 'not-downloaded' => 'Yükləməmişəm',
- 'old-torrent' => 'Köhnə torrent',
- 'optional' => 'İsteğe bağlı',
- 'original-output' => 'Orijinal çıxışı göstər / gizlət',
- 'participant' => 'İştirakçı',
- 'passed' => 'Keçdi',
- 'peers' => 'Peers',
- 'pending' => 'gözləyən',
- 'personal-freeleech' => 'Şəxsi Freeleek',
- 'poster' => 'Afişa',
- 'poster-view' => 'Poster görünüşü',
- 'posters' => 'Afişa',
- 'prewarn' => 'Prewarned?',
- 'progress' => 'Tərəqqi',
- 'quick-comment' => 'Tez şərh',
- 'quick-tip' => 'Tez tip məbləğləri',
- 'rated' => 'Qiymətləndirildi',
- 'rating' => 'Rating',
- 'ready' => 'Bu fayl yükləmək üçün hazırdır',
- 'rejected' => 'Reddedildi',
- 'released' => 'Çıxdı',
- 'remaining' => 'Qalanlar',
- 'request-reseed' => 'İstehsalı tələb et',
- 'requires-reseed' => 'Reseed tələb edir',
- 'resurrections' => 'Təkrarlanma',
- 'revoke' => 'Bekle',
- 'rss' => 'RSS',
- 'runtime' => 'Runtime',
- 'satisfied_in' => 'İçəridə məmnunuq',
- 'say-thanks' => 'Xahiş edirik şükür və toxumu demək mümkün olduğunca uzun müddətə xatırlayın',
- 'sd-content' => 'SD məzmunu',
- 'search' => 'Axtarış',
- 'seed-time' => 'Toxum zamanı',
- 'seeder' => 'Seeder',
- 'seeders' => 'Seeders',
- 'seeding' => 'Seeding',
- 'seedsize' => 'Toxum',
- 'seedtime' => 'Seedtime',
- 'short-completed' => 'C',
- 'short-leechs' => 'L.',
- 'short-seeds' => 'S',
- 'show-files' => 'Dosyaları göstərin',
- 'similar' => 'Oxşar Torrentlər',
- 'size' => 'Ölçü',
- 'special' => 'Xüsusi',
- 'special-freeleech' => 'Xüsusi Freeleek',
- 'started' => 'Başladı',
- 'status' => 'Status',
- 'statistics' => 'Statistika',
- 'stats' => 'Stats',
- 'sticky' => 'Vacibdir',
- 'stream-optimized' => 'Stream optimallaşdırıldı',
- 'subtitle' => 'Altyazı',
- 'team-player' => 'Komanda oyunçusu',
- 'thank' => 'Təşəkkür edirik',
- 'thanked' => 'Təşəkkürlər',
- 'thanks' => 'Təşəkkür edirik',
- 'thanks-given' => 'Təşəkkür edirik',
- 'times' => 'Times',
- 'tip-jar' => 'Tipli qaynaq',
- 'title' => 'Başlıq',
- 'titles' => 'Başlıqlar',
- 'top-completed' => 'Üst tamamlandı',
- 'top-dead' => 'Üst ölü',
- 'top-dying' => 'Ən çox ölür',
- 'top-leeched' => 'Üst sızdırdı',
- 'top-seeded' => 'Top süzülmüşdür',
- 'torrent' => 'Torrent',
- 'torrent-request' => 'Torrent İsteği',
- 'torrent-tips' => 'Toplamda : Toplam BON yükləyiciyə çatdırılıb: bunlardan istifadəçi sizdəndir',
- 'torrent-tips-desc' => 'Bu, mövcud bonus xalından çıxılacaq',
- 'torrents' => 'Torrents',
- 'trailer' => 'Römorka baxmaq',
- 'type' => 'Tipi',
- 'types' => 'Türləri',
- 'unbookmark' => 'Unbookmark',
- 'unsatisfieds' => 'Narazılıq yoxdur',
- 'unsticky' => 'Unsticky',
- 'updated' => 'Yenilənib',
- 'updated_at' => 'Yenilənib',
- 'uploaded' => 'Yükləndi',
- 'uploaded-by' => 'Yükləndi',
- 'uploader' => 'Uploader',
- 'use-fl-token' => 'Bir Freelecen Token istifadə edin',
- 'video' => 'Video',
- 'view-more' => 'Daha çox bax',
- 'view-trailer' => 'Römorka baxmaq',
- 'votes' => 'Votes',
+ 'grouping-results' => 'Nəticələri Qruplaşdırma',
+ 'groupings-view' => 'Qruplar baxışı',
+ 'have-completed' => 'Tamamlandı',
+ 'have-downloaded' => 'Yüklədi',
+ 'have-not-completed' => 'Tamamlanmadı',
+ 'have-not-downloaded' => 'Yükləməmişəm',
+ 'health' => 'Sağlamlıq',
+ 'history' => 'Tarix',
+ 'hitrun' => 'H & R?',
+ 'hit-and-runs' => 'Hit və Run sayıları',
+ 'immune' => 'İmmün?',
+ 'info' => 'Məlumat',
+ 'internal' => 'Daxili',
+ 'internal-release' => 'Daxili azadlıq',
+ 'last-seed-activity' => 'Son toxum fəaliyyəti',
+ 'last-seeder' => 'Siz sonuncu toxumunuzdur! (ən az 3 dəfə yüklənmişdir)',
+ 'last-update' => 'Son yeniləmə',
+ 'leave-tip' => 'Ucunu buraxın',
+ 'leecher' => 'Leecher',
+ 'leechers' => 'Leechers',
+ 'leeching' => 'Leeching',
+ 'left' => 'Sol',
+ 'legendary-seeder' => 'Əfsanəvi toxucu',
+ 'legendary-torrent' => 'Əfsanəvi torrent',
+ 'list' => 'Siyahı',
+ 'me' => 'Mənə',
+ 'media-info' => 'MediaInfo',
+ 'media-info-parser' => 'MediaInfo Parser',
+ 'media-info-paste' => 'Burada MediaInfo yığışdırın',
+ 'meta-desc' => 'Download: adını maksimum sürətlə',
+ 'moderation' => 'Moderasiya',
+ 'movies' => 'Filmlər',
+ 'mvp' => 'MVP',
+ 'my-active-torrents' => 'Mənim aktiv sellərim',
+ 'name' => 'Adı',
+ 'no-bookmarks' => 'Heç bir əlfəcin tapılmadı.',
+ 'no-discounts' => 'Hal-hazırda heç bir endirim yoxdur',
+ 'no-meta' => 'Heç bir metadata tapılmadı',
+ 'no-privileges' => 'Bu dosyanı yükləyə bilmirsiniz - daha çox məlumat üçün aşağıya baxın',
+ 'no-privileges-desc' => 'Yüklənmə düyməsinin görünməsi üçün yuxarıda göstərilən uğursuz nəticələri həll edin',
+ 'not-completed' => 'Yükləmə başlamışdır, lakin heç vaxt başa çatmamışdır',
+ 'not-downloaded' => 'Yükləməmişəm',
+ 'old-torrent' => 'Köhnə torrent',
+ 'optional' => 'İsteğe bağlı',
+ 'original-output' => 'Orijinal çıxışı göstər / gizlət',
+ 'participant' => 'İştirakçı',
+ 'passed' => 'Keçdi',
+ 'peers' => 'Peers',
+ 'pending' => 'gözləyən',
+ 'personal-freeleech' => 'Şəxsi Freeleek',
+ 'poster' => 'Afişa',
+ 'poster-view' => 'Poster görünüşü',
+ 'posters' => 'Afişa',
+ 'prewarn' => 'Prewarned?',
+ 'progress' => 'Tərəqqi',
+ 'quick-comment' => 'Tez şərh',
+ 'quick-tip' => 'Tez tip məbləğləri',
+ 'rated' => 'Qiymətləndirildi',
+ 'rating' => 'Rating',
+ 'ready' => 'Bu fayl yükləmək üçün hazırdır',
+ 'rejected' => 'Reddedildi',
+ 'released' => 'Çıxdı',
+ 'remaining' => 'Qalanlar',
+ 'request-reseed' => 'İstehsalı tələb et',
+ 'requires-reseed' => 'Reseed tələb edir',
+ 'resurrections' => 'Təkrarlanma',
+ 'revoke' => 'Bekle',
+ 'rss' => 'RSS',
+ 'runtime' => 'Runtime',
+ 'satisfied_in' => 'İçəridə məmnunuq',
+ 'say-thanks' => 'Xahiş edirik şükür və toxumu demək mümkün olduğunca uzun müddətə xatırlayın',
+ 'sd-content' => 'SD məzmunu',
+ 'search' => 'Axtarış',
+ 'seed-time' => 'Toxum zamanı',
+ 'seeder' => 'Seeder',
+ 'seeders' => 'Seeders',
+ 'seeding' => 'Seeding',
+ 'seedsize' => 'Toxum',
+ 'seedtime' => 'Seedtime',
+ 'short-completed' => 'C',
+ 'short-leechs' => 'L.',
+ 'short-seeds' => 'S',
+ 'show-files' => 'Dosyaları göstərin',
+ 'similar' => 'Oxşar Torrentlər',
+ 'size' => 'Ölçü',
+ 'special' => 'Xüsusi',
+ 'special-freeleech' => 'Xüsusi Freeleek',
+ 'started' => 'Başladı',
+ 'status' => 'Status',
+ 'statistics' => 'Statistika',
+ 'stats' => 'Stats',
+ 'sticky' => 'Vacibdir',
+ 'stream-optimized' => 'Stream optimallaşdırıldı',
+ 'subtitle' => 'Altyazı',
+ 'team-player' => 'Komanda oyunçusu',
+ 'thank' => 'Təşəkkür edirik',
+ 'thanked' => 'Təşəkkürlər',
+ 'thanks' => 'Təşəkkür edirik',
+ 'thanks-given' => 'Təşəkkür edirik',
+ 'times' => 'Times',
+ 'tip-jar' => 'Tipli qaynaq',
+ 'title' => 'Başlıq',
+ 'titles' => 'Başlıqlar',
+ 'top-completed' => 'Üst tamamlandı',
+ 'top-dead' => 'Üst ölü',
+ 'top-dying' => 'Ən çox ölür',
+ 'top-leeched' => 'Üst sızdırdı',
+ 'top-seeded' => 'Top süzülmüşdür',
+ 'torrent' => 'Torrent',
+ 'torrent-request' => 'Torrent İsteği',
+ 'torrent-tips' => 'Toplamda : Toplam BON yükləyiciyə çatdırılıb: bunlardan istifadəçi sizdəndir',
+ 'torrent-tips-desc' => 'Bu, mövcud bonus xalından çıxılacaq',
+ 'torrents' => 'Torrents',
+ 'trailer' => 'Römorka baxmaq',
+ 'type' => 'Tipi',
+ 'types' => 'Türləri',
+ 'unbookmark' => 'Unbookmark',
+ 'unsatisfieds' => 'Narazılıq yoxdur',
+ 'unsticky' => 'Unsticky',
+ 'updated' => 'Yenilənib',
+ 'updated_at' => 'Yenilənib',
+ 'uploaded' => 'Yükləndi',
+ 'uploaded-by' => 'Yükləndi',
+ 'uploader' => 'Uploader',
+ 'use-fl-token' => 'Bir Freelecen Token istifadə edin',
+ 'video' => 'Video',
+ 'view-more' => 'Daha çox bax',
+ 'view-trailer' => 'Römorka baxmaq',
+ 'votes' => 'Votes',
];
diff --git a/lang/az/user.php b/lang/az/user.php
index 04105bc76..835624cc9 100644
--- a/lang/az/user.php
+++ b/lang/az/user.php
@@ -12,316 +12,316 @@
*/
return [
- 'about' => 'Haqqında',
- 'about-me' => 'Mənim haqqımda',
- 'accepted-at' => 'Qəbul edildi',
- 'accepted-by' => 'Tərəfindən qəbul edildi',
- 'account-notification' => 'Haqq-hesab bildirişləri',
- 'account-notification-follow' => 'Bir istifadəçi hesabınıza baxdıqda bildiriş alın',
- 'account-notification-unfollow' => 'Bir istifadəçi hesabınızı boş tutduqda bildiriş alın',
- 'account-notification-help' => 'Hesabınızla bağlı bildirişlərin göndərilməsinə nəzarət. Hər hansı bir qrupun hesabınızla bağlı bildiriş göndərməsinə icazə vermirsinizsə və ya Bildirişləri işdən çıxartsanız bu parametrlər qüvvədən düşür',
- 'account-settings' => 'Hesab Tənzimləmələri',
- 'achievement-privacy' => 'Müvəffəqiyyət Ayarları',
- 'achievement-privacy-list' => 'İstifadəçiləriniz nailiyyətlərinizin siyahısını gözləməyə icazə verin',
- 'achievement-help' => 'Profilinizə daxil olmaq üçün icazə verilən qruplarla xüsusi uğurlu məlumatların paylaşılmasını nəzarət edin. Hər hansı bir qrupun nailiyyətlərinizə daxil olmasına icazə vermirsinizsə və ya Şəxsi olaraq gedin, bu parametrlər əvəzsizdir',
- 'achievements' => 'Nailiyyətlər',
- 'active' => 'Aktivdir',
- 'active-table' => 'Aktif Cədvəlim',
- 'active-torrents' => 'Aktif torrentlər',
- 'active-warning' => 'Aktiv xəbərdarlıq',
- 'active-warnings' => 'Aktiv xəbərdarlıqlar',
- 'add-seedbox' => 'Seedbox əlavə edin',
- 'all-torrents' => 'Bütün Torrents',
- 'article-comments' => 'Məqalə Şərhlər etdi',
- 'avatar' => 'Avatar',
- 'avg-seedtime' => 'Orta Seedtime',
- 'badges' => 'Nişanlar',
- 'ban' => 'Ban İstifadəçi',
- 'ban-log' => 'Ban giriş',
- 'become-hidden' => 'Gizli olun',
- 'become-visible' => 'Görünür ol',
- 'bon' => 'BON',
- 'bon-notification' => 'BON bildiriş parametrləri',
- 'bon-notification-gift' => 'Bir istifadəçi sizə hədiyyələr verdiğinde bir bildiriş alın',
- 'bon-notification-help' => 'BON əməliyyatları ilə bağlı bildirişlərin göndərilməsinə nəzarət. Hər hansı bir qrupun BON ilə bağlı bildiriş göndərməsinə və ya Bildirişləri Söndürməsinə icazə verməsəniz, bu parametrlər qüvvədən düşür',
- 'bookmarks' => 'Bookmarks',
- 'bounty-given' => 'Bounty Given',
- 'bounty-received' => 'Bounty Alındı',
- 'can-chat' => 'Sohbet edə bilərsiniz',
- 'can-comment' => 'Şərhlər edə bilərəmmi?',
- 'can-download' => 'Yükləmək olar',
- 'can-invite' => 'Dəvət edə bilərsiniz',
- 'can-request' => 'İstəyirəm',
- 'can-upload' => 'Yükləyə bilər',
- 'certified-banker' => 'Certified Banker',
- 'certified-banker-desc' => 'Bankda 50,000 və ya daha çox BON var',
- 'certified-downloader' => 'Certified Downloader',
- 'certified-downloader-desc' => 'Yükləndi 100 və ya daha çox Torrents!',
- 'certified-seeder' => 'Sertifikatlı Seeder',
- 'certified-seeder-desc' => '150 və ya daha çox Torrents toxumçuluq!',
- 'change-email' => 'E-maili dəyişmək',
- 'change-email-help' => 'E-poçtunuzu dəyişdikdən sonra hesabınızı yenidən təsdiqləməlisiniz',
- 'change-password' => 'Şifrəni dəyişdirin',
- 'change-password-help' => 'Şifrənizi dəyişdikdən sonra yenidən daxil olmanız lazımdır',
- 'client-ip-address' => 'Müştərinin IP ünvanı',
- 'code' => 'Kod',
- 'comments' => 'Şərhlər',
- 'created-on' => 'Yaradılıb',
- 'credited-download' => 'Kreditede yükləyin',
- 'credited-upload' => 'Kredilendirilmiş yükləmə',
- 'current-password' => 'Hazırkı şifrə',
- 'custom-title' => 'Xüsusi başlıq',
- 'delete' => 'İstifadəçi Sil',
- 'disable-notifications' => 'Bildirişləri işdən çıxarın',
- 'disclaimer' => 'Disclaimer',
- 'disclaimer-info' => 'Biz varsayılan olaraq, ən izləyicilər kimi istifadəçilərin IP ünvanlarını qeyd etmirik. Aşağıda listelenen IP lerinizi kayıtlarınızı silməyincə, verilənlər bazasında saxlanıldığını bildiyinizdən aşağıda toxbox IP əlavə edin.',
- 'disclaimer-info-bordered' => 'Seedbox IP ler əlavə olaraq aşağıda sıralanan IP-lərdən alınan torrentlərdə yüksək sürətli torrent etiketini tetikler',
- 'download-bon' => 'BON Mağazasından silindi',
- 'download-recorded' => 'Səsli yükləyin',
- 'download-true' => 'True Download',
- 'downloads' => 'Yükləmələr',
- 'edit' => 'İstifadəçi Düzenle',
- 'edit-profile' => 'Profilə düzəliş et',
- 'enable-notifications' => 'Bildirişləri aktivləşdirin',
- 'expired' => 'Müddəti bitdi',
- 'expires-on' => 'Sona çatır',
- 'extra' => 'Əlavə',
- 'filled-request' => 'İstifadəçi tələblərini doldurdu',
- 'follow' => 'İzləyin',
- 'follower-privacy' => 'İzləyici Ayarları',
- 'follower-privacy-list' => 'İstifadəçilərinizə ardıcıllarınızın siyahısını görmək imkanı verin',
- 'follower-help' => 'Profilinizə daxil olmaq üçün icazə verilən qruplarla xüsusi izləyici ilə əlaqəli məlumatın paylaşılmasını nəzarət edin. Hər hansı bir qrupun izləyicilərinizə daxil olmasına icazə vermirsinizsə və ya Şəxsi olaraq gedirsinizsə, bu parametrlər əvəzsizdir',
- 'followers' => 'İzləyicilər',
- 'following-notification' => 'İstifadəçi Bildiriş Ayarları izlədi',
- 'following-notification-upload' => 'İzləyən bir istifadəçi bir torrent yüklədikdə bir bildiriş alın',
- 'following-notification-help' => 'Istifadəçi site hərəkətləri ilə bağlı bildirişlərin göndərilməsinə nəzarət. Heç bir qrupun izlənməmiş istifadəçilərlə bağlı bildiriş göndərməsinə və ya Bildirişləri işləməyinizə imkan verməsəniz, bu parametrlər əvəzsizdir',
- 'formats-are-supported' => ': formatları dəstəklənir',
- 'forum-notification' => 'Forum Bildirişləri Ayarları',
- 'forum-notification-topic' => 'Başladığınız bir mövzu yeni bir yazı aldığında bir bildiriş alın',
- 'forum-notification-help' => 'Forum fəaliyyəti ilə bağlı bildirişlərin göndərilməsinə nəzarət. Hər hansı bir qrupun forum fəaliyyəti ilə bağlı bildiriş göndərməsinə icazə vermirsinizsə və ya Bildirişləri Söndürsəniz, bu parametrlər əvəzsizdir',
- 'forum-privacy' => 'Forum Ayarları',
- 'forum-privacy-post' => 'İstifadəçilərə göndərdiyiniz forum postlarının siyahısını gözləməyə icazə verin',
- 'forum-privacy-topic' => 'Başladığınız forum mövzularında bir siyahısını görmək üçün istifadəçilərə icazə verin',
- 'forum-help' => 'Xüsusi forumla əlaqəli statistika və məlumatların profilinizə daxil olmaq üçün icazə verilən qruplarla paylaşılmasını nəzarət. Bu parametrlər heç bir qrupun forumla bağlı statistika və məlumatlara və ya Şəxsi olaraq girməyinə icazə vermirsə, qüvvədən düşür',
- 'forum-signature' => 'Forum İmza',
- 'forums' => 'Forumlar',
- 'general' => 'Ümumi',
- 'general-settings' => 'Ümumi Ayarlar',
- 'gift-given' => 'Hədiyyə verildi',
- 'gift-received' => 'Hədiyyə alındı',
- 'go-public' => 'İctimai gedək',
- 'go-private' => 'Şəxsi gedin',
- 'history' => 'Tarix',
- 'history-table' => 'Tarixim Cədvəl',
- 'hit-n-runs' => 'Hit və çalışır',
- 'hit-n-runs-count' => 'Hit və Run Count (Bütün Zaman)',
- 'hit-n-runs-history' => 'Torrent Hit və tarixi çalışır',
- 'image' => 'Şəkil',
- 'important' => 'Mühümdir',
- 'important-info' => 'Mühüm məlumat',
- 'information' => 'Məlumat',
- 'invite-friend' => 'Dostunuzu dəvət et (Email + Mesaj Lazımdır)',
- 'invite-tree' => 'Ağacı dəvət edin',
- 'invites' => 'Dəvət edir',
- 'invites-banned' => 'Hata: Sizin dəvət hüquqlarınız əlil olmuşdur',
- 'invites-banned-desc' => 'Səhv etdiyinizi düşünsəniz, əlaqə saxlayın!',
- 'invites-count' => 'Sənsən var: sayılar Davet Et Sims',
- 'invites-disabled' => 'Diqqət: Qeydiyyatın açılması səbəbindən dəvət olunur!',
- 'invites-disabled-desc' => 'Tezliklə yoxlayın!',
- 'invites-rules' => ' Yalnız bildiyiniz və güvənən insanları dəvət edin. Siz dəvət etdiyiniz şəxslər üçün şəxsən məsuliyyət daşıyacaqsınız. Özünüzü dəvət etmə, hər bir dəvət edilən istifadəçini yoxlayın. Davet etmir və satmır. Siz dəvət etdiyiniz şəxs aldadıcı, ticarət hesabı və ya satış / ticarət dəvət edirsə, xəbərdarlıq ediləcəkdir. ',
- 'invites-send' => 'Göndərəni dəvət edir',
- 'last-login' => 'Son Giriş',
- 'locked' => 'Kilidləndi',
- 'locked-achievements' => 'Kilidlənmiş nailiyyətlər',
- 'member-since' => 'Üzv',
- 'members-desc' => 'Qeydiyyatdan keçmiş istifadəçilər siyahısı: bütün qruplar ilə başlıq. İndi bir istifadəçi tapın.',
- 'mention-notification' => 'Xəbərdarlıq Ayarları',
+ 'about' => 'Haqqında',
+ 'about-me' => 'Mənim haqqımda',
+ 'accepted-at' => 'Qəbul edildi',
+ 'accepted-by' => 'Tərəfindən qəbul edildi',
+ 'account-notification' => 'Haqq-hesab bildirişləri',
+ 'account-notification-follow' => 'Bir istifadəçi hesabınıza baxdıqda bildiriş alın',
+ 'account-notification-unfollow' => 'Bir istifadəçi hesabınızı boş tutduqda bildiriş alın',
+ 'account-notification-help' => 'Hesabınızla bağlı bildirişlərin göndərilməsinə nəzarət. Hər hansı bir qrupun hesabınızla bağlı bildiriş göndərməsinə icazə vermirsinizsə və ya Bildirişləri işdən çıxartsanız bu parametrlər qüvvədən düşür',
+ 'account-settings' => 'Hesab Tənzimləmələri',
+ 'achievement-privacy' => 'Müvəffəqiyyət Ayarları',
+ 'achievement-privacy-list' => 'İstifadəçiləriniz nailiyyətlərinizin siyahısını gözləməyə icazə verin',
+ 'achievement-help' => 'Profilinizə daxil olmaq üçün icazə verilən qruplarla xüsusi uğurlu məlumatların paylaşılmasını nəzarət edin. Hər hansı bir qrupun nailiyyətlərinizə daxil olmasına icazə vermirsinizsə və ya Şəxsi olaraq gedin, bu parametrlər əvəzsizdir',
+ 'achievements' => 'Nailiyyətlər',
+ 'active' => 'Aktivdir',
+ 'active-table' => 'Aktif Cədvəlim',
+ 'active-torrents' => 'Aktif torrentlər',
+ 'active-warning' => 'Aktiv xəbərdarlıq',
+ 'active-warnings' => 'Aktiv xəbərdarlıqlar',
+ 'add-seedbox' => 'Seedbox əlavə edin',
+ 'all-torrents' => 'Bütün Torrents',
+ 'article-comments' => 'Məqalə Şərhlər etdi',
+ 'avatar' => 'Avatar',
+ 'avg-seedtime' => 'Orta Seedtime',
+ 'badges' => 'Nişanlar',
+ 'ban' => 'Ban İstifadəçi',
+ 'ban-log' => 'Ban giriş',
+ 'become-hidden' => 'Gizli olun',
+ 'become-visible' => 'Görünür ol',
+ 'bon' => 'BON',
+ 'bon-notification' => 'BON bildiriş parametrləri',
+ 'bon-notification-gift' => 'Bir istifadəçi sizə hədiyyələr verdiğinde bir bildiriş alın',
+ 'bon-notification-help' => 'BON əməliyyatları ilə bağlı bildirişlərin göndərilməsinə nəzarət. Hər hansı bir qrupun BON ilə bağlı bildiriş göndərməsinə və ya Bildirişləri Söndürməsinə icazə verməsəniz, bu parametrlər qüvvədən düşür',
+ 'bookmarks' => 'Bookmarks',
+ 'bounty-given' => 'Bounty Given',
+ 'bounty-received' => 'Bounty Alındı',
+ 'can-chat' => 'Sohbet edə bilərsiniz',
+ 'can-comment' => 'Şərhlər edə bilərəmmi?',
+ 'can-download' => 'Yükləmək olar',
+ 'can-invite' => 'Dəvət edə bilərsiniz',
+ 'can-request' => 'İstəyirəm',
+ 'can-upload' => 'Yükləyə bilər',
+ 'certified-banker' => 'Certified Banker',
+ 'certified-banker-desc' => 'Bankda 50,000 və ya daha çox BON var',
+ 'certified-downloader' => 'Certified Downloader',
+ 'certified-downloader-desc' => 'Yükləndi 100 və ya daha çox Torrents!',
+ 'certified-seeder' => 'Sertifikatlı Seeder',
+ 'certified-seeder-desc' => '150 və ya daha çox Torrents toxumçuluq!',
+ 'change-email' => 'E-maili dəyişmək',
+ 'change-email-help' => 'E-poçtunuzu dəyişdikdən sonra hesabınızı yenidən təsdiqləməlisiniz',
+ 'change-password' => 'Şifrəni dəyişdirin',
+ 'change-password-help' => 'Şifrənizi dəyişdikdən sonra yenidən daxil olmanız lazımdır',
+ 'client-ip-address' => 'Müştərinin IP ünvanı',
+ 'code' => 'Kod',
+ 'comments' => 'Şərhlər',
+ 'created-on' => 'Yaradılıb',
+ 'credited-download' => 'Kreditede yükləyin',
+ 'credited-upload' => 'Kredilendirilmiş yükləmə',
+ 'current-password' => 'Hazırkı şifrə',
+ 'custom-title' => 'Xüsusi başlıq',
+ 'delete' => 'İstifadəçi Sil',
+ 'disable-notifications' => 'Bildirişləri işdən çıxarın',
+ 'disclaimer' => 'Disclaimer',
+ 'disclaimer-info' => 'Biz varsayılan olaraq, ən izləyicilər kimi istifadəçilərin IP ünvanlarını qeyd etmirik. Aşağıda listelenen IP lerinizi kayıtlarınızı silməyincə, verilənlər bazasında saxlanıldığını bildiyinizdən aşağıda toxbox IP əlavə edin.',
+ 'disclaimer-info-bordered' => 'Seedbox IP ler əlavə olaraq aşağıda sıralanan IP-lərdən alınan torrentlərdə yüksək sürətli torrent etiketini tetikler',
+ 'download-bon' => 'BON Mağazasından silindi',
+ 'download-recorded' => 'Səsli yükləyin',
+ 'download-true' => 'True Download',
+ 'downloads' => 'Yükləmələr',
+ 'edit' => 'İstifadəçi Düzenle',
+ 'edit-profile' => 'Profilə düzəliş et',
+ 'enable-notifications' => 'Bildirişləri aktivləşdirin',
+ 'expired' => 'Müddəti bitdi',
+ 'expires-on' => 'Sona çatır',
+ 'extra' => 'Əlavə',
+ 'filled-request' => 'İstifadəçi tələblərini doldurdu',
+ 'follow' => 'İzləyin',
+ 'follower-privacy' => 'İzləyici Ayarları',
+ 'follower-privacy-list' => 'İstifadəçilərinizə ardıcıllarınızın siyahısını görmək imkanı verin',
+ 'follower-help' => 'Profilinizə daxil olmaq üçün icazə verilən qruplarla xüsusi izləyici ilə əlaqəli məlumatın paylaşılmasını nəzarət edin. Hər hansı bir qrupun izləyicilərinizə daxil olmasına icazə vermirsinizsə və ya Şəxsi olaraq gedirsinizsə, bu parametrlər əvəzsizdir',
+ 'followers' => 'İzləyicilər',
+ 'following-notification' => 'İstifadəçi Bildiriş Ayarları izlədi',
+ 'following-notification-upload' => 'İzləyən bir istifadəçi bir torrent yüklədikdə bir bildiriş alın',
+ 'following-notification-help' => 'Istifadəçi site hərəkətləri ilə bağlı bildirişlərin göndərilməsinə nəzarət. Heç bir qrupun izlənməmiş istifadəçilərlə bağlı bildiriş göndərməsinə və ya Bildirişləri işləməyinizə imkan verməsəniz, bu parametrlər əvəzsizdir',
+ 'formats-are-supported' => ': formatları dəstəklənir',
+ 'forum-notification' => 'Forum Bildirişləri Ayarları',
+ 'forum-notification-topic' => 'Başladığınız bir mövzu yeni bir yazı aldığında bir bildiriş alın',
+ 'forum-notification-help' => 'Forum fəaliyyəti ilə bağlı bildirişlərin göndərilməsinə nəzarət. Hər hansı bir qrupun forum fəaliyyəti ilə bağlı bildiriş göndərməsinə icazə vermirsinizsə və ya Bildirişləri Söndürsəniz, bu parametrlər əvəzsizdir',
+ 'forum-privacy' => 'Forum Ayarları',
+ 'forum-privacy-post' => 'İstifadəçilərə göndərdiyiniz forum postlarının siyahısını gözləməyə icazə verin',
+ 'forum-privacy-topic' => 'Başladığınız forum mövzularında bir siyahısını görmək üçün istifadəçilərə icazə verin',
+ 'forum-help' => 'Xüsusi forumla əlaqəli statistika və məlumatların profilinizə daxil olmaq üçün icazə verilən qruplarla paylaşılmasını nəzarət. Bu parametrlər heç bir qrupun forumla bağlı statistika və məlumatlara və ya Şəxsi olaraq girməyinə icazə vermirsə, qüvvədən düşür',
+ 'forum-signature' => 'Forum İmza',
+ 'forums' => 'Forumlar',
+ 'general' => 'Ümumi',
+ 'general-settings' => 'Ümumi Ayarlar',
+ 'gift-given' => 'Hədiyyə verildi',
+ 'gift-received' => 'Hədiyyə alındı',
+ 'go-public' => 'İctimai gedək',
+ 'go-private' => 'Şəxsi gedin',
+ 'history' => 'Tarix',
+ 'history-table' => 'Tarixim Cədvəl',
+ 'hit-n-runs' => 'Hit və çalışır',
+ 'hit-n-runs-count' => 'Hit və Run Count (Bütün Zaman)',
+ 'hit-n-runs-history' => 'Torrent Hit və tarixi çalışır',
+ 'image' => 'Şəkil',
+ 'important' => 'Mühümdir',
+ 'important-info' => 'Mühüm məlumat',
+ 'information' => 'Məlumat',
+ 'invite-friend' => 'Dostunuzu dəvət et (Email + Mesaj Lazımdır)',
+ 'invite-tree' => 'Ağacı dəvət edin',
+ 'invites' => 'Dəvət edir',
+ 'invites-banned' => 'Hata: Sizin dəvət hüquqlarınız əlil olmuşdur',
+ 'invites-banned-desc' => 'Səhv etdiyinizi düşünsəniz, əlaqə saxlayın!',
+ 'invites-count' => 'Sənsən var: sayılar Davet Et Sims',
+ 'invites-disabled' => 'Diqqət: Qeydiyyatın açılması səbəbindən dəvət olunur!',
+ 'invites-disabled-desc' => 'Tezliklə yoxlayın!',
+ 'invites-rules' => ' Yalnız bildiyiniz və güvənən insanları dəvət edin. Siz dəvət etdiyiniz şəxslər üçün şəxsən məsuliyyət daşıyacaqsınız. Özünüzü dəvət etmə, hər bir dəvət edilən istifadəçini yoxlayın. Davet etmir və satmır. Siz dəvət etdiyiniz şəxs aldadıcı, ticarət hesabı və ya satış / ticarət dəvət edirsə, xəbərdarlıq ediləcəkdir. ',
+ 'invites-send' => 'Göndərəni dəvət edir',
+ 'last-login' => 'Son Giriş',
+ 'locked' => 'Kilidləndi',
+ 'locked-achievements' => 'Kilidlənmiş nailiyyətlər',
+ 'member-since' => 'Üzv',
+ 'members-desc' => 'Qeydiyyatdan keçmiş istifadəçilər siyahısı: bütün qruplar ilə başlıq. İndi bir istifadəçi tapın.',
+ 'mention-notification' => 'Xəbərdarlıq Ayarları',
'mention-notification-article-comment' => 'Bir məqalə şərhində @ qeyd olunduqda bildiriş alın',
'mention-notification-torrent-comment' => 'Bir torrent şərhi ilə bağlı olduğunuzda bildiriş alın',
'mention-notification-request-comment' => 'Tələb olunan bir şərhdə @ təyinedici olduğunuzda bildiriş alın',
- 'mention-notification-forum-post' => 'Bir forumda yazılı olduğunuzda bir bildiriş alın',
- 'mention-notification-help' => 'Istifadəçi @ bildirişləri göndərildikdə hansı bildirişlərin göndərildiyini yoxlayın. Əgər bir istifadəçi @ bildirişləri göndərdiyiniz zaman heç bir qrupun bildiriş göndərməsinə icazə vermirsinizsə və ya Bildirişləri Söndürsəniz, bu parametrlər əvəzsizdir',
- 'moderated-by' => 'Moderated by: mod haqqında',
- 'my-bonus-points' => 'Mənim Bonus Puanlarım',
- 'my-bookmarks' => 'Bookmarklərim',
- 'my-fl-tokens' => 'Mənim FL simalarım',
- 'my-general-settings' => 'Mənim Ümumi Ayarlarım',
- 'my-notification' => 'Bildirişimi',
- 'my-notification-settings' => 'Bildirim Ayarları',
- 'my-privacy' => 'Gizlilik',
- 'my-privacy-settings' => 'Gizlilik qaydalarım',
- 'my-profile' => 'Mənim Hesabım',
- 'my-requested' => 'İstədim',
- 'my-security' => 'Mənim təhlükəsizliyim',
- 'my-security-settings' => 'Mənim Təhlükəsizlik Ayarlarım',
- 'my-seedboxes' => 'Mənim Seedboxes',
- 'my-settings' => 'Ayarlarım',
- 'my-wishlist' => 'Mənim İstəklərim',
- 'no-logs' => 'Bu istifadəçi üçün verilənlər bazasında heç dəvətnamələr yoxdur!',
- 'no-seedboxes' => 'Heç bir toxum qutusu 😔',
- 'not-authorized' => 'Bu səhifəni görmək icazəniz yoxdur. Bu üzv bir ninja kimi gizlənməyi üstün edir!',
- 'note' => 'Qeyd',
- 'notification' => 'Bildiriş',
- 'notification-settings' => 'Bildiriş Ayarları',
- 'notification-from-account' => 'Hesabından Xəbərdarlıq Alın',
- 'notification-from-account-help' => 'Yalnız sistem, işçi heyəti və aşağıdakı qruplardan hesab bildirişləri alacaqsınız. Bildirişləri işlədərsəniz, bu parametrlər qüvvədən düşmüşdür',
- 'notification-from-bon' => 'BON bildirişlərindən alın',
- 'notification-from-bon-help' => 'Sistemə, işçilərə və aşağıdakı qruplara yalnız BON bildirişləri alacaqsınız. Bildirişləri işlədərsəniz, bu parametrlər qüvvədən düşmüşdür',
- 'notification-from-following' => 'İzlədiyi İstifadəçi Bildirişlərindən Alın',
- 'notification-from-following-help' => 'Yalnız aşağıdakı qruplardan aşağıdakı istifadəçi bildirişlərini alacaqsınız. Bildirişləri işlədərsəniz, bu parametrlər qüvvədən düşmüşdür',
- 'notification-from-forum' => 'Forumdan Xəbərdarlıq Alın',
- 'notification-from-forum-help' => 'Yalnız sistemdən, işçilərdən və aşağıdakı qruplardan forum bildirişləri alacaqsınız. Bildirişləri işlədərsəniz, bu parametrlər qüvvədən düşmüşdür',
- 'notification-from-subscription' => 'Abunə bildirişlərindən alın',
- 'notification-from-subscription-help' => 'Yalnız sistemdən, işçilərdən və aşağıdakı qruplardan forum bildirişləri alacaqsınız. Bildirişləri işlədərsəniz, bu parametrlər qüvvədən düşmüşdür',
- 'notification-from-torrent' => 'Torrent Bildirimlərini Alın',
- 'notification-from-torrent-help' => 'Sistemdən, işçilərdən və aşağıdakı qruplardan yalnız torrent bildirişləri alacaqsınız. Bildirişləri işlədərsəniz, bu parametrlər qüvvədən düşmüşdür',
- 'notification-from-mention' => 'Xəbərdarlıqlardan xəbərdarlıq edin',
- 'notification-from-mention-help' => 'Siz sistemdən, işçilərdən və aşağıdakı qruplardan yalnız xəbərdarlıq bildirişləri alacaqsınız. Bildirişləri işlədərsəniz, bu parametrlər qüvvədən düşmüşdür',
- 'notification-from-request' => 'İstek Bildirimlerini Alın',
- 'notification-from-request-help' => 'Yalnız sistemdən, işçilərdən və aşağıdakı qruplardan tələb bildirişləri alacaqsınız. Bildirişləri işlədərsəniz, bu parametrlər qüvvədən düşmüşdür',
- 'notifications' => 'Bildirişlər',
- 'offline' => 'İstifadəçi Offline!',
- 'online' => 'İstifadəçi Online!',
- 'options' => 'Seçimlər',
- 'other-help' => 'Profilinizə daxil olmaq üçün icazə verilən qruplarla digər statistik məlumatların və məlumatların paylaşılmasını yoxlayın. Bu parametrlər heç bir qrupun digər statistikalara və məlumatlarınıza daxil olmasına icazə vermirsə və ya Şəxsi olaraq gedin',
- 'other-privacy' => 'Digər Ayarlar',
- 'other-privacy-online' => 'Istifadəçilər sizi onlayn istifadəçilər blokunda görmək imkanı verir',
- 'passkey' => 'PID',
- 'passkey-warning' => 'PID şifrənizə bənzəyir, onu təhlükəsiz saxlamaq lazımdır!',
- 'pending-achievements' => 'Nailiyyətlər gözləyir',
- 'per-torrent' => 'Torrent başına',
- 'posts' => 'Mesajlar',
- 'posts-posted' => 'Forum Posts Göndərilib',
- 'privacy' => 'Gizlilik',
- 'privacy-settings' => 'Gizlilik Ayarları',
- 'private-info' => 'Şəxsi məlumat',
- 'private-forum-profile' => 'Diqqət: Bu Mövzular və Mövzular tarixi PRIVATE üçün qurulmuşdur!',
- 'private-profile' => 'Diqqət: Bu profil PRIVATE üçün qurulmuşdur!',
- 'profile' => 'Profil',
- 'profile-desc' => 'İstifadəçi: İstifadəçi profili qeydiyyatdan keçdi: title',
- 'profile-privacy' => 'Profil Ayarları',
- 'profile-privacy-torrent-count' => 'Ümumi yüklənmə sayınızı, yükləmələrinizi, toxumlarınızı və sülüklərinizi paylaşın',
- 'profile-privacy-torrent-ratio' => 'Ümumi yükləməni / yüklənmə məlumatınızı qeyd nisbətlə birlikdə paylaşın',
- 'profile-privacy-torrent-seed' => 'Ümumi toxum vaxtınızı və orta payınızı paylaşın',
- 'profile-privacy-title' => 'Şəxsi adı məlumatınızı paylaşın',
- 'profile-privacy-about' => 'Mənim haqqında şəxsi məlumatlarınızı paylaşın',
- 'profile-privacy-bon-extra' => 'BON statistika paylaşın',
- 'profile-privacy-comment-extra' => 'Yorumlarınızı paylaşın',
- 'profile-privacy-forum-extra' => 'Forumunuzun statistika paylaş',
- 'profile-privacy-request-extra' => 'İstek istatistiklerinizi paylaşın',
- 'profile-privacy-torrent-extra' => 'Torrent statistikalarını paylaşın',
- 'profile-privacy-badge' => 'Qazandığınız rozetlərinizi paylaşın',
- 'profile-privacy-achievement' => 'Son nailiyyətlərinizi paylaşın',
- 'profile-privacy-follower' => 'Son ardıcılları paylaşın',
- 'profile-privacy-warning' => 'H & R xəbərdarlıqlarını paylaşın',
- 'profile-privacy-help' => 'Profilinizdə hansı statistika və məlumatların göründüyünü yoxlayın. Hər hansı bir qrupun profilinizə daxil olmasına icazə vermirsinizsə və ya Şəxsi olaraq gedin, bu parametrlər qüvvədən düşür',
- 'public-info' => 'İctimai məlumat',
- 'recent-achievements' => 'Son nailiyyətlər',
- 'recent-followers' => 'Son İzləyicilər',
- 'registration-date' => 'Qeydiyyat tarixi',
- 'report' => 'Hesabat',
- 'request-help' => 'Xüsusi sorğunuzla bağlı statistika və məlumatların profilinizə daxil olmaq üçün icazə verilən qruplarla paylaşılmasını nəzarət. Bu parametrlər istənilən qrupun istənilən istənilən statistika və məlumatlarınıza daxil olmasına icazə vermirsə və ya Şəxsi olaraq gedin',
- 'request' => 'İstək',
- 'requested' => 'İstədik',
- 'requests' => 'İstək',
- 'request-comments' => 'Şərhlər İstək',
- 'request-notification' => 'İstek Bildirim Ayarları',
- 'request-notification-bounty' => 'Istənilən torrent yeni bir lütf alırsa bildiriş alın',
- 'request-notification-comment' => 'Istənilən torrent yeni bir şərh aldıqda bildiriş alın',
- 'request-notification-fill' => 'İstənilən torrent doldurulduqda bildiriş alın',
- 'request-notification-fill-approve' => 'Istənilən torrent dolğu təsdiqləndikdə bildiriş alın',
- 'request-notification-fill-reject' => 'Istənilən torrent doldurulması rədd edildikdə bildiriş alın',
- 'request-notification-claim' => 'İstənilən torrent tələb edildikdə bildiriş alın',
- 'request-notification-unclaim' => 'İstənilən torrent tələb edilmədikdə bildiriş alın',
- 'request-notification-help' => 'Sorğu tədbirləri ilə bağlı bildirişlərin göndərilməsinə nəzarət. Hər hansı bir qrupun sorğu tədbirləri ilə bağlı bildiriş göndərməsinə icazə vermirsinizsə və ya Bildirişləri işlədirsəniz, bu parametrlər əvəzsizdir',
- 'request-privacy' => 'Ayarlar soruşun',
- 'request-privacy-requested' => 'Istifadəçilərinizin etdiyiniz istəklərin siyahısını görmək imkanı verin',
- 'reset-passkey' => 'Parolanı sıfırla (PID)',
- 'reset-passkey-help' => 'PID sıfırlanmasından sonra bütün aktiv torrentlarınızı yenidən yükləməyiniz / yenidən yükləməlisiniz',
- 'reset-rss' => 'RSS anahtarı sıfırlama (RID)',
- 'reset-rss-help' => 'RİP-ni yenidən qurduqdan sonra, aktiv RSS-lərin hamısını yenidən yükləməlisiniz',
- 'resurrections' => 'Təkrarlanma',
- 'search' => 'İstifadəçi adı ilə sürətli axtarış',
- 'security' => 'Təhlükəsizlik',
- 'security-settings' => 'Təhlükəsizlik parametrləri',
- 'seedboxes' => 'Toxumalar',
- 'seeds' => 'Toxumlar',
- 'send-invite' => 'Dəvət göndər',
- 'sender' => 'Göndərən',
- 'settings' => 'Ayarlar',
- 'show-passkey' => 'PID göstər',
- 'staff-noted' => 'İşçilər qeyd etdi',
- 'statistics' => 'Statistika',
- 'subscription-notification' => 'Abunə Bildirişləri Ayarları',
- 'subscription-notification-forum' => 'Bir abunə forumu yeni bir mövzu aldığında bir bildiriş alın',
- 'subscription-notification-topic' => 'Abunə olunan mövzu yeni bir yazı aldığında bildiriş alın',
- 'subscription-notification-help' => 'Abunəliyinizlə bağlı bildirişlərin göndərilməsinə nəzarət. Hər hansı bir qrupun abunəliklərinizlə bağlı bildiriş göndərməsinə və ya Bildirişləri Söndürməsinə icazə verməsəniz, bu parametrlər əvəzsizdir',
- 'thanks-given' => 'Təşəkkür edirik',
- 'thanks-received' => 'Təşəkkür almışdır',
- 'tips-given' => 'Verilən məsləhətlər',
- 'tips-received' => 'Alınan göstərişlər',
- 'title' => 'Başlıq',
- 'top-bankers' => 'Top Banklar',
- 'top-downloaders-data' => 'Top Downloaders (Data)',
- 'top-leechers' => 'Ən yaxşı Leechers',
- 'top-leechers-count' => 'Ən yaxşı Leechers (Count)',
- 'top-seeders' => 'Top Seeders',
- 'top-seeders-count' => 'Top Seeders (Count)',
- 'top-seeding-size' => 'Üst Seeding (Ölçü)',
- 'top-seedtime' => 'Top Seedtime',
- 'top-uploaders-data' => 'Üst Yükləyicilər (Məlumat)',
- 'top-uploaders-count' => 'Top yükləyicilər (sayı)',
- 'topics' => 'Mövzular',
- 'topics-started' => 'Forum Mövzular başladı',
- 'torrent-comments' => 'Torrent Şərhlər etdi',
- 'torrent-help' => 'Xüsusi torrent ilə bağlı statistika və məlumatların profilinizə daxil olmaq üçün icazə verilən qruplarla paylaşılmasını nəzarət edin. Bu parametrlər torrent ilə əlaqəli statistika və məlumatlarınıza və ya Şəxsi olaraq gedin',
- 'torrent-notification' => 'Torrent Bildiriş Ayarları',
- 'torrent-notification-comment' => 'Yüklənmiş torrent yeni bir şərh aldıqda bildiriş alın',
- 'torrent-notification-thank' => 'Yüklənmiş torrent yeni bir təşəkkür aldıqda bildiriş alın',
- 'torrent-notification-tip' => 'Yüklənmiş torrent yeni bir ipucu aldıqda bildiriş alın',
- 'torrent-notification-help' => 'Torrent fəaliyyəti ilə bağlı bildirişlərin göndərilməsinə nəzarət. Hər hansı bir qrupun torrent fəaliyyəti ilə bağlı bildiriş göndərməsinə icazə vermirsinizsə və ya Bildirişləri Söndürsəniz, bu parametrlər qüvvədən düşür',
- 'torrent-privacy' => 'Torrent Ayarları',
- 'torrent-privacy-download' => 'Istifadəçilər yüklədiyiniz torrentlərin siyahısını gözləməyə icazə verin',
- 'torrent-privacy-upload' => 'İstifadəçilər yüklədiyiniz torrentlərin siyahısını gözləməyə icazə verin',
- 'torrent-privacy-peer' => 'Istifadəçilər sizi torrent tarixçəsi cədvəlində görməyə icazə verin',
- 'torrents' => 'Torrents',
- 'torrents-history' => 'Torrents Tarix',
- 'total-download' => 'Total Download',
- 'total-downloads' => 'Ümumi downloads',
- 'total-leeching' => 'Total leeching',
- 'total-seeding' => 'Ümumi toxum',
- 'total-seedtime' => 'Ümumi Seedtime',
- 'total-upload' => 'Ümumi yükləmə',
- 'total-uploads' => 'Toplam yüklənmə',
- 'unban' => 'Unban İstifadəçi',
- 'unfollow' => 'İzləyin',
- 'unlocked' => 'Kilidi aç',
- 'unlocked-achievements' => 'Kilidlənmiş nailiyyətlər',
- 'unsatisfieds' => 'Unsatisfieds',
- 'upload-bon' => 'BON Mağazasından əlavə edildi',
- 'upload-recorded' => 'Səsli yüklə',
- 'upload-true' => 'True Upload',
- 'uploads' => 'Yüklənir',
- 'uploads-table' => 'Yüklənir Cədvəli',
- 'user' => 'İstifadəçi',
- 'user-id' => 'İstifadəçi adı',
- 'username-seedbox' => 'İstifadəçi adı Seedbox',
- 'visible-to-achievement' => 'Nailiyyətlər Görülə bilər',
- 'visible-to-achievement-help' => 'Sizin nailiyyətləriniz yalnız heyət və aşağıdakı qruplar üçün görünəcəkdir. Şəxsi olaraq gedin, bu parametrlər əvəzsizdir',
- 'visible-to-follower' => 'İzləyənlər Görülə bilər',
- 'visible-to-follower-help' => 'Ardıcıllarınız yalnız işçilərə və aşağıdakı qruplara görünəcəklər. Şəxsi olaraq gedin, bu parametrlər əvəzsizdir',
- 'visible-to-forum' => 'Forum məlumatları üçün görünür',
- 'visible-to-forum-help' => 'Sizin forum məlumatlarınız yalnız işçilərə və aşağıdakı qruplara görünür. Şəxsi olaraq gedin, bu parametrlər əvəzsizdir',
- 'visible-to-other' => 'Digər görünür',
- 'visible-to-other-help' => 'Hesabınızla bağlı digər məlumatlar yalnız işçilərə və aşağıdakı qruplara görünür. Bu parametrlər Şəxsi olaraq Gitse və ya Gizli Olduğunuzda ləğv edilir',
- 'visible-to-profile' => 'İstifadəçi profilində görünür',
- 'visible-to-profile-help' => 'Profiliniz yalnız işçilərə və aşağıdakı qruplara görünür. Şəxsi olaraq gedin, bu parametrlər əvəzsizdir',
- 'visible-to-request' => 'İnformasiya Məlumatı Görülə bilər',
- 'visible-to-request-help' => 'Tələb məlumatınız yalnız işçilərə və aşağıdakı qruplara görünür. Şəxsi olaraq gedin, bu parametrlər əvəzsizdir',
- 'visible-to-torrent' => 'Torrent Məlumatı Görünür',
- 'visible-to-torrent-help' => 'Torrent məlumatınız yalnız işçilərə və aşağıdakı qruplara görünür. Bu parametrlər Şəxsi olaraq Gitse və ya Gizli Olduğunuzda ləğv edilir',
- 'warned-on' => 'Uyarıldı',
- 'warning' => 'Xəbərdarlıq',
- 'warning-log' => 'Diqqət Giriş',
- 'wishlist' => 'İstəklər',
+ 'mention-notification-forum-post' => 'Bir forumda yazılı olduğunuzda bir bildiriş alın',
+ 'mention-notification-help' => 'Istifadəçi @ bildirişləri göndərildikdə hansı bildirişlərin göndərildiyini yoxlayın. Əgər bir istifadəçi @ bildirişləri göndərdiyiniz zaman heç bir qrupun bildiriş göndərməsinə icazə vermirsinizsə və ya Bildirişləri Söndürsəniz, bu parametrlər əvəzsizdir',
+ 'moderated-by' => 'Moderated by: mod haqqında',
+ 'my-bonus-points' => 'Mənim Bonus Puanlarım',
+ 'my-bookmarks' => 'Bookmarklərim',
+ 'my-fl-tokens' => 'Mənim FL simalarım',
+ 'my-general-settings' => 'Mənim Ümumi Ayarlarım',
+ 'my-notification' => 'Bildirişimi',
+ 'my-notification-settings' => 'Bildirim Ayarları',
+ 'my-privacy' => 'Gizlilik',
+ 'my-privacy-settings' => 'Gizlilik qaydalarım',
+ 'my-profile' => 'Mənim Hesabım',
+ 'my-requested' => 'İstədim',
+ 'my-security' => 'Mənim təhlükəsizliyim',
+ 'my-security-settings' => 'Mənim Təhlükəsizlik Ayarlarım',
+ 'my-seedboxes' => 'Mənim Seedboxes',
+ 'my-settings' => 'Ayarlarım',
+ 'my-wishlist' => 'Mənim İstəklərim',
+ 'no-logs' => 'Bu istifadəçi üçün verilənlər bazasında heç dəvətnamələr yoxdur!',
+ 'no-seedboxes' => 'Heç bir toxum qutusu 😔',
+ 'not-authorized' => 'Bu səhifəni görmək icazəniz yoxdur. Bu üzv bir ninja kimi gizlənməyi üstün edir!',
+ 'note' => 'Qeyd',
+ 'notification' => 'Bildiriş',
+ 'notification-settings' => 'Bildiriş Ayarları',
+ 'notification-from-account' => 'Hesabından Xəbərdarlıq Alın',
+ 'notification-from-account-help' => 'Yalnız sistem, işçi heyəti və aşağıdakı qruplardan hesab bildirişləri alacaqsınız. Bildirişləri işlədərsəniz, bu parametrlər qüvvədən düşmüşdür',
+ 'notification-from-bon' => 'BON bildirişlərindən alın',
+ 'notification-from-bon-help' => 'Sistemə, işçilərə və aşağıdakı qruplara yalnız BON bildirişləri alacaqsınız. Bildirişləri işlədərsəniz, bu parametrlər qüvvədən düşmüşdür',
+ 'notification-from-following' => 'İzlədiyi İstifadəçi Bildirişlərindən Alın',
+ 'notification-from-following-help' => 'Yalnız aşağıdakı qruplardan aşağıdakı istifadəçi bildirişlərini alacaqsınız. Bildirişləri işlədərsəniz, bu parametrlər qüvvədən düşmüşdür',
+ 'notification-from-forum' => 'Forumdan Xəbərdarlıq Alın',
+ 'notification-from-forum-help' => 'Yalnız sistemdən, işçilərdən və aşağıdakı qruplardan forum bildirişləri alacaqsınız. Bildirişləri işlədərsəniz, bu parametrlər qüvvədən düşmüşdür',
+ 'notification-from-subscription' => 'Abunə bildirişlərindən alın',
+ 'notification-from-subscription-help' => 'Yalnız sistemdən, işçilərdən və aşağıdakı qruplardan forum bildirişləri alacaqsınız. Bildirişləri işlədərsəniz, bu parametrlər qüvvədən düşmüşdür',
+ 'notification-from-torrent' => 'Torrent Bildirimlərini Alın',
+ 'notification-from-torrent-help' => 'Sistemdən, işçilərdən və aşağıdakı qruplardan yalnız torrent bildirişləri alacaqsınız. Bildirişləri işlədərsəniz, bu parametrlər qüvvədən düşmüşdür',
+ 'notification-from-mention' => 'Xəbərdarlıqlardan xəbərdarlıq edin',
+ 'notification-from-mention-help' => 'Siz sistemdən, işçilərdən və aşağıdakı qruplardan yalnız xəbərdarlıq bildirişləri alacaqsınız. Bildirişləri işlədərsəniz, bu parametrlər qüvvədən düşmüşdür',
+ 'notification-from-request' => 'İstek Bildirimlerini Alın',
+ 'notification-from-request-help' => 'Yalnız sistemdən, işçilərdən və aşağıdakı qruplardan tələb bildirişləri alacaqsınız. Bildirişləri işlədərsəniz, bu parametrlər qüvvədən düşmüşdür',
+ 'notifications' => 'Bildirişlər',
+ 'offline' => 'İstifadəçi Offline!',
+ 'online' => 'İstifadəçi Online!',
+ 'options' => 'Seçimlər',
+ 'other-help' => 'Profilinizə daxil olmaq üçün icazə verilən qruplarla digər statistik məlumatların və məlumatların paylaşılmasını yoxlayın. Bu parametrlər heç bir qrupun digər statistikalara və məlumatlarınıza daxil olmasına icazə vermirsə və ya Şəxsi olaraq gedin',
+ 'other-privacy' => 'Digər Ayarlar',
+ 'other-privacy-online' => 'Istifadəçilər sizi onlayn istifadəçilər blokunda görmək imkanı verir',
+ 'passkey' => 'PID',
+ 'passkey-warning' => 'PID şifrənizə bənzəyir, onu təhlükəsiz saxlamaq lazımdır!',
+ 'pending-achievements' => 'Nailiyyətlər gözləyir',
+ 'per-torrent' => 'Torrent başına',
+ 'posts' => 'Mesajlar',
+ 'posts-posted' => 'Forum Posts Göndərilib',
+ 'privacy' => 'Gizlilik',
+ 'privacy-settings' => 'Gizlilik Ayarları',
+ 'private-info' => 'Şəxsi məlumat',
+ 'private-forum-profile' => 'Diqqət: Bu Mövzular və Mövzular tarixi PRIVATE üçün qurulmuşdur!',
+ 'private-profile' => 'Diqqət: Bu profil PRIVATE üçün qurulmuşdur!',
+ 'profile' => 'Profil',
+ 'profile-desc' => 'İstifadəçi: İstifadəçi profili qeydiyyatdan keçdi: title',
+ 'profile-privacy' => 'Profil Ayarları',
+ 'profile-privacy-torrent-count' => 'Ümumi yüklənmə sayınızı, yükləmələrinizi, toxumlarınızı və sülüklərinizi paylaşın',
+ 'profile-privacy-torrent-ratio' => 'Ümumi yükləməni / yüklənmə məlumatınızı qeyd nisbətlə birlikdə paylaşın',
+ 'profile-privacy-torrent-seed' => 'Ümumi toxum vaxtınızı və orta payınızı paylaşın',
+ 'profile-privacy-title' => 'Şəxsi adı məlumatınızı paylaşın',
+ 'profile-privacy-about' => 'Mənim haqqında şəxsi məlumatlarınızı paylaşın',
+ 'profile-privacy-bon-extra' => 'BON statistika paylaşın',
+ 'profile-privacy-comment-extra' => 'Yorumlarınızı paylaşın',
+ 'profile-privacy-forum-extra' => 'Forumunuzun statistika paylaş',
+ 'profile-privacy-request-extra' => 'İstek istatistiklerinizi paylaşın',
+ 'profile-privacy-torrent-extra' => 'Torrent statistikalarını paylaşın',
+ 'profile-privacy-badge' => 'Qazandığınız rozetlərinizi paylaşın',
+ 'profile-privacy-achievement' => 'Son nailiyyətlərinizi paylaşın',
+ 'profile-privacy-follower' => 'Son ardıcılları paylaşın',
+ 'profile-privacy-warning' => 'H & R xəbərdarlıqlarını paylaşın',
+ 'profile-privacy-help' => 'Profilinizdə hansı statistika və məlumatların göründüyünü yoxlayın. Hər hansı bir qrupun profilinizə daxil olmasına icazə vermirsinizsə və ya Şəxsi olaraq gedin, bu parametrlər qüvvədən düşür',
+ 'public-info' => 'İctimai məlumat',
+ 'recent-achievements' => 'Son nailiyyətlər',
+ 'recent-followers' => 'Son İzləyicilər',
+ 'registration-date' => 'Qeydiyyat tarixi',
+ 'report' => 'Hesabat',
+ 'request-help' => 'Xüsusi sorğunuzla bağlı statistika və məlumatların profilinizə daxil olmaq üçün icazə verilən qruplarla paylaşılmasını nəzarət. Bu parametrlər istənilən qrupun istənilən istənilən statistika və məlumatlarınıza daxil olmasına icazə vermirsə və ya Şəxsi olaraq gedin',
+ 'request' => 'İstək',
+ 'requested' => 'İstədik',
+ 'requests' => 'İstək',
+ 'request-comments' => 'Şərhlər İstək',
+ 'request-notification' => 'İstek Bildirim Ayarları',
+ 'request-notification-bounty' => 'Istənilən torrent yeni bir lütf alırsa bildiriş alın',
+ 'request-notification-comment' => 'Istənilən torrent yeni bir şərh aldıqda bildiriş alın',
+ 'request-notification-fill' => 'İstənilən torrent doldurulduqda bildiriş alın',
+ 'request-notification-fill-approve' => 'Istənilən torrent dolğu təsdiqləndikdə bildiriş alın',
+ 'request-notification-fill-reject' => 'Istənilən torrent doldurulması rədd edildikdə bildiriş alın',
+ 'request-notification-claim' => 'İstənilən torrent tələb edildikdə bildiriş alın',
+ 'request-notification-unclaim' => 'İstənilən torrent tələb edilmədikdə bildiriş alın',
+ 'request-notification-help' => 'Sorğu tədbirləri ilə bağlı bildirişlərin göndərilməsinə nəzarət. Hər hansı bir qrupun sorğu tədbirləri ilə bağlı bildiriş göndərməsinə icazə vermirsinizsə və ya Bildirişləri işlədirsəniz, bu parametrlər əvəzsizdir',
+ 'request-privacy' => 'Ayarlar soruşun',
+ 'request-privacy-requested' => 'Istifadəçilərinizin etdiyiniz istəklərin siyahısını görmək imkanı verin',
+ 'reset-passkey' => 'Parolanı sıfırla (PID)',
+ 'reset-passkey-help' => 'PID sıfırlanmasından sonra bütün aktiv torrentlarınızı yenidən yükləməyiniz / yenidən yükləməlisiniz',
+ 'reset-rss' => 'RSS anahtarı sıfırlama (RID)',
+ 'reset-rss-help' => 'RİP-ni yenidən qurduqdan sonra, aktiv RSS-lərin hamısını yenidən yükləməlisiniz',
+ 'resurrections' => 'Təkrarlanma',
+ 'search' => 'İstifadəçi adı ilə sürətli axtarış',
+ 'security' => 'Təhlükəsizlik',
+ 'security-settings' => 'Təhlükəsizlik parametrləri',
+ 'seedboxes' => 'Toxumalar',
+ 'seeds' => 'Toxumlar',
+ 'send-invite' => 'Dəvət göndər',
+ 'sender' => 'Göndərən',
+ 'settings' => 'Ayarlar',
+ 'show-passkey' => 'PID göstər',
+ 'staff-noted' => 'İşçilər qeyd etdi',
+ 'statistics' => 'Statistika',
+ 'subscription-notification' => 'Abunə Bildirişləri Ayarları',
+ 'subscription-notification-forum' => 'Bir abunə forumu yeni bir mövzu aldığında bir bildiriş alın',
+ 'subscription-notification-topic' => 'Abunə olunan mövzu yeni bir yazı aldığında bildiriş alın',
+ 'subscription-notification-help' => 'Abunəliyinizlə bağlı bildirişlərin göndərilməsinə nəzarət. Hər hansı bir qrupun abunəliklərinizlə bağlı bildiriş göndərməsinə və ya Bildirişləri Söndürməsinə icazə verməsəniz, bu parametrlər əvəzsizdir',
+ 'thanks-given' => 'Təşəkkür edirik',
+ 'thanks-received' => 'Təşəkkür almışdır',
+ 'tips-given' => 'Verilən məsləhətlər',
+ 'tips-received' => 'Alınan göstərişlər',
+ 'title' => 'Başlıq',
+ 'top-bankers' => 'Top Banklar',
+ 'top-downloaders-data' => 'Top Downloaders (Data)',
+ 'top-leechers' => 'Ən yaxşı Leechers',
+ 'top-leechers-count' => 'Ən yaxşı Leechers (Count)',
+ 'top-seeders' => 'Top Seeders',
+ 'top-seeders-count' => 'Top Seeders (Count)',
+ 'top-seeding-size' => 'Üst Seeding (Ölçü)',
+ 'top-seedtime' => 'Top Seedtime',
+ 'top-uploaders-data' => 'Üst Yükləyicilər (Məlumat)',
+ 'top-uploaders-count' => 'Top yükləyicilər (sayı)',
+ 'topics' => 'Mövzular',
+ 'topics-started' => 'Forum Mövzular başladı',
+ 'torrent-comments' => 'Torrent Şərhlər etdi',
+ 'torrent-help' => 'Xüsusi torrent ilə bağlı statistika və məlumatların profilinizə daxil olmaq üçün icazə verilən qruplarla paylaşılmasını nəzarət edin. Bu parametrlər torrent ilə əlaqəli statistika və məlumatlarınıza və ya Şəxsi olaraq gedin',
+ 'torrent-notification' => 'Torrent Bildiriş Ayarları',
+ 'torrent-notification-comment' => 'Yüklənmiş torrent yeni bir şərh aldıqda bildiriş alın',
+ 'torrent-notification-thank' => 'Yüklənmiş torrent yeni bir təşəkkür aldıqda bildiriş alın',
+ 'torrent-notification-tip' => 'Yüklənmiş torrent yeni bir ipucu aldıqda bildiriş alın',
+ 'torrent-notification-help' => 'Torrent fəaliyyəti ilə bağlı bildirişlərin göndərilməsinə nəzarət. Hər hansı bir qrupun torrent fəaliyyəti ilə bağlı bildiriş göndərməsinə icazə vermirsinizsə və ya Bildirişləri Söndürsəniz, bu parametrlər qüvvədən düşür',
+ 'torrent-privacy' => 'Torrent Ayarları',
+ 'torrent-privacy-download' => 'Istifadəçilər yüklədiyiniz torrentlərin siyahısını gözləməyə icazə verin',
+ 'torrent-privacy-upload' => 'İstifadəçilər yüklədiyiniz torrentlərin siyahısını gözləməyə icazə verin',
+ 'torrent-privacy-peer' => 'Istifadəçilər sizi torrent tarixçəsi cədvəlində görməyə icazə verin',
+ 'torrents' => 'Torrents',
+ 'torrents-history' => 'Torrents Tarix',
+ 'total-download' => 'Total Download',
+ 'total-downloads' => 'Ümumi downloads',
+ 'total-leeching' => 'Total leeching',
+ 'total-seeding' => 'Ümumi toxum',
+ 'total-seedtime' => 'Ümumi Seedtime',
+ 'total-upload' => 'Ümumi yükləmə',
+ 'total-uploads' => 'Toplam yüklənmə',
+ 'unban' => 'Unban İstifadəçi',
+ 'unfollow' => 'İzləyin',
+ 'unlocked' => 'Kilidi aç',
+ 'unlocked-achievements' => 'Kilidlənmiş nailiyyətlər',
+ 'unsatisfieds' => 'Unsatisfieds',
+ 'upload-bon' => 'BON Mağazasından əlavə edildi',
+ 'upload-recorded' => 'Səsli yüklə',
+ 'upload-true' => 'True Upload',
+ 'uploads' => 'Yüklənir',
+ 'uploads-table' => 'Yüklənir Cədvəli',
+ 'user' => 'İstifadəçi',
+ 'user-id' => 'İstifadəçi adı',
+ 'username-seedbox' => 'İstifadəçi adı Seedbox',
+ 'visible-to-achievement' => 'Nailiyyətlər Görülə bilər',
+ 'visible-to-achievement-help' => 'Sizin nailiyyətləriniz yalnız heyət və aşağıdakı qruplar üçün görünəcəkdir. Şəxsi olaraq gedin, bu parametrlər əvəzsizdir',
+ 'visible-to-follower' => 'İzləyənlər Görülə bilər',
+ 'visible-to-follower-help' => 'Ardıcıllarınız yalnız işçilərə və aşağıdakı qruplara görünəcəklər. Şəxsi olaraq gedin, bu parametrlər əvəzsizdir',
+ 'visible-to-forum' => 'Forum məlumatları üçün görünür',
+ 'visible-to-forum-help' => 'Sizin forum məlumatlarınız yalnız işçilərə və aşağıdakı qruplara görünür. Şəxsi olaraq gedin, bu parametrlər əvəzsizdir',
+ 'visible-to-other' => 'Digər görünür',
+ 'visible-to-other-help' => 'Hesabınızla bağlı digər məlumatlar yalnız işçilərə və aşağıdakı qruplara görünür. Bu parametrlər Şəxsi olaraq Gitse və ya Gizli Olduğunuzda ləğv edilir',
+ 'visible-to-profile' => 'İstifadəçi profilində görünür',
+ 'visible-to-profile-help' => 'Profiliniz yalnız işçilərə və aşağıdakı qruplara görünür. Şəxsi olaraq gedin, bu parametrlər əvəzsizdir',
+ 'visible-to-request' => 'İnformasiya Məlumatı Görülə bilər',
+ 'visible-to-request-help' => 'Tələb məlumatınız yalnız işçilərə və aşağıdakı qruplara görünür. Şəxsi olaraq gedin, bu parametrlər əvəzsizdir',
+ 'visible-to-torrent' => 'Torrent Məlumatı Görünür',
+ 'visible-to-torrent-help' => 'Torrent məlumatınız yalnız işçilərə və aşağıdakı qruplara görünür. Bu parametrlər Şəxsi olaraq Gitse və ya Gizli Olduğunuzda ləğv edilir',
+ 'warned-on' => 'Uyarıldı',
+ 'warning' => 'Xəbərdarlıq',
+ 'warning-log' => 'Diqqət Giriş',
+ 'wishlist' => 'İstəklər',
];
diff --git a/lang/az/validation.php b/lang/az/validation.php
index 507ceed8e..a30f5143a 100644
--- a/lang/az/validation.php
+++ b/lang/az/validation.php
@@ -23,108 +23,108 @@ return [
|
*/
- 'accepted' => ':attribute qəbul edilməlidir',
- 'active_url' => ':attribute doğru URL deyil',
- 'after' => ':attribute :date tarixindən sonra olmalıdır',
- 'after_or_equal' => ':attribute :date tarixi ilə eyni və ya sonra olmalıdır',
- 'alpha' => ':attribute yalnız hərflərdən ibarət ola bilər',
- 'alpha_dash' => ':attribute yalnız hərf, rəqəm və tire simvolundan ibarət ola bilər',
- 'alpha_num' => ':attribute yalnız hərf və rəqəmlərdən ibarət ola bilər',
- 'array' => ':attribute massiv formatında olmalıdır',
- 'before' => ':attribute :date tarixindən əvvəl olmalıdır',
- 'before_or_equal' => ':attribute :date tarixindən əvvəl və ya bərabər olmalıdır',
- 'between' => [
+ 'accepted' => ':attribute qəbul edilməlidir',
+ 'active_url' => ':attribute doğru URL deyil',
+ 'after' => ':attribute :date tarixindən sonra olmalıdır',
+ 'after_or_equal' => ':attribute :date tarixi ilə eyni və ya sonra olmalıdır',
+ 'alpha' => ':attribute yalnız hərflərdən ibarət ola bilər',
+ 'alpha_dash' => ':attribute yalnız hərf, rəqəm və tire simvolundan ibarət ola bilər',
+ 'alpha_num' => ':attribute yalnız hərf və rəqəmlərdən ibarət ola bilər',
+ 'array' => ':attribute massiv formatında olmalıdır',
+ 'before' => ':attribute :date tarixindən əvvəl olmalıdır',
+ 'before_or_equal' => ':attribute :date tarixindən əvvəl və ya bərabər olmalıdır',
+ 'between' => [
'numeric' => ':attribute :min ilə :max arasında olmalıdır',
- 'file' => ':attribute :min ilə :max KB ölçüsü intervalında olmalıdır',
- 'string' => ':attribute :min ilə :max simvolu intervalında olmalıdır',
- 'array' => ':attribute :min ilə :max intervalında hissədən ibarət olmalıdır',
+ 'file' => ':attribute :min ilə :max KB ölçüsü intervalında olmalıdır',
+ 'string' => ':attribute :min ilə :max simvolu intervalında olmalıdır',
+ 'array' => ':attribute :min ilə :max intervalında hissədən ibarət olmalıdır',
],
- 'boolean' => ' :attribute doğru və ya yanlış ola bilər',
- 'confirmed' => ' :attribute doğrulanması yanlışdır',
- 'date' => ' :attribute tarix formatında olmalıdır',
- 'date_equals' => 'The :attribute must be a date equal to :date.',
- 'date_format' => ' :attribute :format formatında olmalıdır',
- 'different' => ' :attribute və :other fərqli olmalıdır',
- 'digits' => ' :attribute :digits rəqəmli olmalıdır',
- 'digits_between' => ' :attribute :min ilə :max rəqəmləri intervalında olmalıdır',
- 'dimensions' => ' :attribute doğru şəkil ölçülərində deyil',
- 'distinct' => ' :attribute dublikat qiymətlidir',
- 'email' => ' :attribute doğru email formatında deyil',
- 'exists' => ' seçilmiş :attribute yanlışdır',
- 'file' => ' :attribute fayl formatında olmalıdır',
- 'filled' => ' :attribute qiyməti olmalıdır',
- 'gt' => [
+ 'boolean' => ' :attribute doğru və ya yanlış ola bilər',
+ 'confirmed' => ' :attribute doğrulanması yanlışdır',
+ 'date' => ' :attribute tarix formatında olmalıdır',
+ 'date_equals' => 'The :attribute must be a date equal to :date.',
+ 'date_format' => ' :attribute :format formatında olmalıdır',
+ 'different' => ' :attribute və :other fərqli olmalıdır',
+ 'digits' => ' :attribute :digits rəqəmli olmalıdır',
+ 'digits_between' => ' :attribute :min ilə :max rəqəmləri intervalında olmalıdır',
+ 'dimensions' => ' :attribute doğru şəkil ölçülərində deyil',
+ 'distinct' => ' :attribute dublikat qiymətlidir',
+ 'email' => ' :attribute doğru email formatında deyil',
+ 'exists' => ' seçilmiş :attribute yanlışdır',
+ 'file' => ' :attribute fayl formatında olmalıdır',
+ 'filled' => ' :attribute qiyməti olmalıdır',
+ 'gt' => [
'numeric' => 'The :attribute must be greater than :value.',
- 'file' => 'The :attribute must be greater than :value kilobytes.',
- 'string' => 'The :attribute must be greater than :value characters.',
- 'array' => 'The :attribute must have more than :value items.',
+ 'file' => 'The :attribute must be greater than :value kilobytes.',
+ 'string' => 'The :attribute must be greater than :value characters.',
+ 'array' => 'The :attribute must have more than :value items.',
],
- 'gte' => [
+ 'gte' => [
'numeric' => 'The :attribute must be greater than or equal :value.',
- 'file' => 'The :attribute must be greater than or equal :value kilobytes.',
- 'string' => 'The :attribute must be greater than or equal :value characters.',
- 'array' => 'The :attribute must have :value items or more.',
+ 'file' => 'The :attribute must be greater than or equal :value kilobytes.',
+ 'string' => 'The :attribute must be greater than or equal :value characters.',
+ 'array' => 'The :attribute must have :value items or more.',
],
- 'image' => ' :attribute şəkil formatında olmalıdır',
- 'in' => ' seçilmiş :attribute yanlışdır',
- 'in_array' => ' :attribute :other qiymətləri arasında olmalıdır',
- 'integer' => ' :attribute tam ədəd olmalıdır',
- 'ip' => ' :attribute İP adres formatında olmalıdır',
- 'ipv4' => ' :attribute İPv4 adres formatında olmalıdır',
- 'ipv6' => ' :attribute İPv6 adres formatında olmalıdır',
- 'json' => ' :attribute JSON formatında olmalıdır',
- 'lt' => [
+ 'image' => ' :attribute şəkil formatında olmalıdır',
+ 'in' => ' seçilmiş :attribute yanlışdır',
+ 'in_array' => ' :attribute :other qiymətləri arasında olmalıdır',
+ 'integer' => ' :attribute tam ədəd olmalıdır',
+ 'ip' => ' :attribute İP adres formatında olmalıdır',
+ 'ipv4' => ' :attribute İPv4 adres formatında olmalıdır',
+ 'ipv6' => ' :attribute İPv6 adres formatında olmalıdır',
+ 'json' => ' :attribute JSON formatında olmalıdır',
+ 'lt' => [
'numeric' => 'The :attribute must be less than :value.',
- 'file' => 'The :attribute must be less than :value kilobytes.',
- 'string' => 'The :attribute must be less than :value characters.',
- 'array' => 'The :attribute must have less than :value items.',
+ 'file' => 'The :attribute must be less than :value kilobytes.',
+ 'string' => 'The :attribute must be less than :value characters.',
+ 'array' => 'The :attribute must have less than :value items.',
],
- 'lte' => [
+ 'lte' => [
'numeric' => 'The :attribute must be less than or equal :value.',
- 'file' => 'The :attribute must be less than or equal :value kilobytes.',
- 'string' => 'The :attribute must be less than or equal :value characters.',
- 'array' => 'The :attribute must not have more than :value items.',
+ 'file' => 'The :attribute must be less than or equal :value kilobytes.',
+ 'string' => 'The :attribute must be less than or equal :value characters.',
+ 'array' => 'The :attribute must not have more than :value items.',
],
- 'max' => [
+ 'max' => [
'numeric' => ' :attribute maksiumum :max rəqəmdən ibarət ola bilər',
- 'file' => ' :attribute maksimum :max KB ölçüsündə ola bilər',
- 'string' => ' :attribute maksimum :max simvoldan ibarət ola bilər',
- 'array' => ' :attribute maksimum :max hədd\'dən ibarət ola bilər',
+ 'file' => ' :attribute maksimum :max KB ölçüsündə ola bilər',
+ 'string' => ' :attribute maksimum :max simvoldan ibarət ola bilər',
+ 'array' => ' :attribute maksimum :max hədd\'dən ibarət ola bilər',
],
- 'mimes' => ' :attribute :values tipində fayl olmalıdır',
- 'mimetypes' => ' :attribute :values tipində fayl olmalıdır',
- 'min' => [
+ 'mimes' => ' :attribute :values tipində fayl olmalıdır',
+ 'mimetypes' => ' :attribute :values tipində fayl olmalıdır',
+ 'min' => [
'numeric' => ' :attribute minimum :min rəqəmdən ibarət ola bilər',
- 'file' => ' :attribute minimum :min KB ölçüsündə ola bilər',
- 'string' => ' :attribute minimum :min simvoldan ibarət ola bilər',
- 'array' => ' :attribute minimum :min hədd\'dən ibarət ola bilər',
+ 'file' => ' :attribute minimum :min KB ölçüsündə ola bilər',
+ 'string' => ' :attribute minimum :min simvoldan ibarət ola bilər',
+ 'array' => ' :attribute minimum :min hədd\'dən ibarət ola bilər',
],
- 'not_in' => ' seçilmiş :attribute yanlışdır',
- 'not_regex' => 'The :attribute format is invalid.',
- 'numeric' => ' :attribute rəqəmlərdən ibarət olmalıdır',
- 'present' => ' :attribute iştirak etməlidir',
- 'regex' => ' :attribute formatı yanlışdır',
- 'required' => ' :attribute mütləqdir',
- 'required_if' => ' :attribute (:other :value ikən) mütləqdir',
- 'required_unless' => ' :attribute (:other :values \'ə daxil ikən) mütləqdir',
- 'required_with' => ' :attribute (:values var ikən) mütləqdir',
- 'required_with_all' => ' :attribute (:values var ikən) mütləqdir',
- 'required_without' => ' :attribute (:values yox ikən) mütləqdir',
+ 'not_in' => ' seçilmiş :attribute yanlışdır',
+ 'not_regex' => 'The :attribute format is invalid.',
+ 'numeric' => ' :attribute rəqəmlərdən ibarət olmalıdır',
+ 'present' => ' :attribute iştirak etməlidir',
+ 'regex' => ' :attribute formatı yanlışdır',
+ 'required' => ' :attribute mütləqdir',
+ 'required_if' => ' :attribute (:other :value ikən) mütləqdir',
+ 'required_unless' => ' :attribute (:other :values \'ə daxil ikən) mütləqdir',
+ 'required_with' => ' :attribute (:values var ikən) mütləqdir',
+ 'required_with_all' => ' :attribute (:values var ikən) mütləqdir',
+ 'required_without' => ' :attribute (:values yox ikən) mütləqdir',
'required_without_all' => ' :attribute (:values yox ikən) mütləqdir',
- 'same' => ' :attribute və :other eyni olmalıdır',
- 'size' => [
+ 'same' => ' :attribute və :other eyni olmalıdır',
+ 'size' => [
'numeric' => ' :attribute :size ölçüsündə olmalıdır',
- 'file' => ' :attribute :size KB ölçüsündə olmalıdır',
- 'string' => ' :attribute :size simvoldan ibarət olmalıdır',
- 'array' => ' :attribute :size hədd\'dən ibarət olmalıdır',
+ 'file' => ' :attribute :size KB ölçüsündə olmalıdır',
+ 'string' => ' :attribute :size simvoldan ibarət olmalıdır',
+ 'array' => ' :attribute :size hədd\'dən ibarət olmalıdır',
],
- 'starts_with' => 'The :attribute must start with one of the following: :values',
- 'string' => ' :attribute hərf formatında olmalıdır',
- 'timezone' => ' :attribute ərazi formatında olmalıdır',
- 'unique' => ' :attribute artıq iştirak edib',
- 'uploaded' => ' :attribute yüklənməsi mümkün olmadı',
- 'url' => ' :attribute formatı yanlışdır',
- 'uuid' => 'The :attribute must be a valid UUID.',
+ 'starts_with' => 'The :attribute must start with one of the following: :values',
+ 'string' => ' :attribute hərf formatında olmalıdır',
+ 'timezone' => ' :attribute ərazi formatında olmalıdır',
+ 'unique' => ' :attribute artıq iştirak edib',
+ 'uploaded' => ' :attribute yüklənməsi mümkün olmadı',
+ 'url' => ' :attribute formatı yanlışdır',
+ 'uuid' => 'The :attribute must be a valid UUID.',
/*
|--------------------------------------------------------------------------
diff --git a/lang/be/articles.php b/lang/be/articles.php
index 6a4918f54..035aff29f 100644
--- a/lang/be/articles.php
+++ b/lang/be/articles.php
@@ -12,8 +12,8 @@
*/
return [
- 'articles' => 'артыкулы',
+ 'articles' => 'артыкулы',
'meta-articles' => 'Артыкулы і навіны на трэкеры і супольнасці',
- 'published-at' => 'Published On',
- 'read-more' => 'Чытаць далей',
+ 'published-at' => 'Published On',
+ 'read-more' => 'Чытаць далей',
];
diff --git a/lang/be/auth.php b/lang/be/auth.php
index 3db1d594d..61e92aabf 100644
--- a/lang/be/auth.php
+++ b/lang/be/auth.php
@@ -23,6 +23,6 @@ return [
|
*/
- 'failed' => 'Імя карыстальніка і пароль не супадаюць.',
+ 'failed' => 'Імя карыстальніка і пароль не супадаюць.',
'throttle' => 'Занадта шмат спробаў ўваходу. Калі ласка, паспрабуйце яшчэ раз праз :seconds секунд.',
];
diff --git a/lang/be/backup.php b/lang/be/backup.php
index 61b5a88cb..f4bf8176b 100644
--- a/lang/be/backup.php
+++ b/lang/be/backup.php
@@ -12,32 +12,32 @@
*/
return [
- 'actions' => 'дзеянні',
- 'backup' => 'рэзервовая копія',
- 'backup_doesnt_exist' => 'Файл рэзервовай копіі не існуе.',
- 'create_a_new_backup' => 'Стварыць поўную рэзервовую копію',
- 'create_a_new_files_backup' => 'Стварэнне файлаў рэзервовага капіявання',
- 'create_a_new_db_backup' => 'Стварыць рэзервовую копію базы дадзеных',
- 'create_confirmation_message' => 'Перазагрузка старонкі на працягу 3 секунд.',
- 'create_confirmation_title' => 'Рэзервовае капіраванне завершана',
- 'create_error_message' => 'Файл рэзервовай копіі не можа быць створаны.',
- 'create_error_title' => 'Рэзервовае капіраванне памылка',
- 'create_warning_message' => 'Ваша рэзервовая НЕ можа быць створана. Калі ласка, праверце файлы часопісаў для дэталяў.',
- 'create_warning_title' => 'Невядомая памылка',
- 'date' => 'дата',
- 'delete' => 'выдаляць',
- 'delete_cancel_message' => 'Файл рэзервовай копіі не быў выдалены.',
- 'delete_cancel_title' => 'Добра',
- 'delete_confirm' => 'Ці з яўляецца ваш, што вы хочаце выдаліць гэты файл рэзервовай копіі?',
- 'delete_confirmation_message' => 'Файл рэзервовай копіі быў выдалены.',
- 'delete_confirmation_title' => 'зроблена',
- 'delete_error_message' => 'Файл рэзервовай копіі не быў выдалены.',
- 'delete_error_title' => 'памылка',
- 'download' => 'спампаваць',
- 'existing_backups' => 'Існуючыя рэзервовыя копіі',
- 'file_size' => 'памер файла',
- 'location' => 'размяшчэнне',
- 'manager' => 'менеджэр',
- 'no_disks_configured' => 'Няма рэзервовых дыскаў, настроеныя ў канфігурацыі / backup.php',
+ 'actions' => 'дзеянні',
+ 'backup' => 'рэзервовая копія',
+ 'backup_doesnt_exist' => 'Файл рэзервовай копіі не існуе.',
+ 'create_a_new_backup' => 'Стварыць поўную рэзервовую копію',
+ 'create_a_new_files_backup' => 'Стварэнне файлаў рэзервовага капіявання',
+ 'create_a_new_db_backup' => 'Стварыць рэзервовую копію базы дадзеных',
+ 'create_confirmation_message' => 'Перазагрузка старонкі на працягу 3 секунд.',
+ 'create_confirmation_title' => 'Рэзервовае капіраванне завершана',
+ 'create_error_message' => 'Файл рэзервовай копіі не можа быць створаны.',
+ 'create_error_title' => 'Рэзервовае капіраванне памылка',
+ 'create_warning_message' => 'Ваша рэзервовая НЕ можа быць створана. Калі ласка, праверце файлы часопісаў для дэталяў.',
+ 'create_warning_title' => 'Невядомая памылка',
+ 'date' => 'дата',
+ 'delete' => 'выдаляць',
+ 'delete_cancel_message' => 'Файл рэзервовай копіі не быў выдалены.',
+ 'delete_cancel_title' => 'Добра',
+ 'delete_confirm' => 'Ці з яўляецца ваш, што вы хочаце выдаліць гэты файл рэзервовай копіі?',
+ 'delete_confirmation_message' => 'Файл рэзервовай копіі быў выдалены.',
+ 'delete_confirmation_title' => 'зроблена',
+ 'delete_error_message' => 'Файл рэзервовай копіі не быў выдалены.',
+ 'delete_error_title' => 'памылка',
+ 'download' => 'спампаваць',
+ 'existing_backups' => 'Існуючыя рэзервовыя копіі',
+ 'file_size' => 'памер файла',
+ 'location' => 'размяшчэнне',
+ 'manager' => 'менеджэр',
+ 'no_disks_configured' => 'Няма рэзервовых дыскаў, настроеныя ў канфігурацыі / backup.php',
'only_local_downloads_supported' => 'Толькі загрузка з лакальнай файлавай сістэмы падтрымліваецца.',
];
diff --git a/lang/be/blocks.php b/lang/be/blocks.php
index 9a2c0215b..582a45ed4 100644
--- a/lang/be/blocks.php
+++ b/lang/be/blocks.php
@@ -12,19 +12,19 @@
*/
return [
- 'chatbox' => 'Chat Box',
- 'click' => 'націсніце',
- 'to-enable-editor' => 'каб уключыць рэдактар',
- 'featured-by' => 'Рэкамендаваны',
- 'featured-torrents' => 'папулярныя торэнты',
+ 'chatbox' => 'Chat Box',
+ 'click' => 'націсніце',
+ 'to-enable-editor' => 'каб уключыць рэдактар',
+ 'featured-by' => 'Рэкамендаваны',
+ 'featured-torrents' => 'папулярныя торэнты',
'featured-torrents-intro' => 'Атрымаць іх, пакуль вы можаце!',
- 'featured-until' => 'Гэта прыкметы торэнта да',
- 'top-torrents' => 'лепшыя Torrents',
- 'latest-posts' => 'апошнія паведамленні',
- 'latest-topics' => 'апошнія тэмы',
- 'active-in-last' => 'Актыўны ў мінулым',
- 'users-online' => 'карыстальнікі онлайн',
- 'check-news' => 'Навіны (штодня правяраць)',
- 'new-news' => 'новыя навіны',
- 'new-torrents' => 'новыя торэнты',
+ 'featured-until' => 'Гэта прыкметы торэнта да',
+ 'top-torrents' => 'лепшыя Torrents',
+ 'latest-posts' => 'апошнія паведамленні',
+ 'latest-topics' => 'апошнія тэмы',
+ 'active-in-last' => 'Актыўны ў мінулым',
+ 'users-online' => 'карыстальнікі онлайн',
+ 'check-news' => 'Навіны (штодня правяраць)',
+ 'new-news' => 'новыя навіны',
+ 'new-torrents' => 'новыя торэнты',
];
diff --git a/lang/be/bon.php b/lang/be/bon.php
index 87a055465..e0f349df1 100644
--- a/lang/be/bon.php
+++ b/lang/be/bon.php
@@ -12,44 +12,44 @@
*/
return [
- 'activated' => 'Актываваная',
- 'active' => 'Актываваны!',
- 'amount' => 'сума',
- 'bon' => 'BON',
- 'bonus' => 'бонус',
- 'date' => 'дата',
- 'earning' => 'налічэнне',
- 'earning-rate' => 'Пры такой хуткасці заробку вы будзеце атрымліваць наступныя за тэрміны ..',
- 'earnings' => 'прыбытак',
- 'exchange' => 'абмен',
- 'exchange-warning' => 'Абмены яўляюцца канчатковымі, Калі ласка, праверце свой выбар, перш чым зрабіць абмен.',
- 'extended-stats' => 'пашыраныя статыстыкі',
- 'gift' => 'падарунак',
- 'gift-bonus' => 'Падарункавыя Бонусныя ачкі',
- 'gift-to' => 'Падарункавыя Бонусныя ачкі Для',
- 'gifts' => 'дары',
- 'item' => 'пункт',
- 'no-refund' => 'НЕ вяртання!',
- 'per-day' => 'Ачкі ў дзень',
- 'per-hour' => 'Ачкі за гадзіну',
- 'per-minute' => 'Ачкі ў хвіліну',
- 'per-month' => 'Ачкі ў месяц',
- 'per-second' => 'Кропак у секунду',
- 'per-week' => 'Ачкі за тыдзень',
- 'per-year' => 'Ачкі за год',
- 'points' => 'кропак',
- 'receiver' => 'прыёмнік',
- 'review-seeds' => 'Агляд Усё высейваюць торэнтаў',
- 'send-gift' => 'адправіць падарунак',
- 'sender' => 'адпраўнік',
- 'store' => 'крама',
- 'tips' => 'чаявыя',
- 'total' => 'агульны даход',
- 'total-gifts' => 'У Усяго BON Дароў',
- 'total-tips' => 'У агульнай складанасці Саветы BON',
+ 'activated' => 'Актываваная',
+ 'active' => 'Актываваны!',
+ 'amount' => 'сума',
+ 'bon' => 'BON',
+ 'bonus' => 'бонус',
+ 'date' => 'дата',
+ 'earning' => 'налічэнне',
+ 'earning-rate' => 'Пры такой хуткасці заробку вы будзеце атрымліваць наступныя за тэрміны ..',
+ 'earnings' => 'прыбытак',
+ 'exchange' => 'абмен',
+ 'exchange-warning' => 'Абмены яўляюцца канчатковымі, Калі ласка, праверце свой выбар, перш чым зрабіць абмен.',
+ 'extended-stats' => 'пашыраныя статыстыкі',
+ 'gift' => 'падарунак',
+ 'gift-bonus' => 'Падарункавыя Бонусныя ачкі',
+ 'gift-to' => 'Падарункавыя Бонусныя ачкі Для',
+ 'gifts' => 'дары',
+ 'item' => 'пункт',
+ 'no-refund' => 'НЕ вяртання!',
+ 'per-day' => 'Ачкі ў дзень',
+ 'per-hour' => 'Ачкі за гадзіну',
+ 'per-minute' => 'Ачкі ў хвіліну',
+ 'per-month' => 'Ачкі ў месяц',
+ 'per-second' => 'Кропак у секунду',
+ 'per-week' => 'Ачкі за тыдзень',
+ 'per-year' => 'Ачкі за год',
+ 'points' => 'кропак',
+ 'receiver' => 'прыёмнік',
+ 'review-seeds' => 'Агляд Усё высейваюць торэнтаў',
+ 'send-gift' => 'адправіць падарунак',
+ 'sender' => 'адпраўнік',
+ 'store' => 'крама',
+ 'tips' => 'чаявыя',
+ 'total' => 'агульны даход',
+ 'total-gifts' => 'У Усяго BON Дароў',
+ 'total-tips' => 'У агульнай складанасці Саветы BON',
'you-have-received-gifts' => 'вы атрымалі',
- 'you-have-sent-gifts' => 'вы адправілі',
- 'you-have-received-tips' => 'вы атрымалі',
- 'you-have-sent-tips' => 'вы адправілі',
- 'your-points' => 'вашыя акуляры',
+ 'you-have-sent-gifts' => 'вы адправілі',
+ 'you-have-received-tips' => 'вы атрымалі',
+ 'you-have-sent-tips' => 'вы адправілі',
+ 'your-points' => 'вашыя акуляры',
];
diff --git a/lang/be/bot.php b/lang/be/bot.php
index e7ce86d94..a16c64a72 100644
--- a/lang/be/bot.php
+++ b/lang/be/bot.php
@@ -12,15 +12,15 @@
*/
return [
- 'about' => 'аб',
- 'bot' => 'Bot',
- 'bots' => 'боты',
- 'color' => 'колер',
- 'command' => 'каманда',
- 'edit-bot' => 'рэдагаваць Bot',
+ 'about' => 'аб',
+ 'bot' => 'Bot',
+ 'bots' => 'боты',
+ 'color' => 'колер',
+ 'command' => 'каманда',
+ 'edit-bot' => 'рэдагаваць Bot',
'emoji-code' => 'Emoji код',
- 'help' => 'дапамогу',
- 'icon' => 'іконка',
- 'info' => 'інфармацыя',
- 'name' => 'імя',
+ 'help' => 'дапамогу',
+ 'icon' => 'іконка',
+ 'info' => 'інфармацыя',
+ 'name' => 'імя',
];
diff --git a/lang/be/bug.php b/lang/be/bug.php
index 2014b6895..f65ef69ef 100644
--- a/lang/be/bug.php
+++ b/lang/be/bug.php
@@ -12,15 +12,15 @@
*/
return [
- 'bug-report' => 'паведамленне памылкі',
+ 'bug-report' => 'паведамленне памылкі',
'bug-report-description' => 'Паведаміць пра памылку сайта',
- 'enter-description' => 'Апішыце праблему як мага лепш',
- 'enter-email' => 'Калі ласка, увядзіце свой адрас электроннай пошты',
- 'enter-title' => 'Калі ласка, абярыце правільнае назву',
- 'enter-username' => 'Калі ласка, увядзіце ваша імя карыстальніка',
- 'high' => 'высокая',
- 'low' => 'нізкі',
- 'priority' => 'прыярытэт',
- 'priority-description' => 'Выберыце толькі вельмі высокімі, калі памылка сапраўды зяўляецца праблемай для выкарыстання сайта.',
- 'very-high' => 'вельмі высокая',
+ 'enter-description' => 'Апішыце праблему як мага лепш',
+ 'enter-email' => 'Калі ласка, увядзіце свой адрас электроннай пошты',
+ 'enter-title' => 'Калі ласка, абярыце правільнае назву',
+ 'enter-username' => 'Калі ласка, увядзіце ваша імя карыстальніка',
+ 'high' => 'высокая',
+ 'low' => 'нізкі',
+ 'priority' => 'прыярытэт',
+ 'priority-description' => 'Выберыце толькі вельмі высокімі, калі памылка сапраўды зяўляецца праблемай для выкарыстання сайта.',
+ 'very-high' => 'вельмі высокая',
];
diff --git a/lang/be/common.php b/lang/be/common.php
index 61a3c63a6..08482bb80 100644
--- a/lang/be/common.php
+++ b/lang/be/common.php
@@ -12,179 +12,179 @@
*/
return [
- 'a-an-art' => '',
- 'about' => 'Пра нас',
- 'account' => 'рахункі',
- 'achievement-title' => 'страшэнны',
+ 'a-an-art' => '',
+ 'about' => 'Пра нас',
+ 'account' => 'рахункі',
+ 'achievement-title' => 'страшэнны',
'achievement-unlocked' => 'Вы адмыкнутая «: імя» дасягненне',
- 'active' => 'актыўны',
- 'active-warning' => 'актыўны папярэджанне',
- 'add' => 'дадаваць',
- 'added' => 'дабаўленай',
- 'amount' => 'сума',
- 'anonymous' => 'ананімны',
- 'author' => 'аўтар',
- 'balance' => 'баланс',
- 'blacklist' => 'кліент Blacklist',
- 'buffer' => 'буфер',
- 'bug' => 'Паведаміць пра памылку',
- 'but' => 'але',
- 'cancel' => 'адмяніць',
- 'category' => 'катэгорыя',
- 'categories' => 'катэгорыі',
- 'close' => 'блізка',
- 'comment' => 'каментар',
- 'comments' => 'каментары',
- 'community' => 'супольнасць',
- 'contact' => 'кантакт',
- 'contact-desc' => 'Гэты запыт кантакту будзе адпраўлены ўладальніку і звяжацца з Вамі як мага хутчэй',
- 'contact-header' => 'добры дзень',
- 'create' => 'стварыць',
- 'created_at' => 'створана У',
- 'day' => 'дзень',
- 'delete' => 'выдаляць',
- 'delete-your-comment' => 'выдаліць каментар',
- 'description' => 'апісанне',
- 'direction' => 'напрамак',
- 'disable' => 'забараняць',
- 'doubleup_activated' => 'Рэжым Global двайны загрузкі актываваны',
- 'download' => 'спампаваць',
- 'edit' => 'рэдагаваць',
- 'edit-your-comment' => 'рэдагаваць каментар',
- 'email' => 'электронная пошта',
- 'email-blacklist' => 'Email Blacklist',
- 'email-whitelist' => 'Email Whitelist',
+ 'active' => 'актыўны',
+ 'active-warning' => 'актыўны папярэджанне',
+ 'add' => 'дадаваць',
+ 'added' => 'дабаўленай',
+ 'amount' => 'сума',
+ 'anonymous' => 'ананімны',
+ 'author' => 'аўтар',
+ 'balance' => 'баланс',
+ 'blacklist' => 'кліент Blacklist',
+ 'buffer' => 'буфер',
+ 'bug' => 'Паведаміць пра памылку',
+ 'but' => 'але',
+ 'cancel' => 'адмяніць',
+ 'category' => 'катэгорыя',
+ 'categories' => 'катэгорыі',
+ 'close' => 'блізка',
+ 'comment' => 'каментар',
+ 'comments' => 'каментары',
+ 'community' => 'супольнасць',
+ 'contact' => 'кантакт',
+ 'contact-desc' => 'Гэты запыт кантакту будзе адпраўлены ўладальніку і звяжацца з Вамі як мага хутчэй',
+ 'contact-header' => 'добры дзень',
+ 'create' => 'стварыць',
+ 'created_at' => 'створана У',
+ 'day' => 'дзень',
+ 'delete' => 'выдаляць',
+ 'delete-your-comment' => 'выдаліць каментар',
+ 'description' => 'апісанне',
+ 'direction' => 'напрамак',
+ 'disable' => 'забараняць',
+ 'doubleup_activated' => 'Рэжым Global двайны загрузкі актываваны',
+ 'download' => 'спампаваць',
+ 'edit' => 'рэдагаваць',
+ 'edit-your-comment' => 'рэдагаваць каментар',
+ 'email' => 'электронная пошта',
+ 'email-blacklist' => 'Email Blacklist',
+ 'email-whitelist' => 'Email Whitelist',
'email-list-notactive' => 'Email Whitelist / Чорны спіс Сістэма ня актываваная',
- 'enable' => 'ўключыць',
- 'enter' => 'ўводзіць',
- 'error' => 'памылка',
- 'everyday' => 'Кожны дзень',
- 'expired' => 'мінуў',
- 'extra' => 'дадатковы',
- 'extra-stats' => 'дадатковыя статыстыкі',
- 'faq' => 'часта задаюць пытанні',
- 'files' => 'файлы',
- 'fl_token' => 'Freeleech токенаў',
- 'fl_tokens' => 'Freeleech токены',
- 'for' => 'для',
- 'forum' => 'форум',
- 'free' => 'бясплатна',
- 'freeleech_activated' => 'Рэжым Global Freeleech актываваны',
- 'global' => 'глабальнай',
- 'group' => 'група',
- 'groups' => 'групы',
- 'hidden' => 'схаваны',
- 'high-speeds' => 'высокая хуткасць',
- 'home' => 'дома',
- 'hot' => 'Hot!',
- 'hour' => 'гадзіну',
- 'huge' => 'велізарны',
- 'info' => 'інфармацыя',
- 'internal' => 'ўнутраны',
- 'ip' => 'IP',
- 'is-allowed' => 'дапускаецца',
- 'large' => 'вялікі',
- 'latest' => 'апошні',
- 'latest-posts' => 'апошнія паведамленні',
- 'latest-topics' => 'апошнія тэмы',
- 'legal' => 'легальны',
- 'legend' => 'легенда',
- 'lists' => 'спісы',
- 'lock-account' => 'Блакаванне ўліковага запісу',
- 'logout' => 'выхад',
- 'members' => 'члены',
- 'message' => 'паведамленне',
- 'minute' => 'хвілін',
- 'moderated-by' => 'вядучы',
- 'moderation' => 'умеранасць',
- 'moderation-approve' => 'ўхваляць',
- 'moderation-postpone' => 'адкладаць',
- 'moderation-reject' => 'адхіляць',
- 'month' => 'месяц',
- 'months' => 'месяцы',
- 'my' => 'мой',
- 'name' => 'імя',
- 'navigation' => 'рух',
- 'new' => 'Новы!',
- 'new-adj' => 'Новы',
- 'news' => 'навіны',
- 'next' => 'наступны',
- 'no' => 'няма',
- 'no-comments' => 'няма каментароў',
- 'no-result' => 'Там няма выніку ў базе даных для запыту',
- 'notifications' => 'апавяшчэння',
- 'older-than' => 'Старэй',
- 'oldest' => 'самы старэйшы',
- 'openreg_activated' => 'Адкрытая рэгістрацыя актываваная',
- 'order-by' => 'сартаваць па',
- 'other' => 'іншае',
- 'pages' => 'старонкі',
- 'password' => 'пароль',
- 'patron' => 'стаць Patron',
- 'pending-torrents' => 'У чаканні торэнтаў',
- 'personal' => 'асабісты',
- 'plural-suffix' => 's',
- 'port' => 'порт',
- 'position' => 'становішча',
- 'posts' => 'паведамленняў',
- 'powered-by' => 'Працуе на UNIT3D',
- 'preview' => 'папярэдні прагляд',
- 'previous' => 'папярэдні',
- 'progress' => 'прагрэс',
- 'publish' => 'апублікаваць',
- 'quantity' => 'колькасць',
- 'quick-search' => 'хуткі пошук',
- 'ratio' => 'суадносіны',
- 'reason' => 'прычына',
- 'remove' => 'выдаленне',
- 'report' => 'справаздачу',
- 'resend' => 'паўторная',
- 'reporter' => 'рэпарцёр',
- 'required' => 'патрабуецца',
- 'results' => 'вынікі',
- 'rss-system' => 'RSS сістэмы',
- 'rules' => 'правілы',
- 'save' => 'захаваць',
- 'search' => 'пошук',
- 'search-results' => 'Вынікі пошуку',
- 'search-results-desc' => 'Калі ласка, глядзіце вашы вынікі ніжэй',
- 'second' => 'другі',
- 'select' => 'выбраць',
- 'sort' => 'сартаваць',
- 'special' => 'спецыяльныя',
- 'staff' => 'персанал',
- 'staff-tools' => 'інструменты персаналу',
- 'stats' => 'статыстыка',
- 'status' => 'статус',
- 'sticked' => 'наклеіць',
- 'submit' => 'прадставіць',
- 'subscriptions' => 'падпіска',
- 'teams' => 'каманды',
- 'terms' => 'Умовы выкарыстання',
- 'times' => 'раз',
- 'title' => 'тытульны',
- 'top-bountied' => 'топ адораны',
- 'topics' => 'тэмы',
- 'tracker-codes' => 'Tracker коды',
- 'type' => 'тып',
- 'type-verb' => 'тып',
- 'types' => 'тыпы',
- 'genre' => 'жанр',
- 'genres' => 'жанры',
- 'action' => 'дзеянне',
- 'actions' => 'дзеянні',
- 'unknown' => 'невядомы',
+ 'enable' => 'ўключыць',
+ 'enter' => 'ўводзіць',
+ 'error' => 'памылка',
+ 'everyday' => 'Кожны дзень',
+ 'expired' => 'мінуў',
+ 'extra' => 'дадатковы',
+ 'extra-stats' => 'дадатковыя статыстыкі',
+ 'faq' => 'часта задаюць пытанні',
+ 'files' => 'файлы',
+ 'fl_token' => 'Freeleech токенаў',
+ 'fl_tokens' => 'Freeleech токены',
+ 'for' => 'для',
+ 'forum' => 'форум',
+ 'free' => 'бясплатна',
+ 'freeleech_activated' => 'Рэжым Global Freeleech актываваны',
+ 'global' => 'глабальнай',
+ 'group' => 'група',
+ 'groups' => 'групы',
+ 'hidden' => 'схаваны',
+ 'high-speeds' => 'высокая хуткасць',
+ 'home' => 'дома',
+ 'hot' => 'Hot!',
+ 'hour' => 'гадзіну',
+ 'huge' => 'велізарны',
+ 'info' => 'інфармацыя',
+ 'internal' => 'ўнутраны',
+ 'ip' => 'IP',
+ 'is-allowed' => 'дапускаецца',
+ 'large' => 'вялікі',
+ 'latest' => 'апошні',
+ 'latest-posts' => 'апошнія паведамленні',
+ 'latest-topics' => 'апошнія тэмы',
+ 'legal' => 'легальны',
+ 'legend' => 'легенда',
+ 'lists' => 'спісы',
+ 'lock-account' => 'Блакаванне ўліковага запісу',
+ 'logout' => 'выхад',
+ 'members' => 'члены',
+ 'message' => 'паведамленне',
+ 'minute' => 'хвілін',
+ 'moderated-by' => 'вядучы',
+ 'moderation' => 'умеранасць',
+ 'moderation-approve' => 'ўхваляць',
+ 'moderation-postpone' => 'адкладаць',
+ 'moderation-reject' => 'адхіляць',
+ 'month' => 'месяц',
+ 'months' => 'месяцы',
+ 'my' => 'мой',
+ 'name' => 'імя',
+ 'navigation' => 'рух',
+ 'new' => 'Новы!',
+ 'new-adj' => 'Новы',
+ 'news' => 'навіны',
+ 'next' => 'наступны',
+ 'no' => 'няма',
+ 'no-comments' => 'няма каментароў',
+ 'no-result' => 'Там няма выніку ў базе даных для запыту',
+ 'notifications' => 'апавяшчэння',
+ 'older-than' => 'Старэй',
+ 'oldest' => 'самы старэйшы',
+ 'openreg_activated' => 'Адкрытая рэгістрацыя актываваная',
+ 'order-by' => 'сартаваць па',
+ 'other' => 'іншае',
+ 'pages' => 'старонкі',
+ 'password' => 'пароль',
+ 'patron' => 'стаць Patron',
+ 'pending-torrents' => 'У чаканні торэнтаў',
+ 'personal' => 'асабісты',
+ 'plural-suffix' => 's',
+ 'port' => 'порт',
+ 'position' => 'становішча',
+ 'posts' => 'паведамленняў',
+ 'powered-by' => 'Працуе на UNIT3D',
+ 'preview' => 'папярэдні прагляд',
+ 'previous' => 'папярэдні',
+ 'progress' => 'прагрэс',
+ 'publish' => 'апублікаваць',
+ 'quantity' => 'колькасць',
+ 'quick-search' => 'хуткі пошук',
+ 'ratio' => 'суадносіны',
+ 'reason' => 'прычына',
+ 'remove' => 'выдаленне',
+ 'report' => 'справаздачу',
+ 'resend' => 'паўторная',
+ 'reporter' => 'рэпарцёр',
+ 'required' => 'патрабуецца',
+ 'results' => 'вынікі',
+ 'rss-system' => 'RSS сістэмы',
+ 'rules' => 'правілы',
+ 'save' => 'захаваць',
+ 'search' => 'пошук',
+ 'search-results' => 'Вынікі пошуку',
+ 'search-results-desc' => 'Калі ласка, глядзіце вашы вынікі ніжэй',
+ 'second' => 'другі',
+ 'select' => 'выбраць',
+ 'sort' => 'сартаваць',
+ 'special' => 'спецыяльныя',
+ 'staff' => 'персанал',
+ 'staff-tools' => 'інструменты персаналу',
+ 'stats' => 'статыстыка',
+ 'status' => 'статус',
+ 'sticked' => 'наклеіць',
+ 'submit' => 'прадставіць',
+ 'subscriptions' => 'падпіска',
+ 'teams' => 'каманды',
+ 'terms' => 'Умовы выкарыстання',
+ 'times' => 'раз',
+ 'title' => 'тытульны',
+ 'top-bountied' => 'топ адораны',
+ 'topics' => 'тэмы',
+ 'tracker-codes' => 'Tracker коды',
+ 'type' => 'тып',
+ 'type-verb' => 'тып',
+ 'types' => 'тыпы',
+ 'genre' => 'жанр',
+ 'genres' => 'жанры',
+ 'action' => 'дзеянне',
+ 'actions' => 'дзеянні',
+ 'unknown' => 'невядомы',
'unlocked-achievement' => 'Вы разблакавалі: дасягненне дасягненне',
- 'upload' => 'загрузіць',
- 'upload-guide' => 'загрузіць кіраўніцтва',
- 'user' => 'карыстальнік',
- 'username' => 'імя карыстальніка',
- 'users' => 'карыстальнікаў',
- 'view' => 'выгляд',
- 'view-all' => 'прагледзець усе',
- 'warnings' => 'папярэджання',
- 'year' => 'год',
- 'yes' => 'ды',
- 'your' => 'ваш',
- 'your-comment' => 'ваш каментар',
+ 'upload' => 'загрузіць',
+ 'upload-guide' => 'загрузіць кіраўніцтва',
+ 'user' => 'карыстальнік',
+ 'username' => 'імя карыстальніка',
+ 'users' => 'карыстальнікаў',
+ 'view' => 'выгляд',
+ 'view-all' => 'прагледзець усе',
+ 'warnings' => 'папярэджання',
+ 'year' => 'год',
+ 'yes' => 'ды',
+ 'your' => 'ваш',
+ 'your-comment' => 'ваш каментар',
];
diff --git a/lang/be/email.php b/lang/be/email.php
index a77e2bcfc..956f16780 100644
--- a/lang/be/email.php
+++ b/lang/be/email.php
@@ -12,46 +12,46 @@
*/
return [
- 'activate-account' => 'Актываваць уліковы запіс',
- 'ban-reason' => 'прычына',
- 'banned-footer' => 'Тое, што вы атрымліваеце за не па правілах',
- 'banned-header' => 'вам забаронена',
- 'bug-description' => 'праблема',
- 'bug-footer' => 'Зафіксуйце гэта дзярмо',
- 'bug-header' => 'Новы справаздачу пра памылку ад',
- 'bug-priority' => 'прыярытэт',
- 'bug-title' => 'назву памылкі',
- 'contact-header' => 'Новы кантакт пошты з',
- 'contact-message' => 'паведамленне',
- 'contact-name' => 'імя',
+ 'activate-account' => 'Актываваць уліковы запіс',
+ 'ban-reason' => 'прычына',
+ 'banned-footer' => 'Тое, што вы атрымліваеце за не па правілах',
+ 'banned-header' => 'вам забаронена',
+ 'bug-description' => 'праблема',
+ 'bug-footer' => 'Зафіксуйце гэта дзярмо',
+ 'bug-header' => 'Новы справаздачу пра памылку ад',
+ 'bug-priority' => 'прыярытэт',
+ 'bug-title' => 'назву памылкі',
+ 'contact-header' => 'Новы кантакт пошты з',
+ 'contact-message' => 'паведамленне',
+ 'contact-name' => 'імя',
'fail-login-greeting' => 'Лік Увайсці Failed!',
- 'fail-login-line1' => 'Няўдалая Увайсці быў знойдзены для вашага ўліковага запісу.',
- 'fail-login-line2' => 'Гэты запыт паўстаў з: ф (: хост) па адрасе: час',
- 'fail-login-subject' => 'Памылка Лагін Апавяшчэнне',
- 'footer-link' => 'Калі ў вас узніклі праблемы націснуўшы кнопку: actionText, скапіруйце і ўстаўце URL ніжэй у ваш вэб-браўзэр:',
- 'invite-header' => 'запрашэнне',
- 'invite-invited' => 'Вы былі запрошаны',
- 'invite-message' => 'паведамленне',
- 'invite-signup' => 'Зарэгіструйцеся зараз!',
- 'newreply-header' => 'Існуе новы адказ у вашай тэме',
- 'newreply-message' => 'паведамленне',
- 'newreply-replied' => 'Адказаў на вашу тэму',
- 'newreply-view' => 'Прагляд It Now',
- 'no-email-found' => 'Мы не змаглі знайсці гэтую электронную пошту ў нашай сістэме!',
- 'register-code' => 'Каб завяршыць актывацыю ўліковага запісу націсніце на кнопку ніжэй',
- 'register-footer' => 'Калі кнопка вышэй не працуе, скапіруйце і ўстаўце URL у ваш адрасную радок браўзэра',
- 'register-header' => 'Прывітанне! Дзякуем Вас за рэгістрацыю на',
- 'report-comment' => 'каментар',
- 'report-email' => 'электронная пошта',
- 'report-header' => 'Прывітанне Admin, Спасылку паведамлялася аб',
- 'report-link' => 'спасылка',
- 'report-link-hash' => 'фактычная спасылка',
- 'thanks' => 'Дзякуем Вам за выкарыстанне',
- 'unban-footer' => 'Сардэчна запрашаем!',
- 'unban-header' => 'You Have Been Unbanned',
- 'unban-reason' => 'прычына',
- 'username-reminder' => 'Вы нядаўна даслаў нам запыт на імя карыстальніка на нашым дадатку. Ваша імя карыстальніка',
- 'username-sent' => 'Ваша імя карыстальніка было адпраўлена на ваш электронны адрас!',
- 'disabled-header' => 'Ваш рахунак быў адключаны',
- 'pruned-header' => 'Ваш Лік абрэзкі',
+ 'fail-login-line1' => 'Няўдалая Увайсці быў знойдзены для вашага ўліковага запісу.',
+ 'fail-login-line2' => 'Гэты запыт паўстаў з: ф (: хост) па адрасе: час',
+ 'fail-login-subject' => 'Памылка Лагін Апавяшчэнне',
+ 'footer-link' => 'Калі ў вас узніклі праблемы націснуўшы кнопку: actionText, скапіруйце і ўстаўце URL ніжэй у ваш вэб-браўзэр:',
+ 'invite-header' => 'запрашэнне',
+ 'invite-invited' => 'Вы былі запрошаны',
+ 'invite-message' => 'паведамленне',
+ 'invite-signup' => 'Зарэгіструйцеся зараз!',
+ 'newreply-header' => 'Існуе новы адказ у вашай тэме',
+ 'newreply-message' => 'паведамленне',
+ 'newreply-replied' => 'Адказаў на вашу тэму',
+ 'newreply-view' => 'Прагляд It Now',
+ 'no-email-found' => 'Мы не змаглі знайсці гэтую электронную пошту ў нашай сістэме!',
+ 'register-code' => 'Каб завяршыць актывацыю ўліковага запісу націсніце на кнопку ніжэй',
+ 'register-footer' => 'Калі кнопка вышэй не працуе, скапіруйце і ўстаўце URL у ваш адрасную радок браўзэра',
+ 'register-header' => 'Прывітанне! Дзякуем Вас за рэгістрацыю на',
+ 'report-comment' => 'каментар',
+ 'report-email' => 'электронная пошта',
+ 'report-header' => 'Прывітанне Admin, Спасылку паведамлялася аб',
+ 'report-link' => 'спасылка',
+ 'report-link-hash' => 'фактычная спасылка',
+ 'thanks' => 'Дзякуем Вам за выкарыстанне',
+ 'unban-footer' => 'Сардэчна запрашаем!',
+ 'unban-header' => 'You Have Been Unbanned',
+ 'unban-reason' => 'прычына',
+ 'username-reminder' => 'Вы нядаўна даслаў нам запыт на імя карыстальніка на нашым дадатку. Ваша імя карыстальніка',
+ 'username-sent' => 'Ваша імя карыстальніка было адпраўлена на ваш электронны адрас!',
+ 'disabled-header' => 'Ваш рахунак быў адключаны',
+ 'pruned-header' => 'Ваш Лік абрэзкі',
];
diff --git a/lang/be/forum.php b/lang/be/forum.php
index 783cbeebf..b693537c3 100644
--- a/lang/be/forum.php
+++ b/lang/be/forum.php
@@ -12,63 +12,63 @@
*/
return [
- 'action' => 'дзеянне',
- 'activity' => 'дзейнасць',
- 'approved' => 'зацверджаны',
- 'author' => 'аўтар',
- 'bug' => 'памылка',
- 'category-quick-search' => 'Тэма назву хуткі пошук (у катэгорыі)',
- 'close-topic' => 'Блакаванне тэмы',
- 'closed' => 'закрыта',
- 'create-new-topic' => 'Стварыць новую тэму',
- 'created' => 'створаны',
- 'current' => 'ток',
- 'delete-topic' => 'Выдаліць гэтую тэму',
- 'denied' => 'адмоўлена',
- 'dislike-post' => 'Паведамленне не спадабалася',
- 'display-forum' => 'Паказаць тэмы ў',
- 'edit-post' => 'рэдагаваць паведамленне',
- 'edit-topic' => 'рэдагаваць тэму',
- 'forum' => 'форум',
- 'forums' => 'форумы',
- 'implemented' => 'рэалізаваны',
- 'in' => 'у',
- 'invalid' => 'несапраўдны',
- 'label' => 'этыкетка',
- 'label-system' => 'сістэма этыкеткі',
- 'last-message' => 'апошняе паведамленне',
- 'last-post-info' => 'апошняе паведамленне',
- 'latest' => 'апошні',
- 'like-post' => 'Як гэта паведамленне',
- 'meta-category' => 'Спіс форумаў у катэгорыі',
- 'moderation' => 'умеранасць',
- 'name' => 'імя',
- 'not-connected' => 'Вы павінны быць падлучаныя',
- 'not-subscribed' => 'ня Падпіска',
- 'open' => 'адкрыты',
- 'open-topic' => 'Адкрыць гэтую тэму',
- 'permalink' => 'пастаянная спасылка',
- 'pin' => 'шпілька',
- 'post' => 'пост',
- 'post-quick-search' => 'Паведамленне цела хуткі пошук',
- 'posts' => 'паведамленняў',
- 'quote' => 'каціроўка',
- 'read-topic' => 'чытайце тэму',
- 'replies' => 'адказы',
- 'send-new-topic' => 'Захаваць гэтую тэму',
- 'solved' => 'вырашальная',
- 'state' => 'стан',
- 'stats' => 'статыстыка',
- 'subscribed' => 'падпісны',
+ 'action' => 'дзеянне',
+ 'activity' => 'дзейнасць',
+ 'approved' => 'зацверджаны',
+ 'author' => 'аўтар',
+ 'bug' => 'памылка',
+ 'category-quick-search' => 'Тэма назву хуткі пошук (у катэгорыі)',
+ 'close-topic' => 'Блакаванне тэмы',
+ 'closed' => 'закрыта',
+ 'create-new-topic' => 'Стварыць новую тэму',
+ 'created' => 'створаны',
+ 'current' => 'ток',
+ 'delete-topic' => 'Выдаліць гэтую тэму',
+ 'denied' => 'адмоўлена',
+ 'dislike-post' => 'Паведамленне не спадабалася',
+ 'display-forum' => 'Паказаць тэмы ў',
+ 'edit-post' => 'рэдагаваць паведамленне',
+ 'edit-topic' => 'рэдагаваць тэму',
+ 'forum' => 'форум',
+ 'forums' => 'форумы',
+ 'implemented' => 'рэалізаваны',
+ 'in' => 'у',
+ 'invalid' => 'несапраўдны',
+ 'label' => 'этыкетка',
+ 'label-system' => 'сістэма этыкеткі',
+ 'last-message' => 'апошняе паведамленне',
+ 'last-post-info' => 'апошняе паведамленне',
+ 'latest' => 'апошні',
+ 'like-post' => 'Як гэта паведамленне',
+ 'meta-category' => 'Спіс форумаў у катэгорыі',
+ 'moderation' => 'умеранасць',
+ 'name' => 'імя',
+ 'not-connected' => 'Вы павінны быць падлучаныя',
+ 'not-subscribed' => 'ня Падпіска',
+ 'open' => 'адкрыты',
+ 'open-topic' => 'Адкрыць гэтую тэму',
+ 'permalink' => 'пастаянная спасылка',
+ 'pin' => 'шпілька',
+ 'post' => 'пост',
+ 'post-quick-search' => 'Паведамленне цела хуткі пошук',
+ 'posts' => 'паведамленняў',
+ 'quote' => 'каціроўка',
+ 'read-topic' => 'чытайце тэму',
+ 'replies' => 'адказы',
+ 'send-new-topic' => 'Захаваць гэтую тэму',
+ 'solved' => 'вырашальная',
+ 'state' => 'стан',
+ 'stats' => 'статыстыка',
+ 'subscribed' => 'падпісны',
'subscription-quick-search' => 'Тэма назву хуткі пошук (у межах падпісак)',
- 'suggestion' => 'выкліканне',
- 'topic' => 'тэма',
- 'topic-closed' => 'Гэтая тэма зачынена',
- 'topic-name' => 'назва тэмы',
- 'topic-quick-search' => 'Тэма назву хуткі пошук',
- 'topic-title' => 'Назва гэтай тэмы',
- 'topics' => 'тэмы',
- 'unpin' => 'распушчае мацаваньне',
- 'view-all' => 'Прагледзець усе тэмы',
- 'views' => 'думкі',
+ 'suggestion' => 'выкліканне',
+ 'topic' => 'тэма',
+ 'topic-closed' => 'Гэтая тэма зачынена',
+ 'topic-name' => 'назва тэмы',
+ 'topic-quick-search' => 'Тэма назву хуткі пошук',
+ 'topic-title' => 'Назва гэтай тэмы',
+ 'topics' => 'тэмы',
+ 'unpin' => 'распушчае мацаваньне',
+ 'view-all' => 'Прагледзець усе тэмы',
+ 'views' => 'думкі',
];
diff --git a/lang/be/graveyard.php b/lang/be/graveyard.php
index 971bdc6e3..dc5a65793 100644
--- a/lang/be/graveyard.php
+++ b/lang/be/graveyard.php
@@ -12,15 +12,15 @@
*/
return [
- 'dead' => 'памерлыя',
- 'graveyard' => 'могілках',
- 'guidelines' => 'кіруючыя ўказанні',
+ 'dead' => 'памерлыя',
+ 'graveyard' => 'могілках',
+ 'guidelines' => 'кіруючыя ўказанні',
'guidelines-content' => '1) Вы не можаце ўваскрэсіць свае ўласныя дадання.
2) Dont ўваскрэсіць тое, што вы не можаце здзейсніць таксама.',
- 'howto' => 'Heres Правіла,',
- 'howto-desc1' => 'Вы павінны Seed: імя ў працягу 30 дзён ва ўдалым уваскрэсенні. У гэтым выпадку, калі бягучы з пасяўнога сезона',
- 'howto-desc2' => 'Вы будзеце ўзнагароджаныя',
- 'howto-hits' => 'колькасць праглядаў',
- 'pending' => 'у чаканні',
- 'resurrect' => 'уваскрашаць',
- 'reward' => 'Freeleech жэтоны',
+ 'howto' => 'Heres Правіла,',
+ 'howto-desc1' => 'Вы павінны Seed: імя ў працягу 30 дзён ва ўдалым уваскрэсенні. У гэтым выпадку, калі бягучы з пасяўнога сезона',
+ 'howto-desc2' => 'Вы будзеце ўзнагароджаныя',
+ 'howto-hits' => 'колькасць праглядаў',
+ 'pending' => 'у чаканні',
+ 'resurrect' => 'уваскрашаць',
+ 'reward' => 'Freeleech жэтоны',
];
diff --git a/lang/be/notification.php b/lang/be/notification.php
index f7febad44..f6a880778 100644
--- a/lang/be/notification.php
+++ b/lang/be/notification.php
@@ -12,14 +12,14 @@
*/
return [
- 'date' => 'дата',
- 'delete' => 'выдаляць',
- 'delete-all' => 'Выдаліць усе апавяшчэння',
- 'mark-all-read' => 'Адзначыць усе тэмы як прачытаныя',
- 'mark-read' => 'Адзначыць як прачытанае',
- 'message' => 'паведамленне',
+ 'date' => 'дата',
+ 'delete' => 'выдаляць',
+ 'delete-all' => 'Выдаліць усе апавяшчэння',
+ 'mark-all-read' => 'Адзначыць усе тэмы як прачытаныя',
+ 'mark-read' => 'Адзначыць як прачытанае',
+ 'message' => 'паведамленне',
'no-notifications' => 'Там няма ніякіх апавяшчэнняў знойдзена',
- 'notifications' => 'апавяшчэння',
- 'read' => 'счытванне',
- 'title' => 'тытульны',
+ 'notifications' => 'апавяшчэння',
+ 'read' => 'счытванне',
+ 'title' => 'тытульны',
];
diff --git a/lang/be/page.php b/lang/be/page.php
index 693e1213f..2e87777e8 100644
--- a/lang/be/page.php
+++ b/lang/be/page.php
@@ -12,28 +12,28 @@
*/
return [
- 'aboutus-advantage' => 'перавага',
- 'aboutus-advantage1' => 'Мы выпрабавалі членаў і супрацоўнікаў, якія добра разбіраюцца ў свеце HD відэа / аўдыё і тэхнічнай падтрымкі.',
- 'aboutus-advantage2' => 'Разам з нашай шырокай запалам да кіно і тэлевізійных шоў, мы таксама прапануем адзін з лепшых выбараў нешта, што большасць DonT - FANRES! Вялікі дзякуй нашым якое прыносіць кантэнту.',
- 'aboutus-advantage3' => 'У той час як мы прымаем ахвяраванні, каб захаваць сайт і працуе там не будзе прыставаць PMs або банэраў на сайце. Ня молячы ад нас.',
- 'aboutus-advantage4' => 'Наша супольнасць неперасягненая для яго ранняга ўзросту. Паміж нашымі супрацоўнікамі і колькасці карыстальнікаў, заўсёды былі тут, каб дапамагчы. Былі захопленыя аб тым, што ваш вопыт па: не што іншае, як дзіўна.',
- 'aboutus-advantage5' => 'Наш сэрвіс штодня выкарыстоўваецца многімі людзьмі па ўсім зямным шары. Weve даказалі, што мы клапоцімся пра функцыянальнасць і бяспекі нашай кодавым і яму можна давяраць і спадзявацца. Нашы распрацоўшчыкі працуюць штодня, каб забяспечыць сапраўды NEX-ген кодавай.',
- 'aboutus-header' => 'прывітанне там',
- 'aboutus-rules' => 'Што нам трэба ад вас',
- 'aboutus-rules1' => 'Для таго, каб быць актыўным членам супольнасці! Гэта азначае, што ўступіць у размовах прадуктыўная, дадаць зацверджанае ўтрыманне і дапамагчы іншым карыстальнікам, калі вы ў стане.',
- 'aboutus-rules2' => 'Каб азнаёміцца з правіламі і ў поўным ёме, калі ласка, паважайце іх!',
- 'aboutus-rules3' => 'Уносіць прапановы! Мы імкнемся зрабіць: назву лепш кожны дзень. Мы Арент пра тое, што кожнае прапанова будзе выкарыстоўвацца, але гэта ніколі не перашкодзіць, каб убачыць новыя ідэі.',
- 'aboutus-welcome' => 'Давайце казаць аб',
- 'aboutus-welcome-desc' => ': Назву кіно / ТБ / база FANRES супольнасці пабудавана. Кожная частка дадзеных была дапоўненая нашым дзіўным супольнасцю з 2017 .: тытулам моцнага акцэнт робіцца на змесце HD, ініцыятыўныя, карыстальнікі сістэмы дзіўны / бяспечны кодавую і карысную і прыязны персанал каманды.',
- 'blacklist-browsers' => 'браўзэры',
- 'blacklist-btclient' => 'кліент BitTorrent',
- 'blacklist-clients' => 'кліенты',
- 'blacklist-desc' => 'Гэтыя браўзэры і Bittorrent кліенты блакаваў / Forbidden Ад Annoucing To: назву',
- 'blacklist-webbrowser' => 'Вэб-браўзэр',
+ 'aboutus-advantage' => 'перавага',
+ 'aboutus-advantage1' => 'Мы выпрабавалі членаў і супрацоўнікаў, якія добра разбіраюцца ў свеце HD відэа / аўдыё і тэхнічнай падтрымкі.',
+ 'aboutus-advantage2' => 'Разам з нашай шырокай запалам да кіно і тэлевізійных шоў, мы таксама прапануем адзін з лепшых выбараў нешта, што большасць DonT - FANRES! Вялікі дзякуй нашым якое прыносіць кантэнту.',
+ 'aboutus-advantage3' => 'У той час як мы прымаем ахвяраванні, каб захаваць сайт і працуе там не будзе прыставаць PMs або банэраў на сайце. Ня молячы ад нас.',
+ 'aboutus-advantage4' => 'Наша супольнасць неперасягненая для яго ранняга ўзросту. Паміж нашымі супрацоўнікамі і колькасці карыстальнікаў, заўсёды былі тут, каб дапамагчы. Былі захопленыя аб тым, што ваш вопыт па: не што іншае, як дзіўна.',
+ 'aboutus-advantage5' => 'Наш сэрвіс штодня выкарыстоўваецца многімі людзьмі па ўсім зямным шары. Weve даказалі, што мы клапоцімся пра функцыянальнасць і бяспекі нашай кодавым і яму можна давяраць і спадзявацца. Нашы распрацоўшчыкі працуюць штодня, каб забяспечыць сапраўды NEX-ген кодавай.',
+ 'aboutus-header' => 'прывітанне там',
+ 'aboutus-rules' => 'Што нам трэба ад вас',
+ 'aboutus-rules1' => 'Для таго, каб быць актыўным членам супольнасці! Гэта азначае, што ўступіць у размовах прадуктыўная, дадаць зацверджанае ўтрыманне і дапамагчы іншым карыстальнікам, калі вы ў стане.',
+ 'aboutus-rules2' => 'Каб азнаёміцца з правіламі і ў поўным ёме, калі ласка, паважайце іх!',
+ 'aboutus-rules3' => 'Уносіць прапановы! Мы імкнемся зрабіць: назву лепш кожны дзень. Мы Арент пра тое, што кожнае прапанова будзе выкарыстоўвацца, але гэта ніколі не перашкодзіць, каб убачыць новыя ідэі.',
+ 'aboutus-welcome' => 'Давайце казаць аб',
+ 'aboutus-welcome-desc' => ': Назву кіно / ТБ / база FANRES супольнасці пабудавана. Кожная частка дадзеных была дапоўненая нашым дзіўным супольнасцю з 2017 .: тытулам моцнага акцэнт робіцца на змесце HD, ініцыятыўныя, карыстальнікі сістэмы дзіўны / бяспечны кодавую і карысную і прыязны персанал каманды.',
+ 'blacklist-browsers' => 'браўзэры',
+ 'blacklist-btclient' => 'кліент BitTorrent',
+ 'blacklist-clients' => 'кліенты',
+ 'blacklist-desc' => 'Гэтыя браўзэры і Bittorrent кліенты блакаваў / Forbidden Ад Annoucing To: назву',
+ 'blacklist-webbrowser' => 'Вэб-браўзэр',
'blacklist-emaildomain' => 'заблакаваны дамен',
- 'email-blacklist-desc' => 'Гэтыя дамены электроннай пошты заблакаваныя ад выкарыстання. Вы не можаце зарэгістравацца або адправіць Запрашэнне на наступнае.',
- 'email-whitelist-desc' => 'Гэтыя дамены электроннай пошты зяўляюцца адзінымі паштовымі даменамі, дазволенымі да выкарыстання. Вы можаце толькі зарэгістраваныя або адправіць Запрасіць, выкарыстоўваючы наступныя.',
- 'staff-group' => 'група',
- 'staff-title' => 'тытульны',
+ 'email-blacklist-desc' => 'Гэтыя дамены электроннай пошты заблакаваныя ад выкарыстання. Вы не можаце зарэгістравацца або адправіць Запрашэнне на наступнае.',
+ 'email-whitelist-desc' => 'Гэтыя дамены электроннай пошты зяўляюцца адзінымі паштовымі даменамі, дазволенымі да выкарыстання. Вы можаце толькі зарэгістраваныя або адправіць Запрасіць, выкарыстоўваючы наступныя.',
+ 'staff-group' => 'група',
+ 'staff-title' => 'тытульны',
'whitelist-emaildomain' => 'Trusted Domain',
];
diff --git a/lang/be/pagination.php b/lang/be/pagination.php
index 17f388c8f..cbca5a8be 100644
--- a/lang/be/pagination.php
+++ b/lang/be/pagination.php
@@ -24,5 +24,5 @@ return [
*/
'previous' => '« Назад',
- 'next' => 'Наперад »',
+ 'next' => 'Наперад »',
];
diff --git a/lang/be/passwords.php b/lang/be/passwords.php
index 5b37ffc69..92b83471f 100644
--- a/lang/be/passwords.php
+++ b/lang/be/passwords.php
@@ -24,8 +24,8 @@ return [
*/
'password' => 'Пароль павінен быць не менш за шэсць знакаў і супадаць з пацвярджэннем.',
- 'reset' => 'Ваш пароль быў скінуты!',
- 'sent' => 'Спасылка на скід пароля была адпраўлена!',
- 'token' => 'Памылковы код скіду пароля.',
- 'user' => 'Не атрымалася знайсці карыстальніка з дадзеным электронным адрасам.',
+ 'reset' => 'Ваш пароль быў скінуты!',
+ 'sent' => 'Спасылка на скід пароля была адпраўлена!',
+ 'token' => 'Памылковы код скіду пароля.',
+ 'user' => 'Не атрымалася знайсці карыстальніка з дадзеным электронным адрасам.',
];
diff --git a/lang/be/pm.php b/lang/be/pm.php
index 0cfc0a449..5d821a744 100644
--- a/lang/be/pm.php
+++ b/lang/be/pm.php
@@ -12,28 +12,28 @@
*/
return [
- 'create' => 'стварыць',
- 'delete' => 'выдаляць',
+ 'create' => 'стварыць',
+ 'delete' => 'выдаляць',
'enter-subject' => 'Калі ласка, увядзіце тэму',
- 'from' => 'ад',
- 'inbox' => 'ўваходныя',
+ 'from' => 'ад',
+ 'inbox' => 'ўваходныя',
'mark-all-read' => 'Адзначыць усе тэмы як прачытаныя',
- 'message' => 'паведамленне',
- 'messages' => 'паведамлення',
- 'new' => 'новае паведамленне',
- 'outbox' => 'выходныя',
- 'private' => 'прыватны',
- 'read' => 'счытванне',
- 'received-at' => 'атрыманае У',
- 'refresh' => 'абнаўленне',
- 'reply' => 'адказаць',
- 'search' => 'Пошук па прадмеце',
- 'select' => 'выберыце карыстальніка',
- 'send' => 'адправіць ЛС',
- 'send-to' => 'адправіць лічку',
- 'sent' => 'пасланы',
- 'sent-at' => 'адпраўленыя У',
- 'subject' => 'прадмет',
- 'to' => 'да',
- 'unread' => 'непрачытаныя',
+ 'message' => 'паведамленне',
+ 'messages' => 'паведамлення',
+ 'new' => 'новае паведамленне',
+ 'outbox' => 'выходныя',
+ 'private' => 'прыватны',
+ 'read' => 'счытванне',
+ 'received-at' => 'атрыманае У',
+ 'refresh' => 'абнаўленне',
+ 'reply' => 'адказаць',
+ 'search' => 'Пошук па прадмеце',
+ 'select' => 'выберыце карыстальніка',
+ 'send' => 'адправіць ЛС',
+ 'send-to' => 'адправіць лічку',
+ 'sent' => 'пасланы',
+ 'sent-at' => 'адпраўленыя У',
+ 'subject' => 'прадмет',
+ 'to' => 'да',
+ 'unread' => 'непрачытаныя',
];
diff --git a/lang/be/poll.php b/lang/be/poll.php
index b55cf8acb..e84400166 100644
--- a/lang/be/poll.php
+++ b/lang/be/poll.php
@@ -12,18 +12,18 @@
*/
return [
- 'add-option' => 'дадаць варыянт',
- 'create-poll' => 'стварыць апытанне',
- 'current' => 'Бягучы апытанне (ы)',
- 'delete-option' => 'выдаліць варыянт',
+ 'add-option' => 'дадаць варыянт',
+ 'create-poll' => 'стварыць апытанне',
+ 'current' => 'Бягучы апытанне (ы)',
+ 'delete-option' => 'выдаліць варыянт',
'multiple-choice' => 'Гэта множны выбар апытанне. Абярыце столькі адказаў, як вам падабаецца.',
- 'option' => 'варыянт',
- 'poll' => 'галасаванне',
- 'polls' => 'апытанні',
- 'results' => 'вынікі апытання',
- 'title' => 'тытульны',
- 'total' => 'Усяго галасоў Ever',
- 'vote' => 'галасаванне',
- 'vote-now' => 'Атрымаеце свой голас зараз!',
- 'votes' => 'галасоў',
+ 'option' => 'варыянт',
+ 'poll' => 'галасаванне',
+ 'polls' => 'апытанні',
+ 'results' => 'вынікі апытання',
+ 'title' => 'тытульны',
+ 'total' => 'Усяго галасоў Ever',
+ 'vote' => 'галасаванне',
+ 'vote-now' => 'Атрымаеце свой голас зараз!',
+ 'votes' => 'галасоў',
];
diff --git a/lang/be/request.php b/lang/be/request.php
index c64a47fe9..7bdef462b 100644
--- a/lang/be/request.php
+++ b/lang/be/request.php
@@ -12,67 +12,67 @@
*/
return [
- 'add-request' => 'Дадаць запыт',
- 'age' => 'ўзрост',
- 'all-requests' => 'усе запыты',
- 'approve' => 'ўхваляць',
- 'bounty' => 'прэмія',
- 'bounty-claimed' => 'Bounty сцвярджаў',
- 'bounty-unclaimed' => 'Bounty незапатрабаваным',
- 'category' => 'катэгорыя',
- 'claim' => 'дамаганне',
- 'claim-anon-choose' => 'Калі ласка, абярыце Мудра',
- 'claim-as-anon' => 'Вы хацелі б прэтэндаваць на гэтую Anonomously',
- 'claim-now' => 'Сцвярджаюць, у цяперашні час',
- 'claimed' => 'Заяўлены',
- 'current' => 'ток',
- 'delete' => 'Выдаліць гэты запыт',
+ 'add-request' => 'Дадаць запыт',
+ 'age' => 'ўзрост',
+ 'all-requests' => 'усе запыты',
+ 'approve' => 'ўхваляць',
+ 'bounty' => 'прэмія',
+ 'bounty-claimed' => 'Bounty сцвярджаў',
+ 'bounty-unclaimed' => 'Bounty незапатрабаваным',
+ 'category' => 'катэгорыя',
+ 'claim' => 'дамаганне',
+ 'claim-anon-choose' => 'Калі ласка, абярыце Мудра',
+ 'claim-as-anon' => 'Вы хацелі б прэтэндаваць на гэтую Anonomously',
+ 'claim-now' => 'Сцвярджаюць, у цяперашні час',
+ 'claimed' => 'Заяўлены',
+ 'current' => 'ток',
+ 'delete' => 'Выдаліць гэты запыт',
'delete-confirmation' => 'Вы ўпэўненыя, што жадаеце выдаліць гэты запыт',
- 'delete-filled' => 'Гэты запыт можа быць выдалены толькі калі ён не быў запоўнены',
- 'description' => 'апісанне',
- 'dont-have-bps' => 'Вы не маеце дастаткова Bonus',
- 'edit-request' => 'змяніць запыт',
- 'enter-bp' => 'Увядзіце бонусныя ачкі (мінімум 100)',
- 'enter-hash' => 'Увядзіце Info Hash запампоўваецца Torrent',
- 'fill' => 'запоўніць',
- 'fill-request' => 'Запоўніце гэтую заяўку',
- 'filled' => 'запоўнены',
- 'filled-by' => 'запаўняецца',
- 'for' => 'для',
- 'fulfill' => 'выконваць',
- 'last-vote' => 'Апошні голас',
- 'my-requests' => 'мае запыты',
- 'no' => 'няма,',
- 'no-imdb-id' => 'Усе запыты павінны ўтрымліваць нумар IMDB',
- 'no-privileges' => 'Памылка: Вашыя правы запыту адключаныя',
- 'no-privileges-desc' => 'Калі вы адчуваеце, што гэта памылка, калі ласка, звяжыцеся з супрацоўнікамі',
- 'no-refunds' => 'BON абмен на стварэнне, напаўненне і шчадроты зяўляюцца канчатковымі!
НЕ вяртання!',
- 'pending' => 'у чаканні',
- 'reason' => 'прычына',
- 'reject' => 'адхіляць',
- 'report' => 'запыт справаздачы',
- 'request' => 'запыт',
- 'request-details' => 'запыт дэталі',
- 'requested-by' => 'У адказ на просьбу',
- 'requests' => 'запыты',
- 'required' => 'патрабуецца',
- 'reset' => 'скід',
- 'reset-confirmation' => 'Вы ўпэўненыя, што жадаеце скінуць гэты запыт',
- 'reset-request' => 'Скінуць гэты запыт',
- 'reward' => 'Узнагарода',
- 'reward-desc' => 'Колькі бонус пункт вы хацелі б узнагародзіць? Мінімум 100 BP',
- 'reward-from' => 'ад',
- 'title' => 'тытульны',
- 'torrent-hash' => 'Hash Torrent',
- 'total-bounty' => 'Усяго Баунті',
- 'type' => 'тып',
- 'unclaim' => 'Unclaim гэты запыт',
- 'unfilled' => 'незапоўненыя',
- 'view-filled' => 'прагляд запаўнення',
- 'view-unfilled' => 'нявыкананых',
- 'vote' => 'галасаванне',
- 'vote-that' => 'Галасаваць гэты запыт',
- 'voters' => 'галасаваў',
- 'votes' => 'галасоў',
- 'yes' => 'ды',
+ 'delete-filled' => 'Гэты запыт можа быць выдалены толькі калі ён не быў запоўнены',
+ 'description' => 'апісанне',
+ 'dont-have-bps' => 'Вы не маеце дастаткова Bonus',
+ 'edit-request' => 'змяніць запыт',
+ 'enter-bp' => 'Увядзіце бонусныя ачкі (мінімум 100)',
+ 'enter-hash' => 'Увядзіце Info Hash запампоўваецца Torrent',
+ 'fill' => 'запоўніць',
+ 'fill-request' => 'Запоўніце гэтую заяўку',
+ 'filled' => 'запоўнены',
+ 'filled-by' => 'запаўняецца',
+ 'for' => 'для',
+ 'fulfill' => 'выконваць',
+ 'last-vote' => 'Апошні голас',
+ 'my-requests' => 'мае запыты',
+ 'no' => 'няма,',
+ 'no-imdb-id' => 'Усе запыты павінны ўтрымліваць нумар IMDB',
+ 'no-privileges' => 'Памылка: Вашыя правы запыту адключаныя',
+ 'no-privileges-desc' => 'Калі вы адчуваеце, што гэта памылка, калі ласка, звяжыцеся з супрацоўнікамі',
+ 'no-refunds' => 'BON абмен на стварэнне, напаўненне і шчадроты зяўляюцца канчатковымі!
НЕ вяртання!',
+ 'pending' => 'у чаканні',
+ 'reason' => 'прычына',
+ 'reject' => 'адхіляць',
+ 'report' => 'запыт справаздачы',
+ 'request' => 'запыт',
+ 'request-details' => 'запыт дэталі',
+ 'requested-by' => 'У адказ на просьбу',
+ 'requests' => 'запыты',
+ 'required' => 'патрабуецца',
+ 'reset' => 'скід',
+ 'reset-confirmation' => 'Вы ўпэўненыя, што жадаеце скінуць гэты запыт',
+ 'reset-request' => 'Скінуць гэты запыт',
+ 'reward' => 'Узнагарода',
+ 'reward-desc' => 'Колькі бонус пункт вы хацелі б узнагародзіць? Мінімум 100 BP',
+ 'reward-from' => 'ад',
+ 'title' => 'тытульны',
+ 'torrent-hash' => 'Hash Torrent',
+ 'total-bounty' => 'Усяго Баунті',
+ 'type' => 'тып',
+ 'unclaim' => 'Unclaim гэты запыт',
+ 'unfilled' => 'незапоўненыя',
+ 'view-filled' => 'прагляд запаўнення',
+ 'view-unfilled' => 'нявыкананых',
+ 'vote' => 'галасаванне',
+ 'vote-that' => 'Галасаваць гэты запыт',
+ 'voters' => 'галасаваў',
+ 'votes' => 'галасоў',
+ 'yes' => 'ды',
];
diff --git a/lang/be/rss.php b/lang/be/rss.php
index 4b0dad17d..8a323adaa 100644
--- a/lang/be/rss.php
+++ b/lang/be/rss.php
@@ -12,19 +12,19 @@
*/
return [
- 'create' => 'стварыць',
+ 'create' => 'стварыць',
'create-private-feed' => 'Стварэнне прыватнага RSS паток',
- 'create-public-feed' => 'Стварыць Грамадскі RSS паток',
- 'delete' => 'выдаляць',
- 'edit' => 'рэдагаваць',
- 'edit-private-feed' => 'Рэдагаваць Private RSS паток',
- 'edit-public-feed' => 'Рэдагаваць Адкрыты RSS паток',
- 'feed' => 'падача',
- 'feeds' => 'стужкі',
- 'name' => 'імя',
- 'public' => 'грамадскага',
- 'private' => 'прыватны',
- 'rss' => 'RSS',
- 'rss-feed' => 'RSS Падача',
- 'type' => 'тып',
+ 'create-public-feed' => 'Стварыць Грамадскі RSS паток',
+ 'delete' => 'выдаляць',
+ 'edit' => 'рэдагаваць',
+ 'edit-private-feed' => 'Рэдагаваць Private RSS паток',
+ 'edit-public-feed' => 'Рэдагаваць Адкрыты RSS паток',
+ 'feed' => 'падача',
+ 'feeds' => 'стужкі',
+ 'name' => 'імя',
+ 'public' => 'грамадскага',
+ 'private' => 'прыватны',
+ 'rss' => 'RSS',
+ 'rss-feed' => 'RSS Падача',
+ 'type' => 'тып',
];
diff --git a/lang/be/staff.php b/lang/be/staff.php
index 329938d45..74c038a5a 100644
--- a/lang/be/staff.php
+++ b/lang/be/staff.php
@@ -12,48 +12,48 @@
*/
return [
- 'audit-log' => 'Часопіс актыўнасці',
- 'articles' => 'артыкулы',
- 'applications' => 'прыкладанняў',
- 'bans-log' => 'Баны Уваход',
- 'blocks' => 'блокі',
- 'bot' => 'Bot',
- 'bots' => 'боты',
- 'chat' => 'чат',
- 'config-manager' => 'Config Manager',
- 'dashboard' => 'прыборная панэль',
- 'failed-login-log' => 'Памылка Увайсці Уваход',
- 'flush-ghost-peers' => 'Флэш Аднагодкі прывіды',
- 'forums' => 'форумы',
- 'frontend' => 'Frontend',
- 'general-tools' => 'Інструменты агульнага прызначэння',
- 'groups' => 'групы',
- 'invites-log' => 'запрашае Уваход',
- 'laravel-log' => 'Laravel Уваход',
- 'links' => 'сувязі',
- 'logs' => 'бярвёны',
- 'mass-pm' => 'Мас-ПМ',
- 'mass-validate-users' => 'Мас-Validate Карыстальнікі',
- 'moderation' => 'умеранасць',
- 'pages' => 'старонкі',
- 'please-moderate' => 'Калі ласка Moderate торэнта!',
- 'polls' => 'апытанні',
- 'reports-log' => 'справаздачы часопіса',
- 'rss' => 'RSS',
- 'staff-dashboard' => 'персанал Dashboard',
- 'torrent-categories' => 'торэнт Катэгорыі',
- 'torrent-moderation' => 'мадэрацыя Torrent',
- 'torrent-tools' => 'торэнт інструменты',
- 'torrent-types' => 'торэнт Тыпы',
- 'torrents' => 'Torrents',
- 'user-gifting' => 'дарэнне Карыстальнік',
- 'user-notes' => 'Карыстальнік Заўвагі Уваход',
- 'user-search' => 'карыстальнікі Пошук',
- 'user-tools' => 'інструменты',
- 'warnings-log' => 'папярэджання Увайсці',
- 'you-have' => 'Ў вас ёсць',
+ 'audit-log' => 'Часопіс актыўнасці',
+ 'articles' => 'артыкулы',
+ 'applications' => 'прыкладанняў',
+ 'bans-log' => 'Баны Уваход',
+ 'blocks' => 'блокі',
+ 'bot' => 'Bot',
+ 'bots' => 'боты',
+ 'chat' => 'чат',
+ 'config-manager' => 'Config Manager',
+ 'dashboard' => 'прыборная панэль',
+ 'failed-login-log' => 'Памылка Увайсці Уваход',
+ 'flush-ghost-peers' => 'Флэш Аднагодкі прывіды',
+ 'forums' => 'форумы',
+ 'frontend' => 'Frontend',
+ 'general-tools' => 'Інструменты агульнага прызначэння',
+ 'groups' => 'групы',
+ 'invites-log' => 'запрашае Уваход',
+ 'laravel-log' => 'Laravel Уваход',
+ 'links' => 'сувязі',
+ 'logs' => 'бярвёны',
+ 'mass-pm' => 'Мас-ПМ',
+ 'mass-validate-users' => 'Мас-Validate Карыстальнікі',
+ 'moderation' => 'умеранасць',
+ 'pages' => 'старонкі',
+ 'please-moderate' => 'Калі ласка Moderate торэнта!',
+ 'polls' => 'апытанні',
+ 'reports-log' => 'справаздачы часопіса',
+ 'rss' => 'RSS',
+ 'staff-dashboard' => 'персанал Dashboard',
+ 'torrent-categories' => 'торэнт Катэгорыі',
+ 'torrent-moderation' => 'мадэрацыя Torrent',
+ 'torrent-tools' => 'торэнт інструменты',
+ 'torrent-types' => 'торэнт Тыпы',
+ 'torrents' => 'Torrents',
+ 'user-gifting' => 'дарэнне Карыстальнік',
+ 'user-notes' => 'Карыстальнік Заўвагі Уваход',
+ 'user-search' => 'карыстальнікі Пошук',
+ 'user-tools' => 'інструменты',
+ 'warnings-log' => 'папярэджання Увайсці',
+ 'you-have' => 'Ў вас ёсць',
'possible-leech-cheaters' => 'магчымыя Ашуканцы',
- 'chat-tools' => 'чат Інструменты',
- 'flush-chat' => 'флэш Chatbox',
- 'seedboxes' => 'зарэгістраваныя Seedboxes',
+ 'chat-tools' => 'чат Інструменты',
+ 'flush-chat' => 'флэш Chatbox',
+ 'seedboxes' => 'зарэгістраваныя Seedboxes',
];
diff --git a/lang/be/stat.php b/lang/be/stat.php
index a10ad0735..aa66ac92a 100644
--- a/lang/be/stat.php
+++ b/lang/be/stat.php
@@ -12,40 +12,40 @@
*/
return [
- 'by-count' => 'па графу',
- 'by-data' => 'па дадзеных',
- 'by-volume' => 'па ёме',
- 'group' => 'група',
- 'groups' => 'групы',
- 'nerd-stats' => 'статыстыка Nerd',
- 'nerd-stats-desc' => 'Мы ўсе характарыстыкі любові. Вось некалькі, якія мы знаходзім важнае',
- 'registration-date' => 'дата рэгістрацыі',
- 'request-fulfilled' => 'запыт выконваецца',
- 'request-not-fulfilled' => 'Запыт не выконваецца',
+ 'by-count' => 'па графу',
+ 'by-data' => 'па дадзеных',
+ 'by-volume' => 'па ёме',
+ 'group' => 'група',
+ 'groups' => 'групы',
+ 'nerd-stats' => 'статыстыка Nerd',
+ 'nerd-stats-desc' => 'Мы ўсе характарыстыкі любові. Вось некалькі, якія мы знаходзім важнае',
+ 'registration-date' => 'дата рэгістрацыі',
+ 'request-fulfilled' => 'запыт выконваецца',
+ 'request-not-fulfilled' => 'Запыт не выконваецца',
'request-pending-aproval' => 'Запыт у чаканні aproval',
- 'select-category' => 'Калі ласка, выберыце катэгорыю ніжэй',
- 'site-stats' => 'статыстыка сайта',
- 'stats' => 'статыстыка',
- 'stats-format' => 'Усе Статыстыка адлюстроўваюцца У Top 100 Фармат',
- 'top-bankers' => 'лепшыя Банкіры',
- 'top-bountied' => 'топ адораны',
- 'top-completed' => 'выкананыя',
- 'top-dead' => 'Top Dead',
- 'top-downloaded' => 'Папулярныя Загружаныя торэнты',
- 'top-downloaders' => 'топ загрузнікі',
- 'top-dying' => 'лепшае паміранне',
- 'top-leeched' => 'топ прысмактаўся',
- 'top-leechers' => 'лепшыя Личеры',
- 'top-seeded' => 'топ сеяных',
- 'top-seeding' => 'лепшыя Пасевы',
- 'top-seeders' => 'лепшая сеялка',
- 'top-seedsize' => 'топ Seedsize',
- 'top-seedtime' => 'топ сеяння',
- 'top-uploaders' => 'топ загрузнікамі',
- 'total-download' => 'Усяго загрузак',
- 'total-torrents' => 'Усяго Torrents',
- 'total-traffic' => 'Агульны ём трафіку',
- 'total-upload' => 'Total Upload',
- 'users-in-group' => 'Карыстальнікі У групе',
- 'users-per-group' => 'Карыстальнікі ў групе',
+ 'select-category' => 'Калі ласка, выберыце катэгорыю ніжэй',
+ 'site-stats' => 'статыстыка сайта',
+ 'stats' => 'статыстыка',
+ 'stats-format' => 'Усе Статыстыка адлюстроўваюцца У Top 100 Фармат',
+ 'top-bankers' => 'лепшыя Банкіры',
+ 'top-bountied' => 'топ адораны',
+ 'top-completed' => 'выкананыя',
+ 'top-dead' => 'Top Dead',
+ 'top-downloaded' => 'Папулярныя Загружаныя торэнты',
+ 'top-downloaders' => 'топ загрузнікі',
+ 'top-dying' => 'лепшае паміранне',
+ 'top-leeched' => 'топ прысмактаўся',
+ 'top-leechers' => 'лепшыя Личеры',
+ 'top-seeded' => 'топ сеяных',
+ 'top-seeding' => 'лепшыя Пасевы',
+ 'top-seeders' => 'лепшая сеялка',
+ 'top-seedsize' => 'топ Seedsize',
+ 'top-seedtime' => 'топ сеяння',
+ 'top-uploaders' => 'топ загрузнікамі',
+ 'total-download' => 'Усяго загрузак',
+ 'total-torrents' => 'Усяго Torrents',
+ 'total-traffic' => 'Агульны ём трафіку',
+ 'total-upload' => 'Total Upload',
+ 'users-in-group' => 'Карыстальнікі У групе',
+ 'users-per-group' => 'Карыстальнікі ў групе',
];
diff --git a/lang/be/torrent.php b/lang/be/torrent.php
index dc28e72d2..28b413d36 100644
--- a/lang/be/torrent.php
+++ b/lang/be/torrent.php
@@ -12,197 +12,197 @@
*/
return [
- 'activity' => 'дзейнасць',
- 'age' => 'ўзрост',
- 'agent' => 'агент',
- 'alive' => 'жывы',
- 'announce-url' => 'абвясціць URL',
- 'announce-url-desc' => 'Калі ласка, выкарыстоўвайце абвясціць URL вышэй пры стварэнні новага торэнта. Калі вы хочаце выкарыстоўваць торэнт без загрузкі з сайта вам неабходна ўсталяваць прыватны сцяг і крыніца ў: крыніца',
- 'announce-url-desc-url' => 'Узніклі праблемы? Глядзіце наш гід ТУТ',
- 'announce-url-desc2' => 'TMDB і IMDB патрабуецца для ўсіх дадання! Ён выкарыстоўваецца, каб захапіць плакаты / фоны і ExtraInfo',
- 'approved' => 'зацверджаны',
- 'audio' => 'аўдыё',
- 'bon-tipped' => 'BON Tipped',
- 'bookmark' => 'закладка',
- 'bookmarks' => 'закладкі',
- 'bump' => 'удараць',
- 'cant-upload' => 'Памылка: Загружаны правы адключаныя',
- 'cant-upload-desc' => 'Калі вы адчуваеце, што гэта памылка, калі ласка, звяжыцеся з супрацоўнікамі',
- 'cards' => 'Карты',
- 'cards-view' => 'Торэнт Карты Прагляд',
- 'categories' => 'катэгорыі',
- 'category' => 'катэгорыя',
- 'client' => 'кліент',
- 'commited' => 'даручаны',
- 'completed' => 'завершаны',
- 'completed_at' => 'завершаны ў',
- 'completed-not-seeding' => 'Вы скончылі гэты Загрузіць Але больш не зяўляюцца Пасеў It',
- 'created_at' => 'створана',
- 'credited' => 'прызнана',
- 'current' => 'ток',
- 'current-filters' => 'бягучыя фільтры',
- 'currently-leeching' => 'У цяперашні час бяссілеў',
- 'currently-seeding' => 'У цяперашні час высеву',
- 'dead-torrent' => 'мёртвы Торэнт',
- 'dead-torrents' => 'мёртвыя Torrents',
- 'delete-bookmark' => 'выдаліць закладку',
- 'description' => 'апісанне',
- 'discounts' => 'скідкі',
- 'double-upload' => 'Двайная загрузка',
- 'download-all' => 'Спампаваць усе',
- 'download-check' => 'спампаваць праверка',
- 'downloaded' => 'загружаны',
- 'dying-torrent' => 'паміраючы Torrent',
- 'dying-torrents' => 'паміраючы торэнтаў',
- 'encode-settings' => 'налады Encode',
- 'estimated-ratio' => 'Разлікова суадносіны пасля запампоўкі',
- 'failed' => 'Не атрымалася',
- 'feature' => 'асаблівасць',
- 'featured' => 'Рэкамендаваны',
- 'featured-desc' => 'папулярныя торэнты 100% Free і Двайны Загрузіць!',
- 'featured-until' => 'Гэта такое Рэкамендуемы Торэнт Да',
- 'file' => 'файл',
- 'filters' => 'фільтры',
- 'fl-tokens-left' => 'Ў вас ёсць : Лексемы засталося',
- 'freeleech' => 'Freeleech',
- 'freeleech-token' => 'Freeleech токенаў',
- 'general' => 'агульны',
- 'genre' => 'жанр',
- 'global-double-upload' => 'Global Double Загрузіць',
- 'global-freeleech' => 'Global Freeleech',
- 'grant' => 'грант',
- 'greater-than' => 'больш',
- 'grouping' => 'групаванне',
- 'groupings' => 'групоўкі',
- 'grouping-categories' => 'групоўка катэгорый',
+ 'activity' => 'дзейнасць',
+ 'age' => 'ўзрост',
+ 'agent' => 'агент',
+ 'alive' => 'жывы',
+ 'announce-url' => 'абвясціць URL',
+ 'announce-url-desc' => 'Калі ласка, выкарыстоўвайце абвясціць URL вышэй пры стварэнні новага торэнта. Калі вы хочаце выкарыстоўваць торэнт без загрузкі з сайта вам неабходна ўсталяваць прыватны сцяг і крыніца ў: крыніца',
+ 'announce-url-desc-url' => 'Узніклі праблемы? Глядзіце наш гід ТУТ',
+ 'announce-url-desc2' => 'TMDB і IMDB патрабуецца для ўсіх дадання! Ён выкарыстоўваецца, каб захапіць плакаты / фоны і ExtraInfo',
+ 'approved' => 'зацверджаны',
+ 'audio' => 'аўдыё',
+ 'bon-tipped' => 'BON Tipped',
+ 'bookmark' => 'закладка',
+ 'bookmarks' => 'закладкі',
+ 'bump' => 'удараць',
+ 'cant-upload' => 'Памылка: Загружаны правы адключаныя',
+ 'cant-upload-desc' => 'Калі вы адчуваеце, што гэта памылка, калі ласка, звяжыцеся з супрацоўнікамі',
+ 'cards' => 'Карты',
+ 'cards-view' => 'Торэнт Карты Прагляд',
+ 'categories' => 'катэгорыі',
+ 'category' => 'катэгорыя',
+ 'client' => 'кліент',
+ 'commited' => 'даручаны',
+ 'completed' => 'завершаны',
+ 'completed_at' => 'завершаны ў',
+ 'completed-not-seeding' => 'Вы скончылі гэты Загрузіць Але больш не зяўляюцца Пасеў It',
+ 'created_at' => 'створана',
+ 'credited' => 'прызнана',
+ 'current' => 'ток',
+ 'current-filters' => 'бягучыя фільтры',
+ 'currently-leeching' => 'У цяперашні час бяссілеў',
+ 'currently-seeding' => 'У цяперашні час высеву',
+ 'dead-torrent' => 'мёртвы Торэнт',
+ 'dead-torrents' => 'мёртвыя Torrents',
+ 'delete-bookmark' => 'выдаліць закладку',
+ 'description' => 'апісанне',
+ 'discounts' => 'скідкі',
+ 'double-upload' => 'Двайная загрузка',
+ 'download-all' => 'Спампаваць усе',
+ 'download-check' => 'спампаваць праверка',
+ 'downloaded' => 'загружаны',
+ 'dying-torrent' => 'паміраючы Torrent',
+ 'dying-torrents' => 'паміраючы торэнтаў',
+ 'encode-settings' => 'налады Encode',
+ 'estimated-ratio' => 'Разлікова суадносіны пасля запампоўкі',
+ 'failed' => 'Не атрымалася',
+ 'feature' => 'асаблівасць',
+ 'featured' => 'Рэкамендаваны',
+ 'featured-desc' => 'папулярныя торэнты 100% Free і Двайны Загрузіць!',
+ 'featured-until' => 'Гэта такое Рэкамендуемы Торэнт Да',
+ 'file' => 'файл',
+ 'filters' => 'фільтры',
+ 'fl-tokens-left' => 'Ў вас ёсць : Лексемы засталося',
+ 'freeleech' => 'Freeleech',
+ 'freeleech-token' => 'Freeleech токенаў',
+ 'general' => 'агульны',
+ 'genre' => 'жанр',
+ 'global-double-upload' => 'Global Double Загрузіць',
+ 'global-freeleech' => 'Global Freeleech',
+ 'grant' => 'грант',
+ 'greater-than' => 'больш',
+ 'grouping' => 'групаванне',
+ 'groupings' => 'групоўкі',
+ 'grouping-categories' => 'групоўка катэгорый',
'grouping-categories-desc' => 'Да якой катэгорыі вы хацелі б групу?',
- 'grouping-results' => 'групоўка вынікаў',
- 'groupings-view' => 'групоўкі Прагляд',
- 'have-completed' => 'завершаны',
- 'have-downloaded' => 'загружаны',
- 'have-not-completed' => 'не завершана',
- 'have-not-downloaded' => 'Не запампоўваць',
- 'health' => 'здароўе',
- 'history' => 'гісторыя',
- 'hitrun' => 'H&R?',
- 'hit-and-runs' => 'Хіт і Run адлічвае',
- 'immune' => 'Імунная?',
- 'info' => 'інфармацыя',
- 'internal' => 'ўнутраны',
- 'internal-release' => 'унутраны рэліз',
- 'last-seed-activity' => 'Апошняя актыўнасць насення',
- 'last-seeder' => 'Вы апошняя астатняя Сеялка! (Было загружана па меншай меры 3 разы)',
- 'last-update' => 'Апошняе абнаўленне',
- 'leave-tip' => 'пакінуць водгук',
- 'leecher' => 'Leecher',
- 'leechers' => 'Личеры',
- 'leeching' => 'пампуе',
- 'left' => 'злева',
- 'legendary-seeder' => 'легендарная сеялка',
- 'legendary-torrent' => 'легендарны торэнт',
- 'list' => 'спіс',
- 'me' => 'мне',
- 'media-info' => 'MediaInfo',
- 'media-info-parser' => 'MediaInfo Parser',
- 'media-info-paste' => 'Уставіць MediaInfo звалка тут',
- 'meta-desc' => 'Спампаваць: Назва на максімальнай хуткасці',
- 'moderation' => 'умеранасць',
- 'movies' => 'кіно',
- 'mvp' => 'MVP',
- 'my-active-torrents' => 'Мае Актыўныя торэнты',
- 'name' => 'імя',
- 'no-bookmarks' => 'Там няма закладак знойдзена.',
- 'no-discounts' => 'У цяперашні час няма ні адной зніжкі',
- 'no-meta' => 'Няма метададзеных знойдзена',
- 'no-privileges' => 'Вы не можаце спампаваць гэты файл - калі ласка, праверце ніжэй для атрымання дадатковай інфармацыі',
- 'no-privileges-desc' => 'Калі ласка, вырашыце няўдалыя вынікі вышэй для кнопкі загрузкі зявіцца',
- 'not-completed' => 'Пачатак працы Загрузка Але не завершаная',
- 'not-downloaded' => 'Не запампоўваць',
- 'old-torrent' => 'стары торэнт',
- 'optional' => 'апцыянальны',
- 'original-output' => 'Паказаць / схаваць арыгінальны выхад',
- 'participant' => 'удзельнік',
- 'passed' => 'залік',
- 'peers' => 'равеснікі',
- 'pending' => 'у чаканні',
- 'personal-freeleech' => 'асабісты Freeleech',
- 'poster' => 'плакат',
- 'poster-view' => 'выгляд Poster',
- 'posters' => 'плакаты',
- 'prewarn' => 'Prewarned?',
- 'progress' => 'прагрэс',
- 'quick-comment' => 'хуткі каментар',
- 'quick-tip' => 'Сумы Хуткі водгук',
- 'rated' => 'намінальны',
- 'rating' => 'рэйтынг',
- 'ready' => 'Гэты файл даступны для загрузкі',
- 'rejected' => 'адхілена',
- 'released' => 'выпушчаны',
- 'remaining' => 'астатняй',
- 'request-reseed' => 'запыт Reseed',
- 'requires-reseed' => 'патрабуецца Reseed',
- 'resurrections' => 'ўваскрасення',
- 'revoke' => 'адклікаць',
- 'rss' => 'RSS',
- 'runtime' => 'час выканання',
- 'satisfied_in' => 'задаволены у',
- 'say-thanks' => 'Калі ласка , ня забудзьцеся сказаць дзякуй і насення да таго часу , як вы можаце',
- 'sd-content' => 'ўтрыманне SD',
- 'search' => 'пошук',
- 'seed-time' => 'час Seed',
- 'seeder' => 'сеялка',
- 'seeders' => 'сеялка',
- 'seeding' => 'засеивание',
- 'seedsize' => 'Seedsize',
- 'seedtime' => 'пасяўной сезон',
- 'short-completed' => 'З',
- 'short-leechs' => 'L',
- 'short-seeds' => 'S',
- 'show-files' => 'паказаць файлы',
- 'similar' => 'падобныя торэнты',
- 'size' => 'памер',
- 'special' => 'спецыяльныя',
- 'special-freeleech' => 'спецыяльныя Freeleech',
- 'started' => 'Пачатак працы',
- 'status' => 'статус',
- 'statistics' => 'статыстыка',
- 'stats' => 'статыстыка',
- 'sticky' => 'ліпкі',
- 'stream-optimized' => 'паток аптымізаваны',
- 'subtitle' => 'падзагаловак',
- 'team-player' => 'камандны гулец',
- 'thank' => 'дзякуй',
- 'thanked' => 'падзякавалі',
- 'thanks' => 'дзякуй',
- 'thanks-given' => 'дзякуючы улічваючы',
- 'times' => 'раз',
- 'tip-jar' => 'савет банка',
- 'title' => 'тытульны',
- 'titles' => 'тытулы',
- 'top-completed' => 'выкананыя',
- 'top-dead' => 'верхняя мёртвая',
- 'top-dying' => 'лепшае паміранне',
- 'top-leeched' => 'топ прысмактаўся',
- 'top-seeded' => 'лепшыя адабраны',
- 'torrent' => 'паток',
- 'torrent-request' => 'торэнт Запыт',
- 'torrent-tips' => 'Усяго: агульная BON была зачышчана ад карыстальніка, з якіх: карыстальніка знаходзяцца ад вас',
- 'torrent-tips-desc' => 'Гэта будзе вылічана з вашых даступных бонусных ачкоў',
- 'torrents' => 'Torrents',
- 'trailer' => 'паглядзець трэйлер',
- 'type' => 'тып',
- 'types' => 'тыпы',
- 'unbookmark' => 'Unbookmark',
- 'unsatisfieds' => 'Unsatisfieds',
- 'unsticky' => 'Unsticky',
- 'updated' => 'абноўлены',
- 'updated_at' => 'абноўлена',
- 'uploaded' => 'загружана',
- 'uploaded-by' => 'загружана',
- 'uploader' => 'загрузнік',
- 'use-fl-token' => 'Выкарыстоўвайце Freeleech токенаў',
- 'video' => 'відэа',
- 'view-more' => 'паказаць яшчэ',
- 'view-trailer' => 'паглядзець трэйлер',
- 'votes' => 'галасоў',
+ 'grouping-results' => 'групоўка вынікаў',
+ 'groupings-view' => 'групоўкі Прагляд',
+ 'have-completed' => 'завершаны',
+ 'have-downloaded' => 'загружаны',
+ 'have-not-completed' => 'не завершана',
+ 'have-not-downloaded' => 'Не запампоўваць',
+ 'health' => 'здароўе',
+ 'history' => 'гісторыя',
+ 'hitrun' => 'H&R?',
+ 'hit-and-runs' => 'Хіт і Run адлічвае',
+ 'immune' => 'Імунная?',
+ 'info' => 'інфармацыя',
+ 'internal' => 'ўнутраны',
+ 'internal-release' => 'унутраны рэліз',
+ 'last-seed-activity' => 'Апошняя актыўнасць насення',
+ 'last-seeder' => 'Вы апошняя астатняя Сеялка! (Было загружана па меншай меры 3 разы)',
+ 'last-update' => 'Апошняе абнаўленне',
+ 'leave-tip' => 'пакінуць водгук',
+ 'leecher' => 'Leecher',
+ 'leechers' => 'Личеры',
+ 'leeching' => 'пампуе',
+ 'left' => 'злева',
+ 'legendary-seeder' => 'легендарная сеялка',
+ 'legendary-torrent' => 'легендарны торэнт',
+ 'list' => 'спіс',
+ 'me' => 'мне',
+ 'media-info' => 'MediaInfo',
+ 'media-info-parser' => 'MediaInfo Parser',
+ 'media-info-paste' => 'Уставіць MediaInfo звалка тут',
+ 'meta-desc' => 'Спампаваць: Назва на максімальнай хуткасці',
+ 'moderation' => 'умеранасць',
+ 'movies' => 'кіно',
+ 'mvp' => 'MVP',
+ 'my-active-torrents' => 'Мае Актыўныя торэнты',
+ 'name' => 'імя',
+ 'no-bookmarks' => 'Там няма закладак знойдзена.',
+ 'no-discounts' => 'У цяперашні час няма ні адной зніжкі',
+ 'no-meta' => 'Няма метададзеных знойдзена',
+ 'no-privileges' => 'Вы не можаце спампаваць гэты файл - калі ласка, праверце ніжэй для атрымання дадатковай інфармацыі',
+ 'no-privileges-desc' => 'Калі ласка, вырашыце няўдалыя вынікі вышэй для кнопкі загрузкі зявіцца',
+ 'not-completed' => 'Пачатак працы Загрузка Але не завершаная',
+ 'not-downloaded' => 'Не запампоўваць',
+ 'old-torrent' => 'стары торэнт',
+ 'optional' => 'апцыянальны',
+ 'original-output' => 'Паказаць / схаваць арыгінальны выхад',
+ 'participant' => 'удзельнік',
+ 'passed' => 'залік',
+ 'peers' => 'равеснікі',
+ 'pending' => 'у чаканні',
+ 'personal-freeleech' => 'асабісты Freeleech',
+ 'poster' => 'плакат',
+ 'poster-view' => 'выгляд Poster',
+ 'posters' => 'плакаты',
+ 'prewarn' => 'Prewarned?',
+ 'progress' => 'прагрэс',
+ 'quick-comment' => 'хуткі каментар',
+ 'quick-tip' => 'Сумы Хуткі водгук',
+ 'rated' => 'намінальны',
+ 'rating' => 'рэйтынг',
+ 'ready' => 'Гэты файл даступны для загрузкі',
+ 'rejected' => 'адхілена',
+ 'released' => 'выпушчаны',
+ 'remaining' => 'астатняй',
+ 'request-reseed' => 'запыт Reseed',
+ 'requires-reseed' => 'патрабуецца Reseed',
+ 'resurrections' => 'ўваскрасення',
+ 'revoke' => 'адклікаць',
+ 'rss' => 'RSS',
+ 'runtime' => 'час выканання',
+ 'satisfied_in' => 'задаволены у',
+ 'say-thanks' => 'Калі ласка , ня забудзьцеся сказаць дзякуй і насення да таго часу , як вы можаце',
+ 'sd-content' => 'ўтрыманне SD',
+ 'search' => 'пошук',
+ 'seed-time' => 'час Seed',
+ 'seeder' => 'сеялка',
+ 'seeders' => 'сеялка',
+ 'seeding' => 'засеивание',
+ 'seedsize' => 'Seedsize',
+ 'seedtime' => 'пасяўной сезон',
+ 'short-completed' => 'З',
+ 'short-leechs' => 'L',
+ 'short-seeds' => 'S',
+ 'show-files' => 'паказаць файлы',
+ 'similar' => 'падобныя торэнты',
+ 'size' => 'памер',
+ 'special' => 'спецыяльныя',
+ 'special-freeleech' => 'спецыяльныя Freeleech',
+ 'started' => 'Пачатак працы',
+ 'status' => 'статус',
+ 'statistics' => 'статыстыка',
+ 'stats' => 'статыстыка',
+ 'sticky' => 'ліпкі',
+ 'stream-optimized' => 'паток аптымізаваны',
+ 'subtitle' => 'падзагаловак',
+ 'team-player' => 'камандны гулец',
+ 'thank' => 'дзякуй',
+ 'thanked' => 'падзякавалі',
+ 'thanks' => 'дзякуй',
+ 'thanks-given' => 'дзякуючы улічваючы',
+ 'times' => 'раз',
+ 'tip-jar' => 'савет банка',
+ 'title' => 'тытульны',
+ 'titles' => 'тытулы',
+ 'top-completed' => 'выкананыя',
+ 'top-dead' => 'верхняя мёртвая',
+ 'top-dying' => 'лепшае паміранне',
+ 'top-leeched' => 'топ прысмактаўся',
+ 'top-seeded' => 'лепшыя адабраны',
+ 'torrent' => 'паток',
+ 'torrent-request' => 'торэнт Запыт',
+ 'torrent-tips' => 'Усяго: агульная BON была зачышчана ад карыстальніка, з якіх: карыстальніка знаходзяцца ад вас',
+ 'torrent-tips-desc' => 'Гэта будзе вылічана з вашых даступных бонусных ачкоў',
+ 'torrents' => 'Torrents',
+ 'trailer' => 'паглядзець трэйлер',
+ 'type' => 'тып',
+ 'types' => 'тыпы',
+ 'unbookmark' => 'Unbookmark',
+ 'unsatisfieds' => 'Unsatisfieds',
+ 'unsticky' => 'Unsticky',
+ 'updated' => 'абноўлены',
+ 'updated_at' => 'абноўлена',
+ 'uploaded' => 'загружана',
+ 'uploaded-by' => 'загружана',
+ 'uploader' => 'загрузнік',
+ 'use-fl-token' => 'Выкарыстоўвайце Freeleech токенаў',
+ 'video' => 'відэа',
+ 'view-more' => 'паказаць яшчэ',
+ 'view-trailer' => 'паглядзець трэйлер',
+ 'votes' => 'галасоў',
];
diff --git a/lang/be/user.php b/lang/be/user.php
index 34ba63448..e7a06def8 100644
--- a/lang/be/user.php
+++ b/lang/be/user.php
@@ -12,316 +12,316 @@
*/
return [
- 'about' => 'аб',
- 'about-me' => 'Пра мяне',
- 'accepted-at' => 'прынята на',
- 'accepted-by' => 'прынята',
- 'account-notification' => 'Налады ўліковага запісу Апавяшчэнні',
- 'account-notification-follow' => 'Атрыманне апавяшчэння, калі карыстальнік варта за кошт',
- 'account-notification-unfollow' => 'Атрыманне апавяшчэння, калі карыстальнік unfollows свайго акаўнта',
- 'account-notification-help' => 'Кантроль, якія адпраўляюцца апавяшчэння адносна Вашага рахунку. Гэтыя налады адмяняюцца , калі вы не дазваляеце якія - небудзь групы для адпраўкі апавяшчэнняў адносна вашага ўліковага запісу або калі адключыць апавяшчэння',
- 'account-settings' => 'Налады ўліковага запісу',
- 'achievement-privacy' => 'налады дасягненняў',
- 'achievement-privacy-list' => 'Дазволіць карыстальнікам праглядаць спіс вашых дасягненняў',
- 'achievement-help' => 'Кантраляваць абмен канкрэтнай інфармацыі, звязанай з дасягненнем з гуртамі, якім дазволены доступ да вашага профілю. Гэтыя налады адмяняюцца , калі не дазваляюць якія - небудзь групы , каб атрымаць доступ да сваіх дасягненняў або калі вы Go Private',
- 'achievements' => 'дасягненні',
- 'active' => 'актыўны',
- 'active-table' => 'Мая актыўная табліца',
- 'active-torrents' => 'актыўныя торэнты',
- 'active-warning' => 'актыўны папярэджанне',
- 'active-warnings' => 'актыўныя папярэджання',
- 'add-seedbox' => 'дадаць Seedbox',
- 'all-torrents' => 'усе торэнты',
- 'article-comments' => 'Артыкул Каментары Зроблены',
- 'avatar' => 'аватар',
- 'avg-seedtime' => 'Сярэдняя сеяння',
- 'badges' => 'значкі',
- 'ban' => 'Ban Карыстальнік',
- 'ban-log' => 'Ban Уваход',
- 'become-hidden' => 'стаць Hidden',
- 'become-visible' => 'стаць Бачны',
- 'bon' => 'BON',
- 'bon-notification' => 'Налады апавяшчэнняў BON',
- 'bon-notification-gift' => 'Атрыманне апавяшчэння, калі карыстальнік падарункі вы BON',
- 'bon-notification-help' => 'Кантроль якія адпраўляюцца апавяшчэння адносна BON здзелкі. Гэтыя налады адмяняюцца , калі вы не дазваляеце якія - небудзь групы для адпраўкі апавяшчэнняў , якія тычацца BON або калі адключыць апавяшчэння',
- 'bookmarks' => 'закладкі',
- 'bounty-given' => 'Bounty Улічваючы',
- 'bounty-received' => 'Bounty Паступіла',
- 'can-chat' => 'можа чат',
- 'can-comment' => 'можа Каментарыі',
- 'can-download' => 'можна спампаваць',
- 'can-invite' => 'можа Запрасіць',
- 'can-request' => 'можа запыт',
- 'can-upload' => 'можна дадаць',
- 'certified-banker' => 'сертыфікаваны Banker',
- 'certified-banker-desc' => 'Мае 50000 або больш бона ў банку',
- 'certified-downloader' => 'сертыфікаваны Downloader',
- 'certified-downloader-desc' => 'Запампавана 100 або больш торэнтаў!',
- 'certified-seeder' => 'сертыфікаваная Сеялка',
- 'certified-seeder-desc' => 'Пасеў 150 або больш торэнтаў!',
- 'change-email' => 'Змяніць адрас электроннай пошты',
- 'change-email-help' => 'Вам прыйдзецца паўторна пацвердзіць свой рахунак, пасля таго, як вы зменіце сваю электронную пошту',
- 'change-password' => 'змена пароля',
- 'change-password-help' => 'Вы павінны ўвайсці ў сістэму яшчэ раз, пасля таго, як вы зменіце пароль',
- 'client-ip-address' => 'IP-адрас кліента',
- 'code' => 'код',
- 'comments' => 'каментары',
- 'created-on' => 'створаны',
- 'credited-download' => 'прызнана спампаваць',
- 'credited-upload' => 'прызнана загрузкі',
- 'current-password' => 'бягучы пароль',
- 'custom-title' => 'карыстацкі загаловак',
- 'delete' => 'выдаліць карыстальніка',
- 'disable-notifications' => 'адключыць апавяшчэння',
- 'disclaimer' => 'адмова',
- 'disclaimer-info' => 'Мы па змаўчанні не рэгістраваць карыстальнікаў, IP-адрасы, як і большасць трэкераў. Дадаючы свой seedbox IP ніжэй, чакаюцца, што вы ведаеце, што ваш IP-адрас, пералічаны ніжэй, у цяперашні час захоўваецца ў нашай базе дадзеных, калі не выдаляць запісу.',
- 'disclaimer-info-bordered' => 'Seedbox IP-адрас дададзены затым запусціць высакахуткасны торэнт бірку на торэнтах, пасеяных з IP-адрасоў, пералічаных ніжэй',
- 'download-bon' => 'Спампаваць выдаленыя з BON крамы',
- 'download-recorded' => 'запісаны Спампаваць',
- 'download-true' => 'Праўда Спампаваць',
- 'downloads' => 'загрузкі',
- 'edit' => 'змяніць карыстальніка',
- 'edit-profile' => 'Рэдагаваць профіль',
- 'enable-notifications' => 'ўключыць апавяшчэння',
- 'expired' => 'мінуў',
- 'expires-on' => 'Тэрмін дзеяння заканчваецца',
- 'extra' => 'дадатковы',
- 'filled-request' => 'Запоўненыя Карыстальнікі просіць',
- 'follow' => 'прытрымлівацца',
- 'follower-privacy' => 'налады Прахадныя',
- 'follower-privacy-list' => 'Дазволіць карыстальнікам праглядаць спіс вашых паслядоўнікаў',
- 'follower-help' => 'Кантраляваць абмен канкрэтнай інфармацыі, звязанай з паўторніка з гуртамі, якім дазволены доступ да вашага профілю. Гэтыя налады адмяняюцца , калі не дазваляюць якія - небудзь групы , каб атрымаць доступ да сваім паслядоўнікам , або калі вы Go Private',
- 'followers' => 'чытаюць',
- 'following-notification' => 'Кругі Настройка апавяшчэнняў карыстальніка',
- 'following-notification-upload' => 'Атрыманне апавяшчэння, калі карыстач загружае з наступным торэнта',
- 'following-notification-help' => 'Кантроль, якія адпраўляюцца апавяшчэнні, якія тычацца рушылі ўслед дзеянні карыстальнікаў сайта. Гэтыя налады адмяняюцца , калі вы не дазваляеце якія - небудзь групы для адпраўкі апавяшчэнняў адносна наступных карыстальнікаў або адключыць апавяшчэння',
- 'formats-are-supported' => ': Падтрымліваюцца фарматы',
- 'forum-notification' => 'Налады апавяшчэнняў Форуму',
- 'forum-notification-topic' => 'Атрыманне апавяшчэння, калі тэма, якую вы пачалі атрымлівае новую пасаду',
- 'forum-notification-help' => 'Кантроль якія адпраўляюцца апавяшчэння аб дзейнасці форуму. Гэтыя налады адмяняюцца , калі вы не дазваляеце якія - небудзь групы для адпраўкі апавяшчэнняў аб дзейнасці форума або калі адключыць апавяшчэння',
- 'forum-privacy' => 'налады форуму',
- 'forum-privacy-post' => 'Дазволіць карыстальнікам праглядаць спіс паведамленняў на форуме, што вы выклалі',
- 'forum-privacy-topic' => 'Дазволіць карыстальнікам праглядаць спіс тэм форуму, што вы пачалі',
- 'forum-help' => 'Кантроль абмену канкрэтных звязаных статыстыкі форуму і інфармацыі з гуртамі, якім дазволены доступ да вашага профілю. Гэтыя налады адмяняюцца , калі не дазваляюць якія - небудзь групы , каб атрымаць доступ да статыстыкі і інфармацыі , звязаных з форума або калі вы Go Private',
- 'forum-signature' => 'Форум Подпіс',
- 'forums' => 'форумы',
- 'general' => 'агульны',
- 'general-settings' => 'Агульныя налады',
- 'gift-given' => 'падарунак Улічваючы',
- 'gift-received' => 'атрыманы падарунак',
- 'go-public' => 'Go Public',
- 'go-private' => 'перайсці Private',
- 'history' => 'гісторыя',
- 'history-table' => 'Мая гісторыя Табліца',
- 'hit-n-runs' => 'Хіт і Запускаецца',
- 'hit-n-runs-count' => 'Хіт і Run Count (All Time)',
- 'hit-n-runs-history' => 'Торэнт Хіт і запуск Гісторыя',
- 'image' => 'малюнак',
- 'important' => 'важна',
- 'important-info' => 'важная інфармацыя',
- 'information' => 'інфармацыя',
- 'invite-friend' => 'Запрасіце свайго сябра (E-mail + Абавязкова паведамленне)',
- 'invite-tree' => 'запрасіць дрэва',
- 'invites' => 'прапануе',
- 'invites-banned' => 'Памылка: Вашыя правы Запрасіць былі адключаныя',
- 'invites-banned-desc' => 'Калі вы адчуваеце, што гэта памылка, калі ласка, звяжыцеся з супрацоўнікамі!',
- 'invites-count' => 'У вас ёсць: COUNT Запрасіць лексемы',
- 'invites-disabled' => 'Увага: запрашэння адключаныя з-за адкрытай рэгістрацыю!',
- 'invites-disabled-desc' => 'Калі ласка, зайдзіце ў бліжэйшы час!',
- 'invites-rules' => ' Толькі запрасіць людзей, якіх вы ведаеце і давер. Вы будзеце несці асабістую адказнасць за тых, каго вы запросіце. Dont запрасіць сябе, мы правяраем кожны запрошанага карыстальніка. Dont гандлю або прадаць запрашэння. Калі чалавек, якога вы запрасілі злоўлены жульніцтва, гандлёвы кошт або продажу / гандлёвыя инвайт, вы будзеце папярэджаны. ',
- 'invites-send' => 'запрашае Адаслаць',
- 'last-login' => 'Апошні Увайсці',
- 'locked' => 'зачынены',
- 'locked-achievements' => 'блакаваныя дасягненні',
- 'member-since' => 'Удзельнік з',
- 'members-desc' => 'Спіс карыстальнікаў зарэгістравана: назву з усімі групамі. Знайдзіце карыстач у цяперашні час.',
- 'mention-notification' => '@Mention Налады апавяшчэнняў',
+ 'about' => 'аб',
+ 'about-me' => 'Пра мяне',
+ 'accepted-at' => 'прынята на',
+ 'accepted-by' => 'прынята',
+ 'account-notification' => 'Налады ўліковага запісу Апавяшчэнні',
+ 'account-notification-follow' => 'Атрыманне апавяшчэння, калі карыстальнік варта за кошт',
+ 'account-notification-unfollow' => 'Атрыманне апавяшчэння, калі карыстальнік unfollows свайго акаўнта',
+ 'account-notification-help' => 'Кантроль, якія адпраўляюцца апавяшчэння адносна Вашага рахунку. Гэтыя налады адмяняюцца , калі вы не дазваляеце якія - небудзь групы для адпраўкі апавяшчэнняў адносна вашага ўліковага запісу або калі адключыць апавяшчэння',
+ 'account-settings' => 'Налады ўліковага запісу',
+ 'achievement-privacy' => 'налады дасягненняў',
+ 'achievement-privacy-list' => 'Дазволіць карыстальнікам праглядаць спіс вашых дасягненняў',
+ 'achievement-help' => 'Кантраляваць абмен канкрэтнай інфармацыі, звязанай з дасягненнем з гуртамі, якім дазволены доступ да вашага профілю. Гэтыя налады адмяняюцца , калі не дазваляюць якія - небудзь групы , каб атрымаць доступ да сваіх дасягненняў або калі вы Go Private',
+ 'achievements' => 'дасягненні',
+ 'active' => 'актыўны',
+ 'active-table' => 'Мая актыўная табліца',
+ 'active-torrents' => 'актыўныя торэнты',
+ 'active-warning' => 'актыўны папярэджанне',
+ 'active-warnings' => 'актыўныя папярэджання',
+ 'add-seedbox' => 'дадаць Seedbox',
+ 'all-torrents' => 'усе торэнты',
+ 'article-comments' => 'Артыкул Каментары Зроблены',
+ 'avatar' => 'аватар',
+ 'avg-seedtime' => 'Сярэдняя сеяння',
+ 'badges' => 'значкі',
+ 'ban' => 'Ban Карыстальнік',
+ 'ban-log' => 'Ban Уваход',
+ 'become-hidden' => 'стаць Hidden',
+ 'become-visible' => 'стаць Бачны',
+ 'bon' => 'BON',
+ 'bon-notification' => 'Налады апавяшчэнняў BON',
+ 'bon-notification-gift' => 'Атрыманне апавяшчэння, калі карыстальнік падарункі вы BON',
+ 'bon-notification-help' => 'Кантроль якія адпраўляюцца апавяшчэння адносна BON здзелкі. Гэтыя налады адмяняюцца , калі вы не дазваляеце якія - небудзь групы для адпраўкі апавяшчэнняў , якія тычацца BON або калі адключыць апавяшчэння',
+ 'bookmarks' => 'закладкі',
+ 'bounty-given' => 'Bounty Улічваючы',
+ 'bounty-received' => 'Bounty Паступіла',
+ 'can-chat' => 'можа чат',
+ 'can-comment' => 'можа Каментарыі',
+ 'can-download' => 'можна спампаваць',
+ 'can-invite' => 'можа Запрасіць',
+ 'can-request' => 'можа запыт',
+ 'can-upload' => 'можна дадаць',
+ 'certified-banker' => 'сертыфікаваны Banker',
+ 'certified-banker-desc' => 'Мае 50000 або больш бона ў банку',
+ 'certified-downloader' => 'сертыфікаваны Downloader',
+ 'certified-downloader-desc' => 'Запампавана 100 або больш торэнтаў!',
+ 'certified-seeder' => 'сертыфікаваная Сеялка',
+ 'certified-seeder-desc' => 'Пасеў 150 або больш торэнтаў!',
+ 'change-email' => 'Змяніць адрас электроннай пошты',
+ 'change-email-help' => 'Вам прыйдзецца паўторна пацвердзіць свой рахунак, пасля таго, як вы зменіце сваю электронную пошту',
+ 'change-password' => 'змена пароля',
+ 'change-password-help' => 'Вы павінны ўвайсці ў сістэму яшчэ раз, пасля таго, як вы зменіце пароль',
+ 'client-ip-address' => 'IP-адрас кліента',
+ 'code' => 'код',
+ 'comments' => 'каментары',
+ 'created-on' => 'створаны',
+ 'credited-download' => 'прызнана спампаваць',
+ 'credited-upload' => 'прызнана загрузкі',
+ 'current-password' => 'бягучы пароль',
+ 'custom-title' => 'карыстацкі загаловак',
+ 'delete' => 'выдаліць карыстальніка',
+ 'disable-notifications' => 'адключыць апавяшчэння',
+ 'disclaimer' => 'адмова',
+ 'disclaimer-info' => 'Мы па змаўчанні не рэгістраваць карыстальнікаў, IP-адрасы, як і большасць трэкераў. Дадаючы свой seedbox IP ніжэй, чакаюцца, што вы ведаеце, што ваш IP-адрас, пералічаны ніжэй, у цяперашні час захоўваецца ў нашай базе дадзеных, калі не выдаляць запісу.',
+ 'disclaimer-info-bordered' => 'Seedbox IP-адрас дададзены затым запусціць высакахуткасны торэнт бірку на торэнтах, пасеяных з IP-адрасоў, пералічаных ніжэй',
+ 'download-bon' => 'Спампаваць выдаленыя з BON крамы',
+ 'download-recorded' => 'запісаны Спампаваць',
+ 'download-true' => 'Праўда Спампаваць',
+ 'downloads' => 'загрузкі',
+ 'edit' => 'змяніць карыстальніка',
+ 'edit-profile' => 'Рэдагаваць профіль',
+ 'enable-notifications' => 'ўключыць апавяшчэння',
+ 'expired' => 'мінуў',
+ 'expires-on' => 'Тэрмін дзеяння заканчваецца',
+ 'extra' => 'дадатковы',
+ 'filled-request' => 'Запоўненыя Карыстальнікі просіць',
+ 'follow' => 'прытрымлівацца',
+ 'follower-privacy' => 'налады Прахадныя',
+ 'follower-privacy-list' => 'Дазволіць карыстальнікам праглядаць спіс вашых паслядоўнікаў',
+ 'follower-help' => 'Кантраляваць абмен канкрэтнай інфармацыі, звязанай з паўторніка з гуртамі, якім дазволены доступ да вашага профілю. Гэтыя налады адмяняюцца , калі не дазваляюць якія - небудзь групы , каб атрымаць доступ да сваім паслядоўнікам , або калі вы Go Private',
+ 'followers' => 'чытаюць',
+ 'following-notification' => 'Кругі Настройка апавяшчэнняў карыстальніка',
+ 'following-notification-upload' => 'Атрыманне апавяшчэння, калі карыстач загружае з наступным торэнта',
+ 'following-notification-help' => 'Кантроль, якія адпраўляюцца апавяшчэнні, якія тычацца рушылі ўслед дзеянні карыстальнікаў сайта. Гэтыя налады адмяняюцца , калі вы не дазваляеце якія - небудзь групы для адпраўкі апавяшчэнняў адносна наступных карыстальнікаў або адключыць апавяшчэння',
+ 'formats-are-supported' => ': Падтрымліваюцца фарматы',
+ 'forum-notification' => 'Налады апавяшчэнняў Форуму',
+ 'forum-notification-topic' => 'Атрыманне апавяшчэння, калі тэма, якую вы пачалі атрымлівае новую пасаду',
+ 'forum-notification-help' => 'Кантроль якія адпраўляюцца апавяшчэння аб дзейнасці форуму. Гэтыя налады адмяняюцца , калі вы не дазваляеце якія - небудзь групы для адпраўкі апавяшчэнняў аб дзейнасці форума або калі адключыць апавяшчэння',
+ 'forum-privacy' => 'налады форуму',
+ 'forum-privacy-post' => 'Дазволіць карыстальнікам праглядаць спіс паведамленняў на форуме, што вы выклалі',
+ 'forum-privacy-topic' => 'Дазволіць карыстальнікам праглядаць спіс тэм форуму, што вы пачалі',
+ 'forum-help' => 'Кантроль абмену канкрэтных звязаных статыстыкі форуму і інфармацыі з гуртамі, якім дазволены доступ да вашага профілю. Гэтыя налады адмяняюцца , калі не дазваляюць якія - небудзь групы , каб атрымаць доступ да статыстыкі і інфармацыі , звязаных з форума або калі вы Go Private',
+ 'forum-signature' => 'Форум Подпіс',
+ 'forums' => 'форумы',
+ 'general' => 'агульны',
+ 'general-settings' => 'Агульныя налады',
+ 'gift-given' => 'падарунак Улічваючы',
+ 'gift-received' => 'атрыманы падарунак',
+ 'go-public' => 'Go Public',
+ 'go-private' => 'перайсці Private',
+ 'history' => 'гісторыя',
+ 'history-table' => 'Мая гісторыя Табліца',
+ 'hit-n-runs' => 'Хіт і Запускаецца',
+ 'hit-n-runs-count' => 'Хіт і Run Count (All Time)',
+ 'hit-n-runs-history' => 'Торэнт Хіт і запуск Гісторыя',
+ 'image' => 'малюнак',
+ 'important' => 'важна',
+ 'important-info' => 'важная інфармацыя',
+ 'information' => 'інфармацыя',
+ 'invite-friend' => 'Запрасіце свайго сябра (E-mail + Абавязкова паведамленне)',
+ 'invite-tree' => 'запрасіць дрэва',
+ 'invites' => 'прапануе',
+ 'invites-banned' => 'Памылка: Вашыя правы Запрасіць былі адключаныя',
+ 'invites-banned-desc' => 'Калі вы адчуваеце, што гэта памылка, калі ласка, звяжыцеся з супрацоўнікамі!',
+ 'invites-count' => 'У вас ёсць: COUNT Запрасіць лексемы',
+ 'invites-disabled' => 'Увага: запрашэння адключаныя з-за адкрытай рэгістрацыю!',
+ 'invites-disabled-desc' => 'Калі ласка, зайдзіце ў бліжэйшы час!',
+ 'invites-rules' => ' Толькі запрасіць людзей, якіх вы ведаеце і давер. Вы будзеце несці асабістую адказнасць за тых, каго вы запросіце. Dont запрасіць сябе, мы правяраем кожны запрошанага карыстальніка. Dont гандлю або прадаць запрашэння. Калі чалавек, якога вы запрасілі злоўлены жульніцтва, гандлёвы кошт або продажу / гандлёвыя инвайт, вы будзеце папярэджаны. ',
+ 'invites-send' => 'запрашае Адаслаць',
+ 'last-login' => 'Апошні Увайсці',
+ 'locked' => 'зачынены',
+ 'locked-achievements' => 'блакаваныя дасягненні',
+ 'member-since' => 'Удзельнік з',
+ 'members-desc' => 'Спіс карыстальнікаў зарэгістравана: назву з усімі групамі. Знайдзіце карыстач у цяперашні час.',
+ 'mention-notification' => '@Mention Налады апавяшчэнняў',
'mention-notification-article-comment' => 'Атрыманне апавяшчэння, калі вы @mentioned ў артыкуле каментарый',
'mention-notification-torrent-comment' => 'Атрыманне апавяшчэння, калі вы @mentioned ў торренте каментары',
'mention-notification-request-comment' => 'Атрыманне апавяшчэння, калі вы @mentioned ў запыце каментар',
- 'mention-notification-forum-post' => 'Атрыманне апавяшчэння, калі вы @mentioned ў паведамленні на форуме',
- 'mention-notification-help' => 'Кантроль, які адпраўляюцца паведамлення, калі карыстальнік @mentions вы. Гэтыя налады адмяняюцца , калі вы не дазваляеце якія - небудзь групы для адпраўкі апавяшчэнняў , калі карыстальнік @mentions вы або калі вы Адключыць апавяшчэння',
- 'moderated-by' => 'Вядучы: мод ON',
- 'my-bonus-points' => 'Мае Бонусныя ачкі',
- 'my-bookmarks' => 'Мае закладкі',
- 'my-fl-tokens' => 'Мае FL жэтонаў',
- 'my-general-settings' => 'Мае Агульныя налады',
- 'my-notification' => 'маё Апавяшчэнне',
- 'my-notification-settings' => 'Мае апавяшчэння Налады',
- 'my-privacy' => 'мая Канфідэнцыяльнасць',
- 'my-privacy-settings' => 'Мае налады прыватнасці',
- 'my-profile' => 'мой профіль',
- 'my-requested' => 'Мае Запытаны',
- 'my-security' => 'My Security',
- 'my-security-settings' => 'Мае налады бяспекі',
- 'my-seedboxes' => 'Мае Seedboxes',
- 'my-settings' => 'мае налады',
- 'my-wishlist' => 'Мой ліст пажаданняў',
- 'no-logs' => 'ня АРЕ не запрашаць часопісаў у базу дадзеных для гэтага карыстальніка!',
- 'no-seedboxes' => 'Няма seedboxes 😔',
- 'not-authorized' => 'Вы не аўтарызаваны для прагляду гэтай старонкі. Гэты ўдзельнік аддае перавагу быць схаваныя як ніндзя!',
- 'note' => 'Нататка',
- 'notification' => 'апавяшчэнне',
- 'notification-settings' => 'налады апавяшчэнняў',
- 'notification-from-account' => 'Атрымліваць паведамлення рахункаў, з',
- 'notification-from-account-help' => 'Вы будзеце атрымліваць толькі рахункі паведамлення ад сістэмы, супрацоўнікаў і наступныя групы. Гэтыя налады адмяняюцца , калі адключыць апавяшчэння',
- 'notification-from-bon' => 'Атрымліваць паведамлення BON Ад',
- 'notification-from-bon-help' => 'Вы будзеце атрымліваць толькі BON паведамлення ад сістэмы, супрацоўнікаў і наступныя групы. Гэтыя налады адмяняюцца , калі адключыць апавяшчэння',
- 'notification-from-following' => 'Атрымліваць паведамлення карыстальніка рухаўся ад',
- 'notification-from-following-help' => 'Вы будзеце атрымліваць толькі апавяшчэння карыстальнікаў вынікала з наступных груп. Гэтыя налады адмяняюцца , калі адключыць апавяшчэння',
- 'notification-from-forum' => 'Атрымліваць паведамлення Форуму',
- 'notification-from-forum-help' => 'Вы будзеце атрымліваць апавяшчэнні на форуме ад сістэмы, супрацоўнікаў і наступныя групы. Гэтыя налады адмяняюцца , калі адключыць апавяшчэння',
- 'notification-from-subscription' => 'Атрымліваць паведамлення ад падпіскі',
- 'notification-from-subscription-help' => 'Вы будзеце атрымліваць апавяшчэнні на форуме ад сістэмы, супрацоўнікаў і наступныя групы. Гэтыя налады адмяняюцца , калі адключыць апавяшчэння',
- 'notification-from-torrent' => 'Атрымліваць паведамлення на торэнт',
- 'notification-from-torrent-help' => 'Вы будзеце атрымліваць толькі струменевыя паведамлення ад сістэмы, супрацоўнікаў і наступныя групы. Гэтыя налады адмяняюцца , калі адключыць апавяшчэння',
- 'notification-from-mention' => 'Атрымліваць паведамлення @Mention Ад',
- 'notification-from-mention-help' => 'Вы будзеце атрымліваць толькі @mention паведамлення ад сістэмы, супрацоўнікаў і наступныя групы. Гэтыя налады адмяняюцца , калі адключыць апавяшчэння',
- 'notification-from-request' => 'Прыём запыту паведамлення ад',
- 'notification-from-request-help' => 'Вы будзеце атрымліваць толькі запыт паведамлення ад сістэмы, супрацоўнікаў і наступныя групы. Гэтыя налады адмяняюцца , калі адключыць апавяшчэння',
- 'notifications' => 'апавяшчэння',
- 'offline' => 'Карыстальнік не на сайце!',
- 'online' => 'Карыстальнік на сайце!',
- 'options' => 'опцыі',
- 'other-help' => 'Кантроль абмену іншымі статыстычнымі дадзенымі і інфармацыяй з гуртамі, якім дазволены доступ да вашага профілю. Гэтыя налады адмяняюцца , калі не дазваляюць якія - небудзь групы , каб атрымаць доступ да іншых статыстычныя дадзеныя і інфармацыю , або калі вы Go Private',
- 'other-privacy' => 'іншыя налады',
- 'other-privacy-online' => 'Дазвольце бачыць Вас карыстальнік ў блоку карыстальнікаў онлайн',
- 'passkey' => 'PID',
- 'passkey-warning' => 'PID, як ваш пароль, вы павінны трымаць яго ў бяспецы!',
- 'pending-achievements' => 'да дасягнення',
- 'per-torrent' => 'Per Torrent',
- 'posts' => 'паведамленняў',
- 'posts-posted' => 'Паведамленні форуму Паведамленне',
- 'privacy' => 'сакрэтнасць',
- 'privacy-settings' => 'Налады прыватнасці',
- 'private-info' => 'прыватная інфармацыя',
- 'private-forum-profile' => 'Увага: Гэтая тэма Карыстальнікаў і паведамленне Гісторыя функцыянуе ў PRIVATE!',
- 'private-profile' => 'Увага: Гэты профіль быў усталяваны на прыватныя!',
- 'profile' => 'профіль',
- 'profile-desc' => 'Карыстальнік: Профіль карыстальніка зарэгістраваны: назву',
- 'profile-privacy' => 'налады профілю',
- 'profile-privacy-torrent-count' => 'Падзяліцеся агульная колькасць загрузкі, выгрузкі насення і пяўкі',
- 'profile-privacy-torrent-ratio' => 'Дзяліцеся агульныя загрузкі / выгрузкі дадзеных разам з запісаным суадносінамі',
- 'profile-privacy-torrent-seed' => 'Падзяліцеся агульнае час сяўбы і сярэдняе',
- 'profile-privacy-title' => 'Падзяліцеся вашай асабістай інфармацыі ў загалоўку',
- 'profile-privacy-about' => 'Падзяліцеся нічога пра мяне інфармацыю',
- 'profile-privacy-bon-extra' => 'Дзяліцеся статыстыку BON',
- 'profile-privacy-comment-extra' => 'Дзяліцеся каментар статыстыка',
- 'profile-privacy-forum-extra' => 'Дзяліцеся статыстыку форуму',
- 'profile-privacy-request-extra' => 'Дзяліцеся статыстыку запытаў',
- 'profile-privacy-torrent-extra' => 'Дзяліцеся статыстыку торэнта',
- 'profile-privacy-badge' => 'Падзяліцеся сваімі значкамі заробленых',
- 'profile-privacy-achievement' => 'Падзяліцеся сваімі апошнія дасягненні',
- 'profile-privacy-follower' => 'Дзяліцеся апошнімі паслядоўнікі',
- 'profile-privacy-warning' => 'Дзяліцеся H&R папярэджання',
- 'profile-privacy-help' => 'Кіравання, якія статыстычныя дадзеныя і фрагменты інфармацыі ў вашым профілі. Гэтыя налады адмяняюцца , калі вы не дазваляеце якія - небудзь групы для доступу да профілі або калі вы Go Private',
- 'public-info' => 'грамадская інфармацыя',
- 'recent-achievements' => 'апошнія дасягненні',
- 'recent-followers' => 'апошнія Чытаюць',
- 'registration-date' => 'дата рэгістрацыі',
- 'report' => 'справаздачу',
- 'request-help' => 'Кантраляваць абмен канкрэтных запытаў, якія тычацца статыстычных дадзеных і інфармацыі з гуртамі, якім дазволены доступ да вашага профілю. Гэтыя налады адмяняюцца , калі не дазваляюць якой - альбо гурт , каб атрымаць доступ да запрошваюць звязанаму статыстычных дадзеных і інфармацыі , або калі вы Go Private',
- 'request' => 'запыт',
- 'requested' => 'запытаны',
- 'requests' => 'запыты',
- 'request-comments' => 'Запыт Колькасць каментарыяў',
- 'request-notification' => 'Параметры запыту апавяшчэнняў',
- 'request-notification-bounty' => 'Атрыманне апавяшчэння, калі запытаны паток атрымлівае новую ўзнагароду',
- 'request-notification-comment' => 'Атрыманне апавяшчэння, калі запытаны паток атрымлівае новы каментарый',
- 'request-notification-fill' => 'Атрыманне апавяшчэння, калі запытаны паток запаўняецца',
- 'request-notification-fill-approve' => 'Атрыманне апавяшчэння, калі запытаная заліванне патоку будзе прынятая',
- 'request-notification-fill-reject' => 'Атрыманне апавяшчэння, калі запытаны запоўніць паток адпрэчваецца',
- 'request-notification-claim' => 'Атрыманне апавяшчэння, калі запытаны паток атрымлівае сцвярджаў,',
- 'request-notification-unclaim' => 'Атрыманне апавяшчэння, калі запытаны паток становіцца незапатрабаваным',
- 'request-notification-help' => 'Кантроль якія адпраўляюцца апавяшчэння адносна запыту дзейнасці. Гэтыя налады адмяняюцца , калі вы не дазваляеце якія - небудзь групы для адпраўкі апавяшчэнняў адносна запыту дзейнасці або калі адключыць апавяшчэння',
- 'request-privacy' => 'запыт Налады',
- 'request-privacy-requested' => 'Дазволіць карыстальнікам праглядаць спіс запытаў, якія вы зрабілі',
- 'reset-passkey' => 'Reset Pass Key (PID)',
- 'reset-passkey-help' => 'Вам прыйдзецца паўторна загрузіць / паўторна загрузіць усе актыўныя торэнты, пасля скіду PID',
- 'reset-rss' => 'Скід RSS Key (Рыд)',
- 'reset-rss-help' => 'Вам прыйдзецца паўторна загружаць усе актыўную RSS-каналы, пасля скіду МПОГ',
- 'resurrections' => 'ўваскрасення',
- 'search' => 'Хуткі пошук па імя карыстальніка',
- 'security' => 'бяспекі',
- 'security-settings' => 'налады бяспекі',
- 'seedboxes' => 'Seedboxes',
- 'seeds' => 'насенне',
- 'send-invite' => 'адправіць запрашэнне',
- 'sender' => 'адпраўнік',
- 'settings' => 'налады',
- 'show-passkey' => 'паказаць PID',
- 'staff-noted' => 'Персанал Адзначыў рахункі',
- 'statistics' => 'статыстыка',
- 'subscription-notification' => 'Налады падпіскі апавяшчэнняў',
- 'subscription-notification-forum' => 'Атрыманне апавяшчэння, калі падпісаўся форум атрымлівае новую тэму',
- 'subscription-notification-topic' => 'Атрыманне апавяшчэння, калі падпісаўся тэма атрымлівае новы пост',
- 'subscription-notification-help' => 'Кантроль якія адпраўляюцца апавяшчэння адносна падпіскі. Гэтыя налады адмяняюцца , калі вы не дазваляеце якія - небудзь групы для адпраўкі апавяшчэнняў аб вашых падпісцы або калі адключыць апавяшчэння',
- 'thanks-given' => 'дзякуючы Улічваючы',
- 'thanks-received' => 'падзякавалі',
- 'tips-given' => 'парады Улічваючы',
- 'tips-received' => 'парады Паступіла',
- 'title' => 'тытульны',
- 'top-bankers' => 'лепшыя Банкіры',
- 'top-downloaders-data' => 'Лепшыя загрузнікі (Data)',
- 'top-leechers' => 'лепшыя Личеры',
- 'top-leechers-count' => 'Лепшыя Личеры (COUNT)',
- 'top-seeders' => 'лепшая сеялка',
- 'top-seeders-count' => 'Top сеялка (Count)',
- 'top-seeding-size' => 'Top Пасеў (памер)',
- 'top-seedtime' => 'топ сеяння',
- 'top-uploaders-data' => 'Лепшыя загрузнік (Data)',
- 'top-uploaders-count' => 'Лепшыя загрузнік (Count)',
- 'topics' => 'тэмы',
- 'topics-started' => 'Форум Тэмы Started',
- 'torrent-comments' => 'Торэнт Каментары Зроблены',
- 'torrent-help' => 'Кантроль абмену канкрэтных звязаных статыстыкі торэнтаў і інфармацыяй з гуртамі, якім дазволены доступ да вашага профілю. Гэтыя налады адмяняюцца , калі не дазваляюць якой - альбо гурт , каб атрымаць доступ да звязаным з торэнтам статыстыкі і інфармацыі , або калі вы Go Private',
- 'torrent-notification' => 'Налады апавяшчэнняў Торэнт',
- 'torrent-notification-comment' => 'Атрыманне апавяшчэння, калі загружанае паток атрымлівае новы каментарый',
- 'torrent-notification-thank' => 'Атрыманне апавяшчэння, калі загружанае паток атрымлівае новы падзячны',
- 'torrent-notification-tip' => 'Атрыманне апавяшчэння, калі загружанае паток атрымлівае новы водгук',
- 'torrent-notification-help' => 'Кантроль якія адпраўляюцца апавяшчэння адносна торэнта дзейнасці. Гэтыя налады адмяняюцца , калі вы не дазваляеце якія - небудзь групы для адпраўкі апавяшчэнняў па нагоды торэнтаў дзейнасці або калі адключыць апавяшчэння',
- 'torrent-privacy' => 'торэнт Налады',
- 'torrent-privacy-download' => 'Дазволіць карыстальнікам праглядаць спіс торэнтаў, загружаных',
- 'torrent-privacy-upload' => 'Дазволіць карыстальнікам праглядаць спіс торэнтаў, якія вы загрузілі',
- 'torrent-privacy-peer' => 'Дазвольце бачыць Вас карыстальнікі ў табліцы гісторыі торэнт пэра',
- 'torrents' => 'Torrents',
- 'torrents-history' => 'гісторыя Torrents',
- 'total-download' => 'Усяго загрузак',
- 'total-downloads' => 'Усяго загрузак',
- 'total-leeching' => 'Усяго Пампуе',
- 'total-seeding' => 'Усяго Пасеў',
- 'total-seedtime' => 'усе сяўба',
- 'total-upload' => 'Total Upload',
- 'total-uploads' => 'Усяго загрузак',
- 'unban' => 'Unban Карыстальнік',
- 'unfollow' => 'адпісацца',
- 'unlocked' => 'адмыкнутая',
- 'unlocked-achievements' => 'разблакаваныя дасягненні',
- 'unsatisfieds' => 'Unsatisfieds',
- 'upload-bon' => 'Загрузіць Паведамленні З BON крамы',
- 'upload-recorded' => 'запісаны Загрузіць',
- 'upload-true' => 'Праўда Загрузіць',
- 'uploads' => 'загрузкі',
- 'uploads-table' => 'загрузкі Табліца',
- 'user' => 'карыстальнік',
- 'user-id' => 'Ідэнтыфікатар карыстальніка',
- 'username-seedbox' => 'Імя карыстальніка Seedbox',
- 'visible-to-achievement' => 'дасягнення Бачныя',
- 'visible-to-achievement-help' => 'Вашы дасягненні будуць бачныя персаналу і наступных групы толькі. Гэтыя налады адмяняюцца , калі вы Go Private',
- 'visible-to-follower' => 'паслядоўнікі Бачныя',
- 'visible-to-follower-help' => 'Вашы паслядоўнікі будуць бачныя персаналу і наступных групы толькі. Гэтыя налады адмяняюцца , калі вы Go Private',
- 'visible-to-forum' => 'Форум Інфармацыя Бачны Для',
- 'visible-to-forum-help' => 'Ваш форум інфармацыя будзе даступная супрацоўнікам і наступных груп толькі. Гэтыя налады адмяняюцца , калі вы Go Private',
- 'visible-to-other' => 'Іншае Бачны Для',
- 'visible-to-other-help' => 'Іншая інфармацыя аб вашай ўліковага запісу будзе бачная супрацоўнікам і наступных групы толькі. Гэтыя налады адмяняюцца , калі вы Go Private або калі вы Go Hidden',
- 'visible-to-profile' => 'Профіль Бачны Для',
- 'visible-to-profile-help' => 'Ваш профіль будзе бачны супрацоўнікам і наступных груп толькі. Гэтыя налады адмяняюцца , калі вы Go Private',
- 'visible-to-request' => 'Запыт інфармацыі Бачна',
- 'visible-to-request-help' => 'Ваша інфармацыя запыт будзе бачны супрацоўнікам і наступных груп толькі. Гэтыя налады адмяняюцца , калі вы Go Private',
- 'visible-to-torrent' => 'Торэнт Інфармацыя Бачны Для',
- 'visible-to-torrent-help' => 'Ваша інфармацыя паток будзе бачны супрацоўнікам і наступных груп толькі. Гэтыя налады адмяняюцца , калі вы Go Private або калі вы Go Hidden',
- 'warned-on' => 'папярэдзіў На',
- 'warning' => 'папярэджанне',
- 'warning-log' => 'папярэджанне Уваход',
- 'wishlist' => 'дадаць у кошык',
+ 'mention-notification-forum-post' => 'Атрыманне апавяшчэння, калі вы @mentioned ў паведамленні на форуме',
+ 'mention-notification-help' => 'Кантроль, які адпраўляюцца паведамлення, калі карыстальнік @mentions вы. Гэтыя налады адмяняюцца , калі вы не дазваляеце якія - небудзь групы для адпраўкі апавяшчэнняў , калі карыстальнік @mentions вы або калі вы Адключыць апавяшчэння',
+ 'moderated-by' => 'Вядучы: мод ON',
+ 'my-bonus-points' => 'Мае Бонусныя ачкі',
+ 'my-bookmarks' => 'Мае закладкі',
+ 'my-fl-tokens' => 'Мае FL жэтонаў',
+ 'my-general-settings' => 'Мае Агульныя налады',
+ 'my-notification' => 'маё Апавяшчэнне',
+ 'my-notification-settings' => 'Мае апавяшчэння Налады',
+ 'my-privacy' => 'мая Канфідэнцыяльнасць',
+ 'my-privacy-settings' => 'Мае налады прыватнасці',
+ 'my-profile' => 'мой профіль',
+ 'my-requested' => 'Мае Запытаны',
+ 'my-security' => 'My Security',
+ 'my-security-settings' => 'Мае налады бяспекі',
+ 'my-seedboxes' => 'Мае Seedboxes',
+ 'my-settings' => 'мае налады',
+ 'my-wishlist' => 'Мой ліст пажаданняў',
+ 'no-logs' => 'ня АРЕ не запрашаць часопісаў у базу дадзеных для гэтага карыстальніка!',
+ 'no-seedboxes' => 'Няма seedboxes 😔',
+ 'not-authorized' => 'Вы не аўтарызаваны для прагляду гэтай старонкі. Гэты ўдзельнік аддае перавагу быць схаваныя як ніндзя!',
+ 'note' => 'Нататка',
+ 'notification' => 'апавяшчэнне',
+ 'notification-settings' => 'налады апавяшчэнняў',
+ 'notification-from-account' => 'Атрымліваць паведамлення рахункаў, з',
+ 'notification-from-account-help' => 'Вы будзеце атрымліваць толькі рахункі паведамлення ад сістэмы, супрацоўнікаў і наступныя групы. Гэтыя налады адмяняюцца , калі адключыць апавяшчэння',
+ 'notification-from-bon' => 'Атрымліваць паведамлення BON Ад',
+ 'notification-from-bon-help' => 'Вы будзеце атрымліваць толькі BON паведамлення ад сістэмы, супрацоўнікаў і наступныя групы. Гэтыя налады адмяняюцца , калі адключыць апавяшчэння',
+ 'notification-from-following' => 'Атрымліваць паведамлення карыстальніка рухаўся ад',
+ 'notification-from-following-help' => 'Вы будзеце атрымліваць толькі апавяшчэння карыстальнікаў вынікала з наступных груп. Гэтыя налады адмяняюцца , калі адключыць апавяшчэння',
+ 'notification-from-forum' => 'Атрымліваць паведамлення Форуму',
+ 'notification-from-forum-help' => 'Вы будзеце атрымліваць апавяшчэнні на форуме ад сістэмы, супрацоўнікаў і наступныя групы. Гэтыя налады адмяняюцца , калі адключыць апавяшчэння',
+ 'notification-from-subscription' => 'Атрымліваць паведамлення ад падпіскі',
+ 'notification-from-subscription-help' => 'Вы будзеце атрымліваць апавяшчэнні на форуме ад сістэмы, супрацоўнікаў і наступныя групы. Гэтыя налады адмяняюцца , калі адключыць апавяшчэння',
+ 'notification-from-torrent' => 'Атрымліваць паведамлення на торэнт',
+ 'notification-from-torrent-help' => 'Вы будзеце атрымліваць толькі струменевыя паведамлення ад сістэмы, супрацоўнікаў і наступныя групы. Гэтыя налады адмяняюцца , калі адключыць апавяшчэння',
+ 'notification-from-mention' => 'Атрымліваць паведамлення @Mention Ад',
+ 'notification-from-mention-help' => 'Вы будзеце атрымліваць толькі @mention паведамлення ад сістэмы, супрацоўнікаў і наступныя групы. Гэтыя налады адмяняюцца , калі адключыць апавяшчэння',
+ 'notification-from-request' => 'Прыём запыту паведамлення ад',
+ 'notification-from-request-help' => 'Вы будзеце атрымліваць толькі запыт паведамлення ад сістэмы, супрацоўнікаў і наступныя групы. Гэтыя налады адмяняюцца , калі адключыць апавяшчэння',
+ 'notifications' => 'апавяшчэння',
+ 'offline' => 'Карыстальнік не на сайце!',
+ 'online' => 'Карыстальнік на сайце!',
+ 'options' => 'опцыі',
+ 'other-help' => 'Кантроль абмену іншымі статыстычнымі дадзенымі і інфармацыяй з гуртамі, якім дазволены доступ да вашага профілю. Гэтыя налады адмяняюцца , калі не дазваляюць якія - небудзь групы , каб атрымаць доступ да іншых статыстычныя дадзеныя і інфармацыю , або калі вы Go Private',
+ 'other-privacy' => 'іншыя налады',
+ 'other-privacy-online' => 'Дазвольце бачыць Вас карыстальнік ў блоку карыстальнікаў онлайн',
+ 'passkey' => 'PID',
+ 'passkey-warning' => 'PID, як ваш пароль, вы павінны трымаць яго ў бяспецы!',
+ 'pending-achievements' => 'да дасягнення',
+ 'per-torrent' => 'Per Torrent',
+ 'posts' => 'паведамленняў',
+ 'posts-posted' => 'Паведамленні форуму Паведамленне',
+ 'privacy' => 'сакрэтнасць',
+ 'privacy-settings' => 'Налады прыватнасці',
+ 'private-info' => 'прыватная інфармацыя',
+ 'private-forum-profile' => 'Увага: Гэтая тэма Карыстальнікаў і паведамленне Гісторыя функцыянуе ў PRIVATE!',
+ 'private-profile' => 'Увага: Гэты профіль быў усталяваны на прыватныя!',
+ 'profile' => 'профіль',
+ 'profile-desc' => 'Карыстальнік: Профіль карыстальніка зарэгістраваны: назву',
+ 'profile-privacy' => 'налады профілю',
+ 'profile-privacy-torrent-count' => 'Падзяліцеся агульная колькасць загрузкі, выгрузкі насення і пяўкі',
+ 'profile-privacy-torrent-ratio' => 'Дзяліцеся агульныя загрузкі / выгрузкі дадзеных разам з запісаным суадносінамі',
+ 'profile-privacy-torrent-seed' => 'Падзяліцеся агульнае час сяўбы і сярэдняе',
+ 'profile-privacy-title' => 'Падзяліцеся вашай асабістай інфармацыі ў загалоўку',
+ 'profile-privacy-about' => 'Падзяліцеся нічога пра мяне інфармацыю',
+ 'profile-privacy-bon-extra' => 'Дзяліцеся статыстыку BON',
+ 'profile-privacy-comment-extra' => 'Дзяліцеся каментар статыстыка',
+ 'profile-privacy-forum-extra' => 'Дзяліцеся статыстыку форуму',
+ 'profile-privacy-request-extra' => 'Дзяліцеся статыстыку запытаў',
+ 'profile-privacy-torrent-extra' => 'Дзяліцеся статыстыку торэнта',
+ 'profile-privacy-badge' => 'Падзяліцеся сваімі значкамі заробленых',
+ 'profile-privacy-achievement' => 'Падзяліцеся сваімі апошнія дасягненні',
+ 'profile-privacy-follower' => 'Дзяліцеся апошнімі паслядоўнікі',
+ 'profile-privacy-warning' => 'Дзяліцеся H&R папярэджання',
+ 'profile-privacy-help' => 'Кіравання, якія статыстычныя дадзеныя і фрагменты інфармацыі ў вашым профілі. Гэтыя налады адмяняюцца , калі вы не дазваляеце якія - небудзь групы для доступу да профілі або калі вы Go Private',
+ 'public-info' => 'грамадская інфармацыя',
+ 'recent-achievements' => 'апошнія дасягненні',
+ 'recent-followers' => 'апошнія Чытаюць',
+ 'registration-date' => 'дата рэгістрацыі',
+ 'report' => 'справаздачу',
+ 'request-help' => 'Кантраляваць абмен канкрэтных запытаў, якія тычацца статыстычных дадзеных і інфармацыі з гуртамі, якім дазволены доступ да вашага профілю. Гэтыя налады адмяняюцца , калі не дазваляюць якой - альбо гурт , каб атрымаць доступ да запрошваюць звязанаму статыстычных дадзеных і інфармацыі , або калі вы Go Private',
+ 'request' => 'запыт',
+ 'requested' => 'запытаны',
+ 'requests' => 'запыты',
+ 'request-comments' => 'Запыт Колькасць каментарыяў',
+ 'request-notification' => 'Параметры запыту апавяшчэнняў',
+ 'request-notification-bounty' => 'Атрыманне апавяшчэння, калі запытаны паток атрымлівае новую ўзнагароду',
+ 'request-notification-comment' => 'Атрыманне апавяшчэння, калі запытаны паток атрымлівае новы каментарый',
+ 'request-notification-fill' => 'Атрыманне апавяшчэння, калі запытаны паток запаўняецца',
+ 'request-notification-fill-approve' => 'Атрыманне апавяшчэння, калі запытаная заліванне патоку будзе прынятая',
+ 'request-notification-fill-reject' => 'Атрыманне апавяшчэння, калі запытаны запоўніць паток адпрэчваецца',
+ 'request-notification-claim' => 'Атрыманне апавяшчэння, калі запытаны паток атрымлівае сцвярджаў,',
+ 'request-notification-unclaim' => 'Атрыманне апавяшчэння, калі запытаны паток становіцца незапатрабаваным',
+ 'request-notification-help' => 'Кантроль якія адпраўляюцца апавяшчэння адносна запыту дзейнасці. Гэтыя налады адмяняюцца , калі вы не дазваляеце якія - небудзь групы для адпраўкі апавяшчэнняў адносна запыту дзейнасці або калі адключыць апавяшчэння',
+ 'request-privacy' => 'запыт Налады',
+ 'request-privacy-requested' => 'Дазволіць карыстальнікам праглядаць спіс запытаў, якія вы зрабілі',
+ 'reset-passkey' => 'Reset Pass Key (PID)',
+ 'reset-passkey-help' => 'Вам прыйдзецца паўторна загрузіць / паўторна загрузіць усе актыўныя торэнты, пасля скіду PID',
+ 'reset-rss' => 'Скід RSS Key (Рыд)',
+ 'reset-rss-help' => 'Вам прыйдзецца паўторна загружаць усе актыўную RSS-каналы, пасля скіду МПОГ',
+ 'resurrections' => 'ўваскрасення',
+ 'search' => 'Хуткі пошук па імя карыстальніка',
+ 'security' => 'бяспекі',
+ 'security-settings' => 'налады бяспекі',
+ 'seedboxes' => 'Seedboxes',
+ 'seeds' => 'насенне',
+ 'send-invite' => 'адправіць запрашэнне',
+ 'sender' => 'адпраўнік',
+ 'settings' => 'налады',
+ 'show-passkey' => 'паказаць PID',
+ 'staff-noted' => 'Персанал Адзначыў рахункі',
+ 'statistics' => 'статыстыка',
+ 'subscription-notification' => 'Налады падпіскі апавяшчэнняў',
+ 'subscription-notification-forum' => 'Атрыманне апавяшчэння, калі падпісаўся форум атрымлівае новую тэму',
+ 'subscription-notification-topic' => 'Атрыманне апавяшчэння, калі падпісаўся тэма атрымлівае новы пост',
+ 'subscription-notification-help' => 'Кантроль якія адпраўляюцца апавяшчэння адносна падпіскі. Гэтыя налады адмяняюцца , калі вы не дазваляеце якія - небудзь групы для адпраўкі апавяшчэнняў аб вашых падпісцы або калі адключыць апавяшчэння',
+ 'thanks-given' => 'дзякуючы Улічваючы',
+ 'thanks-received' => 'падзякавалі',
+ 'tips-given' => 'парады Улічваючы',
+ 'tips-received' => 'парады Паступіла',
+ 'title' => 'тытульны',
+ 'top-bankers' => 'лепшыя Банкіры',
+ 'top-downloaders-data' => 'Лепшыя загрузнікі (Data)',
+ 'top-leechers' => 'лепшыя Личеры',
+ 'top-leechers-count' => 'Лепшыя Личеры (COUNT)',
+ 'top-seeders' => 'лепшая сеялка',
+ 'top-seeders-count' => 'Top сеялка (Count)',
+ 'top-seeding-size' => 'Top Пасеў (памер)',
+ 'top-seedtime' => 'топ сеяння',
+ 'top-uploaders-data' => 'Лепшыя загрузнік (Data)',
+ 'top-uploaders-count' => 'Лепшыя загрузнік (Count)',
+ 'topics' => 'тэмы',
+ 'topics-started' => 'Форум Тэмы Started',
+ 'torrent-comments' => 'Торэнт Каментары Зроблены',
+ 'torrent-help' => 'Кантроль абмену канкрэтных звязаных статыстыкі торэнтаў і інфармацыяй з гуртамі, якім дазволены доступ да вашага профілю. Гэтыя налады адмяняюцца , калі не дазваляюць якой - альбо гурт , каб атрымаць доступ да звязаным з торэнтам статыстыкі і інфармацыі , або калі вы Go Private',
+ 'torrent-notification' => 'Налады апавяшчэнняў Торэнт',
+ 'torrent-notification-comment' => 'Атрыманне апавяшчэння, калі загружанае паток атрымлівае новы каментарый',
+ 'torrent-notification-thank' => 'Атрыманне апавяшчэння, калі загружанае паток атрымлівае новы падзячны',
+ 'torrent-notification-tip' => 'Атрыманне апавяшчэння, калі загружанае паток атрымлівае новы водгук',
+ 'torrent-notification-help' => 'Кантроль якія адпраўляюцца апавяшчэння адносна торэнта дзейнасці. Гэтыя налады адмяняюцца , калі вы не дазваляеце якія - небудзь групы для адпраўкі апавяшчэнняў па нагоды торэнтаў дзейнасці або калі адключыць апавяшчэння',
+ 'torrent-privacy' => 'торэнт Налады',
+ 'torrent-privacy-download' => 'Дазволіць карыстальнікам праглядаць спіс торэнтаў, загружаных',
+ 'torrent-privacy-upload' => 'Дазволіць карыстальнікам праглядаць спіс торэнтаў, якія вы загрузілі',
+ 'torrent-privacy-peer' => 'Дазвольце бачыць Вас карыстальнікі ў табліцы гісторыі торэнт пэра',
+ 'torrents' => 'Torrents',
+ 'torrents-history' => 'гісторыя Torrents',
+ 'total-download' => 'Усяго загрузак',
+ 'total-downloads' => 'Усяго загрузак',
+ 'total-leeching' => 'Усяго Пампуе',
+ 'total-seeding' => 'Усяго Пасеў',
+ 'total-seedtime' => 'усе сяўба',
+ 'total-upload' => 'Total Upload',
+ 'total-uploads' => 'Усяго загрузак',
+ 'unban' => 'Unban Карыстальнік',
+ 'unfollow' => 'адпісацца',
+ 'unlocked' => 'адмыкнутая',
+ 'unlocked-achievements' => 'разблакаваныя дасягненні',
+ 'unsatisfieds' => 'Unsatisfieds',
+ 'upload-bon' => 'Загрузіць Паведамленні З BON крамы',
+ 'upload-recorded' => 'запісаны Загрузіць',
+ 'upload-true' => 'Праўда Загрузіць',
+ 'uploads' => 'загрузкі',
+ 'uploads-table' => 'загрузкі Табліца',
+ 'user' => 'карыстальнік',
+ 'user-id' => 'Ідэнтыфікатар карыстальніка',
+ 'username-seedbox' => 'Імя карыстальніка Seedbox',
+ 'visible-to-achievement' => 'дасягнення Бачныя',
+ 'visible-to-achievement-help' => 'Вашы дасягненні будуць бачныя персаналу і наступных групы толькі. Гэтыя налады адмяняюцца , калі вы Go Private',
+ 'visible-to-follower' => 'паслядоўнікі Бачныя',
+ 'visible-to-follower-help' => 'Вашы паслядоўнікі будуць бачныя персаналу і наступных групы толькі. Гэтыя налады адмяняюцца , калі вы Go Private',
+ 'visible-to-forum' => 'Форум Інфармацыя Бачны Для',
+ 'visible-to-forum-help' => 'Ваш форум інфармацыя будзе даступная супрацоўнікам і наступных груп толькі. Гэтыя налады адмяняюцца , калі вы Go Private',
+ 'visible-to-other' => 'Іншае Бачны Для',
+ 'visible-to-other-help' => 'Іншая інфармацыя аб вашай ўліковага запісу будзе бачная супрацоўнікам і наступных групы толькі. Гэтыя налады адмяняюцца , калі вы Go Private або калі вы Go Hidden',
+ 'visible-to-profile' => 'Профіль Бачны Для',
+ 'visible-to-profile-help' => 'Ваш профіль будзе бачны супрацоўнікам і наступных груп толькі. Гэтыя налады адмяняюцца , калі вы Go Private',
+ 'visible-to-request' => 'Запыт інфармацыі Бачна',
+ 'visible-to-request-help' => 'Ваша інфармацыя запыт будзе бачны супрацоўнікам і наступных груп толькі. Гэтыя налады адмяняюцца , калі вы Go Private',
+ 'visible-to-torrent' => 'Торэнт Інфармацыя Бачны Для',
+ 'visible-to-torrent-help' => 'Ваша інфармацыя паток будзе бачны супрацоўнікам і наступных груп толькі. Гэтыя налады адмяняюцца , калі вы Go Private або калі вы Go Hidden',
+ 'warned-on' => 'папярэдзіў На',
+ 'warning' => 'папярэджанне',
+ 'warning-log' => 'папярэджанне Уваход',
+ 'wishlist' => 'дадаць у кошык',
];
diff --git a/lang/be/validation.php b/lang/be/validation.php
index 4c59e3ada..73c955021 100644
--- a/lang/be/validation.php
+++ b/lang/be/validation.php
@@ -24,108 +24,108 @@ return [
|
*/
- 'accepted' => 'Вы павінны прыняць :attribute.',
- 'active_url' => 'Поле :attribute утрымлівае несапраўдны URL.',
- 'after' => 'У полі :attribute павінна быць дата пасля :date.',
- 'after_or_equal' => 'The :attribute must be a date after or equal to :date.',
- 'alpha' => 'Поле :attribute можа мець толькі літары.',
- 'alpha_dash' => 'Поле :attribute можа мець толькі літары, лічбы і злучок.',
- 'alpha_num' => 'Поле :attribute можа мець толькі літары і лічбы.',
- 'array' => 'Поле :attribute павінна быць масівам.',
- 'before' => 'У полі :attribute павінна быць дата да :date.',
- 'before_or_equal' => 'The :attribute must be a date before or equal to :date.',
- 'between' => [
+ 'accepted' => 'Вы павінны прыняць :attribute.',
+ 'active_url' => 'Поле :attribute утрымлівае несапраўдны URL.',
+ 'after' => 'У полі :attribute павінна быць дата пасля :date.',
+ 'after_or_equal' => 'The :attribute must be a date after or equal to :date.',
+ 'alpha' => 'Поле :attribute можа мець толькі літары.',
+ 'alpha_dash' => 'Поле :attribute можа мець толькі літары, лічбы і злучок.',
+ 'alpha_num' => 'Поле :attribute можа мець толькі літары і лічбы.',
+ 'array' => 'Поле :attribute павінна быць масівам.',
+ 'before' => 'У полі :attribute павінна быць дата да :date.',
+ 'before_or_equal' => 'The :attribute must be a date before or equal to :date.',
+ 'between' => [
'numeric' => 'Поле :attribute павінна быць паміж :min і :max.',
- 'file' => 'Памер файла ў поле :attribute павінен быць паміж :min і :max кілабайт.',
- 'string' => 'Колькасць сiмвалаў у поле :attribute павінна быць паміж :min і :max.',
- 'array' => 'Колькасць элементаў у поле :attribute павінна быць паміж :min і :max.',
+ 'file' => 'Памер файла ў поле :attribute павінен быць паміж :min і :max кілабайт.',
+ 'string' => 'Колькасць сiмвалаў у поле :attribute павінна быць паміж :min і :max.',
+ 'array' => 'Колькасць элементаў у поле :attribute павінна быць паміж :min і :max.',
],
- 'boolean' => 'Поле :attribute павінна мець значэнне лагічнага тыпу.',
- 'confirmed' => 'Поле :attribute не супадае з пацвярджэннем.',
- 'date' => 'Поле :attribute не з\'яўляецца датай.',
- 'date_equals' => 'The :attribute must be a date equal to :date.',
- 'date_format' => 'Поле :attribute не адпавядае фармату :format.',
- 'different' => 'Палі :attribute і :other павінны адрознівацца.',
- 'digits' => 'Даўжыня лічбавага поля :attribute павінна быць :digits.',
- 'digits_between' => 'Даўжыня лічбавага поля :attribute павінна быць паміж :min і :max.',
- 'dimensions' => 'The :attribute has invalid image dimensions.',
- 'distinct' => 'The :attribute field has a duplicate value.',
- 'email' => 'Поле :attribute павінна быць сапраўдным электронным адрасам.',
- 'file' => 'The :attribute must be a file.',
- 'filled' => 'Поле :attribute абавязкова для запаўнення.',
- 'exists' => 'Выбранае значэнне для :attribute некарэктна.',
- 'gt' => [
+ 'boolean' => 'Поле :attribute павінна мець значэнне лагічнага тыпу.',
+ 'confirmed' => 'Поле :attribute не супадае з пацвярджэннем.',
+ 'date' => 'Поле :attribute не з\'яўляецца датай.',
+ 'date_equals' => 'The :attribute must be a date equal to :date.',
+ 'date_format' => 'Поле :attribute не адпавядае фармату :format.',
+ 'different' => 'Палі :attribute і :other павінны адрознівацца.',
+ 'digits' => 'Даўжыня лічбавага поля :attribute павінна быць :digits.',
+ 'digits_between' => 'Даўжыня лічбавага поля :attribute павінна быць паміж :min і :max.',
+ 'dimensions' => 'The :attribute has invalid image dimensions.',
+ 'distinct' => 'The :attribute field has a duplicate value.',
+ 'email' => 'Поле :attribute павінна быць сапраўдным электронным адрасам.',
+ 'file' => 'The :attribute must be a file.',
+ 'filled' => 'Поле :attribute абавязкова для запаўнення.',
+ 'exists' => 'Выбранае значэнне для :attribute некарэктна.',
+ 'gt' => [
'numeric' => 'The :attribute must be greater than :value.',
- 'file' => 'The :attribute must be greater than :value kilobytes.',
- 'string' => 'The :attribute must be greater than :value characters.',
- 'array' => 'The :attribute must have more than :value items.',
+ 'file' => 'The :attribute must be greater than :value kilobytes.',
+ 'string' => 'The :attribute must be greater than :value characters.',
+ 'array' => 'The :attribute must have more than :value items.',
],
- 'gte' => [
+ 'gte' => [
'numeric' => 'The :attribute must be greater than or equal :value.',
- 'file' => 'The :attribute must be greater than or equal :value kilobytes.',
- 'string' => 'The :attribute must be greater than or equal :value characters.',
- 'array' => 'The :attribute must have :value items or more.',
+ 'file' => 'The :attribute must be greater than or equal :value kilobytes.',
+ 'string' => 'The :attribute must be greater than or equal :value characters.',
+ 'array' => 'The :attribute must have :value items or more.',
],
- 'image' => 'Поле :attribute павінна быць малюнкам.',
- 'in' => 'Выбранае значэнне для :attribute памылкова.',
- 'in_array' => 'The :attribute field does not exist in :other.',
- 'integer' => 'Поле :attribute павінна быць цэлым лікам.',
- 'ip' => 'Поле :attribute дпавінна быць сапраўдным IP-адрасам.',
- 'ipv4' => 'The :attribute must be a valid IPv4 address.',
- 'ipv6' => 'The :attribute must be a valid IPv6 address.',
- 'json' => 'Поле :attribute павінна быць JSON радком.',
- 'lt' => [
+ 'image' => 'Поле :attribute павінна быць малюнкам.',
+ 'in' => 'Выбранае значэнне для :attribute памылкова.',
+ 'in_array' => 'The :attribute field does not exist in :other.',
+ 'integer' => 'Поле :attribute павінна быць цэлым лікам.',
+ 'ip' => 'Поле :attribute дпавінна быць сапраўдным IP-адрасам.',
+ 'ipv4' => 'The :attribute must be a valid IPv4 address.',
+ 'ipv6' => 'The :attribute must be a valid IPv6 address.',
+ 'json' => 'Поле :attribute павінна быць JSON радком.',
+ 'lt' => [
'numeric' => 'The :attribute must be less than :value.',
- 'file' => 'The :attribute must be less than :value kilobytes.',
- 'string' => 'The :attribute must be less than :value characters.',
- 'array' => 'The :attribute must have less than :value items.',
+ 'file' => 'The :attribute must be less than :value kilobytes.',
+ 'string' => 'The :attribute must be less than :value characters.',
+ 'array' => 'The :attribute must have less than :value items.',
],
- 'lte' => [
+ 'lte' => [
'numeric' => 'The :attribute must be less than or equal :value.',
- 'file' => 'The :attribute must be less than or equal :value kilobytes.',
- 'string' => 'The :attribute must be less than or equal :value characters.',
- 'array' => 'The :attribute must not have more than :value items.',
+ 'file' => 'The :attribute must be less than or equal :value kilobytes.',
+ 'string' => 'The :attribute must be less than or equal :value characters.',
+ 'array' => 'The :attribute must not have more than :value items.',
],
- 'max' => [
+ 'max' => [
'numeric' => 'Поле :attribute не можа быць больш :max.',
- 'file' => 'Памер файла ў поле :attribute не можа быць больш :max кілабайт).',
- 'string' => 'Колькасць сiмвалаў у поле :attribute не можа перавышаць :max.',
- 'array' => 'Колькасць элементаў у поле :attribute не можа перавышаць :max.',
+ 'file' => 'Памер файла ў поле :attribute не можа быць больш :max кілабайт).',
+ 'string' => 'Колькасць сiмвалаў у поле :attribute не можа перавышаць :max.',
+ 'array' => 'Колькасць элементаў у поле :attribute не можа перавышаць :max.',
],
- 'mimes' => 'Поле :attribute павінна быць файлам аднаго з наступных тыпаў: :values.',
- 'mimetypes' => 'Поле :attribute павінна быць файлам аднаго з наступных тыпаў: :values.',
- 'min' => [
+ 'mimes' => 'Поле :attribute павінна быць файлам аднаго з наступных тыпаў: :values.',
+ 'mimetypes' => 'Поле :attribute павінна быць файлам аднаго з наступных тыпаў: :values.',
+ 'min' => [
'numeric' => 'Поле :attribute павінна быць не менш :min.',
- 'file' => 'Памер файла ў полее :attribute павінен быць не менш :min кілабайт.',
- 'string' => 'Колькасць сiмвалаў у поле :attribute павінна быць не менш :min.',
- 'array' => 'Колькасць элементаў у поле :attribute павінна быць не менш :min.',
+ 'file' => 'Памер файла ў полее :attribute павінен быць не менш :min кілабайт.',
+ 'string' => 'Колькасць сiмвалаў у поле :attribute павінна быць не менш :min.',
+ 'array' => 'Колькасць элементаў у поле :attribute павінна быць не менш :min.',
],
- 'not_in' => 'Выбранае значэнне для :attribute памылкова.',
- 'not_regex' => 'The :attribute format is invalid.',
- 'numeric' => 'Поле :attribute павінна быць лікам.',
- 'present' => 'The :attribute field must be present.',
- 'regex' => 'Поле :attribute мае памылковы фармат.',
- 'required' => 'Поле :attribute абавязкова для запаўнення.',
- 'required_if' => 'Поле :attribute абавязкова для запаўнення, калі :other раўняецца :value.',
- 'required_unless' => 'Поле :attribute абавязкова для запаўнення, калі :other не раўняецца :values.',
- 'required_with' => 'Поле :attribute абавязкова для запаўнення, калі :values ўказана.',
- 'required_with_all' => 'Поле :attribute абавязкова для запаўнення, калі :values ўказана.',
- 'required_without' => 'Поле :attribute абавязкова для запаўнення, калі :values не ўказана.',
+ 'not_in' => 'Выбранае значэнне для :attribute памылкова.',
+ 'not_regex' => 'The :attribute format is invalid.',
+ 'numeric' => 'Поле :attribute павінна быць лікам.',
+ 'present' => 'The :attribute field must be present.',
+ 'regex' => 'Поле :attribute мае памылковы фармат.',
+ 'required' => 'Поле :attribute абавязкова для запаўнення.',
+ 'required_if' => 'Поле :attribute абавязкова для запаўнення, калі :other раўняецца :value.',
+ 'required_unless' => 'Поле :attribute абавязкова для запаўнення, калі :other не раўняецца :values.',
+ 'required_with' => 'Поле :attribute абавязкова для запаўнення, калі :values ўказана.',
+ 'required_with_all' => 'Поле :attribute абавязкова для запаўнення, калі :values ўказана.',
+ 'required_without' => 'Поле :attribute абавязкова для запаўнення, калі :values не ўказана.',
'required_without_all' => 'Поле :attribute абавязкова для запаўнення, калі ні адно з :values не ўказана.',
- 'same' => 'Значэнне :attribute павінна супадаць з :other.',
- 'size' => [
+ 'same' => 'Значэнне :attribute павінна супадаць з :other.',
+ 'size' => [
'numeric' => 'Поле :attribute павінна быць :size.',
- 'file' => 'Размер файла в поле :attribute павінен быць :size кілабайт.',
- 'string' => 'Колькасць сiмвалаў у поле :attribute павінна быць :size.',
- 'array' => 'Колькасць элементаў у поле :attribute павінна быць :size.',
+ 'file' => 'Размер файла в поле :attribute павінен быць :size кілабайт.',
+ 'string' => 'Колькасць сiмвалаў у поле :attribute павінна быць :size.',
+ 'array' => 'Колькасць элементаў у поле :attribute павінна быць :size.',
],
- 'starts_with' => 'The :attribute must start with one of the following: :values',
- 'string' => 'Поле :attribute павінна быць радком.',
- 'timezone' => 'Поле :attribute павінна быць сапраўдным гадзінным поясам.',
- 'unique' => 'Такое значэнне поля :attribute ўжо існуе.',
- 'uploaded' => 'The :attribute failed to upload.',
- 'url' => 'Поле :attribute мае памылковы фармат.',
- 'uuid' => 'The :attribute must be a valid UUID.',
+ 'starts_with' => 'The :attribute must start with one of the following: :values',
+ 'string' => 'Поле :attribute павінна быць радком.',
+ 'timezone' => 'Поле :attribute павінна быць сапраўдным гадзінным поясам.',
+ 'unique' => 'Такое значэнне поля :attribute ўжо існуе.',
+ 'uploaded' => 'The :attribute failed to upload.',
+ 'url' => 'Поле :attribute мае памылковы фармат.',
+ 'uuid' => 'The :attribute must be a valid UUID.',
/*
|--------------------------------------------------------------------------
diff --git a/lang/bg/articles.php b/lang/bg/articles.php
index e63ce6d3a..96e0e5b62 100644
--- a/lang/bg/articles.php
+++ b/lang/bg/articles.php
@@ -12,8 +12,8 @@
*/
return [
- 'articles' => 'статии',
+ 'articles' => 'статии',
'meta-articles' => 'Статии и новини за тракера и общността',
- 'published-at' => 'Публикувано на',
- 'read-more' => 'Прочетете още',
+ 'published-at' => 'Публикувано на',
+ 'read-more' => 'Прочетете още',
];
diff --git a/lang/bg/auth.php b/lang/bg/auth.php
index 5b149ec90..2209d9101 100644
--- a/lang/bg/auth.php
+++ b/lang/bg/auth.php
@@ -23,6 +23,6 @@ return [
|
*/
- 'failed' => 'Неуспешно удостоверяване на потребител.',
+ 'failed' => 'Неуспешно удостоверяване на потребител.',
'throttle' => 'Твърде много опити за вход. Моля, опитайте отново след :seconds секунди.',
];
diff --git a/lang/bg/backup.php b/lang/bg/backup.php
index 2c641e111..f3adccc55 100644
--- a/lang/bg/backup.php
+++ b/lang/bg/backup.php
@@ -12,32 +12,32 @@
*/
return [
- 'actions' => 'мерки',
- 'backup' => 'резервно копие',
- 'backup_doesnt_exist' => 'Резервният файл не съществува.',
- 'create_a_new_backup' => 'Създайте пълно архивиране',
- 'create_a_new_files_backup' => 'Създаване на архивиране на файлове',
- 'create_a_new_db_backup' => 'Създайте резервно копие на базата данни',
- 'create_confirmation_message' => 'Презареждане на страницата за 3 секунди.',
- 'create_confirmation_title' => 'Архивирането е завършено',
- 'create_error_message' => 'Резервният файл не може да бъде създаден.',
- 'create_error_title' => 'Грешка при архивиране',
- 'create_warning_message' => 'Възможно е резервното копие да не е създадено. Моля, проверете регистрационните файлове за подробности.',
- 'create_warning_title' => 'Неизвестна грешка',
- 'date' => 'Дата',
- 'delete' => 'Изтрий',
- 'delete_cancel_message' => 'Резервният файл НЕ е изтрит.',
- 'delete_cancel_title' => 'Няма проблем',
- 'delete_confirm' => 'Сигурни ли сте, че искате да изтриете този архивен файл?',
- 'delete_confirmation_message' => 'Резервният файл бе изтрит.',
- 'delete_confirmation_title' => 'Свършен',
- 'delete_error_message' => 'Резервният файл НЕ е изтрит.',
- 'delete_error_title' => 'грешка',
- 'download' => 'Изтегли',
- 'existing_backups' => 'Съществуващи архиви',
- 'file_size' => 'Размер на файла',
- 'location' => 'местоположение',
- 'manager' => 'мениджър',
- 'no_disks_configured' => 'Няма конфигурирани резервни дискове в config / backup.php',
+ 'actions' => 'мерки',
+ 'backup' => 'резервно копие',
+ 'backup_doesnt_exist' => 'Резервният файл не съществува.',
+ 'create_a_new_backup' => 'Създайте пълно архивиране',
+ 'create_a_new_files_backup' => 'Създаване на архивиране на файлове',
+ 'create_a_new_db_backup' => 'Създайте резервно копие на базата данни',
+ 'create_confirmation_message' => 'Презареждане на страницата за 3 секунди.',
+ 'create_confirmation_title' => 'Архивирането е завършено',
+ 'create_error_message' => 'Резервният файл не може да бъде създаден.',
+ 'create_error_title' => 'Грешка при архивиране',
+ 'create_warning_message' => 'Възможно е резервното копие да не е създадено. Моля, проверете регистрационните файлове за подробности.',
+ 'create_warning_title' => 'Неизвестна грешка',
+ 'date' => 'Дата',
+ 'delete' => 'Изтрий',
+ 'delete_cancel_message' => 'Резервният файл НЕ е изтрит.',
+ 'delete_cancel_title' => 'Няма проблем',
+ 'delete_confirm' => 'Сигурни ли сте, че искате да изтриете този архивен файл?',
+ 'delete_confirmation_message' => 'Резервният файл бе изтрит.',
+ 'delete_confirmation_title' => 'Свършен',
+ 'delete_error_message' => 'Резервният файл НЕ е изтрит.',
+ 'delete_error_title' => 'грешка',
+ 'download' => 'Изтегли',
+ 'existing_backups' => 'Съществуващи архиви',
+ 'file_size' => 'Размер на файла',
+ 'location' => 'местоположение',
+ 'manager' => 'мениджър',
+ 'no_disks_configured' => 'Няма конфигурирани резервни дискове в config / backup.php',
'only_local_downloads_supported' => 'Поддържат се само изтегляния от локалната файлова система.',
];
diff --git a/lang/bg/blocks.php b/lang/bg/blocks.php
index 1222f8118..ef679cfb5 100644
--- a/lang/bg/blocks.php
+++ b/lang/bg/blocks.php
@@ -12,19 +12,19 @@
*/
return [
- 'chatbox' => 'Поле за чат',
- 'click' => 'Кликнете',
- 'to-enable-editor' => ', за да разрешите редактора',
- 'featured-by' => 'Представено от',
- 'featured-torrents' => 'Препоръчани торенти',
+ 'chatbox' => 'Поле за чат',
+ 'click' => 'Кликнете',
+ 'to-enable-editor' => ', за да разрешите редактора',
+ 'featured-by' => 'Представено от',
+ 'featured-torrents' => 'Препоръчани торенти',
'featured-torrents-intro' => 'Вземи ги, докато можеш!',
- 'featured-until' => 'Това е представен поток до',
- 'top-torrents' => 'Топ торове',
- 'latest-posts' => 'Последни публикации',
- 'latest-topics' => 'Последни теми',
- 'active-in-last' => 'Активен в последния',
- 'users-online' => 'Потребители онлайн',
- 'check-news' => 'Новини (чек ежедневно)',
- 'new-news' => 'Нови новини',
- 'new-torrents' => 'Нови торенти',
+ 'featured-until' => 'Това е представен поток до',
+ 'top-torrents' => 'Топ торове',
+ 'latest-posts' => 'Последни публикации',
+ 'latest-topics' => 'Последни теми',
+ 'active-in-last' => 'Активен в последния',
+ 'users-online' => 'Потребители онлайн',
+ 'check-news' => 'Новини (чек ежедневно)',
+ 'new-news' => 'Нови новини',
+ 'new-torrents' => 'Нови торенти',
];
diff --git a/lang/bg/bon.php b/lang/bg/bon.php
index 263bdd494..a50bbd63c 100644
--- a/lang/bg/bon.php
+++ b/lang/bg/bon.php
@@ -12,44 +12,44 @@
*/
return [
- 'activated' => 'Активиран',
- 'active' => 'Активиран!',
- 'amount' => 'Количество',
- 'bon' => 'BON',
- 'bonus' => 'премия',
- 'date' => 'Дата',
- 'earning' => 'Спечелването',
- 'earning-rate' => 'При този процент на печалба ще печелите следното за дадена времева рамка.',
- 'earnings' => 'печалба',
- 'exchange' => 'обмен',
- 'exchange-warning' => 'Обменът е окончателен. Моля, проверете избора си преди да направите обмяна.',
- 'extended-stats' => 'Разширена статистика',
- 'gift' => 'подарък',
- 'gift-bonus' => 'Бонус точки за подаръци',
- 'gift-to' => 'Бонус точки за подаръци',
- 'gifts' => 'Подаръци',
- 'item' => 'Вещ',
- 'no-refund' => 'НЯМА ВЪЗСТАНОВЯВАНИЯ!',
- 'per-day' => 'Точки на ден',
- 'per-hour' => 'Точки на час',
- 'per-minute' => 'Точки на минута',
- 'per-month' => 'Точки на месец',
- 'per-second' => 'Точки в секунда',
- 'per-week' => 'Точки на седмица',
- 'per-year' => 'Точки на година',
- 'points' => 'точки',
- 'receiver' => 'приемник',
- 'review-seeds' => 'Преглед на всички Seeded Torrents',
- 'send-gift' => 'Изпрати подарък',
- 'sender' => 'подател',
- 'store' => 'магазин',
- 'tips' => 'Съвети',
- 'total' => 'Общо приходи',
- 'total-gifts' => 'В Общо BON подаръци',
- 'total-tips' => 'В Общо BON съвети',
+ 'activated' => 'Активиран',
+ 'active' => 'Активиран!',
+ 'amount' => 'Количество',
+ 'bon' => 'BON',
+ 'bonus' => 'премия',
+ 'date' => 'Дата',
+ 'earning' => 'Спечелването',
+ 'earning-rate' => 'При този процент на печалба ще печелите следното за дадена времева рамка.',
+ 'earnings' => 'печалба',
+ 'exchange' => 'обмен',
+ 'exchange-warning' => 'Обменът е окончателен. Моля, проверете избора си преди да направите обмяна.',
+ 'extended-stats' => 'Разширена статистика',
+ 'gift' => 'подарък',
+ 'gift-bonus' => 'Бонус точки за подаръци',
+ 'gift-to' => 'Бонус точки за подаръци',
+ 'gifts' => 'Подаръци',
+ 'item' => 'Вещ',
+ 'no-refund' => 'НЯМА ВЪЗСТАНОВЯВАНИЯ!',
+ 'per-day' => 'Точки на ден',
+ 'per-hour' => 'Точки на час',
+ 'per-minute' => 'Точки на минута',
+ 'per-month' => 'Точки на месец',
+ 'per-second' => 'Точки в секунда',
+ 'per-week' => 'Точки на седмица',
+ 'per-year' => 'Точки на година',
+ 'points' => 'точки',
+ 'receiver' => 'приемник',
+ 'review-seeds' => 'Преглед на всички Seeded Torrents',
+ 'send-gift' => 'Изпрати подарък',
+ 'sender' => 'подател',
+ 'store' => 'магазин',
+ 'tips' => 'Съвети',
+ 'total' => 'Общо приходи',
+ 'total-gifts' => 'В Общо BON подаръци',
+ 'total-tips' => 'В Общо BON съвети',
'you-have-received-gifts' => 'Вие получихте',
- 'you-have-sent-gifts' => 'Изпратили сте',
- 'you-have-received-tips' => 'Вие получихте',
- 'you-have-sent-tips' => 'Изпратили сте',
- 'your-points' => 'Вашите точки',
+ 'you-have-sent-gifts' => 'Изпратили сте',
+ 'you-have-received-tips' => 'Вие получихте',
+ 'you-have-sent-tips' => 'Изпратили сте',
+ 'your-points' => 'Вашите точки',
];
diff --git a/lang/bg/bot.php b/lang/bg/bot.php
index e4ea27680..3ac3d1727 100644
--- a/lang/bg/bot.php
+++ b/lang/bg/bot.php
@@ -12,15 +12,15 @@
*/
return [
- 'about' => 'относно',
- 'bot' => 'Bot',
- 'bots' => 'Bots',
- 'color' => 'цвят',
- 'command' => 'команда',
- 'edit-bot' => 'Редактирайте Bot',
+ 'about' => 'относно',
+ 'bot' => 'Bot',
+ 'bots' => 'Bots',
+ 'color' => 'цвят',
+ 'command' => 'команда',
+ 'edit-bot' => 'Редактирайте Bot',
'emoji-code' => 'Код за емотикони',
- 'help' => 'Помогне',
- 'icon' => 'икона',
- 'info' => 'Информация',
- 'name' => 'име',
+ 'help' => 'Помогне',
+ 'icon' => 'икона',
+ 'info' => 'Информация',
+ 'name' => 'име',
];
diff --git a/lang/bg/bug.php b/lang/bg/bug.php
index 89c3e95ee..131c9df5b 100644
--- a/lang/bg/bug.php
+++ b/lang/bg/bug.php
@@ -12,15 +12,15 @@
*/
return [
- 'bug-report' => 'Доклад за грешка',
+ 'bug-report' => 'Доклад за грешка',
'bug-report-description' => 'Подайте сигнал за грешка в сайта',
- 'enter-description' => 'Опишете проблема възможно най-добре',
- 'enter-email' => 'Моля, въведете имейла си',
- 'enter-title' => 'Моля, изберете подходящо заглавие',
- 'enter-username' => 'Моля, въведете потребителското си име',
- 'high' => 'Високо',
- 'low' => 'ниско',
- 'priority' => 'приоритет',
- 'priority-description' => 'Изберете само много високо, ако грешката наистина е проблем за използването на сайта.',
- 'very-high' => 'Много високо',
+ 'enter-description' => 'Опишете проблема възможно най-добре',
+ 'enter-email' => 'Моля, въведете имейла си',
+ 'enter-title' => 'Моля, изберете подходящо заглавие',
+ 'enter-username' => 'Моля, въведете потребителското си име',
+ 'high' => 'Високо',
+ 'low' => 'ниско',
+ 'priority' => 'приоритет',
+ 'priority-description' => 'Изберете само много високо, ако грешката наистина е проблем за използването на сайта.',
+ 'very-high' => 'Много високо',
];
diff --git a/lang/bg/common.php b/lang/bg/common.php
index e41d19bf1..b96e2dc2c 100644
--- a/lang/bg/common.php
+++ b/lang/bg/common.php
@@ -12,179 +12,179 @@
*/
return [
- 'a-an-art' => '',
- 'about' => 'За нас',
- 'account' => 'Сметка',
- 'achievement-title' => 'страхотен',
+ 'a-an-art' => '',
+ 'about' => 'За нас',
+ 'account' => 'Сметка',
+ 'achievement-title' => 'страхотен',
'achievement-unlocked' => 'Отключихте постижението ": name"',
- 'active' => 'Активен',
- 'active-warning' => 'Активно предупреждение',
- 'add' => 'Добави',
- 'added' => 'Добавен',
- 'amount' => 'Количество',
- 'anonymous' => 'анонимен',
- 'author' => 'автор',
- 'balance' => 'баланс',
- 'blacklist' => 'Черни списъци на клиенти',
- 'buffer' => 'буфер',
- 'bug' => 'Подайте сигнал за грешка',
- 'but' => 'Но',
- 'cancel' => 'Отказ',
- 'category' => 'категория',
- 'categories' => 'Категории',
- 'close' => 'Близо',
- 'comment' => 'коментар',
- 'comments' => 'Коментари',
- 'community' => 'общност',
- 'contact' => 'контакт',
- 'contact-desc' => 'Тази заявка за контакт ще бъде изпратена на собственика и ще се свърже с вас възможно най-скоро',
- 'contact-header' => 'Здравейте',
- 'create' => 'създавам',
- 'created_at' => 'Създаден в',
- 'day' => 'ден',
- 'delete' => 'Изтрий',
- 'delete-your-comment' => 'Изтрийте коментара си',
- 'description' => 'описание',
- 'direction' => 'Посока',
- 'disable' => 'правя неспособен',
- 'doubleup_activated' => 'Режимът Глобално двойно качване е активиран',
- 'download' => 'Изтегли',
- 'edit' => 'редактиране',
- 'edit-your-comment' => 'Редактирайте коментара си',
- 'email' => 'Електронна поща',
- 'email-blacklist' => 'Черен списък с имейли',
- 'email-whitelist' => 'Бял списък на имейли',
+ 'active' => 'Активен',
+ 'active-warning' => 'Активно предупреждение',
+ 'add' => 'Добави',
+ 'added' => 'Добавен',
+ 'amount' => 'Количество',
+ 'anonymous' => 'анонимен',
+ 'author' => 'автор',
+ 'balance' => 'баланс',
+ 'blacklist' => 'Черни списъци на клиенти',
+ 'buffer' => 'буфер',
+ 'bug' => 'Подайте сигнал за грешка',
+ 'but' => 'Но',
+ 'cancel' => 'Отказ',
+ 'category' => 'категория',
+ 'categories' => 'Категории',
+ 'close' => 'Близо',
+ 'comment' => 'коментар',
+ 'comments' => 'Коментари',
+ 'community' => 'общност',
+ 'contact' => 'контакт',
+ 'contact-desc' => 'Тази заявка за контакт ще бъде изпратена на собственика и ще се свърже с вас възможно най-скоро',
+ 'contact-header' => 'Здравейте',
+ 'create' => 'създавам',
+ 'created_at' => 'Създаден в',
+ 'day' => 'ден',
+ 'delete' => 'Изтрий',
+ 'delete-your-comment' => 'Изтрийте коментара си',
+ 'description' => 'описание',
+ 'direction' => 'Посока',
+ 'disable' => 'правя неспособен',
+ 'doubleup_activated' => 'Режимът Глобално двойно качване е активиран',
+ 'download' => 'Изтегли',
+ 'edit' => 'редактиране',
+ 'edit-your-comment' => 'Редактирайте коментара си',
+ 'email' => 'Електронна поща',
+ 'email-blacklist' => 'Черен списък с имейли',
+ 'email-whitelist' => 'Бял списък на имейли',
'email-list-notactive' => 'Белия списък на електронната поща / Черния списък Системата не е активирана',
- 'enable' => 'Активиране',
- 'enter' => 'Въведете',
- 'error' => 'грешка',
- 'everyday' => 'Всеки ден',
- 'expired' => 'Просрочен',
- 'extra' => 'екстра',
- 'extra-stats' => 'Изключително Статистика',
- 'faq' => 'ЧЗВ',
- 'files' => 'файлове',
- 'fl_token' => 'Свободен знак',
- 'fl_tokens' => 'Самостоятелни токени',
- 'for' => 'за',
- 'forum' => 'форум',
- 'free' => 'Безплатно',
- 'freeleech_activated' => 'Активиран е глобален режим на свободна употреба',
- 'global' => 'в световен мащаб',
- 'group' => 'група',
- 'groups' => 'Групи',
- 'hidden' => 'скрит',
- 'high-speeds' => 'Високи скорости',
- 'home' => 'У дома',
- 'hot' => 'Горещо!',
- 'hour' => 'час',
- 'huge' => 'огромен',
- 'info' => 'Информация',
- 'internal' => 'вътрешен',
- 'ip' => 'IP',
- 'is-allowed' => 'е позволено',
- 'large' => 'Голям',
- 'latest' => 'Последен',
- 'latest-posts' => 'Последни публикации',
- 'latest-topics' => 'Последни теми',
- 'legal' => 'правен',
- 'legend' => 'легенда',
- 'lists' => 'списъци',
- 'lock-account' => 'Заключване на сметка',
- 'logout' => 'Излез от профила си',
- 'members' => 'Потребители',
- 'message' => 'съобщение',
- 'minute' => 'минута',
- 'moderated-by' => 'Модератор на',
- 'moderation' => 'умереност',
- 'moderation-approve' => 'одобрявам',
- 'moderation-postpone' => 'отлагам',
- 'moderation-reject' => 'Отхвърляне',
- 'month' => 'месец',
- 'months' => 'Месеци',
- 'my' => 'мой',
- 'name' => 'име',
- 'navigation' => 'навигация',
- 'new' => 'Ново!',
- 'new-adj' => 'Ново',
- 'news' => 'Новини',
- 'next' => 'Следващия',
- 'no' => 'Не',
- 'no-comments' => 'Без коментари все още',
- 'no-result' => 'Няма резултат в базата данни за заявка',
- 'notifications' => 'Известия',
- 'older-than' => 'По-стари от',
- 'oldest' => 'най-старите',
- 'openreg_activated' => 'Активирана е отворена регистрация',
- 'order-by' => 'Подредени по',
- 'other' => 'друг',
- 'pages' => 'Страници',
- 'password' => 'парола',
- 'patron' => 'Станете покровител',
- 'pending-torrents' => 'Предстоящи торенти',
- 'personal' => 'персонален',
- 'plural-suffix' => 'с',
- 'port' => 'порт',
- 'position' => 'позиция',
- 'posts' => 'Публикации',
- 'powered-by' => 'Осъществено от UNIT3D',
- 'preview' => 'предварителен преглед',
- 'previous' => 'предишен',
- 'progress' => 'прогрес',
- 'publish' => 'публикувам',
- 'quantity' => 'количество',
- 'quick-search' => 'Бързо търсене',
- 'ratio' => 'съотношение',
- 'reason' => 'причина',
- 'remove' => 'Премахване',
- 'report' => 'доклад',
- 'resend' => 'Повторно изпращане',
- 'reporter' => 'репортер',
- 'required' => 'длъжен',
- 'results' => 'Резултати',
- 'rss-system' => 'RSS система',
- 'rules' => 'правилник',
- 'save' => 'Запази',
- 'search' => 'Търсене',
- 'search-results' => 'Резултати от търсенето',
- 'search-results-desc' => 'Моля, вижте резултатите си по-долу',
- 'second' => 'втори',
- 'select' => 'Изберете',
- 'sort' => 'Вид',
- 'special' => 'Специален',
- 'staff' => 'Персонал',
- 'staff-tools' => 'Инструменти на персонала',
- 'stats' => 'Статистика',
- 'status' => 'Статус',
- 'sticked' => 'залепват',
- 'submit' => 'Изпращане',
- 'subscriptions' => 'Абонаменти',
- 'teams' => 'Отбори',
- 'terms' => 'Условия за ползване',
- 'times' => 'пъти',
- 'title' => 'Заглавие',
- 'top-bountied' => 'Нагоре превъзхожда',
- 'topics' => 'Теми',
- 'tracker-codes' => 'Кодове за проследяване',
- 'type' => 'Тип',
- 'type-verb' => 'Тип',
- 'types' => 'Видове',
- 'genre' => 'жанр',
- 'genres' => 'Жанрове',
- 'action' => 'действие',
- 'actions' => 'мерки',
- 'unknown' => 'неизвестен',
+ 'enable' => 'Активиране',
+ 'enter' => 'Въведете',
+ 'error' => 'грешка',
+ 'everyday' => 'Всеки ден',
+ 'expired' => 'Просрочен',
+ 'extra' => 'екстра',
+ 'extra-stats' => 'Изключително Статистика',
+ 'faq' => 'ЧЗВ',
+ 'files' => 'файлове',
+ 'fl_token' => 'Свободен знак',
+ 'fl_tokens' => 'Самостоятелни токени',
+ 'for' => 'за',
+ 'forum' => 'форум',
+ 'free' => 'Безплатно',
+ 'freeleech_activated' => 'Активиран е глобален режим на свободна употреба',
+ 'global' => 'в световен мащаб',
+ 'group' => 'група',
+ 'groups' => 'Групи',
+ 'hidden' => 'скрит',
+ 'high-speeds' => 'Високи скорости',
+ 'home' => 'У дома',
+ 'hot' => 'Горещо!',
+ 'hour' => 'час',
+ 'huge' => 'огромен',
+ 'info' => 'Информация',
+ 'internal' => 'вътрешен',
+ 'ip' => 'IP',
+ 'is-allowed' => 'е позволено',
+ 'large' => 'Голям',
+ 'latest' => 'Последен',
+ 'latest-posts' => 'Последни публикации',
+ 'latest-topics' => 'Последни теми',
+ 'legal' => 'правен',
+ 'legend' => 'легенда',
+ 'lists' => 'списъци',
+ 'lock-account' => 'Заключване на сметка',
+ 'logout' => 'Излез от профила си',
+ 'members' => 'Потребители',
+ 'message' => 'съобщение',
+ 'minute' => 'минута',
+ 'moderated-by' => 'Модератор на',
+ 'moderation' => 'умереност',
+ 'moderation-approve' => 'одобрявам',
+ 'moderation-postpone' => 'отлагам',
+ 'moderation-reject' => 'Отхвърляне',
+ 'month' => 'месец',
+ 'months' => 'Месеци',
+ 'my' => 'мой',
+ 'name' => 'име',
+ 'navigation' => 'навигация',
+ 'new' => 'Ново!',
+ 'new-adj' => 'Ново',
+ 'news' => 'Новини',
+ 'next' => 'Следващия',
+ 'no' => 'Не',
+ 'no-comments' => 'Без коментари все още',
+ 'no-result' => 'Няма резултат в базата данни за заявка',
+ 'notifications' => 'Известия',
+ 'older-than' => 'По-стари от',
+ 'oldest' => 'най-старите',
+ 'openreg_activated' => 'Активирана е отворена регистрация',
+ 'order-by' => 'Подредени по',
+ 'other' => 'друг',
+ 'pages' => 'Страници',
+ 'password' => 'парола',
+ 'patron' => 'Станете покровител',
+ 'pending-torrents' => 'Предстоящи торенти',
+ 'personal' => 'персонален',
+ 'plural-suffix' => 'с',
+ 'port' => 'порт',
+ 'position' => 'позиция',
+ 'posts' => 'Публикации',
+ 'powered-by' => 'Осъществено от UNIT3D',
+ 'preview' => 'предварителен преглед',
+ 'previous' => 'предишен',
+ 'progress' => 'прогрес',
+ 'publish' => 'публикувам',
+ 'quantity' => 'количество',
+ 'quick-search' => 'Бързо търсене',
+ 'ratio' => 'съотношение',
+ 'reason' => 'причина',
+ 'remove' => 'Премахване',
+ 'report' => 'доклад',
+ 'resend' => 'Повторно изпращане',
+ 'reporter' => 'репортер',
+ 'required' => 'длъжен',
+ 'results' => 'Резултати',
+ 'rss-system' => 'RSS система',
+ 'rules' => 'правилник',
+ 'save' => 'Запази',
+ 'search' => 'Търсене',
+ 'search-results' => 'Резултати от търсенето',
+ 'search-results-desc' => 'Моля, вижте резултатите си по-долу',
+ 'second' => 'втори',
+ 'select' => 'Изберете',
+ 'sort' => 'Вид',
+ 'special' => 'Специален',
+ 'staff' => 'Персонал',
+ 'staff-tools' => 'Инструменти на персонала',
+ 'stats' => 'Статистика',
+ 'status' => 'Статус',
+ 'sticked' => 'залепват',
+ 'submit' => 'Изпращане',
+ 'subscriptions' => 'Абонаменти',
+ 'teams' => 'Отбори',
+ 'terms' => 'Условия за ползване',
+ 'times' => 'пъти',
+ 'title' => 'Заглавие',
+ 'top-bountied' => 'Нагоре превъзхожда',
+ 'topics' => 'Теми',
+ 'tracker-codes' => 'Кодове за проследяване',
+ 'type' => 'Тип',
+ 'type-verb' => 'Тип',
+ 'types' => 'Видове',
+ 'genre' => 'жанр',
+ 'genres' => 'Жанрове',
+ 'action' => 'действие',
+ 'actions' => 'мерки',
+ 'unknown' => 'неизвестен',
'unlocked-achievement' => 'Отключихте: постижение на постиженията',
- 'upload' => 'Качи',
- 'upload-guide' => 'Ръководство за качване',
- 'user' => 'потребител',
- 'username' => 'Потребител',
- 'users' => 'Потребители',
- 'view' => 'изглед',
- 'view-all' => 'Виж всички',
- 'warnings' => 'Предупреждения',
- 'year' => 'година',
- 'yes' => 'да',
- 'your' => 'Вашият',
- 'your-comment' => 'Твоят коментар',
+ 'upload' => 'Качи',
+ 'upload-guide' => 'Ръководство за качване',
+ 'user' => 'потребител',
+ 'username' => 'Потребител',
+ 'users' => 'Потребители',
+ 'view' => 'изглед',
+ 'view-all' => 'Виж всички',
+ 'warnings' => 'Предупреждения',
+ 'year' => 'година',
+ 'yes' => 'да',
+ 'your' => 'Вашият',
+ 'your-comment' => 'Твоят коментар',
];
diff --git a/lang/bg/email.php b/lang/bg/email.php
index b332fd5c8..f49218406 100644
--- a/lang/bg/email.php
+++ b/lang/bg/email.php
@@ -12,46 +12,46 @@
*/
return [
- 'activate-account' => 'Активиране на профил',
- 'ban-reason' => 'причина',
- 'banned-footer' => 'Това, което получавате за неспазване на правилата',
- 'banned-header' => 'Вие сте блокиран',
- 'bug-description' => 'проблем',
- 'bug-footer' => 'Поправи това лайно',
- 'bug-header' => 'Нов доклад за грешка от',
- 'bug-priority' => 'приоритет',
- 'bug-title' => 'Заглавие на грешка',
- 'contact-header' => 'Нова контактна поща от',
- 'contact-message' => 'съобщение',
- 'contact-name' => 'име',
+ 'activate-account' => 'Активиране на профил',
+ 'ban-reason' => 'причина',
+ 'banned-footer' => 'Това, което получавате за неспазване на правилата',
+ 'banned-header' => 'Вие сте блокиран',
+ 'bug-description' => 'проблем',
+ 'bug-footer' => 'Поправи това лайно',
+ 'bug-header' => 'Нов доклад за грешка от',
+ 'bug-priority' => 'приоритет',
+ 'bug-title' => 'Заглавие на грешка',
+ 'contact-header' => 'Нова контактна поща от',
+ 'contact-message' => 'съобщение',
+ 'contact-name' => 'име',
'fail-login-greeting' => 'Неуспешно влизане в профила',
- 'fail-login-line1' => 'Открит е неуспешен вход за профила Ви.',
- 'fail-login-line2' => 'Тази молба произхожда от: ip (: host) в: time',
- 'fail-login-subject' => 'Уведомление за неуспешно влизане',
- 'footer-link' => 'Ако имате проблеми с кликване върху бутона: actionText, копирайте и поставете URL адреса по-долу в уеб браузъра си:',
- 'invite-header' => 'Покана за',
- 'invite-invited' => 'Бяхте поканени',
- 'invite-message' => 'съобщение',
- 'invite-signup' => 'Включи се сега',
- 'newreply-header' => 'В темата има нов отговор',
- 'newreply-message' => 'съобщение',
- 'newreply-replied' => 'Отговори на вашата тема',
- 'newreply-view' => 'Преглед сега',
- 'no-email-found' => 'Не успяхме да намерим този имейл в нашата система!',
- 'register-code' => 'За да завършите активирането на профила си, кликнете върху бутона по-долу',
- 'register-footer' => 'Ако горният бутон не работи, копирайте и поставете URL адреса в адресната лента на браузъра',
- 'register-header' => 'Здравейте! Благодарим ви, че се регистрирахте',
- 'report-comment' => 'коментар',
- 'report-email' => 'Електронна поща',
- 'report-header' => 'Здравейте, администратор, в него е съобщена връзка',
- 'report-link' => 'връзка',
- 'report-link-hash' => 'Действителна връзка',
- 'thanks' => 'Благодарим ви, че използвате',
- 'unban-footer' => 'Добре дошъл обратно!',
- 'unban-header' => 'Вие сте били забранени',
- 'unban-reason' => 'причина',
- 'username-reminder' => 'Наскоро ни изпратихте заявка за потребителското ви име в нашето приложение. Потребителското ви име е',
- 'username-sent' => 'Потребителското ви име е изпратено на имейл адреса ви!',
- 'disabled-header' => 'Вашият профил беше изключен',
- 'pruned-header' => 'Вашият профил е бил подрязан',
+ 'fail-login-line1' => 'Открит е неуспешен вход за профила Ви.',
+ 'fail-login-line2' => 'Тази молба произхожда от: ip (: host) в: time',
+ 'fail-login-subject' => 'Уведомление за неуспешно влизане',
+ 'footer-link' => 'Ако имате проблеми с кликване върху бутона: actionText, копирайте и поставете URL адреса по-долу в уеб браузъра си:',
+ 'invite-header' => 'Покана за',
+ 'invite-invited' => 'Бяхте поканени',
+ 'invite-message' => 'съобщение',
+ 'invite-signup' => 'Включи се сега',
+ 'newreply-header' => 'В темата има нов отговор',
+ 'newreply-message' => 'съобщение',
+ 'newreply-replied' => 'Отговори на вашата тема',
+ 'newreply-view' => 'Преглед сега',
+ 'no-email-found' => 'Не успяхме да намерим този имейл в нашата система!',
+ 'register-code' => 'За да завършите активирането на профила си, кликнете върху бутона по-долу',
+ 'register-footer' => 'Ако горният бутон не работи, копирайте и поставете URL адреса в адресната лента на браузъра',
+ 'register-header' => 'Здравейте! Благодарим ви, че се регистрирахте',
+ 'report-comment' => 'коментар',
+ 'report-email' => 'Електронна поща',
+ 'report-header' => 'Здравейте, администратор, в него е съобщена връзка',
+ 'report-link' => 'връзка',
+ 'report-link-hash' => 'Действителна връзка',
+ 'thanks' => 'Благодарим ви, че използвате',
+ 'unban-footer' => 'Добре дошъл обратно!',
+ 'unban-header' => 'Вие сте били забранени',
+ 'unban-reason' => 'причина',
+ 'username-reminder' => 'Наскоро ни изпратихте заявка за потребителското ви име в нашето приложение. Потребителското ви име е',
+ 'username-sent' => 'Потребителското ви име е изпратено на имейл адреса ви!',
+ 'disabled-header' => 'Вашият профил беше изключен',
+ 'pruned-header' => 'Вашият профил е бил подрязан',
];
diff --git a/lang/bg/forum.php b/lang/bg/forum.php
index d5a3923ae..cf068fbe5 100644
--- a/lang/bg/forum.php
+++ b/lang/bg/forum.php
@@ -12,63 +12,63 @@
*/
return [
- 'action' => 'действие',
- 'activity' => 'Дейност',
- 'approved' => 'одобрен',
- 'author' => 'автор',
- 'bug' => 'Буболечка',
- 'category-quick-search' => 'Име на бързото търсене на тема (в рамките на категорията)',
- 'close-topic' => 'Заключване на тема',
- 'closed' => 'затворен',
- 'create-new-topic' => 'Създаване на нова тема',
- 'created' => 'Създаден',
- 'current' => 'Текущ',
- 'delete-topic' => 'Изтриване на тази тема',
- 'denied' => 'Отказан',
- 'dislike-post' => 'Не харесвам тази публикация',
- 'display-forum' => 'Показване на теми в',
- 'edit-post' => 'Редактиране на публикация',
- 'edit-topic' => 'Редактиране на тема',
- 'forum' => 'форум',
- 'forums' => 'Форуми',
- 'implemented' => 'Изпълнено',
- 'in' => 'в',
- 'invalid' => 'невалиден',
- 'label' => 'етикет',
- 'label-system' => 'Система за етикети',
- 'last-message' => 'Последно съобщение',
- 'last-post-info' => 'Информация за последната публикация',
- 'latest' => 'Последен',
- 'like-post' => 'Като тази публикация',
- 'meta-category' => 'Списък на форумите в категорията',
- 'moderation' => 'умереност',
- 'name' => 'име',
- 'not-connected' => 'Трябва да сте свързани',
- 'not-subscribed' => 'Не е абониран',
- 'open' => 'отворено',
- 'open-topic' => 'Отворете тази тема',
- 'permalink' => 'Permalink',
- 'pin' => 'щифт',
- 'post' => 'пост',
- 'post-quick-search' => 'Бързо търсене на тялото на публикацията',
- 'posts' => 'Публикации',
- 'quote' => 'цитат',
- 'read-topic' => 'Прочетете темата',
- 'replies' => 'Отговори',
- 'send-new-topic' => 'Запазване на тази тема',
- 'solved' => 'Решен',
- 'state' => 'състояние',
- 'stats' => 'Статистика',
- 'subscribed' => 'Записан',
+ 'action' => 'действие',
+ 'activity' => 'Дейност',
+ 'approved' => 'одобрен',
+ 'author' => 'автор',
+ 'bug' => 'Буболечка',
+ 'category-quick-search' => 'Име на бързото търсене на тема (в рамките на категорията)',
+ 'close-topic' => 'Заключване на тема',
+ 'closed' => 'затворен',
+ 'create-new-topic' => 'Създаване на нова тема',
+ 'created' => 'Създаден',
+ 'current' => 'Текущ',
+ 'delete-topic' => 'Изтриване на тази тема',
+ 'denied' => 'Отказан',
+ 'dislike-post' => 'Не харесвам тази публикация',
+ 'display-forum' => 'Показване на теми в',
+ 'edit-post' => 'Редактиране на публикация',
+ 'edit-topic' => 'Редактиране на тема',
+ 'forum' => 'форум',
+ 'forums' => 'Форуми',
+ 'implemented' => 'Изпълнено',
+ 'in' => 'в',
+ 'invalid' => 'невалиден',
+ 'label' => 'етикет',
+ 'label-system' => 'Система за етикети',
+ 'last-message' => 'Последно съобщение',
+ 'last-post-info' => 'Информация за последната публикация',
+ 'latest' => 'Последен',
+ 'like-post' => 'Като тази публикация',
+ 'meta-category' => 'Списък на форумите в категорията',
+ 'moderation' => 'умереност',
+ 'name' => 'име',
+ 'not-connected' => 'Трябва да сте свързани',
+ 'not-subscribed' => 'Не е абониран',
+ 'open' => 'отворено',
+ 'open-topic' => 'Отворете тази тема',
+ 'permalink' => 'Permalink',
+ 'pin' => 'щифт',
+ 'post' => 'пост',
+ 'post-quick-search' => 'Бързо търсене на тялото на публикацията',
+ 'posts' => 'Публикации',
+ 'quote' => 'цитат',
+ 'read-topic' => 'Прочетете темата',
+ 'replies' => 'Отговори',
+ 'send-new-topic' => 'Запазване на тази тема',
+ 'solved' => 'Решен',
+ 'state' => 'състояние',
+ 'stats' => 'Статистика',
+ 'subscribed' => 'Записан',
'subscription-quick-search' => 'Бързо търсене на име на тема (в рамките на абонаментите)',
- 'suggestion' => 'Внушение',
- 'topic' => 'тема',
- 'topic-closed' => 'Тази тема е затворена',
- 'topic-name' => 'Име на тема',
- 'topic-quick-search' => 'Име на бързото търсене',
- 'topic-title' => 'Заглавие на тази тема',
- 'topics' => 'Теми',
- 'unpin' => 'Освобождаване',
- 'view-all' => 'Преглед на всички теми',
- 'views' => 'Прегледи',
+ 'suggestion' => 'Внушение',
+ 'topic' => 'тема',
+ 'topic-closed' => 'Тази тема е затворена',
+ 'topic-name' => 'Име на тема',
+ 'topic-quick-search' => 'Име на бързото търсене',
+ 'topic-title' => 'Заглавие на тази тема',
+ 'topics' => 'Теми',
+ 'unpin' => 'Освобождаване',
+ 'view-all' => 'Преглед на всички теми',
+ 'views' => 'Прегледи',
];
diff --git a/lang/bg/graveyard.php b/lang/bg/graveyard.php
index 2ce2f22b2..df879a4c8 100644
--- a/lang/bg/graveyard.php
+++ b/lang/bg/graveyard.php
@@ -12,15 +12,15 @@
*/
return [
- 'dead' => 'мъртъв',
- 'graveyard' => 'гробище',
- 'guidelines' => 'Насоки',
+ 'dead' => 'мъртъв',
+ 'graveyard' => 'гробище',
+ 'guidelines' => 'Насоки',
'guidelines-content' => '1) Не можете да възкресите собствените си качвания.
2) Не възкресете нещо, което не можете да ангажирате.',
- 'howto' => 'Тук е правилото',
- 'howto-desc1' => 'Трябва да посадите : име за 30 дни за успешното възкресяване. В този случай, когато текущото ви време на засяване',
- 'howto-desc2' => 'Ще бъдете възнаградени',
- 'howto-hits' => 'Хитове',
- 'pending' => 'в очакване на',
- 'resurrect' => 'възкресявам',
- 'reward' => 'Токени на свободна употреба',
+ 'howto' => 'Тук е правилото',
+ 'howto-desc1' => 'Трябва да посадите : име за 30 дни за успешното възкресяване. В този случай, когато текущото ви време на засяване',
+ 'howto-desc2' => 'Ще бъдете възнаградени',
+ 'howto-hits' => 'Хитове',
+ 'pending' => 'в очакване на',
+ 'resurrect' => 'възкресявам',
+ 'reward' => 'Токени на свободна употреба',
];
diff --git a/lang/bg/notification.php b/lang/bg/notification.php
index 53f416a1b..a8897598b 100644
--- a/lang/bg/notification.php
+++ b/lang/bg/notification.php
@@ -12,14 +12,14 @@
*/
return [
- 'date' => 'Дата',
- 'delete' => 'Изтрий',
- 'delete-all' => 'Изтрийте всички известия',
- 'mark-all-read' => 'маркирай всички като прочетени',
- 'mark-read' => 'Маркирай като прочетено',
- 'message' => 'съобщение',
+ 'date' => 'Дата',
+ 'delete' => 'Изтрий',
+ 'delete-all' => 'Изтрийте всички известия',
+ 'mark-all-read' => 'маркирай всички като прочетени',
+ 'mark-read' => 'Маркирай като прочетено',
+ 'message' => 'съобщение',
'no-notifications' => 'Няма намерени уведомления',
- 'notifications' => 'Известия',
- 'read' => 'Прочети',
- 'title' => 'Заглавие',
+ 'notifications' => 'Известия',
+ 'read' => 'Прочети',
+ 'title' => 'Заглавие',
];
diff --git a/lang/bg/page.php b/lang/bg/page.php
index a7ab440f2..499235c3c 100644
--- a/lang/bg/page.php
+++ b/lang/bg/page.php
@@ -12,28 +12,28 @@
*/
return [
- 'aboutus-advantage' => 'Предимството',
- 'aboutus-advantage1' => 'Ние имаме опитни членове и персонал, които са добре запознати със света на HD видео / аудио и техническа поддръжка.',
- 'aboutus-advantage2' => 'Наред с обширната ни страст към филми и телевизионни предавания, ние предлагаме и една от най-добрите селекции на нещо, което най-много - FANRES! Голяма благодарност на нашите носители на съдържание.',
- 'aboutus-advantage3' => 'Докато приемаме дарения, за да запазим сайта и да работим, няма да има никакви пренебрежителни ПМ или банери на място. Не просихме от нас.',
- 'aboutus-advantage4' => 'Нашата общност е безпристрастна за ранната си възраст. Между нашите служители и userbase, винаги сме били тук, за да помогнем. Бяхме страстни да се уверите, че опитът ви върху: заглавието не е нищо друго освен невероятно.',
- 'aboutus-advantage5' => 'Нашите услуги се използват ежедневно от много хора по целия свят. Доказахме, че ни е грижа за функционалността и сигурността на нашата кодова база и тя може да се ползва с доверие. Нашите разработчици работят ежедневно, за да предоставят наистина nex-gen кодова база.',
- 'aboutus-header' => 'Здрасти',
- 'aboutus-rules' => 'Това, от което се нуждаем',
- 'aboutus-rules1' => 'Да бъдеш активен член на общността! Това означава да се включите в разговорите продуктивно, да добавите одобрено съдържание и да помогнете на други потребители, ако имате възможност.',
- 'aboutus-rules2' => 'За да прочетете правилата изцяло и ги уважавайте!',
- 'aboutus-rules3' => 'Правя предложения! Стремим се да правим: титла по-добре всеки ден. Ние не казваме, че всяко предложение ще се използва, но никога не боли да види нови идеи.',
- 'aboutus-welcome' => 'Да поговорим',
- 'aboutus-welcome-desc' => ': Заглавието е създадена от общността филм / ТВ / FANRES база данни. Всяка част от данните са добавени от нашите невероятни общност, тъй като 2017: титли силен фокус е върху HD съдържание, проактивна userbase, едно страхотно / сигурна програмния код и полезен и приятелски екип на персонала.',
- 'blacklist-browsers' => 'Браузъри',
- 'blacklist-btclient' => 'Клиент на BitTorrent',
- 'blacklist-clients' => 'клиенти',
- 'blacklist-desc' => 'Следните браузъри и клиенти на Bittorrent са включени в черния списък / забранени от обявяване на: заглавие',
- 'blacklist-webbrowser' => 'Уеб браузър',
+ 'aboutus-advantage' => 'Предимството',
+ 'aboutus-advantage1' => 'Ние имаме опитни членове и персонал, които са добре запознати със света на HD видео / аудио и техническа поддръжка.',
+ 'aboutus-advantage2' => 'Наред с обширната ни страст към филми и телевизионни предавания, ние предлагаме и една от най-добрите селекции на нещо, което най-много - FANRES! Голяма благодарност на нашите носители на съдържание.',
+ 'aboutus-advantage3' => 'Докато приемаме дарения, за да запазим сайта и да работим, няма да има никакви пренебрежителни ПМ или банери на място. Не просихме от нас.',
+ 'aboutus-advantage4' => 'Нашата общност е безпристрастна за ранната си възраст. Между нашите служители и userbase, винаги сме били тук, за да помогнем. Бяхме страстни да се уверите, че опитът ви върху: заглавието не е нищо друго освен невероятно.',
+ 'aboutus-advantage5' => 'Нашите услуги се използват ежедневно от много хора по целия свят. Доказахме, че ни е грижа за функционалността и сигурността на нашата кодова база и тя може да се ползва с доверие. Нашите разработчици работят ежедневно, за да предоставят наистина nex-gen кодова база.',
+ 'aboutus-header' => 'Здрасти',
+ 'aboutus-rules' => 'Това, от което се нуждаем',
+ 'aboutus-rules1' => 'Да бъдеш активен член на общността! Това означава да се включите в разговорите продуктивно, да добавите одобрено съдържание и да помогнете на други потребители, ако имате възможност.',
+ 'aboutus-rules2' => 'За да прочетете правилата изцяло и ги уважавайте!',
+ 'aboutus-rules3' => 'Правя предложения! Стремим се да правим: титла по-добре всеки ден. Ние не казваме, че всяко предложение ще се използва, но никога не боли да види нови идеи.',
+ 'aboutus-welcome' => 'Да поговорим',
+ 'aboutus-welcome-desc' => ': Заглавието е създадена от общността филм / ТВ / FANRES база данни. Всяка част от данните са добавени от нашите невероятни общност, тъй като 2017: титли силен фокус е върху HD съдържание, проактивна userbase, едно страхотно / сигурна програмния код и полезен и приятелски екип на персонала.',
+ 'blacklist-browsers' => 'Браузъри',
+ 'blacklist-btclient' => 'Клиент на BitTorrent',
+ 'blacklist-clients' => 'клиенти',
+ 'blacklist-desc' => 'Следните браузъри и клиенти на Bittorrent са включени в черния списък / забранени от обявяване на: заглавие',
+ 'blacklist-webbrowser' => 'Уеб браузър',
'blacklist-emaildomain' => 'Блокиран домейн',
- 'email-blacklist-desc' => 'Следните имейл домейни са блокирани от използването им. Не можете да се регистрирате или да изпратите покана към следното.',
- 'email-whitelist-desc' => 'Следните имейл домейни са единствените позволени домейни за електронна поща. Можете само да регистрирате или да изпратите покана, използвайки следното.',
- 'staff-group' => 'група',
- 'staff-title' => 'Заглавие',
+ 'email-blacklist-desc' => 'Следните имейл домейни са блокирани от използването им. Не можете да се регистрирате или да изпратите покана към следното.',
+ 'email-whitelist-desc' => 'Следните имейл домейни са единствените позволени домейни за електронна поща. Можете само да регистрирате или да изпратите покана, използвайки следното.',
+ 'staff-group' => 'група',
+ 'staff-title' => 'Заглавие',
'whitelist-emaildomain' => 'Доверен домейн',
];
diff --git a/lang/bg/pagination.php b/lang/bg/pagination.php
index 46ff5a250..254ad55e4 100644
--- a/lang/bg/pagination.php
+++ b/lang/bg/pagination.php
@@ -24,5 +24,5 @@ return [
*/
'previous' => '« Назад',
- 'next' => 'Напред »',
+ 'next' => 'Напред »',
];
diff --git a/lang/bg/passwords.php b/lang/bg/passwords.php
index 551cce5bb..8e1c395d9 100644
--- a/lang/bg/passwords.php
+++ b/lang/bg/passwords.php
@@ -24,8 +24,8 @@ return [
*/
'password' => 'Паролата трябва да бъде поне шест знака и да съвпада.',
- 'reset' => 'Паролата е нулирана!',
- 'sent' => 'Изпратено е напомняне за вашата парола!',
- 'token' => 'Този токен за нулиране на парола е невалиден.',
- 'user' => 'Потребител с такъв e-mail адрес не може да бъде открит.',
+ 'reset' => 'Паролата е нулирана!',
+ 'sent' => 'Изпратено е напомняне за вашата парола!',
+ 'token' => 'Този токен за нулиране на парола е невалиден.',
+ 'user' => 'Потребител с такъв e-mail адрес не може да бъде открит.',
];
diff --git a/lang/bg/pm.php b/lang/bg/pm.php
index 5b1da1687..374f91498 100644
--- a/lang/bg/pm.php
+++ b/lang/bg/pm.php
@@ -12,28 +12,28 @@
*/
return [
- 'create' => 'създавам',
- 'delete' => 'Изтрий',
+ 'create' => 'създавам',
+ 'delete' => 'Изтрий',
'enter-subject' => 'Въведете тема',
- 'from' => 'от',
- 'inbox' => 'Входящи',
+ 'from' => 'от',
+ 'inbox' => 'Входящи',
'mark-all-read' => 'Маркирайте всички съобщения като прочетени',
- 'message' => 'съобщение',
- 'messages' => 'Съобщения',
- 'new' => 'Ново съобщение',
- 'outbox' => 'Изходящи',
- 'private' => 'частен',
- 'read' => 'Прочети',
- 'received-at' => 'Получено на',
- 'refresh' => 'Обновяване',
- 'reply' => 'Отговор',
- 'search' => 'Търсене по предмет',
- 'select' => 'Изберете Потребител',
- 'send' => 'Изпрати PM',
- 'send-to' => 'Изпрати PM To',
- 'sent' => 'Изпратено',
- 'sent-at' => 'Изпратено на',
- 'subject' => 'Предмет',
- 'to' => 'Да се',
- 'unread' => 'непрочетен',
+ 'message' => 'съобщение',
+ 'messages' => 'Съобщения',
+ 'new' => 'Ново съобщение',
+ 'outbox' => 'Изходящи',
+ 'private' => 'частен',
+ 'read' => 'Прочети',
+ 'received-at' => 'Получено на',
+ 'refresh' => 'Обновяване',
+ 'reply' => 'Отговор',
+ 'search' => 'Търсене по предмет',
+ 'select' => 'Изберете Потребител',
+ 'send' => 'Изпрати PM',
+ 'send-to' => 'Изпрати PM To',
+ 'sent' => 'Изпратено',
+ 'sent-at' => 'Изпратено на',
+ 'subject' => 'Предмет',
+ 'to' => 'Да се',
+ 'unread' => 'непрочетен',
];
diff --git a/lang/bg/poll.php b/lang/bg/poll.php
index b25a6d113..081ebc0c8 100644
--- a/lang/bg/poll.php
+++ b/lang/bg/poll.php
@@ -12,18 +12,18 @@
*/
return [
- 'add-option' => 'Добавяне на опция',
- 'create-poll' => 'Създайте анкета',
- 'current' => 'Текущи анкети',
- 'delete-option' => 'Изтриване на опцията',
+ 'add-option' => 'Добавяне на опция',
+ 'create-poll' => 'Създайте анкета',
+ 'current' => 'Текущи анкети',
+ 'delete-option' => 'Изтриване на опцията',
'multiple-choice' => 'Това е анкета с множествен избор. Изберете колкото искате отговори.',
- 'option' => 'опция',
- 'poll' => 'гласуване',
- 'polls' => 'Анкети',
- 'results' => 'Резултати от анкетата',
- 'title' => 'Заглавие',
- 'total' => 'Общо гласове',
- 'vote' => 'гласуване',
- 'vote-now' => 'Вземете своя глас сега!',
- 'votes' => 'Гласове',
+ 'option' => 'опция',
+ 'poll' => 'гласуване',
+ 'polls' => 'Анкети',
+ 'results' => 'Резултати от анкетата',
+ 'title' => 'Заглавие',
+ 'total' => 'Общо гласове',
+ 'vote' => 'гласуване',
+ 'vote-now' => 'Вземете своя глас сега!',
+ 'votes' => 'Гласове',
];
diff --git a/lang/bg/request.php b/lang/bg/request.php
index b8392babf..8a7e3b6b1 100644
--- a/lang/bg/request.php
+++ b/lang/bg/request.php
@@ -12,67 +12,67 @@
*/
return [
- 'add-request' => 'Добавете заявка',
- 'age' => 'възраст',
- 'all-requests' => 'Всички заявки',
- 'approve' => 'одобрявам',
- 'bounty' => 'дар',
- 'bounty-claimed' => 'Bounty твърди',
- 'bounty-unclaimed' => 'Неподписан Bounty',
- 'category' => 'категория',
- 'claim' => 'иск',
- 'claim-anon-choose' => 'Моля, избирайте разумно',
- 'claim-as-anon' => 'Бихте ли искали да заявите това самостоятелно',
- 'claim-now' => 'Протвърди сега, потвърждавам',
- 'claimed' => 'Твърдеше',
- 'current' => 'Текущ',
- 'delete' => 'Изтрийте тази заявка',
+ 'add-request' => 'Добавете заявка',
+ 'age' => 'възраст',
+ 'all-requests' => 'Всички заявки',
+ 'approve' => 'одобрявам',
+ 'bounty' => 'дар',
+ 'bounty-claimed' => 'Bounty твърди',
+ 'bounty-unclaimed' => 'Неподписан Bounty',
+ 'category' => 'категория',
+ 'claim' => 'иск',
+ 'claim-anon-choose' => 'Моля, избирайте разумно',
+ 'claim-as-anon' => 'Бихте ли искали да заявите това самостоятелно',
+ 'claim-now' => 'Протвърди сега, потвърждавам',
+ 'claimed' => 'Твърдеше',
+ 'current' => 'Текущ',
+ 'delete' => 'Изтрийте тази заявка',
'delete-confirmation' => 'Наистина ли искате да изтриете тази Заявка',
- 'delete-filled' => 'Тази заявка може да бъде изтрита само ако не е попълнена',
- 'description' => 'описание',
- 'dont-have-bps' => 'Нямате достатъчно бонус',
- 'edit-request' => 'Редактиране на заявката',
- 'enter-bp' => 'Въведете бонус точки (минимум 100)',
- 'enter-hash' => 'Въведете Информационния хеш на качения Torrent',
- 'fill' => 'Напълнете',
- 'fill-request' => 'Попълнете тази заявка',
- 'filled' => 'с примес',
- 'filled-by' => 'Попълнено от',
- 'for' => 'за',
- 'fulfill' => 'Изпълнете',
- 'last-vote' => 'Последно гласуване',
- 'my-requests' => 'Моите искания',
- 'no' => 'Не,',
- 'no-imdb-id' => 'Всички заявки трябва да съдържат IMDB номер',
- 'no-privileges' => 'Грешка: Вашите права за заявка бяха деактивирани',
- 'no-privileges-desc' => 'Ако смятате, че това е грешка, моля, свържете се с персонала',
- 'no-refunds' => 'BON борсите за създаване, запълване и награди са окончателни!
НЯМА ВЪЗСТАНОВЯВАНИЯ!',
- 'pending' => 'в очакване на',
- 'reason' => 'причина',
- 'reject' => 'Отхвърляне',
- 'report' => 'Отчет за заявка',
- 'request' => 'поискване',
- 'request-details' => 'Заявете подробности',
- 'requested-by' => 'Поискано от',
- 'requests' => 'Исканията',
- 'required' => 'длъжен',
- 'reset' => 'Нулиране',
- 'reset-confirmation' => 'Наистина ли искате да нулирате тази Заявка',
- 'reset-request' => 'Нулирайте тази заявка',
- 'reward' => 'Награда',
- 'reward-desc' => 'Колко бонус точка бихте искали да наградите? Минимум 100 BP',
- 'reward-from' => 'от',
- 'title' => 'Заглавие',
- 'torrent-hash' => 'Торент Хаш',
- 'total-bounty' => 'Общо награда',
- 'type' => 'Тип',
- 'unclaim' => 'Оттеглете тази молба',
- 'unfilled' => 'Unfilled',
- 'view-filled' => 'Изглед попълнен',
- 'view-unfilled' => 'Изглед незапълнен',
- 'vote' => 'гласуване',
- 'vote-that' => 'Гласувайте за тази заявка',
- 'voters' => 'Гласоподавателите',
- 'votes' => 'Гласове',
- 'yes' => 'да',
+ 'delete-filled' => 'Тази заявка може да бъде изтрита само ако не е попълнена',
+ 'description' => 'описание',
+ 'dont-have-bps' => 'Нямате достатъчно бонус',
+ 'edit-request' => 'Редактиране на заявката',
+ 'enter-bp' => 'Въведете бонус точки (минимум 100)',
+ 'enter-hash' => 'Въведете Информационния хеш на качения Torrent',
+ 'fill' => 'Напълнете',
+ 'fill-request' => 'Попълнете тази заявка',
+ 'filled' => 'с примес',
+ 'filled-by' => 'Попълнено от',
+ 'for' => 'за',
+ 'fulfill' => 'Изпълнете',
+ 'last-vote' => 'Последно гласуване',
+ 'my-requests' => 'Моите искания',
+ 'no' => 'Не,',
+ 'no-imdb-id' => 'Всички заявки трябва да съдържат IMDB номер',
+ 'no-privileges' => 'Грешка: Вашите права за заявка бяха деактивирани',
+ 'no-privileges-desc' => 'Ако смятате, че това е грешка, моля, свържете се с персонала',
+ 'no-refunds' => 'BON борсите за създаване, запълване и награди са окончателни!
НЯМА ВЪЗСТАНОВЯВАНИЯ!',
+ 'pending' => 'в очакване на',
+ 'reason' => 'причина',
+ 'reject' => 'Отхвърляне',
+ 'report' => 'Отчет за заявка',
+ 'request' => 'поискване',
+ 'request-details' => 'Заявете подробности',
+ 'requested-by' => 'Поискано от',
+ 'requests' => 'Исканията',
+ 'required' => 'длъжен',
+ 'reset' => 'Нулиране',
+ 'reset-confirmation' => 'Наистина ли искате да нулирате тази Заявка',
+ 'reset-request' => 'Нулирайте тази заявка',
+ 'reward' => 'Награда',
+ 'reward-desc' => 'Колко бонус точка бихте искали да наградите? Минимум 100 BP',
+ 'reward-from' => 'от',
+ 'title' => 'Заглавие',
+ 'torrent-hash' => 'Торент Хаш',
+ 'total-bounty' => 'Общо награда',
+ 'type' => 'Тип',
+ 'unclaim' => 'Оттеглете тази молба',
+ 'unfilled' => 'Unfilled',
+ 'view-filled' => 'Изглед попълнен',
+ 'view-unfilled' => 'Изглед незапълнен',
+ 'vote' => 'гласуване',
+ 'vote-that' => 'Гласувайте за тази заявка',
+ 'voters' => 'Гласоподавателите',
+ 'votes' => 'Гласове',
+ 'yes' => 'да',
];
diff --git a/lang/bg/rss.php b/lang/bg/rss.php
index 0588bc778..48d95f593 100644
--- a/lang/bg/rss.php
+++ b/lang/bg/rss.php
@@ -12,19 +12,19 @@
*/
return [
- 'create' => 'създавам',
+ 'create' => 'създавам',
'create-private-feed' => 'Създаване на личен RSS канал',
- 'create-public-feed' => 'Създаване на обществен RSS канал',
- 'delete' => 'Изтрий',
- 'edit' => 'редактиране',
- 'edit-private-feed' => 'Редактиране на частен RSS канал',
- 'edit-public-feed' => 'Редактиране на обществен RSS канал',
- 'feed' => 'фураж',
- 'feeds' => 'емисии',
- 'name' => 'име',
- 'public' => 'обществен',
- 'private' => 'частен',
- 'rss' => 'RSS',
- 'rss-feed' => 'RSS емисия',
- 'type' => 'Тип',
+ 'create-public-feed' => 'Създаване на обществен RSS канал',
+ 'delete' => 'Изтрий',
+ 'edit' => 'редактиране',
+ 'edit-private-feed' => 'Редактиране на частен RSS канал',
+ 'edit-public-feed' => 'Редактиране на обществен RSS канал',
+ 'feed' => 'фураж',
+ 'feeds' => 'емисии',
+ 'name' => 'име',
+ 'public' => 'обществен',
+ 'private' => 'частен',
+ 'rss' => 'RSS',
+ 'rss-feed' => 'RSS емисия',
+ 'type' => 'Тип',
];
diff --git a/lang/bg/staff.php b/lang/bg/staff.php
index 8c96461d3..be11b2b7b 100644
--- a/lang/bg/staff.php
+++ b/lang/bg/staff.php
@@ -12,48 +12,48 @@
*/
return [
- 'audit-log' => 'Дневник дейност',
- 'articles' => 'статии',
- 'applications' => 'Приложения',
- 'bans-log' => 'Вход за забрани',
- 'blocks' => 'блокове',
- 'bot' => 'Bot',
- 'bots' => 'Bots',
- 'chat' => 'Чат',
- 'config-manager' => 'Config Manager',
- 'dashboard' => 'Табло',
- 'failed-login-log' => 'Неуспешен регистрационен файл за вход',
- 'flush-ghost-peers' => 'Флъш Призрачни Peers',
- 'forums' => 'Форуми',
- 'frontend' => 'Frontend',
- 'general-tools' => 'Общи инструменти',
- 'groups' => 'Групи',
- 'invites-log' => 'Журнал на поканите',
- 'laravel-log' => 'Лого на Laravel',
- 'links' => 'звена',
- 'logs' => 'Регистри',
- 'mass-pm' => 'Маса PM',
- 'mass-validate-users' => 'Потребители с масова проверка',
- 'moderation' => 'умереност',
- 'pages' => 'Страници',
- 'please-moderate' => 'Моля, модерирайте този торент!',
- 'polls' => 'Анкети',
- 'reports-log' => 'Регистър на отчетите',
- 'rss' => 'RSS',
- 'staff-dashboard' => 'Табло за управление на персонала',
- 'torrent-categories' => 'Торент категории',
- 'torrent-moderation' => 'Модериране на торента',
- 'torrent-tools' => 'Торент инструменти',
- 'torrent-types' => 'Видове потоци',
- 'torrents' => 'Torrents',
- 'user-gifting' => 'Подаръци на потребители',
- 'user-notes' => 'Дневник на потребителските бележки',
- 'user-search' => 'Търсене на потребители',
- 'user-tools' => 'Потребителски инструменти',
- 'warnings-log' => 'Дневник на предупрежденията',
- 'you-have' => 'Ти имаш',
+ 'audit-log' => 'Дневник дейност',
+ 'articles' => 'статии',
+ 'applications' => 'Приложения',
+ 'bans-log' => 'Вход за забрани',
+ 'blocks' => 'блокове',
+ 'bot' => 'Bot',
+ 'bots' => 'Bots',
+ 'chat' => 'Чат',
+ 'config-manager' => 'Config Manager',
+ 'dashboard' => 'Табло',
+ 'failed-login-log' => 'Неуспешен регистрационен файл за вход',
+ 'flush-ghost-peers' => 'Флъш Призрачни Peers',
+ 'forums' => 'Форуми',
+ 'frontend' => 'Frontend',
+ 'general-tools' => 'Общи инструменти',
+ 'groups' => 'Групи',
+ 'invites-log' => 'Журнал на поканите',
+ 'laravel-log' => 'Лого на Laravel',
+ 'links' => 'звена',
+ 'logs' => 'Регистри',
+ 'mass-pm' => 'Маса PM',
+ 'mass-validate-users' => 'Потребители с масова проверка',
+ 'moderation' => 'умереност',
+ 'pages' => 'Страници',
+ 'please-moderate' => 'Моля, модерирайте този торент!',
+ 'polls' => 'Анкети',
+ 'reports-log' => 'Регистър на отчетите',
+ 'rss' => 'RSS',
+ 'staff-dashboard' => 'Табло за управление на персонала',
+ 'torrent-categories' => 'Торент категории',
+ 'torrent-moderation' => 'Модериране на торента',
+ 'torrent-tools' => 'Торент инструменти',
+ 'torrent-types' => 'Видове потоци',
+ 'torrents' => 'Torrents',
+ 'user-gifting' => 'Подаръци на потребители',
+ 'user-notes' => 'Дневник на потребителските бележки',
+ 'user-search' => 'Търсене на потребители',
+ 'user-tools' => 'Потребителски инструменти',
+ 'warnings-log' => 'Дневник на предупрежденията',
+ 'you-have' => 'Ти имаш',
'possible-leech-cheaters' => 'Възможни измамници',
- 'chat-tools' => 'Инструменти за чат',
- 'flush-chat' => 'Флаш чат',
- 'seedboxes' => 'Регистрирани Seedboxes',
+ 'chat-tools' => 'Инструменти за чат',
+ 'flush-chat' => 'Флаш чат',
+ 'seedboxes' => 'Регистрирани Seedboxes',
];
diff --git a/lang/bg/stat.php b/lang/bg/stat.php
index 40e16e568..f39668a95 100644
--- a/lang/bg/stat.php
+++ b/lang/bg/stat.php
@@ -12,40 +12,40 @@
*/
return [
- 'by-count' => 'По граф',
- 'by-data' => 'По данни',
- 'by-volume' => 'По обем',
- 'group' => 'група',
- 'groups' => 'Групи',
- 'nerd-stats' => 'Статистика за ботаника',
- 'nerd-stats-desc' => 'Ние всички обичаме статистиката. Ето няколко важни неща',
- 'registration-date' => 'Дата на Регистрация',
- 'request-fulfilled' => 'Заявката е изпълнена',
- 'request-not-fulfilled' => 'Заявката не е изпълнена',
+ 'by-count' => 'По граф',
+ 'by-data' => 'По данни',
+ 'by-volume' => 'По обем',
+ 'group' => 'група',
+ 'groups' => 'Групи',
+ 'nerd-stats' => 'Статистика за ботаника',
+ 'nerd-stats-desc' => 'Ние всички обичаме статистиката. Ето няколко важни неща',
+ 'registration-date' => 'Дата на Регистрация',
+ 'request-fulfilled' => 'Заявката е изпълнена',
+ 'request-not-fulfilled' => 'Заявката не е изпълнена',
'request-pending-aproval' => 'Искане за одобрение',
- 'select-category' => 'Моля, изберете категория по-долу',
- 'site-stats' => 'Статистика на сайта',
- 'stats' => 'Статистика',
- 'stats-format' => 'Всички статистики се показват в Топ 100 формат',
- 'top-bankers' => 'Топ банкери',
- 'top-bountied' => 'Нагоре превъзхожда',
- 'top-completed' => 'Най-завършено',
- 'top-dead' => 'Най-мъртви',
- 'top-downloaded' => 'Най-изтеглени торенти',
- 'top-downloaders' => 'Най-изтеглящи',
- 'top-dying' => 'Най-умиращ',
- 'top-leeched' => 'Най-добре',
- 'top-leechers' => 'Топ Leechers',
- 'top-seeded' => 'Най-добре разсеяно',
- 'top-seeding' => 'Топ сеитба',
- 'top-seeders' => 'Топ сеялки',
- 'top-seedsize' => 'Нагоре Seedsize',
- 'top-seedtime' => 'Най-семето',
- 'top-uploaders' => 'Най-големи кадри',
- 'total-download' => 'Общо изтегляне',
- 'total-torrents' => 'Общо торенти',
- 'total-traffic' => 'Общо движение',
- 'total-upload' => 'Общо качване',
- 'users-in-group' => 'Потребители в група',
- 'users-per-group' => 'Потребители на група',
+ 'select-category' => 'Моля, изберете категория по-долу',
+ 'site-stats' => 'Статистика на сайта',
+ 'stats' => 'Статистика',
+ 'stats-format' => 'Всички статистики се показват в Топ 100 формат',
+ 'top-bankers' => 'Топ банкери',
+ 'top-bountied' => 'Нагоре превъзхожда',
+ 'top-completed' => 'Най-завършено',
+ 'top-dead' => 'Най-мъртви',
+ 'top-downloaded' => 'Най-изтеглени торенти',
+ 'top-downloaders' => 'Най-изтеглящи',
+ 'top-dying' => 'Най-умиращ',
+ 'top-leeched' => 'Най-добре',
+ 'top-leechers' => 'Топ Leechers',
+ 'top-seeded' => 'Най-добре разсеяно',
+ 'top-seeding' => 'Топ сеитба',
+ 'top-seeders' => 'Топ сеялки',
+ 'top-seedsize' => 'Нагоре Seedsize',
+ 'top-seedtime' => 'Най-семето',
+ 'top-uploaders' => 'Най-големи кадри',
+ 'total-download' => 'Общо изтегляне',
+ 'total-torrents' => 'Общо торенти',
+ 'total-traffic' => 'Общо движение',
+ 'total-upload' => 'Общо качване',
+ 'users-in-group' => 'Потребители в група',
+ 'users-per-group' => 'Потребители на група',
];
diff --git a/lang/bg/torrent.php b/lang/bg/torrent.php
index 296efeeb9..7bd36aea1 100644
--- a/lang/bg/torrent.php
+++ b/lang/bg/torrent.php
@@ -12,197 +12,197 @@
*/
return [
- 'activity' => 'Дейност',
- 'age' => 'възраст',
- 'agent' => 'агент',
- 'alive' => 'жив',
- 'announce-url' => 'Обявяване на URL адрес',
- 'announce-url-desc' => 'Моля, използвайте URL адреса за обявяване по-горе, когато създавате нов торент. Ако искате да използвате своя поток, без да го изтеглите от сайта, трябва да зададете частния флаг и източника на: source',
- 'announce-url-desc-url' => 'Има проблем? Вижте Нашето Ръководство ТУК',
- 'announce-url-desc2' => 'TMDB и IMDB са необходими за всички качвания! Той се използва за хващане на плакати / фонове и екстраИнфо',
- 'approved' => 'одобрен',
- 'audio' => 'звуков',
- 'bon-tipped' => 'BON Tipped',
- 'bookmark' => 'Bookmark',
- 'bookmarks' => 'Bookmarks',
- 'bump' => 'подутина',
- 'cant-upload' => 'Грешка: правата за качване са деактивирани',
- 'cant-upload-desc' => 'Ако смятате, че това е грешка, моля, свържете се с персонала',
- 'cards' => 'карти',
- 'cards-view' => 'Преглед на карти с торенти',
- 'categories' => 'Категории',
- 'category' => 'категория',
- 'client' => 'клиент',
- 'commited' => 'отдадени',
- 'completed' => 'завършен',
- 'completed_at' => 'Завършено на',
- 'completed-not-seeding' => 'Вие завършихте това изтегляне, но вече не сте я заселили',
- 'created_at' => 'Създаден в',
- 'credited' => 'Кредитира',
- 'current' => 'Текущ',
- 'current-filters' => 'Текущи филтри',
- 'currently-leeching' => 'В момента Leeching',
- 'currently-seeding' => 'В момента сеитба',
- 'dead-torrent' => 'Мъртъв торент',
- 'dead-torrents' => 'Мъртви торенти',
- 'delete-bookmark' => 'Изтриване на този маркер',
- 'description' => 'описание',
- 'discounts' => 'Отстъпки',
- 'double-upload' => 'Двойно качване',
- 'download-all' => 'Изтегляне на всички',
- 'download-check' => 'Проверка за изтегляне',
- 'downloaded' => 'Изтеглили',
- 'dying-torrent' => 'Умиращ торент',
- 'dying-torrents' => 'Загиващите торенти',
- 'encode-settings' => 'Кодиране на настройките',
- 'estimated-ratio' => 'Приблизително съотношение след изтегляне',
- 'failed' => 'Се провали',
- 'feature' => 'Особеност',
- 'featured' => 'Препоръчани',
- 'featured-desc' => 'Препоръчани торенти са 100% безплатно и Двойно качване!',
- 'featured-until' => 'Това е предимство на Torrent До',
- 'file' => 'досие',
- 'filters' => 'Филтри',
- 'fl-tokens-left' => 'Ти имаш : останалите символи',
- 'freeleech' => 'Freeleech',
- 'freeleech-token' => 'Свободен знак',
- 'general' => 'Общ',
- 'genre' => 'жанр',
- 'global-double-upload' => 'Глобално двойно качване',
- 'global-freeleech' => 'Глобален свободен достъп',
- 'grant' => 'Грант',
- 'greater-than' => 'По-велик от',
- 'grouping' => 'групировка',
- 'groupings' => 'Обединенията',
- 'grouping-categories' => 'Групови категории',
+ 'activity' => 'Дейност',
+ 'age' => 'възраст',
+ 'agent' => 'агент',
+ 'alive' => 'жив',
+ 'announce-url' => 'Обявяване на URL адрес',
+ 'announce-url-desc' => 'Моля, използвайте URL адреса за обявяване по-горе, когато създавате нов торент. Ако искате да използвате своя поток, без да го изтеглите от сайта, трябва да зададете частния флаг и източника на: source',
+ 'announce-url-desc-url' => 'Има проблем? Вижте Нашето Ръководство ТУК',
+ 'announce-url-desc2' => 'TMDB и IMDB са необходими за всички качвания! Той се използва за хващане на плакати / фонове и екстраИнфо',
+ 'approved' => 'одобрен',
+ 'audio' => 'звуков',
+ 'bon-tipped' => 'BON Tipped',
+ 'bookmark' => 'Bookmark',
+ 'bookmarks' => 'Bookmarks',
+ 'bump' => 'подутина',
+ 'cant-upload' => 'Грешка: правата за качване са деактивирани',
+ 'cant-upload-desc' => 'Ако смятате, че това е грешка, моля, свържете се с персонала',
+ 'cards' => 'карти',
+ 'cards-view' => 'Преглед на карти с торенти',
+ 'categories' => 'Категории',
+ 'category' => 'категория',
+ 'client' => 'клиент',
+ 'commited' => 'отдадени',
+ 'completed' => 'завършен',
+ 'completed_at' => 'Завършено на',
+ 'completed-not-seeding' => 'Вие завършихте това изтегляне, но вече не сте я заселили',
+ 'created_at' => 'Създаден в',
+ 'credited' => 'Кредитира',
+ 'current' => 'Текущ',
+ 'current-filters' => 'Текущи филтри',
+ 'currently-leeching' => 'В момента Leeching',
+ 'currently-seeding' => 'В момента сеитба',
+ 'dead-torrent' => 'Мъртъв торент',
+ 'dead-torrents' => 'Мъртви торенти',
+ 'delete-bookmark' => 'Изтриване на този маркер',
+ 'description' => 'описание',
+ 'discounts' => 'Отстъпки',
+ 'double-upload' => 'Двойно качване',
+ 'download-all' => 'Изтегляне на всички',
+ 'download-check' => 'Проверка за изтегляне',
+ 'downloaded' => 'Изтеглили',
+ 'dying-torrent' => 'Умиращ торент',
+ 'dying-torrents' => 'Загиващите торенти',
+ 'encode-settings' => 'Кодиране на настройките',
+ 'estimated-ratio' => 'Приблизително съотношение след изтегляне',
+ 'failed' => 'Се провали',
+ 'feature' => 'Особеност',
+ 'featured' => 'Препоръчани',
+ 'featured-desc' => 'Препоръчани торенти са 100% безплатно и Двойно качване!',
+ 'featured-until' => 'Това е предимство на Torrent До',
+ 'file' => 'досие',
+ 'filters' => 'Филтри',
+ 'fl-tokens-left' => 'Ти имаш : останалите символи',
+ 'freeleech' => 'Freeleech',
+ 'freeleech-token' => 'Свободен знак',
+ 'general' => 'Общ',
+ 'genre' => 'жанр',
+ 'global-double-upload' => 'Глобално двойно качване',
+ 'global-freeleech' => 'Глобален свободен достъп',
+ 'grant' => 'Грант',
+ 'greater-than' => 'По-велик от',
+ 'grouping' => 'групировка',
+ 'groupings' => 'Обединенията',
+ 'grouping-categories' => 'Групови категории',
'grouping-categories-desc' => 'Коя категория искате да групирате?',
- 'grouping-results' => 'Резултати от групирането',
- 'groupings-view' => 'Преглед на групи',
- 'have-completed' => 'завършен',
- 'have-downloaded' => 'Изтеглили',
- 'have-not-completed' => 'Незавършен',
- 'have-not-downloaded' => 'Не е изтеглено',
- 'health' => 'Здраве',
- 'history' => 'история',
- 'hitrun' => 'Н & R?',
- 'hit-and-runs' => 'Хит и тичане се броят',
- 'immune' => 'Имунната?',
- 'info' => 'Информация',
- 'internal' => 'вътрешен',
- 'internal-release' => 'Вътрешно освобождаване',
- 'last-seed-activity' => 'Последна активност на семената',
- 'last-seeder' => 'Вие сте последната оставаща сеялка! (изтеглена е поне 3 пъти)',
- 'last-update' => 'Последна актуализация',
- 'leave-tip' => 'Оставете върха',
- 'leecher' => 'Лекар',
- 'leechers' => 'Лийчъри',
- 'leeching' => 'теглят',
- 'left' => 'Наляво',
- 'legendary-seeder' => 'Легендарна сеялка',
- 'legendary-torrent' => 'Легендарният торент',
- 'list' => 'списък',
- 'me' => 'мен',
- 'media-info' => 'MediaInfo',
- 'media-info-parser' => 'MediaInfo Parser',
- 'media-info-paste' => 'Поставете изхвърлянето на MediaInfo тук',
- 'meta-desc' => 'Изтегляне: име при максимална скорост',
- 'moderation' => 'умереност',
- 'movies' => 'кино',
- 'mvp' => 'MVP',
- 'my-active-torrents' => 'Моите активни торенти',
- 'name' => 'име',
- 'no-bookmarks' => 'Няма намерени отметки.',
- 'no-discounts' => 'В момента няма отстъпки',
- 'no-meta' => 'Не са намерени метаданни',
- 'no-privileges' => 'Не можете да изтеглите този файл - моля, проверете по-долу за повече информация',
- 'no-privileges-desc' => 'Моля, решете неуспешните резултати по-горе, за да се появи бутонът за изтегляне',
- 'not-completed' => 'Започнали да изтегляте, но никога да не сте завършили',
- 'not-downloaded' => 'Не е изтеглено',
- 'old-torrent' => 'Стар торент',
- 'optional' => 'по избор',
- 'original-output' => 'Показване / скриване на оригиналния изход',
- 'participant' => 'участник',
- 'passed' => 'Издържан',
- 'peers' => 'Връстници',
- 'pending' => 'в очакване на',
- 'personal-freeleech' => 'Лични свободни думи',
- 'poster' => 'Постер',
- 'poster-view' => 'Изглед на плаката',
- 'posters' => 'Плакати',
- 'prewarn' => 'Prewarned?',
- 'progress' => 'прогрес',
- 'quick-comment' => 'Бърз коментар',
- 'quick-tip' => 'Бързи съвети',
- 'rated' => 'Номинална',
- 'rating' => 'оценка',
- 'ready' => 'Този файл е готов за изтегляне',
- 'rejected' => 'Отхвърлени',
- 'released' => 'освободен',
- 'remaining' => 'оставащ',
- 'request-reseed' => 'Заявка Reseed',
- 'requires-reseed' => 'Изисква Reseed',
- 'resurrections' => 'възкресения',
- 'revoke' => 'Отмяна',
- 'rss' => 'RSS',
- 'runtime' => 'Времетраене',
- 'satisfied_in' => 'Доволен',
- 'say-thanks' => 'Моля, не забравяйте да кажете благодарности и семена за толкова дълго, колкото можете',
- 'sd-content' => 'SD съдържание',
- 'search' => 'Търсене',
- 'seed-time' => 'Време на семена',
- 'seeder' => 'редосеялка',
- 'seeders' => 'Сеялки',
- 'seeding' => 'посев',
- 'seedsize' => 'Seedsize',
- 'seedtime' => 'време за посев',
- 'short-completed' => '° С',
- 'short-leechs' => 'L',
- 'short-seeds' => 'С',
- 'show-files' => 'Показване на файлове',
- 'similar' => 'Подобни торенти',
- 'size' => 'размер',
- 'special' => 'Специален',
- 'special-freeleech' => 'Специални свободни думи',
- 'started' => 'Започната',
- 'status' => 'Статус',
- 'statistics' => 'Статистика',
- 'stats' => 'Статистика',
- 'sticky' => 'лепкав',
- 'stream-optimized' => 'Потокът е оптимизиран',
- 'subtitle' => 'подзаглавие',
- 'team-player' => 'Отборен играч',
- 'thank' => 'благодаря',
- 'thanked' => 'Благодари',
- 'thanks' => 'Благодаря',
- 'thanks-given' => 'Благодаря',
- 'times' => 'пъти',
- 'tip-jar' => 'Бурканче',
- 'title' => 'Заглавие',
- 'titles' => 'Заглавия',
- 'top-completed' => 'Най-завършено',
- 'top-dead' => 'Най-мъртви',
- 'top-dying' => 'Най-умиращ',
- 'top-leeched' => 'Нагоре',
- 'top-seeded' => 'Най-посевен',
- 'torrent' => 'порой',
- 'torrent-request' => 'Заявка за торент',
- 'torrent-tips' => 'В Общо : Общият BON е бил изпратен на потребителя, който е качил, от които : потребителят е от вас',
- 'torrent-tips-desc' => 'Това ще бъде приспаднато от наличните ви бонус точки',
- 'torrents' => 'Torrents',
- 'trailer' => 'Преглед на трейлъра',
- 'type' => 'Тип',
- 'types' => 'Видове',
- 'unbookmark' => 'Unbookmark',
- 'unsatisfieds' => 'Unsatisfieds',
- 'unsticky' => 'засъхнала',
- 'updated' => 'Обновено',
- 'updated_at' => 'Актуализирано на',
- 'uploaded' => 'Качено',
- 'uploaded-by' => 'Качено от',
- 'uploader' => 'Качил',
- 'use-fl-token' => 'Използвайте свободен токен',
- 'video' => 'Видео',
- 'view-more' => 'Виж повече',
- 'view-trailer' => 'Преглед на трейлъра',
- 'votes' => 'Гласове',
+ 'grouping-results' => 'Резултати от групирането',
+ 'groupings-view' => 'Преглед на групи',
+ 'have-completed' => 'завършен',
+ 'have-downloaded' => 'Изтеглили',
+ 'have-not-completed' => 'Незавършен',
+ 'have-not-downloaded' => 'Не е изтеглено',
+ 'health' => 'Здраве',
+ 'history' => 'история',
+ 'hitrun' => 'Н & R?',
+ 'hit-and-runs' => 'Хит и тичане се броят',
+ 'immune' => 'Имунната?',
+ 'info' => 'Информация',
+ 'internal' => 'вътрешен',
+ 'internal-release' => 'Вътрешно освобождаване',
+ 'last-seed-activity' => 'Последна активност на семената',
+ 'last-seeder' => 'Вие сте последната оставаща сеялка! (изтеглена е поне 3 пъти)',
+ 'last-update' => 'Последна актуализация',
+ 'leave-tip' => 'Оставете върха',
+ 'leecher' => 'Лекар',
+ 'leechers' => 'Лийчъри',
+ 'leeching' => 'теглят',
+ 'left' => 'Наляво',
+ 'legendary-seeder' => 'Легендарна сеялка',
+ 'legendary-torrent' => 'Легендарният торент',
+ 'list' => 'списък',
+ 'me' => 'мен',
+ 'media-info' => 'MediaInfo',
+ 'media-info-parser' => 'MediaInfo Parser',
+ 'media-info-paste' => 'Поставете изхвърлянето на MediaInfo тук',
+ 'meta-desc' => 'Изтегляне: име при максимална скорост',
+ 'moderation' => 'умереност',
+ 'movies' => 'кино',
+ 'mvp' => 'MVP',
+ 'my-active-torrents' => 'Моите активни торенти',
+ 'name' => 'име',
+ 'no-bookmarks' => 'Няма намерени отметки.',
+ 'no-discounts' => 'В момента няма отстъпки',
+ 'no-meta' => 'Не са намерени метаданни',
+ 'no-privileges' => 'Не можете да изтеглите този файл - моля, проверете по-долу за повече информация',
+ 'no-privileges-desc' => 'Моля, решете неуспешните резултати по-горе, за да се появи бутонът за изтегляне',
+ 'not-completed' => 'Започнали да изтегляте, но никога да не сте завършили',
+ 'not-downloaded' => 'Не е изтеглено',
+ 'old-torrent' => 'Стар торент',
+ 'optional' => 'по избор',
+ 'original-output' => 'Показване / скриване на оригиналния изход',
+ 'participant' => 'участник',
+ 'passed' => 'Издържан',
+ 'peers' => 'Връстници',
+ 'pending' => 'в очакване на',
+ 'personal-freeleech' => 'Лични свободни думи',
+ 'poster' => 'Постер',
+ 'poster-view' => 'Изглед на плаката',
+ 'posters' => 'Плакати',
+ 'prewarn' => 'Prewarned?',
+ 'progress' => 'прогрес',
+ 'quick-comment' => 'Бърз коментар',
+ 'quick-tip' => 'Бързи съвети',
+ 'rated' => 'Номинална',
+ 'rating' => 'оценка',
+ 'ready' => 'Този файл е готов за изтегляне',
+ 'rejected' => 'Отхвърлени',
+ 'released' => 'освободен',
+ 'remaining' => 'оставащ',
+ 'request-reseed' => 'Заявка Reseed',
+ 'requires-reseed' => 'Изисква Reseed',
+ 'resurrections' => 'възкресения',
+ 'revoke' => 'Отмяна',
+ 'rss' => 'RSS',
+ 'runtime' => 'Времетраене',
+ 'satisfied_in' => 'Доволен',
+ 'say-thanks' => 'Моля, не забравяйте да кажете благодарности и семена за толкова дълго, колкото можете',
+ 'sd-content' => 'SD съдържание',
+ 'search' => 'Търсене',
+ 'seed-time' => 'Време на семена',
+ 'seeder' => 'редосеялка',
+ 'seeders' => 'Сеялки',
+ 'seeding' => 'посев',
+ 'seedsize' => 'Seedsize',
+ 'seedtime' => 'време за посев',
+ 'short-completed' => '° С',
+ 'short-leechs' => 'L',
+ 'short-seeds' => 'С',
+ 'show-files' => 'Показване на файлове',
+ 'similar' => 'Подобни торенти',
+ 'size' => 'размер',
+ 'special' => 'Специален',
+ 'special-freeleech' => 'Специални свободни думи',
+ 'started' => 'Започната',
+ 'status' => 'Статус',
+ 'statistics' => 'Статистика',
+ 'stats' => 'Статистика',
+ 'sticky' => 'лепкав',
+ 'stream-optimized' => 'Потокът е оптимизиран',
+ 'subtitle' => 'подзаглавие',
+ 'team-player' => 'Отборен играч',
+ 'thank' => 'благодаря',
+ 'thanked' => 'Благодари',
+ 'thanks' => 'Благодаря',
+ 'thanks-given' => 'Благодаря',
+ 'times' => 'пъти',
+ 'tip-jar' => 'Бурканче',
+ 'title' => 'Заглавие',
+ 'titles' => 'Заглавия',
+ 'top-completed' => 'Най-завършено',
+ 'top-dead' => 'Най-мъртви',
+ 'top-dying' => 'Най-умиращ',
+ 'top-leeched' => 'Нагоре',
+ 'top-seeded' => 'Най-посевен',
+ 'torrent' => 'порой',
+ 'torrent-request' => 'Заявка за торент',
+ 'torrent-tips' => 'В Общо : Общият BON е бил изпратен на потребителя, който е качил, от които : потребителят е от вас',
+ 'torrent-tips-desc' => 'Това ще бъде приспаднато от наличните ви бонус точки',
+ 'torrents' => 'Torrents',
+ 'trailer' => 'Преглед на трейлъра',
+ 'type' => 'Тип',
+ 'types' => 'Видове',
+ 'unbookmark' => 'Unbookmark',
+ 'unsatisfieds' => 'Unsatisfieds',
+ 'unsticky' => 'засъхнала',
+ 'updated' => 'Обновено',
+ 'updated_at' => 'Актуализирано на',
+ 'uploaded' => 'Качено',
+ 'uploaded-by' => 'Качено от',
+ 'uploader' => 'Качил',
+ 'use-fl-token' => 'Използвайте свободен токен',
+ 'video' => 'Видео',
+ 'view-more' => 'Виж повече',
+ 'view-trailer' => 'Преглед на трейлъра',
+ 'votes' => 'Гласове',
];
diff --git a/lang/bg/user.php b/lang/bg/user.php
index f236429c4..026602b5f 100644
--- a/lang/bg/user.php
+++ b/lang/bg/user.php
@@ -12,316 +12,316 @@
*/
return [
- 'about' => 'относно',
- 'about-me' => 'За мен',
- 'accepted-at' => 'Приет при',
- 'accepted-by' => 'Приет от',
- 'account-notification' => 'Настройки за известия за профила',
- 'account-notification-follow' => 'Получете известие, когато потребител следва профила Ви',
- 'account-notification-unfollow' => 'Получете известие, когато даден потребител премахне профила ви',
- 'account-notification-help' => 'Контролирайте кои известия се изпращат относно профила Ви. Тези настройки са отменени, ако не разрешите на групи да изпращат известия относно профила ви или ако деактивирате известия',
- 'account-settings' => 'Настройки на профила',
- 'achievement-privacy' => 'Настройки за постижения',
- 'achievement-privacy-list' => 'Позволете на потребителите да виждат списък с постиженията си',
- 'achievement-help' => 'Контролирайте споделянето на конкретна информация, свързана с постиженията, с групи, на които е разрешен достъп до потребителския ви профил. Тези настройки са отменени, ако не позволите на групи да получат достъп до вашите постижения или ако отидете на лични',
- 'achievements' => 'Постижения',
- 'active' => 'Активен',
- 'active-table' => 'Моята активна таблица',
- 'active-torrents' => 'Активни торенти',
- 'active-warning' => 'Активно предупреждение',
- 'active-warnings' => 'Активни предупреждения',
- 'add-seedbox' => 'Добавете Seedbox',
- 'all-torrents' => 'Всички торенти',
- 'article-comments' => 'Статия Коментари, направени',
- 'avatar' => 'въплъщение',
- 'avg-seedtime' => 'Средно време за сеене',
- 'badges' => 'Значките',
- 'ban' => 'Забраняване на потребител',
- 'ban-log' => 'Забрани дневник',
- 'become-hidden' => 'Станете скрити',
- 'become-visible' => 'Станете видими',
- 'bon' => 'BON',
- 'bon-notification' => 'Настройки за уведомяване за BON',
- 'bon-notification-gift' => 'Получаване на известие, когато потребител ви подари бонус',
- 'bon-notification-help' => 'Контролира кои уведомления се изпращат във връзка с BON сделки. Тези настройки са отменени, ако не позволявате на групи да изпращат известия за BON или ако деактивирате известия',
- 'bookmarks' => 'Bookmarks',
- 'bounty-given' => 'Дадох',
- 'bounty-received' => 'Bounty Received',
- 'can-chat' => 'Can Chat',
- 'can-comment' => 'Може да коментира',
- 'can-download' => 'Може да изтеглите',
- 'can-invite' => 'Може да покани',
- 'can-request' => 'Може да поиска',
- 'can-upload' => 'Може да качвате',
- 'certified-banker' => 'Сертифициран банкер',
- 'certified-banker-desc' => 'Има 50,000 или повече BON In Bank',
- 'certified-downloader' => 'Сертифициран Downloader',
- 'certified-downloader-desc' => 'Изтеглили 100 или повече торента!',
- 'certified-seeder' => 'Сертифицирана сеялка',
- 'certified-seeder-desc' => 'Засяване 150 или повече торенти!',
- 'change-email' => 'Смяна на имейл',
- 'change-email-help' => 'След като промените имейла си, ще трябва да потвърдите отново профила си',
- 'change-password' => 'Промяна на паролата',
- 'change-password-help' => 'Ще трябва да влезете отново, след като промените паролата си',
- 'client-ip-address' => 'IP адрес на клиента',
- 'code' => 'код',
- 'comments' => 'Коментари',
- 'created-on' => 'Създадено на',
- 'credited-download' => 'Кредитирано изтегляне',
- 'credited-upload' => 'Кредитирано качване',
- 'current-password' => 'Настояща парола',
- 'custom-title' => 'Потребителско заглавие',
- 'delete' => 'Изтриване на потребител',
- 'disable-notifications' => 'Деактивиране на известията',
- 'disclaimer' => 'Опровержение',
- 'disclaimer-info' => 'По подразбиране не регистрираме IP адресите на потребителите като повечето тракери. Чрез добавяне на IP адрес на вашата семена по-долу се очаква, че знаете, че вашите IP адреси, изброени по-долу, се съхраняват в нашата база данни, освен ако не изтриете записите.',
- 'disclaimer-info-bordered' => 'Добавените IP адреси на Seedbox ще задействат висока скорост на торент маркер за торенти, пренесени от IP адреси, изброени по-долу',
- 'download-bon' => 'Изтегляне е премахнато от BON Store',
- 'download-recorded' => 'Записано изтегляне',
- 'download-true' => 'Изтегляне',
- 'downloads' => 'Downloads',
- 'edit' => 'Редактиране на потребител',
- 'edit-profile' => 'Редактирай профил',
- 'enable-notifications' => 'Активиране на известията',
- 'expired' => 'Просрочен',
- 'expires-on' => 'Изтича на',
- 'extra' => 'екстра',
- 'filled-request' => 'Попълнени заявки за членове',
- 'follow' => 'последвам',
- 'follower-privacy' => 'Настройки на последователите',
- 'follower-privacy-list' => 'Позволете на потребителите да виждат списък с вашите последователи',
- 'follower-help' => 'Контролирайте споделянето на конкретна информация, свързана с последователи, с групи, на които е разрешен достъп до потребителския ви профил. Тези настройки са отменени, ако не разрешите на групи да имат достъп до вашите последователи или ако отидете лично',
- 'followers' => 'последователи',
- 'following-notification' => 'Следват настройките за уведомяване на потребителите',
- 'following-notification-upload' => 'Получавайте известие, когато последващ потребител качи торрент',
- 'following-notification-help' => 'Контролирайте кои известия се изпращат относно последващите действия на сайта на потребителя. Тези настройки са отменени, ако не разрешите на групи да изпращат известия относно последващите потребители или ако деактивирате известия',
- 'formats-are-supported' => ': Поддържат се формати',
- 'forum-notification' => 'Настройки за уведомяване на форум',
- 'forum-notification-topic' => 'Получете известие, когато тема, която сте започнали, получи нова публикация',
- 'forum-notification-help' => 'Контролирайте кои уведомления се изпращат относно дейностите на форума. Тези настройки са отменени, ако не позволявате на групи да изпращат известия относно дейностите на форума или ако деактивирате известия',
- 'forum-privacy' => 'Настройки на форума',
- 'forum-privacy-post' => 'Позволявайте на потребителите да виждат списък с публикациите във форума, които сте публикували',
- 'forum-privacy-topic' => 'Позволете на потребителите да виждат списък с теми от форума, които сте започнали',
- 'forum-help' => 'Контролирайте споделянето на конкретна статистика, свързана с форума, и информация с групи, на които е разрешен достъп до потребителския ви профил. Тези настройки са отменени, ако не разрешите на групи да имат достъп до статистиката и информацията, свързана с форума, или ако отидете на лични',
- 'forum-signature' => 'Подписване на форум',
- 'forums' => 'Форуми',
- 'general' => 'Общ',
- 'general-settings' => 'Основни настройки',
- 'gift-given' => 'Подарък',
- 'gift-received' => 'Подаден подарък',
- 'go-public' => 'Отиди публично',
- 'go-private' => 'Отиди частно',
- 'history' => 'история',
- 'history-table' => 'Таблица за моята история',
- 'hit-n-runs' => 'Удари и бяга',
- 'hit-n-runs-count' => 'Брой и стартиране (всички времена)',
- 'hit-n-runs-history' => 'Торент удари и стартира история',
- 'image' => 'Изображение',
- 'important' => 'важно',
- 'important-info' => 'Важна информация',
- 'information' => 'Информация',
- 'invite-friend' => 'Поканете приятел (имейл + съобщение е задължително)',
- 'invite-tree' => 'Поканете дърво',
- 'invites' => 'Покани',
- 'invites-banned' => 'Грешка: Вашите права на покана са били деактивирани',
- 'invites-banned-desc' => 'Ако смятате, че това е грешка, моля свържете се с персонала!',
- 'invites-count' => 'Имате: брои поканите токени',
- 'invites-disabled' => 'Внимание: Поканите са деактивирани поради отваряне на регистрация!',
- 'invites-disabled-desc' => 'Моля, проверете скоро!',
- 'invites-rules' => ' Поканете само хора, които познавате и имате доверие. Вие ще бъдете лично отговорни за тези, които каните. Не се каняйте, проверяваме всеки поканен потребител. Не търгувайте и не продавайте Invites. Ако лицето, което сте поканили, е хванато за измама, търговска сметка или покани за продажба / търговия, ще бъдете предупредени. ',
- 'invites-send' => 'Покана за изпращане',
- 'last-login' => 'Последно влизане',
- 'locked' => 'заключен',
- 'locked-achievements' => 'Заключени постижения',
- 'member-since' => 'Потребител от',
- 'members-desc' => 'Списък на регистрираните потребители: заглавие с всички групи. Намерете потребител сега.',
- 'mention-notification' => '@ Настройки за уведомяване за споменаване',
+ 'about' => 'относно',
+ 'about-me' => 'За мен',
+ 'accepted-at' => 'Приет при',
+ 'accepted-by' => 'Приет от',
+ 'account-notification' => 'Настройки за известия за профила',
+ 'account-notification-follow' => 'Получете известие, когато потребител следва профила Ви',
+ 'account-notification-unfollow' => 'Получете известие, когато даден потребител премахне профила ви',
+ 'account-notification-help' => 'Контролирайте кои известия се изпращат относно профила Ви. Тези настройки са отменени, ако не разрешите на групи да изпращат известия относно профила ви или ако деактивирате известия',
+ 'account-settings' => 'Настройки на профила',
+ 'achievement-privacy' => 'Настройки за постижения',
+ 'achievement-privacy-list' => 'Позволете на потребителите да виждат списък с постиженията си',
+ 'achievement-help' => 'Контролирайте споделянето на конкретна информация, свързана с постиженията, с групи, на които е разрешен достъп до потребителския ви профил. Тези настройки са отменени, ако не позволите на групи да получат достъп до вашите постижения или ако отидете на лични',
+ 'achievements' => 'Постижения',
+ 'active' => 'Активен',
+ 'active-table' => 'Моята активна таблица',
+ 'active-torrents' => 'Активни торенти',
+ 'active-warning' => 'Активно предупреждение',
+ 'active-warnings' => 'Активни предупреждения',
+ 'add-seedbox' => 'Добавете Seedbox',
+ 'all-torrents' => 'Всички торенти',
+ 'article-comments' => 'Статия Коментари, направени',
+ 'avatar' => 'въплъщение',
+ 'avg-seedtime' => 'Средно време за сеене',
+ 'badges' => 'Значките',
+ 'ban' => 'Забраняване на потребител',
+ 'ban-log' => 'Забрани дневник',
+ 'become-hidden' => 'Станете скрити',
+ 'become-visible' => 'Станете видими',
+ 'bon' => 'BON',
+ 'bon-notification' => 'Настройки за уведомяване за BON',
+ 'bon-notification-gift' => 'Получаване на известие, когато потребител ви подари бонус',
+ 'bon-notification-help' => 'Контролира кои уведомления се изпращат във връзка с BON сделки. Тези настройки са отменени, ако не позволявате на групи да изпращат известия за BON или ако деактивирате известия',
+ 'bookmarks' => 'Bookmarks',
+ 'bounty-given' => 'Дадох',
+ 'bounty-received' => 'Bounty Received',
+ 'can-chat' => 'Can Chat',
+ 'can-comment' => 'Може да коментира',
+ 'can-download' => 'Може да изтеглите',
+ 'can-invite' => 'Може да покани',
+ 'can-request' => 'Може да поиска',
+ 'can-upload' => 'Може да качвате',
+ 'certified-banker' => 'Сертифициран банкер',
+ 'certified-banker-desc' => 'Има 50,000 или повече BON In Bank',
+ 'certified-downloader' => 'Сертифициран Downloader',
+ 'certified-downloader-desc' => 'Изтеглили 100 или повече торента!',
+ 'certified-seeder' => 'Сертифицирана сеялка',
+ 'certified-seeder-desc' => 'Засяване 150 или повече торенти!',
+ 'change-email' => 'Смяна на имейл',
+ 'change-email-help' => 'След като промените имейла си, ще трябва да потвърдите отново профила си',
+ 'change-password' => 'Промяна на паролата',
+ 'change-password-help' => 'Ще трябва да влезете отново, след като промените паролата си',
+ 'client-ip-address' => 'IP адрес на клиента',
+ 'code' => 'код',
+ 'comments' => 'Коментари',
+ 'created-on' => 'Създадено на',
+ 'credited-download' => 'Кредитирано изтегляне',
+ 'credited-upload' => 'Кредитирано качване',
+ 'current-password' => 'Настояща парола',
+ 'custom-title' => 'Потребителско заглавие',
+ 'delete' => 'Изтриване на потребител',
+ 'disable-notifications' => 'Деактивиране на известията',
+ 'disclaimer' => 'Опровержение',
+ 'disclaimer-info' => 'По подразбиране не регистрираме IP адресите на потребителите като повечето тракери. Чрез добавяне на IP адрес на вашата семена по-долу се очаква, че знаете, че вашите IP адреси, изброени по-долу, се съхраняват в нашата база данни, освен ако не изтриете записите.',
+ 'disclaimer-info-bordered' => 'Добавените IP адреси на Seedbox ще задействат висока скорост на торент маркер за торенти, пренесени от IP адреси, изброени по-долу',
+ 'download-bon' => 'Изтегляне е премахнато от BON Store',
+ 'download-recorded' => 'Записано изтегляне',
+ 'download-true' => 'Изтегляне',
+ 'downloads' => 'Downloads',
+ 'edit' => 'Редактиране на потребител',
+ 'edit-profile' => 'Редактирай профил',
+ 'enable-notifications' => 'Активиране на известията',
+ 'expired' => 'Просрочен',
+ 'expires-on' => 'Изтича на',
+ 'extra' => 'екстра',
+ 'filled-request' => 'Попълнени заявки за членове',
+ 'follow' => 'последвам',
+ 'follower-privacy' => 'Настройки на последователите',
+ 'follower-privacy-list' => 'Позволете на потребителите да виждат списък с вашите последователи',
+ 'follower-help' => 'Контролирайте споделянето на конкретна информация, свързана с последователи, с групи, на които е разрешен достъп до потребителския ви профил. Тези настройки са отменени, ако не разрешите на групи да имат достъп до вашите последователи или ако отидете лично',
+ 'followers' => 'последователи',
+ 'following-notification' => 'Следват настройките за уведомяване на потребителите',
+ 'following-notification-upload' => 'Получавайте известие, когато последващ потребител качи торрент',
+ 'following-notification-help' => 'Контролирайте кои известия се изпращат относно последващите действия на сайта на потребителя. Тези настройки са отменени, ако не разрешите на групи да изпращат известия относно последващите потребители или ако деактивирате известия',
+ 'formats-are-supported' => ': Поддържат се формати',
+ 'forum-notification' => 'Настройки за уведомяване на форум',
+ 'forum-notification-topic' => 'Получете известие, когато тема, която сте започнали, получи нова публикация',
+ 'forum-notification-help' => 'Контролирайте кои уведомления се изпращат относно дейностите на форума. Тези настройки са отменени, ако не позволявате на групи да изпращат известия относно дейностите на форума или ако деактивирате известия',
+ 'forum-privacy' => 'Настройки на форума',
+ 'forum-privacy-post' => 'Позволявайте на потребителите да виждат списък с публикациите във форума, които сте публикували',
+ 'forum-privacy-topic' => 'Позволете на потребителите да виждат списък с теми от форума, които сте започнали',
+ 'forum-help' => 'Контролирайте споделянето на конкретна статистика, свързана с форума, и информация с групи, на които е разрешен достъп до потребителския ви профил. Тези настройки са отменени, ако не разрешите на групи да имат достъп до статистиката и информацията, свързана с форума, или ако отидете на лични',
+ 'forum-signature' => 'Подписване на форум',
+ 'forums' => 'Форуми',
+ 'general' => 'Общ',
+ 'general-settings' => 'Основни настройки',
+ 'gift-given' => 'Подарък',
+ 'gift-received' => 'Подаден подарък',
+ 'go-public' => 'Отиди публично',
+ 'go-private' => 'Отиди частно',
+ 'history' => 'история',
+ 'history-table' => 'Таблица за моята история',
+ 'hit-n-runs' => 'Удари и бяга',
+ 'hit-n-runs-count' => 'Брой и стартиране (всички времена)',
+ 'hit-n-runs-history' => 'Торент удари и стартира история',
+ 'image' => 'Изображение',
+ 'important' => 'важно',
+ 'important-info' => 'Важна информация',
+ 'information' => 'Информация',
+ 'invite-friend' => 'Поканете приятел (имейл + съобщение е задължително)',
+ 'invite-tree' => 'Поканете дърво',
+ 'invites' => 'Покани',
+ 'invites-banned' => 'Грешка: Вашите права на покана са били деактивирани',
+ 'invites-banned-desc' => 'Ако смятате, че това е грешка, моля свържете се с персонала!',
+ 'invites-count' => 'Имате: брои поканите токени',
+ 'invites-disabled' => 'Внимание: Поканите са деактивирани поради отваряне на регистрация!',
+ 'invites-disabled-desc' => 'Моля, проверете скоро!',
+ 'invites-rules' => ' Поканете само хора, които познавате и имате доверие. Вие ще бъдете лично отговорни за тези, които каните. Не се каняйте, проверяваме всеки поканен потребител. Не търгувайте и не продавайте Invites. Ако лицето, което сте поканили, е хванато за измама, търговска сметка или покани за продажба / търговия, ще бъдете предупредени. ',
+ 'invites-send' => 'Покана за изпращане',
+ 'last-login' => 'Последно влизане',
+ 'locked' => 'заключен',
+ 'locked-achievements' => 'Заключени постижения',
+ 'member-since' => 'Потребител от',
+ 'members-desc' => 'Списък на регистрираните потребители: заглавие с всички групи. Намерете потребител сега.',
+ 'mention-notification' => '@ Настройки за уведомяване за споменаване',
'mention-notification-article-comment' => 'Получавайте известие, когато сте @mentioned в коментар за статия',
'mention-notification-torrent-comment' => 'Получете известие, когато сте @mentioned в торент коментар',
'mention-notification-request-comment' => 'Получавайте известие, когато сте @mentioned в коментар за заявка',
- 'mention-notification-forum-post' => 'Получете известие, когато сте @mentioned във форума',
- 'mention-notification-help' => 'Контролирайте кои известия се изпращат, когато сте потребител @mentions. Тези настройки са отменени, ако не разрешите на групи да изпращат известия, ако потребител @ @ions ви или ако деактивирате известия',
- 'moderated-by' => 'Модератори: mod on',
- 'my-bonus-points' => 'Моите бонус точки',
- 'my-bookmarks' => 'Моите отметки',
- 'my-fl-tokens' => 'Моите FL лекции',
- 'my-general-settings' => 'Моите общи настройки',
- 'my-notification' => 'Моето уведомление',
- 'my-notification-settings' => 'Настройки за моите известия',
- 'my-privacy' => 'Моята поверителност',
- 'my-privacy-settings' => 'Настройки за поверителност',
- 'my-profile' => 'Моят профил',
- 'my-requested' => 'Моята заявка',
- 'my-security' => 'Моята сигурност',
- 'my-security-settings' => 'Моите настройки за защита',
- 'my-seedboxes' => 'Моите Seedboxes',
- 'my-settings' => 'Моите настройки',
- 'my-wishlist' => 'Моят списък с желания',
- 'no-logs' => 'Блоговете за покани не са в базата данни за този потребител!',
- 'no-seedboxes' => 'Няма кутии за семена',
- 'not-authorized' => 'Нямате право да разглеждате тази страница. Този член предпочита да бъде скрит като нинджа!',
- 'note' => 'Забележка',
- 'notification' => 'уведомление',
- 'notification-settings' => 'Настройки за известията',
- 'notification-from-account' => 'Получаване на известия от профила от',
- 'notification-from-account-help' => 'Ще получавате само уведомления от системата, персонала и следните групи. Тези настройки са отменени, ако деактивирате известията',
- 'notification-from-bon' => 'Получаване на известия от BON',
- 'notification-from-bon-help' => 'Ще получавате само BON уведомления от системата, персонала и следните групи. Тези настройки са отменени, ако деактивирате известията',
- 'notification-from-following' => 'Получаване на последвани от потребителя известия от',
- 'notification-from-following-help' => 'Ще получавате само последващи потребителски известия от следните групи. Тези настройки са отменени, ако деактивирате известията',
- 'notification-from-forum' => 'Получаване на известия от форума От',
- 'notification-from-forum-help' => 'Ще получавате само уведомления от форума от системата, персонала и следните групи. Тези настройки са отменени, ако деактивирате известията',
- 'notification-from-subscription' => 'Получаване на известия от абонамента от',
- 'notification-from-subscription-help' => 'Ще получавате само уведомления от форума от системата, персонала и следните групи. Тези настройки са отменени, ако деактивирате известията',
- 'notification-from-torrent' => 'Получаване на известия от Torrent От',
- 'notification-from-torrent-help' => 'Ще получавате само торентни известия от системата, персонала и следните групи. Тези настройки са отменени, ако деактивирате известията',
- 'notification-from-mention' => 'Получаване на известия за предупреждение от',
- 'notification-from-mention-help' => 'Ще получавате само @mention известия от системата, персонала и следните групи. Тези настройки са отменени, ако деактивирате известията',
- 'notification-from-request' => 'Получаване на известия за известия от',
- 'notification-from-request-help' => 'Ще получавате известия само от системата, персонала и следните групи. Тези настройки са отменени, ако деактивирате известията',
- 'notifications' => 'Известия',
- 'offline' => 'Потребителят е офлайн!',
- 'online' => 'Потребителят е онлайн!',
- 'options' => 'Настроики',
- 'other-help' => 'Контролирайте споделянето на други статистически данни и информация с групи, на които е разрешен достъп до потребителския ви профил. Тези настройки са отменени, ако не позволявате на групи да имат достъп до другите ви статистически данни и информация, или ако отидете на частни',
- 'other-privacy' => 'Други настройки',
- 'other-privacy-online' => 'Позволете на потребителите да ви виждат в блока на онлайн потребителите',
- 'passkey' => 'PID',
- 'passkey-warning' => 'PID е като паролата ви, трябва да го пазите безопасно!',
- 'pending-achievements' => 'Предстоящи постижения',
- 'per-torrent' => 'Per Torrent',
- 'posts' => 'Публикации',
- 'posts-posted' => 'Публикации на форума',
- 'privacy' => 'поверителност',
- 'privacy-settings' => 'Настройките за поверителност',
- 'private-info' => 'Частна информация',
- 'private-forum-profile' => 'Внимание: Тези членове Тема & История на публикациите е настроена на частна!',
- 'private-profile' => 'Внимание: Този профил е бил настроен да приватизира!',
- 'profile' => 'профил',
- 'profile-desc' => 'Потребител: потребителски профил, регистриран на: title',
- 'profile-privacy' => 'Настройки на потребителския профил',
- 'profile-privacy-torrent-count' => 'Споделете общия си брой изтеглени файлове, качвания, семена и пиявици',
- 'profile-privacy-torrent-ratio' => 'Споделете общите си данни за качване / изтегляне заедно със записаното съотношение',
- 'profile-privacy-torrent-seed' => 'Споделете общото си време на засяване и средното',
- 'profile-privacy-title' => 'Споделете личната си информация за заглавието',
- 'profile-privacy-about' => 'Споделете личната си информация за мен',
- 'profile-privacy-bon-extra' => 'Споделете вашата BON статистика',
- 'profile-privacy-comment-extra' => 'Споделете статистиките си за коментарите си',
- 'profile-privacy-forum-extra' => 'Споделете статистическите данни за форума си',
- 'profile-privacy-request-extra' => 'Споделете статистиката на заявките си',
- 'profile-privacy-torrent-extra' => 'Споделете торент статистиката си',
- 'profile-privacy-badge' => 'Споделете спечелените си значки',
- 'profile-privacy-achievement' => 'Споделете последните си постижения',
- 'profile-privacy-follower' => 'Споделете последните си последователи',
- 'profile-privacy-warning' => 'Споделете вашите H&R предупреждения',
- 'profile-privacy-help' => 'Контролирайте кои статистически данни и информация се показват в потребителския ви профил. Тези настройки са отменени, ако не разрешите на групи да имат достъп до профила ви или ако отидете на частен потребител',
- 'public-info' => 'Публична информация',
- 'recent-achievements' => 'Последни постижения',
- 'recent-followers' => 'Последни последователи',
- 'registration-date' => 'Дата на Регистрация',
- 'report' => 'доклад',
- 'request-help' => 'Контролирайте споделянето на конкретни статистически данни, свързани със заявката, и информация за групи, на които е разрешен достъп до потребителския ви профил. Тези настройки са отменени, ако не разрешите на групи да имат достъп до заявената свързана статистика и информация, или ако отидете на частни',
- 'request' => 'поискване',
- 'requested' => 'Заявени',
- 'requests' => 'Исканията',
- 'request-comments' => 'Искане за коментари направени',
- 'request-notification' => 'Заявете настройки за известия',
- 'request-notification-bounty' => 'Получавайте известие, когато заявен торент получи нова награда',
- 'request-notification-comment' => 'Получавайте известие, когато заявен торент получи нов коментар',
- 'request-notification-fill' => 'Получаване на известие, когато се попълни искан торент',
- 'request-notification-fill-approve' => 'Получете известие, когато бъде одобрена заявка за попълване на торенти',
- 'request-notification-fill-reject' => 'Получаване на известие, когато исканото попълване на поток бъде отхвърлено',
- 'request-notification-claim' => 'Получаване на известие, когато се иска заявен торент',
- 'request-notification-unclaim' => 'Получаване на известие, когато искан торент стане непоискан',
- 'request-notification-help' => 'Контролира кои уведомления се изпращат относно дейностите по заявка. Тези настройки са отменени, ако не позволите на групи да изпращат известия за дейности за заявка или ако деактивирате известия',
- 'request-privacy' => 'Заявка за настройки',
- 'request-privacy-requested' => 'Позволява на потребителите да виждат списък с заявки, които сте направили',
- 'reset-passkey' => 'Ключ за нулиране (PID)',
- 'reset-passkey-help' => 'Ще трябва да изтеглите отново / отново да качите всичките си активни торенти, след като възстановите PID',
- 'reset-rss' => 'Възстановяване на ключ за RSS (RID)',
- 'reset-rss-help' => 'Трябва да презаредите всичките си активни RSS емисии, след като възстановите RID',
- 'resurrections' => 'възкресения',
- 'search' => 'Бързо търсене по потребителско име',
- 'security' => 'Сигурност',
- 'security-settings' => 'Настройки на сигурността',
- 'seedboxes' => 'Seedboxes',
- 'seeds' => 'Семена',
- 'send-invite' => 'Изпрати покана',
- 'sender' => 'подател',
- 'settings' => 'Настройки',
- 'show-passkey' => 'Показване на PID',
- 'staff-noted' => 'Акаунт на персонала',
- 'statistics' => 'Статистика',
- 'subscription-notification' => 'Настройки за известия за абонамент',
- 'subscription-notification-forum' => 'Получете известие, когато абонаментният форум получи нова тема',
- 'subscription-notification-topic' => 'Получете известие, когато абонаментна тема получи нова публикация',
- 'subscription-notification-help' => 'Контролирайте кои известия се изпращат относно вашите абонаменти. Тези настройки са отменени, ако не разрешите на групи да изпращат известия относно абонаментите си или ако деактивирате известия',
- 'thanks-given' => 'Благодаря',
- 'thanks-received' => 'Благодаря получих',
- 'tips-given' => 'Дадени съвети',
- 'tips-received' => 'Получени съвети',
- 'title' => 'Заглавие',
- 'top-bankers' => 'Топ банкери',
- 'top-downloaders-data' => 'Най-изтеглящи (данни)',
- 'top-leechers' => 'Топ Leechers',
- 'top-leechers-count' => 'Топ Leechers (брой)',
- 'top-seeders' => 'Топ сеялки',
- 'top-seeders-count' => 'Най-популярни семена (брой)',
- 'top-seeding-size' => 'Топ сеитба (размер)',
- 'top-seedtime' => 'Най-семето',
- 'top-uploaders-data' => 'Най-големи кадри (данни)',
- 'top-uploaders-count' => 'Най-големи кадри (брой)',
- 'topics' => 'Теми',
- 'topics-started' => 'Началните теми на форума',
- 'torrent-comments' => 'Коментари направени',
- 'torrent-help' => 'Контролирайте споделянето на конкретни статистически данни, свързани с поток, и информация с групи, на които е разрешен достъп до потребителския ви профил. Тези настройки са отменени, ако не позволявате на групи да имат достъп до статистиката и информацията, свързана с торента, или ако отидете на частни',
- 'torrent-notification' => 'Настройки за известяване на торент',
- 'torrent-notification-comment' => 'Получете известие, когато качен торент получи нов коментар',
- 'torrent-notification-thank' => 'Получете известие, когато качен торент получи ново благодарност',
- 'torrent-notification-tip' => 'Получете известие, когато качен торент получи нов съвет',
- 'torrent-notification-help' => 'Контролира кои уведомления се изпращат за торент дейности. Тези настройки са отменени, ако не разрешите на групи да изпращат известия за торент дейности или ако деактивирате известия',
- 'torrent-privacy' => 'Настройки на торент',
- 'torrent-privacy-download' => 'Позволете на потребителите да виждат списък с изтеглени от вас торенти',
- 'torrent-privacy-upload' => 'Позволява на потребителите да виждат списък с торенти, които сте качили',
- 'torrent-privacy-peer' => 'Позволете на потребителите да ви виждат в таблицата с историята на торентите',
- 'torrents' => 'Torrents',
- 'torrents-history' => 'История на торентите',
- 'total-download' => 'Общо изтегляне',
- 'total-downloads' => 'Общо изтегляния',
- 'total-leeching' => 'Общо Leeching',
- 'total-seeding' => 'Общо засяване',
- 'total-seedtime' => 'Общо време за сеене',
- 'total-upload' => 'Общо качване',
- 'total-uploads' => 'Общо качвания',
- 'unban' => 'Деблокиране на потребител',
- 'unfollow' => 'Не следвай',
- 'unlocked' => 'отключена',
- 'unlocked-achievements' => 'Отключени постижения',
- 'unsatisfieds' => 'Unsatisfieds',
- 'upload-bon' => 'Качването е добавено от BON Store',
- 'upload-recorded' => 'Записано качване',
- 'upload-true' => 'Истинско качване',
- 'uploads' => 'Качването',
- 'uploads-table' => 'Качване на таблица',
- 'user' => 'потребител',
- 'user-id' => 'Потребителски идентификатор',
- 'username-seedbox' => 'Потребителско име Seedbox',
- 'visible-to-achievement' => 'Постижения, видими за',
- 'visible-to-achievement-help' => 'Вашите постижения ще бъдат видими само за персонала и следните групи. Тези настройки са отменени, ако отидете Private',
- 'visible-to-follower' => 'Последователите са видими за',
- 'visible-to-follower-help' => 'Вашите последователи ще бъдат видими само за персонала и следните групи. Тези настройки са отменени, ако отидете Private',
- 'visible-to-forum' => 'Информация за форума Видима за',
- 'visible-to-forum-help' => 'Информацията за вашия форум ще бъде видима само за персонала и следните групи. Тези настройки са отменени, ако отидете Private',
- 'visible-to-other' => 'Други видими за',
- 'visible-to-other-help' => 'Друга информация, свързана с профила ви, ще бъде видима само за персонала и следните групи. Тези настройки са отменени, ако отидете лично или ако отидете скрит',
- 'visible-to-profile' => 'Профилът е видим за',
- 'visible-to-profile-help' => 'Вашият профил ще бъде видим само за персонала и следните групи. Тези настройки са отменени, ако отидете Private',
- 'visible-to-request' => 'Заявка за информация, видима за',
- 'visible-to-request-help' => 'Вашата информация за заявката ще бъде видима само за персонала и следните групи. Тези настройки са отменени, ако отидете Private',
- 'visible-to-torrent' => 'Информацията за торента е видима за',
- 'visible-to-torrent-help' => 'Информацията ви за торентите ще бъде видима само за персонала и следните групи. Тези настройки са отменени, ако отидете лично или ако отидете скрит',
- 'warned-on' => 'Предупредено на',
- 'warning' => 'Внимание',
- 'warning-log' => 'Предупредителен дневник',
- 'wishlist' => 'списък с желания',
+ 'mention-notification-forum-post' => 'Получете известие, когато сте @mentioned във форума',
+ 'mention-notification-help' => 'Контролирайте кои известия се изпращат, когато сте потребител @mentions. Тези настройки са отменени, ако не разрешите на групи да изпращат известия, ако потребител @ @ions ви или ако деактивирате известия',
+ 'moderated-by' => 'Модератори: mod on',
+ 'my-bonus-points' => 'Моите бонус точки',
+ 'my-bookmarks' => 'Моите отметки',
+ 'my-fl-tokens' => 'Моите FL лекции',
+ 'my-general-settings' => 'Моите общи настройки',
+ 'my-notification' => 'Моето уведомление',
+ 'my-notification-settings' => 'Настройки за моите известия',
+ 'my-privacy' => 'Моята поверителност',
+ 'my-privacy-settings' => 'Настройки за поверителност',
+ 'my-profile' => 'Моят профил',
+ 'my-requested' => 'Моята заявка',
+ 'my-security' => 'Моята сигурност',
+ 'my-security-settings' => 'Моите настройки за защита',
+ 'my-seedboxes' => 'Моите Seedboxes',
+ 'my-settings' => 'Моите настройки',
+ 'my-wishlist' => 'Моят списък с желания',
+ 'no-logs' => 'Блоговете за покани не са в базата данни за този потребител!',
+ 'no-seedboxes' => 'Няма кутии за семена',
+ 'not-authorized' => 'Нямате право да разглеждате тази страница. Този член предпочита да бъде скрит като нинджа!',
+ 'note' => 'Забележка',
+ 'notification' => 'уведомление',
+ 'notification-settings' => 'Настройки за известията',
+ 'notification-from-account' => 'Получаване на известия от профила от',
+ 'notification-from-account-help' => 'Ще получавате само уведомления от системата, персонала и следните групи. Тези настройки са отменени, ако деактивирате известията',
+ 'notification-from-bon' => 'Получаване на известия от BON',
+ 'notification-from-bon-help' => 'Ще получавате само BON уведомления от системата, персонала и следните групи. Тези настройки са отменени, ако деактивирате известията',
+ 'notification-from-following' => 'Получаване на последвани от потребителя известия от',
+ 'notification-from-following-help' => 'Ще получавате само последващи потребителски известия от следните групи. Тези настройки са отменени, ако деактивирате известията',
+ 'notification-from-forum' => 'Получаване на известия от форума От',
+ 'notification-from-forum-help' => 'Ще получавате само уведомления от форума от системата, персонала и следните групи. Тези настройки са отменени, ако деактивирате известията',
+ 'notification-from-subscription' => 'Получаване на известия от абонамента от',
+ 'notification-from-subscription-help' => 'Ще получавате само уведомления от форума от системата, персонала и следните групи. Тези настройки са отменени, ако деактивирате известията',
+ 'notification-from-torrent' => 'Получаване на известия от Torrent От',
+ 'notification-from-torrent-help' => 'Ще получавате само торентни известия от системата, персонала и следните групи. Тези настройки са отменени, ако деактивирате известията',
+ 'notification-from-mention' => 'Получаване на известия за предупреждение от',
+ 'notification-from-mention-help' => 'Ще получавате само @mention известия от системата, персонала и следните групи. Тези настройки са отменени, ако деактивирате известията',
+ 'notification-from-request' => 'Получаване на известия за известия от',
+ 'notification-from-request-help' => 'Ще получавате известия само от системата, персонала и следните групи. Тези настройки са отменени, ако деактивирате известията',
+ 'notifications' => 'Известия',
+ 'offline' => 'Потребителят е офлайн!',
+ 'online' => 'Потребителят е онлайн!',
+ 'options' => 'Настроики',
+ 'other-help' => 'Контролирайте споделянето на други статистически данни и информация с групи, на които е разрешен достъп до потребителския ви профил. Тези настройки са отменени, ако не позволявате на групи да имат достъп до другите ви статистически данни и информация, или ако отидете на частни',
+ 'other-privacy' => 'Други настройки',
+ 'other-privacy-online' => 'Позволете на потребителите да ви виждат в блока на онлайн потребителите',
+ 'passkey' => 'PID',
+ 'passkey-warning' => 'PID е като паролата ви, трябва да го пазите безопасно!',
+ 'pending-achievements' => 'Предстоящи постижения',
+ 'per-torrent' => 'Per Torrent',
+ 'posts' => 'Публикации',
+ 'posts-posted' => 'Публикации на форума',
+ 'privacy' => 'поверителност',
+ 'privacy-settings' => 'Настройките за поверителност',
+ 'private-info' => 'Частна информация',
+ 'private-forum-profile' => 'Внимание: Тези членове Тема & История на публикациите е настроена на частна!',
+ 'private-profile' => 'Внимание: Този профил е бил настроен да приватизира!',
+ 'profile' => 'профил',
+ 'profile-desc' => 'Потребител: потребителски профил, регистриран на: title',
+ 'profile-privacy' => 'Настройки на потребителския профил',
+ 'profile-privacy-torrent-count' => 'Споделете общия си брой изтеглени файлове, качвания, семена и пиявици',
+ 'profile-privacy-torrent-ratio' => 'Споделете общите си данни за качване / изтегляне заедно със записаното съотношение',
+ 'profile-privacy-torrent-seed' => 'Споделете общото си време на засяване и средното',
+ 'profile-privacy-title' => 'Споделете личната си информация за заглавието',
+ 'profile-privacy-about' => 'Споделете личната си информация за мен',
+ 'profile-privacy-bon-extra' => 'Споделете вашата BON статистика',
+ 'profile-privacy-comment-extra' => 'Споделете статистиките си за коментарите си',
+ 'profile-privacy-forum-extra' => 'Споделете статистическите данни за форума си',
+ 'profile-privacy-request-extra' => 'Споделете статистиката на заявките си',
+ 'profile-privacy-torrent-extra' => 'Споделете торент статистиката си',
+ 'profile-privacy-badge' => 'Споделете спечелените си значки',
+ 'profile-privacy-achievement' => 'Споделете последните си постижения',
+ 'profile-privacy-follower' => 'Споделете последните си последователи',
+ 'profile-privacy-warning' => 'Споделете вашите H&R предупреждения',
+ 'profile-privacy-help' => 'Контролирайте кои статистически данни и информация се показват в потребителския ви профил. Тези настройки са отменени, ако не разрешите на групи да имат достъп до профила ви или ако отидете на частен потребител',
+ 'public-info' => 'Публична информация',
+ 'recent-achievements' => 'Последни постижения',
+ 'recent-followers' => 'Последни последователи',
+ 'registration-date' => 'Дата на Регистрация',
+ 'report' => 'доклад',
+ 'request-help' => 'Контролирайте споделянето на конкретни статистически данни, свързани със заявката, и информация за групи, на които е разрешен достъп до потребителския ви профил. Тези настройки са отменени, ако не разрешите на групи да имат достъп до заявената свързана статистика и информация, или ако отидете на частни',
+ 'request' => 'поискване',
+ 'requested' => 'Заявени',
+ 'requests' => 'Исканията',
+ 'request-comments' => 'Искане за коментари направени',
+ 'request-notification' => 'Заявете настройки за известия',
+ 'request-notification-bounty' => 'Получавайте известие, когато заявен торент получи нова награда',
+ 'request-notification-comment' => 'Получавайте известие, когато заявен торент получи нов коментар',
+ 'request-notification-fill' => 'Получаване на известие, когато се попълни искан торент',
+ 'request-notification-fill-approve' => 'Получете известие, когато бъде одобрена заявка за попълване на торенти',
+ 'request-notification-fill-reject' => 'Получаване на известие, когато исканото попълване на поток бъде отхвърлено',
+ 'request-notification-claim' => 'Получаване на известие, когато се иска заявен торент',
+ 'request-notification-unclaim' => 'Получаване на известие, когато искан торент стане непоискан',
+ 'request-notification-help' => 'Контролира кои уведомления се изпращат относно дейностите по заявка. Тези настройки са отменени, ако не позволите на групи да изпращат известия за дейности за заявка или ако деактивирате известия',
+ 'request-privacy' => 'Заявка за настройки',
+ 'request-privacy-requested' => 'Позволява на потребителите да виждат списък с заявки, които сте направили',
+ 'reset-passkey' => 'Ключ за нулиране (PID)',
+ 'reset-passkey-help' => 'Ще трябва да изтеглите отново / отново да качите всичките си активни торенти, след като възстановите PID',
+ 'reset-rss' => 'Възстановяване на ключ за RSS (RID)',
+ 'reset-rss-help' => 'Трябва да презаредите всичките си активни RSS емисии, след като възстановите RID',
+ 'resurrections' => 'възкресения',
+ 'search' => 'Бързо търсене по потребителско име',
+ 'security' => 'Сигурност',
+ 'security-settings' => 'Настройки на сигурността',
+ 'seedboxes' => 'Seedboxes',
+ 'seeds' => 'Семена',
+ 'send-invite' => 'Изпрати покана',
+ 'sender' => 'подател',
+ 'settings' => 'Настройки',
+ 'show-passkey' => 'Показване на PID',
+ 'staff-noted' => 'Акаунт на персонала',
+ 'statistics' => 'Статистика',
+ 'subscription-notification' => 'Настройки за известия за абонамент',
+ 'subscription-notification-forum' => 'Получете известие, когато абонаментният форум получи нова тема',
+ 'subscription-notification-topic' => 'Получете известие, когато абонаментна тема получи нова публикация',
+ 'subscription-notification-help' => 'Контролирайте кои известия се изпращат относно вашите абонаменти. Тези настройки са отменени, ако не разрешите на групи да изпращат известия относно абонаментите си или ако деактивирате известия',
+ 'thanks-given' => 'Благодаря',
+ 'thanks-received' => 'Благодаря получих',
+ 'tips-given' => 'Дадени съвети',
+ 'tips-received' => 'Получени съвети',
+ 'title' => 'Заглавие',
+ 'top-bankers' => 'Топ банкери',
+ 'top-downloaders-data' => 'Най-изтеглящи (данни)',
+ 'top-leechers' => 'Топ Leechers',
+ 'top-leechers-count' => 'Топ Leechers (брой)',
+ 'top-seeders' => 'Топ сеялки',
+ 'top-seeders-count' => 'Най-популярни семена (брой)',
+ 'top-seeding-size' => 'Топ сеитба (размер)',
+ 'top-seedtime' => 'Най-семето',
+ 'top-uploaders-data' => 'Най-големи кадри (данни)',
+ 'top-uploaders-count' => 'Най-големи кадри (брой)',
+ 'topics' => 'Теми',
+ 'topics-started' => 'Началните теми на форума',
+ 'torrent-comments' => 'Коментари направени',
+ 'torrent-help' => 'Контролирайте споделянето на конкретни статистически данни, свързани с поток, и информация с групи, на които е разрешен достъп до потребителския ви профил. Тези настройки са отменени, ако не позволявате на групи да имат достъп до статистиката и информацията, свързана с торента, или ако отидете на частни',
+ 'torrent-notification' => 'Настройки за известяване на торент',
+ 'torrent-notification-comment' => 'Получете известие, когато качен торент получи нов коментар',
+ 'torrent-notification-thank' => 'Получете известие, когато качен торент получи ново благодарност',
+ 'torrent-notification-tip' => 'Получете известие, когато качен торент получи нов съвет',
+ 'torrent-notification-help' => 'Контролира кои уведомления се изпращат за торент дейности. Тези настройки са отменени, ако не разрешите на групи да изпращат известия за торент дейности или ако деактивирате известия',
+ 'torrent-privacy' => 'Настройки на торент',
+ 'torrent-privacy-download' => 'Позволете на потребителите да виждат списък с изтеглени от вас торенти',
+ 'torrent-privacy-upload' => 'Позволява на потребителите да виждат списък с торенти, които сте качили',
+ 'torrent-privacy-peer' => 'Позволете на потребителите да ви виждат в таблицата с историята на торентите',
+ 'torrents' => 'Torrents',
+ 'torrents-history' => 'История на торентите',
+ 'total-download' => 'Общо изтегляне',
+ 'total-downloads' => 'Общо изтегляния',
+ 'total-leeching' => 'Общо Leeching',
+ 'total-seeding' => 'Общо засяване',
+ 'total-seedtime' => 'Общо време за сеене',
+ 'total-upload' => 'Общо качване',
+ 'total-uploads' => 'Общо качвания',
+ 'unban' => 'Деблокиране на потребител',
+ 'unfollow' => 'Не следвай',
+ 'unlocked' => 'отключена',
+ 'unlocked-achievements' => 'Отключени постижения',
+ 'unsatisfieds' => 'Unsatisfieds',
+ 'upload-bon' => 'Качването е добавено от BON Store',
+ 'upload-recorded' => 'Записано качване',
+ 'upload-true' => 'Истинско качване',
+ 'uploads' => 'Качването',
+ 'uploads-table' => 'Качване на таблица',
+ 'user' => 'потребител',
+ 'user-id' => 'Потребителски идентификатор',
+ 'username-seedbox' => 'Потребителско име Seedbox',
+ 'visible-to-achievement' => 'Постижения, видими за',
+ 'visible-to-achievement-help' => 'Вашите постижения ще бъдат видими само за персонала и следните групи. Тези настройки са отменени, ако отидете Private',
+ 'visible-to-follower' => 'Последователите са видими за',
+ 'visible-to-follower-help' => 'Вашите последователи ще бъдат видими само за персонала и следните групи. Тези настройки са отменени, ако отидете Private',
+ 'visible-to-forum' => 'Информация за форума Видима за',
+ 'visible-to-forum-help' => 'Информацията за вашия форум ще бъде видима само за персонала и следните групи. Тези настройки са отменени, ако отидете Private',
+ 'visible-to-other' => 'Други видими за',
+ 'visible-to-other-help' => 'Друга информация, свързана с профила ви, ще бъде видима само за персонала и следните групи. Тези настройки са отменени, ако отидете лично или ако отидете скрит',
+ 'visible-to-profile' => 'Профилът е видим за',
+ 'visible-to-profile-help' => 'Вашият профил ще бъде видим само за персонала и следните групи. Тези настройки са отменени, ако отидете Private',
+ 'visible-to-request' => 'Заявка за информация, видима за',
+ 'visible-to-request-help' => 'Вашата информация за заявката ще бъде видима само за персонала и следните групи. Тези настройки са отменени, ако отидете Private',
+ 'visible-to-torrent' => 'Информацията за торента е видима за',
+ 'visible-to-torrent-help' => 'Информацията ви за торентите ще бъде видима само за персонала и следните групи. Тези настройки са отменени, ако отидете лично или ако отидете скрит',
+ 'warned-on' => 'Предупредено на',
+ 'warning' => 'Внимание',
+ 'warning-log' => 'Предупредителен дневник',
+ 'wishlist' => 'списък с желания',
];
diff --git a/lang/bg/validation.php b/lang/bg/validation.php
index ba79aecdb..7fea19880 100644
--- a/lang/bg/validation.php
+++ b/lang/bg/validation.php
@@ -23,108 +23,108 @@ return [
|
*/
- 'accepted' => 'Трябва да приемете :attribute.',
- 'active_url' => 'Полето :attribute не е валиден URL адрес.',
- 'after' => 'Полето :attribute трябва да бъде дата след :date.',
- 'after_or_equal' => 'Полето :attribute трябва да бъде дата след или равна на :date.',
- 'alpha' => 'Полето :attribute трябва да съдържа само букви.',
- 'alpha_dash' => 'Полето :attribute трябва да съдържа само букви, цифри, долна черта и тире.',
- 'alpha_num' => 'Полето :attribute трябва да съдържа само букви и цифри.',
- 'array' => 'Полето :attribute трябва да бъде масив.',
- 'before' => 'Полето :attribute трябва да бъде дата преди :date.',
- 'before_or_equal' => 'Полето :attribute трябва да бъде дата преди или равна на :date.',
- 'between' => [
+ 'accepted' => 'Трябва да приемете :attribute.',
+ 'active_url' => 'Полето :attribute не е валиден URL адрес.',
+ 'after' => 'Полето :attribute трябва да бъде дата след :date.',
+ 'after_or_equal' => 'Полето :attribute трябва да бъде дата след или равна на :date.',
+ 'alpha' => 'Полето :attribute трябва да съдържа само букви.',
+ 'alpha_dash' => 'Полето :attribute трябва да съдържа само букви, цифри, долна черта и тире.',
+ 'alpha_num' => 'Полето :attribute трябва да съдържа само букви и цифри.',
+ 'array' => 'Полето :attribute трябва да бъде масив.',
+ 'before' => 'Полето :attribute трябва да бъде дата преди :date.',
+ 'before_or_equal' => 'Полето :attribute трябва да бъде дата преди или равна на :date.',
+ 'between' => [
'numeric' => 'Полето :attribute трябва да бъде между :min и :max.',
- 'file' => 'Полето :attribute трябва да бъде между :min и :max килобайта.',
- 'string' => 'Полето :attribute трябва да бъде между :min и :max знака.',
- 'array' => 'Полето :attribute трябва да има между :min - :max елемента.',
+ 'file' => 'Полето :attribute трябва да бъде между :min и :max килобайта.',
+ 'string' => 'Полето :attribute трябва да бъде между :min и :max знака.',
+ 'array' => 'Полето :attribute трябва да има между :min - :max елемента.',
],
- 'boolean' => 'Полето :attribute трябва да съдържа Да или Не',
- 'confirmed' => 'Полето :attribute не е потвърдено.',
- 'date' => 'Полето :attribute не е валидна дата.',
- 'date_equals' => 'The :attribute must be a date equal to :date.',
- 'date_format' => 'Полето :attribute не е във формат :format.',
- 'different' => 'Полетата :attribute и :other трябва да са различни.',
- 'digits' => 'Полето :attribute трябва да има :digits цифри.',
- 'digits_between' => 'Полето :attribute трябва да има между :min и :max цифри.',
- 'dimensions' => 'Невалидни размери за снимка :attribute.',
- 'distinct' => 'Данните в полето :attribute се дублират.',
- 'email' => 'Полето :attribute е в невалиден формат.',
- 'exists' => 'Избранато поле :attribute вече съществува.',
- 'file' => 'Полето :attribute трябва да бъде файл.',
- 'filled' => 'Полето :attribute е задължително.',
- 'gt' => [
+ 'boolean' => 'Полето :attribute трябва да съдържа Да или Не',
+ 'confirmed' => 'Полето :attribute не е потвърдено.',
+ 'date' => 'Полето :attribute не е валидна дата.',
+ 'date_equals' => 'The :attribute must be a date equal to :date.',
+ 'date_format' => 'Полето :attribute не е във формат :format.',
+ 'different' => 'Полетата :attribute и :other трябва да са различни.',
+ 'digits' => 'Полето :attribute трябва да има :digits цифри.',
+ 'digits_between' => 'Полето :attribute трябва да има между :min и :max цифри.',
+ 'dimensions' => 'Невалидни размери за снимка :attribute.',
+ 'distinct' => 'Данните в полето :attribute се дублират.',
+ 'email' => 'Полето :attribute е в невалиден формат.',
+ 'exists' => 'Избранато поле :attribute вече съществува.',
+ 'file' => 'Полето :attribute трябва да бъде файл.',
+ 'filled' => 'Полето :attribute е задължително.',
+ 'gt' => [
'numeric' => 'The :attribute must be greater than :value.',
- 'file' => 'The :attribute must be greater than :value kilobytes.',
- 'string' => 'The :attribute must be greater than :value characters.',
- 'array' => 'The :attribute must have more than :value items.',
+ 'file' => 'The :attribute must be greater than :value kilobytes.',
+ 'string' => 'The :attribute must be greater than :value characters.',
+ 'array' => 'The :attribute must have more than :value items.',
],
- 'gte' => [
+ 'gte' => [
'numeric' => 'The :attribute must be greater than or equal :value.',
- 'file' => 'The :attribute must be greater than or equal :value kilobytes.',
- 'string' => 'The :attribute must be greater than or equal :value characters.',
- 'array' => 'The :attribute must have :value items or more.',
+ 'file' => 'The :attribute must be greater than or equal :value kilobytes.',
+ 'string' => 'The :attribute must be greater than or equal :value characters.',
+ 'array' => 'The :attribute must have :value items or more.',
],
- 'image' => 'Полето :attribute трябва да бъде изображение.',
- 'in' => 'Избраното поле :attribute е невалидно.',
- 'in_array' => 'Полето :attribute не съществува в :other.',
- 'integer' => 'Полето :attribute трябва да бъде цяло число.',
- 'ip' => 'Полето :attribute трябва да бъде IP адрес.',
- 'ipv4' => 'Полето :attribute трябва да бъде IPv4 адрес.',
- 'ipv6' => 'Полето :attribute трябва да бъде IPv6 адрес.',
- 'json' => 'Полето :attribute трябва да бъде JSON низ.',
- 'lt' => [
+ 'image' => 'Полето :attribute трябва да бъде изображение.',
+ 'in' => 'Избраното поле :attribute е невалидно.',
+ 'in_array' => 'Полето :attribute не съществува в :other.',
+ 'integer' => 'Полето :attribute трябва да бъде цяло число.',
+ 'ip' => 'Полето :attribute трябва да бъде IP адрес.',
+ 'ipv4' => 'Полето :attribute трябва да бъде IPv4 адрес.',
+ 'ipv6' => 'Полето :attribute трябва да бъде IPv6 адрес.',
+ 'json' => 'Полето :attribute трябва да бъде JSON низ.',
+ 'lt' => [
'numeric' => 'The :attribute must be less than :value.',
- 'file' => 'The :attribute must be less than :value kilobytes.',
- 'string' => 'The :attribute must be less than :value characters.',
- 'array' => 'The :attribute must have less than :value items.',
+ 'file' => 'The :attribute must be less than :value kilobytes.',
+ 'string' => 'The :attribute must be less than :value characters.',
+ 'array' => 'The :attribute must have less than :value items.',
],
- 'lte' => [
+ 'lte' => [
'numeric' => 'The :attribute must be less than or equal :value.',
- 'file' => 'The :attribute must be less than or equal :value kilobytes.',
- 'string' => 'The :attribute must be less than or equal :value characters.',
- 'array' => 'The :attribute must not have more than :value items.',
+ 'file' => 'The :attribute must be less than or equal :value kilobytes.',
+ 'string' => 'The :attribute must be less than or equal :value characters.',
+ 'array' => 'The :attribute must not have more than :value items.',
],
- 'max' => [
+ 'max' => [
'numeric' => 'Полето :attribute трябва да бъде по-малко от :max.',
- 'file' => 'Полето :attribute трябва да бъде по-малко от :max килобайта.',
- 'string' => 'Полето :attribute трябва да бъде по-малко от :max знака.',
- 'array' => 'Полето :attribute трябва да има по-малко от :max елемента.',
+ 'file' => 'Полето :attribute трябва да бъде по-малко от :max килобайта.',
+ 'string' => 'Полето :attribute трябва да бъде по-малко от :max знака.',
+ 'array' => 'Полето :attribute трябва да има по-малко от :max елемента.',
],
- 'mimes' => 'Полето :attribute трябва да бъде файл от тип: :values.',
- 'mimetypes' => 'Полето :attribute трябва да бъде файл от тип: :values.',
- 'min' => [
+ 'mimes' => 'Полето :attribute трябва да бъде файл от тип: :values.',
+ 'mimetypes' => 'Полето :attribute трябва да бъде файл от тип: :values.',
+ 'min' => [
'numeric' => 'Полето :attribute трябва да бъде минимум :min.',
- 'file' => 'Полето :attribute трябва да бъде минимум :min килобайта.',
- 'string' => 'Полето :attribute трябва да бъде минимум :min знака.',
- 'array' => 'Полето :attribute трябва има минимум :min елемента.',
+ 'file' => 'Полето :attribute трябва да бъде минимум :min килобайта.',
+ 'string' => 'Полето :attribute трябва да бъде минимум :min знака.',
+ 'array' => 'Полето :attribute трябва има минимум :min елемента.',
],
- 'not_in' => 'Избраното поле :attribute е невалидно.',
- 'not_regex' => 'The :attribute format is invalid.',
- 'numeric' => 'Полето :attribute трябва да бъде число.',
- 'present' => 'Полето :attribute трябва да съествува.',
- 'regex' => 'Полето :attribute е в невалиден формат.',
- 'required' => 'Полето :attribute е задължително.',
- 'required_if' => 'Полето :attribute се изисква, когато :other е :value.',
- 'required_unless' => 'Полето :attribute се изисква, освен ако :other не е в :values.',
- 'required_with' => 'Полето :attribute се изисква, когато :values има стойност.',
- 'required_with_all' => 'Полето :attribute е задължително, когато :values имат стойност.',
- 'required_without' => 'Полето :attribute се изисква, когато :values няма стойност.',
+ 'not_in' => 'Избраното поле :attribute е невалидно.',
+ 'not_regex' => 'The :attribute format is invalid.',
+ 'numeric' => 'Полето :attribute трябва да бъде число.',
+ 'present' => 'Полето :attribute трябва да съествува.',
+ 'regex' => 'Полето :attribute е в невалиден формат.',
+ 'required' => 'Полето :attribute е задължително.',
+ 'required_if' => 'Полето :attribute се изисква, когато :other е :value.',
+ 'required_unless' => 'Полето :attribute се изисква, освен ако :other не е в :values.',
+ 'required_with' => 'Полето :attribute се изисква, когато :values има стойност.',
+ 'required_with_all' => 'Полето :attribute е задължително, когато :values имат стойност.',
+ 'required_without' => 'Полето :attribute се изисква, когато :values няма стойност.',
'required_without_all' => 'Полето :attribute се изисква, когато никое от полетата :values няма стойност.',
- 'same' => 'Полетата :attribute и :other трябва да съвпадат.',
- 'size' => [
+ 'same' => 'Полетата :attribute и :other трябва да съвпадат.',
+ 'size' => [
'numeric' => 'Полето :attribute трябва да бъде :size.',
- 'file' => 'Полето :attribute трябва да бъде :size килобайта.',
- 'string' => 'Полето :attribute трябва да бъде :size знака.',
- 'array' => 'Полето :attribute трябва да има :size елемента.',
+ 'file' => 'Полето :attribute трябва да бъде :size килобайта.',
+ 'string' => 'Полето :attribute трябва да бъде :size знака.',
+ 'array' => 'Полето :attribute трябва да има :size елемента.',
],
- 'starts_with' => 'The :attribute must start with one of the following: :values',
- 'string' => 'Полето :attribute трябва да бъде знаков низ.',
- 'timezone' => 'Полето :attribute трябва да съдържа валидна часова зона.',
- 'unique' => 'Полето :attribute вече съществува.',
- 'uploaded' => 'Неуспешно качване на :attribute.',
- 'url' => 'Полето :attribute е в невалиден формат.',
- 'uuid' => 'The :attribute must be a valid UUID.',
+ 'starts_with' => 'The :attribute must start with one of the following: :values',
+ 'string' => 'Полето :attribute трябва да бъде знаков низ.',
+ 'timezone' => 'Полето :attribute трябва да съдържа валидна часова зона.',
+ 'unique' => 'Полето :attribute вече съществува.',
+ 'uploaded' => 'Неуспешно качване на :attribute.',
+ 'url' => 'Полето :attribute е в невалиден формат.',
+ 'uuid' => 'The :attribute must be a valid UUID.',
/*
|--------------------------------------------------------------------------
@@ -155,36 +155,36 @@ return [
*/
'attributes' => [
- 'name' => 'Име',
- 'username' => 'Потребител',
- 'email' => 'E-mail',
- 'first_name' => 'Име',
- 'last_name' => 'Фамилия',
- 'password' => 'Парола',
- 'city' => 'Град',
- 'country' => 'Държава',
- 'address' => 'Адрес',
- 'phone' => 'Телефон',
- 'mobile' => 'GSM',
- 'age' => 'Възраст',
- 'sex' => 'Пол',
- 'gender' => 'Пол',
- 'day' => 'Ден',
- 'month' => 'Месец',
- 'year' => 'Година',
- 'hour' => 'Час',
- 'minute' => 'Минута',
- 'second' => 'Секунда',
- 'title' => 'Заглавие',
- 'content' => 'Съдържание',
- 'description' => 'Описание',
- 'excerpt' => 'Откъс',
- 'date' => 'Дата',
- 'time' => 'Време',
- 'available' => 'Достъпен',
- 'size' => 'Размер',
+ 'name' => 'Име',
+ 'username' => 'Потребител',
+ 'email' => 'E-mail',
+ 'first_name' => 'Име',
+ 'last_name' => 'Фамилия',
+ 'password' => 'Парола',
+ 'city' => 'Град',
+ 'country' => 'Държава',
+ 'address' => 'Адрес',
+ 'phone' => 'Телефон',
+ 'mobile' => 'GSM',
+ 'age' => 'Възраст',
+ 'sex' => 'Пол',
+ 'gender' => 'Пол',
+ 'day' => 'Ден',
+ 'month' => 'Месец',
+ 'year' => 'Година',
+ 'hour' => 'Час',
+ 'minute' => 'Минута',
+ 'second' => 'Секунда',
+ 'title' => 'Заглавие',
+ 'content' => 'Съдържание',
+ 'description' => 'Описание',
+ 'excerpt' => 'Откъс',
+ 'date' => 'Дата',
+ 'time' => 'Време',
+ 'available' => 'Достъпен',
+ 'size' => 'Размер',
'recaptcha_response_field' => 'Рекапча',
- 'subject' => 'Заглавие',
- 'message' => 'Съобщение',
+ 'subject' => 'Заглавие',
+ 'message' => 'Съобщение',
],
];
diff --git a/lang/bn/articles.php b/lang/bn/articles.php
index 5348f6234..5a746a2d4 100644
--- a/lang/bn/articles.php
+++ b/lang/bn/articles.php
@@ -12,8 +12,8 @@
*/
return [
- 'articles' => 'প্রবন্ধ',
+ 'articles' => 'প্রবন্ধ',
'meta-articles' => 'ট্র্যাকার এবং সম্প্রদায়ের নিবন্ধ এবং খবর',
- 'published-at' => 'প্রকাশিত',
- 'read-more' => 'আরো পড়ুন',
+ 'published-at' => 'প্রকাশিত',
+ 'read-more' => 'আরো পড়ুন',
];
diff --git a/lang/bn/auth.php b/lang/bn/auth.php
index 11bdab248..4fb2d8da1 100644
--- a/lang/bn/auth.php
+++ b/lang/bn/auth.php
@@ -23,6 +23,6 @@ return [
|
*/
- 'failed' => 'এই পরিচয়পত্র আমাদের রেকর্ডের সাথে মেলে না.',
+ 'failed' => 'এই পরিচয়পত্র আমাদের রেকর্ডের সাথে মেলে না.',
'throttle' => 'লগইন করার জন্য অনেকগুলি চেষ্টা করেছেন. :seconds সেকেন্ড পরে আবার চেষ্টা করুন .',
];
diff --git a/lang/bn/backup.php b/lang/bn/backup.php
index 8318e4e1a..395eeb24d 100644
--- a/lang/bn/backup.php
+++ b/lang/bn/backup.php
@@ -12,32 +12,32 @@
*/
return [
- 'actions' => 'ক্রিয়াকলাপ',
- 'backup' => 'ব্যাকআপ',
- 'backup_doesnt_exist' => 'ব্যাকআপ ফাইল বিদ্যমান নেই।',
- 'create_a_new_backup' => 'সম্পূর্ণ ব্যাকআপ তৈরি করুন',
- 'create_a_new_files_backup' => 'ফাইল ব্যাকআপ তৈরি করুন',
- 'create_a_new_db_backup' => 'ডাটাবেস ব্যাকআপ তৈরি করুন',
- 'create_confirmation_message' => '3 সেকেন্ডের মধ্যে পৃষ্ঠা পুনরায় লোড হচ্ছে।',
- 'create_confirmation_title' => 'ব্যাকআপ সম্পন্ন',
- 'create_error_message' => 'ব্যাকআপ ফাইল তৈরি করা যায়নি।',
- 'create_error_title' => 'ব্যাকআপ ত্রুটি',
- 'create_warning_message' => 'আপনার ব্যাকআপ তৈরি করা হতে পারে না। বিস্তারিত জানার জন্য লগ ফাইল চেক করুন।',
- 'create_warning_title' => 'অজানা ত্রুটি',
- 'date' => 'তারিখ',
- 'delete' => 'মুছে ফেলা',
- 'delete_cancel_message' => 'ব্যাকআপ ফাইল মুছে ফেলা হয়েছে।',
- 'delete_cancel_title' => 'ঠিক আছে',
- 'delete_confirm' => 'আপনি কি এই ব্যাকআপ ফাইল মুছে ফেলতে চান?',
- 'delete_confirmation_message' => 'ব্যাকআপ ফাইল মুছে ফেলা হয়েছে।',
- 'delete_confirmation_title' => 'সম্পন্ন',
- 'delete_error_message' => 'ব্যাকআপ ফাইল মুছে ফেলা হয়েছে।',
- 'delete_error_title' => 'এরর',
- 'download' => 'ডাউনলোড',
- 'existing_backups' => 'বিদ্যমান ব্যাকআপ',
- 'file_size' => 'ফাইলের আকার',
- 'location' => 'অবস্থান',
- 'manager' => 'ম্যানেজার',
- 'no_disks_configured' => 'কনফিগার / backup.php কনফিগার করা কোন ব্যাকআপ ডিস্ক',
+ 'actions' => 'ক্রিয়াকলাপ',
+ 'backup' => 'ব্যাকআপ',
+ 'backup_doesnt_exist' => 'ব্যাকআপ ফাইল বিদ্যমান নেই।',
+ 'create_a_new_backup' => 'সম্পূর্ণ ব্যাকআপ তৈরি করুন',
+ 'create_a_new_files_backup' => 'ফাইল ব্যাকআপ তৈরি করুন',
+ 'create_a_new_db_backup' => 'ডাটাবেস ব্যাকআপ তৈরি করুন',
+ 'create_confirmation_message' => '3 সেকেন্ডের মধ্যে পৃষ্ঠা পুনরায় লোড হচ্ছে।',
+ 'create_confirmation_title' => 'ব্যাকআপ সম্পন্ন',
+ 'create_error_message' => 'ব্যাকআপ ফাইল তৈরি করা যায়নি।',
+ 'create_error_title' => 'ব্যাকআপ ত্রুটি',
+ 'create_warning_message' => 'আপনার ব্যাকআপ তৈরি করা হতে পারে না। বিস্তারিত জানার জন্য লগ ফাইল চেক করুন।',
+ 'create_warning_title' => 'অজানা ত্রুটি',
+ 'date' => 'তারিখ',
+ 'delete' => 'মুছে ফেলা',
+ 'delete_cancel_message' => 'ব্যাকআপ ফাইল মুছে ফেলা হয়েছে।',
+ 'delete_cancel_title' => 'ঠিক আছে',
+ 'delete_confirm' => 'আপনি কি এই ব্যাকআপ ফাইল মুছে ফেলতে চান?',
+ 'delete_confirmation_message' => 'ব্যাকআপ ফাইল মুছে ফেলা হয়েছে।',
+ 'delete_confirmation_title' => 'সম্পন্ন',
+ 'delete_error_message' => 'ব্যাকআপ ফাইল মুছে ফেলা হয়েছে।',
+ 'delete_error_title' => 'এরর',
+ 'download' => 'ডাউনলোড',
+ 'existing_backups' => 'বিদ্যমান ব্যাকআপ',
+ 'file_size' => 'ফাইলের আকার',
+ 'location' => 'অবস্থান',
+ 'manager' => 'ম্যানেজার',
+ 'no_disks_configured' => 'কনফিগার / backup.php কনফিগার করা কোন ব্যাকআপ ডিস্ক',
'only_local_downloads_supported' => 'শুধুমাত্র স্থানীয় ফাইল সিস্টেম থেকে ডাউনলোড সমর্থিত হয়।',
];
diff --git a/lang/bn/blocks.php b/lang/bn/blocks.php
index c36872921..70900b5ab 100644
--- a/lang/bn/blocks.php
+++ b/lang/bn/blocks.php
@@ -12,19 +12,19 @@
*/
return [
- 'chatbox' => 'চ্যাট বক্স',
- 'click' => 'ক্লিক',
- 'to-enable-editor' => 'সম্পাদক সক্রিয় করতে',
- 'featured-by' => 'দ্বারা বৈশিষ্ট্যযুক্ত',
- 'featured-torrents' => 'বৈশিষ্ট্যযুক্ত টরেন্টস',
+ 'chatbox' => 'চ্যাট বক্স',
+ 'click' => 'ক্লিক',
+ 'to-enable-editor' => 'সম্পাদক সক্রিয় করতে',
+ 'featured-by' => 'দ্বারা বৈশিষ্ট্যযুক্ত',
+ 'featured-torrents' => 'বৈশিষ্ট্যযুক্ত টরেন্টস',
'featured-torrents-intro' => 'আপনি করতে পারেন যখন তাদের পেতে!',
- 'featured-until' => 'এই পর্যন্ত টরেন্ট বৈশিষ্ট্যযুক্ত করা হয়',
- 'top-torrents' => 'শীর্ষ টরেন্টস',
- 'latest-posts' => 'সর্বশেষ পোস্ট',
- 'latest-topics' => 'সর্বশেষ বিষয়',
- 'active-in-last' => 'শেষ সক্রিয়',
- 'users-online' => 'ব্যবহারকারীদের অনলাইন',
- 'check-news' => 'খবর (প্রতিদিন চেক করুন)',
- 'new-news' => 'নতুন খবর',
- 'new-torrents' => 'নতুন টরেন্টস',
+ 'featured-until' => 'এই পর্যন্ত টরেন্ট বৈশিষ্ট্যযুক্ত করা হয়',
+ 'top-torrents' => 'শীর্ষ টরেন্টস',
+ 'latest-posts' => 'সর্বশেষ পোস্ট',
+ 'latest-topics' => 'সর্বশেষ বিষয়',
+ 'active-in-last' => 'শেষ সক্রিয়',
+ 'users-online' => 'ব্যবহারকারীদের অনলাইন',
+ 'check-news' => 'খবর (প্রতিদিন চেক করুন)',
+ 'new-news' => 'নতুন খবর',
+ 'new-torrents' => 'নতুন টরেন্টস',
];
diff --git a/lang/bn/bon.php b/lang/bn/bon.php
index 8ec6f585a..c3232f384 100644
--- a/lang/bn/bon.php
+++ b/lang/bn/bon.php
@@ -12,44 +12,44 @@
*/
return [
- 'activated' => 'সক্রিয়',
- 'active' => 'সক্রিয় হয়েছে!',
- 'amount' => 'পরিমাণ',
- 'bon' => 'BON',
- 'bonus' => 'বোনাস',
- 'date' => 'তারিখ',
- 'earning' => 'রোজগার',
- 'earning-rate' => 'আয় করার এই হারে আপনি প্রতি সময়সীমা অর্জন করবেন।',
- 'earnings' => 'উপার্জন',
- 'exchange' => 'বিনিময়',
- 'exchange-warning' => 'এক্সচেঞ্জগুলি চূড়ান্ত, অনুগ্রহ করে একটি এক্সচেঞ্জ তৈরি করার পূর্বে আপনার পছন্দগুলি চেক করুন।',
- 'extended-stats' => 'বর্ধিত পরিসংখ্যান',
- 'gift' => 'উপহার',
- 'gift-bonus' => 'উপহার বোনাস পয়েন্ট',
- 'gift-to' => 'উপহার বোনাস পয়েন্ট',
- 'gifts' => 'উপহার',
- 'item' => 'পদ',
- 'no-refund' => 'কোন রিফান্ড!',
- 'per-day' => 'পয়েন্ট প্রতি দিন',
- 'per-hour' => 'ঘন্টা প্রতি পয়েন্ট',
- 'per-minute' => 'মিনিট পয়েন্ট',
- 'per-month' => 'প্রতি মাসে পয়েন্ট',
- 'per-second' => 'পয়েন্ট প্রতি সেকেন্ড',
- 'per-week' => 'প্রতি সপ্তাহে পয়েন্ট',
- 'per-year' => 'পয়েন্ট প্রতি বছর',
- 'points' => 'পয়েন্ট',
- 'receiver' => 'গ্রাহক',
- 'review-seeds' => 'সমস্ত বীজতলা Torrents পর্যালোচনা',
- 'send-gift' => 'উপহার পাঠাও',
- 'sender' => 'প্রেরকের',
- 'store' => 'দোকান',
- 'tips' => 'পরামর্শ',
- 'total' => 'সর্বমোট উপার্জন',
- 'total-gifts' => 'মোট বন উপহার',
- 'total-tips' => 'মোট বন টিপস',
+ 'activated' => 'সক্রিয়',
+ 'active' => 'সক্রিয় হয়েছে!',
+ 'amount' => 'পরিমাণ',
+ 'bon' => 'BON',
+ 'bonus' => 'বোনাস',
+ 'date' => 'তারিখ',
+ 'earning' => 'রোজগার',
+ 'earning-rate' => 'আয় করার এই হারে আপনি প্রতি সময়সীমা অর্জন করবেন।',
+ 'earnings' => 'উপার্জন',
+ 'exchange' => 'বিনিময়',
+ 'exchange-warning' => 'এক্সচেঞ্জগুলি চূড়ান্ত, অনুগ্রহ করে একটি এক্সচেঞ্জ তৈরি করার পূর্বে আপনার পছন্দগুলি চেক করুন।',
+ 'extended-stats' => 'বর্ধিত পরিসংখ্যান',
+ 'gift' => 'উপহার',
+ 'gift-bonus' => 'উপহার বোনাস পয়েন্ট',
+ 'gift-to' => 'উপহার বোনাস পয়েন্ট',
+ 'gifts' => 'উপহার',
+ 'item' => 'পদ',
+ 'no-refund' => 'কোন রিফান্ড!',
+ 'per-day' => 'পয়েন্ট প্রতি দিন',
+ 'per-hour' => 'ঘন্টা প্রতি পয়েন্ট',
+ 'per-minute' => 'মিনিট পয়েন্ট',
+ 'per-month' => 'প্রতি মাসে পয়েন্ট',
+ 'per-second' => 'পয়েন্ট প্রতি সেকেন্ড',
+ 'per-week' => 'প্রতি সপ্তাহে পয়েন্ট',
+ 'per-year' => 'পয়েন্ট প্রতি বছর',
+ 'points' => 'পয়েন্ট',
+ 'receiver' => 'গ্রাহক',
+ 'review-seeds' => 'সমস্ত বীজতলা Torrents পর্যালোচনা',
+ 'send-gift' => 'উপহার পাঠাও',
+ 'sender' => 'প্রেরকের',
+ 'store' => 'দোকান',
+ 'tips' => 'পরামর্শ',
+ 'total' => 'সর্বমোট উপার্জন',
+ 'total-gifts' => 'মোট বন উপহার',
+ 'total-tips' => 'মোট বন টিপস',
'you-have-received-gifts' => 'আপনি পেয়েছেন',
- 'you-have-sent-gifts' => 'সপ্তাহের দিন',
- 'you-have-received-tips' => 'আপনি পেয়েছেন',
- 'you-have-sent-tips' => 'সপ্তাহের দিন',
- 'your-points' => 'আপনার পয়েন্ট',
+ 'you-have-sent-gifts' => 'সপ্তাহের দিন',
+ 'you-have-received-tips' => 'আপনি পেয়েছেন',
+ 'you-have-sent-tips' => 'সপ্তাহের দিন',
+ 'your-points' => 'আপনার পয়েন্ট',
];
diff --git a/lang/bn/bot.php b/lang/bn/bot.php
index 2fba554b2..df03f1957 100644
--- a/lang/bn/bot.php
+++ b/lang/bn/bot.php
@@ -12,15 +12,15 @@
*/
return [
- 'about' => 'সম্পর্কিত',
- 'bot' => 'বট',
- 'bots' => 'বট',
- 'color' => 'রঙ',
- 'command' => 'হুকুম',
- 'edit-bot' => 'বিট সম্পাদনা করুন',
+ 'about' => 'সম্পর্কিত',
+ 'bot' => 'বট',
+ 'bots' => 'বট',
+ 'color' => 'রঙ',
+ 'command' => 'হুকুম',
+ 'edit-bot' => 'বিট সম্পাদনা করুন',
'emoji-code' => 'ইমোজি কোড',
- 'help' => 'সাহায্য করুন',
- 'icon' => 'আইকন',
- 'info' => 'তথ্য',
- 'name' => 'নাম',
+ 'help' => 'সাহায্য করুন',
+ 'icon' => 'আইকন',
+ 'info' => 'তথ্য',
+ 'name' => 'নাম',
];
diff --git a/lang/bn/bug.php b/lang/bn/bug.php
index 85d7b4137..c72c76213 100644
--- a/lang/bn/bug.php
+++ b/lang/bn/bug.php
@@ -12,15 +12,15 @@
*/
return [
- 'bug-report' => 'বাগ রিপোর্ট',
+ 'bug-report' => 'বাগ রিপোর্ট',
'bug-report-description' => 'একটি সাইট বাগ রিপোর্ট করুন',
- 'enter-description' => 'যতটা সম্ভব সর্বোত্তম সমস্যার বর্ণনা দিন',
- 'enter-email' => 'আপনার ইমেল ঠিকানা লিখুন দয়া করে',
- 'enter-title' => 'একটি সঠিক শিরোনাম নির্বাচন করুন',
- 'enter-username' => 'আপনার ব্যবহারকারীর নাম লিখুন',
- 'high' => 'উচ্চ',
- 'low' => 'কম',
- 'priority' => 'অগ্রাধিকার',
- 'priority-description' => 'বাগ সত্যিই সাইট ব্যবহার করার জন্য একটি সমস্যা যদি শুধুমাত্র খুব উচ্চ চয়ন করুন।',
- 'very-high' => 'সুউচ্চ',
+ 'enter-description' => 'যতটা সম্ভব সর্বোত্তম সমস্যার বর্ণনা দিন',
+ 'enter-email' => 'আপনার ইমেল ঠিকানা লিখুন দয়া করে',
+ 'enter-title' => 'একটি সঠিক শিরোনাম নির্বাচন করুন',
+ 'enter-username' => 'আপনার ব্যবহারকারীর নাম লিখুন',
+ 'high' => 'উচ্চ',
+ 'low' => 'কম',
+ 'priority' => 'অগ্রাধিকার',
+ 'priority-description' => 'বাগ সত্যিই সাইট ব্যবহার করার জন্য একটি সমস্যা যদি শুধুমাত্র খুব উচ্চ চয়ন করুন।',
+ 'very-high' => 'সুউচ্চ',
];
diff --git a/lang/bn/common.php b/lang/bn/common.php
index 4dc323c0e..56bdb3080 100644
--- a/lang/bn/common.php
+++ b/lang/bn/common.php
@@ -12,179 +12,179 @@
*/
return [
- 'a-an-art' => '',
- 'about' => 'আমাদের সম্পর্কে',
- 'account' => 'হিসাব',
- 'achievement-title' => 'অসাধারণ',
+ 'a-an-art' => '',
+ 'about' => 'আমাদের সম্পর্কে',
+ 'account' => 'হিসাব',
+ 'achievement-title' => 'অসাধারণ',
'achievement-unlocked' => 'আপনি আনলক ": নাম" কৃতিত্ব',
- 'active' => 'সক্রিয়',
- 'active-warning' => 'সক্রিয় সতর্কতা',
- 'add' => 'যোগ',
- 'added' => 'যোগ করা হয়েছে',
- 'amount' => 'পরিমাণ',
- 'anonymous' => 'নামবিহীন',
- 'author' => 'লেখক',
- 'balance' => 'ভারসাম্য',
- 'blacklist' => 'ক্লায়েন্ট ব্ল্যাকলিস্ট',
- 'buffer' => 'বাফার',
- 'bug' => 'একটি বাগ রিপোর্ট',
- 'but' => 'কিন্তু',
- 'cancel' => 'বাতিল',
- 'category' => 'বিভাগ',
- 'categories' => 'ধরন',
- 'close' => 'ঘনিষ্ঠ',
- 'comment' => 'মন্তব্য',
- 'comments' => 'মন্তব্য',
- 'community' => 'সম্প্রদায়',
- 'contact' => 'যোগাযোগ',
- 'contact-desc' => 'এই যোগাযোগের অনুরোধটি মালিককে পাঠানো হবে এবং যত তাড়াতাড়ি সম্ভব আপনার কাছে ফিরে আসবে',
- 'contact-header' => 'হ্যালো',
- 'create' => 'সৃষ্টি',
- 'created_at' => 'এ নির্মিত',
- 'day' => 'দিন',
- 'delete' => 'মুছে ফেলা',
- 'delete-your-comment' => 'আপনার মন্তব্য মুছে দিন',
- 'description' => 'বিবরণ',
- 'direction' => 'অভিমুখ',
- 'disable' => 'অক্ষম',
- 'doubleup_activated' => 'গ্লোবাল ডাবল আপলোড মোড সক্রিয়',
- 'download' => 'ডাউনলোড',
- 'edit' => 'সম্পাদন করা',
- 'edit-your-comment' => 'আপনার মন্তব্য সম্পাদনা করুন',
- 'email' => 'ই-মেইল',
- 'email-blacklist' => 'ইমেল ব্ল্যাকলিস্ট',
- 'email-whitelist' => 'ইমেইল Whitelist',
+ 'active' => 'সক্রিয়',
+ 'active-warning' => 'সক্রিয় সতর্কতা',
+ 'add' => 'যোগ',
+ 'added' => 'যোগ করা হয়েছে',
+ 'amount' => 'পরিমাণ',
+ 'anonymous' => 'নামবিহীন',
+ 'author' => 'লেখক',
+ 'balance' => 'ভারসাম্য',
+ 'blacklist' => 'ক্লায়েন্ট ব্ল্যাকলিস্ট',
+ 'buffer' => 'বাফার',
+ 'bug' => 'একটি বাগ রিপোর্ট',
+ 'but' => 'কিন্তু',
+ 'cancel' => 'বাতিল',
+ 'category' => 'বিভাগ',
+ 'categories' => 'ধরন',
+ 'close' => 'ঘনিষ্ঠ',
+ 'comment' => 'মন্তব্য',
+ 'comments' => 'মন্তব্য',
+ 'community' => 'সম্প্রদায়',
+ 'contact' => 'যোগাযোগ',
+ 'contact-desc' => 'এই যোগাযোগের অনুরোধটি মালিককে পাঠানো হবে এবং যত তাড়াতাড়ি সম্ভব আপনার কাছে ফিরে আসবে',
+ 'contact-header' => 'হ্যালো',
+ 'create' => 'সৃষ্টি',
+ 'created_at' => 'এ নির্মিত',
+ 'day' => 'দিন',
+ 'delete' => 'মুছে ফেলা',
+ 'delete-your-comment' => 'আপনার মন্তব্য মুছে দিন',
+ 'description' => 'বিবরণ',
+ 'direction' => 'অভিমুখ',
+ 'disable' => 'অক্ষম',
+ 'doubleup_activated' => 'গ্লোবাল ডাবল আপলোড মোড সক্রিয়',
+ 'download' => 'ডাউনলোড',
+ 'edit' => 'সম্পাদন করা',
+ 'edit-your-comment' => 'আপনার মন্তব্য সম্পাদনা করুন',
+ 'email' => 'ই-মেইল',
+ 'email-blacklist' => 'ইমেল ব্ল্যাকলিস্ট',
+ 'email-whitelist' => 'ইমেইল Whitelist',
'email-list-notactive' => 'ইমেইল হোয়াইটলিস্ট / ব্ল্যাকলিস্ট সিস্টেম সক্রিয় করা হয় না',
- 'enable' => 'সক্ষম করা',
- 'enter' => 'প্রবেশ করান',
- 'error' => 'এরর',
- 'everyday' => 'প্রতিদিন',
- 'expired' => 'মেয়াদোত্তীর্ণ',
- 'extra' => 'অতিরিক্ত',
- 'extra-stats' => 'এক্সট্রা-পরিসংখ্যান',
- 'faq' => 'প্রায়শই জিজ্ঞাসিত প্রশ্নাবলী',
- 'files' => 'নথি পত্র',
- 'fl_token' => 'ফ্রিলিচ টোকেন',
- 'fl_tokens' => 'ফ্রিলিচ টোকেন',
- 'for' => 'জন্য',
- 'forum' => 'ফোরাম',
- 'free' => 'বিনামূল্যে',
- 'freeleech_activated' => 'গ্লোবাল ফ্রিলেক মোড সক্রিয়',
- 'global' => 'বিশ্বব্যাপী',
- 'group' => 'গ্রুপ',
- 'groups' => 'গ্রুপ',
- 'hidden' => 'গোপন',
- 'high-speeds' => 'উচ্চ গতি',
- 'home' => 'বাড়ি',
- 'hot' => 'গরম!',
- 'hour' => 'ঘন্টা',
- 'huge' => 'বিপুল',
- 'info' => 'তথ্য',
- 'internal' => 'অভ্যন্তরীণ',
- 'ip' => 'আইপি',
- 'is-allowed' => 'অনুমতি দেওয়া হয়',
- 'large' => 'বড়',
- 'latest' => 'সর্বশেষ',
- 'latest-posts' => 'সর্বশেষ পোস্ট',
- 'latest-topics' => 'সর্বশেষ বিষয়',
- 'legal' => 'আইনগত',
- 'legend' => 'কিংবদন্তি',
- 'lists' => 'তালিকাসমূহ',
- 'lock-account' => 'অ্যাকাউন্ট লক করুন',
- 'logout' => 'প্রস্থান',
- 'members' => 'সদস্য',
- 'message' => 'বার্তা',
- 'minute' => 'মিনিট',
- 'moderated-by' => 'দ্বারা নিয়ন্ত্রিত',
- 'moderation' => 'সংযম',
- 'moderation-approve' => 'অনুমোদন করা',
- 'moderation-postpone' => 'মুলতবি করা',
- 'moderation-reject' => 'প্রত্যাখ্যান',
- 'month' => 'মাস',
- 'months' => 'মাস',
- 'my' => 'আমার',
- 'name' => 'নাম',
- 'navigation' => 'ন্যাভিগেশন',
- 'new' => 'নতুন',
- 'new-adj' => 'নতুন',
- 'news' => 'খবর',
- 'next' => 'পরবর্তী',
- 'no' => 'না',
- 'no-comments' => 'এখনো কোন মন্তব্য নেই',
- 'no-result' => 'প্রশ্নের জন্য ডাটাবেসের মধ্যে কোন ফলাফল নেই',
- 'notifications' => 'বিজ্ঞপ্তিগুলি',
- 'older-than' => 'অপেক্ষাকৃত পুরনো',
- 'oldest' => 'প্রবীণতম',
- 'openreg_activated' => 'খোলা নিবন্ধন সক্রিয়',
- 'order-by' => 'দ্বারা অর্ডার',
- 'other' => 'অন্যান্য',
- 'pages' => 'পেজ',
- 'password' => 'পাসওয়ার্ড',
- 'patron' => 'একটি পৃষ্ঠপোষক হন',
- 'pending-torrents' => 'বিলম্বিত টরেন্টস',
- 'personal' => 'ব্যক্তিগত',
- 'plural-suffix' => 'গুলি',
- 'port' => 'বন্দর',
- 'position' => 'অবস্থান',
- 'posts' => 'পোস্ট',
- 'powered-by' => 'UNIT3D দ্বারা চালিত',
- 'preview' => 'পূর্বরূপ',
- 'previous' => 'আগে',
- 'progress' => 'উন্নতি',
- 'publish' => 'প্রকাশ করা',
- 'quantity' => 'পরিমাণ',
- 'quick-search' => 'দ্রুত অনুসন্ধান',
- 'ratio' => 'অনুপাত',
- 'reason' => 'কারণ',
- 'remove' => 'অপসারণ',
- 'report' => 'প্রতিবেদন',
- 'resend' => 'আবার পাঠান',
- 'reporter' => 'সংবাদদাতা',
- 'required' => 'প্রয়োজনীয়',
- 'results' => 'ফলাফল',
- 'rss-system' => 'আরএসএস সিস্টেম',
- 'rules' => 'বিধি',
- 'save' => 'সংরক্ষণ করুন',
- 'search' => 'অনুসন্ধান',
- 'search-results' => 'অনুসন্ধান ফলাফল',
- 'search-results-desc' => 'নিচে আপনার ফলাফল দেখতে দয়া করে',
- 'second' => 'দ্বিতীয়',
- 'select' => 'নির্বাচন করা',
- 'sort' => 'সাজান',
- 'special' => 'বিশেষ',
- 'staff' => 'কর্মী',
- 'staff-tools' => 'স্টাফ সরঞ্জাম',
- 'stats' => 'পরিসংখ্যান',
- 'status' => 'অবস্থা',
- 'sticked' => 'sticked',
- 'submit' => 'জমা দিন',
- 'subscriptions' => 'সাবস্ক্রিপশন',
- 'teams' => 'দলসমূহ',
- 'terms' => 'ব্যবহারের শর্তাবলী',
- 'times' => 'টাইমস',
- 'title' => 'খেতাব',
- 'top-bountied' => 'শীর্ষস্থানীয়',
- 'topics' => 'টপিক',
- 'tracker-codes' => 'ট্র্যাকার কোড',
- 'type' => 'আদর্শ',
- 'type-verb' => 'আদর্শ',
- 'types' => 'প্রকারভেদ',
- 'genre' => 'রীতি',
- 'genres' => 'জেনার',
- 'action' => 'কর্ম',
- 'actions' => 'ক্রিয়াকলাপ',
- 'unknown' => 'অজানা',
+ 'enable' => 'সক্ষম করা',
+ 'enter' => 'প্রবেশ করান',
+ 'error' => 'এরর',
+ 'everyday' => 'প্রতিদিন',
+ 'expired' => 'মেয়াদোত্তীর্ণ',
+ 'extra' => 'অতিরিক্ত',
+ 'extra-stats' => 'এক্সট্রা-পরিসংখ্যান',
+ 'faq' => 'প্রায়শই জিজ্ঞাসিত প্রশ্নাবলী',
+ 'files' => 'নথি পত্র',
+ 'fl_token' => 'ফ্রিলিচ টোকেন',
+ 'fl_tokens' => 'ফ্রিলিচ টোকেন',
+ 'for' => 'জন্য',
+ 'forum' => 'ফোরাম',
+ 'free' => 'বিনামূল্যে',
+ 'freeleech_activated' => 'গ্লোবাল ফ্রিলেক মোড সক্রিয়',
+ 'global' => 'বিশ্বব্যাপী',
+ 'group' => 'গ্রুপ',
+ 'groups' => 'গ্রুপ',
+ 'hidden' => 'গোপন',
+ 'high-speeds' => 'উচ্চ গতি',
+ 'home' => 'বাড়ি',
+ 'hot' => 'গরম!',
+ 'hour' => 'ঘন্টা',
+ 'huge' => 'বিপুল',
+ 'info' => 'তথ্য',
+ 'internal' => 'অভ্যন্তরীণ',
+ 'ip' => 'আইপি',
+ 'is-allowed' => 'অনুমতি দেওয়া হয়',
+ 'large' => 'বড়',
+ 'latest' => 'সর্বশেষ',
+ 'latest-posts' => 'সর্বশেষ পোস্ট',
+ 'latest-topics' => 'সর্বশেষ বিষয়',
+ 'legal' => 'আইনগত',
+ 'legend' => 'কিংবদন্তি',
+ 'lists' => 'তালিকাসমূহ',
+ 'lock-account' => 'অ্যাকাউন্ট লক করুন',
+ 'logout' => 'প্রস্থান',
+ 'members' => 'সদস্য',
+ 'message' => 'বার্তা',
+ 'minute' => 'মিনিট',
+ 'moderated-by' => 'দ্বারা নিয়ন্ত্রিত',
+ 'moderation' => 'সংযম',
+ 'moderation-approve' => 'অনুমোদন করা',
+ 'moderation-postpone' => 'মুলতবি করা',
+ 'moderation-reject' => 'প্রত্যাখ্যান',
+ 'month' => 'মাস',
+ 'months' => 'মাস',
+ 'my' => 'আমার',
+ 'name' => 'নাম',
+ 'navigation' => 'ন্যাভিগেশন',
+ 'new' => 'নতুন',
+ 'new-adj' => 'নতুন',
+ 'news' => 'খবর',
+ 'next' => 'পরবর্তী',
+ 'no' => 'না',
+ 'no-comments' => 'এখনো কোন মন্তব্য নেই',
+ 'no-result' => 'প্রশ্নের জন্য ডাটাবেসের মধ্যে কোন ফলাফল নেই',
+ 'notifications' => 'বিজ্ঞপ্তিগুলি',
+ 'older-than' => 'অপেক্ষাকৃত পুরনো',
+ 'oldest' => 'প্রবীণতম',
+ 'openreg_activated' => 'খোলা নিবন্ধন সক্রিয়',
+ 'order-by' => 'দ্বারা অর্ডার',
+ 'other' => 'অন্যান্য',
+ 'pages' => 'পেজ',
+ 'password' => 'পাসওয়ার্ড',
+ 'patron' => 'একটি পৃষ্ঠপোষক হন',
+ 'pending-torrents' => 'বিলম্বিত টরেন্টস',
+ 'personal' => 'ব্যক্তিগত',
+ 'plural-suffix' => 'গুলি',
+ 'port' => 'বন্দর',
+ 'position' => 'অবস্থান',
+ 'posts' => 'পোস্ট',
+ 'powered-by' => 'UNIT3D দ্বারা চালিত',
+ 'preview' => 'পূর্বরূপ',
+ 'previous' => 'আগে',
+ 'progress' => 'উন্নতি',
+ 'publish' => 'প্রকাশ করা',
+ 'quantity' => 'পরিমাণ',
+ 'quick-search' => 'দ্রুত অনুসন্ধান',
+ 'ratio' => 'অনুপাত',
+ 'reason' => 'কারণ',
+ 'remove' => 'অপসারণ',
+ 'report' => 'প্রতিবেদন',
+ 'resend' => 'আবার পাঠান',
+ 'reporter' => 'সংবাদদাতা',
+ 'required' => 'প্রয়োজনীয়',
+ 'results' => 'ফলাফল',
+ 'rss-system' => 'আরএসএস সিস্টেম',
+ 'rules' => 'বিধি',
+ 'save' => 'সংরক্ষণ করুন',
+ 'search' => 'অনুসন্ধান',
+ 'search-results' => 'অনুসন্ধান ফলাফল',
+ 'search-results-desc' => 'নিচে আপনার ফলাফল দেখতে দয়া করে',
+ 'second' => 'দ্বিতীয়',
+ 'select' => 'নির্বাচন করা',
+ 'sort' => 'সাজান',
+ 'special' => 'বিশেষ',
+ 'staff' => 'কর্মী',
+ 'staff-tools' => 'স্টাফ সরঞ্জাম',
+ 'stats' => 'পরিসংখ্যান',
+ 'status' => 'অবস্থা',
+ 'sticked' => 'sticked',
+ 'submit' => 'জমা দিন',
+ 'subscriptions' => 'সাবস্ক্রিপশন',
+ 'teams' => 'দলসমূহ',
+ 'terms' => 'ব্যবহারের শর্তাবলী',
+ 'times' => 'টাইমস',
+ 'title' => 'খেতাব',
+ 'top-bountied' => 'শীর্ষস্থানীয়',
+ 'topics' => 'টপিক',
+ 'tracker-codes' => 'ট্র্যাকার কোড',
+ 'type' => 'আদর্শ',
+ 'type-verb' => 'আদর্শ',
+ 'types' => 'প্রকারভেদ',
+ 'genre' => 'রীতি',
+ 'genres' => 'জেনার',
+ 'action' => 'কর্ম',
+ 'actions' => 'ক্রিয়াকলাপ',
+ 'unknown' => 'অজানা',
'unlocked-achievement' => 'আপনি আনলক: কৃতিত্ব অর্জন',
- 'upload' => 'আপলোড',
- 'upload-guide' => 'আপলোড গাইড',
- 'user' => 'ব্যবহারকারী',
- 'username' => 'ব্যবহারকারীর নাম',
- 'users' => 'ব্যবহারকারীরা',
- 'view' => 'দৃশ্য',
- 'view-all' => 'সব দেখ',
- 'warnings' => 'সতর্কবাণী',
- 'year' => 'বছর',
- 'yes' => 'হাঁ',
- 'your' => 'তোমার',
- 'your-comment' => 'তোমার মন্তব্য',
+ 'upload' => 'আপলোড',
+ 'upload-guide' => 'আপলোড গাইড',
+ 'user' => 'ব্যবহারকারী',
+ 'username' => 'ব্যবহারকারীর নাম',
+ 'users' => 'ব্যবহারকারীরা',
+ 'view' => 'দৃশ্য',
+ 'view-all' => 'সব দেখ',
+ 'warnings' => 'সতর্কবাণী',
+ 'year' => 'বছর',
+ 'yes' => 'হাঁ',
+ 'your' => 'তোমার',
+ 'your-comment' => 'তোমার মন্তব্য',
];
diff --git a/lang/bn/email.php b/lang/bn/email.php
index 6b27bfbf7..8cf4d8af8 100644
--- a/lang/bn/email.php
+++ b/lang/bn/email.php
@@ -12,46 +12,46 @@
*/
return [
- 'activate-account' => 'অ্যাকাউন্ট সক্রিয়',
- 'ban-reason' => 'কারণ',
- 'banned-footer' => 'আপনি নিয়ম অনুসরণ না পেতে কি Thats',
- 'banned-header' => 'আপনাকে নিষিদ্ধ করা হয়েছে',
- 'bug-description' => 'সমস্যা',
- 'bug-footer' => 'যে বিষ্ঠা ঠিক করুন',
- 'bug-header' => 'থেকে নতুন বাগ রিপোর্ট',
- 'bug-priority' => 'অগ্রাধিকার',
- 'bug-title' => 'বাগ শিরোনাম',
- 'contact-header' => 'থেকে নতুন যোগাযোগ মেইল',
- 'contact-message' => 'বার্তা',
- 'contact-name' => 'নাম',
+ 'activate-account' => 'অ্যাকাউন্ট সক্রিয়',
+ 'ban-reason' => 'কারণ',
+ 'banned-footer' => 'আপনি নিয়ম অনুসরণ না পেতে কি Thats',
+ 'banned-header' => 'আপনাকে নিষিদ্ধ করা হয়েছে',
+ 'bug-description' => 'সমস্যা',
+ 'bug-footer' => 'যে বিষ্ঠা ঠিক করুন',
+ 'bug-header' => 'থেকে নতুন বাগ রিপোর্ট',
+ 'bug-priority' => 'অগ্রাধিকার',
+ 'bug-title' => 'বাগ শিরোনাম',
+ 'contact-header' => 'থেকে নতুন যোগাযোগ মেইল',
+ 'contact-message' => 'বার্তা',
+ 'contact-name' => 'নাম',
'fail-login-greeting' => 'অ্যাকাউন্ট লগইন ব্যর্থ হয়েছে!',
- 'fail-login-line1' => 'একটি ব্যর্থ লগইন আপনার অ্যাকাউন্টের জন্য সনাক্ত করা হয়েছে।',
- 'fail-login-line2' => 'এই অনুরোধ থেকে উত্পন্ন: আইপি (: হোস্ট) এ: সময়',
- 'fail-login-subject' => 'ব্যর্থ লগইন বিজ্ঞপ্তি',
- 'footer-link' => 'আপনি যদি actionText বোতামটিতে ক্লিক করতে সমস্যা হয় তবে নীচের URL টি অনুলিপি করুন এবং আপনার ওয়েব ব্রাউজারে আটকান:',
- 'invite-header' => 'নিমন্ত্রণ প্রাপক',
- 'invite-invited' => 'আপনি আমন্ত্রিত হয়েছে',
- 'invite-message' => 'বার্তা',
- 'invite-signup' => 'এখন সাইন আপ করুন',
- 'newreply-header' => 'আপনার বিষয়ে নতুন উত্তর আছে',
- 'newreply-message' => 'বার্তা',
- 'newreply-replied' => 'আপনার বিষয় জবাব দিয়েছে',
- 'newreply-view' => 'এটা এক্ষুনি দেখুন',
- 'no-email-found' => 'আমরা আমাদের সিস্টেমে এই ইমেইল খুঁজে পাচ্ছি না!',
- 'register-code' => 'আপনার অ্যাকাউন্ট অ্যাক্টিভেশন সম্পূর্ণ করতে নীচের বোতামটি ক্লিক করুন',
- 'register-footer' => 'উপরের বোতামটি কাজ না করলে, URL টি অনুলিপি করুন এবং আপনার ব্রাউজারের ঠিকানা বারটিতে আটকান',
- 'register-header' => 'নমস্কার! সাইন আপ করার জন্য আপনাকে ধন্যবাদ',
- 'report-comment' => 'মন্তব্য',
- 'report-email' => 'ই-মেইল',
- 'report-header' => 'হাই অ্যাডমিন, একটি লিঙ্ক রিপোর্ট করা হয়েছে',
- 'report-link' => 'লিংক',
- 'report-link-hash' => 'প্রকৃত লিঙ্ক',
- 'thanks' => 'ব্যবহার করার জন্য আপনাকে ধন্যবাদ',
- 'unban-footer' => 'ফিরে আসার জন্য স্বাগতম!',
- 'unban-header' => 'আপনি নিষিদ্ধ করা হয়েছে',
- 'unban-reason' => 'কারণ',
- 'username-reminder' => 'আপনি সম্প্রতি আমাদের অ্যাপ্লিকেশনটিতে আপনার ব্যবহারকারীর নামটির জন্য একটি অনুরোধ পাঠিয়েছেন। আপনার ব্যবহারকারীর নাম',
- 'username-sent' => 'আপনার ব্যবহারকারী নাম আপনার ইমেইল ঠিকানা পাঠানো হয়েছে!',
- 'disabled-header' => 'আপনার অ্যাকাউন্ট নিষ্ক্রিয় করা হয়েছে',
- 'pruned-header' => 'আপনার অ্যাকাউন্ট প্রজনন করা হয়েছে',
+ 'fail-login-line1' => 'একটি ব্যর্থ লগইন আপনার অ্যাকাউন্টের জন্য সনাক্ত করা হয়েছে।',
+ 'fail-login-line2' => 'এই অনুরোধ থেকে উত্পন্ন: আইপি (: হোস্ট) এ: সময়',
+ 'fail-login-subject' => 'ব্যর্থ লগইন বিজ্ঞপ্তি',
+ 'footer-link' => 'আপনি যদি actionText বোতামটিতে ক্লিক করতে সমস্যা হয় তবে নীচের URL টি অনুলিপি করুন এবং আপনার ওয়েব ব্রাউজারে আটকান:',
+ 'invite-header' => 'নিমন্ত্রণ প্রাপক',
+ 'invite-invited' => 'আপনি আমন্ত্রিত হয়েছে',
+ 'invite-message' => 'বার্তা',
+ 'invite-signup' => 'এখন সাইন আপ করুন',
+ 'newreply-header' => 'আপনার বিষয়ে নতুন উত্তর আছে',
+ 'newreply-message' => 'বার্তা',
+ 'newreply-replied' => 'আপনার বিষয় জবাব দিয়েছে',
+ 'newreply-view' => 'এটা এক্ষুনি দেখুন',
+ 'no-email-found' => 'আমরা আমাদের সিস্টেমে এই ইমেইল খুঁজে পাচ্ছি না!',
+ 'register-code' => 'আপনার অ্যাকাউন্ট অ্যাক্টিভেশন সম্পূর্ণ করতে নীচের বোতামটি ক্লিক করুন',
+ 'register-footer' => 'উপরের বোতামটি কাজ না করলে, URL টি অনুলিপি করুন এবং আপনার ব্রাউজারের ঠিকানা বারটিতে আটকান',
+ 'register-header' => 'নমস্কার! সাইন আপ করার জন্য আপনাকে ধন্যবাদ',
+ 'report-comment' => 'মন্তব্য',
+ 'report-email' => 'ই-মেইল',
+ 'report-header' => 'হাই অ্যাডমিন, একটি লিঙ্ক রিপোর্ট করা হয়েছে',
+ 'report-link' => 'লিংক',
+ 'report-link-hash' => 'প্রকৃত লিঙ্ক',
+ 'thanks' => 'ব্যবহার করার জন্য আপনাকে ধন্যবাদ',
+ 'unban-footer' => 'ফিরে আসার জন্য স্বাগতম!',
+ 'unban-header' => 'আপনি নিষিদ্ধ করা হয়েছে',
+ 'unban-reason' => 'কারণ',
+ 'username-reminder' => 'আপনি সম্প্রতি আমাদের অ্যাপ্লিকেশনটিতে আপনার ব্যবহারকারীর নামটির জন্য একটি অনুরোধ পাঠিয়েছেন। আপনার ব্যবহারকারীর নাম',
+ 'username-sent' => 'আপনার ব্যবহারকারী নাম আপনার ইমেইল ঠিকানা পাঠানো হয়েছে!',
+ 'disabled-header' => 'আপনার অ্যাকাউন্ট নিষ্ক্রিয় করা হয়েছে',
+ 'pruned-header' => 'আপনার অ্যাকাউন্ট প্রজনন করা হয়েছে',
];
diff --git a/lang/bn/forum.php b/lang/bn/forum.php
index 02cc8a8ed..033c2db67 100644
--- a/lang/bn/forum.php
+++ b/lang/bn/forum.php
@@ -12,63 +12,63 @@
*/
return [
- 'action' => 'কর্ম',
- 'activity' => 'কার্যকলাপ',
- 'approved' => 'অনুমোদিত',
- 'author' => 'লেখক',
- 'bug' => 'বাগ',
- 'category-quick-search' => 'বিষয় নাম দ্রুত অনুসন্ধান (বিভাগের মধ্যে)',
- 'close-topic' => 'লক টপিক',
- 'closed' => 'বন্ধ',
- 'create-new-topic' => 'নতুন বিষয় তৈরি করুন',
- 'created' => 'নির্মিত',
- 'current' => 'বর্তমান',
- 'delete-topic' => 'এই বিষয় মুছে দিন',
- 'denied' => 'অস্বীকৃত',
- 'dislike-post' => 'এই পোস্ট অপছন্দ',
- 'display-forum' => 'বিষয় প্রদর্শন করুন',
- 'edit-post' => 'পোস্ট সম্পাদনা করুন',
- 'edit-topic' => 'বিষয় সম্পাদনা করুন',
- 'forum' => 'ফোরাম',
- 'forums' => 'ফোরাম',
- 'implemented' => 'বাস্তবায়িত',
- 'in' => 'মধ্যে',
- 'invalid' => 'অকার্যকর',
- 'label' => 'লেবেল',
- 'label-system' => 'লেবেল সিস্টেম',
- 'last-message' => 'শেষ বার্তা',
- 'last-post-info' => 'সর্বশেষ পোস্ট তথ্য',
- 'latest' => 'সর্বশেষ',
- 'like-post' => 'এই পোস্ট ভালো লেগেছে',
- 'meta-category' => 'বিষয়শ্রেণীতে ফোরাম তালিকা',
- 'moderation' => 'সংযম',
- 'name' => 'নাম',
- 'not-connected' => 'আপনি সংযুক্ত করা আবশ্যক',
- 'not-subscribed' => 'সাবস্ক্রাইব না',
- 'open' => 'খোলা',
- 'open-topic' => 'এই টপিক খুলুন',
- 'permalink' => 'মাহবুব',
- 'pin' => 'পিন',
- 'post' => 'পোস্ট',
- 'post-quick-search' => 'পোস্ট শরীরের দ্রুত অনুসন্ধান',
- 'posts' => 'পোস্ট',
- 'quote' => 'উদ্ধৃতি',
- 'read-topic' => 'বিষয় পড়ুন',
- 'replies' => 'জবাব',
- 'send-new-topic' => 'এই বিষয় সংরক্ষণ করুন',
- 'solved' => 'মীমাংসিত',
- 'state' => 'রাষ্ট্র',
- 'stats' => 'পরিসংখ্যান',
- 'subscribed' => 'সাবস্ক্রাইব',
+ 'action' => 'কর্ম',
+ 'activity' => 'কার্যকলাপ',
+ 'approved' => 'অনুমোদিত',
+ 'author' => 'লেখক',
+ 'bug' => 'বাগ',
+ 'category-quick-search' => 'বিষয় নাম দ্রুত অনুসন্ধান (বিভাগের মধ্যে)',
+ 'close-topic' => 'লক টপিক',
+ 'closed' => 'বন্ধ',
+ 'create-new-topic' => 'নতুন বিষয় তৈরি করুন',
+ 'created' => 'নির্মিত',
+ 'current' => 'বর্তমান',
+ 'delete-topic' => 'এই বিষয় মুছে দিন',
+ 'denied' => 'অস্বীকৃত',
+ 'dislike-post' => 'এই পোস্ট অপছন্দ',
+ 'display-forum' => 'বিষয় প্রদর্শন করুন',
+ 'edit-post' => 'পোস্ট সম্পাদনা করুন',
+ 'edit-topic' => 'বিষয় সম্পাদনা করুন',
+ 'forum' => 'ফোরাম',
+ 'forums' => 'ফোরাম',
+ 'implemented' => 'বাস্তবায়িত',
+ 'in' => 'মধ্যে',
+ 'invalid' => 'অকার্যকর',
+ 'label' => 'লেবেল',
+ 'label-system' => 'লেবেল সিস্টেম',
+ 'last-message' => 'শেষ বার্তা',
+ 'last-post-info' => 'সর্বশেষ পোস্ট তথ্য',
+ 'latest' => 'সর্বশেষ',
+ 'like-post' => 'এই পোস্ট ভালো লেগেছে',
+ 'meta-category' => 'বিষয়শ্রেণীতে ফোরাম তালিকা',
+ 'moderation' => 'সংযম',
+ 'name' => 'নাম',
+ 'not-connected' => 'আপনি সংযুক্ত করা আবশ্যক',
+ 'not-subscribed' => 'সাবস্ক্রাইব না',
+ 'open' => 'খোলা',
+ 'open-topic' => 'এই টপিক খুলুন',
+ 'permalink' => 'মাহবুব',
+ 'pin' => 'পিন',
+ 'post' => 'পোস্ট',
+ 'post-quick-search' => 'পোস্ট শরীরের দ্রুত অনুসন্ধান',
+ 'posts' => 'পোস্ট',
+ 'quote' => 'উদ্ধৃতি',
+ 'read-topic' => 'বিষয় পড়ুন',
+ 'replies' => 'জবাব',
+ 'send-new-topic' => 'এই বিষয় সংরক্ষণ করুন',
+ 'solved' => 'মীমাংসিত',
+ 'state' => 'রাষ্ট্র',
+ 'stats' => 'পরিসংখ্যান',
+ 'subscribed' => 'সাবস্ক্রাইব',
'subscription-quick-search' => 'বিষয় নাম দ্রুত অনুসন্ধান (সাবস্ক্রিপশন মধ্যে)',
- 'suggestion' => 'প্রস্তাবনা',
- 'topic' => 'বিষয়',
- 'topic-closed' => 'এই বিষয় বন্ধ করা হয়',
- 'topic-name' => 'বিষয় নাম',
- 'topic-quick-search' => 'বিষয় নাম দ্রুত অনুসন্ধান',
- 'topic-title' => 'এই বিষয় শিরোনাম',
- 'topics' => 'টপিক',
- 'unpin' => 'আনপিন',
- 'view-all' => 'সব বিষয় দেখুন',
- 'views' => 'দেখেছে',
+ 'suggestion' => 'প্রস্তাবনা',
+ 'topic' => 'বিষয়',
+ 'topic-closed' => 'এই বিষয় বন্ধ করা হয়',
+ 'topic-name' => 'বিষয় নাম',
+ 'topic-quick-search' => 'বিষয় নাম দ্রুত অনুসন্ধান',
+ 'topic-title' => 'এই বিষয় শিরোনাম',
+ 'topics' => 'টপিক',
+ 'unpin' => 'আনপিন',
+ 'view-all' => 'সব বিষয় দেখুন',
+ 'views' => 'দেখেছে',
];
diff --git a/lang/bn/graveyard.php b/lang/bn/graveyard.php
index 04ac4911f..b4c34c0f6 100644
--- a/lang/bn/graveyard.php
+++ b/lang/bn/graveyard.php
@@ -12,15 +12,15 @@
*/
return [
- 'dead' => 'মৃত',
- 'graveyard' => 'কবরখানা',
- 'guidelines' => 'নির্দেশিকা',
+ 'dead' => 'মৃত',
+ 'graveyard' => 'কবরখানা',
+ 'guidelines' => 'নির্দেশিকা',
'guidelines-content' => '1) আপনি নিজের আপলোড পুনরুত্থান করতে পারবেন না।
2) আপনি কিছু করতে পারবেন না এমন কিছু পুনরুজ্জীবিত করবেন না।',
- 'howto' => 'তিনি নিয়ম',
- 'howto-desc1' => 'আপনাকে অবশ্যই বীজ বানাতে হবে: সফল সফলতার জন্য 30 দিনের নাম । কোন ক্ষেত্রে আপনার বর্তমান বীজ সময়',
- 'howto-desc2' => 'আপনি পুরস্কৃত করা হবে',
- 'howto-hits' => 'আঘাত',
- 'pending' => 'মুলতুবী',
- 'resurrect' => 'পুনরূজ্জীবিত করা',
- 'reward' => 'ফ্রিলিচ টোকেন',
+ 'howto' => 'তিনি নিয়ম',
+ 'howto-desc1' => 'আপনাকে অবশ্যই বীজ বানাতে হবে: সফল সফলতার জন্য 30 দিনের নাম । কোন ক্ষেত্রে আপনার বর্তমান বীজ সময়',
+ 'howto-desc2' => 'আপনি পুরস্কৃত করা হবে',
+ 'howto-hits' => 'আঘাত',
+ 'pending' => 'মুলতুবী',
+ 'resurrect' => 'পুনরূজ্জীবিত করা',
+ 'reward' => 'ফ্রিলিচ টোকেন',
];
diff --git a/lang/bn/notification.php b/lang/bn/notification.php
index 10302f9fb..2b40cf8f9 100644
--- a/lang/bn/notification.php
+++ b/lang/bn/notification.php
@@ -12,14 +12,14 @@
*/
return [
- 'date' => 'তারিখ',
- 'delete' => 'মুছে ফেলা',
- 'delete-all' => 'সব বিজ্ঞপ্তি মুছে দিন',
- 'mark-all-read' => 'সবগুলো পঠিত বলে সনাক্ত কর',
- 'mark-read' => 'পঠিত হিসেবে চিহ্নিত করুন',
- 'message' => 'বার্তা',
+ 'date' => 'তারিখ',
+ 'delete' => 'মুছে ফেলা',
+ 'delete-all' => 'সব বিজ্ঞপ্তি মুছে দিন',
+ 'mark-all-read' => 'সবগুলো পঠিত বলে সনাক্ত কর',
+ 'mark-read' => 'পঠিত হিসেবে চিহ্নিত করুন',
+ 'message' => 'বার্তা',
'no-notifications' => 'কোন বিজ্ঞপ্তি পাওয়া যায় নি',
- 'notifications' => 'বিজ্ঞপ্তিগুলি',
- 'read' => 'পড়া',
- 'title' => 'খেতাব',
+ 'notifications' => 'বিজ্ঞপ্তিগুলি',
+ 'read' => 'পড়া',
+ 'title' => 'খেতাব',
];
diff --git a/lang/bn/page.php b/lang/bn/page.php
index 36e9f4467..acf004f2c 100644
--- a/lang/bn/page.php
+++ b/lang/bn/page.php
@@ -12,28 +12,28 @@
*/
return [
- 'aboutus-advantage' => 'সুবিধা',
- 'aboutus-advantage1' => 'আমরা এইচডি ভিডিও / অডিও এবং প্রযুক্তিগত সহায়তা বিশ্বের ভালভাবে পরিচিত যারা সদস্য এবং কর্মীদের অভিজ্ঞতা আছে।',
- 'aboutus-advantage2' => 'চলচ্চিত্র এবং টিভি শোগুলির জন্য আমাদের ব্যাপক আবেগ বরাবর, আমরা এমন কিছু বেছে নেব যা সবচেয়ে বেশি নয় - FANRES! আমাদের কন্টেন্ট bringers আপনি একটি বড় ধন্যবাদ ।',
- 'aboutus-advantage3' => 'আমরা সাইটটি আপ রাখার জন্য এবং দান করার জন্য অনুদান গ্রহণ করলে সেখানে কোনও পিএমআর বা ব্যানার থাকবে না। আমাদের কাছ থেকে কোন ভিক্ষা।',
- 'aboutus-advantage4' => 'আমাদের সম্প্রদায় তার প্রাথমিক বয়স জন্য কেউ দ্বিতীয়। আমাদের কর্মীদের এবং ইউজারবেসে মধ্যে, সবসময় সাহায্য করার জন্য এখানে ছিল। আপনার অভিজ্ঞতা নিশ্চিত করার বিষয়ে উত্সাহী ছিল: শিরোনাম আশ্চর্যজনক কিছুই ছোট।',
- 'aboutus-advantage5' => 'আমাদের সেবা বিশ্ব জুড়ে অনেক মানুষের দ্বারা দৈনন্দিন ব্যবহার করা হয়। আমরা প্রমাণ করেছি যে আমরা আমাদের কোডবেসের কার্যকারিতা এবং নিরাপত্তা সম্পর্কে যত্নশীল এবং এটি নির্ভরযোগ্য এবং নির্ভরযোগ্য হতে পারে। আমাদের বিকাশকারীরা প্রকৃতপক্ষে নিক্স-জেন কোড কোড সরবরাহ করতে কাজ করে।',
- 'aboutus-header' => 'হাই আছে',
- 'aboutus-rules' => 'আমরা আপনার কাছ থেকে কি প্রয়োজন',
- 'aboutus-rules1' => 'সম্প্রদায়ের সক্রিয় সদস্য হতে! এটি উত্পাদনশীলভাবে কথোপকথনে যোগদান করতে, অনুমোদিত সামগ্রী যুক্ত করতে এবং যদি আপনি সক্ষম হন তবে অন্যান্য ব্যবহারকারীদের সহায়তা করতে হবে।',
- 'aboutus-rules2' => 'সম্পূর্ণ নিয়ম পড়তে এবং তাদের সম্মান করুন দয়া করে!',
- 'aboutus-rules3' => 'পরামর্শ করতে! আমরা তৈরি করার চেষ্টা করছি: শিরোনাম প্রতিটি দিন ভাল। আমরা বলছি না যে প্রতিটি পরামর্শ ব্যবহার করা হবে, কিন্তু এটি নতুন ধারনা দেখতে কখনই ব্যাথা দেয় না।',
- 'aboutus-welcome' => 'এর সম্পর্কে কথা বলা যাক',
- 'aboutus-welcome-desc' => ': শিরোনাম একটি সম্প্রদায় নির্মিত সিনেমা / টিভি / FANRES ডাটাবেস। ২017 সাল থেকে তথ্যটির প্রত্যেকটি অংশ আমাদের আশ্চর্যজনক সম্প্রদায় দ্বারা যুক্ত করা হয়েছে। শিরোনামগুলি দৃঢ় ফোকাস হ ল HD সামগ্রী, একটি সক্রিয় ব্যবহারকারীর নাম, একটি দুর্দান্ত / সুরক্ষিত কোডबेस এবং সহায়ক এবং বন্ধুত্বপূর্ণ স্টাফ দল।',
- 'blacklist-browsers' => 'ব্রাউজার',
- 'blacklist-btclient' => 'BitTorrent ক্লায়েন্ট',
- 'blacklist-clients' => 'ক্লায়েন্টদের মধ্যে',
- 'blacklist-desc' => 'নিচের ব্রাউজার এবং বিটোরেন্ট ক্লায়েন্ট ব্ল্যাক তালিকাভুক্ত / ঘোষিত থেকে নিষিদ্ধ: শিরোনাম',
- 'blacklist-webbrowser' => 'ওয়েব ব্রাউজার',
+ 'aboutus-advantage' => 'সুবিধা',
+ 'aboutus-advantage1' => 'আমরা এইচডি ভিডিও / অডিও এবং প্রযুক্তিগত সহায়তা বিশ্বের ভালভাবে পরিচিত যারা সদস্য এবং কর্মীদের অভিজ্ঞতা আছে।',
+ 'aboutus-advantage2' => 'চলচ্চিত্র এবং টিভি শোগুলির জন্য আমাদের ব্যাপক আবেগ বরাবর, আমরা এমন কিছু বেছে নেব যা সবচেয়ে বেশি নয় - FANRES! আমাদের কন্টেন্ট bringers আপনি একটি বড় ধন্যবাদ ।',
+ 'aboutus-advantage3' => 'আমরা সাইটটি আপ রাখার জন্য এবং দান করার জন্য অনুদান গ্রহণ করলে সেখানে কোনও পিএমআর বা ব্যানার থাকবে না। আমাদের কাছ থেকে কোন ভিক্ষা।',
+ 'aboutus-advantage4' => 'আমাদের সম্প্রদায় তার প্রাথমিক বয়স জন্য কেউ দ্বিতীয়। আমাদের কর্মীদের এবং ইউজারবেসে মধ্যে, সবসময় সাহায্য করার জন্য এখানে ছিল। আপনার অভিজ্ঞতা নিশ্চিত করার বিষয়ে উত্সাহী ছিল: শিরোনাম আশ্চর্যজনক কিছুই ছোট।',
+ 'aboutus-advantage5' => 'আমাদের সেবা বিশ্ব জুড়ে অনেক মানুষের দ্বারা দৈনন্দিন ব্যবহার করা হয়। আমরা প্রমাণ করেছি যে আমরা আমাদের কোডবেসের কার্যকারিতা এবং নিরাপত্তা সম্পর্কে যত্নশীল এবং এটি নির্ভরযোগ্য এবং নির্ভরযোগ্য হতে পারে। আমাদের বিকাশকারীরা প্রকৃতপক্ষে নিক্স-জেন কোড কোড সরবরাহ করতে কাজ করে।',
+ 'aboutus-header' => 'হাই আছে',
+ 'aboutus-rules' => 'আমরা আপনার কাছ থেকে কি প্রয়োজন',
+ 'aboutus-rules1' => 'সম্প্রদায়ের সক্রিয় সদস্য হতে! এটি উত্পাদনশীলভাবে কথোপকথনে যোগদান করতে, অনুমোদিত সামগ্রী যুক্ত করতে এবং যদি আপনি সক্ষম হন তবে অন্যান্য ব্যবহারকারীদের সহায়তা করতে হবে।',
+ 'aboutus-rules2' => 'সম্পূর্ণ নিয়ম পড়তে এবং তাদের সম্মান করুন দয়া করে!',
+ 'aboutus-rules3' => 'পরামর্শ করতে! আমরা তৈরি করার চেষ্টা করছি: শিরোনাম প্রতিটি দিন ভাল। আমরা বলছি না যে প্রতিটি পরামর্শ ব্যবহার করা হবে, কিন্তু এটি নতুন ধারনা দেখতে কখনই ব্যাথা দেয় না।',
+ 'aboutus-welcome' => 'এর সম্পর্কে কথা বলা যাক',
+ 'aboutus-welcome-desc' => ': শিরোনাম একটি সম্প্রদায় নির্মিত সিনেমা / টিভি / FANRES ডাটাবেস। ২017 সাল থেকে তথ্যটির প্রত্যেকটি অংশ আমাদের আশ্চর্যজনক সম্প্রদায় দ্বারা যুক্ত করা হয়েছে। শিরোনামগুলি দৃঢ় ফোকাস হ ল HD সামগ্রী, একটি সক্রিয় ব্যবহারকারীর নাম, একটি দুর্দান্ত / সুরক্ষিত কোডबेस এবং সহায়ক এবং বন্ধুত্বপূর্ণ স্টাফ দল।',
+ 'blacklist-browsers' => 'ব্রাউজার',
+ 'blacklist-btclient' => 'BitTorrent ক্লায়েন্ট',
+ 'blacklist-clients' => 'ক্লায়েন্টদের মধ্যে',
+ 'blacklist-desc' => 'নিচের ব্রাউজার এবং বিটোরেন্ট ক্লায়েন্ট ব্ল্যাক তালিকাভুক্ত / ঘোষিত থেকে নিষিদ্ধ: শিরোনাম',
+ 'blacklist-webbrowser' => 'ওয়েব ব্রাউজার',
'blacklist-emaildomain' => 'ব্লক ডোমেইন',
- 'email-blacklist-desc' => 'নিম্নলিখিত ইমেইল ডোমেইন ব্যবহৃত হচ্ছে থেকে অবরুদ্ধ করা হয়। আপনি নিবন্ধন করতে বা নিম্নলিখিত একটি আমন্ত্রণ পাঠাতে পারবেন না।',
- 'email-whitelist-desc' => 'নিম্নলিখিত ইমেল ডোমেইন ব্যবহার করা যাবে শুধুমাত্র ইমেল ডোমেইন হয়। আপনি শুধুমাত্র নিবন্ধন অথবা নিম্নলিখিত ব্যবহার করে আমন্ত্রণ পাঠাতে পারেন।',
- 'staff-group' => 'গ্রুপ',
- 'staff-title' => 'খেতাব',
+ 'email-blacklist-desc' => 'নিম্নলিখিত ইমেইল ডোমেইন ব্যবহৃত হচ্ছে থেকে অবরুদ্ধ করা হয়। আপনি নিবন্ধন করতে বা নিম্নলিখিত একটি আমন্ত্রণ পাঠাতে পারবেন না।',
+ 'email-whitelist-desc' => 'নিম্নলিখিত ইমেল ডোমেইন ব্যবহার করা যাবে শুধুমাত্র ইমেল ডোমেইন হয়। আপনি শুধুমাত্র নিবন্ধন অথবা নিম্নলিখিত ব্যবহার করে আমন্ত্রণ পাঠাতে পারেন।',
+ 'staff-group' => 'গ্রুপ',
+ 'staff-title' => 'খেতাব',
'whitelist-emaildomain' => 'বিশ্বস্ত ডোমেন',
];
diff --git a/lang/bn/pagination.php b/lang/bn/pagination.php
index 4d5c472ce..d18a8b89c 100644
--- a/lang/bn/pagination.php
+++ b/lang/bn/pagination.php
@@ -24,5 +24,5 @@ return [
*/
'previous' => '« আগে',
- 'next' => 'পরবর্তী »',
+ 'next' => 'পরবর্তী »',
];
diff --git a/lang/bn/passwords.php b/lang/bn/passwords.php
index 19a6052fe..45941282e 100644
--- a/lang/bn/passwords.php
+++ b/lang/bn/passwords.php
@@ -24,8 +24,8 @@ return [
*/
'password' => 'পাসওয়ার্ডে কমপক্ষে ছয় অক্ষরের হতে হবে এবং নিশ্চিতকরণ মেলাতে হবে .',
- 'reset' => 'আপনার পাসওয়ার্ড পুনরায় সেট করা হয়েছে!',
- 'sent' => 'আমরা আপনার পাসওয়ার্ড পুনরায় সেট করার লিঙ্ক ইমেইল করেছি !',
- 'token' => 'এই পাসওয়ার্ড রিসেট টোকেন অবৈধ.',
- 'user' => 'আমরা এই ইমেল ঠিকানা দিয়ে ব্যবহারকারী খুঁজে পাচ্ছি না',
+ 'reset' => 'আপনার পাসওয়ার্ড পুনরায় সেট করা হয়েছে!',
+ 'sent' => 'আমরা আপনার পাসওয়ার্ড পুনরায় সেট করার লিঙ্ক ইমেইল করেছি !',
+ 'token' => 'এই পাসওয়ার্ড রিসেট টোকেন অবৈধ.',
+ 'user' => 'আমরা এই ইমেল ঠিকানা দিয়ে ব্যবহারকারী খুঁজে পাচ্ছি না',
];
diff --git a/lang/bn/pm.php b/lang/bn/pm.php
index e244c696c..e4302f5df 100644
--- a/lang/bn/pm.php
+++ b/lang/bn/pm.php
@@ -12,28 +12,28 @@
*/
return [
- 'create' => 'সৃষ্টি',
- 'delete' => 'মুছে ফেলা',
+ 'create' => 'সৃষ্টি',
+ 'delete' => 'মুছে ফেলা',
'enter-subject' => 'বিষয় লিখুন',
- 'from' => 'থেকে',
- 'inbox' => 'ইনবক্স',
+ 'from' => 'থেকে',
+ 'inbox' => 'ইনবক্স',
'mark-all-read' => 'পড়া হিসাবে সব বার্তা চিহ্নিত করুন',
- 'message' => 'বার্তা',
- 'messages' => 'বার্তা',
- 'new' => 'নতুন বার্তা',
- 'outbox' => 'আউটবক্স',
- 'private' => 'ব্যক্তিগত',
- 'read' => 'পড়া',
- 'received-at' => 'এ প্রাপ্ত',
- 'refresh' => 'সতেজ করা',
- 'reply' => 'উত্তর',
- 'search' => 'বিষয় দ্বারা অনুসন্ধান করুন',
- 'select' => 'একটি ব্যবহারকারী নির্বাচন করুন',
- 'send' => 'PM পাঠান',
- 'send-to' => 'PM পাঠান',
- 'sent' => 'প্রেরিত',
- 'sent-at' => 'এ প্রেরিত',
- 'subject' => 'বিষয়',
- 'to' => 'থেকে',
- 'unread' => 'অপঠিত',
+ 'message' => 'বার্তা',
+ 'messages' => 'বার্তা',
+ 'new' => 'নতুন বার্তা',
+ 'outbox' => 'আউটবক্স',
+ 'private' => 'ব্যক্তিগত',
+ 'read' => 'পড়া',
+ 'received-at' => 'এ প্রাপ্ত',
+ 'refresh' => 'সতেজ করা',
+ 'reply' => 'উত্তর',
+ 'search' => 'বিষয় দ্বারা অনুসন্ধান করুন',
+ 'select' => 'একটি ব্যবহারকারী নির্বাচন করুন',
+ 'send' => 'PM পাঠান',
+ 'send-to' => 'PM পাঠান',
+ 'sent' => 'প্রেরিত',
+ 'sent-at' => 'এ প্রেরিত',
+ 'subject' => 'বিষয়',
+ 'to' => 'থেকে',
+ 'unread' => 'অপঠিত',
];
diff --git a/lang/bn/poll.php b/lang/bn/poll.php
index e28016cdf..760b82afe 100644
--- a/lang/bn/poll.php
+++ b/lang/bn/poll.php
@@ -12,18 +12,18 @@
*/
return [
- 'add-option' => 'বিকল্প যোগ করুন',
- 'create-poll' => 'পোল তৈরি করুন',
- 'current' => 'বর্তমান পোল (গুলি)',
- 'delete-option' => 'অপশন মুছে দিন',
+ 'add-option' => 'বিকল্প যোগ করুন',
+ 'create-poll' => 'পোল তৈরি করুন',
+ 'current' => 'বর্তমান পোল (গুলি)',
+ 'delete-option' => 'অপশন মুছে দিন',
'multiple-choice' => 'এটি একটি একাধিক পছন্দ পোল। আপনি চান হিসাবে অনেক উত্তর নির্বাচন করুন।',
- 'option' => 'পছন্দ',
- 'poll' => 'ভোটগ্রহণ',
- 'polls' => 'পোল',
- 'results' => 'পোল ফলাফল',
- 'title' => 'খেতাব',
- 'total' => 'মোট ভোট কখনও',
- 'vote' => 'ভোট',
- 'vote-now' => 'এখন আপনার ভোট পান!',
- 'votes' => 'ভোট',
+ 'option' => 'পছন্দ',
+ 'poll' => 'ভোটগ্রহণ',
+ 'polls' => 'পোল',
+ 'results' => 'পোল ফলাফল',
+ 'title' => 'খেতাব',
+ 'total' => 'মোট ভোট কখনও',
+ 'vote' => 'ভোট',
+ 'vote-now' => 'এখন আপনার ভোট পান!',
+ 'votes' => 'ভোট',
];
diff --git a/lang/bn/request.php b/lang/bn/request.php
index f94d81270..ac8d8fac6 100644
--- a/lang/bn/request.php
+++ b/lang/bn/request.php
@@ -12,67 +12,67 @@
*/
return [
- 'add-request' => 'অনুরোধ যোগ করুন',
- 'age' => 'বয়স',
- 'all-requests' => 'সমস্ত অনুরোধ',
- 'approve' => 'অনুমোদন করা',
- 'bounty' => 'খয়রাত',
- 'bounty-claimed' => 'পুরস্কার দাবি',
- 'bounty-unclaimed' => 'অনুদান দাবী',
- 'category' => 'বিভাগ',
- 'claim' => 'দাবি',
- 'claim-anon-choose' => 'জ্ঞানী চয়ন করুন',
- 'claim-as-anon' => 'আপনি এই একনায়কতন্ত্র দাবি করতে চান',
- 'claim-now' => 'এখন দাবি',
- 'claimed' => 'দাবি করা',
- 'current' => 'বর্তমান',
- 'delete' => 'এই অনুরোধ মুছে দিন',
+ 'add-request' => 'অনুরোধ যোগ করুন',
+ 'age' => 'বয়স',
+ 'all-requests' => 'সমস্ত অনুরোধ',
+ 'approve' => 'অনুমোদন করা',
+ 'bounty' => 'খয়রাত',
+ 'bounty-claimed' => 'পুরস্কার দাবি',
+ 'bounty-unclaimed' => 'অনুদান দাবী',
+ 'category' => 'বিভাগ',
+ 'claim' => 'দাবি',
+ 'claim-anon-choose' => 'জ্ঞানী চয়ন করুন',
+ 'claim-as-anon' => 'আপনি এই একনায়কতন্ত্র দাবি করতে চান',
+ 'claim-now' => 'এখন দাবি',
+ 'claimed' => 'দাবি করা',
+ 'current' => 'বর্তমান',
+ 'delete' => 'এই অনুরোধ মুছে দিন',
'delete-confirmation' => 'আপনি এই অনুরোধ মুছে ফেলতে চান আপনি কি নিশ্চিত',
- 'delete-filled' => 'এটি পূরণ না করা হলে এই অনুরোধটি কেবল মুছে ফেলা যেতে পারে',
- 'description' => 'বিবরণ',
- 'dont-have-bps' => 'আপনি যথেষ্ট বোনাস না',
- 'edit-request' => 'অনুরোধ সম্পাদনা করুন',
- 'enter-bp' => 'বোনাস পয়েন্ট লিখুন (সর্বনিম্ন 100)',
- 'enter-hash' => 'আপলোড টরেন্ট এর তথ্য হ্যাশ লিখুন',
- 'fill' => 'পূরণ করা',
- 'fill-request' => 'এই অনুরোধ পূরণ করুন',
- 'filled' => 'ভরা',
- 'filled-by' => 'দ্বারা পূর্ণ',
- 'for' => 'জন্য',
- 'fulfill' => 'মেটান',
- 'last-vote' => 'শেষ ভোট',
- 'my-requests' => 'আমার অনুরোধ',
- 'no' => 'না,',
- 'no-imdb-id' => 'সমস্ত অনুরোধ একটি আইএমডিবি নম্বর থাকতে হবে',
- 'no-privileges' => 'ত্রুটি: আপনার অনুরোধের অধিকার নিষ্ক্রিয় করা হয়েছে',
- 'no-privileges-desc' => 'যদি আপনি ভুল মনে করেন তবে স্টাফের সাথে যোগাযোগ করুন',
- 'no-refunds' => 'বন এক্সচেঞ্জ তৈরি, ভর্তি এবং বন্টন চূড়ান্ত!
কোন রিফান্ড!',
- 'pending' => 'মুলতুবী',
- 'reason' => 'কারণ',
- 'reject' => 'প্রত্যাখ্যান',
- 'report' => 'অনুরোধ রিপোর্ট',
- 'request' => 'অনুরোধ',
- 'request-details' => 'বিস্তারিত অনুরোধ',
- 'requested-by' => 'দ্বারা অনুরোধ করা',
- 'requests' => 'অনুরোধ',
- 'required' => 'প্রয়োজনীয়',
- 'reset' => 'রিসেট',
- 'reset-confirmation' => 'আপনি এই অনুরোধটি রিসেট করতে চান আপনি কি নিশ্চিত',
- 'reset-request' => 'এই অনুরোধ রিসেট করুন',
- 'reward' => 'পুরস্কার',
- 'reward-desc' => 'আপনি কতটা বোনাস পয়েন্ট পুরস্কার দিতে চান? নূন্যতম 100 বিপি',
- 'reward-from' => 'থেকে',
- 'title' => 'খেতাব',
- 'torrent-hash' => 'টরেন্ট হ্যাশ',
- 'total-bounty' => 'মোট অনুদান',
- 'type' => 'আদর্শ',
- 'unclaim' => 'এই অনুরোধটি অস্বীকার করুন',
- 'unfilled' => 'ভরাট নয়',
- 'view-filled' => 'ভরা দেখুন',
- 'view-unfilled' => 'অফলাইন দেখুন',
- 'vote' => 'ভোট',
- 'vote-that' => 'এই অনুরোধ ভোট দিন',
- 'voters' => 'ভোটাররা',
- 'votes' => 'ভোট',
- 'yes' => 'হাঁ',
+ 'delete-filled' => 'এটি পূরণ না করা হলে এই অনুরোধটি কেবল মুছে ফেলা যেতে পারে',
+ 'description' => 'বিবরণ',
+ 'dont-have-bps' => 'আপনি যথেষ্ট বোনাস না',
+ 'edit-request' => 'অনুরোধ সম্পাদনা করুন',
+ 'enter-bp' => 'বোনাস পয়েন্ট লিখুন (সর্বনিম্ন 100)',
+ 'enter-hash' => 'আপলোড টরেন্ট এর তথ্য হ্যাশ লিখুন',
+ 'fill' => 'পূরণ করা',
+ 'fill-request' => 'এই অনুরোধ পূরণ করুন',
+ 'filled' => 'ভরা',
+ 'filled-by' => 'দ্বারা পূর্ণ',
+ 'for' => 'জন্য',
+ 'fulfill' => 'মেটান',
+ 'last-vote' => 'শেষ ভোট',
+ 'my-requests' => 'আমার অনুরোধ',
+ 'no' => 'না,',
+ 'no-imdb-id' => 'সমস্ত অনুরোধ একটি আইএমডিবি নম্বর থাকতে হবে',
+ 'no-privileges' => 'ত্রুটি: আপনার অনুরোধের অধিকার নিষ্ক্রিয় করা হয়েছে',
+ 'no-privileges-desc' => 'যদি আপনি ভুল মনে করেন তবে স্টাফের সাথে যোগাযোগ করুন',
+ 'no-refunds' => 'বন এক্সচেঞ্জ তৈরি, ভর্তি এবং বন্টন চূড়ান্ত!
কোন রিফান্ড!',
+ 'pending' => 'মুলতুবী',
+ 'reason' => 'কারণ',
+ 'reject' => 'প্রত্যাখ্যান',
+ 'report' => 'অনুরোধ রিপোর্ট',
+ 'request' => 'অনুরোধ',
+ 'request-details' => 'বিস্তারিত অনুরোধ',
+ 'requested-by' => 'দ্বারা অনুরোধ করা',
+ 'requests' => 'অনুরোধ',
+ 'required' => 'প্রয়োজনীয়',
+ 'reset' => 'রিসেট',
+ 'reset-confirmation' => 'আপনি এই অনুরোধটি রিসেট করতে চান আপনি কি নিশ্চিত',
+ 'reset-request' => 'এই অনুরোধ রিসেট করুন',
+ 'reward' => 'পুরস্কার',
+ 'reward-desc' => 'আপনি কতটা বোনাস পয়েন্ট পুরস্কার দিতে চান? নূন্যতম 100 বিপি',
+ 'reward-from' => 'থেকে',
+ 'title' => 'খেতাব',
+ 'torrent-hash' => 'টরেন্ট হ্যাশ',
+ 'total-bounty' => 'মোট অনুদান',
+ 'type' => 'আদর্শ',
+ 'unclaim' => 'এই অনুরোধটি অস্বীকার করুন',
+ 'unfilled' => 'ভরাট নয়',
+ 'view-filled' => 'ভরা দেখুন',
+ 'view-unfilled' => 'অফলাইন দেখুন',
+ 'vote' => 'ভোট',
+ 'vote-that' => 'এই অনুরোধ ভোট দিন',
+ 'voters' => 'ভোটাররা',
+ 'votes' => 'ভোট',
+ 'yes' => 'হাঁ',
];
diff --git a/lang/bn/rss.php b/lang/bn/rss.php
index 0a08387b8..3b6d9b704 100644
--- a/lang/bn/rss.php
+++ b/lang/bn/rss.php
@@ -12,19 +12,19 @@
*/
return [
- 'create' => 'সৃষ্টি',
+ 'create' => 'সৃষ্টি',
'create-private-feed' => 'ব্যক্তিগত আরএসএস ফিড তৈরি করুন',
- 'create-public-feed' => 'পাবলিক আরএসএস ফিড তৈরি করুন',
- 'delete' => 'মুছে ফেলা',
- 'edit' => 'সম্পাদন করা',
- 'edit-private-feed' => 'ব্যক্তিগত আরএসএস ফিড সম্পাদনা করুন',
- 'edit-public-feed' => 'পাবলিক আরএসএস ফিড সম্পাদনা করুন',
- 'feed' => 'ভোজন',
- 'feeds' => 'ফিডসের',
- 'name' => 'নাম',
- 'public' => 'প্রকাশ্য',
- 'private' => 'ব্যক্তিগত',
- 'rss' => 'আরএসএস',
- 'rss-feed' => 'আরএসএস ফিড',
- 'type' => 'আদর্শ',
+ 'create-public-feed' => 'পাবলিক আরএসএস ফিড তৈরি করুন',
+ 'delete' => 'মুছে ফেলা',
+ 'edit' => 'সম্পাদন করা',
+ 'edit-private-feed' => 'ব্যক্তিগত আরএসএস ফিড সম্পাদনা করুন',
+ 'edit-public-feed' => 'পাবলিক আরএসএস ফিড সম্পাদনা করুন',
+ 'feed' => 'ভোজন',
+ 'feeds' => 'ফিডসের',
+ 'name' => 'নাম',
+ 'public' => 'প্রকাশ্য',
+ 'private' => 'ব্যক্তিগত',
+ 'rss' => 'আরএসএস',
+ 'rss-feed' => 'আরএসএস ফিড',
+ 'type' => 'আদর্শ',
];
diff --git a/lang/bn/staff.php b/lang/bn/staff.php
index 32ac46455..aa8f6007c 100644
--- a/lang/bn/staff.php
+++ b/lang/bn/staff.php
@@ -12,48 +12,48 @@
*/
return [
- 'audit-log' => 'কার্য বিবরণ',
- 'articles' => 'প্রবন্ধ',
- 'applications' => 'অ্যাপ্লিকেশন',
- 'bans-log' => 'নিষিদ্ধ লগ',
- 'blocks' => 'ব্লক',
- 'bot' => 'বট',
- 'bots' => 'বট',
- 'chat' => 'চ্যাট করুন',
- 'config-manager' => 'কনফিগ ম্যানেজার',
- 'dashboard' => 'ড্যাশবোর্ড',
- 'failed-login-log' => 'ব্যর্থ লগইন লগ',
- 'flush-ghost-peers' => 'ফ্লাশ গোস্ট পিয়ার্স',
- 'forums' => 'ফোরাম',
- 'frontend' => 'সামনের অংশ',
- 'general-tools' => 'সাধারণ সরঞ্জাম',
- 'groups' => 'গ্রুপ',
- 'invites-log' => 'লগ ইন আমন্ত্রণ',
- 'laravel-log' => 'Laravel লগ',
- 'links' => 'লিংক',
- 'logs' => 'লগ',
- 'mass-pm' => 'গণপ্রজাতন্ত্রী ড',
- 'mass-validate-users' => 'গণ বৈধ ব্যবহারকারীদের',
- 'moderation' => 'সংযম',
- 'pages' => 'পেজ',
- 'please-moderate' => 'এই টরেন্ট মডারেট করুন দয়া করে!',
- 'polls' => 'পোল',
- 'reports-log' => 'রিপোর্ট লগ',
- 'rss' => 'আরএসএস',
- 'staff-dashboard' => 'স্টাফ ড্যাশবোর্ড',
- 'torrent-categories' => 'টরেন্ট বিভাগ',
- 'torrent-moderation' => 'টরেন্ট সংযম',
- 'torrent-tools' => 'টরেন্ট সরঞ্জাম',
- 'torrent-types' => 'টরেন্ট প্রকার',
- 'torrents' => 'তথ্যপ্রবাহের',
- 'user-gifting' => 'ব্যবহারকারী উপহার',
- 'user-notes' => 'ব্যবহারকারী নোট লগ',
- 'user-search' => 'ব্যবহারকারী অনুসন্ধান',
- 'user-tools' => 'ব্যবহারকারী সরঞ্জাম',
- 'warnings-log' => 'সতর্কতা লগ',
- 'you-have' => 'তোমার আছে',
+ 'audit-log' => 'কার্য বিবরণ',
+ 'articles' => 'প্রবন্ধ',
+ 'applications' => 'অ্যাপ্লিকেশন',
+ 'bans-log' => 'নিষিদ্ধ লগ',
+ 'blocks' => 'ব্লক',
+ 'bot' => 'বট',
+ 'bots' => 'বট',
+ 'chat' => 'চ্যাট করুন',
+ 'config-manager' => 'কনফিগ ম্যানেজার',
+ 'dashboard' => 'ড্যাশবোর্ড',
+ 'failed-login-log' => 'ব্যর্থ লগইন লগ',
+ 'flush-ghost-peers' => 'ফ্লাশ গোস্ট পিয়ার্স',
+ 'forums' => 'ফোরাম',
+ 'frontend' => 'সামনের অংশ',
+ 'general-tools' => 'সাধারণ সরঞ্জাম',
+ 'groups' => 'গ্রুপ',
+ 'invites-log' => 'লগ ইন আমন্ত্রণ',
+ 'laravel-log' => 'Laravel লগ',
+ 'links' => 'লিংক',
+ 'logs' => 'লগ',
+ 'mass-pm' => 'গণপ্রজাতন্ত্রী ড',
+ 'mass-validate-users' => 'গণ বৈধ ব্যবহারকারীদের',
+ 'moderation' => 'সংযম',
+ 'pages' => 'পেজ',
+ 'please-moderate' => 'এই টরেন্ট মডারেট করুন দয়া করে!',
+ 'polls' => 'পোল',
+ 'reports-log' => 'রিপোর্ট লগ',
+ 'rss' => 'আরএসএস',
+ 'staff-dashboard' => 'স্টাফ ড্যাশবোর্ড',
+ 'torrent-categories' => 'টরেন্ট বিভাগ',
+ 'torrent-moderation' => 'টরেন্ট সংযম',
+ 'torrent-tools' => 'টরেন্ট সরঞ্জাম',
+ 'torrent-types' => 'টরেন্ট প্রকার',
+ 'torrents' => 'তথ্যপ্রবাহের',
+ 'user-gifting' => 'ব্যবহারকারী উপহার',
+ 'user-notes' => 'ব্যবহারকারী নোট লগ',
+ 'user-search' => 'ব্যবহারকারী অনুসন্ধান',
+ 'user-tools' => 'ব্যবহারকারী সরঞ্জাম',
+ 'warnings-log' => 'সতর্কতা লগ',
+ 'you-have' => 'তোমার আছে',
'possible-leech-cheaters' => 'সম্ভাব্য Cheaters',
- 'chat-tools' => 'চ্যাট সরঞ্জাম',
- 'flush-chat' => 'ফ্ল্যাশ চ্যাটবক্স',
- 'seedboxes' => 'নিবন্ধিত Seedboxes',
+ 'chat-tools' => 'চ্যাট সরঞ্জাম',
+ 'flush-chat' => 'ফ্ল্যাশ চ্যাটবক্স',
+ 'seedboxes' => 'নিবন্ধিত Seedboxes',
];
diff --git a/lang/bn/stat.php b/lang/bn/stat.php
index fd401ff43..dea4ec530 100644
--- a/lang/bn/stat.php
+++ b/lang/bn/stat.php
@@ -12,40 +12,40 @@
*/
return [
- 'by-count' => 'গণনা দ্বারা',
- 'by-data' => 'তথ্য দ্বারা',
- 'by-volume' => 'খন্ড আকারে',
- 'group' => 'গ্রুপ',
- 'groups' => 'গ্রুপ',
- 'nerd-stats' => 'Nerd পরিসংখ্যান',
- 'nerd-stats-desc' => 'আমরা সব পরিসংখ্যান ভালবাসা। এখানে কয়েকটি গুরুত্বপূর্ণ যা আমরা খুঁজে পেয়েছি',
- 'registration-date' => 'নিবন্ধনের তারিখ',
- 'request-fulfilled' => 'অনুরোধ পূর্ণ',
- 'request-not-fulfilled' => 'অনুরোধ পূরণ করা হয় না',
+ 'by-count' => 'গণনা দ্বারা',
+ 'by-data' => 'তথ্য দ্বারা',
+ 'by-volume' => 'খন্ড আকারে',
+ 'group' => 'গ্রুপ',
+ 'groups' => 'গ্রুপ',
+ 'nerd-stats' => 'Nerd পরিসংখ্যান',
+ 'nerd-stats-desc' => 'আমরা সব পরিসংখ্যান ভালবাসা। এখানে কয়েকটি গুরুত্বপূর্ণ যা আমরা খুঁজে পেয়েছি',
+ 'registration-date' => 'নিবন্ধনের তারিখ',
+ 'request-fulfilled' => 'অনুরোধ পূর্ণ',
+ 'request-not-fulfilled' => 'অনুরোধ পূরণ করা হয় না',
'request-pending-aproval' => 'অনুরোধ অনুমোদন মুলতুবি',
- 'select-category' => 'নীচের একটি বিভাগ নির্বাচন করুন',
- 'site-stats' => 'সাইট পরিসংখ্যান',
- 'stats' => 'পরিসংখ্যান',
- 'stats-format' => 'শীর্ষ 100 বিন্যাসে প্রদর্শিত সব পরিসংখ্যান',
- 'top-bankers' => 'শীর্ষ ব্যাংকার',
- 'top-bountied' => 'শীর্ষস্থানীয়',
- 'top-completed' => 'শীর্ষ সমাপ্ত',
- 'top-dead' => 'শীর্ষ মৃত',
- 'top-downloaded' => 'শীর্ষ ডাউনলোড টরেন্টস',
- 'top-downloaders' => 'শীর্ষ ডাউনলোডার',
- 'top-dying' => 'শীর্ষ মৃত',
- 'top-leeched' => 'শীর্ষ leched',
- 'top-leechers' => 'শীর্ষ Leechers',
- 'top-seeded' => 'শীর্ষ বীজ',
- 'top-seeding' => 'শীর্ষ Seeding',
- 'top-seeders' => 'শীর্ষ seeders',
- 'top-seedsize' => 'শীর্ষ seediesize',
- 'top-seedtime' => 'শীর্ষ বীজতলা',
- 'top-uploaders' => 'শীর্ষ আপলোডার',
- 'total-download' => 'মোট ডাউনলোড',
- 'total-torrents' => 'মোট Torrents',
- 'total-traffic' => 'মোট ট্রাফিক',
- 'total-upload' => 'মোট আপলোড',
- 'users-in-group' => 'গ্রুপ ব্যবহারকারীদের',
- 'users-per-group' => 'গ্রুপ প্রতি ব্যবহারকারী',
+ 'select-category' => 'নীচের একটি বিভাগ নির্বাচন করুন',
+ 'site-stats' => 'সাইট পরিসংখ্যান',
+ 'stats' => 'পরিসংখ্যান',
+ 'stats-format' => 'শীর্ষ 100 বিন্যাসে প্রদর্শিত সব পরিসংখ্যান',
+ 'top-bankers' => 'শীর্ষ ব্যাংকার',
+ 'top-bountied' => 'শীর্ষস্থানীয়',
+ 'top-completed' => 'শীর্ষ সমাপ্ত',
+ 'top-dead' => 'শীর্ষ মৃত',
+ 'top-downloaded' => 'শীর্ষ ডাউনলোড টরেন্টস',
+ 'top-downloaders' => 'শীর্ষ ডাউনলোডার',
+ 'top-dying' => 'শীর্ষ মৃত',
+ 'top-leeched' => 'শীর্ষ leched',
+ 'top-leechers' => 'শীর্ষ Leechers',
+ 'top-seeded' => 'শীর্ষ বীজ',
+ 'top-seeding' => 'শীর্ষ Seeding',
+ 'top-seeders' => 'শীর্ষ seeders',
+ 'top-seedsize' => 'শীর্ষ seediesize',
+ 'top-seedtime' => 'শীর্ষ বীজতলা',
+ 'top-uploaders' => 'শীর্ষ আপলোডার',
+ 'total-download' => 'মোট ডাউনলোড',
+ 'total-torrents' => 'মোট Torrents',
+ 'total-traffic' => 'মোট ট্রাফিক',
+ 'total-upload' => 'মোট আপলোড',
+ 'users-in-group' => 'গ্রুপ ব্যবহারকারীদের',
+ 'users-per-group' => 'গ্রুপ প্রতি ব্যবহারকারী',
];
diff --git a/lang/bn/torrent.php b/lang/bn/torrent.php
index 848be9835..1bc456681 100644
--- a/lang/bn/torrent.php
+++ b/lang/bn/torrent.php
@@ -12,197 +12,197 @@
*/
return [
- 'activity' => 'কার্যকলাপ',
- 'age' => 'বয়স',
- 'agent' => 'প্রতিনিধি',
- 'alive' => 'জীবিত',
- 'announce-url' => 'ইউআরএল ঘোষণা',
- 'announce-url-desc' => 'একটি নতুন জোয়ার তৈরি করার সময় উপরে ঘোষণা URL ব্যবহার করুন। আপনি যদি সাইট থেকে এটি ডাউনলোড না করে আপনার টর্নেট ব্যবহার করতে চান তবে আপনাকে ব্যক্তিগত পতাকা এবং উত্স সেট করতে হবে: উত্স',
- 'announce-url-desc-url' => 'সমস্যা হচ্ছে? আমাদের গাইড দেখুন এখানে',
- 'announce-url-desc2' => 'সব আপলোডের জন্য টিএমডিবি এবং আইএমডিবি প্রয়োজন! এটা পোস্টার / ব্যাকড্রপ এবং ExtraInfo দখল করতে ব্যবহৃত হয়',
- 'approved' => 'অনুমোদিত',
- 'audio' => 'অডিও',
- 'bon-tipped' => 'BON টিপ করা',
- 'bookmark' => 'বুকমার্ক করুন',
- 'bookmarks' => 'বুকমার্ক',
- 'bump' => 'আচমকা',
- 'cant-upload' => 'ত্রুটি: আপনার আপলোড অধিকার নিষ্ক্রিয় করা হয়েছে',
- 'cant-upload-desc' => 'আপনি যদি ত্রুটি অনুভব করেন তবে দয়া করে যোগাযোগ স্টাফ',
- 'cards' => 'তাস',
- 'cards-view' => 'টরেন্ট কার্ড দেখুন',
- 'categories' => 'ধরন',
- 'category' => 'বিভাগ',
- 'client' => 'মক্কেল',
- 'commited' => 'Commited',
- 'completed' => 'সম্পন্ন',
- 'completed_at' => 'এ সম্পন্ন',
- 'completed-not-seeding' => 'আপনি এই ডাউনলোডটি সম্পন্ন করেছেন কিন্তু এটি কোনও দীর্ঘ ঋতু না',
- 'created_at' => 'এ নির্মিত',
- 'credited' => 'আমানত',
- 'current' => 'বর্তমান',
- 'current-filters' => 'বর্তমান ফিল্টার',
- 'currently-leeching' => 'বর্তমানে Leeching',
- 'currently-seeding' => 'বর্তমানে Seeding',
- 'dead-torrent' => 'মৃত টরেন্ট',
- 'dead-torrents' => 'মৃত টরেন্টস',
- 'delete-bookmark' => 'এই বুকমার্ক মুছুন',
- 'description' => 'বিবরণ',
- 'discounts' => 'ডিসকাউন্ট',
- 'double-upload' => 'ডাবল আপলোড',
- 'download-all' => 'সবগুলো ডাউনলোড',
- 'download-check' => 'চেক ডাউনলোড করুন',
- 'downloaded' => 'ডাউনলোড করা',
- 'dying-torrent' => 'মৃত্যুর টরেন্ট',
- 'dying-torrents' => 'মৃত্যুর Torrents',
- 'encode-settings' => 'এনকোড সেটিংস',
- 'estimated-ratio' => 'ডাউনলোডের পর আনুমানিক অনুপাত',
- 'failed' => 'ব্যর্থ হয়েছে',
- 'feature' => 'বৈশিষ্ট্য',
- 'featured' => 'বৈশিষ্ট্যযুক্ত',
- 'featured-desc' => 'বৈশিষ্ট্যযুক্ত টরেন্ট হয় 100% বিনামূল্যে এবং ডাবল আপলোড!',
- 'featured-until' => 'এটি একটি বৈশিষ্ট্যযুক্ত টরেন্ট পর্যন্ত',
- 'file' => 'ফাইল',
- 'filters' => 'ফিল্টার',
- 'fl-tokens-left' => 'তোমার আছে : টোকেন বাকি',
- 'freeleech' => 'Freeleech',
- 'freeleech-token' => 'ফ্রিলিচ টোকেন',
- 'general' => 'সাধারণ',
- 'genre' => 'রীতি',
- 'global-double-upload' => 'গ্লোবাল ডাবল আপলোড',
- 'global-freeleech' => 'গ্লোবাল ফ্রিলেক',
- 'grant' => 'প্রদান',
- 'greater-than' => 'অপেক্ষা বৃহত্তর',
- 'grouping' => 'গোষ্ঠী',
- 'groupings' => 'সম্পর্কিত',
- 'grouping-categories' => 'শ্রেণীকরণ বিভাগ',
+ 'activity' => 'কার্যকলাপ',
+ 'age' => 'বয়স',
+ 'agent' => 'প্রতিনিধি',
+ 'alive' => 'জীবিত',
+ 'announce-url' => 'ইউআরএল ঘোষণা',
+ 'announce-url-desc' => 'একটি নতুন জোয়ার তৈরি করার সময় উপরে ঘোষণা URL ব্যবহার করুন। আপনি যদি সাইট থেকে এটি ডাউনলোড না করে আপনার টর্নেট ব্যবহার করতে চান তবে আপনাকে ব্যক্তিগত পতাকা এবং উত্স সেট করতে হবে: উত্স',
+ 'announce-url-desc-url' => 'সমস্যা হচ্ছে? আমাদের গাইড দেখুন এখানে',
+ 'announce-url-desc2' => 'সব আপলোডের জন্য টিএমডিবি এবং আইএমডিবি প্রয়োজন! এটা পোস্টার / ব্যাকড্রপ এবং ExtraInfo দখল করতে ব্যবহৃত হয়',
+ 'approved' => 'অনুমোদিত',
+ 'audio' => 'অডিও',
+ 'bon-tipped' => 'BON টিপ করা',
+ 'bookmark' => 'বুকমার্ক করুন',
+ 'bookmarks' => 'বুকমার্ক',
+ 'bump' => 'আচমকা',
+ 'cant-upload' => 'ত্রুটি: আপনার আপলোড অধিকার নিষ্ক্রিয় করা হয়েছে',
+ 'cant-upload-desc' => 'আপনি যদি ত্রুটি অনুভব করেন তবে দয়া করে যোগাযোগ স্টাফ',
+ 'cards' => 'তাস',
+ 'cards-view' => 'টরেন্ট কার্ড দেখুন',
+ 'categories' => 'ধরন',
+ 'category' => 'বিভাগ',
+ 'client' => 'মক্কেল',
+ 'commited' => 'Commited',
+ 'completed' => 'সম্পন্ন',
+ 'completed_at' => 'এ সম্পন্ন',
+ 'completed-not-seeding' => 'আপনি এই ডাউনলোডটি সম্পন্ন করেছেন কিন্তু এটি কোনও দীর্ঘ ঋতু না',
+ 'created_at' => 'এ নির্মিত',
+ 'credited' => 'আমানত',
+ 'current' => 'বর্তমান',
+ 'current-filters' => 'বর্তমান ফিল্টার',
+ 'currently-leeching' => 'বর্তমানে Leeching',
+ 'currently-seeding' => 'বর্তমানে Seeding',
+ 'dead-torrent' => 'মৃত টরেন্ট',
+ 'dead-torrents' => 'মৃত টরেন্টস',
+ 'delete-bookmark' => 'এই বুকমার্ক মুছুন',
+ 'description' => 'বিবরণ',
+ 'discounts' => 'ডিসকাউন্ট',
+ 'double-upload' => 'ডাবল আপলোড',
+ 'download-all' => 'সবগুলো ডাউনলোড',
+ 'download-check' => 'চেক ডাউনলোড করুন',
+ 'downloaded' => 'ডাউনলোড করা',
+ 'dying-torrent' => 'মৃত্যুর টরেন্ট',
+ 'dying-torrents' => 'মৃত্যুর Torrents',
+ 'encode-settings' => 'এনকোড সেটিংস',
+ 'estimated-ratio' => 'ডাউনলোডের পর আনুমানিক অনুপাত',
+ 'failed' => 'ব্যর্থ হয়েছে',
+ 'feature' => 'বৈশিষ্ট্য',
+ 'featured' => 'বৈশিষ্ট্যযুক্ত',
+ 'featured-desc' => 'বৈশিষ্ট্যযুক্ত টরেন্ট হয় 100% বিনামূল্যে এবং ডাবল আপলোড!',
+ 'featured-until' => 'এটি একটি বৈশিষ্ট্যযুক্ত টরেন্ট পর্যন্ত',
+ 'file' => 'ফাইল',
+ 'filters' => 'ফিল্টার',
+ 'fl-tokens-left' => 'তোমার আছে : টোকেন বাকি',
+ 'freeleech' => 'Freeleech',
+ 'freeleech-token' => 'ফ্রিলিচ টোকেন',
+ 'general' => 'সাধারণ',
+ 'genre' => 'রীতি',
+ 'global-double-upload' => 'গ্লোবাল ডাবল আপলোড',
+ 'global-freeleech' => 'গ্লোবাল ফ্রিলেক',
+ 'grant' => 'প্রদান',
+ 'greater-than' => 'অপেক্ষা বৃহত্তর',
+ 'grouping' => 'গোষ্ঠী',
+ 'groupings' => 'সম্পর্কিত',
+ 'grouping-categories' => 'শ্রেণীকরণ বিভাগ',
'grouping-categories-desc' => 'আপনি কি বিভাগ গ্রুপ করতে চান?',
- 'grouping-results' => 'গ্রুপ ফলাফল',
- 'groupings-view' => 'গ্রুপিং দেখুন',
- 'have-completed' => 'সম্পন্ন',
- 'have-downloaded' => 'ডাউনলোড করা',
- 'have-not-completed' => 'সম্পন্ন না',
- 'have-not-downloaded' => 'ডাউনলোড করা হয়নি',
- 'health' => 'স্বাস্থ্য',
- 'history' => 'ইতিহাস',
- 'hitrun' => 'এইচ ও আছ?',
- 'hit-and-runs' => 'হিট এবং রান সংখ্যা',
- 'immune' => 'ইমিউন?',
- 'info' => 'তথ্য',
- 'internal' => 'অভ্যন্তরীণ',
- 'internal-release' => 'অভ্যন্তরীণ মুক্তি',
- 'last-seed-activity' => 'শেষ বীজ কার্যকলাপ',
- 'last-seeder' => 'আপনি শেষ অবশিষ্ট সাদার! (অন্তত 3 বার ডাউনলোড করা হয়েছে)',
- 'last-update' => 'সর্বশেষ আপডেট',
- 'leave-tip' => 'টিপ ছেড়ে',
- 'leecher' => 'Leecher',
- 'leechers' => 'শোষকগণ',
- 'leeching' => 'Leeching',
- 'left' => 'বাম',
- 'legendary-seeder' => 'কিংবদন্তী বীজ',
- 'legendary-torrent' => 'কিংবদন্তী জোয়ার',
- 'list' => 'তালিকা',
- 'me' => 'আমাকে',
- 'media-info' => 'মিডিয়া তথ্য',
- 'media-info-parser' => 'মিডিয়াইনফো পার্সার',
- 'media-info-paste' => 'এখানে মিডিয়াইনফো ডাম্প আটকান',
- 'meta-desc' => 'ডাউনলোড করুন: সর্বাধিক গতিতে নাম',
- 'moderation' => 'সংযম',
- 'movies' => 'চলচ্চিত্র',
- 'mvp' => 'সবচেয়ে মূল্যবান খেলোয়াড়',
- 'my-active-torrents' => 'আমার সক্রিয় torrents',
- 'name' => 'নাম',
- 'no-bookmarks' => 'পাওয়া কোন বুকমার্ক আছে।',
- 'no-discounts' => 'বর্তমানে কোন ডিসকাউন্ট',
- 'no-meta' => 'কোন মেটাডাটা খুঁজে পাওয়া যায় নি',
- 'no-privileges' => 'আপনি এই ফাইলটি ডাউনলোড করতে পারবেন না - আরো তথ্যের জন্য নীচের চেক করুন',
- 'no-privileges-desc' => 'ডাউনলোড বাটন প্রদর্শিত জন্য উপরের ব্যর্থ ফলাফল সমাধান করুন',
- 'not-completed' => 'ডাউনলোড শুরু কিন্তু শেষ না',
- 'not-downloaded' => 'ডাউনলোড করা হয়নি',
- 'old-torrent' => 'ওল্ড টর্েন্ট',
- 'optional' => 'ঐচ্ছিক',
- 'original-output' => 'মূল আউটপুট প্রদর্শন / লুকান',
- 'participant' => 'অংশগ্রাহক',
- 'passed' => 'গৃহীত',
- 'peers' => 'সহকর্মীরা',
- 'pending' => 'মুলতুবী',
- 'personal-freeleech' => 'ব্যক্তিগত ফ্রিলেক',
- 'poster' => 'পোস্টার',
- 'poster-view' => 'পোস্টার দেখুন',
- 'posters' => 'পোস্টার',
- 'prewarn' => 'Prewarned?',
- 'progress' => 'উন্নতি',
- 'quick-comment' => 'দ্রুত মন্তব্য',
- 'quick-tip' => 'দ্রুত টিপ পরিমাণ',
- 'rated' => 'রেট',
- 'rating' => 'নির্ধারণ',
- 'ready' => 'এই ফাইল ডাউনলোড করার জন্য প্রস্তুত',
- 'rejected' => 'প্রত্যাখ্যাত',
- 'released' => 'মুক্ত',
- 'remaining' => 'অবশিষ্ট',
- 'request-reseed' => 'অনুরোধ Reseed',
- 'requires-reseed' => 'Reseed প্রয়োজন',
- 'resurrections' => 'পুনরুত্থান',
- 'revoke' => 'রদ করা',
- 'rss' => 'আরএসএস',
- 'runtime' => 'রানটাইম',
- 'satisfied_in' => 'সন্তুষ্ট',
- 'say-thanks' => 'ধন্যবাদ যতক্ষণ সম্ভব আপনি ধন্যবাদ এবং বীজ বলতে মনে রাখবেন',
- 'sd-content' => 'এসডি কন্টেন্ট',
- 'search' => 'অনুসন্ধান',
- 'seed-time' => 'বীজ সময়',
- 'seeder' => 'বীজবিক্রেতা',
- 'seeders' => 'Seeders',
- 'seeding' => 'seeding',
- 'seedsize' => 'Seedsize',
- 'seedtime' => 'বীজবপনের কাল',
- 'short-completed' => 'সি',
- 'short-leechs' => 'এল',
- 'short-seeds' => 'এস',
- 'show-files' => 'ফাইল দেখান',
- 'similar' => 'অনুরূপ Torrents',
- 'size' => 'আয়তন',
- 'special' => 'বিশেষ',
- 'special-freeleech' => 'বিশেষ ফ্রিলেক',
- 'started' => 'শুরু',
- 'status' => 'অবস্থা',
- 'statistics' => 'পরিসংখ্যান',
- 'stats' => 'পরিসংখ্যান',
- 'sticky' => 'আঠাল',
- 'stream-optimized' => 'স্ট্রিম অপ্টিমাইজ করা',
- 'subtitle' => 'বাড়তি নাম',
- 'team-player' => 'টিম প্লেয়ার',
- 'thank' => 'ধন্যবাদ',
- 'thanked' => 'ধন্যবাদ জানান',
- 'thanks' => 'ধন্যবাদ',
- 'thanks-given' => 'ধন্যবাদ দেওয়া',
- 'times' => 'টাইমস',
- 'tip-jar' => 'টিপ বয়াম',
- 'title' => 'খেতাব',
- 'titles' => 'নমুনা এ থেকে জেড',
- 'top-completed' => 'শীর্ষ সম্পন্ন',
- 'top-dead' => 'শীর্ষ মৃত',
- 'top-dying' => 'শীর্ষ মৃত',
- 'top-leeched' => 'শীর্ষ leeched',
- 'top-seeded' => 'শীর্ষ বীজযুক্ত',
- 'torrent' => 'টরেন্ট',
- 'torrent-request' => 'টরেন্ট অনুরোধ',
- 'torrent-tips' => 'মোট : মোট বন আপলোডারের কাছে পাঠানো হয়েছে, যার মধ্যে : ব্যবহারকারী আপনার কাছ থেকে',
- 'torrent-tips-desc' => 'এটি আপনার উপলব্ধ বোনাস পয়েন্ট থেকে কাটা হবে',
- 'torrents' => 'তথ্যপ্রবাহের',
- 'trailer' => 'ট্রেলার দেখুন',
- 'type' => 'আদর্শ',
- 'types' => 'প্রকারভেদ',
- 'unbookmark' => 'Unbookmark',
- 'unsatisfieds' => 'Unsatisfieds',
- 'unsticky' => 'Unsticky',
- 'updated' => 'আপডেট করা হয়েছে',
- 'updated_at' => 'এ আপডেট',
- 'uploaded' => 'আপলোড করা',
- 'uploaded-by' => 'দ্বারা আপলোড',
- 'uploader' => 'আপলোডার',
- 'use-fl-token' => 'একটি ফ্রিলিচ টোকেন ব্যবহার করুন',
- 'video' => 'ভিডিও',
- 'view-more' => 'আরো দেখুন',
- 'view-trailer' => 'ট্রেলার দেখুন',
- 'votes' => 'ভোট',
+ 'grouping-results' => 'গ্রুপ ফলাফল',
+ 'groupings-view' => 'গ্রুপিং দেখুন',
+ 'have-completed' => 'সম্পন্ন',
+ 'have-downloaded' => 'ডাউনলোড করা',
+ 'have-not-completed' => 'সম্পন্ন না',
+ 'have-not-downloaded' => 'ডাউনলোড করা হয়নি',
+ 'health' => 'স্বাস্থ্য',
+ 'history' => 'ইতিহাস',
+ 'hitrun' => 'এইচ ও আছ?',
+ 'hit-and-runs' => 'হিট এবং রান সংখ্যা',
+ 'immune' => 'ইমিউন?',
+ 'info' => 'তথ্য',
+ 'internal' => 'অভ্যন্তরীণ',
+ 'internal-release' => 'অভ্যন্তরীণ মুক্তি',
+ 'last-seed-activity' => 'শেষ বীজ কার্যকলাপ',
+ 'last-seeder' => 'আপনি শেষ অবশিষ্ট সাদার! (অন্তত 3 বার ডাউনলোড করা হয়েছে)',
+ 'last-update' => 'সর্বশেষ আপডেট',
+ 'leave-tip' => 'টিপ ছেড়ে',
+ 'leecher' => 'Leecher',
+ 'leechers' => 'শোষকগণ',
+ 'leeching' => 'Leeching',
+ 'left' => 'বাম',
+ 'legendary-seeder' => 'কিংবদন্তী বীজ',
+ 'legendary-torrent' => 'কিংবদন্তী জোয়ার',
+ 'list' => 'তালিকা',
+ 'me' => 'আমাকে',
+ 'media-info' => 'মিডিয়া তথ্য',
+ 'media-info-parser' => 'মিডিয়াইনফো পার্সার',
+ 'media-info-paste' => 'এখানে মিডিয়াইনফো ডাম্প আটকান',
+ 'meta-desc' => 'ডাউনলোড করুন: সর্বাধিক গতিতে নাম',
+ 'moderation' => 'সংযম',
+ 'movies' => 'চলচ্চিত্র',
+ 'mvp' => 'সবচেয়ে মূল্যবান খেলোয়াড়',
+ 'my-active-torrents' => 'আমার সক্রিয় torrents',
+ 'name' => 'নাম',
+ 'no-bookmarks' => 'পাওয়া কোন বুকমার্ক আছে।',
+ 'no-discounts' => 'বর্তমানে কোন ডিসকাউন্ট',
+ 'no-meta' => 'কোন মেটাডাটা খুঁজে পাওয়া যায় নি',
+ 'no-privileges' => 'আপনি এই ফাইলটি ডাউনলোড করতে পারবেন না - আরো তথ্যের জন্য নীচের চেক করুন',
+ 'no-privileges-desc' => 'ডাউনলোড বাটন প্রদর্শিত জন্য উপরের ব্যর্থ ফলাফল সমাধান করুন',
+ 'not-completed' => 'ডাউনলোড শুরু কিন্তু শেষ না',
+ 'not-downloaded' => 'ডাউনলোড করা হয়নি',
+ 'old-torrent' => 'ওল্ড টর্েন্ট',
+ 'optional' => 'ঐচ্ছিক',
+ 'original-output' => 'মূল আউটপুট প্রদর্শন / লুকান',
+ 'participant' => 'অংশগ্রাহক',
+ 'passed' => 'গৃহীত',
+ 'peers' => 'সহকর্মীরা',
+ 'pending' => 'মুলতুবী',
+ 'personal-freeleech' => 'ব্যক্তিগত ফ্রিলেক',
+ 'poster' => 'পোস্টার',
+ 'poster-view' => 'পোস্টার দেখুন',
+ 'posters' => 'পোস্টার',
+ 'prewarn' => 'Prewarned?',
+ 'progress' => 'উন্নতি',
+ 'quick-comment' => 'দ্রুত মন্তব্য',
+ 'quick-tip' => 'দ্রুত টিপ পরিমাণ',
+ 'rated' => 'রেট',
+ 'rating' => 'নির্ধারণ',
+ 'ready' => 'এই ফাইল ডাউনলোড করার জন্য প্রস্তুত',
+ 'rejected' => 'প্রত্যাখ্যাত',
+ 'released' => 'মুক্ত',
+ 'remaining' => 'অবশিষ্ট',
+ 'request-reseed' => 'অনুরোধ Reseed',
+ 'requires-reseed' => 'Reseed প্রয়োজন',
+ 'resurrections' => 'পুনরুত্থান',
+ 'revoke' => 'রদ করা',
+ 'rss' => 'আরএসএস',
+ 'runtime' => 'রানটাইম',
+ 'satisfied_in' => 'সন্তুষ্ট',
+ 'say-thanks' => 'ধন্যবাদ যতক্ষণ সম্ভব আপনি ধন্যবাদ এবং বীজ বলতে মনে রাখবেন',
+ 'sd-content' => 'এসডি কন্টেন্ট',
+ 'search' => 'অনুসন্ধান',
+ 'seed-time' => 'বীজ সময়',
+ 'seeder' => 'বীজবিক্রেতা',
+ 'seeders' => 'Seeders',
+ 'seeding' => 'seeding',
+ 'seedsize' => 'Seedsize',
+ 'seedtime' => 'বীজবপনের কাল',
+ 'short-completed' => 'সি',
+ 'short-leechs' => 'এল',
+ 'short-seeds' => 'এস',
+ 'show-files' => 'ফাইল দেখান',
+ 'similar' => 'অনুরূপ Torrents',
+ 'size' => 'আয়তন',
+ 'special' => 'বিশেষ',
+ 'special-freeleech' => 'বিশেষ ফ্রিলেক',
+ 'started' => 'শুরু',
+ 'status' => 'অবস্থা',
+ 'statistics' => 'পরিসংখ্যান',
+ 'stats' => 'পরিসংখ্যান',
+ 'sticky' => 'আঠাল',
+ 'stream-optimized' => 'স্ট্রিম অপ্টিমাইজ করা',
+ 'subtitle' => 'বাড়তি নাম',
+ 'team-player' => 'টিম প্লেয়ার',
+ 'thank' => 'ধন্যবাদ',
+ 'thanked' => 'ধন্যবাদ জানান',
+ 'thanks' => 'ধন্যবাদ',
+ 'thanks-given' => 'ধন্যবাদ দেওয়া',
+ 'times' => 'টাইমস',
+ 'tip-jar' => 'টিপ বয়াম',
+ 'title' => 'খেতাব',
+ 'titles' => 'নমুনা এ থেকে জেড',
+ 'top-completed' => 'শীর্ষ সম্পন্ন',
+ 'top-dead' => 'শীর্ষ মৃত',
+ 'top-dying' => 'শীর্ষ মৃত',
+ 'top-leeched' => 'শীর্ষ leeched',
+ 'top-seeded' => 'শীর্ষ বীজযুক্ত',
+ 'torrent' => 'টরেন্ট',
+ 'torrent-request' => 'টরেন্ট অনুরোধ',
+ 'torrent-tips' => 'মোট : মোট বন আপলোডারের কাছে পাঠানো হয়েছে, যার মধ্যে : ব্যবহারকারী আপনার কাছ থেকে',
+ 'torrent-tips-desc' => 'এটি আপনার উপলব্ধ বোনাস পয়েন্ট থেকে কাটা হবে',
+ 'torrents' => 'তথ্যপ্রবাহের',
+ 'trailer' => 'ট্রেলার দেখুন',
+ 'type' => 'আদর্শ',
+ 'types' => 'প্রকারভেদ',
+ 'unbookmark' => 'Unbookmark',
+ 'unsatisfieds' => 'Unsatisfieds',
+ 'unsticky' => 'Unsticky',
+ 'updated' => 'আপডেট করা হয়েছে',
+ 'updated_at' => 'এ আপডেট',
+ 'uploaded' => 'আপলোড করা',
+ 'uploaded-by' => 'দ্বারা আপলোড',
+ 'uploader' => 'আপলোডার',
+ 'use-fl-token' => 'একটি ফ্রিলিচ টোকেন ব্যবহার করুন',
+ 'video' => 'ভিডিও',
+ 'view-more' => 'আরো দেখুন',
+ 'view-trailer' => 'ট্রেলার দেখুন',
+ 'votes' => 'ভোট',
];
diff --git a/lang/bn/user.php b/lang/bn/user.php
index b7cea52c3..80a61f87b 100644
--- a/lang/bn/user.php
+++ b/lang/bn/user.php
@@ -12,316 +12,316 @@
*/
return [
- 'about' => 'সম্পর্কিত',
- 'about-me' => 'আমার সম্পর্কে',
- 'accepted-at' => 'এ গ্রহণ',
- 'accepted-by' => 'দ্বারা গৃহীত',
- 'account-notification' => 'অ্যাকাউন্ট বিজ্ঞপ্তি সেটিংস',
- 'account-notification-follow' => 'যখন ব্যবহারকারী আপনার অ্যাকাউন্ট অনুসরণ করে তখন একটি বিজ্ঞপ্তি পান',
- 'account-notification-unfollow' => 'একটি ব্যবহারকারী আপনার অ্যাকাউন্ট unfollows যখন একটি বিজ্ঞপ্তি পান',
- 'account-notification-help' => 'আপনার অ্যাকাউন্টের বিষয়ে কোন বিজ্ঞপ্তি পাঠানো হয় তা নিয়ন্ত্রণ করুন। আপনি যদি কোনও গোষ্ঠীকে আপনার অ্যাকাউন্ট সম্পর্কিত বিজ্ঞপ্তি পাঠাতে বা যদি আপনি বিজ্ঞপ্তিগুলি অক্ষম করেন তবে এই সেটিংস ওভাররাইড করা হয়',
- 'account-settings' => 'অ্যাকাউন্ট সেটিংস',
- 'achievement-privacy' => 'অর্জন সেটিংস',
- 'achievement-privacy-list' => 'ব্যবহারকারীদের আপনার সাফল্য একটি তালিকা দেখতে অনুমতি দিন',
- 'achievement-help' => 'আপনার প্রোফাইলে অ্যাক্সেস করার অনুমতি দেওয়া গোষ্ঠীগুলির সাথে নির্দিষ্ট কৃতিত্ব সম্পর্কিত তথ্য ভাগ করে নেওয়া নিয়ন্ত্রণ করুন। আপনি যদি কোন গোষ্ঠীকে আপনার সাফল্যগুলি অ্যাক্সেস করতে বা যদি আপনি ব্যক্তিগত হন তবে এই সেটিংস ওভাররাইড করা হয়',
- 'achievements' => 'কৃতিত্ব',
- 'active' => 'সক্রিয়',
- 'active-table' => 'আমার সক্রিয় টেবিল',
- 'active-torrents' => 'সক্রিয় টরেন্টস',
- 'active-warning' => 'সক্রিয় সতর্কতা',
- 'active-warnings' => 'সক্রিয় সতর্কতা',
- 'add-seedbox' => 'Seedbox যোগ করুন',
- 'all-torrents' => 'সব Torrents',
- 'article-comments' => 'নিবন্ধ মন্তব্য করেছেন',
- 'avatar' => 'অবতার',
- 'avg-seedtime' => 'গড় ঋতু সময়',
- 'badges' => 'ব্যাজ',
- 'ban' => 'বাতিল ব্যাবহারকারী',
- 'ban-log' => 'নিষিদ্ধ লগ',
- 'become-hidden' => 'লুকানো হয়ে',
- 'become-visible' => 'দৃশ্যমান হয়ে উঠুন',
- 'bon' => 'BON',
- 'bon-notification' => 'বন বিজ্ঞপ্তি সেটিংস',
- 'bon-notification-gift' => 'একজন ব্যবহারকারী আপনাকে উপহার দেওয়ার সময় একটি বিজ্ঞপ্তি পান',
- 'bon-notification-help' => 'বোন লেনদেনের বিষয়ে কোন বিজ্ঞপ্তি পাঠানো হয় তা নিয়ন্ত্রণ করুন। এই সেটিংস বা ওভাররাইড করা হয় যদি আপনার কোন গ্রুপ BON বিষয়ে বিজ্ঞপ্তি পাঠাতে অনুমতি দেয় না আপনাকে বিজ্ঞপ্তি অক্ষম করলে',
- 'bookmarks' => 'বুকমার্ক',
- 'bounty-given' => 'অনুদান দেওয়া',
- 'bounty-received' => 'অনুদান প্রাপ্তি',
- 'can-chat' => 'চ্যাট করতে পারেন',
- 'can-comment' => 'মন্তব্য করতে পারেন',
- 'can-download' => 'ডাউনলোড করতে পারেন',
- 'can-invite' => 'আমন্ত্রণ করতে পারেন',
- 'can-request' => 'অনুরোধ করতে পারেন',
- 'can-upload' => 'আপলোড করতে পারেন',
- 'certified-banker' => 'সার্টিফাইড ব্যাংকার',
- 'certified-banker-desc' => 'ব্যাংকের 50,000 বা তার বেশি বোন আছে',
- 'certified-downloader' => 'সার্টিফাইড ডাউনলোডার',
- 'certified-downloader-desc' => 'ডাউনলোড 100 বা আরো Torrents!',
- 'certified-seeder' => 'সার্টিফাইড সেডার',
- 'certified-seeder-desc' => '150 বা আরো টরেন্টস Seeding!',
- 'change-email' => 'ইমেইল পরিবর্তন করুন',
- 'change-email-help' => 'আপনি আপনার ইমেল পরিবর্তন করার পরে, আপনার অ্যাকাউন্ট পুনরায় নিশ্চিত করতে হবে',
- 'change-password' => 'পাসওয়ার্ড পরিবর্তন করুন',
- 'change-password-help' => 'আপনার পাসওয়ার্ড পরিবর্তন করার পরে আপনাকে আবার লগইন করতে হবে',
- 'client-ip-address' => 'ক্লায়েন্ট আইপি ঠিকানা',
- 'code' => 'কোড',
- 'comments' => 'মন্তব্য',
- 'created-on' => 'তৈরি',
- 'credited-download' => 'ক্রেডিট ডাউনলোড',
- 'credited-upload' => 'ক্রেডিট আপলোড',
- 'current-password' => 'বর্তমান পাসওয়ার্ড',
- 'custom-title' => 'কাস্টম শিরোনাম',
- 'delete' => 'ব্যবহারকারী মুছে দিন',
- 'disable-notifications' => 'বিজ্ঞপ্তি নিষ্ক্রিয় করুন',
- 'disclaimer' => 'দাবি পরিত্যাগী',
- 'disclaimer-info' => 'আমরা ডিফল্টভাবে বেশিরভাগ ট্র্যাকারের মত ব্যবহারকারীদের IP ঠিকানাগুলি লগ করি না। নীচে আপনার বীডবক্স আইপি যুক্ত করে এটি প্রত্যাশিত যে আপনি নীচের তালিকাভুক্ত আপনার আইপিগুলি এখন আমাদের ডেটাবেসে সংরক্ষণ না করা পর্যন্ত আপনি রেকর্ড মুছে ফেলবেন।',
- 'disclaimer-info-bordered' => 'সেডবক্স আইপিগুলি তারপর তালিকাভুক্ত আইপি থেকে বীজযুক্ত টরেন্টগুলিতে উচ্চ গতির টরেন্ট ট্যাগ ট্রিগার করবে',
- 'download-bon' => 'বন দোকান থেকে অপসারণ ডাউনলোড করুন',
- 'download-recorded' => 'রেকর্ড ডাউনলোড',
- 'download-true' => 'সত্য ডাউনলোড',
- 'downloads' => 'ডাউনলোডগুলি',
- 'edit' => 'ব্যবহারকারী সম্পাদনা করুন',
- 'edit-profile' => 'জীবন বৃত্তান্ত সম্পাদনা',
- 'enable-notifications' => 'বিজ্ঞপ্তি সক্রিয় করুন',
- 'expired' => 'মেয়াদোত্তীর্ণ',
- 'expires-on' => 'মেয়াদ শেষ',
- 'extra' => 'অতিরিক্ত',
- 'filled-request' => 'পূরণ সদস্য অনুরোধ',
- 'follow' => 'অনুসরণ করা',
- 'follower-privacy' => 'অনুসরণকারী সেটিংস',
- 'follower-privacy-list' => 'ব্যবহারকারীদের আপনার অনুসরণকারীদের একটি তালিকা দেখতে অনুমতি দিন',
- 'follower-help' => 'আপনার অনুসরণে অ্যাক্সেস করার অনুমতি দেওয়া গোষ্ঠীগুলির সাথে নির্দিষ্ট অনুসারী সম্পর্কিত তথ্য ভাগ করে নেওয়া নিয়ন্ত্রণ করুন। আপনি যদি কোনও গোষ্ঠীকে আপনার অনুসরণকারীদের অ্যাক্সেস করতে বা যদি আপনি ব্যক্তিগত হন তবে এই সেটিংস ওভাররাইড করা হয়',
- 'followers' => 'অনুসরণ',
- 'following-notification' => 'অনুসরণ ইউজার বিজ্ঞপ্তি সেটিংস',
- 'following-notification-upload' => 'একটি অনুসরণকারী ব্যবহারকারী একটি জোয়ার আপলোড যখন একটি বিজ্ঞপ্তি পান',
- 'following-notification-help' => 'অনুসরণকারী ব্যবহারকারী সাইট ক্রিয়া সংক্রান্ত কোন বিজ্ঞপ্তি পাঠানো হয় তা নিয়ন্ত্রণ করুন। আপনি যদি কোনও গোষ্ঠীকে অনুসরণকারী ব্যবহারকারী সম্পর্কিত বিজ্ঞপ্তি পাঠাতে বা যদি আপনি অক্ষমকরণ বিজ্ঞপ্তিগুলি পাঠাতে অনুমতি দেন না তবে এই সেটিংস ওভাররাইড করা হয়',
- 'formats-are-supported' => ': ফরম্যাট সমর্থিত হয়',
- 'forum-notification' => 'ফোরাম বিজ্ঞপ্তি সেটিংস',
- 'forum-notification-topic' => 'যখন আপনি একটি বিষয় শুরু করেন তখন একটি নতুন পোস্ট পায় যখন একটি বিজ্ঞপ্তি পান',
- 'forum-notification-help' => 'ফোরাম কার্যক্রম সংক্রান্ত বিজ্ঞপ্তি পাঠানো হয় কি নিয়ন্ত্রণ। আপনি যদি কোনও গোষ্ঠীগুলিকে ফোরামের ক্রিয়াকলাপ সম্পর্কিত বিজ্ঞপ্তি পাঠাতে বা যদি আপনি অক্ষমকরণ বিজ্ঞপ্তিগুলি পাঠাতে অনুমতি দেন তবে এই সেটিংস ওভাররাইড করা হয়',
- 'forum-privacy' => 'ফোরাম সেটিংস',
- 'forum-privacy-post' => 'আপনি পোস্ট করেছেন যে ফোরাম পোস্টের একটি তালিকা দেখতে ব্যবহারকারীদের অনুমতি দিন',
- 'forum-privacy-topic' => 'আপনি শুরু করেছেন ফোরামের বিষয়গুলির একটি তালিকা দেখতে ব্যবহারকারীদের অনুমতি দিন',
- 'forum-help' => 'নির্দিষ্ট ফোরাম সম্পর্কিত পরিসংখ্যান এবং আপনার প্রোফাইল অ্যাক্সেস করার অনুমতি দেওয়া গোষ্ঠীগুলির সাথে তথ্য ভাগ করে নেওয়া নিয়ন্ত্রণ করুন। আপনি যদি কোনও গোষ্ঠীকে আপনার ফোরাম সম্পর্কিত পরিসংখ্যান এবং তথ্য অ্যাক্সেস করতে বা যদি আপনি ব্যক্তিগত হন তবে এই সেটিংস ওভাররাইড করা হয়',
- 'forum-signature' => 'ফোরাম স্বাক্ষর',
- 'forums' => 'ফোরাম',
- 'general' => 'সাধারণ',
- 'general-settings' => 'সাধারণ সেটিংস',
- 'gift-given' => 'উপহার দেওয়া',
- 'gift-received' => 'উপহার পেয়েছি',
- 'go-public' => 'পাবলিক যান',
- 'go-private' => 'প্রাইভেট যান',
- 'history' => 'ইতিহাস',
- 'history-table' => 'আমার ইতিহাস টেবিল',
- 'hit-n-runs' => 'হিট এবং রান',
- 'hit-n-runs-count' => 'হিট এবং রান গণনা (সব সময়)',
- 'hit-n-runs-history' => 'টরেন্ট হিট এবং রান ইতিহাস',
- 'image' => 'ভাবমূর্তি',
- 'important' => 'গুরুত্বপূর্ণ',
- 'important-info' => 'গুরুত্বপূর্ণ তথ্য',
- 'information' => 'তথ্য',
- 'invite-friend' => 'আপনার বন্ধুকে আমন্ত্রণ জানান (ইমেইল + বার্তা প্রয়োজন)',
- 'invite-tree' => 'গাছ আমন্ত্রণ করুন',
- 'invites' => 'আমন্ত্রণ',
- 'invites-banned' => 'ত্রুটি: আপনার আমন্ত্রণ অধিকার নিষ্ক্রিয় করা হয়েছে',
- 'invites-banned-desc' => 'যদি আপনি এই ত্রুটি অনুভব করেন, অনুগ্রহ করে যোগাযোগ স্টাফ!',
- 'invites-count' => 'আপনি আছে: টোকেন আমন্ত্রণ গণনা',
- 'invites-disabled' => 'মনোযোগ: আমন্ত্রণ নিবন্ধন খোলা কারণে নিষ্ক্রিয় করা হয়!',
- 'invites-disabled-desc' => 'শীঘ্রই আবার চেক করুন!',
- 'invites-rules' => ' শুধুমাত্র আপনি জানেন এবং বিশ্বাস মানুষ আমন্ত্রণ। আপনি আমন্ত্রিতদের জন্য ব্যক্তিগতভাবে আপনার দায়ী থাকবেন। নিজেকে আমন্ত্রণ না, আমরা প্রত্যেক আমন্ত্রিত ব্যবহারকারী চেক। বাণিজ্য না আমন্ত্রণ বিক্রয় না। যদি আপনি আমন্ত্রিত ব্যক্তিটিকে প্রতারণা, ট্রেডিং অ্যাকাউন্ট বা বিক্রি / ট্রেডিং আমন্ত্রণগুলি ধরা পড়ে তবে আপনাকে সতর্ক করা হবে। ',
- 'invites-send' => 'আমন্ত্রণ পাঠান',
- 'last-login' => 'শেষ লগইন',
- 'locked' => 'লক',
- 'locked-achievements' => 'লক কৃতিত্ব',
- 'member-since' => 'সদস্য থেকে',
- 'members-desc' => 'নিবন্ধিত ব্যবহারকারীদের তালিকা: সকল গোষ্ঠীর শিরোনাম। এখন একটি ব্যবহারকারী খুঁজুন।',
- 'mention-notification' => '@ উল্লেখ বিজ্ঞপ্তি সেটিংস',
+ 'about' => 'সম্পর্কিত',
+ 'about-me' => 'আমার সম্পর্কে',
+ 'accepted-at' => 'এ গ্রহণ',
+ 'accepted-by' => 'দ্বারা গৃহীত',
+ 'account-notification' => 'অ্যাকাউন্ট বিজ্ঞপ্তি সেটিংস',
+ 'account-notification-follow' => 'যখন ব্যবহারকারী আপনার অ্যাকাউন্ট অনুসরণ করে তখন একটি বিজ্ঞপ্তি পান',
+ 'account-notification-unfollow' => 'একটি ব্যবহারকারী আপনার অ্যাকাউন্ট unfollows যখন একটি বিজ্ঞপ্তি পান',
+ 'account-notification-help' => 'আপনার অ্যাকাউন্টের বিষয়ে কোন বিজ্ঞপ্তি পাঠানো হয় তা নিয়ন্ত্রণ করুন। আপনি যদি কোনও গোষ্ঠীকে আপনার অ্যাকাউন্ট সম্পর্কিত বিজ্ঞপ্তি পাঠাতে বা যদি আপনি বিজ্ঞপ্তিগুলি অক্ষম করেন তবে এই সেটিংস ওভাররাইড করা হয়',
+ 'account-settings' => 'অ্যাকাউন্ট সেটিংস',
+ 'achievement-privacy' => 'অর্জন সেটিংস',
+ 'achievement-privacy-list' => 'ব্যবহারকারীদের আপনার সাফল্য একটি তালিকা দেখতে অনুমতি দিন',
+ 'achievement-help' => 'আপনার প্রোফাইলে অ্যাক্সেস করার অনুমতি দেওয়া গোষ্ঠীগুলির সাথে নির্দিষ্ট কৃতিত্ব সম্পর্কিত তথ্য ভাগ করে নেওয়া নিয়ন্ত্রণ করুন। আপনি যদি কোন গোষ্ঠীকে আপনার সাফল্যগুলি অ্যাক্সেস করতে বা যদি আপনি ব্যক্তিগত হন তবে এই সেটিংস ওভাররাইড করা হয়',
+ 'achievements' => 'কৃতিত্ব',
+ 'active' => 'সক্রিয়',
+ 'active-table' => 'আমার সক্রিয় টেবিল',
+ 'active-torrents' => 'সক্রিয় টরেন্টস',
+ 'active-warning' => 'সক্রিয় সতর্কতা',
+ 'active-warnings' => 'সক্রিয় সতর্কতা',
+ 'add-seedbox' => 'Seedbox যোগ করুন',
+ 'all-torrents' => 'সব Torrents',
+ 'article-comments' => 'নিবন্ধ মন্তব্য করেছেন',
+ 'avatar' => 'অবতার',
+ 'avg-seedtime' => 'গড় ঋতু সময়',
+ 'badges' => 'ব্যাজ',
+ 'ban' => 'বাতিল ব্যাবহারকারী',
+ 'ban-log' => 'নিষিদ্ধ লগ',
+ 'become-hidden' => 'লুকানো হয়ে',
+ 'become-visible' => 'দৃশ্যমান হয়ে উঠুন',
+ 'bon' => 'BON',
+ 'bon-notification' => 'বন বিজ্ঞপ্তি সেটিংস',
+ 'bon-notification-gift' => 'একজন ব্যবহারকারী আপনাকে উপহার দেওয়ার সময় একটি বিজ্ঞপ্তি পান',
+ 'bon-notification-help' => 'বোন লেনদেনের বিষয়ে কোন বিজ্ঞপ্তি পাঠানো হয় তা নিয়ন্ত্রণ করুন। এই সেটিংস বা ওভাররাইড করা হয় যদি আপনার কোন গ্রুপ BON বিষয়ে বিজ্ঞপ্তি পাঠাতে অনুমতি দেয় না আপনাকে বিজ্ঞপ্তি অক্ষম করলে',
+ 'bookmarks' => 'বুকমার্ক',
+ 'bounty-given' => 'অনুদান দেওয়া',
+ 'bounty-received' => 'অনুদান প্রাপ্তি',
+ 'can-chat' => 'চ্যাট করতে পারেন',
+ 'can-comment' => 'মন্তব্য করতে পারেন',
+ 'can-download' => 'ডাউনলোড করতে পারেন',
+ 'can-invite' => 'আমন্ত্রণ করতে পারেন',
+ 'can-request' => 'অনুরোধ করতে পারেন',
+ 'can-upload' => 'আপলোড করতে পারেন',
+ 'certified-banker' => 'সার্টিফাইড ব্যাংকার',
+ 'certified-banker-desc' => 'ব্যাংকের 50,000 বা তার বেশি বোন আছে',
+ 'certified-downloader' => 'সার্টিফাইড ডাউনলোডার',
+ 'certified-downloader-desc' => 'ডাউনলোড 100 বা আরো Torrents!',
+ 'certified-seeder' => 'সার্টিফাইড সেডার',
+ 'certified-seeder-desc' => '150 বা আরো টরেন্টস Seeding!',
+ 'change-email' => 'ইমেইল পরিবর্তন করুন',
+ 'change-email-help' => 'আপনি আপনার ইমেল পরিবর্তন করার পরে, আপনার অ্যাকাউন্ট পুনরায় নিশ্চিত করতে হবে',
+ 'change-password' => 'পাসওয়ার্ড পরিবর্তন করুন',
+ 'change-password-help' => 'আপনার পাসওয়ার্ড পরিবর্তন করার পরে আপনাকে আবার লগইন করতে হবে',
+ 'client-ip-address' => 'ক্লায়েন্ট আইপি ঠিকানা',
+ 'code' => 'কোড',
+ 'comments' => 'মন্তব্য',
+ 'created-on' => 'তৈরি',
+ 'credited-download' => 'ক্রেডিট ডাউনলোড',
+ 'credited-upload' => 'ক্রেডিট আপলোড',
+ 'current-password' => 'বর্তমান পাসওয়ার্ড',
+ 'custom-title' => 'কাস্টম শিরোনাম',
+ 'delete' => 'ব্যবহারকারী মুছে দিন',
+ 'disable-notifications' => 'বিজ্ঞপ্তি নিষ্ক্রিয় করুন',
+ 'disclaimer' => 'দাবি পরিত্যাগী',
+ 'disclaimer-info' => 'আমরা ডিফল্টভাবে বেশিরভাগ ট্র্যাকারের মত ব্যবহারকারীদের IP ঠিকানাগুলি লগ করি না। নীচে আপনার বীডবক্স আইপি যুক্ত করে এটি প্রত্যাশিত যে আপনি নীচের তালিকাভুক্ত আপনার আইপিগুলি এখন আমাদের ডেটাবেসে সংরক্ষণ না করা পর্যন্ত আপনি রেকর্ড মুছে ফেলবেন।',
+ 'disclaimer-info-bordered' => 'সেডবক্স আইপিগুলি তারপর তালিকাভুক্ত আইপি থেকে বীজযুক্ত টরেন্টগুলিতে উচ্চ গতির টরেন্ট ট্যাগ ট্রিগার করবে',
+ 'download-bon' => 'বন দোকান থেকে অপসারণ ডাউনলোড করুন',
+ 'download-recorded' => 'রেকর্ড ডাউনলোড',
+ 'download-true' => 'সত্য ডাউনলোড',
+ 'downloads' => 'ডাউনলোডগুলি',
+ 'edit' => 'ব্যবহারকারী সম্পাদনা করুন',
+ 'edit-profile' => 'জীবন বৃত্তান্ত সম্পাদনা',
+ 'enable-notifications' => 'বিজ্ঞপ্তি সক্রিয় করুন',
+ 'expired' => 'মেয়াদোত্তীর্ণ',
+ 'expires-on' => 'মেয়াদ শেষ',
+ 'extra' => 'অতিরিক্ত',
+ 'filled-request' => 'পূরণ সদস্য অনুরোধ',
+ 'follow' => 'অনুসরণ করা',
+ 'follower-privacy' => 'অনুসরণকারী সেটিংস',
+ 'follower-privacy-list' => 'ব্যবহারকারীদের আপনার অনুসরণকারীদের একটি তালিকা দেখতে অনুমতি দিন',
+ 'follower-help' => 'আপনার অনুসরণে অ্যাক্সেস করার অনুমতি দেওয়া গোষ্ঠীগুলির সাথে নির্দিষ্ট অনুসারী সম্পর্কিত তথ্য ভাগ করে নেওয়া নিয়ন্ত্রণ করুন। আপনি যদি কোনও গোষ্ঠীকে আপনার অনুসরণকারীদের অ্যাক্সেস করতে বা যদি আপনি ব্যক্তিগত হন তবে এই সেটিংস ওভাররাইড করা হয়',
+ 'followers' => 'অনুসরণ',
+ 'following-notification' => 'অনুসরণ ইউজার বিজ্ঞপ্তি সেটিংস',
+ 'following-notification-upload' => 'একটি অনুসরণকারী ব্যবহারকারী একটি জোয়ার আপলোড যখন একটি বিজ্ঞপ্তি পান',
+ 'following-notification-help' => 'অনুসরণকারী ব্যবহারকারী সাইট ক্রিয়া সংক্রান্ত কোন বিজ্ঞপ্তি পাঠানো হয় তা নিয়ন্ত্রণ করুন। আপনি যদি কোনও গোষ্ঠীকে অনুসরণকারী ব্যবহারকারী সম্পর্কিত বিজ্ঞপ্তি পাঠাতে বা যদি আপনি অক্ষমকরণ বিজ্ঞপ্তিগুলি পাঠাতে অনুমতি দেন না তবে এই সেটিংস ওভাররাইড করা হয়',
+ 'formats-are-supported' => ': ফরম্যাট সমর্থিত হয়',
+ 'forum-notification' => 'ফোরাম বিজ্ঞপ্তি সেটিংস',
+ 'forum-notification-topic' => 'যখন আপনি একটি বিষয় শুরু করেন তখন একটি নতুন পোস্ট পায় যখন একটি বিজ্ঞপ্তি পান',
+ 'forum-notification-help' => 'ফোরাম কার্যক্রম সংক্রান্ত বিজ্ঞপ্তি পাঠানো হয় কি নিয়ন্ত্রণ। আপনি যদি কোনও গোষ্ঠীগুলিকে ফোরামের ক্রিয়াকলাপ সম্পর্কিত বিজ্ঞপ্তি পাঠাতে বা যদি আপনি অক্ষমকরণ বিজ্ঞপ্তিগুলি পাঠাতে অনুমতি দেন তবে এই সেটিংস ওভাররাইড করা হয়',
+ 'forum-privacy' => 'ফোরাম সেটিংস',
+ 'forum-privacy-post' => 'আপনি পোস্ট করেছেন যে ফোরাম পোস্টের একটি তালিকা দেখতে ব্যবহারকারীদের অনুমতি দিন',
+ 'forum-privacy-topic' => 'আপনি শুরু করেছেন ফোরামের বিষয়গুলির একটি তালিকা দেখতে ব্যবহারকারীদের অনুমতি দিন',
+ 'forum-help' => 'নির্দিষ্ট ফোরাম সম্পর্কিত পরিসংখ্যান এবং আপনার প্রোফাইল অ্যাক্সেস করার অনুমতি দেওয়া গোষ্ঠীগুলির সাথে তথ্য ভাগ করে নেওয়া নিয়ন্ত্রণ করুন। আপনি যদি কোনও গোষ্ঠীকে আপনার ফোরাম সম্পর্কিত পরিসংখ্যান এবং তথ্য অ্যাক্সেস করতে বা যদি আপনি ব্যক্তিগত হন তবে এই সেটিংস ওভাররাইড করা হয়',
+ 'forum-signature' => 'ফোরাম স্বাক্ষর',
+ 'forums' => 'ফোরাম',
+ 'general' => 'সাধারণ',
+ 'general-settings' => 'সাধারণ সেটিংস',
+ 'gift-given' => 'উপহার দেওয়া',
+ 'gift-received' => 'উপহার পেয়েছি',
+ 'go-public' => 'পাবলিক যান',
+ 'go-private' => 'প্রাইভেট যান',
+ 'history' => 'ইতিহাস',
+ 'history-table' => 'আমার ইতিহাস টেবিল',
+ 'hit-n-runs' => 'হিট এবং রান',
+ 'hit-n-runs-count' => 'হিট এবং রান গণনা (সব সময়)',
+ 'hit-n-runs-history' => 'টরেন্ট হিট এবং রান ইতিহাস',
+ 'image' => 'ভাবমূর্তি',
+ 'important' => 'গুরুত্বপূর্ণ',
+ 'important-info' => 'গুরুত্বপূর্ণ তথ্য',
+ 'information' => 'তথ্য',
+ 'invite-friend' => 'আপনার বন্ধুকে আমন্ত্রণ জানান (ইমেইল + বার্তা প্রয়োজন)',
+ 'invite-tree' => 'গাছ আমন্ত্রণ করুন',
+ 'invites' => 'আমন্ত্রণ',
+ 'invites-banned' => 'ত্রুটি: আপনার আমন্ত্রণ অধিকার নিষ্ক্রিয় করা হয়েছে',
+ 'invites-banned-desc' => 'যদি আপনি এই ত্রুটি অনুভব করেন, অনুগ্রহ করে যোগাযোগ স্টাফ!',
+ 'invites-count' => 'আপনি আছে: টোকেন আমন্ত্রণ গণনা',
+ 'invites-disabled' => 'মনোযোগ: আমন্ত্রণ নিবন্ধন খোলা কারণে নিষ্ক্রিয় করা হয়!',
+ 'invites-disabled-desc' => 'শীঘ্রই আবার চেক করুন!',
+ 'invites-rules' => ' শুধুমাত্র আপনি জানেন এবং বিশ্বাস মানুষ আমন্ত্রণ। আপনি আমন্ত্রিতদের জন্য ব্যক্তিগতভাবে আপনার দায়ী থাকবেন। নিজেকে আমন্ত্রণ না, আমরা প্রত্যেক আমন্ত্রিত ব্যবহারকারী চেক। বাণিজ্য না আমন্ত্রণ বিক্রয় না। যদি আপনি আমন্ত্রিত ব্যক্তিটিকে প্রতারণা, ট্রেডিং অ্যাকাউন্ট বা বিক্রি / ট্রেডিং আমন্ত্রণগুলি ধরা পড়ে তবে আপনাকে সতর্ক করা হবে। ',
+ 'invites-send' => 'আমন্ত্রণ পাঠান',
+ 'last-login' => 'শেষ লগইন',
+ 'locked' => 'লক',
+ 'locked-achievements' => 'লক কৃতিত্ব',
+ 'member-since' => 'সদস্য থেকে',
+ 'members-desc' => 'নিবন্ধিত ব্যবহারকারীদের তালিকা: সকল গোষ্ঠীর শিরোনাম। এখন একটি ব্যবহারকারী খুঁজুন।',
+ 'mention-notification' => '@ উল্লেখ বিজ্ঞপ্তি সেটিংস',
'mention-notification-article-comment' => 'আপনি একটি নিবন্ধ মন্তব্য @ বিব্রত করা হয় যখন একটি বিজ্ঞপ্তি পান',
'mention-notification-torrent-comment' => 'আপনি একটি জোয়ার মন্তব্য @ @ যখন একটি বিজ্ঞপ্তি পান',
'mention-notification-request-comment' => 'আপনি একটি অনুরোধ মন্তব্য @ বিবৃতি যখন একটি বিজ্ঞপ্তি পান',
- 'mention-notification-forum-post' => 'আপনি যখন একটি ফোরাম পোস্টে @ বিব্রত হন তখন একটি বিজ্ঞপ্তি পান',
- 'mention-notification-help' => 'কোন ব্যবহারকারী @ আপনাকে বিব্রত করার সময় কোন বিজ্ঞপ্তিগুলি পাঠানো হয় তা নিয়ন্ত্রণ করুন। কোনও ব্যবহারকারী @ আপনাকে বিব্রত করলে বা বিজ্ঞপ্তিগুলি অক্ষম করলে আপনি কোনও গোষ্ঠীকে বিজ্ঞপ্তি পাঠানোর অনুমতি দিলে এই সেটিংস ওভাররাইড করা হয়',
- 'moderated-by' => 'দ্বারা সংশোধিত: মডেলে',
- 'my-bonus-points' => 'আমার বোনাস পয়েন্ট',
- 'my-bookmarks' => 'আমার বুকমার্ক',
- 'my-fl-tokens' => 'আমার FL টোকেন',
- 'my-general-settings' => 'আমার সাধারণ সেটিংস',
- 'my-notification' => 'আমার বিজ্ঞপ্তি',
- 'my-notification-settings' => 'আমার বিজ্ঞপ্তি সেটিংস',
- 'my-privacy' => 'আমার গোপনীয়তা',
- 'my-privacy-settings' => 'আমার গোপনীয়তা সেটিংস',
- 'my-profile' => 'আমার প্রোফাইল',
- 'my-requested' => 'আমার অনুরোধ',
- 'my-security' => 'আমার নিরাপত্তা',
- 'my-security-settings' => 'আমার নিরাপত্তা সেটিংস',
- 'my-seedboxes' => 'আমার Seedboxes',
- 'my-settings' => 'আমার সেটিংস',
- 'my-wishlist' => 'আমার ইচ্ছাগুলি',
- 'no-logs' => 'এই ব্যবহারকারীর জন্য ডাটাবেসের কোন আমন্ত্রণ লগ নেই!',
- 'no-seedboxes' => 'কোন বীডবক্স 😔',
- 'not-authorized' => 'আপনি এই পৃষ্ঠা দেখতে অনুমোদিত না। এই সদস্য একটি নিনজা মত লুকানো পছন্দ!',
- 'note' => 'বিঃদ্রঃ',
- 'notification' => 'প্রজ্ঞাপন',
- 'notification-settings' => 'বিজ্ঞপ্তি সেটিংস',
- 'notification-from-account' => 'থেকে অ্যাকাউন্ট বিজ্ঞপ্তি পান',
- 'notification-from-account-help' => 'আপনি শুধুমাত্র সিস্টেম, কর্মী এবং নিম্নলিখিত গ্রুপ থেকে অ্যাকাউন্ট বিজ্ঞপ্তি পাবেন। আপনি সেটিংস অক্ষম করুন যদি এই সেটিংস overridden হয়',
- 'notification-from-bon' => 'থেকে বোন বিজ্ঞপ্তি পান',
- 'notification-from-bon-help' => 'আপনি কেবল সিস্টেম, স্টাফ এবং নিম্নলিখিত গোষ্ঠীর কাছ থেকে বোন বিজ্ঞপ্তি পাবেন। আপনি সেটিংস অক্ষম করুন যদি এই সেটিংস overridden হয়',
- 'notification-from-following' => 'থেকে অনুসরণ ইউজার বিজ্ঞপ্তি প্রাপ্তি',
- 'notification-from-following-help' => 'আপনি নিম্নলিখিত গ্রুপ থেকে শুধুমাত্র অনুসরণ ব্যবহারকারী বিজ্ঞপ্তি পাবেন। আপনি সেটিংস অক্ষম করুন যদি এই সেটিংস overridden হয়',
- 'notification-from-forum' => 'ফোরাম বিজ্ঞপ্তি থেকে প্রাপ্ত',
- 'notification-from-forum-help' => 'আপনি শুধুমাত্র সিস্টেম, কর্মী এবং নিম্নলিখিত গ্রুপ থেকে ফোরাম বিজ্ঞপ্তি পাবেন। আপনি সেটিংস অক্ষম করুন যদি এই সেটিংস overridden হয়',
- 'notification-from-subscription' => 'সাবস্ক্রিপশন বিজ্ঞপ্তি থেকে প্রাপ্ত',
- 'notification-from-subscription-help' => 'আপনি শুধুমাত্র সিস্টেম, কর্মী এবং নিম্নলিখিত গ্রুপ থেকে ফোরাম বিজ্ঞপ্তি পাবেন। আপনি সেটিংস অক্ষম করুন যদি এই সেটিংস overridden হয়',
- 'notification-from-torrent' => 'থেকে টরেন্ট বিজ্ঞপ্তি পান',
- 'notification-from-torrent-help' => 'আপনি কেবল সিস্টেম, স্টাফ এবং নিম্নলিখিত গোষ্ঠীর কাছ থেকে জোড় বিজ্ঞপ্তি পাবেন। আপনি সেটিংস অক্ষম করুন যদি এই সেটিংস overridden হয়',
- 'notification-from-mention' => 'থেকে @ বিজ্ঞপ্তি বিজ্ঞপ্তি পান',
- 'notification-from-mention-help' => 'আপনি শুধুমাত্র সিস্টেম, কর্মী এবং নিম্নলিখিত গোষ্ঠী থেকে @ বিবৃতি বিজ্ঞপ্তি পাবেন। আপনি সেটিংস অক্ষম করুন যদি এই সেটিংস overridden হয়',
- 'notification-from-request' => 'অনুরোধ অনুরোধ প্রাপ্তি থেকে',
- 'notification-from-request-help' => 'আপনি শুধুমাত্র সিস্টেম, কর্মী এবং নিম্নলিখিত গ্রুপ থেকে অনুরোধ বিজ্ঞপ্তি পাবেন। আপনি সেটিংস অক্ষম করুন যদি এই সেটিংস overridden হয়',
- 'notifications' => 'বিজ্ঞপ্তিগুলি',
- 'offline' => 'ব্যবহারকারী অফলাইন!',
- 'online' => 'ব্যবহারকারী অনলাইন!',
- 'options' => 'বিকল্প',
- 'other-help' => 'আপনার প্রোফাইলে অ্যাক্সেস করার অনুমতি দেওয়া গোষ্ঠীর সাথে অন্যান্য পরিসংখ্যান এবং তথ্য ভাগ করা নিয়ন্ত্রণ করুন। আপনি যদি কোনও গোষ্ঠীকে আপনার অন্যান্য পরিসংখ্যান এবং তথ্য অ্যাক্সেস করতে বা যদি আপনি ব্যক্তিগত যান তবে এই সেটিংস ওভাররাইড করা হয়',
- 'other-privacy' => 'অন্যান্য সেটিংস্',
- 'other-privacy-online' => 'ব্যবহারকারীদের অনলাইন ব্লক আপনাকে দেখতে অনুমতি দেয়',
- 'passkey' => 'PID,',
- 'passkey-warning' => 'পিআইডি আপনার পাসওয়ার্ড মত, আপনি এটি নিরাপদ রাখা আবশ্যক!',
- 'pending-achievements' => 'মুলতুবি সাফল্য',
- 'per-torrent' => 'টরেন্ট প্রতি',
- 'posts' => 'পোস্ট',
- 'posts-posted' => 'ফোরাম পোস্ট পোস্ট',
- 'privacy' => 'গোপনীয়তা',
- 'privacy-settings' => 'নিরাপত্তা নির্দিষ্টকরণ',
- 'private-info' => 'ব্যক্তিগত তথ্য',
- 'private-forum-profile' => 'মনোযোগ: এই সদস্য বিষয় এবং পোস্ট ইতিহাস ব্যক্তিগত সেট করা হয়েছে!',
- 'private-profile' => 'মনোযোগ: এই প্রোফাইল ব্যক্তিগত সেট করা হয়েছে!',
- 'profile' => 'প্রোফাইলের',
- 'profile-desc' => 'ব্যবহারকারী: ব্যবহারকারীর প্রোফাইল নিবন্ধিত: শিরোনাম',
- 'profile-privacy' => 'প্রোফাইল সেটিংস',
- 'profile-privacy-torrent-count' => 'ডাউনলোড, আপলোড, বীজ এবং leeches আপনার মোট সংখ্যা শেয়ার করুন',
- 'profile-privacy-torrent-ratio' => 'রেকর্ড অনুপাত সহ আপনার মোট আপলোড / ডাউনলোড তথ্য শেয়ার করুন',
- 'profile-privacy-torrent-seed' => 'আপনার মোট বীজতলা সময় এবং গড় শেয়ার করুন',
- 'profile-privacy-title' => 'আপনার ব্যক্তিগত শিরোনাম তথ্য শেয়ার করুন',
- 'profile-privacy-about' => 'আমার সম্পর্কে তথ্য আপনার ব্যক্তিগত শেয়ার করুন',
- 'profile-privacy-bon-extra' => 'আপনার বন পরিসংখ্যান শেয়ার করুন',
- 'profile-privacy-comment-extra' => 'আপনার মন্তব্য পরিসংখ্যান শেয়ার করুন',
- 'profile-privacy-forum-extra' => 'আপনার ফোরাম পরিসংখ্যান শেয়ার করুন',
- 'profile-privacy-request-extra' => 'আপনার অনুরোধ পরিসংখ্যান শেয়ার করুন',
- 'profile-privacy-torrent-extra' => 'আপনার টর্েন্ট পরিসংখ্যান শেয়ার করুন',
- 'profile-privacy-badge' => 'আপনার অর্জিত ব্যাজ শেয়ার করুন',
- 'profile-privacy-achievement' => 'আপনার সাম্প্রতিক অর্জন শেয়ার করুন',
- 'profile-privacy-follower' => 'আপনার সাম্প্রতিক অনুসরণকারীদের শেয়ার করুন',
- 'profile-privacy-warning' => 'আপনার এইচ আর আর সতর্কতা শেয়ার করুন',
- 'profile-privacy-help' => 'তথ্য এবং পরিসংখ্যান আপনার তথ্য প্রদর্শিত তথ্য নিয়ন্ত্রণ। আপনি যদি কোনও গোষ্ঠীকে আপনার প্রোফাইল অ্যাক্সেস করতে না দেন বা আপনি ব্যক্তিগত হন তবে এই সেটিংস ওভাররাইড করা হয়',
- 'public-info' => 'পাবলিক তথ্য',
- 'recent-achievements' => 'সাম্প্রতিক অর্জন',
- 'recent-followers' => 'সাম্প্রতিক অনুসরণকারীদের',
- 'registration-date' => 'নিবন্ধনের তারিখ',
- 'report' => 'প্রতিবেদন',
- 'request-help' => 'আপনার অনুরোধে অ্যাক্সেস করার অনুমতি দেওয়া গোষ্ঠীগুলির সাথে নির্দিষ্ট অনুরোধ সম্পর্কিত পরিসংখ্যান এবং তথ্য ভাগ করে নেওয়া নিয়ন্ত্রণ করুন। আপনি যদি কোন গোষ্ঠীকে আপনার অনুরোধকৃত সম্পর্কিত পরিসংখ্যান এবং তথ্য অ্যাক্সেস করতে বা আপনি প্রাইভেট গো অ্যাক্সেস করতে না দিলে এই সেটিংস ওভাররাইড করা হয়',
- 'request' => 'অনুরোধ',
- 'requested' => 'অনুরোধ',
- 'requests' => 'অনুরোধ',
- 'request-comments' => 'অনুরোধ করা মন্তব্য করেছেন',
- 'request-notification' => 'অনুরোধ বিজ্ঞপ্তি সেটিংস',
- 'request-notification-bounty' => 'একটি অনুরোধ তরোয়াল একটি নতুন অনুদান পায় যখন একটি বিজ্ঞপ্তি পান',
- 'request-notification-comment' => 'অনুরোধ করা টরেন্ট একটি নতুন মন্তব্য পায় যখন একটি বিজ্ঞপ্তি পান',
- 'request-notification-fill' => 'একটি অনুরোধ টর্নেট ভরাট যখন একটি বিজ্ঞপ্তি পান',
- 'request-notification-fill-approve' => 'একটি অনুরোধ টর্নেট পূরণ অনুমোদিত হলে একটি বিজ্ঞপ্তি পান',
- 'request-notification-fill-reject' => 'একটি অনুরোধ টর্নেট ফিক্স প্রত্যাখ্যাত পায় যখন একটি বিজ্ঞপ্তি পান',
- 'request-notification-claim' => 'অনুরোধ করা টরেন্ট দাবি করা হয় যখন একটি বিজ্ঞপ্তি পান',
- 'request-notification-unclaim' => 'অনুরোধকৃত টরেন্ট দাবী না করা হলে একটি বিজ্ঞপ্তি পান',
- 'request-notification-help' => 'অনুরোধ ক্রিয়াকলাপ সংক্রান্ত বিজ্ঞপ্তি পাঠানো হয় যা নিয়ন্ত্রণ। আপনি যদি কোনও গোষ্ঠীকে অনুরোধ ক্রিয়াকলাপ সম্পর্কিত বিজ্ঞপ্তি পাঠাতে বা যদি আপনি বিজ্ঞপ্তিগুলি অক্ষম করেন তবে এই সেটিংস ওভাররাইড করা হয়',
- 'request-privacy' => 'অনুরোধ সেটিংস',
- 'request-privacy-requested' => 'ব্যবহারকারীদের আপনার অনুরোধগুলির একটি তালিকা দেখতে অনুমতি দিন',
- 'reset-passkey' => 'পাস কী রিসেট করুন (পিআইডি)',
- 'reset-passkey-help' => 'পিআইডি রিসেট করার পরে আপনার সমস্ত সক্রিয় টরেন্ট পুনরায় পুনরায় ডাউনলোড / পুনরায় আপলোড করতে হবে',
- 'reset-rss' => 'রিসেট করুন আরএসএস কী (RID)',
- 'reset-rss-help' => 'RID রিসেট করার পরে আপনাকে আপনার সমস্ত সক্রিয় RSS ফিড পুনরায় লোড করতে হবে',
- 'resurrections' => 'পুনরুত্থান',
- 'search' => 'ব্যবহারকারী নাম দ্বারা দ্রুত অনুসন্ধান',
- 'security' => 'নিরাপত্তা',
- 'security-settings' => 'নিরাপত্তা বিন্যাস',
- 'seedboxes' => 'Seedboxes',
- 'seeds' => 'বীজ এবং গাছ-',
- 'send-invite' => 'আমন্ত্রণ পাঠান',
- 'sender' => 'প্রেরকের',
- 'settings' => 'সেটিংস',
- 'show-passkey' => 'পিআইডি দেখান',
- 'staff-noted' => 'স্টাফ উল্লেখযোগ্য অ্যাকাউন্ট',
- 'statistics' => 'পরিসংখ্যান',
- 'subscription-notification' => 'সাবস্ক্রিপশন বিজ্ঞপ্তি সেটিংস',
- 'subscription-notification-forum' => 'একটি সাবস্ক্রাইব ফোরাম একটি নতুন বিষয় পায় যখন একটি বিজ্ঞপ্তি পান',
- 'subscription-notification-topic' => 'একটি সাবস্ক্রাইব বিষয় একটি নতুন পোস্ট পায় যখন একটি বিজ্ঞপ্তি পান',
- 'subscription-notification-help' => 'আপনার সাবস্ক্রিপশন সংক্রান্ত বিজ্ঞপ্তি পাঠানো হয় কি নিয়ন্ত্রণ। আপনি যদি কোনও গোষ্ঠীকে আপনার সাবস্ক্রিপশন সম্পর্কিত বিজ্ঞপ্তি পাঠাতে বা যদি আপনি বিজ্ঞপ্তিগুলি অক্ষম করেন তবে এই সেটিংস ওভাররাইড করা হয়',
- 'thanks-given' => 'ধন্যবাদ দেওয়া',
- 'thanks-received' => 'ধন্যবাদ পেয়েছি',
- 'tips-given' => 'দেওয়া টিপস',
- 'tips-received' => 'টিপস প্রাপ্ত',
- 'title' => 'খেতাব',
- 'top-bankers' => 'শীর্ষ ব্যাংকার',
- 'top-downloaders-data' => 'শীর্ষ ডাউনলোডার (ডেটা)',
- 'top-leechers' => 'শীর্ষ Leechers',
- 'top-leechers-count' => 'শীর্ষ Leechers (গণনা)',
- 'top-seeders' => 'শীর্ষ seeders',
- 'top-seeders-count' => 'শীর্ষ seeders (গণনা)',
- 'top-seeding-size' => 'শীর্ষ Seeding (আকার)',
- 'top-seedtime' => 'শীর্ষ বীজতলা',
- 'top-uploaders-data' => 'শীর্ষ আপলোডার (ডেটা)',
- 'top-uploaders-count' => 'শীর্ষ আপলোডারগণ (গণনা)',
- 'topics' => 'টপিক',
- 'topics-started' => 'ফোরাম বিষয় শুরু',
- 'torrent-comments' => 'টরেন্ট মন্তব্য তৈরি',
- 'torrent-help' => 'নির্দিষ্ট জোয়ার সম্পর্কিত পরিসংখ্যান এবং আপনার প্রোফাইল অ্যাক্সেস করার অনুমতি দেওয়া গোষ্ঠীর সাথে তথ্য ভাগ করে নেওয়া নিয়ন্ত্রণ করুন। আপনি কোনও গোষ্ঠীকে আপনার জোয়ার সম্পর্কিত পরিসংখ্যান এবং তথ্য অ্যাক্সেস করতে বা যদি আপনি ব্যক্তিগত হন তবে এই সেটিংস ওভাররাইড করা হয়',
- 'torrent-notification' => 'টরেন্ট বিজ্ঞপ্তি সেটিংস',
- 'torrent-notification-comment' => 'একটি আপলোড টরেন্ট একটি নতুন মন্তব্য পায় যখন একটি বিজ্ঞপ্তি পান',
- 'torrent-notification-thank' => 'একটি আপলোড টরেন্ট একটি নতুন ধন্যবাদ পায় যখন একটি বিজ্ঞপ্তি পান',
- 'torrent-notification-tip' => 'একটি আপলোড টরেন্ট একটি নতুন টিপ পায় যখন একটি বিজ্ঞপ্তি পান',
- 'torrent-notification-help' => 'জোয়ার কার্যক্রম সম্পর্কিত বিজ্ঞপ্তি পাঠানো হয় কি নিয়ন্ত্রণ। আপনি যদি কোনও গোষ্ঠী জোয়ারের ক্রিয়াকলাপ সম্পর্কিত বিজ্ঞপ্তি পাঠাতে বা যদি আপনি বিজ্ঞপ্তিগুলি অক্ষম করেন তবে এই সেটিংস ওভাররাইড করা হয়',
- 'torrent-privacy' => 'টরেন্ট সেটিংস',
- 'torrent-privacy-download' => 'ব্যবহারকারীদের ডাউনলোড করা টরেন্টগুলির একটি তালিকা দেখতে অনুমতি দিন',
- 'torrent-privacy-upload' => 'আপনি আপলোড করেছেন যে টরেন্ট একটি তালিকা দেখতে ব্যবহারকারীদের অনুমতি দিন',
- 'torrent-privacy-peer' => 'ব্যবহারকারীদের টরেন্ট পিয়ার ইতিহাস টেবিল আপনি দেখতে অনুমতি দেয়',
- 'torrents' => 'তথ্যপ্রবাহের',
- 'torrents-history' => 'টরেন্টস ইতিহাস',
- 'total-download' => 'মোট ডাউনলোড',
- 'total-downloads' => 'মোট ডাউনলোড',
- 'total-leeching' => 'মোট leeching',
- 'total-seeding' => 'মোট Seeding',
- 'total-seedtime' => 'মোট Seedtime',
- 'total-upload' => 'মোট আপলোড',
- 'total-uploads' => 'মোট আপলোড',
- 'unban' => 'Unban ব্যবহারকারী',
- 'unfollow' => 'অনুসরণ',
- 'unlocked' => 'উদ্ঘাটিত',
- 'unlocked-achievements' => 'আনলক কৃতিত্ব',
- 'unsatisfieds' => 'Unsatisfieds',
- 'upload-bon' => 'আপলোড বন দোকান থেকে যোগ করা',
- 'upload-recorded' => 'রেকর্ড আপলোড',
- 'upload-true' => 'সত্য আপলোড',
- 'uploads' => 'আপলোড',
- 'uploads-table' => 'আপলোড টেবিল',
- 'user' => 'ব্যবহারকারী',
- 'user-id' => 'ব্যবহারকারীর প্রমানপত্র',
- 'username-seedbox' => 'ব্যবহারকারী নাম সাবডবক্স',
- 'visible-to-achievement' => 'অর্জন দৃশ্যমান',
- 'visible-to-achievement-help' => 'আপনার অর্জন শুধুমাত্র কর্মীদের এবং নিম্নলিখিত দলের দৃশ্যমান হবে। আপনি ব্যক্তিগত যান যদি এই সেটিংস overridden হয়',
- 'visible-to-follower' => 'অনুসরণকারীদের কাছে দৃশ্যমান',
- 'visible-to-follower-help' => 'আপনার অনুসারীরা শুধুমাত্র স্টাফ এবং নিম্নলিখিত গ্রুপের কাছে দৃশ্যমান হবে। আপনি ব্যক্তিগত যান যদি এই সেটিংস overridden হয়',
- 'visible-to-forum' => 'ফোরাম তথ্য দৃশ্যমান',
- 'visible-to-forum-help' => 'আপনার ফোরাম তথ্য শুধুমাত্র স্টাফ এবং নিম্নলিখিত গ্রুপের জন্য দৃশ্যমান হবে। আপনি ব্যক্তিগত যান যদি এই সেটিংস overridden হয়',
- 'visible-to-other' => 'অন্যান্য দৃশ্যমান',
- 'visible-to-other-help' => 'আপনার অ্যাকাউন্ট সম্পর্কিত অন্যান্য তথ্য শুধুমাত্র স্টাফ এবং নিম্নলিখিত গোষ্ঠীর কাছে দৃশ্যমান হবে। আপনি গোপন যান বা গোপন যান যদি এই সেটিংস overridden হয়',
- 'visible-to-profile' => 'প্রোফাইল দৃশ্যমান',
- 'visible-to-profile-help' => 'আপনার প্রোফাইল শুধুমাত্র স্টাফ এবং নিম্নলিখিত গ্রুপের জন্য দৃশ্যমান হবে। আপনি ব্যক্তিগত যান যদি এই সেটিংস overridden হয়',
- 'visible-to-request' => 'অনুরোধ দৃশ্যমান তথ্য',
- 'visible-to-request-help' => 'আপনার অনুরোধের তথ্য শুধুমাত্র স্টাফ এবং নিম্নলিখিত গ্রুপের কাছে দৃশ্যমান হবে। আপনি ব্যক্তিগত যান যদি এই সেটিংস overridden হয়',
- 'visible-to-torrent' => 'টরেন্ট তথ্য দৃশ্যমান',
- 'visible-to-torrent-help' => 'আপনার জোয়ার তথ্য শুধুমাত্র কর্মীদের এবং নিম্নলিখিত দলের দৃশ্যমান হবে। আপনি গোপন যান বা গোপন যান যদি এই সেটিংস overridden হয়',
- 'warned-on' => 'সতর্ক',
- 'warning' => 'সতর্কতা',
- 'warning-log' => 'সতর্কতা লগ',
- 'wishlist' => 'ইচ্ছেতালিকা',
+ 'mention-notification-forum-post' => 'আপনি যখন একটি ফোরাম পোস্টে @ বিব্রত হন তখন একটি বিজ্ঞপ্তি পান',
+ 'mention-notification-help' => 'কোন ব্যবহারকারী @ আপনাকে বিব্রত করার সময় কোন বিজ্ঞপ্তিগুলি পাঠানো হয় তা নিয়ন্ত্রণ করুন। কোনও ব্যবহারকারী @ আপনাকে বিব্রত করলে বা বিজ্ঞপ্তিগুলি অক্ষম করলে আপনি কোনও গোষ্ঠীকে বিজ্ঞপ্তি পাঠানোর অনুমতি দিলে এই সেটিংস ওভাররাইড করা হয়',
+ 'moderated-by' => 'দ্বারা সংশোধিত: মডেলে',
+ 'my-bonus-points' => 'আমার বোনাস পয়েন্ট',
+ 'my-bookmarks' => 'আমার বুকমার্ক',
+ 'my-fl-tokens' => 'আমার FL টোকেন',
+ 'my-general-settings' => 'আমার সাধারণ সেটিংস',
+ 'my-notification' => 'আমার বিজ্ঞপ্তি',
+ 'my-notification-settings' => 'আমার বিজ্ঞপ্তি সেটিংস',
+ 'my-privacy' => 'আমার গোপনীয়তা',
+ 'my-privacy-settings' => 'আমার গোপনীয়তা সেটিংস',
+ 'my-profile' => 'আমার প্রোফাইল',
+ 'my-requested' => 'আমার অনুরোধ',
+ 'my-security' => 'আমার নিরাপত্তা',
+ 'my-security-settings' => 'আমার নিরাপত্তা সেটিংস',
+ 'my-seedboxes' => 'আমার Seedboxes',
+ 'my-settings' => 'আমার সেটিংস',
+ 'my-wishlist' => 'আমার ইচ্ছাগুলি',
+ 'no-logs' => 'এই ব্যবহারকারীর জন্য ডাটাবেসের কোন আমন্ত্রণ লগ নেই!',
+ 'no-seedboxes' => 'কোন বীডবক্স 😔',
+ 'not-authorized' => 'আপনি এই পৃষ্ঠা দেখতে অনুমোদিত না। এই সদস্য একটি নিনজা মত লুকানো পছন্দ!',
+ 'note' => 'বিঃদ্রঃ',
+ 'notification' => 'প্রজ্ঞাপন',
+ 'notification-settings' => 'বিজ্ঞপ্তি সেটিংস',
+ 'notification-from-account' => 'থেকে অ্যাকাউন্ট বিজ্ঞপ্তি পান',
+ 'notification-from-account-help' => 'আপনি শুধুমাত্র সিস্টেম, কর্মী এবং নিম্নলিখিত গ্রুপ থেকে অ্যাকাউন্ট বিজ্ঞপ্তি পাবেন। আপনি সেটিংস অক্ষম করুন যদি এই সেটিংস overridden হয়',
+ 'notification-from-bon' => 'থেকে বোন বিজ্ঞপ্তি পান',
+ 'notification-from-bon-help' => 'আপনি কেবল সিস্টেম, স্টাফ এবং নিম্নলিখিত গোষ্ঠীর কাছ থেকে বোন বিজ্ঞপ্তি পাবেন। আপনি সেটিংস অক্ষম করুন যদি এই সেটিংস overridden হয়',
+ 'notification-from-following' => 'থেকে অনুসরণ ইউজার বিজ্ঞপ্তি প্রাপ্তি',
+ 'notification-from-following-help' => 'আপনি নিম্নলিখিত গ্রুপ থেকে শুধুমাত্র অনুসরণ ব্যবহারকারী বিজ্ঞপ্তি পাবেন। আপনি সেটিংস অক্ষম করুন যদি এই সেটিংস overridden হয়',
+ 'notification-from-forum' => 'ফোরাম বিজ্ঞপ্তি থেকে প্রাপ্ত',
+ 'notification-from-forum-help' => 'আপনি শুধুমাত্র সিস্টেম, কর্মী এবং নিম্নলিখিত গ্রুপ থেকে ফোরাম বিজ্ঞপ্তি পাবেন। আপনি সেটিংস অক্ষম করুন যদি এই সেটিংস overridden হয়',
+ 'notification-from-subscription' => 'সাবস্ক্রিপশন বিজ্ঞপ্তি থেকে প্রাপ্ত',
+ 'notification-from-subscription-help' => 'আপনি শুধুমাত্র সিস্টেম, কর্মী এবং নিম্নলিখিত গ্রুপ থেকে ফোরাম বিজ্ঞপ্তি পাবেন। আপনি সেটিংস অক্ষম করুন যদি এই সেটিংস overridden হয়',
+ 'notification-from-torrent' => 'থেকে টরেন্ট বিজ্ঞপ্তি পান',
+ 'notification-from-torrent-help' => 'আপনি কেবল সিস্টেম, স্টাফ এবং নিম্নলিখিত গোষ্ঠীর কাছ থেকে জোড় বিজ্ঞপ্তি পাবেন। আপনি সেটিংস অক্ষম করুন যদি এই সেটিংস overridden হয়',
+ 'notification-from-mention' => 'থেকে @ বিজ্ঞপ্তি বিজ্ঞপ্তি পান',
+ 'notification-from-mention-help' => 'আপনি শুধুমাত্র সিস্টেম, কর্মী এবং নিম্নলিখিত গোষ্ঠী থেকে @ বিবৃতি বিজ্ঞপ্তি পাবেন। আপনি সেটিংস অক্ষম করুন যদি এই সেটিংস overridden হয়',
+ 'notification-from-request' => 'অনুরোধ অনুরোধ প্রাপ্তি থেকে',
+ 'notification-from-request-help' => 'আপনি শুধুমাত্র সিস্টেম, কর্মী এবং নিম্নলিখিত গ্রুপ থেকে অনুরোধ বিজ্ঞপ্তি পাবেন। আপনি সেটিংস অক্ষম করুন যদি এই সেটিংস overridden হয়',
+ 'notifications' => 'বিজ্ঞপ্তিগুলি',
+ 'offline' => 'ব্যবহারকারী অফলাইন!',
+ 'online' => 'ব্যবহারকারী অনলাইন!',
+ 'options' => 'বিকল্প',
+ 'other-help' => 'আপনার প্রোফাইলে অ্যাক্সেস করার অনুমতি দেওয়া গোষ্ঠীর সাথে অন্যান্য পরিসংখ্যান এবং তথ্য ভাগ করা নিয়ন্ত্রণ করুন। আপনি যদি কোনও গোষ্ঠীকে আপনার অন্যান্য পরিসংখ্যান এবং তথ্য অ্যাক্সেস করতে বা যদি আপনি ব্যক্তিগত যান তবে এই সেটিংস ওভাররাইড করা হয়',
+ 'other-privacy' => 'অন্যান্য সেটিংস্',
+ 'other-privacy-online' => 'ব্যবহারকারীদের অনলাইন ব্লক আপনাকে দেখতে অনুমতি দেয়',
+ 'passkey' => 'PID,',
+ 'passkey-warning' => 'পিআইডি আপনার পাসওয়ার্ড মত, আপনি এটি নিরাপদ রাখা আবশ্যক!',
+ 'pending-achievements' => 'মুলতুবি সাফল্য',
+ 'per-torrent' => 'টরেন্ট প্রতি',
+ 'posts' => 'পোস্ট',
+ 'posts-posted' => 'ফোরাম পোস্ট পোস্ট',
+ 'privacy' => 'গোপনীয়তা',
+ 'privacy-settings' => 'নিরাপত্তা নির্দিষ্টকরণ',
+ 'private-info' => 'ব্যক্তিগত তথ্য',
+ 'private-forum-profile' => 'মনোযোগ: এই সদস্য বিষয় এবং পোস্ট ইতিহাস ব্যক্তিগত সেট করা হয়েছে!',
+ 'private-profile' => 'মনোযোগ: এই প্রোফাইল ব্যক্তিগত সেট করা হয়েছে!',
+ 'profile' => 'প্রোফাইলের',
+ 'profile-desc' => 'ব্যবহারকারী: ব্যবহারকারীর প্রোফাইল নিবন্ধিত: শিরোনাম',
+ 'profile-privacy' => 'প্রোফাইল সেটিংস',
+ 'profile-privacy-torrent-count' => 'ডাউনলোড, আপলোড, বীজ এবং leeches আপনার মোট সংখ্যা শেয়ার করুন',
+ 'profile-privacy-torrent-ratio' => 'রেকর্ড অনুপাত সহ আপনার মোট আপলোড / ডাউনলোড তথ্য শেয়ার করুন',
+ 'profile-privacy-torrent-seed' => 'আপনার মোট বীজতলা সময় এবং গড় শেয়ার করুন',
+ 'profile-privacy-title' => 'আপনার ব্যক্তিগত শিরোনাম তথ্য শেয়ার করুন',
+ 'profile-privacy-about' => 'আমার সম্পর্কে তথ্য আপনার ব্যক্তিগত শেয়ার করুন',
+ 'profile-privacy-bon-extra' => 'আপনার বন পরিসংখ্যান শেয়ার করুন',
+ 'profile-privacy-comment-extra' => 'আপনার মন্তব্য পরিসংখ্যান শেয়ার করুন',
+ 'profile-privacy-forum-extra' => 'আপনার ফোরাম পরিসংখ্যান শেয়ার করুন',
+ 'profile-privacy-request-extra' => 'আপনার অনুরোধ পরিসংখ্যান শেয়ার করুন',
+ 'profile-privacy-torrent-extra' => 'আপনার টর্েন্ট পরিসংখ্যান শেয়ার করুন',
+ 'profile-privacy-badge' => 'আপনার অর্জিত ব্যাজ শেয়ার করুন',
+ 'profile-privacy-achievement' => 'আপনার সাম্প্রতিক অর্জন শেয়ার করুন',
+ 'profile-privacy-follower' => 'আপনার সাম্প্রতিক অনুসরণকারীদের শেয়ার করুন',
+ 'profile-privacy-warning' => 'আপনার এইচ আর আর সতর্কতা শেয়ার করুন',
+ 'profile-privacy-help' => 'তথ্য এবং পরিসংখ্যান আপনার তথ্য প্রদর্শিত তথ্য নিয়ন্ত্রণ। আপনি যদি কোনও গোষ্ঠীকে আপনার প্রোফাইল অ্যাক্সেস করতে না দেন বা আপনি ব্যক্তিগত হন তবে এই সেটিংস ওভাররাইড করা হয়',
+ 'public-info' => 'পাবলিক তথ্য',
+ 'recent-achievements' => 'সাম্প্রতিক অর্জন',
+ 'recent-followers' => 'সাম্প্রতিক অনুসরণকারীদের',
+ 'registration-date' => 'নিবন্ধনের তারিখ',
+ 'report' => 'প্রতিবেদন',
+ 'request-help' => 'আপনার অনুরোধে অ্যাক্সেস করার অনুমতি দেওয়া গোষ্ঠীগুলির সাথে নির্দিষ্ট অনুরোধ সম্পর্কিত পরিসংখ্যান এবং তথ্য ভাগ করে নেওয়া নিয়ন্ত্রণ করুন। আপনি যদি কোন গোষ্ঠীকে আপনার অনুরোধকৃত সম্পর্কিত পরিসংখ্যান এবং তথ্য অ্যাক্সেস করতে বা আপনি প্রাইভেট গো অ্যাক্সেস করতে না দিলে এই সেটিংস ওভাররাইড করা হয়',
+ 'request' => 'অনুরোধ',
+ 'requested' => 'অনুরোধ',
+ 'requests' => 'অনুরোধ',
+ 'request-comments' => 'অনুরোধ করা মন্তব্য করেছেন',
+ 'request-notification' => 'অনুরোধ বিজ্ঞপ্তি সেটিংস',
+ 'request-notification-bounty' => 'একটি অনুরোধ তরোয়াল একটি নতুন অনুদান পায় যখন একটি বিজ্ঞপ্তি পান',
+ 'request-notification-comment' => 'অনুরোধ করা টরেন্ট একটি নতুন মন্তব্য পায় যখন একটি বিজ্ঞপ্তি পান',
+ 'request-notification-fill' => 'একটি অনুরোধ টর্নেট ভরাট যখন একটি বিজ্ঞপ্তি পান',
+ 'request-notification-fill-approve' => 'একটি অনুরোধ টর্নেট পূরণ অনুমোদিত হলে একটি বিজ্ঞপ্তি পান',
+ 'request-notification-fill-reject' => 'একটি অনুরোধ টর্নেট ফিক্স প্রত্যাখ্যাত পায় যখন একটি বিজ্ঞপ্তি পান',
+ 'request-notification-claim' => 'অনুরোধ করা টরেন্ট দাবি করা হয় যখন একটি বিজ্ঞপ্তি পান',
+ 'request-notification-unclaim' => 'অনুরোধকৃত টরেন্ট দাবী না করা হলে একটি বিজ্ঞপ্তি পান',
+ 'request-notification-help' => 'অনুরোধ ক্রিয়াকলাপ সংক্রান্ত বিজ্ঞপ্তি পাঠানো হয় যা নিয়ন্ত্রণ। আপনি যদি কোনও গোষ্ঠীকে অনুরোধ ক্রিয়াকলাপ সম্পর্কিত বিজ্ঞপ্তি পাঠাতে বা যদি আপনি বিজ্ঞপ্তিগুলি অক্ষম করেন তবে এই সেটিংস ওভাররাইড করা হয়',
+ 'request-privacy' => 'অনুরোধ সেটিংস',
+ 'request-privacy-requested' => 'ব্যবহারকারীদের আপনার অনুরোধগুলির একটি তালিকা দেখতে অনুমতি দিন',
+ 'reset-passkey' => 'পাস কী রিসেট করুন (পিআইডি)',
+ 'reset-passkey-help' => 'পিআইডি রিসেট করার পরে আপনার সমস্ত সক্রিয় টরেন্ট পুনরায় পুনরায় ডাউনলোড / পুনরায় আপলোড করতে হবে',
+ 'reset-rss' => 'রিসেট করুন আরএসএস কী (RID)',
+ 'reset-rss-help' => 'RID রিসেট করার পরে আপনাকে আপনার সমস্ত সক্রিয় RSS ফিড পুনরায় লোড করতে হবে',
+ 'resurrections' => 'পুনরুত্থান',
+ 'search' => 'ব্যবহারকারী নাম দ্বারা দ্রুত অনুসন্ধান',
+ 'security' => 'নিরাপত্তা',
+ 'security-settings' => 'নিরাপত্তা বিন্যাস',
+ 'seedboxes' => 'Seedboxes',
+ 'seeds' => 'বীজ এবং গাছ-',
+ 'send-invite' => 'আমন্ত্রণ পাঠান',
+ 'sender' => 'প্রেরকের',
+ 'settings' => 'সেটিংস',
+ 'show-passkey' => 'পিআইডি দেখান',
+ 'staff-noted' => 'স্টাফ উল্লেখযোগ্য অ্যাকাউন্ট',
+ 'statistics' => 'পরিসংখ্যান',
+ 'subscription-notification' => 'সাবস্ক্রিপশন বিজ্ঞপ্তি সেটিংস',
+ 'subscription-notification-forum' => 'একটি সাবস্ক্রাইব ফোরাম একটি নতুন বিষয় পায় যখন একটি বিজ্ঞপ্তি পান',
+ 'subscription-notification-topic' => 'একটি সাবস্ক্রাইব বিষয় একটি নতুন পোস্ট পায় যখন একটি বিজ্ঞপ্তি পান',
+ 'subscription-notification-help' => 'আপনার সাবস্ক্রিপশন সংক্রান্ত বিজ্ঞপ্তি পাঠানো হয় কি নিয়ন্ত্রণ। আপনি যদি কোনও গোষ্ঠীকে আপনার সাবস্ক্রিপশন সম্পর্কিত বিজ্ঞপ্তি পাঠাতে বা যদি আপনি বিজ্ঞপ্তিগুলি অক্ষম করেন তবে এই সেটিংস ওভাররাইড করা হয়',
+ 'thanks-given' => 'ধন্যবাদ দেওয়া',
+ 'thanks-received' => 'ধন্যবাদ পেয়েছি',
+ 'tips-given' => 'দেওয়া টিপস',
+ 'tips-received' => 'টিপস প্রাপ্ত',
+ 'title' => 'খেতাব',
+ 'top-bankers' => 'শীর্ষ ব্যাংকার',
+ 'top-downloaders-data' => 'শীর্ষ ডাউনলোডার (ডেটা)',
+ 'top-leechers' => 'শীর্ষ Leechers',
+ 'top-leechers-count' => 'শীর্ষ Leechers (গণনা)',
+ 'top-seeders' => 'শীর্ষ seeders',
+ 'top-seeders-count' => 'শীর্ষ seeders (গণনা)',
+ 'top-seeding-size' => 'শীর্ষ Seeding (আকার)',
+ 'top-seedtime' => 'শীর্ষ বীজতলা',
+ 'top-uploaders-data' => 'শীর্ষ আপলোডার (ডেটা)',
+ 'top-uploaders-count' => 'শীর্ষ আপলোডারগণ (গণনা)',
+ 'topics' => 'টপিক',
+ 'topics-started' => 'ফোরাম বিষয় শুরু',
+ 'torrent-comments' => 'টরেন্ট মন্তব্য তৈরি',
+ 'torrent-help' => 'নির্দিষ্ট জোয়ার সম্পর্কিত পরিসংখ্যান এবং আপনার প্রোফাইল অ্যাক্সেস করার অনুমতি দেওয়া গোষ্ঠীর সাথে তথ্য ভাগ করে নেওয়া নিয়ন্ত্রণ করুন। আপনি কোনও গোষ্ঠীকে আপনার জোয়ার সম্পর্কিত পরিসংখ্যান এবং তথ্য অ্যাক্সেস করতে বা যদি আপনি ব্যক্তিগত হন তবে এই সেটিংস ওভাররাইড করা হয়',
+ 'torrent-notification' => 'টরেন্ট বিজ্ঞপ্তি সেটিংস',
+ 'torrent-notification-comment' => 'একটি আপলোড টরেন্ট একটি নতুন মন্তব্য পায় যখন একটি বিজ্ঞপ্তি পান',
+ 'torrent-notification-thank' => 'একটি আপলোড টরেন্ট একটি নতুন ধন্যবাদ পায় যখন একটি বিজ্ঞপ্তি পান',
+ 'torrent-notification-tip' => 'একটি আপলোড টরেন্ট একটি নতুন টিপ পায় যখন একটি বিজ্ঞপ্তি পান',
+ 'torrent-notification-help' => 'জোয়ার কার্যক্রম সম্পর্কিত বিজ্ঞপ্তি পাঠানো হয় কি নিয়ন্ত্রণ। আপনি যদি কোনও গোষ্ঠী জোয়ারের ক্রিয়াকলাপ সম্পর্কিত বিজ্ঞপ্তি পাঠাতে বা যদি আপনি বিজ্ঞপ্তিগুলি অক্ষম করেন তবে এই সেটিংস ওভাররাইড করা হয়',
+ 'torrent-privacy' => 'টরেন্ট সেটিংস',
+ 'torrent-privacy-download' => 'ব্যবহারকারীদের ডাউনলোড করা টরেন্টগুলির একটি তালিকা দেখতে অনুমতি দিন',
+ 'torrent-privacy-upload' => 'আপনি আপলোড করেছেন যে টরেন্ট একটি তালিকা দেখতে ব্যবহারকারীদের অনুমতি দিন',
+ 'torrent-privacy-peer' => 'ব্যবহারকারীদের টরেন্ট পিয়ার ইতিহাস টেবিল আপনি দেখতে অনুমতি দেয়',
+ 'torrents' => 'তথ্যপ্রবাহের',
+ 'torrents-history' => 'টরেন্টস ইতিহাস',
+ 'total-download' => 'মোট ডাউনলোড',
+ 'total-downloads' => 'মোট ডাউনলোড',
+ 'total-leeching' => 'মোট leeching',
+ 'total-seeding' => 'মোট Seeding',
+ 'total-seedtime' => 'মোট Seedtime',
+ 'total-upload' => 'মোট আপলোড',
+ 'total-uploads' => 'মোট আপলোড',
+ 'unban' => 'Unban ব্যবহারকারী',
+ 'unfollow' => 'অনুসরণ',
+ 'unlocked' => 'উদ্ঘাটিত',
+ 'unlocked-achievements' => 'আনলক কৃতিত্ব',
+ 'unsatisfieds' => 'Unsatisfieds',
+ 'upload-bon' => 'আপলোড বন দোকান থেকে যোগ করা',
+ 'upload-recorded' => 'রেকর্ড আপলোড',
+ 'upload-true' => 'সত্য আপলোড',
+ 'uploads' => 'আপলোড',
+ 'uploads-table' => 'আপলোড টেবিল',
+ 'user' => 'ব্যবহারকারী',
+ 'user-id' => 'ব্যবহারকারীর প্রমানপত্র',
+ 'username-seedbox' => 'ব্যবহারকারী নাম সাবডবক্স',
+ 'visible-to-achievement' => 'অর্জন দৃশ্যমান',
+ 'visible-to-achievement-help' => 'আপনার অর্জন শুধুমাত্র কর্মীদের এবং নিম্নলিখিত দলের দৃশ্যমান হবে। আপনি ব্যক্তিগত যান যদি এই সেটিংস overridden হয়',
+ 'visible-to-follower' => 'অনুসরণকারীদের কাছে দৃশ্যমান',
+ 'visible-to-follower-help' => 'আপনার অনুসারীরা শুধুমাত্র স্টাফ এবং নিম্নলিখিত গ্রুপের কাছে দৃশ্যমান হবে। আপনি ব্যক্তিগত যান যদি এই সেটিংস overridden হয়',
+ 'visible-to-forum' => 'ফোরাম তথ্য দৃশ্যমান',
+ 'visible-to-forum-help' => 'আপনার ফোরাম তথ্য শুধুমাত্র স্টাফ এবং নিম্নলিখিত গ্রুপের জন্য দৃশ্যমান হবে। আপনি ব্যক্তিগত যান যদি এই সেটিংস overridden হয়',
+ 'visible-to-other' => 'অন্যান্য দৃশ্যমান',
+ 'visible-to-other-help' => 'আপনার অ্যাকাউন্ট সম্পর্কিত অন্যান্য তথ্য শুধুমাত্র স্টাফ এবং নিম্নলিখিত গোষ্ঠীর কাছে দৃশ্যমান হবে। আপনি গোপন যান বা গোপন যান যদি এই সেটিংস overridden হয়',
+ 'visible-to-profile' => 'প্রোফাইল দৃশ্যমান',
+ 'visible-to-profile-help' => 'আপনার প্রোফাইল শুধুমাত্র স্টাফ এবং নিম্নলিখিত গ্রুপের জন্য দৃশ্যমান হবে। আপনি ব্যক্তিগত যান যদি এই সেটিংস overridden হয়',
+ 'visible-to-request' => 'অনুরোধ দৃশ্যমান তথ্য',
+ 'visible-to-request-help' => 'আপনার অনুরোধের তথ্য শুধুমাত্র স্টাফ এবং নিম্নলিখিত গ্রুপের কাছে দৃশ্যমান হবে। আপনি ব্যক্তিগত যান যদি এই সেটিংস overridden হয়',
+ 'visible-to-torrent' => 'টরেন্ট তথ্য দৃশ্যমান',
+ 'visible-to-torrent-help' => 'আপনার জোয়ার তথ্য শুধুমাত্র কর্মীদের এবং নিম্নলিখিত দলের দৃশ্যমান হবে। আপনি গোপন যান বা গোপন যান যদি এই সেটিংস overridden হয়',
+ 'warned-on' => 'সতর্ক',
+ 'warning' => 'সতর্কতা',
+ 'warning-log' => 'সতর্কতা লগ',
+ 'wishlist' => 'ইচ্ছেতালিকা',
];
diff --git a/lang/bn/validation.php b/lang/bn/validation.php
index 18e55011e..831fb76eb 100644
--- a/lang/bn/validation.php
+++ b/lang/bn/validation.php
@@ -23,108 +23,108 @@ return [
|
*/
- 'accepted' => ':attribute গ্রহণ করা আবশ্যক।',
- 'active_url' => 'এই :attribute একটি বৈধ URL নয়।',
- 'after' => ':date অবশ্যই :attribute এর পরের একটি তারিখ হতে হবে।',
- 'after_or_equal' => ':attribute টি অবশ্যই :date এর সাথে মিল অথবা এর পরের একটি তারিখ হতে হবে।',
- 'alpha' => ':attribute শুধুমাত্র অক্ষর থাকতে পারে।',
- 'alpha_dash' => ':attribute শুধুমাত্র অক্ষর, সংখ্যা, এবং ড্যাশ থাকতে পারে।',
- 'alpha_num' => ':attribute শুধুমাত্র বর্ণ ও সংখ্যা থাকতে পারে।',
- 'array' => ':attribute একটি অ্যারে হতে হবে।',
- 'before' => ':date অবশ্যই :attribute এর আগের একটি তারিখ হতে হবে।',
- 'before_or_equal' => ':attribute টি অবশ্যই :date এর সাথে মিল অথবা এর আগের একটি তারিখ হতে হবে।',
- 'between' => [
+ 'accepted' => ':attribute গ্রহণ করা আবশ্যক।',
+ 'active_url' => 'এই :attribute একটি বৈধ URL নয়।',
+ 'after' => ':date অবশ্যই :attribute এর পরের একটি তারিখ হতে হবে।',
+ 'after_or_equal' => ':attribute টি অবশ্যই :date এর সাথে মিল অথবা এর পরের একটি তারিখ হতে হবে।',
+ 'alpha' => ':attribute শুধুমাত্র অক্ষর থাকতে পারে।',
+ 'alpha_dash' => ':attribute শুধুমাত্র অক্ষর, সংখ্যা, এবং ড্যাশ থাকতে পারে।',
+ 'alpha_num' => ':attribute শুধুমাত্র বর্ণ ও সংখ্যা থাকতে পারে।',
+ 'array' => ':attribute একটি অ্যারে হতে হবে।',
+ 'before' => ':date অবশ্যই :attribute এর আগের একটি তারিখ হতে হবে।',
+ 'before_or_equal' => ':attribute টি অবশ্যই :date এর সাথে মিল অথবা এর আগের একটি তারিখ হতে হবে।',
+ 'between' => [
'numeric' => ':min এবং :max :attribute মধ্যে হতে হবে।',
- 'file' => ':min এবং :max কিলোবাইট :attribute মধ্যে হতে হবে।',
- 'string' => ':min এবং :max অক্ষর :attribute মধ্যে হতে হবে।',
- 'array' => ':min এবং :max আইটেম :attribute মধ্যে হতে হবে।',
+ 'file' => ':min এবং :max কিলোবাইট :attribute মধ্যে হতে হবে।',
+ 'string' => ':min এবং :max অক্ষর :attribute মধ্যে হতে হবে।',
+ 'array' => ':min এবং :max আইটেম :attribute মধ্যে হতে হবে।',
],
- 'boolean' => ':attribute স্থানে সত্য বা মিথ্যা হতে হবে।',
- 'confirmed' => ':attribute নিশ্চিতকরণ এর সাথে মিলছে না।',
- 'date' => ':attribute একটি বৈধ তারিখ নয়।',
- 'date_equals' => 'The :attribute must be a date equal to :date.',
- 'date_format' => ':attribute, :format এর সাথে বিন্যাস মিলছে না।',
- 'different' => ':attribute এবং :other আলাদা হতে হবে।',
- 'digits' => ':attribute :digits অবশ্যই একটি সংখ্যার ডিজিট হতে হবে।',
- 'digits_between' => ':attribute অবশ্যই :min এবং :max ডিজিট এর মধ্যে হতে হবে।',
- 'dimensions' => ':attribute অবৈধ ইমেজ মাত্রা রয়েছে।',
- 'distinct' => ':attribute এর স্থানে একটি নকল মান আছে।',
- 'email' => ':attribute একটি বৈধ ইমেইল ঠিকানা হতে হবে।',
- 'exists' => 'নির্বাচিত :attribute টি অবৈধ।',
- 'file' => ':attribute একটি ফাইল হতে হবে।',
- 'filled' => ':attribute স্থানটি পূরণ করতে হবে।',
- 'gt' => [
+ 'boolean' => ':attribute স্থানে সত্য বা মিথ্যা হতে হবে।',
+ 'confirmed' => ':attribute নিশ্চিতকরণ এর সাথে মিলছে না।',
+ 'date' => ':attribute একটি বৈধ তারিখ নয়।',
+ 'date_equals' => 'The :attribute must be a date equal to :date.',
+ 'date_format' => ':attribute, :format এর সাথে বিন্যাস মিলছে না।',
+ 'different' => ':attribute এবং :other আলাদা হতে হবে।',
+ 'digits' => ':attribute :digits অবশ্যই একটি সংখ্যার ডিজিট হতে হবে।',
+ 'digits_between' => ':attribute অবশ্যই :min এবং :max ডিজিট এর মধ্যে হতে হবে।',
+ 'dimensions' => ':attribute অবৈধ ইমেজ মাত্রা রয়েছে।',
+ 'distinct' => ':attribute এর স্থানে একটি নকল মান আছে।',
+ 'email' => ':attribute একটি বৈধ ইমেইল ঠিকানা হতে হবে।',
+ 'exists' => 'নির্বাচিত :attribute টি অবৈধ।',
+ 'file' => ':attribute একটি ফাইল হতে হবে।',
+ 'filled' => ':attribute স্থানটি পূরণ করতে হবে।',
+ 'gt' => [
'numeric' => 'The :attribute must be greater than :value.',
- 'file' => 'The :attribute must be greater than :value kilobytes.',
- 'string' => 'The :attribute must be greater than :value characters.',
- 'array' => 'The :attribute must have more than :value items.',
+ 'file' => 'The :attribute must be greater than :value kilobytes.',
+ 'string' => 'The :attribute must be greater than :value characters.',
+ 'array' => 'The :attribute must have more than :value items.',
],
- 'gte' => [
+ 'gte' => [
'numeric' => 'The :attribute must be greater than or equal :value.',
- 'file' => 'The :attribute must be greater than or equal :value kilobytes.',
- 'string' => 'The :attribute must be greater than or equal :value characters.',
- 'array' => 'The :attribute must have :value items or more.',
+ 'file' => 'The :attribute must be greater than or equal :value kilobytes.',
+ 'string' => 'The :attribute must be greater than or equal :value characters.',
+ 'array' => 'The :attribute must have :value items or more.',
],
- 'image' => ':attribute একটি ইমেজ হতে হবে।',
- 'in' => 'নির্বাচিত :attribute টি অবৈধ।',
- 'in_array' => ':attribute উপাদানটি :other এ খুঁজে পাওয়া যায়নি।.',
- 'integer' => ':attribute একটি পূর্ণসংখ্যা হতে হবে।',
- 'ip' => ':attribute একটি বৈধ IP address হতে হবে।',
- 'ipv4' => ':attribute টি একটি বৈধ IPv4 address হতে হবে।',
- 'ipv6' => ':attribute টি একটি বৈধ IPv6 address হতে হবে।',
- 'json' => ':attribute একটি বৈধ JSON স্ট্রিং হতে হবে।',
- 'lt' => [
+ 'image' => ':attribute একটি ইমেজ হতে হবে।',
+ 'in' => 'নির্বাচিত :attribute টি অবৈধ।',
+ 'in_array' => ':attribute উপাদানটি :other এ খুঁজে পাওয়া যায়নি।.',
+ 'integer' => ':attribute একটি পূর্ণসংখ্যা হতে হবে।',
+ 'ip' => ':attribute একটি বৈধ IP address হতে হবে।',
+ 'ipv4' => ':attribute টি একটি বৈধ IPv4 address হতে হবে।',
+ 'ipv6' => ':attribute টি একটি বৈধ IPv6 address হতে হবে।',
+ 'json' => ':attribute একটি বৈধ JSON স্ট্রিং হতে হবে।',
+ 'lt' => [
'numeric' => 'The :attribute must be less than :value.',
- 'file' => 'The :attribute must be less than :value kilobytes.',
- 'string' => 'The :attribute must be less than :value characters.',
- 'array' => 'The :attribute must have less than :value items.',
+ 'file' => 'The :attribute must be less than :value kilobytes.',
+ 'string' => 'The :attribute must be less than :value characters.',
+ 'array' => 'The :attribute must have less than :value items.',
],
- 'lte' => [
+ 'lte' => [
'numeric' => 'The :attribute must be less than or equal :value.',
- 'file' => 'The :attribute must be less than or equal :value kilobytes.',
- 'string' => 'The :attribute must be less than or equal :value characters.',
- 'array' => 'The :attribute must not have more than :value items.',
+ 'file' => 'The :attribute must be less than or equal :value kilobytes.',
+ 'string' => 'The :attribute must be less than or equal :value characters.',
+ 'array' => 'The :attribute must not have more than :value items.',
],
- 'max' => [
+ 'max' => [
'numeric' => ' :attribute এর মান :max এর চেয়ে বড় হতে পারেনা।',
- 'file' => ':attribute এর মান :max কিলোবাইট এর চেয়ে বড় হতে পারেনা।',
- 'string' => ':attribute এর মান :max অক্ষর এর চেয়ে বড় হতে পারেনা।',
- 'array' => ':attribute এর মান :max টি উপাদানের চেয়ে বড় হতে পারেনা।',
+ 'file' => ':attribute এর মান :max কিলোবাইট এর চেয়ে বড় হতে পারেনা।',
+ 'string' => ':attribute এর মান :max অক্ষর এর চেয়ে বড় হতে পারেনা।',
+ 'array' => ':attribute এর মান :max টি উপাদানের চেয়ে বড় হতে পারেনা।',
],
- 'mimes' => ':attribute এর একটি ফাইল হতে হবে: :values।',
- 'mimetypes' => ':attribute এর একটি ফাইল হতে হবে: :values।',
- 'min' => [
+ 'mimes' => ':attribute এর একটি ফাইল হতে হবে: :values।',
+ 'mimetypes' => ':attribute এর একটি ফাইল হতে হবে: :values।',
+ 'min' => [
'numeric' => ':attribute অবশ্যই :min এর চেয়ে ছোট হতে হবে।',
- 'file' => ':attribute অবশ্যই :min কিলোবাইট এর চেয়ে ছোট হতে হবে।',
- 'string' => ':attribute অবশ্যই :min অক্ষর এর চেয়ে ছোট হতে হবে।',
- 'array' => ':attribute অবশ্যই :min উপাদানের চেয়ে ছোট হতে হবে।',
+ 'file' => ':attribute অবশ্যই :min কিলোবাইট এর চেয়ে ছোট হতে হবে।',
+ 'string' => ':attribute অবশ্যই :min অক্ষর এর চেয়ে ছোট হতে হবে।',
+ 'array' => ':attribute অবশ্যই :min উপাদানের চেয়ে ছোট হতে হবে।',
],
- 'not_in' => 'নির্বাচিত :attribute অবৈধ।',
- 'not_regex' => 'The :attribute format is invalid.',
- 'numeric' => ':attribute একটি সংখ্যা হতে হবে।',
- 'present' => ':attribute ক্ষেত্র উপস্থিত থাকা আবশ্যক।',
- 'regex' => ':attribute বিন্যাস অবৈধ।',
- 'required' => ':attribute স্থানটি পূরণ করা বাধ্যতামূলক।',
- 'required_if' => ':attribute স্থানটি পূরণ করা বাধ্যতামূলক যেখানে :other হল :value।',
- 'required_unless' => ':attribute স্থানটি পূরণ করা বাধ্যতামূলক যদি না :other, :values তে উপস্থিত থাকে।',
- 'required_with' => ':attribute স্থানটি পূরণ করা বাধ্যতামূলক যখন :values উপস্থিত।',
- 'required_with_all' => ':attribute স্থানটি পূরণ করা বাধ্যতামূলক যখন :values উপস্থিত।',
- 'required_without' => ':attribute স্থানটি পূরণ করা বাধ্যতামূলক যখন :values অনুপস্থিত।',
+ 'not_in' => 'নির্বাচিত :attribute অবৈধ।',
+ 'not_regex' => 'The :attribute format is invalid.',
+ 'numeric' => ':attribute একটি সংখ্যা হতে হবে।',
+ 'present' => ':attribute ক্ষেত্র উপস্থিত থাকা আবশ্যক।',
+ 'regex' => ':attribute বিন্যাস অবৈধ।',
+ 'required' => ':attribute স্থানটি পূরণ করা বাধ্যতামূলক।',
+ 'required_if' => ':attribute স্থানটি পূরণ করা বাধ্যতামূলক যেখানে :other হল :value।',
+ 'required_unless' => ':attribute স্থানটি পূরণ করা বাধ্যতামূলক যদি না :other, :values তে উপস্থিত থাকে।',
+ 'required_with' => ':attribute স্থানটি পূরণ করা বাধ্যতামূলক যখন :values উপস্থিত।',
+ 'required_with_all' => ':attribute স্থানটি পূরণ করা বাধ্যতামূলক যখন :values উপস্থিত।',
+ 'required_without' => ':attribute স্থানটি পূরণ করা বাধ্যতামূলক যখন :values অনুপস্থিত।',
'required_without_all' => ':attribute স্থানটি পূরণ করা বাধ্যতামূলক যখন সকল :values অনুপস্থিত।',
- 'same' => ':attribute এবং :other অবশ্যই মিলতে হবে।',
- 'size' => [
+ 'same' => ':attribute এবং :other অবশ্যই মিলতে হবে।',
+ 'size' => [
'numeric' => ':attribute অবশ্যই :size হতে হবে।',
- 'file' => ':attribute অবশ্যই :size কিলোবাইট হতে হবে।',
- 'string' => ':attribute অবশ্যই :size অক্ষর হতে হবে।',
- 'array' => ':attribute অবশ্যই :size আইটেম হতে হবে।',
+ 'file' => ':attribute অবশ্যই :size কিলোবাইট হতে হবে।',
+ 'string' => ':attribute অবশ্যই :size অক্ষর হতে হবে।',
+ 'array' => ':attribute অবশ্যই :size আইটেম হতে হবে।',
],
- 'starts_with' => 'The :attribute must start with one of the following: :values',
- 'string' => ':attribute একটি স্ট্রিং হতে হবে।',
- 'timezone' => ':attribute একটি বৈধ সময় অঞ্চল হতে হবে।',
- 'unique' => ':attribute ইতিমধ্যেই নেওয়া হয়েছে।',
- 'uploaded' => ':attribute আপলোড করতে ব্যর্থ হয়েছে।',
- 'url' => ':attribute বিন্যাস অবৈধ।',
- 'uuid' => 'The :attribute must be a valid UUID.',
+ 'starts_with' => 'The :attribute must start with one of the following: :values',
+ 'string' => ':attribute একটি স্ট্রিং হতে হবে।',
+ 'timezone' => ':attribute একটি বৈধ সময় অঞ্চল হতে হবে।',
+ 'unique' => ':attribute ইতিমধ্যেই নেওয়া হয়েছে।',
+ 'uploaded' => ':attribute আপলোড করতে ব্যর্থ হয়েছে।',
+ 'url' => ':attribute বিন্যাস অবৈধ।',
+ 'uuid' => 'The :attribute must be a valid UUID.',
/*
|--------------------------------------------------------------------------
diff --git a/lang/bs/articles.php b/lang/bs/articles.php
index 21fc2beb2..d011fea43 100644
--- a/lang/bs/articles.php
+++ b/lang/bs/articles.php
@@ -12,8 +12,8 @@
*/
return [
- 'articles' => 'Članci',
+ 'articles' => 'Članci',
'meta-articles' => 'Članci i vijesti na tragaču i zajednici',
- 'published-at' => 'Published On',
- 'read-more' => 'Čitaj više',
+ 'published-at' => 'Published On',
+ 'read-more' => 'Čitaj više',
];
diff --git a/lang/bs/auth.php b/lang/bs/auth.php
index fc51cd165..ee4eeafde 100644
--- a/lang/bs/auth.php
+++ b/lang/bs/auth.php
@@ -23,6 +23,6 @@ return [
|
*/
- 'failed' => 'These credentials do not match our records.',
+ 'failed' => 'These credentials do not match our records.',
'throttle' => 'Too many login attempts. Please try again in :seconds seconds.',
];
diff --git a/lang/bs/backup.php b/lang/bs/backup.php
index 0cd5f68db..162fdb596 100644
--- a/lang/bs/backup.php
+++ b/lang/bs/backup.php
@@ -12,32 +12,32 @@
*/
return [
- 'actions' => 'Akcije',
- 'backup' => 'Backup',
- 'backup_doesnt_exist' => 'Rezervna datoteka ne postoji.',
- 'create_a_new_backup' => 'Napravite punu sigurnosnu kopiju',
- 'create_a_new_files_backup' => 'Napravite rezervnu kopiju datoteka',
- 'create_a_new_db_backup' => 'Kreirajte rezervnu kopiju baze podataka',
- 'create_confirmation_message' => 'Učitavanje stranice za 3 sekunde.',
- 'create_confirmation_title' => 'Backup je završen',
- 'create_error_message' => 'Rezervna datoteka NIJE mogla biti kreirana.',
- 'create_error_title' => 'Backup error',
- 'create_warning_message' => 'Vaša rezervna kopija možda nije kreirana. Molimo provjerite log datoteke za detalje.',
- 'create_warning_title' => 'Nepoznata greška',
- 'date' => 'Datum',
- 'delete' => 'Izbriši',
- 'delete_cancel_message' => 'Rezervna datoteka NIJE izbrisana.',
- 'delete_cancel_title' => 'Uredu je',
- 'delete_confirm' => 'Da li ste sigurni da želite izbrisati ovu datoteku sigurnosne kopije?',
- 'delete_confirmation_message' => 'Rezervna datoteka je izbrisana.',
- 'delete_confirmation_title' => 'Gotovo',
- 'delete_error_message' => 'Rezervna datoteka NIJE izbrisana.',
- 'delete_error_title' => 'Greška',
- 'download' => 'Skinuti',
- 'existing_backups' => 'Postojeće sigurnosne kopije',
- 'file_size' => 'Veličina fajla',
- 'location' => 'Lokacija',
- 'manager' => 'Menadžer',
- 'no_disks_configured' => 'U config / backup.php nije konfiguriran backup disk',
+ 'actions' => 'Akcije',
+ 'backup' => 'Backup',
+ 'backup_doesnt_exist' => 'Rezervna datoteka ne postoji.',
+ 'create_a_new_backup' => 'Napravite punu sigurnosnu kopiju',
+ 'create_a_new_files_backup' => 'Napravite rezervnu kopiju datoteka',
+ 'create_a_new_db_backup' => 'Kreirajte rezervnu kopiju baze podataka',
+ 'create_confirmation_message' => 'Učitavanje stranice za 3 sekunde.',
+ 'create_confirmation_title' => 'Backup je završen',
+ 'create_error_message' => 'Rezervna datoteka NIJE mogla biti kreirana.',
+ 'create_error_title' => 'Backup error',
+ 'create_warning_message' => 'Vaša rezervna kopija možda nije kreirana. Molimo provjerite log datoteke za detalje.',
+ 'create_warning_title' => 'Nepoznata greška',
+ 'date' => 'Datum',
+ 'delete' => 'Izbriši',
+ 'delete_cancel_message' => 'Rezervna datoteka NIJE izbrisana.',
+ 'delete_cancel_title' => 'Uredu je',
+ 'delete_confirm' => 'Da li ste sigurni da želite izbrisati ovu datoteku sigurnosne kopije?',
+ 'delete_confirmation_message' => 'Rezervna datoteka je izbrisana.',
+ 'delete_confirmation_title' => 'Gotovo',
+ 'delete_error_message' => 'Rezervna datoteka NIJE izbrisana.',
+ 'delete_error_title' => 'Greška',
+ 'download' => 'Skinuti',
+ 'existing_backups' => 'Postojeće sigurnosne kopije',
+ 'file_size' => 'Veličina fajla',
+ 'location' => 'Lokacija',
+ 'manager' => 'Menadžer',
+ 'no_disks_configured' => 'U config / backup.php nije konfiguriran backup disk',
'only_local_downloads_supported' => 'Podržane su samo preuzimanja s lokalnog datotečnog sustava.',
];
diff --git a/lang/bs/blocks.php b/lang/bs/blocks.php
index 63cd38d77..d296ec310 100644
--- a/lang/bs/blocks.php
+++ b/lang/bs/blocks.php
@@ -12,19 +12,19 @@
*/
return [
- 'chatbox' => 'Chat Box',
- 'click' => 'Kliknite',
- 'to-enable-editor' => 'da biste omogućili uređivanje',
- 'featured-by' => 'Featured by',
- 'featured-torrents' => 'Featured Torrents',
+ 'chatbox' => 'Chat Box',
+ 'click' => 'Kliknite',
+ 'to-enable-editor' => 'da biste omogućili uređivanje',
+ 'featured-by' => 'Featured by',
+ 'featured-torrents' => 'Featured Torrents',
'featured-torrents-intro' => 'Uzmite ih dok možete!',
- 'featured-until' => 'Ovo je predstavljen torrent do',
- 'top-torrents' => 'Top Torrents',
- 'latest-posts' => 'Latest Posts',
- 'latest-topics' => 'Latest Topics',
- 'active-in-last' => 'Aktivan u zadnjem',
- 'users-online' => 'Korisnici Online',
- 'check-news' => 'Vijesti (provjerite dnevno)',
- 'new-news' => 'New News',
- 'new-torrents' => 'New torrents',
+ 'featured-until' => 'Ovo je predstavljen torrent do',
+ 'top-torrents' => 'Top Torrents',
+ 'latest-posts' => 'Latest Posts',
+ 'latest-topics' => 'Latest Topics',
+ 'active-in-last' => 'Aktivan u zadnjem',
+ 'users-online' => 'Korisnici Online',
+ 'check-news' => 'Vijesti (provjerite dnevno)',
+ 'new-news' => 'New News',
+ 'new-torrents' => 'New torrents',
];
diff --git a/lang/bs/bon.php b/lang/bs/bon.php
index f3520736c..db5874bed 100644
--- a/lang/bs/bon.php
+++ b/lang/bs/bon.php
@@ -12,44 +12,44 @@
*/
return [
- 'activated' => 'Aktivirano',
- 'active' => 'Aktivirano!',
- 'amount' => 'Iznos',
- 'bon' => 'BON',
- 'bonus' => 'Bonus',
- 'date' => 'Datum',
- 'earning' => 'Sticanje',
- 'earning-rate' => 'Na ovoj stopi zarađivanja zaradit ćete sljedeće po vremenskom okviru.',
- 'earnings' => 'Zarade',
- 'exchange' => 'Exchange',
- 'exchange-warning' => 'Razmene su konačne, Molimo Vas da pre izbora razmotrite svoj izbor.',
- 'extended-stats' => 'Extended Stats',
- 'gift' => 'Poklon',
- 'gift-bonus' => 'Poklon bonovi',
- 'gift-to' => 'Poklon bon za bodove',
- 'gifts' => 'Pokloni',
- 'item' => 'Stavka',
- 'no-refund' => 'NO REFUNDS!',
- 'per-day' => 'Poeni po danu',
- 'per-hour' => 'Bodovi po satu',
- 'per-minute' => 'Bodovi po minuti',
- 'per-month' => 'Poeni mesečno',
- 'per-second' => 'Poeni po sekundi',
- 'per-week' => 'Poeni za sedmicu',
- 'per-year' => 'Poeni godišnje',
- 'points' => 'Bodovi',
- 'receiver' => 'Prijemnik',
- 'review-seeds' => 'Pregledaj sve Seeded Torrents',
- 'send-gift' => 'Poslati poklon',
- 'sender' => 'Sender',
- 'store' => 'Store',
- 'tips' => 'Saveti',
- 'total' => 'Ukupna zarada',
- 'total-gifts' => 'In Total BON Pokloni',
- 'total-tips' => 'In Total BON Tips',
+ 'activated' => 'Aktivirano',
+ 'active' => 'Aktivirano!',
+ 'amount' => 'Iznos',
+ 'bon' => 'BON',
+ 'bonus' => 'Bonus',
+ 'date' => 'Datum',
+ 'earning' => 'Sticanje',
+ 'earning-rate' => 'Na ovoj stopi zarađivanja zaradit ćete sljedeće po vremenskom okviru.',
+ 'earnings' => 'Zarade',
+ 'exchange' => 'Exchange',
+ 'exchange-warning' => 'Razmene su konačne, Molimo Vas da pre izbora razmotrite svoj izbor.',
+ 'extended-stats' => 'Extended Stats',
+ 'gift' => 'Poklon',
+ 'gift-bonus' => 'Poklon bonovi',
+ 'gift-to' => 'Poklon bon za bodove',
+ 'gifts' => 'Pokloni',
+ 'item' => 'Stavka',
+ 'no-refund' => 'NO REFUNDS!',
+ 'per-day' => 'Poeni po danu',
+ 'per-hour' => 'Bodovi po satu',
+ 'per-minute' => 'Bodovi po minuti',
+ 'per-month' => 'Poeni mesečno',
+ 'per-second' => 'Poeni po sekundi',
+ 'per-week' => 'Poeni za sedmicu',
+ 'per-year' => 'Poeni godišnje',
+ 'points' => 'Bodovi',
+ 'receiver' => 'Prijemnik',
+ 'review-seeds' => 'Pregledaj sve Seeded Torrents',
+ 'send-gift' => 'Poslati poklon',
+ 'sender' => 'Sender',
+ 'store' => 'Store',
+ 'tips' => 'Saveti',
+ 'total' => 'Ukupna zarada',
+ 'total-gifts' => 'In Total BON Pokloni',
+ 'total-tips' => 'In Total BON Tips',
'you-have-received-gifts' => 'Primili ste',
- 'you-have-sent-gifts' => 'Poslali ste',
- 'you-have-received-tips' => 'Primili ste',
- 'you-have-sent-tips' => 'Poslali ste',
- 'your-points' => 'Your Points',
+ 'you-have-sent-gifts' => 'Poslali ste',
+ 'you-have-received-tips' => 'Primili ste',
+ 'you-have-sent-tips' => 'Poslali ste',
+ 'your-points' => 'Your Points',
];
diff --git a/lang/bs/bot.php b/lang/bs/bot.php
index eb5c51786..bdcbb548a 100644
--- a/lang/bs/bot.php
+++ b/lang/bs/bot.php
@@ -12,15 +12,15 @@
*/
return [
- 'about' => 'O nama',
- 'bot' => 'Bot',
- 'bots' => 'Bots',
- 'color' => 'Boja',
- 'command' => 'Command',
- 'edit-bot' => 'Edit Bot',
+ 'about' => 'O nama',
+ 'bot' => 'Bot',
+ 'bots' => 'Bots',
+ 'color' => 'Boja',
+ 'command' => 'Command',
+ 'edit-bot' => 'Edit Bot',
'emoji-code' => 'Emoji Code',
- 'help' => 'Pomoć',
- 'icon' => 'Ikona',
- 'info' => 'Info',
- 'name' => 'Ime',
+ 'help' => 'Pomoć',
+ 'icon' => 'Ikona',
+ 'info' => 'Info',
+ 'name' => 'Ime',
];
diff --git a/lang/bs/bug.php b/lang/bs/bug.php
index 4ba8c6615..7da2f8df0 100644
--- a/lang/bs/bug.php
+++ b/lang/bs/bug.php
@@ -12,15 +12,15 @@
*/
return [
- 'bug-report' => 'Bug report',
+ 'bug-report' => 'Bug report',
'bug-report-description' => 'Prijavite grešku lokacije',
- 'enter-description' => 'Opišite problem što je bolje moguće',
- 'enter-email' => 'Molimo unesite e-mail',
- 'enter-title' => 'Molimo odaberite odgovarajući naslov',
- 'enter-username' => 'Unesite svoje korisničko ime',
- 'high' => 'Visoko',
- 'low' => 'Low',
- 'priority' => 'Prioritet',
- 'priority-description' => 'Izaberite samo veoma visoku vrednost ako je greška zaista problem za korišćenje sajta.',
- 'very-high' => 'Veoma visoko',
+ 'enter-description' => 'Opišite problem što je bolje moguće',
+ 'enter-email' => 'Molimo unesite e-mail',
+ 'enter-title' => 'Molimo odaberite odgovarajući naslov',
+ 'enter-username' => 'Unesite svoje korisničko ime',
+ 'high' => 'Visoko',
+ 'low' => 'Low',
+ 'priority' => 'Prioritet',
+ 'priority-description' => 'Izaberite samo veoma visoku vrednost ako je greška zaista problem za korišćenje sajta.',
+ 'very-high' => 'Veoma visoko',
];
diff --git a/lang/bs/common.php b/lang/bs/common.php
index d5ea13bde..826abab5c 100644
--- a/lang/bs/common.php
+++ b/lang/bs/common.php
@@ -12,179 +12,179 @@
*/
return [
- 'a-an-art' => '',
- 'about' => 'O nama',
- 'account' => 'Račun',
- 'achievement-title' => 'Awesome',
+ 'a-an-art' => '',
+ 'about' => 'O nama',
+ 'account' => 'Račun',
+ 'achievement-title' => 'Awesome',
'achievement-unlocked' => 'Otključali ste uspjeh ": name"',
- 'active' => 'Aktivno',
- 'active-warning' => 'Aktivno upozorenje',
- 'add' => 'Dodati',
- 'added' => 'Dodano',
- 'amount' => 'Iznos',
- 'anonymous' => 'Anonimno',
- 'author' => 'Author',
- 'balance' => 'Balans',
- 'blacklist' => 'Crna lista za klijente',
- 'buffer' => 'Buffer',
- 'bug' => 'Prijavi grešku',
- 'but' => 'Ali',
- 'cancel' => 'Odustani',
- 'category' => 'Kategorija',
- 'categories' => 'Kategorije',
- 'close' => 'Zatvori',
- 'comment' => 'Komentar',
- 'comments' => 'Komentari',
- 'community' => 'Zajednica',
- 'contact' => 'Kontakt',
- 'contact-desc' => 'Ovaj kontakt će biti poslan vlasniku i javit će vam se što je prije moguće',
- 'contact-header' => 'zdravo',
- 'create' => 'Stvoriti',
- 'created_at' => 'Created At',
- 'day' => 'Dan',
- 'delete' => 'Izbriši',
- 'delete-your-comment' => 'Izbrišite svoj komentar',
- 'description' => 'Opis',
- 'direction' => 'Direction',
- 'disable' => 'Onemogući',
- 'doubleup_activated' => 'Režim globalnog dvostrukog učitavanja je aktiviran',
- 'download' => 'Skinuti',
- 'edit' => 'Uredi',
- 'edit-your-comment' => 'Uredite svoj komentar',
- 'email' => 'E-mail',
- 'email-blacklist' => 'Email Blacklist',
- 'email-whitelist' => 'Bela lista e-pošte',
+ 'active' => 'Aktivno',
+ 'active-warning' => 'Aktivno upozorenje',
+ 'add' => 'Dodati',
+ 'added' => 'Dodano',
+ 'amount' => 'Iznos',
+ 'anonymous' => 'Anonimno',
+ 'author' => 'Author',
+ 'balance' => 'Balans',
+ 'blacklist' => 'Crna lista za klijente',
+ 'buffer' => 'Buffer',
+ 'bug' => 'Prijavi grešku',
+ 'but' => 'Ali',
+ 'cancel' => 'Odustani',
+ 'category' => 'Kategorija',
+ 'categories' => 'Kategorije',
+ 'close' => 'Zatvori',
+ 'comment' => 'Komentar',
+ 'comments' => 'Komentari',
+ 'community' => 'Zajednica',
+ 'contact' => 'Kontakt',
+ 'contact-desc' => 'Ovaj kontakt će biti poslan vlasniku i javit će vam se što je prije moguće',
+ 'contact-header' => 'zdravo',
+ 'create' => 'Stvoriti',
+ 'created_at' => 'Created At',
+ 'day' => 'Dan',
+ 'delete' => 'Izbriši',
+ 'delete-your-comment' => 'Izbrišite svoj komentar',
+ 'description' => 'Opis',
+ 'direction' => 'Direction',
+ 'disable' => 'Onemogući',
+ 'doubleup_activated' => 'Režim globalnog dvostrukog učitavanja je aktiviran',
+ 'download' => 'Skinuti',
+ 'edit' => 'Uredi',
+ 'edit-your-comment' => 'Uredite svoj komentar',
+ 'email' => 'E-mail',
+ 'email-blacklist' => 'Email Blacklist',
+ 'email-whitelist' => 'Bela lista e-pošte',
'email-list-notactive' => 'Bela lista e-pošte / Crna lista Sistem nije aktiviran',
- 'enable' => 'Omogući',
- 'enter' => 'Enter',
- 'error' => 'Greška',
- 'everyday' => 'Svaki dan',
- 'expired' => 'Isteklo',
- 'extra' => 'Extra',
- 'extra-stats' => 'Extra-Stats',
- 'faq' => 'FAQ',
- 'files' => 'Datoteke',
- 'fl_token' => 'Freeleech Token',
- 'fl_tokens' => 'Freeleech žetoni',
- 'for' => 'for',
- 'forum' => 'Forum',
- 'free' => 'Besplatno',
- 'freeleech_activated' => 'Aktiviran je globalni freeleech mod',
- 'global' => 'Globalno',
- 'group' => 'Grupa',
- 'groups' => 'Grupe',
- 'hidden' => 'Skriveno',
- 'high-speeds' => 'Visoke brzine',
- 'home' => 'Dom',
- 'hot' => 'Hot!',
- 'hour' => 'Hour',
- 'huge' => 'Ogromno',
- 'info' => 'Info',
- 'internal' => 'Interno',
- 'ip' => 'IP',
- 'is-allowed' => 'je dozvoljeno',
- 'large' => 'Veliko',
- 'latest' => 'Najnoviji',
- 'latest-posts' => 'Latest Posts',
- 'latest-topics' => 'Latest Topics',
- 'legal' => 'Legal',
- 'legend' => 'Legenda',
- 'lists' => 'Lists',
- 'lock-account' => 'Zaključaj račun',
- 'logout' => 'Odjaviti se',
- 'members' => 'Članovi',
- 'message' => 'Poruka',
- 'minute' => 'Minute',
- 'moderated-by' => 'Moderator by',
- 'moderation' => 'Moderacija',
- 'moderation-approve' => 'Odobri',
- 'moderation-postpone' => 'Odloži',
- 'moderation-reject' => 'Odbaci',
- 'month' => 'Mesec',
- 'months' => 'Mjeseci',
- 'my' => 'Moj',
- 'name' => 'Ime',
- 'navigation' => 'Navigacija',
- 'new' => 'Novo!',
- 'new-adj' => 'Novo',
- 'news' => 'Novosti',
- 'next' => 'Sledeće',
- 'no' => 'Ne',
- 'no-comments' => 'No Comments Yet',
- 'no-result' => 'Nema rezultata u bazi podataka za upit',
- 'notifications' => 'Obaveštenja',
- 'older-than' => 'Stariji od',
- 'oldest' => 'Najstariji',
- 'openreg_activated' => 'Aktivirana je otvorena registracija',
- 'order-by' => 'Poredak po',
- 'other' => 'Drugo',
- 'pages' => 'Pages',
- 'password' => 'Lozinka',
- 'patron' => 'Postanite pokrovitelj',
- 'pending-torrents' => 'Pending torrents',
- 'personal' => 'Lični',
- 'plural-suffix' => 's',
- 'port' => 'Port',
- 'position' => 'Pozicija',
- 'posts' => 'Postovi',
- 'powered-by' => 'Powered by UNIT3D',
- 'preview' => 'Pregled',
- 'previous' => 'Previous',
- 'progress' => 'Napredak',
- 'publish' => 'Objavi',
- 'quantity' => 'Količina',
- 'quick-search' => 'Brza pretraga',
- 'ratio' => 'Ratio',
- 'reason' => 'Razlog',
- 'remove' => 'Ukloni',
- 'report' => 'Report',
- 'resend' => 'Resend',
- 'reporter' => 'Reporter',
- 'required' => 'Obavezno',
- 'results' => 'Rezultati',
- 'rss-system' => 'RSS System',
- 'rules' => 'Pravila',
- 'save' => 'Spremi',
- 'search' => 'Search',
- 'search-results' => 'Rezultati pretrage',
- 'search-results-desc' => 'Pogledajte rezultate ispod',
- 'second' => 'Sekunda',
- 'select' => 'Izaberite',
- 'sort' => 'Sortiraj',
- 'special' => 'Poseban',
- 'staff' => 'Osoblje',
- 'staff-tools' => 'Alati osoblja',
- 'stats' => 'Stats',
- 'status' => 'Status',
- 'sticked' => 'Sticked',
- 'submit' => 'Pošalji',
- 'subscriptions' => 'Pretplate',
- 'teams' => 'Timovi',
- 'terms' => 'Pravila korištenja',
- 'times' => 'Times',
- 'title' => 'Naslov',
- 'top-bountied' => 'Top Bountied',
- 'topics' => 'Teme',
- 'tracker-codes' => 'Tracker kodovi',
- 'type' => 'Tip',
- 'type-verb' => 'Tip',
- 'types' => 'Vrste',
- 'genre' => 'Žanr',
- 'genres' => 'Žanrovi',
- 'action' => 'Akcija',
- 'actions' => 'Akcije',
- 'unknown' => 'Nepoznato',
+ 'enable' => 'Omogući',
+ 'enter' => 'Enter',
+ 'error' => 'Greška',
+ 'everyday' => 'Svaki dan',
+ 'expired' => 'Isteklo',
+ 'extra' => 'Extra',
+ 'extra-stats' => 'Extra-Stats',
+ 'faq' => 'FAQ',
+ 'files' => 'Datoteke',
+ 'fl_token' => 'Freeleech Token',
+ 'fl_tokens' => 'Freeleech žetoni',
+ 'for' => 'for',
+ 'forum' => 'Forum',
+ 'free' => 'Besplatno',
+ 'freeleech_activated' => 'Aktiviran je globalni freeleech mod',
+ 'global' => 'Globalno',
+ 'group' => 'Grupa',
+ 'groups' => 'Grupe',
+ 'hidden' => 'Skriveno',
+ 'high-speeds' => 'Visoke brzine',
+ 'home' => 'Dom',
+ 'hot' => 'Hot!',
+ 'hour' => 'Hour',
+ 'huge' => 'Ogromno',
+ 'info' => 'Info',
+ 'internal' => 'Interno',
+ 'ip' => 'IP',
+ 'is-allowed' => 'je dozvoljeno',
+ 'large' => 'Veliko',
+ 'latest' => 'Najnoviji',
+ 'latest-posts' => 'Latest Posts',
+ 'latest-topics' => 'Latest Topics',
+ 'legal' => 'Legal',
+ 'legend' => 'Legenda',
+ 'lists' => 'Lists',
+ 'lock-account' => 'Zaključaj račun',
+ 'logout' => 'Odjaviti se',
+ 'members' => 'Članovi',
+ 'message' => 'Poruka',
+ 'minute' => 'Minute',
+ 'moderated-by' => 'Moderator by',
+ 'moderation' => 'Moderacija',
+ 'moderation-approve' => 'Odobri',
+ 'moderation-postpone' => 'Odloži',
+ 'moderation-reject' => 'Odbaci',
+ 'month' => 'Mesec',
+ 'months' => 'Mjeseci',
+ 'my' => 'Moj',
+ 'name' => 'Ime',
+ 'navigation' => 'Navigacija',
+ 'new' => 'Novo!',
+ 'new-adj' => 'Novo',
+ 'news' => 'Novosti',
+ 'next' => 'Sledeće',
+ 'no' => 'Ne',
+ 'no-comments' => 'No Comments Yet',
+ 'no-result' => 'Nema rezultata u bazi podataka za upit',
+ 'notifications' => 'Obaveštenja',
+ 'older-than' => 'Stariji od',
+ 'oldest' => 'Najstariji',
+ 'openreg_activated' => 'Aktivirana je otvorena registracija',
+ 'order-by' => 'Poredak po',
+ 'other' => 'Drugo',
+ 'pages' => 'Pages',
+ 'password' => 'Lozinka',
+ 'patron' => 'Postanite pokrovitelj',
+ 'pending-torrents' => 'Pending torrents',
+ 'personal' => 'Lični',
+ 'plural-suffix' => 's',
+ 'port' => 'Port',
+ 'position' => 'Pozicija',
+ 'posts' => 'Postovi',
+ 'powered-by' => 'Powered by UNIT3D',
+ 'preview' => 'Pregled',
+ 'previous' => 'Previous',
+ 'progress' => 'Napredak',
+ 'publish' => 'Objavi',
+ 'quantity' => 'Količina',
+ 'quick-search' => 'Brza pretraga',
+ 'ratio' => 'Ratio',
+ 'reason' => 'Razlog',
+ 'remove' => 'Ukloni',
+ 'report' => 'Report',
+ 'resend' => 'Resend',
+ 'reporter' => 'Reporter',
+ 'required' => 'Obavezno',
+ 'results' => 'Rezultati',
+ 'rss-system' => 'RSS System',
+ 'rules' => 'Pravila',
+ 'save' => 'Spremi',
+ 'search' => 'Search',
+ 'search-results' => 'Rezultati pretrage',
+ 'search-results-desc' => 'Pogledajte rezultate ispod',
+ 'second' => 'Sekunda',
+ 'select' => 'Izaberite',
+ 'sort' => 'Sortiraj',
+ 'special' => 'Poseban',
+ 'staff' => 'Osoblje',
+ 'staff-tools' => 'Alati osoblja',
+ 'stats' => 'Stats',
+ 'status' => 'Status',
+ 'sticked' => 'Sticked',
+ 'submit' => 'Pošalji',
+ 'subscriptions' => 'Pretplate',
+ 'teams' => 'Timovi',
+ 'terms' => 'Pravila korištenja',
+ 'times' => 'Times',
+ 'title' => 'Naslov',
+ 'top-bountied' => 'Top Bountied',
+ 'topics' => 'Teme',
+ 'tracker-codes' => 'Tracker kodovi',
+ 'type' => 'Tip',
+ 'type-verb' => 'Tip',
+ 'types' => 'Vrste',
+ 'genre' => 'Žanr',
+ 'genres' => 'Žanrovi',
+ 'action' => 'Akcija',
+ 'actions' => 'Akcije',
+ 'unknown' => 'Nepoznato',
'unlocked-achievement' => 'Otključali ste: postignuće postignuća',
- 'upload' => 'Upload',
- 'upload-guide' => 'Upload guide',
- 'user' => 'User',
- 'username' => 'Username',
- 'users' => 'Korisnici',
- 'view' => 'Pogled',
- 'view-all' => 'Vidi sve',
- 'warnings' => 'Upozorenja',
- 'year' => 'Godina',
- 'yes' => 'Da',
- 'your' => 'Tvoj',
- 'your-comment' => 'Vaš komentar',
+ 'upload' => 'Upload',
+ 'upload-guide' => 'Upload guide',
+ 'user' => 'User',
+ 'username' => 'Username',
+ 'users' => 'Korisnici',
+ 'view' => 'Pogled',
+ 'view-all' => 'Vidi sve',
+ 'warnings' => 'Upozorenja',
+ 'year' => 'Godina',
+ 'yes' => 'Da',
+ 'your' => 'Tvoj',
+ 'your-comment' => 'Vaš komentar',
];
diff --git a/lang/bs/email.php b/lang/bs/email.php
index 8c0e0e100..5e8c528c7 100644
--- a/lang/bs/email.php
+++ b/lang/bs/email.php
@@ -12,46 +12,46 @@
*/
return [
- 'activate-account' => 'Aktivirajte nalog',
- 'ban-reason' => 'Razlog',
- 'banned-footer' => 'To je ono što dobijate ne poštujući pravila',
- 'banned-header' => 'Blokirani ste',
- 'bug-description' => 'Problem',
- 'bug-footer' => 'Popravi to sranje',
- 'bug-header' => 'Novi izveštaj o grešci',
- 'bug-priority' => 'Prioritet',
- 'bug-title' => 'Bug bug',
- 'contact-header' => 'Nova kontakt poruka od',
- 'contact-message' => 'Poruka',
- 'contact-name' => 'Ime',
+ 'activate-account' => 'Aktivirajte nalog',
+ 'ban-reason' => 'Razlog',
+ 'banned-footer' => 'To je ono što dobijate ne poštujući pravila',
+ 'banned-header' => 'Blokirani ste',
+ 'bug-description' => 'Problem',
+ 'bug-footer' => 'Popravi to sranje',
+ 'bug-header' => 'Novi izveštaj o grešci',
+ 'bug-priority' => 'Prioritet',
+ 'bug-title' => 'Bug bug',
+ 'contact-header' => 'Nova kontakt poruka od',
+ 'contact-message' => 'Poruka',
+ 'contact-name' => 'Ime',
'fail-login-greeting' => 'Neuspješna prijava računa!',
- 'fail-login-line1' => 'Otkrivena je neuspjela prijava za vaš račun.',
- 'fail-login-line2' => 'Ovaj zahtjev potječe iz: ip (: host) u: time',
- 'fail-login-subject' => 'Neuspela prijava za prijavu',
- 'footer-link' => 'Ako imate problema sa klikom na dugme: actionText, kopirajte i nalepite URL ispod u vaš veb pregledač:',
- 'invite-header' => 'Pozivnica za',
- 'invite-invited' => 'Pozvani ste',
- 'invite-message' => 'Poruka',
- 'invite-signup' => 'Prijavi se sada',
- 'newreply-header' => 'U vašoj temi postoji novi odgovor',
- 'newreply-message' => 'Poruka',
- 'newreply-replied' => 'Odgovorio je na vašu temu',
- 'newreply-view' => 'Pogledaj ga sada',
- 'no-email-found' => 'Nismo mogli pronaći ovu e-poštu u našem sistemu!',
- 'register-code' => 'Da biste dovršili aktivaciju računa kliknite na dugme ispod',
- 'register-footer' => 'Ako gornje dugme ne radi, kopirajte i zalijepite URL u adresnu traku preglednika',
- 'register-header' => 'Zdravo! Hvala vam što ste se prijavili',
- 'report-comment' => 'Komentar',
- 'report-email' => 'E-mail',
- 'report-header' => 'Hi Admin, Link je prijavljen',
- 'report-link' => 'Veza',
- 'report-link-hash' => 'Aktualna veza',
- 'thanks' => 'Hvala vam što koristite',
- 'unban-footer' => 'Dobrodošao nazad!',
- 'unban-header' => 'Nisi bio zabranjen',
- 'unban-reason' => 'Razlog',
- 'username-reminder' => 'Nedavno ste nam poslali zahtjev za korisničko ime na našoj aplikaciji. Vaše korisničko ime je',
- 'username-sent' => 'Vaše korisničko ime je poslano na vašu adresu e-pošte!',
- 'disabled-header' => 'Vaš račun je onemogućen',
- 'pruned-header' => 'Vaš račun je obrezan',
+ 'fail-login-line1' => 'Otkrivena je neuspjela prijava za vaš račun.',
+ 'fail-login-line2' => 'Ovaj zahtjev potječe iz: ip (: host) u: time',
+ 'fail-login-subject' => 'Neuspela prijava za prijavu',
+ 'footer-link' => 'Ako imate problema sa klikom na dugme: actionText, kopirajte i nalepite URL ispod u vaš veb pregledač:',
+ 'invite-header' => 'Pozivnica za',
+ 'invite-invited' => 'Pozvani ste',
+ 'invite-message' => 'Poruka',
+ 'invite-signup' => 'Prijavi se sada',
+ 'newreply-header' => 'U vašoj temi postoji novi odgovor',
+ 'newreply-message' => 'Poruka',
+ 'newreply-replied' => 'Odgovorio je na vašu temu',
+ 'newreply-view' => 'Pogledaj ga sada',
+ 'no-email-found' => 'Nismo mogli pronaći ovu e-poštu u našem sistemu!',
+ 'register-code' => 'Da biste dovršili aktivaciju računa kliknite na dugme ispod',
+ 'register-footer' => 'Ako gornje dugme ne radi, kopirajte i zalijepite URL u adresnu traku preglednika',
+ 'register-header' => 'Zdravo! Hvala vam što ste se prijavili',
+ 'report-comment' => 'Komentar',
+ 'report-email' => 'E-mail',
+ 'report-header' => 'Hi Admin, Link je prijavljen',
+ 'report-link' => 'Veza',
+ 'report-link-hash' => 'Aktualna veza',
+ 'thanks' => 'Hvala vam što koristite',
+ 'unban-footer' => 'Dobrodošao nazad!',
+ 'unban-header' => 'Nisi bio zabranjen',
+ 'unban-reason' => 'Razlog',
+ 'username-reminder' => 'Nedavno ste nam poslali zahtjev za korisničko ime na našoj aplikaciji. Vaše korisničko ime je',
+ 'username-sent' => 'Vaše korisničko ime je poslano na vašu adresu e-pošte!',
+ 'disabled-header' => 'Vaš račun je onemogućen',
+ 'pruned-header' => 'Vaš račun je obrezan',
];
diff --git a/lang/bs/forum.php b/lang/bs/forum.php
index 4fa508845..3d12fcfd1 100644
--- a/lang/bs/forum.php
+++ b/lang/bs/forum.php
@@ -12,63 +12,63 @@
*/
return [
- 'action' => 'Akcija',
- 'activity' => 'Aktivnost',
- 'approved' => 'Odobreno',
- 'author' => 'Author',
- 'bug' => 'Bug',
- 'category-quick-search' => 'Naziv teme brzo pretraživanje (unutar kategorije)',
- 'close-topic' => 'Zaključaj temu',
- 'closed' => 'Zatvoreno',
- 'create-new-topic' => 'Napravite novu temu',
- 'created' => 'Created',
- 'current' => 'Current',
- 'delete-topic' => 'Izbriši ovu temu',
- 'denied' => 'Denied',
- 'dislike-post' => 'Ne sviđa mi se ovaj post',
- 'display-forum' => 'Prikaži teme u',
- 'edit-post' => 'Edit Post',
- 'edit-topic' => 'Uredi temu',
- 'forum' => 'Forum',
- 'forums' => 'Forumi',
- 'implemented' => 'Implementirano',
- 'in' => 'In',
- 'invalid' => 'Nevažeće',
- 'label' => 'Oznaka',
- 'label-system' => 'Label System',
- 'last-message' => 'Last Message',
- 'last-post-info' => 'Last Post Info',
- 'latest' => 'Najnoviji',
- 'like-post' => 'Like This Post',
- 'meta-category' => 'Lista foruma u kategoriji',
- 'moderation' => 'Moderacija',
- 'name' => 'Ime',
- 'not-connected' => 'Morate biti povezani',
- 'not-subscribed' => 'Nije pretplaćeno',
- 'open' => 'Otvori',
- 'open-topic' => 'Otvorite ovu temu',
- 'permalink' => 'Permalink',
- 'pin' => 'Pin',
- 'post' => 'Post',
- 'post-quick-search' => 'Brza pretraga po tijelu',
- 'posts' => 'Postovi',
- 'quote' => 'Quote',
- 'read-topic' => 'Pročitajte temu',
- 'replies' => 'Odgovori',
- 'send-new-topic' => 'Sačuvaj ovu temu',
- 'solved' => 'Solved',
- 'state' => 'State',
- 'stats' => 'Stats',
- 'subscribed' => 'Pretplaćeno',
+ 'action' => 'Akcija',
+ 'activity' => 'Aktivnost',
+ 'approved' => 'Odobreno',
+ 'author' => 'Author',
+ 'bug' => 'Bug',
+ 'category-quick-search' => 'Naziv teme brzo pretraživanje (unutar kategorije)',
+ 'close-topic' => 'Zaključaj temu',
+ 'closed' => 'Zatvoreno',
+ 'create-new-topic' => 'Napravite novu temu',
+ 'created' => 'Created',
+ 'current' => 'Current',
+ 'delete-topic' => 'Izbriši ovu temu',
+ 'denied' => 'Denied',
+ 'dislike-post' => 'Ne sviđa mi se ovaj post',
+ 'display-forum' => 'Prikaži teme u',
+ 'edit-post' => 'Edit Post',
+ 'edit-topic' => 'Uredi temu',
+ 'forum' => 'Forum',
+ 'forums' => 'Forumi',
+ 'implemented' => 'Implementirano',
+ 'in' => 'In',
+ 'invalid' => 'Nevažeće',
+ 'label' => 'Oznaka',
+ 'label-system' => 'Label System',
+ 'last-message' => 'Last Message',
+ 'last-post-info' => 'Last Post Info',
+ 'latest' => 'Najnoviji',
+ 'like-post' => 'Like This Post',
+ 'meta-category' => 'Lista foruma u kategoriji',
+ 'moderation' => 'Moderacija',
+ 'name' => 'Ime',
+ 'not-connected' => 'Morate biti povezani',
+ 'not-subscribed' => 'Nije pretplaćeno',
+ 'open' => 'Otvori',
+ 'open-topic' => 'Otvorite ovu temu',
+ 'permalink' => 'Permalink',
+ 'pin' => 'Pin',
+ 'post' => 'Post',
+ 'post-quick-search' => 'Brza pretraga po tijelu',
+ 'posts' => 'Postovi',
+ 'quote' => 'Quote',
+ 'read-topic' => 'Pročitajte temu',
+ 'replies' => 'Odgovori',
+ 'send-new-topic' => 'Sačuvaj ovu temu',
+ 'solved' => 'Solved',
+ 'state' => 'State',
+ 'stats' => 'Stats',
+ 'subscribed' => 'Pretplaćeno',
'subscription-quick-search' => 'Naziv teme brzo pretraživanje (unutar pretplata)',
- 'suggestion' => 'Sugestija',
- 'topic' => 'Tema',
- 'topic-closed' => 'Ova tema je zatvorena',
- 'topic-name' => 'Naziv teme',
- 'topic-quick-search' => 'Naziv teme brzo pretraživanje',
- 'topic-title' => 'Naslov ove teme',
- 'topics' => 'Teme',
- 'unpin' => 'Unpin',
- 'view-all' => 'Prikaži sve teme',
- 'views' => 'Pregledi',
+ 'suggestion' => 'Sugestija',
+ 'topic' => 'Tema',
+ 'topic-closed' => 'Ova tema je zatvorena',
+ 'topic-name' => 'Naziv teme',
+ 'topic-quick-search' => 'Naziv teme brzo pretraživanje',
+ 'topic-title' => 'Naslov ove teme',
+ 'topics' => 'Teme',
+ 'unpin' => 'Unpin',
+ 'view-all' => 'Prikaži sve teme',
+ 'views' => 'Pregledi',
];
diff --git a/lang/bs/graveyard.php b/lang/bs/graveyard.php
index 01602550b..e38aa3753 100644
--- a/lang/bs/graveyard.php
+++ b/lang/bs/graveyard.php
@@ -12,15 +12,15 @@
*/
return [
- 'dead' => 'Smrt',
- 'graveyard' => 'Groblje',
- 'guidelines' => 'Smernice',
+ 'dead' => 'Smrt',
+ 'graveyard' => 'Groblje',
+ 'guidelines' => 'Smernice',
'guidelines-content' => '1) Ne možete ponovo uspostaviti vlastite prenose.
2) Nemojte ponovo oživljavati nešto što ne možete ni počiniti.',
- 'howto' => 'Heres The Rule',
- 'howto-desc1' => 'Morate zasijati : ime za 30 dana za uspješnu resurekciju. U tom slučaju kada je vaše trenutno sjeme',
- 'howto-desc2' => 'Bićete nagrađeni',
- 'howto-hits' => 'Hits',
- 'pending' => 'Na čekanju',
- 'resurrect' => 'Resurrect',
- 'reward' => 'Freeleech tokeni',
+ 'howto' => 'Heres The Rule',
+ 'howto-desc1' => 'Morate zasijati : ime za 30 dana za uspješnu resurekciju. U tom slučaju kada je vaše trenutno sjeme',
+ 'howto-desc2' => 'Bićete nagrađeni',
+ 'howto-hits' => 'Hits',
+ 'pending' => 'Na čekanju',
+ 'resurrect' => 'Resurrect',
+ 'reward' => 'Freeleech tokeni',
];
diff --git a/lang/bs/notification.php b/lang/bs/notification.php
index baf5496df..1a8d87edf 100644
--- a/lang/bs/notification.php
+++ b/lang/bs/notification.php
@@ -12,14 +12,14 @@
*/
return [
- 'date' => 'Datum',
- 'delete' => 'Izbriši',
- 'delete-all' => 'Izbrišite sve obavijesti',
- 'mark-all-read' => 'označi sve kao pročitano',
- 'mark-read' => 'Označi kao pročitano',
- 'message' => 'Poruka',
+ 'date' => 'Datum',
+ 'delete' => 'Izbriši',
+ 'delete-all' => 'Izbrišite sve obavijesti',
+ 'mark-all-read' => 'označi sve kao pročitano',
+ 'mark-read' => 'Označi kao pročitano',
+ 'message' => 'Poruka',
'no-notifications' => 'Nema pronađenih obavijesti',
- 'notifications' => 'Obaveštenja',
- 'read' => 'Pročitajte',
- 'title' => 'Naslov',
+ 'notifications' => 'Obaveštenja',
+ 'read' => 'Pročitajte',
+ 'title' => 'Naslov',
];
diff --git a/lang/bs/page.php b/lang/bs/page.php
index c7784db16..1138972cc 100644
--- a/lang/bs/page.php
+++ b/lang/bs/page.php
@@ -12,28 +12,28 @@
*/
return [
- 'aboutus-advantage' => 'Prednost',
- 'aboutus-advantage1' => 'Imamo iskusne članove i osoblje koje su dobro upoznati sa svetom HD video / audio i tehničke podrške.',
- 'aboutus-advantage2' => 'Uz našu veliku strast prema filmovima i TV emisijama, nudimo i jednu od najboljih selekcija nečega što najviše - FANRES! VELIKO HVALIMO našim donositeljima sadržaja.',
- 'aboutus-advantage3' => 'Dok mi prihvaćamo donacije kako bismo zadržali stranicu i pokrenuli je, neće biti nikakvih gnjavitelja ili banera na licu mjesta. Ne molim od nas.',
- 'aboutus-advantage4' => 'Naša zajednica nema premca u ranoj dobi. Između našeg osoblja i korisničke baze, uvek smo bili tu da vam pomognemo. Bili smo strastveni da se pobrinemo da vaše iskustvo na: naslovu nije ništa drugo do neverovatno.',
- 'aboutus-advantage5' => 'Naše usluge svakodnevno koriste mnogi ljudi širom svijeta. Dokazali smo da nam je stalo do funkcionalnosti i sigurnosti naše baze koda i da se može pouzdati i osloniti se na nju. Naši programeri svakodnevno rade kako bi pružili zaista nex-gen kodnu bazu.',
- 'aboutus-header' => 'Zdravo',
- 'aboutus-rules' => 'Ono što nam je potrebno od vas',
- 'aboutus-rules1' => 'Biti aktivan član zajednice! To znači produktivno uključivanje u razgovore, dodavanje odobrenog sadržaja i pomoć drugim korisnicima ako možete.',
- 'aboutus-rules2' => 'Da pročitate pravila u potpunosti i da ih poštujete!',
- 'aboutus-rules3' => 'Napravite sugestije! Težimo da svaki dan učinimo: naslov bolje. Mi ne kažemo da će svaki prijedlog biti korišten, ali nikada ne boli vidjeti nove ideje.',
- 'aboutus-welcome' => 'Pričajmo o tome',
- 'aboutus-welcome-desc' => ': title je baza filmova / TV / FANRES izgrađena u zajednici . Svaki komad podataka je dodan od strane naše neverovatne zajednice od 2017. godine: naslovi snažan fokus su na HD sadržaju, proaktivnoj korisničkoj bazi, odličnoj / sigurnoj bazi koda i uslužnom timu.',
- 'blacklist-browsers' => 'Browsers',
- 'blacklist-btclient' => 'BitTorrent Client',
- 'blacklist-clients' => 'Klijenti',
- 'blacklist-desc' => 'Sljedeći preglednici i bittorrent klijenti su na crnoj listi / zabranjeni iz objavljivanja na: naslov',
- 'blacklist-webbrowser' => 'Web preglednik',
+ 'aboutus-advantage' => 'Prednost',
+ 'aboutus-advantage1' => 'Imamo iskusne članove i osoblje koje su dobro upoznati sa svetom HD video / audio i tehničke podrške.',
+ 'aboutus-advantage2' => 'Uz našu veliku strast prema filmovima i TV emisijama, nudimo i jednu od najboljih selekcija nečega što najviše - FANRES! VELIKO HVALIMO našim donositeljima sadržaja.',
+ 'aboutus-advantage3' => 'Dok mi prihvaćamo donacije kako bismo zadržali stranicu i pokrenuli je, neće biti nikakvih gnjavitelja ili banera na licu mjesta. Ne molim od nas.',
+ 'aboutus-advantage4' => 'Naša zajednica nema premca u ranoj dobi. Između našeg osoblja i korisničke baze, uvek smo bili tu da vam pomognemo. Bili smo strastveni da se pobrinemo da vaše iskustvo na: naslovu nije ništa drugo do neverovatno.',
+ 'aboutus-advantage5' => 'Naše usluge svakodnevno koriste mnogi ljudi širom svijeta. Dokazali smo da nam je stalo do funkcionalnosti i sigurnosti naše baze koda i da se može pouzdati i osloniti se na nju. Naši programeri svakodnevno rade kako bi pružili zaista nex-gen kodnu bazu.',
+ 'aboutus-header' => 'Zdravo',
+ 'aboutus-rules' => 'Ono što nam je potrebno od vas',
+ 'aboutus-rules1' => 'Biti aktivan član zajednice! To znači produktivno uključivanje u razgovore, dodavanje odobrenog sadržaja i pomoć drugim korisnicima ako možete.',
+ 'aboutus-rules2' => 'Da pročitate pravila u potpunosti i da ih poštujete!',
+ 'aboutus-rules3' => 'Napravite sugestije! Težimo da svaki dan učinimo: naslov bolje. Mi ne kažemo da će svaki prijedlog biti korišten, ali nikada ne boli vidjeti nove ideje.',
+ 'aboutus-welcome' => 'Pričajmo o tome',
+ 'aboutus-welcome-desc' => ': title je baza filmova / TV / FANRES izgrađena u zajednici . Svaki komad podataka je dodan od strane naše neverovatne zajednice od 2017. godine: naslovi snažan fokus su na HD sadržaju, proaktivnoj korisničkoj bazi, odličnoj / sigurnoj bazi koda i uslužnom timu.',
+ 'blacklist-browsers' => 'Browsers',
+ 'blacklist-btclient' => 'BitTorrent Client',
+ 'blacklist-clients' => 'Klijenti',
+ 'blacklist-desc' => 'Sljedeći preglednici i bittorrent klijenti su na crnoj listi / zabranjeni iz objavljivanja na: naslov',
+ 'blacklist-webbrowser' => 'Web preglednik',
'blacklist-emaildomain' => 'Blokirani domen',
- 'email-blacklist-desc' => 'Sledeći email domeni su blokirani od korišćenja. Ne možete se registrirati ili poslati poziv na sljedeće.',
- 'email-whitelist-desc' => 'Sledeće e-mail domene su jedini dozvoljeni email domeni koje treba koristiti. Možete samo da registrujete ili pošaljete pozivnicu koristeći sledeće.',
- 'staff-group' => 'Grupa',
- 'staff-title' => 'Naslov',
+ 'email-blacklist-desc' => 'Sledeći email domeni su blokirani od korišćenja. Ne možete se registrirati ili poslati poziv na sljedeće.',
+ 'email-whitelist-desc' => 'Sledeće e-mail domene su jedini dozvoljeni email domeni koje treba koristiti. Možete samo da registrujete ili pošaljete pozivnicu koristeći sledeće.',
+ 'staff-group' => 'Grupa',
+ 'staff-title' => 'Naslov',
'whitelist-emaildomain' => 'Pouzdani domen',
];
diff --git a/lang/bs/pagination.php b/lang/bs/pagination.php
index 89caa53b4..432786b6f 100644
--- a/lang/bs/pagination.php
+++ b/lang/bs/pagination.php
@@ -24,5 +24,5 @@ return [
*/
'previous' => '« Nazad',
- 'next' => 'Naprijed »',
+ 'next' => 'Naprijed »',
];
diff --git a/lang/bs/passwords.php b/lang/bs/passwords.php
index b46da7955..ecbe54014 100644
--- a/lang/bs/passwords.php
+++ b/lang/bs/passwords.php
@@ -24,8 +24,8 @@ return [
*/
'password' => 'Lozinke moraju da budu šest karaktera i da se slaže sa potvrdnom lozinkom.',
- 'reset' => 'Lozinka je resetovana!',
- 'sent' => 'Poslan vam je e-mail za povrat lozinke!',
- 'token' => 'Ovaj token za resetovanje lozinke nije ispravan.',
- 'user' => 'Ne može se pronaći korisnik sa tom e-mail adresom.',
+ 'reset' => 'Lozinka je resetovana!',
+ 'sent' => 'Poslan vam je e-mail za povrat lozinke!',
+ 'token' => 'Ovaj token za resetovanje lozinke nije ispravan.',
+ 'user' => 'Ne može se pronaći korisnik sa tom e-mail adresom.',
];
diff --git a/lang/bs/pm.php b/lang/bs/pm.php
index 5a6e0eb46..d16e0843a 100644
--- a/lang/bs/pm.php
+++ b/lang/bs/pm.php
@@ -12,28 +12,28 @@
*/
return [
- 'create' => 'Stvoriti',
- 'delete' => 'Izbriši',
+ 'create' => 'Stvoriti',
+ 'delete' => 'Izbriši',
'enter-subject' => 'Unesite predmet',
- 'from' => 'Od',
- 'inbox' => 'Inbox',
+ 'from' => 'Od',
+ 'inbox' => 'Inbox',
'mark-all-read' => 'Označite sve poruke kao pročitane',
- 'message' => 'Poruka',
- 'messages' => 'Poruke',
- 'new' => 'Nova poruka',
- 'outbox' => 'Outbox',
- 'private' => 'Privatno',
- 'read' => 'Pročitajte',
- 'received-at' => 'Received At',
- 'refresh' => 'Osvježiti',
- 'reply' => 'Odgovori',
- 'search' => 'Pretraga po predmetu',
- 'select' => 'Izaberite korisnika',
- 'send' => 'Send PM',
- 'send-to' => 'Pošalji PM To',
- 'sent' => 'Poslano',
- 'sent-at' => 'Sent At',
- 'subject' => 'Predmet',
- 'to' => 'To',
- 'unread' => 'Unread',
+ 'message' => 'Poruka',
+ 'messages' => 'Poruke',
+ 'new' => 'Nova poruka',
+ 'outbox' => 'Outbox',
+ 'private' => 'Privatno',
+ 'read' => 'Pročitajte',
+ 'received-at' => 'Received At',
+ 'refresh' => 'Osvježiti',
+ 'reply' => 'Odgovori',
+ 'search' => 'Pretraga po predmetu',
+ 'select' => 'Izaberite korisnika',
+ 'send' => 'Send PM',
+ 'send-to' => 'Pošalji PM To',
+ 'sent' => 'Poslano',
+ 'sent-at' => 'Sent At',
+ 'subject' => 'Predmet',
+ 'to' => 'To',
+ 'unread' => 'Unread',
];
diff --git a/lang/bs/poll.php b/lang/bs/poll.php
index fb2a13b33..1aa64db73 100644
--- a/lang/bs/poll.php
+++ b/lang/bs/poll.php
@@ -12,18 +12,18 @@
*/
return [
- 'add-option' => 'Dodaj opciju',
- 'create-poll' => 'Napravite anketu',
- 'current' => 'Trenutna anketa (e)',
- 'delete-option' => 'Izbriši opciju',
+ 'add-option' => 'Dodaj opciju',
+ 'create-poll' => 'Napravite anketu',
+ 'current' => 'Trenutna anketa (e)',
+ 'delete-option' => 'Izbriši opciju',
'multiple-choice' => 'Ovo je anketa sa višestrukim izborom. Izaberite onoliko odgovora koliko želite.',
- 'option' => 'Opcija',
- 'poll' => 'Poll',
- 'polls' => 'Ankete',
- 'results' => 'Rezultati ankete',
- 'title' => 'Naslov',
- 'total' => 'Ukupno glasova ikad',
- 'vote' => 'Glasajte',
- 'vote-now' => 'Get Your Vote In Now!',
- 'votes' => 'Glasovi',
+ 'option' => 'Opcija',
+ 'poll' => 'Poll',
+ 'polls' => 'Ankete',
+ 'results' => 'Rezultati ankete',
+ 'title' => 'Naslov',
+ 'total' => 'Ukupno glasova ikad',
+ 'vote' => 'Glasajte',
+ 'vote-now' => 'Get Your Vote In Now!',
+ 'votes' => 'Glasovi',
];
diff --git a/lang/bs/request.php b/lang/bs/request.php
index 1dbe2b3c1..8399ed870 100644
--- a/lang/bs/request.php
+++ b/lang/bs/request.php
@@ -12,67 +12,67 @@
*/
return [
- 'add-request' => 'Dodaj zahtjev',
- 'age' => 'Age',
- 'all-requests' => 'Svi zahtjevi',
- 'approve' => 'Odobri',
- 'bounty' => 'Bounty',
- 'bounty-claimed' => 'Bounty je tvrdio',
- 'bounty-unclaimed' => 'Bounty nije zatražen',
- 'category' => 'Kategorija',
- 'claim' => 'TVRDITI',
- 'claim-anon-choose' => 'Molim vas izaberite mudro',
- 'claim-as-anon' => 'Želite li ovo tvrditi samostalno',
- 'claim-now' => 'Zatražite sada',
- 'claimed' => 'Claimed',
- 'current' => 'Current',
- 'delete' => 'Izbrišite ovaj zahtjev',
+ 'add-request' => 'Dodaj zahtjev',
+ 'age' => 'Age',
+ 'all-requests' => 'Svi zahtjevi',
+ 'approve' => 'Odobri',
+ 'bounty' => 'Bounty',
+ 'bounty-claimed' => 'Bounty je tvrdio',
+ 'bounty-unclaimed' => 'Bounty nije zatražen',
+ 'category' => 'Kategorija',
+ 'claim' => 'TVRDITI',
+ 'claim-anon-choose' => 'Molim vas izaberite mudro',
+ 'claim-as-anon' => 'Želite li ovo tvrditi samostalno',
+ 'claim-now' => 'Zatražite sada',
+ 'claimed' => 'Claimed',
+ 'current' => 'Current',
+ 'delete' => 'Izbrišite ovaj zahtjev',
'delete-confirmation' => 'Jeste li sigurni da želite izbrisati ovaj zahtjev',
- 'delete-filled' => 'Ovaj zahtjev se može izbrisati samo ako nije popunjen',
- 'description' => 'Opis',
- 'dont-have-bps' => 'Nemate dovoljno bonusa',
- 'edit-request' => 'Uredi zahtjev',
- 'enter-bp' => 'Unesite bonus bodove (minimum 100)',
- 'enter-hash' => 'Unesite Info Hash za učitani Torrent',
- 'fill' => 'Fill',
- 'fill-request' => 'Ispunite ovaj zahtjev',
- 'filled' => 'Filled',
- 'filled-by' => 'Ispunjen',
- 'for' => 'for',
- 'fulfill' => 'Fulfill',
- 'last-vote' => 'Last vote',
- 'my-requests' => 'Moji zahtjevi',
- 'no' => 'Ne,',
- 'no-imdb-id' => 'Svi zahtjevi moraju sadržavati IMDB broj',
- 'no-privileges' => 'Greška: Vaša prava na zahtev su onemogućena',
- 'no-privileges-desc' => 'Ako mislite da je ovo greška, obratite se osoblju',
- 'no-refunds' => 'BON razmene o stvaranju, punjenju i nagradama su konačne!
NO REFUNDS!',
- 'pending' => 'Na čekanju',
- 'reason' => 'Razlog',
- 'reject' => 'Odbaci',
- 'report' => 'Prijavi zahtjev',
- 'request' => 'Zahtev',
- 'request-details' => 'Zatražite detalje',
- 'requested-by' => 'Traži',
- 'requests' => 'Zahtjevi',
- 'required' => 'Obavezno',
- 'reset' => 'Resetovati',
- 'reset-confirmation' => 'Jeste li sigurni da želite poništiti ovaj zahtjev',
- 'reset-request' => 'Poništite ovaj zahtjev',
- 'reward' => 'Nagrada',
- 'reward-desc' => 'Koliko bonus bodova želite da nagradite? Minimum 100 BP',
- 'reward-from' => 'Od',
- 'title' => 'Naslov',
- 'torrent-hash' => 'Torrent Hash',
- 'total-bounty' => 'Total Bounty',
- 'type' => 'Tip',
- 'unclaim' => 'Ne zatražite ovaj zahtjev',
- 'unfilled' => 'Unfilled',
- 'view-filled' => 'View ispunjen',
- 'view-unfilled' => 'View unfilled',
- 'vote' => 'Glasajte',
- 'vote-that' => 'Glasajte za ovaj zahtjev',
- 'voters' => 'Glasači',
- 'votes' => 'Glasovi',
- 'yes' => 'Da',
+ 'delete-filled' => 'Ovaj zahtjev se može izbrisati samo ako nije popunjen',
+ 'description' => 'Opis',
+ 'dont-have-bps' => 'Nemate dovoljno bonusa',
+ 'edit-request' => 'Uredi zahtjev',
+ 'enter-bp' => 'Unesite bonus bodove (minimum 100)',
+ 'enter-hash' => 'Unesite Info Hash za učitani Torrent',
+ 'fill' => 'Fill',
+ 'fill-request' => 'Ispunite ovaj zahtjev',
+ 'filled' => 'Filled',
+ 'filled-by' => 'Ispunjen',
+ 'for' => 'for',
+ 'fulfill' => 'Fulfill',
+ 'last-vote' => 'Last vote',
+ 'my-requests' => 'Moji zahtjevi',
+ 'no' => 'Ne,',
+ 'no-imdb-id' => 'Svi zahtjevi moraju sadržavati IMDB broj',
+ 'no-privileges' => 'Greška: Vaša prava na zahtev su onemogućena',
+ 'no-privileges-desc' => 'Ako mislite da je ovo greška, obratite se osoblju',
+ 'no-refunds' => 'BON razmene o stvaranju, punjenju i nagradama su konačne!
NO REFUNDS!',
+ 'pending' => 'Na čekanju',
+ 'reason' => 'Razlog',
+ 'reject' => 'Odbaci',
+ 'report' => 'Prijavi zahtjev',
+ 'request' => 'Zahtev',
+ 'request-details' => 'Zatražite detalje',
+ 'requested-by' => 'Traži',
+ 'requests' => 'Zahtjevi',
+ 'required' => 'Obavezno',
+ 'reset' => 'Resetovati',
+ 'reset-confirmation' => 'Jeste li sigurni da želite poništiti ovaj zahtjev',
+ 'reset-request' => 'Poništite ovaj zahtjev',
+ 'reward' => 'Nagrada',
+ 'reward-desc' => 'Koliko bonus bodova želite da nagradite? Minimum 100 BP',
+ 'reward-from' => 'Od',
+ 'title' => 'Naslov',
+ 'torrent-hash' => 'Torrent Hash',
+ 'total-bounty' => 'Total Bounty',
+ 'type' => 'Tip',
+ 'unclaim' => 'Ne zatražite ovaj zahtjev',
+ 'unfilled' => 'Unfilled',
+ 'view-filled' => 'View ispunjen',
+ 'view-unfilled' => 'View unfilled',
+ 'vote' => 'Glasajte',
+ 'vote-that' => 'Glasajte za ovaj zahtjev',
+ 'voters' => 'Glasači',
+ 'votes' => 'Glasovi',
+ 'yes' => 'Da',
];
diff --git a/lang/bs/rss.php b/lang/bs/rss.php
index 24d9f93a5..a988864f0 100644
--- a/lang/bs/rss.php
+++ b/lang/bs/rss.php
@@ -12,19 +12,19 @@
*/
return [
- 'create' => 'Stvoriti',
+ 'create' => 'Stvoriti',
'create-private-feed' => 'Kreirajte privatni RSS kanal',
- 'create-public-feed' => 'Kreirajte javni RSS kanal',
- 'delete' => 'Izbriši',
- 'edit' => 'Uredi',
- 'edit-private-feed' => 'Uredi Privatni RSS kanal',
- 'edit-public-feed' => 'Uredi javni RSS kanal',
- 'feed' => 'Feed',
- 'feeds' => 'Feeds',
- 'name' => 'Ime',
- 'public' => 'Public',
- 'private' => 'Privatno',
- 'rss' => 'RSS',
- 'rss-feed' => 'RSS Feed',
- 'type' => 'Tip',
+ 'create-public-feed' => 'Kreirajte javni RSS kanal',
+ 'delete' => 'Izbriši',
+ 'edit' => 'Uredi',
+ 'edit-private-feed' => 'Uredi Privatni RSS kanal',
+ 'edit-public-feed' => 'Uredi javni RSS kanal',
+ 'feed' => 'Feed',
+ 'feeds' => 'Feeds',
+ 'name' => 'Ime',
+ 'public' => 'Public',
+ 'private' => 'Privatno',
+ 'rss' => 'RSS',
+ 'rss-feed' => 'RSS Feed',
+ 'type' => 'Tip',
];
diff --git a/lang/bs/staff.php b/lang/bs/staff.php
index f60f81d94..dffd3b072 100644
--- a/lang/bs/staff.php
+++ b/lang/bs/staff.php
@@ -12,48 +12,48 @@
*/
return [
- 'audit-log' => 'Dnevnik aktivnosti',
- 'articles' => 'Članci',
- 'applications' => 'Aplikacije',
- 'bans-log' => 'Bans Log',
- 'blocks' => 'Blokovi',
- 'bot' => 'Bot',
- 'bots' => 'Bots',
- 'chat' => 'Chat',
- 'config-manager' => 'Config Manager',
- 'dashboard' => 'Dashboard',
- 'failed-login-log' => 'Neuspelo prijavljivanje',
- 'flush-ghost-peers' => 'Flush Ghost Peers',
- 'forums' => 'Forumi',
- 'frontend' => 'Frontend',
- 'general-tools' => 'General Tools',
- 'groups' => 'Grupe',
- 'invites-log' => 'Invites Log',
- 'laravel-log' => 'Laravel Log',
- 'links' => 'Linkovi',
- 'logs' => 'Logs',
- 'mass-pm' => 'Mass PM',
- 'mass-validate-users' => 'Korisnici s valjanom masom',
- 'moderation' => 'Moderacija',
- 'pages' => 'Pages',
- 'please-moderate' => 'Molim Moderator This Torrent!',
- 'polls' => 'Ankete',
- 'reports-log' => 'Dnevnik izvještaja',
- 'rss' => 'RSS',
- 'staff-dashboard' => 'Nadzorna ploča osoblja',
- 'torrent-categories' => 'Torrent Categories',
- 'torrent-moderation' => 'Torrent Moderation',
- 'torrent-tools' => 'Torrent Tools',
- 'torrent-types' => 'Torrent Types',
- 'torrents' => 'Torrents',
- 'user-gifting' => 'User Gifting',
- 'user-notes' => 'Dnevnik korisnika',
- 'user-search' => 'Pretraga korisnika',
- 'user-tools' => 'Korisnički alati',
- 'warnings-log' => 'Dnevnik upozorenja',
- 'you-have' => 'Ti imaš',
+ 'audit-log' => 'Dnevnik aktivnosti',
+ 'articles' => 'Članci',
+ 'applications' => 'Aplikacije',
+ 'bans-log' => 'Bans Log',
+ 'blocks' => 'Blokovi',
+ 'bot' => 'Bot',
+ 'bots' => 'Bots',
+ 'chat' => 'Chat',
+ 'config-manager' => 'Config Manager',
+ 'dashboard' => 'Dashboard',
+ 'failed-login-log' => 'Neuspelo prijavljivanje',
+ 'flush-ghost-peers' => 'Flush Ghost Peers',
+ 'forums' => 'Forumi',
+ 'frontend' => 'Frontend',
+ 'general-tools' => 'General Tools',
+ 'groups' => 'Grupe',
+ 'invites-log' => 'Invites Log',
+ 'laravel-log' => 'Laravel Log',
+ 'links' => 'Linkovi',
+ 'logs' => 'Logs',
+ 'mass-pm' => 'Mass PM',
+ 'mass-validate-users' => 'Korisnici s valjanom masom',
+ 'moderation' => 'Moderacija',
+ 'pages' => 'Pages',
+ 'please-moderate' => 'Molim Moderator This Torrent!',
+ 'polls' => 'Ankete',
+ 'reports-log' => 'Dnevnik izvještaja',
+ 'rss' => 'RSS',
+ 'staff-dashboard' => 'Nadzorna ploča osoblja',
+ 'torrent-categories' => 'Torrent Categories',
+ 'torrent-moderation' => 'Torrent Moderation',
+ 'torrent-tools' => 'Torrent Tools',
+ 'torrent-types' => 'Torrent Types',
+ 'torrents' => 'Torrents',
+ 'user-gifting' => 'User Gifting',
+ 'user-notes' => 'Dnevnik korisnika',
+ 'user-search' => 'Pretraga korisnika',
+ 'user-tools' => 'Korisnički alati',
+ 'warnings-log' => 'Dnevnik upozorenja',
+ 'you-have' => 'Ti imaš',
'possible-leech-cheaters' => 'Mogući varalice',
- 'chat-tools' => 'Chat Tools',
- 'flush-chat' => 'Flush Chatbox',
- 'seedboxes' => 'Registered Seedboxes',
+ 'chat-tools' => 'Chat Tools',
+ 'flush-chat' => 'Flush Chatbox',
+ 'seedboxes' => 'Registered Seedboxes',
];
diff --git a/lang/bs/stat.php b/lang/bs/stat.php
index 4d5372f33..5c73d1c81 100644
--- a/lang/bs/stat.php
+++ b/lang/bs/stat.php
@@ -12,40 +12,40 @@
*/
return [
- 'by-count' => 'By Count',
- 'by-data' => 'By Data',
- 'by-volume' => 'By Volume',
- 'group' => 'Grupa',
- 'groups' => 'Grupe',
- 'nerd-stats' => 'Nerd stats',
- 'nerd-stats-desc' => 'Mi svi volimo statistiku. Evo nekoliko koje smatramo važnim',
- 'registration-date' => 'Datum registracije',
- 'request-fulfilled' => 'Zahtjev je ispunjen',
- 'request-not-fulfilled' => 'Zahtjev nije ispunjen',
+ 'by-count' => 'By Count',
+ 'by-data' => 'By Data',
+ 'by-volume' => 'By Volume',
+ 'group' => 'Grupa',
+ 'groups' => 'Grupe',
+ 'nerd-stats' => 'Nerd stats',
+ 'nerd-stats-desc' => 'Mi svi volimo statistiku. Evo nekoliko koje smatramo važnim',
+ 'registration-date' => 'Datum registracije',
+ 'request-fulfilled' => 'Zahtjev je ispunjen',
+ 'request-not-fulfilled' => 'Zahtjev nije ispunjen',
'request-pending-aproval' => 'Zahtev za odobrenje',
- 'select-category' => 'Odaberite kategoriju ispod',
- 'site-stats' => 'Statistika sajta',
- 'stats' => 'Stats',
- 'stats-format' => 'Sve statistike prikazane u Top 100 formatu',
- 'top-bankers' => 'Top Bankers',
- 'top-bountied' => 'Top Bountied',
- 'top-completed' => 'Top Completed',
- 'top-dead' => 'Top Dead',
- 'top-downloaded' => 'Top Download Torrents',
- 'top-downloaders' => 'Top Downloaders',
- 'top-dying' => 'Top Dying',
- 'top-leeched' => 'Top Leeched',
- 'top-leechers' => 'Top Leechers',
- 'top-seeded' => 'Top Seeded',
- 'top-seeding' => 'Top Seeding',
- 'top-seeders' => 'Top Seeders',
- 'top-seedsize' => 'Top Seedsize',
- 'top-seedtime' => 'Top Seedtime',
- 'top-uploaders' => 'Top Uploaders',
- 'total-download' => 'Total Download',
- 'total-torrents' => 'Total Torrents',
- 'total-traffic' => 'Total Traffic',
- 'total-upload' => 'Ukupno učitavanje',
- 'users-in-group' => 'Korisnici u grupi',
- 'users-per-group' => 'Korisnici po grupi',
+ 'select-category' => 'Odaberite kategoriju ispod',
+ 'site-stats' => 'Statistika sajta',
+ 'stats' => 'Stats',
+ 'stats-format' => 'Sve statistike prikazane u Top 100 formatu',
+ 'top-bankers' => 'Top Bankers',
+ 'top-bountied' => 'Top Bountied',
+ 'top-completed' => 'Top Completed',
+ 'top-dead' => 'Top Dead',
+ 'top-downloaded' => 'Top Download Torrents',
+ 'top-downloaders' => 'Top Downloaders',
+ 'top-dying' => 'Top Dying',
+ 'top-leeched' => 'Top Leeched',
+ 'top-leechers' => 'Top Leechers',
+ 'top-seeded' => 'Top Seeded',
+ 'top-seeding' => 'Top Seeding',
+ 'top-seeders' => 'Top Seeders',
+ 'top-seedsize' => 'Top Seedsize',
+ 'top-seedtime' => 'Top Seedtime',
+ 'top-uploaders' => 'Top Uploaders',
+ 'total-download' => 'Total Download',
+ 'total-torrents' => 'Total Torrents',
+ 'total-traffic' => 'Total Traffic',
+ 'total-upload' => 'Ukupno učitavanje',
+ 'users-in-group' => 'Korisnici u grupi',
+ 'users-per-group' => 'Korisnici po grupi',
];
diff --git a/lang/bs/torrent.php b/lang/bs/torrent.php
index d4d1ae558..0ff0e988a 100644
--- a/lang/bs/torrent.php
+++ b/lang/bs/torrent.php
@@ -12,197 +12,197 @@
*/
return [
- 'activity' => 'Aktivnost',
- 'age' => 'Age',
- 'agent' => 'Agent',
- 'alive' => 'Živ',
- 'announce-url' => 'Announce URL',
- 'announce-url-desc' => 'Molimo koristite gornji URL za objavljivanje prilikom kreiranja novog torrenta. Ako želite da koristite torrent bez preuzimanja sa sajta, potrebno je da postavite privatnu zastavu i izvor na: source',
- 'announce-url-desc-url' => 'Imaš problema? Pogledajte naš Vodič OVDJE',
- 'announce-url-desc2' => 'TMDB i IMDB su potrebni za sve slike! Koristi se za hvatanje plakata / pozadina i ExtraInfo',
- 'approved' => 'Odobreno',
- 'audio' => 'Audio',
- 'bon-tipped' => 'BON Tipped',
- 'bookmark' => 'Bookmark',
- 'bookmarks' => 'Bookmarks',
- 'bump' => 'Bump',
- 'cant-upload' => 'Greška: Vaša prava prenosa su onemogućena',
- 'cant-upload-desc' => 'Ako osećate da je ovo greška, molimo vas da kontaktirate osoblje',
- 'cards' => 'Kartice',
- 'cards-view' => 'Torrent Cards View',
- 'categories' => 'Kategorije',
- 'category' => 'Kategorija',
- 'client' => 'Klijent',
- 'commited' => 'Commited',
- 'completed' => 'Završeno',
- 'completed_at' => 'Završeno na',
- 'completed-not-seeding' => 'Završili ste ovaj download, ali ga više ne sijate',
- 'created_at' => 'Created at',
- 'credited' => 'Credited',
- 'current' => 'Current',
- 'current-filters' => 'Current Filters',
- 'currently-leeching' => 'Currently Leeching',
- 'currently-seeding' => 'Trenutno seje',
- 'dead-torrent' => 'Dead Torrent',
- 'dead-torrents' => 'Dead Torrents',
- 'delete-bookmark' => 'Izbriši ovu oznaku',
- 'description' => 'Opis',
- 'discounts' => 'Popusti',
- 'double-upload' => 'Double Upload',
- 'download-all' => 'Download All',
- 'download-check' => 'Download check',
- 'downloaded' => 'Downloaded',
- 'dying-torrent' => 'Dying Torrent',
- 'dying-torrents' => 'Dying Torrents',
- 'encode-settings' => 'Encode Settings',
- 'estimated-ratio' => 'Procijenjeni omjer nakon preuzimanja',
- 'failed' => 'Failed',
- 'feature' => 'Feature',
- 'featured' => 'Featured',
- 'featured-desc' => 'Featured torrents are 100% besplatno i Double Upload!',
- 'featured-until' => 'Ovo je do sada predstavljen Torrent',
- 'file' => 'File',
- 'filters' => 'Filteri',
- 'fl-tokens-left' => 'Ti imaš : preostali tokeni',
- 'freeleech' => 'Freeleech',
- 'freeleech-token' => 'Freeleech Token',
- 'general' => 'General',
- 'genre' => 'Žanr',
- 'global-double-upload' => 'Globalno dvostruko učitavanje',
- 'global-freeleech' => 'Global Freeleech',
- 'grant' => 'Grant',
- 'greater-than' => 'Veci nego',
- 'grouping' => 'Grupiranje',
- 'groupings' => 'Grupiranje',
- 'grouping-categories' => 'Kategorije grupiranja',
+ 'activity' => 'Aktivnost',
+ 'age' => 'Age',
+ 'agent' => 'Agent',
+ 'alive' => 'Živ',
+ 'announce-url' => 'Announce URL',
+ 'announce-url-desc' => 'Molimo koristite gornji URL za objavljivanje prilikom kreiranja novog torrenta. Ako želite da koristite torrent bez preuzimanja sa sajta, potrebno je da postavite privatnu zastavu i izvor na: source',
+ 'announce-url-desc-url' => 'Imaš problema? Pogledajte naš Vodič OVDJE',
+ 'announce-url-desc2' => 'TMDB i IMDB su potrebni za sve slike! Koristi se za hvatanje plakata / pozadina i ExtraInfo',
+ 'approved' => 'Odobreno',
+ 'audio' => 'Audio',
+ 'bon-tipped' => 'BON Tipped',
+ 'bookmark' => 'Bookmark',
+ 'bookmarks' => 'Bookmarks',
+ 'bump' => 'Bump',
+ 'cant-upload' => 'Greška: Vaša prava prenosa su onemogućena',
+ 'cant-upload-desc' => 'Ako osećate da je ovo greška, molimo vas da kontaktirate osoblje',
+ 'cards' => 'Kartice',
+ 'cards-view' => 'Torrent Cards View',
+ 'categories' => 'Kategorije',
+ 'category' => 'Kategorija',
+ 'client' => 'Klijent',
+ 'commited' => 'Commited',
+ 'completed' => 'Završeno',
+ 'completed_at' => 'Završeno na',
+ 'completed-not-seeding' => 'Završili ste ovaj download, ali ga više ne sijate',
+ 'created_at' => 'Created at',
+ 'credited' => 'Credited',
+ 'current' => 'Current',
+ 'current-filters' => 'Current Filters',
+ 'currently-leeching' => 'Currently Leeching',
+ 'currently-seeding' => 'Trenutno seje',
+ 'dead-torrent' => 'Dead Torrent',
+ 'dead-torrents' => 'Dead Torrents',
+ 'delete-bookmark' => 'Izbriši ovu oznaku',
+ 'description' => 'Opis',
+ 'discounts' => 'Popusti',
+ 'double-upload' => 'Double Upload',
+ 'download-all' => 'Download All',
+ 'download-check' => 'Download check',
+ 'downloaded' => 'Downloaded',
+ 'dying-torrent' => 'Dying Torrent',
+ 'dying-torrents' => 'Dying Torrents',
+ 'encode-settings' => 'Encode Settings',
+ 'estimated-ratio' => 'Procijenjeni omjer nakon preuzimanja',
+ 'failed' => 'Failed',
+ 'feature' => 'Feature',
+ 'featured' => 'Featured',
+ 'featured-desc' => 'Featured torrents are 100% besplatno i Double Upload!',
+ 'featured-until' => 'Ovo je do sada predstavljen Torrent',
+ 'file' => 'File',
+ 'filters' => 'Filteri',
+ 'fl-tokens-left' => 'Ti imaš : preostali tokeni',
+ 'freeleech' => 'Freeleech',
+ 'freeleech-token' => 'Freeleech Token',
+ 'general' => 'General',
+ 'genre' => 'Žanr',
+ 'global-double-upload' => 'Globalno dvostruko učitavanje',
+ 'global-freeleech' => 'Global Freeleech',
+ 'grant' => 'Grant',
+ 'greater-than' => 'Veci nego',
+ 'grouping' => 'Grupiranje',
+ 'groupings' => 'Grupiranje',
+ 'grouping-categories' => 'Kategorije grupiranja',
'grouping-categories-desc' => 'Koju kategoriju želite grupisati?',
- 'grouping-results' => 'Rezultati grupiranja',
- 'groupings-view' => 'Pregled grupa',
- 'have-completed' => 'Završeno',
- 'have-downloaded' => 'Downloaded',
- 'have-not-completed' => 'Nije dovršeno',
- 'have-not-downloaded' => 'Nije preuzeto',
- 'health' => 'Zdravlje',
- 'history' => 'istorija',
- 'hitrun' => 'H&R?',
- 'hit-and-runs' => 'Hit i Run se računa',
- 'immune' => 'Imun?',
- 'info' => 'Info',
- 'internal' => 'Interno',
- 'internal-release' => 'Interno izdanje',
- 'last-seed-activity' => 'Posljednja aktivnost sjemena',
- 'last-seeder' => 'Vi ste posljednji preostali sijač! (je preuzeto 3 puta)',
- 'last-update' => 'Last update',
- 'leave-tip' => 'Ostavi vrh',
- 'leecher' => 'Leecher',
- 'leechers' => 'Leechers',
- 'leeching' => 'Leeching',
- 'left' => 'Levo',
- 'legendary-seeder' => 'Legendary seeder',
- 'legendary-torrent' => 'Legendary torrent',
- 'list' => 'List',
- 'me' => 'Ja',
- 'media-info' => 'MediaInfo',
- 'media-info-parser' => 'MediaInfo Parser',
- 'media-info-paste' => 'Zalijepite MediaInfo dump ovdje',
- 'meta-desc' => 'Preuzimanje: ime pri maksimalnoj brzini',
- 'moderation' => 'Moderacija',
- 'movies' => 'Filmovi',
- 'mvp' => 'MVP',
- 'my-active-torrents' => 'Moji aktivni tokovi',
- 'name' => 'Ime',
- 'no-bookmarks' => 'Nema pronađenih oznaka.',
- 'no-discounts' => 'Trenutno nema popusta',
- 'no-meta' => 'Nisu pronađeni metapodaci',
- 'no-privileges' => 'Niste u mogućnosti da preuzmete ovu datoteku - molimo Vas da provjerite niže za više informacija',
- 'no-privileges-desc' => 'Molimo Vas da riješite neuspješne rezultate gore za pojavljivanje gumba za preuzimanje',
- 'not-completed' => 'Počelo je preuzimanje, ali nikada nije dovršeno',
- 'not-downloaded' => 'Nije preuzeto',
- 'old-torrent' => 'Old torrent',
- 'optional' => 'Opcionalno',
- 'original-output' => 'Prikaži / Sakrij izvorni izlaz',
- 'participant' => 'Učesnik',
- 'passed' => 'Passed',
- 'peers' => 'Peers',
- 'pending' => 'Na čekanju',
- 'personal-freeleech' => 'Personal Freeleech',
- 'poster' => 'Poster',
- 'poster-view' => 'Poster view',
- 'posters' => 'Posteri',
- 'prewarn' => 'Prewarned?',
- 'progress' => 'Napredak',
- 'quick-comment' => 'Brzi komentar',
- 'quick-tip' => 'Brzi saveti',
- 'rated' => 'Ocjenjen',
- 'rating' => 'Rating',
- 'ready' => 'Ova datoteka je spremna za preuzimanje',
- 'rejected' => 'Odbijeno',
- 'released' => 'Released',
- 'remaining' => 'Preostalo',
- 'request-reseed' => 'Request Reseed',
- 'requires-reseed' => 'Zahteva Reseed',
- 'resurrections' => 'Resurrections',
- 'revoke' => 'Opozovi',
- 'rss' => 'RSS',
- 'runtime' => 'Runtime',
- 'satisfied_in' => 'Zadovoljan',
- 'say-thanks' => 'Ne zaboravite da kažete hvala i sjeme koliko god možete',
- 'sd-content' => 'SD sadržaj',
- 'search' => 'Search',
- 'seed-time' => 'Vrijeme sjemena',
- 'seeder' => 'Seeder',
- 'seeders' => 'Seeders',
- 'seeding' => 'Seeding',
- 'seedsize' => 'Seedsize',
- 'seedtime' => 'Seedtime',
- 'short-completed' => 'C',
- 'short-leechs' => 'L',
- 'short-seeds' => 'S',
- 'show-files' => 'Prikaži datoteke',
- 'similar' => 'Similar Torrents',
- 'size' => 'Veličina',
- 'special' => 'Poseban',
- 'special-freeleech' => 'Special Freeleech',
- 'started' => 'Started',
- 'status' => 'Status',
- 'statistics' => 'Statistika',
- 'stats' => 'Stats',
- 'sticky' => 'Sticky',
- 'stream-optimized' => 'Stream optimiziran',
- 'subtitle' => 'Subtitle',
- 'team-player' => 'Timski igrač',
- 'thank' => 'Hvala',
- 'thanked' => 'Hvala',
- 'thanks' => 'Hvala',
- 'thanks-given' => 'Thanks given',
- 'times' => 'Times',
- 'tip-jar' => 'Save jar',
- 'title' => 'Naslov',
- 'titles' => 'Naslovi',
- 'top-completed' => 'Top completed',
- 'top-dead' => 'Vrh mrtvih',
- 'top-dying' => 'Top dying',
- 'top-leeched' => 'Top leeched',
- 'top-seeded' => 'Top seeded',
- 'torrent' => 'Torrent',
- 'torrent-request' => 'Torrent Request',
- 'torrent-tips' => 'Ukupno : ukupan BON je preusmjeren korisniku koji je korisnik , od čega : korisnik je od vas',
- 'torrent-tips-desc' => 'Ovo će se oduzeti od vaših dostupnih bonus poena',
- 'torrents' => 'Torrents',
- 'trailer' => 'View trailer',
- 'type' => 'Tip',
- 'types' => 'Vrste',
- 'unbookmark' => 'Unbookmark',
- 'unsatisfieds' => 'Nezadovoljni',
- 'unsticky' => 'Unsticky',
- 'updated' => 'Ažurirano',
- 'updated_at' => 'Updated at',
- 'uploaded' => 'Uploaded',
- 'uploaded-by' => 'Uploaded By',
- 'uploader' => 'Uploader',
- 'use-fl-token' => 'Koristite Freeleech Token',
- 'video' => 'Video',
- 'view-more' => 'Vidi više',
- 'view-trailer' => 'View trailer',
- 'votes' => 'Glasovi',
+ 'grouping-results' => 'Rezultati grupiranja',
+ 'groupings-view' => 'Pregled grupa',
+ 'have-completed' => 'Završeno',
+ 'have-downloaded' => 'Downloaded',
+ 'have-not-completed' => 'Nije dovršeno',
+ 'have-not-downloaded' => 'Nije preuzeto',
+ 'health' => 'Zdravlje',
+ 'history' => 'istorija',
+ 'hitrun' => 'H&R?',
+ 'hit-and-runs' => 'Hit i Run se računa',
+ 'immune' => 'Imun?',
+ 'info' => 'Info',
+ 'internal' => 'Interno',
+ 'internal-release' => 'Interno izdanje',
+ 'last-seed-activity' => 'Posljednja aktivnost sjemena',
+ 'last-seeder' => 'Vi ste posljednji preostali sijač! (je preuzeto 3 puta)',
+ 'last-update' => 'Last update',
+ 'leave-tip' => 'Ostavi vrh',
+ 'leecher' => 'Leecher',
+ 'leechers' => 'Leechers',
+ 'leeching' => 'Leeching',
+ 'left' => 'Levo',
+ 'legendary-seeder' => 'Legendary seeder',
+ 'legendary-torrent' => 'Legendary torrent',
+ 'list' => 'List',
+ 'me' => 'Ja',
+ 'media-info' => 'MediaInfo',
+ 'media-info-parser' => 'MediaInfo Parser',
+ 'media-info-paste' => 'Zalijepite MediaInfo dump ovdje',
+ 'meta-desc' => 'Preuzimanje: ime pri maksimalnoj brzini',
+ 'moderation' => 'Moderacija',
+ 'movies' => 'Filmovi',
+ 'mvp' => 'MVP',
+ 'my-active-torrents' => 'Moji aktivni tokovi',
+ 'name' => 'Ime',
+ 'no-bookmarks' => 'Nema pronađenih oznaka.',
+ 'no-discounts' => 'Trenutno nema popusta',
+ 'no-meta' => 'Nisu pronađeni metapodaci',
+ 'no-privileges' => 'Niste u mogućnosti da preuzmete ovu datoteku - molimo Vas da provjerite niže za više informacija',
+ 'no-privileges-desc' => 'Molimo Vas da riješite neuspješne rezultate gore za pojavljivanje gumba za preuzimanje',
+ 'not-completed' => 'Počelo je preuzimanje, ali nikada nije dovršeno',
+ 'not-downloaded' => 'Nije preuzeto',
+ 'old-torrent' => 'Old torrent',
+ 'optional' => 'Opcionalno',
+ 'original-output' => 'Prikaži / Sakrij izvorni izlaz',
+ 'participant' => 'Učesnik',
+ 'passed' => 'Passed',
+ 'peers' => 'Peers',
+ 'pending' => 'Na čekanju',
+ 'personal-freeleech' => 'Personal Freeleech',
+ 'poster' => 'Poster',
+ 'poster-view' => 'Poster view',
+ 'posters' => 'Posteri',
+ 'prewarn' => 'Prewarned?',
+ 'progress' => 'Napredak',
+ 'quick-comment' => 'Brzi komentar',
+ 'quick-tip' => 'Brzi saveti',
+ 'rated' => 'Ocjenjen',
+ 'rating' => 'Rating',
+ 'ready' => 'Ova datoteka je spremna za preuzimanje',
+ 'rejected' => 'Odbijeno',
+ 'released' => 'Released',
+ 'remaining' => 'Preostalo',
+ 'request-reseed' => 'Request Reseed',
+ 'requires-reseed' => 'Zahteva Reseed',
+ 'resurrections' => 'Resurrections',
+ 'revoke' => 'Opozovi',
+ 'rss' => 'RSS',
+ 'runtime' => 'Runtime',
+ 'satisfied_in' => 'Zadovoljan',
+ 'say-thanks' => 'Ne zaboravite da kažete hvala i sjeme koliko god možete',
+ 'sd-content' => 'SD sadržaj',
+ 'search' => 'Search',
+ 'seed-time' => 'Vrijeme sjemena',
+ 'seeder' => 'Seeder',
+ 'seeders' => 'Seeders',
+ 'seeding' => 'Seeding',
+ 'seedsize' => 'Seedsize',
+ 'seedtime' => 'Seedtime',
+ 'short-completed' => 'C',
+ 'short-leechs' => 'L',
+ 'short-seeds' => 'S',
+ 'show-files' => 'Prikaži datoteke',
+ 'similar' => 'Similar Torrents',
+ 'size' => 'Veličina',
+ 'special' => 'Poseban',
+ 'special-freeleech' => 'Special Freeleech',
+ 'started' => 'Started',
+ 'status' => 'Status',
+ 'statistics' => 'Statistika',
+ 'stats' => 'Stats',
+ 'sticky' => 'Sticky',
+ 'stream-optimized' => 'Stream optimiziran',
+ 'subtitle' => 'Subtitle',
+ 'team-player' => 'Timski igrač',
+ 'thank' => 'Hvala',
+ 'thanked' => 'Hvala',
+ 'thanks' => 'Hvala',
+ 'thanks-given' => 'Thanks given',
+ 'times' => 'Times',
+ 'tip-jar' => 'Save jar',
+ 'title' => 'Naslov',
+ 'titles' => 'Naslovi',
+ 'top-completed' => 'Top completed',
+ 'top-dead' => 'Vrh mrtvih',
+ 'top-dying' => 'Top dying',
+ 'top-leeched' => 'Top leeched',
+ 'top-seeded' => 'Top seeded',
+ 'torrent' => 'Torrent',
+ 'torrent-request' => 'Torrent Request',
+ 'torrent-tips' => 'Ukupno : ukupan BON je preusmjeren korisniku koji je korisnik , od čega : korisnik je od vas',
+ 'torrent-tips-desc' => 'Ovo će se oduzeti od vaših dostupnih bonus poena',
+ 'torrents' => 'Torrents',
+ 'trailer' => 'View trailer',
+ 'type' => 'Tip',
+ 'types' => 'Vrste',
+ 'unbookmark' => 'Unbookmark',
+ 'unsatisfieds' => 'Nezadovoljni',
+ 'unsticky' => 'Unsticky',
+ 'updated' => 'Ažurirano',
+ 'updated_at' => 'Updated at',
+ 'uploaded' => 'Uploaded',
+ 'uploaded-by' => 'Uploaded By',
+ 'uploader' => 'Uploader',
+ 'use-fl-token' => 'Koristite Freeleech Token',
+ 'video' => 'Video',
+ 'view-more' => 'Vidi više',
+ 'view-trailer' => 'View trailer',
+ 'votes' => 'Glasovi',
];
diff --git a/lang/bs/user.php b/lang/bs/user.php
index 6a189f8ca..fa0e2eb67 100644
--- a/lang/bs/user.php
+++ b/lang/bs/user.php
@@ -12,316 +12,316 @@
*/
return [
- 'about' => 'O nama',
- 'about-me' => 'O meni',
- 'accepted-at' => 'Prihvaćeno u',
- 'accepted-by' => 'Prihvaćeno',
- 'account-notification' => 'Postavke obavijesti o računu',
- 'account-notification-follow' => 'Primite obavijest kada korisnik prati vaš račun',
- 'account-notification-unfollow' => 'Primite obavijest kada korisnik ne slijedi vaš račun',
- 'account-notification-help' => 'Kontrolišite koje se obavijesti šalju u vezi vašeg računa. Ove postavke su poništene ako ne dozvolite nijednoj grupi da šalju obavijesti koje se odnose na vaš račun ili ako onemogućite obavijesti',
- 'account-settings' => 'Podešavanja naloga',
- 'achievement-privacy' => 'Achievement Settings',
- 'achievement-privacy-list' => 'Omogućite korisnicima da pregledaju listu vaših postignuća',
- 'achievement-help' => 'Kontrolišite dijeljenje specifičnih informacija vezanih za postignuće sa grupama kojima je dozvoljen pristup vašem profilu. Ove postavke su poništene ako ne dozvolite bilo kojoj grupi da pristupi vašim dostignućima ili ako idete Privatno',
- 'achievements' => 'Dostignuća',
- 'active' => 'Aktivno',
- 'active-table' => 'Moj aktivni sto',
- 'active-torrents' => 'Active torrents',
- 'active-warning' => 'Aktivno upozorenje',
- 'active-warnings' => 'Active Warnings',
- 'add-seedbox' => 'Dodaj Seedbox',
- 'all-torrents' => 'All Torrents',
- 'article-comments' => 'Article Comments Made',
- 'avatar' => 'Avatar',
- 'avg-seedtime' => 'Average Seedtime',
- 'badges' => 'Badges',
- 'ban' => 'Ban User',
- 'ban-log' => 'Ban Log',
- 'become-hidden' => 'Postani skriven',
- 'become-visible' => 'Postanite vidljivi',
- 'bon' => 'BON',
- 'bon-notification' => 'Postavke obavijesti BON-a',
- 'bon-notification-gift' => 'Primite obaveštenje kada vam korisnik pokloni bon',
- 'bon-notification-help' => 'Kontroliše koje se obavijesti šalju u vezi sa BON transakcijama. Ove postavke su poništene ako ne dozvolite bilo kojoj grupi da šalje obaveštenja o BON-u ili ako onemogućite obaveštenja',
- 'bookmarks' => 'Bookmarks',
- 'bounty-given' => 'Bounty Given',
- 'bounty-received' => 'Bounty Received',
- 'can-chat' => 'Can Chat',
- 'can-comment' => 'Can Comment',
- 'can-download' => 'Can Download',
- 'can-invite' => 'Can Invite',
- 'can-request' => 'Can Request',
- 'can-upload' => 'Can Upload',
- 'certified-banker' => 'Certified Banker',
- 'certified-banker-desc' => 'Ima 50.000 ili više BON-a u banci',
- 'certified-downloader' => 'Certified Downloader',
- 'certified-downloader-desc' => 'Preuzeto 100 or More Torrents!',
- 'certified-seeder' => 'Certified Seeder',
- 'certified-seeder-desc' => 'Sjedenje 150 ili više torenta!',
- 'change-email' => 'Promijeni e-mail',
- 'change-email-help' => 'Morat ćete ponovo potvrditi svoj račun, nakon što promijenite e-poštu',
- 'change-password' => 'Change Password',
- 'change-password-help' => 'Morate se ponovo prijaviti, nakon što promijenite lozinku',
- 'client-ip-address' => 'IP adresa klijenta',
- 'code' => 'Kod',
- 'comments' => 'Komentari',
- 'created-on' => 'Created on',
- 'credited-download' => 'Credited download',
- 'credited-upload' => 'Credited upload',
- 'current-password' => 'Trenutna šifra',
- 'custom-title' => 'Custom title',
- 'delete' => 'Brisanje korisnika',
- 'disable-notifications' => 'Onemogući obaveštenja',
- 'disclaimer' => 'Disclaimer',
- 'disclaimer-info' => 'Podrazumevano ne prijavljujemo IP adrese korisnika kao većinu trackera. Dodavanjem vašeg IP adresara u nastavku, očekuje se da znate da su vaši IP-ovi navedeni u nastavku pohranjeni u našoj bazi podataka ukoliko ne izbrišete zapise.',
- 'disclaimer-info-bordered' => 'Dodani Seedbox IP-ovi će onda pokrenuti high-tag torrent tag na torrent-ovima iz IP-ova koji su navedeni u nastavku',
- 'download-bon' => 'Preuzimanje je uklonjeno iz BON Store-a',
- 'download-recorded' => 'Snimljeno preuzimanje',
- 'download-true' => 'True Download',
- 'downloads' => 'Preuzimanja',
- 'edit' => 'Uredi korisnika',
- 'edit-profile' => 'Uredi profil',
- 'enable-notifications' => 'Omogući obaveštenja',
- 'expired' => 'Isteklo',
- 'expires-on' => 'Ističe na',
- 'extra' => 'Extra',
- 'filled-request' => 'Ispunjeni zahtjevi članova',
- 'follow' => 'Pratiti',
- 'follower-privacy' => 'Podešavanja sledbenika',
- 'follower-privacy-list' => 'Dozvolite korisnicima da vide listu svojih sljedbenika',
- 'follower-help' => 'Kontrolišite deljenje specifičnih informacija povezanih s sledbenicima sa grupama kojima je dozvoljen pristup vašem profilu. Ove postavke su poništene ako ne dozvolite bilo kojoj grupi da pristupe vašim sljedbenicima ili ako idete Privatno',
- 'followers' => 'Followers',
- 'following-notification' => 'Slijedi Postavke obavijesti korisnika',
- 'following-notification-upload' => 'Primite obavijest kada korisnik koji slijedi prenosi torrent',
- 'following-notification-help' => 'Kontrolišite koje se obavijesti šalju u vezi s postupcima praćenim korisničkim mjestima. Ova podešavanja su poništena ako ne dozvolite bilo kojoj grupi da šalje obaveštenja koja se odnose na praćene korisnike ili ako onemogućite obaveštenja',
- 'formats-are-supported' => ': podržani su formati',
- 'forum-notification' => 'Podešavanja obaveštenja foruma',
- 'forum-notification-topic' => 'Primite obavijest kada tema koju ste pokrenuli dobije novu poruku',
- 'forum-notification-help' => 'Kontrola koja obavještenja se šalju u vezi aktivnosti foruma. Ove postavke su poništene ako ne dozvolite bilo kojoj grupi da šalje obaveštenja o aktivnostima foruma ili ako onemogućite obaveštenja',
- 'forum-privacy' => 'Postavke foruma',
- 'forum-privacy-post' => 'Dozvolite korisnicima da pogledaju listu postova na forumu koje ste objavili',
- 'forum-privacy-topic' => 'Omogućite korisnicima da vide listu tema koje ste pokrenuli',
- 'forum-help' => 'Kontrolišite deljenje specifičnih statističkih podataka vezanih za forum i informacije sa grupama kojima je dozvoljen pristup vašem profilu. Ove postavke su nadjačane ako ne dozvolite bilo kojoj grupi da pristupi statistici i informacijama vezanim za forum ili ako idete Privatno',
- 'forum-signature' => 'Forum Signature',
- 'forums' => 'Forumi',
- 'general' => 'General',
- 'general-settings' => 'General Settings',
- 'gift-given' => 'Gift Given',
- 'gift-received' => 'Poklon primljen',
- 'go-public' => 'Go Public',
- 'go-private' => 'Idi privatno',
- 'history' => 'istorija',
- 'history-table' => 'My History Table',
- 'hit-n-runs' => 'Hit i trčanje',
- 'hit-n-runs-count' => 'Hit & Run Count (sve vreme)',
- 'hit-n-runs-history' => 'Torrent Hit i pokreće istoriju',
- 'image' => 'Slika',
- 'important' => 'Bitan',
- 'important-info' => 'Važne informacije',
- 'information' => 'Informacije',
- 'invite-friend' => 'Pozovite prijatelja (e-pošta + poruka obavezna)',
- 'invite-tree' => 'Invite Tree',
- 'invites' => 'Invites',
- 'invites-banned' => 'Greška: Vaša prava na poziv su onemogućena',
- 'invites-banned-desc' => 'Ako osećate da je ovo greška, molimo vas da kontaktirate osoblje!',
- 'invites-count' => 'Imate: count Invite Tokens',
- 'invites-disabled' => 'Pažnja: Pozivi su onemogućeni zbog otvorene registracije!',
- 'invites-disabled-desc' => 'Molimo provjerite uskoro!',
- 'invites-rules' => ' Pozovite samo ljude koje poznajete i kojima vjerujete. Vi ćete biti lično odgovorni za one koje pozovete. Ne pozovite sebe, mi provjeravamo svakog pozvanog korisnika. Nemojte trgovati ili prodavati Invites. Ako je osoba koju pozovete uhvaćena u varanju, trgovanju ili prodaji / trgovanju, biti ćete upozoreni. ',
- 'invites-send' => 'Invites Send',
- 'last-login' => 'Last Login',
- 'locked' => 'Zaključano',
- 'locked-achievements' => 'Zaključana dostignuća',
- 'member-since' => 'Član od',
- 'members-desc' => 'Lista registrovanih korisnika: naslov sa svim grupama. Pronađite korisnika sada.',
- 'mention-notification' => '@ Postavke obavijesti o upozorenjima',
+ 'about' => 'O nama',
+ 'about-me' => 'O meni',
+ 'accepted-at' => 'Prihvaćeno u',
+ 'accepted-by' => 'Prihvaćeno',
+ 'account-notification' => 'Postavke obavijesti o računu',
+ 'account-notification-follow' => 'Primite obavijest kada korisnik prati vaš račun',
+ 'account-notification-unfollow' => 'Primite obavijest kada korisnik ne slijedi vaš račun',
+ 'account-notification-help' => 'Kontrolišite koje se obavijesti šalju u vezi vašeg računa. Ove postavke su poništene ako ne dozvolite nijednoj grupi da šalju obavijesti koje se odnose na vaš račun ili ako onemogućite obavijesti',
+ 'account-settings' => 'Podešavanja naloga',
+ 'achievement-privacy' => 'Achievement Settings',
+ 'achievement-privacy-list' => 'Omogućite korisnicima da pregledaju listu vaših postignuća',
+ 'achievement-help' => 'Kontrolišite dijeljenje specifičnih informacija vezanih za postignuće sa grupama kojima je dozvoljen pristup vašem profilu. Ove postavke su poništene ako ne dozvolite bilo kojoj grupi da pristupi vašim dostignućima ili ako idete Privatno',
+ 'achievements' => 'Dostignuća',
+ 'active' => 'Aktivno',
+ 'active-table' => 'Moj aktivni sto',
+ 'active-torrents' => 'Active torrents',
+ 'active-warning' => 'Aktivno upozorenje',
+ 'active-warnings' => 'Active Warnings',
+ 'add-seedbox' => 'Dodaj Seedbox',
+ 'all-torrents' => 'All Torrents',
+ 'article-comments' => 'Article Comments Made',
+ 'avatar' => 'Avatar',
+ 'avg-seedtime' => 'Average Seedtime',
+ 'badges' => 'Badges',
+ 'ban' => 'Ban User',
+ 'ban-log' => 'Ban Log',
+ 'become-hidden' => 'Postani skriven',
+ 'become-visible' => 'Postanite vidljivi',
+ 'bon' => 'BON',
+ 'bon-notification' => 'Postavke obavijesti BON-a',
+ 'bon-notification-gift' => 'Primite obaveštenje kada vam korisnik pokloni bon',
+ 'bon-notification-help' => 'Kontroliše koje se obavijesti šalju u vezi sa BON transakcijama. Ove postavke su poništene ako ne dozvolite bilo kojoj grupi da šalje obaveštenja o BON-u ili ako onemogućite obaveštenja',
+ 'bookmarks' => 'Bookmarks',
+ 'bounty-given' => 'Bounty Given',
+ 'bounty-received' => 'Bounty Received',
+ 'can-chat' => 'Can Chat',
+ 'can-comment' => 'Can Comment',
+ 'can-download' => 'Can Download',
+ 'can-invite' => 'Can Invite',
+ 'can-request' => 'Can Request',
+ 'can-upload' => 'Can Upload',
+ 'certified-banker' => 'Certified Banker',
+ 'certified-banker-desc' => 'Ima 50.000 ili više BON-a u banci',
+ 'certified-downloader' => 'Certified Downloader',
+ 'certified-downloader-desc' => 'Preuzeto 100 or More Torrents!',
+ 'certified-seeder' => 'Certified Seeder',
+ 'certified-seeder-desc' => 'Sjedenje 150 ili više torenta!',
+ 'change-email' => 'Promijeni e-mail',
+ 'change-email-help' => 'Morat ćete ponovo potvrditi svoj račun, nakon što promijenite e-poštu',
+ 'change-password' => 'Change Password',
+ 'change-password-help' => 'Morate se ponovo prijaviti, nakon što promijenite lozinku',
+ 'client-ip-address' => 'IP adresa klijenta',
+ 'code' => 'Kod',
+ 'comments' => 'Komentari',
+ 'created-on' => 'Created on',
+ 'credited-download' => 'Credited download',
+ 'credited-upload' => 'Credited upload',
+ 'current-password' => 'Trenutna šifra',
+ 'custom-title' => 'Custom title',
+ 'delete' => 'Brisanje korisnika',
+ 'disable-notifications' => 'Onemogući obaveštenja',
+ 'disclaimer' => 'Disclaimer',
+ 'disclaimer-info' => 'Podrazumevano ne prijavljujemo IP adrese korisnika kao većinu trackera. Dodavanjem vašeg IP adresara u nastavku, očekuje se da znate da su vaši IP-ovi navedeni u nastavku pohranjeni u našoj bazi podataka ukoliko ne izbrišete zapise.',
+ 'disclaimer-info-bordered' => 'Dodani Seedbox IP-ovi će onda pokrenuti high-tag torrent tag na torrent-ovima iz IP-ova koji su navedeni u nastavku',
+ 'download-bon' => 'Preuzimanje je uklonjeno iz BON Store-a',
+ 'download-recorded' => 'Snimljeno preuzimanje',
+ 'download-true' => 'True Download',
+ 'downloads' => 'Preuzimanja',
+ 'edit' => 'Uredi korisnika',
+ 'edit-profile' => 'Uredi profil',
+ 'enable-notifications' => 'Omogući obaveštenja',
+ 'expired' => 'Isteklo',
+ 'expires-on' => 'Ističe na',
+ 'extra' => 'Extra',
+ 'filled-request' => 'Ispunjeni zahtjevi članova',
+ 'follow' => 'Pratiti',
+ 'follower-privacy' => 'Podešavanja sledbenika',
+ 'follower-privacy-list' => 'Dozvolite korisnicima da vide listu svojih sljedbenika',
+ 'follower-help' => 'Kontrolišite deljenje specifičnih informacija povezanih s sledbenicima sa grupama kojima je dozvoljen pristup vašem profilu. Ove postavke su poništene ako ne dozvolite bilo kojoj grupi da pristupe vašim sljedbenicima ili ako idete Privatno',
+ 'followers' => 'Followers',
+ 'following-notification' => 'Slijedi Postavke obavijesti korisnika',
+ 'following-notification-upload' => 'Primite obavijest kada korisnik koji slijedi prenosi torrent',
+ 'following-notification-help' => 'Kontrolišite koje se obavijesti šalju u vezi s postupcima praćenim korisničkim mjestima. Ova podešavanja su poništena ako ne dozvolite bilo kojoj grupi da šalje obaveštenja koja se odnose na praćene korisnike ili ako onemogućite obaveštenja',
+ 'formats-are-supported' => ': podržani su formati',
+ 'forum-notification' => 'Podešavanja obaveštenja foruma',
+ 'forum-notification-topic' => 'Primite obavijest kada tema koju ste pokrenuli dobije novu poruku',
+ 'forum-notification-help' => 'Kontrola koja obavještenja se šalju u vezi aktivnosti foruma. Ove postavke su poništene ako ne dozvolite bilo kojoj grupi da šalje obaveštenja o aktivnostima foruma ili ako onemogućite obaveštenja',
+ 'forum-privacy' => 'Postavke foruma',
+ 'forum-privacy-post' => 'Dozvolite korisnicima da pogledaju listu postova na forumu koje ste objavili',
+ 'forum-privacy-topic' => 'Omogućite korisnicima da vide listu tema koje ste pokrenuli',
+ 'forum-help' => 'Kontrolišite deljenje specifičnih statističkih podataka vezanih za forum i informacije sa grupama kojima je dozvoljen pristup vašem profilu. Ove postavke su nadjačane ako ne dozvolite bilo kojoj grupi da pristupi statistici i informacijama vezanim za forum ili ako idete Privatno',
+ 'forum-signature' => 'Forum Signature',
+ 'forums' => 'Forumi',
+ 'general' => 'General',
+ 'general-settings' => 'General Settings',
+ 'gift-given' => 'Gift Given',
+ 'gift-received' => 'Poklon primljen',
+ 'go-public' => 'Go Public',
+ 'go-private' => 'Idi privatno',
+ 'history' => 'istorija',
+ 'history-table' => 'My History Table',
+ 'hit-n-runs' => 'Hit i trčanje',
+ 'hit-n-runs-count' => 'Hit & Run Count (sve vreme)',
+ 'hit-n-runs-history' => 'Torrent Hit i pokreće istoriju',
+ 'image' => 'Slika',
+ 'important' => 'Bitan',
+ 'important-info' => 'Važne informacije',
+ 'information' => 'Informacije',
+ 'invite-friend' => 'Pozovite prijatelja (e-pošta + poruka obavezna)',
+ 'invite-tree' => 'Invite Tree',
+ 'invites' => 'Invites',
+ 'invites-banned' => 'Greška: Vaša prava na poziv su onemogućena',
+ 'invites-banned-desc' => 'Ako osećate da je ovo greška, molimo vas da kontaktirate osoblje!',
+ 'invites-count' => 'Imate: count Invite Tokens',
+ 'invites-disabled' => 'Pažnja: Pozivi su onemogućeni zbog otvorene registracije!',
+ 'invites-disabled-desc' => 'Molimo provjerite uskoro!',
+ 'invites-rules' => ' Pozovite samo ljude koje poznajete i kojima vjerujete. Vi ćete biti lično odgovorni za one koje pozovete. Ne pozovite sebe, mi provjeravamo svakog pozvanog korisnika. Nemojte trgovati ili prodavati Invites. Ako je osoba koju pozovete uhvaćena u varanju, trgovanju ili prodaji / trgovanju, biti ćete upozoreni. ',
+ 'invites-send' => 'Invites Send',
+ 'last-login' => 'Last Login',
+ 'locked' => 'Zaključano',
+ 'locked-achievements' => 'Zaključana dostignuća',
+ 'member-since' => 'Član od',
+ 'members-desc' => 'Lista registrovanih korisnika: naslov sa svim grupama. Pronađite korisnika sada.',
+ 'mention-notification' => '@ Postavke obavijesti o upozorenjima',
'mention-notification-article-comment' => 'Primite obavijest kada ste u komentaru članka',
'mention-notification-torrent-comment' => 'Primite obaveštenje kada ste @mentioned u torrent komentaru',
'mention-notification-request-comment' => 'Primite obavijest kada ste u komentaru sa zahtjevom',
- 'mention-notification-forum-post' => 'Primite obaveštenje kada se @odgovarate na postu na forumu',
- 'mention-notification-help' => 'Kontrolišite koje se obavijesti šalju kada vam korisnik @mentions. Ove postavke su poništene ako ne dozvolite nijednoj grupi da šalju obavijesti ako vas korisnik @mentions ili ako onemogućite obavijesti',
- 'moderated-by' => 'Uređuje: mod on',
- 'my-bonus-points' => 'Moji bonus bodovi',
- 'my-bookmarks' => 'My Bookmarks',
- 'my-fl-tokens' => 'Moji FL tokeni',
- 'my-general-settings' => 'Moje opšte postavke',
- 'my-notification' => 'My Notification',
- 'my-notification-settings' => 'Moje postavke obavijesti',
- 'my-privacy' => 'Moja privatnost',
- 'my-privacy-settings' => 'Moje postavke privatnosti',
- 'my-profile' => 'Moj profil',
- 'my-requested' => 'My Requested',
- 'my-security' => 'Moja sigurnost',
- 'my-security-settings' => 'Moje sigurnosne postavke',
- 'my-seedboxes' => 'My Seedboxes',
- 'my-settings' => 'Moje postavke',
- 'my-wishlist' => 'moja lista želja',
- 'no-logs' => 'Nema prijavljenih logova u bazi podataka za ovog korisnika!',
- 'no-seedboxes' => 'No seedboxes',
- 'not-authorized' => 'Niste ovlašteni za pregled ove stranice. Ovaj član preferira da bude skriven kao ninja!',
- 'note' => 'Bilješka',
- 'notification' => 'Obaveštenje',
- 'notification-settings' => 'Postavke obavijesti',
- 'notification-from-account' => 'Primajte obavijesti o računu od',
- 'notification-from-account-help' => 'Obaveštenja o računu dobijate samo od sistema, osoblja i sledećih grupa. Ove postavke su poništene ako onemogućite obaveštenja',
- 'notification-from-bon' => 'Primite BON obavijesti od',
- 'notification-from-bon-help' => 'BON obaveštenja ćete primati samo od sistema, osoblja i sledećih grupa. Ove postavke su poništene ako onemogućite obaveštenja',
- 'notification-from-following' => 'Primajte obaveštenja korisnika od',
- 'notification-from-following-help' => 'Slijedeće korisničke obavijesti ćete primati samo od sljedećih grupa. Ove postavke su poništene ako onemogućite obaveštenja',
- 'notification-from-forum' => 'Primajte obavijesti o forumu Od',
- 'notification-from-forum-help' => 'Obaveštenja foruma ćete primati samo od sistema, osoblja i sledećih grupa. Ove postavke su poništene ako onemogućite obaveštenja',
- 'notification-from-subscription' => 'Primajte obavijesti o pretplati od',
- 'notification-from-subscription-help' => 'Obaveštenja foruma ćete primati samo od sistema, osoblja i sledećih grupa. Ove postavke su poništene ako onemogućite obaveštenja',
- 'notification-from-torrent' => 'Primajte obaveštenja o greškama od',
- 'notification-from-torrent-help' => 'Vi ćete primati samo torrent poruke od sistema, osoblja i sljedećih grupa. Ove postavke su poništene ako onemogućite obaveštenja',
- 'notification-from-mention' => 'Primanje obaveštenja o obaveštenju od',
- 'notification-from-mention-help' => 'Dobijate @mention obaveštenja samo od sistema, osoblja i sledećih grupa. Ove postavke su poništene ako onemogućite obaveštenja',
- 'notification-from-request' => 'Primajte obavijesti o zahtjevima od',
- 'notification-from-request-help' => 'Obaveštenja o zahtevima ćete primati samo od sistema, osoblja i sledećih grupa. Ove postavke su poništene ako onemogućite obaveštenja',
- 'notifications' => 'Obaveštenja',
- 'offline' => 'Korisnik je offline!',
- 'online' => 'Korisnik je online!',
- 'options' => 'Opcije',
- 'other-help' => 'Kontrolišite deljenje drugih statistika i informacija sa grupama kojima je dozvoljen pristup vašem profilu. Ove postavke su poništene ako ne dozvolite bilo kojoj grupi da pristupaju vašim drugim statistikama i informacijama ili ako idete Privatno',
- 'other-privacy' => 'Other Settings',
- 'other-privacy-online' => 'Dozvolite korisnicima da vas vide u blokiranju korisnika na mreži',
- 'passkey' => 'PID',
- 'passkey-warning' => 'PID je kao vaša lozinka, morate ga čuvati na sigurnom!',
- 'pending-achievements' => 'Predstojeća postignuća',
- 'per-torrent' => 'Per Torrent',
- 'posts' => 'Postovi',
- 'posts-posted' => 'Postovi na forumu',
- 'privacy' => 'Privatnost',
- 'privacy-settings' => 'Postavke privatnosti',
- 'private-info' => 'Privatne informacije',
- 'private-forum-profile' => 'Pažnja: Ovo Članovi Tema & Istorija postova je postavljena na PRIVATE!',
- 'private-profile' => 'Pažnja: ovaj profil je postavljen na PRIVATE!',
- 'profile' => 'Profil',
- 'profile-desc' => 'Korisnik: korisnički profil registrovan na: naslov',
- 'profile-privacy' => 'Postavke profila',
- 'profile-privacy-torrent-count' => 'Podijelite ukupan broj preuzimanja, učitavanja, sjeme i pijavica',
- 'profile-privacy-torrent-ratio' => 'Podijelite svoje ukupne podatke za upload / download zajedno sa zabilježenim omjerom',
- 'profile-privacy-torrent-seed' => 'Podijelite svoje ukupno vrijeme sijanja i prosjek',
- 'profile-privacy-title' => 'Podijelite svoje osobne podatke o naslovu',
- 'profile-privacy-about' => 'Podijelite svoje osobne informacije o meni',
- 'profile-privacy-bon-extra' => 'Podijelite svoju BON statistiku',
- 'profile-privacy-comment-extra' => 'Podijelite statistiku komentara',
- 'profile-privacy-forum-extra' => 'Podijelite statistiku foruma',
- 'profile-privacy-request-extra' => 'Podijelite statistiku zahtjeva',
- 'profile-privacy-torrent-extra' => 'Podijelite svoje statistike o torrentu',
- 'profile-privacy-badge' => 'Podijelite svoje zaslužene značke',
- 'profile-privacy-achievement' => 'Podelite svoja nedavna dostignuća',
- 'profile-privacy-follower' => 'Podijelite svoje nedavne sljedbenike',
- 'profile-privacy-warning' => 'Podijelite svoje H&R upozorenja',
- 'profile-privacy-help' => 'Kontrolišite koje se statistike i delovi informacija pojavljuju na vašem profilu. Ove postavke su poništene ako ne dozvolite bilo kojoj grupi da pristupi vašem profilu ili ako idete Privatno',
- 'public-info' => 'Public Info',
- 'recent-achievements' => 'Recent Achievements',
- 'recent-followers' => 'Recent Followers',
- 'registration-date' => 'Datum registracije',
- 'report' => 'Report',
- 'request-help' => 'Kontrolišite dijeljenje specifičnih statističkih podataka vezanih za zahtjev i informacije sa grupama kojima je dozvoljen pristup vašem profilu. Ove postavke su poništene ako ne dozvolite bilo kojoj grupi da pristupaju vašoj traženoj srodnoj statistici i informacijama ili ako idete Privatno',
- 'request' => 'Zahtev',
- 'requested' => 'Traženo',
- 'requests' => 'Zahtjevi',
- 'request-comments' => 'Request Comments Made',
- 'request-notification' => 'Zahtevajte podešavanja obaveštenja',
- 'request-notification-bounty' => 'Primite obaveštenje kada zahtevani torrent dobije novu nagradu',
- 'request-notification-comment' => 'Primite obavijest kada zatraženi torrent dobije novi komentar',
- 'request-notification-fill' => 'Primite obaveštenje kada se popuni traženi torrent',
- 'request-notification-fill-approve' => 'Primite obaveštenje kada se odobri zahtevana popunjena datoteka',
- 'request-notification-fill-reject' => 'Primite obaveštenje kada odbijena tražena popunjena datoteka',
- 'request-notification-claim' => 'Primite obaveštenje kada se traži zahtevani torrent',
- 'request-notification-unclaim' => 'Primite obaveštenje kada zahtevani torrent ne bude zatražen',
- 'request-notification-help' => 'Kontrola koja obavještenja se šalju u vezi sa aktivnostima zahtjeva. Ove postavke su poništene ako ne dozvolite bilo kojoj grupi da šalje obavijesti o aktivnostima zahtjeva ili ako onemogućite obavijesti',
- 'request-privacy' => 'Request Settings',
- 'request-privacy-requested' => 'Omogućite korisnicima da prikažu listu zahteva koje ste napravili',
- 'reset-passkey' => 'Reset Pass ključa (PID)',
- 'reset-passkey-help' => 'Morat ćete ponovo preuzeti / ponovno učitati sve svoje aktivne torrente, nakon resetiranja PID-a',
- 'reset-rss' => 'Resetiraj RSS ključ (RID)',
- 'reset-rss-help' => 'Morat ćete ponovno učitati sve aktivne RSS izvore, nakon resetiranja RID-a',
- 'resurrections' => 'Resurrections',
- 'search' => 'Brzo pretraživanje po korisničkom imenu',
- 'security' => 'Sigurnost',
- 'security-settings' => 'Security Settings',
- 'seedboxes' => 'Seedboxes',
- 'seeds' => 'Seme',
- 'send-invite' => 'Send Invite',
- 'sender' => 'Sender',
- 'settings' => 'Podešavanja',
- 'show-passkey' => 'Prikaži PID',
- 'staff-noted' => 'Račun za zaposlene',
- 'statistics' => 'Statistika',
- 'subscription-notification' => 'Postavke obavijesti o pretplati',
- 'subscription-notification-forum' => 'Primite obavijest kada pretplaćeni forum dobije novu temu',
- 'subscription-notification-topic' => 'Primite obaveštenje kada nova tema dobije novu poruku',
- 'subscription-notification-help' => 'Kontrolišite koje se obavijesti šalju u vezi vaših pretplata. Ove postavke su poništene ako ne dozvolite bilo kojoj grupi da šalje obaveštenja koja se tiču vaših pretplata ili ako onemogućite obaveštenja',
- 'thanks-given' => 'Thanks Given',
- 'thanks-received' => 'Thanks Received',
- 'tips-given' => 'Tips Given',
- 'tips-received' => 'Primljeni saveti',
- 'title' => 'Naslov',
- 'top-bankers' => 'Top Bankers',
- 'top-downloaders-data' => 'Najbolji preuzimatelji (podaci)',
- 'top-leechers' => 'Top Leechers',
- 'top-leechers-count' => 'Top Leechers (Count)',
- 'top-seeders' => 'Top Seeders',
- 'top-seeders-count' => 'Najviše sejalice (broj)',
- 'top-seeding-size' => 'Vrh sjetve (veličina)',
- 'top-seedtime' => 'Top Seedtime',
- 'top-uploaders-data' => 'Najbolji učitavači (podaci)',
- 'top-uploaders-count' => 'Najbolji učitavači (broj)',
- 'topics' => 'Teme',
- 'topics-started' => 'Započete teme foruma',
- 'torrent-comments' => 'Torrent Comments Made',
- 'torrent-help' => 'Kontrolirajte dijeljenje specifičnih statističkih podataka vezanih za torrent i informacije sa grupama kojima je dozvoljen pristup vašem profilu. Ove postavke su poništene ako ne dozvolite bilo kojoj grupi da pristupi statistikama i informacijama vezanim za torrent, ili ako idete Privatno',
- 'torrent-notification' => 'Podešavanja obaveštenja o greškama',
- 'torrent-notification-comment' => 'Primite obavijest kada učitan torrent dobije novi komentar',
- 'torrent-notification-thank' => 'Primite obavijest kada novi torrent dobije novo zahvale',
- 'torrent-notification-tip' => 'Primite obaveštenje kada novi upload učitan torrent',
- 'torrent-notification-help' => 'Kontrola koja obavještenja se šalju u vezi sa aktivnostima torrenta. Ove postavke su nadjačane ako ne dozvolite bilo kojoj grupi da šalje obaveštenja o aktivnostima torrenta ili ako onemogućite obaveštenja',
- 'torrent-privacy' => 'Podešavanja Torrenta',
- 'torrent-privacy-download' => 'Omogućite korisnicima da vide listu bujica koje ste preuzeli',
- 'torrent-privacy-upload' => 'Omogućite korisnicima da vide listu bujica koje ste učitali',
- 'torrent-privacy-peer' => 'Dozvolite korisnicima da vas vide u tabeli istorije torrenta',
- 'torrents' => 'Torrents',
- 'torrents-history' => 'Torrents History',
- 'total-download' => 'Total Download',
- 'total-downloads' => 'Ukupno preuzimanja',
- 'total-leeching' => 'Total Leeching',
- 'total-seeding' => 'Total Seeding',
- 'total-seedtime' => 'Ukupno seme',
- 'total-upload' => 'Ukupno učitavanje',
- 'total-uploads' => 'Ukupno učitavanja',
- 'unban' => 'Unban User',
- 'unfollow' => 'Unfollow',
- 'unlocked' => 'Unlocked',
- 'unlocked-achievements' => 'Unlocked Achievements',
- 'unsatisfieds' => 'Unsatisfieds',
- 'upload-bon' => 'Dodaj u BON Store',
- 'upload-recorded' => 'Snimljeni prenos',
- 'upload-true' => 'True Upload',
- 'uploads' => 'Uploads',
- 'uploads-table' => 'Uploads Table',
- 'user' => 'User',
- 'user-id' => 'Korisnički broj',
- 'username-seedbox' => 'Korisničko ime Seedbox',
- 'visible-to-achievement' => 'Dostignuća Vidljivo',
- 'visible-to-achievement-help' => 'Vaša dostignuća će biti vidljiva samo osoblju i sljedećim grupama. Ove postavke su poništene ako idete Privatno',
- 'visible-to-follower' => 'Followers Visible To',
- 'visible-to-follower-help' => 'Vaši sljedbenici će biti vidljivi samo osoblju i sljedećim grupama. Ove postavke su poništene ako idete Privatno',
- 'visible-to-forum' => 'Informacije o forumu Vidljivo',
- 'visible-to-forum-help' => 'Informacije o forumu bit će vidljive samo osoblju i sljedećim grupama. Ove postavke su poništene ako idete Privatno',
- 'visible-to-other' => 'Drugo Vidljivo za',
- 'visible-to-other-help' => 'Ostale informacije koje se odnose na vaš račun bit će vidljive samo osoblju i sljedećim grupama. Ove postavke su poništene ako idete Privatno ili ako idete skriveni',
- 'visible-to-profile' => 'Profil vidljiv za',
- 'visible-to-profile-help' => 'Vaš profil će biti vidljiv samo osoblju i sljedećim grupama. Ove postavke su poništene ako idete Privatno',
- 'visible-to-request' => 'Zatražite informacije vidljive za',
- 'visible-to-request-help' => 'Informacije o vašem zahtjevu bit će vidljive samo osoblju i sljedećim grupama. Ove postavke su poništene ako idete Privatno',
- 'visible-to-torrent' => 'Informacije o torentu vidljive su za',
- 'visible-to-torrent-help' => 'Vaše informacije o torrentu će biti vidljive samo osoblju i sljedećim grupama. Ove postavke su poništene ako idete Privatno ili ako idete skriveni',
- 'warned-on' => 'Warned On',
- 'warning' => 'Upozorenje',
- 'warning-log' => 'Dnevnik upozorenja',
- 'wishlist' => 'Wishlist',
+ 'mention-notification-forum-post' => 'Primite obaveštenje kada se @odgovarate na postu na forumu',
+ 'mention-notification-help' => 'Kontrolišite koje se obavijesti šalju kada vam korisnik @mentions. Ove postavke su poništene ako ne dozvolite nijednoj grupi da šalju obavijesti ako vas korisnik @mentions ili ako onemogućite obavijesti',
+ 'moderated-by' => 'Uređuje: mod on',
+ 'my-bonus-points' => 'Moji bonus bodovi',
+ 'my-bookmarks' => 'My Bookmarks',
+ 'my-fl-tokens' => 'Moji FL tokeni',
+ 'my-general-settings' => 'Moje opšte postavke',
+ 'my-notification' => 'My Notification',
+ 'my-notification-settings' => 'Moje postavke obavijesti',
+ 'my-privacy' => 'Moja privatnost',
+ 'my-privacy-settings' => 'Moje postavke privatnosti',
+ 'my-profile' => 'Moj profil',
+ 'my-requested' => 'My Requested',
+ 'my-security' => 'Moja sigurnost',
+ 'my-security-settings' => 'Moje sigurnosne postavke',
+ 'my-seedboxes' => 'My Seedboxes',
+ 'my-settings' => 'Moje postavke',
+ 'my-wishlist' => 'moja lista želja',
+ 'no-logs' => 'Nema prijavljenih logova u bazi podataka za ovog korisnika!',
+ 'no-seedboxes' => 'No seedboxes',
+ 'not-authorized' => 'Niste ovlašteni za pregled ove stranice. Ovaj član preferira da bude skriven kao ninja!',
+ 'note' => 'Bilješka',
+ 'notification' => 'Obaveštenje',
+ 'notification-settings' => 'Postavke obavijesti',
+ 'notification-from-account' => 'Primajte obavijesti o računu od',
+ 'notification-from-account-help' => 'Obaveštenja o računu dobijate samo od sistema, osoblja i sledećih grupa. Ove postavke su poništene ako onemogućite obaveštenja',
+ 'notification-from-bon' => 'Primite BON obavijesti od',
+ 'notification-from-bon-help' => 'BON obaveštenja ćete primati samo od sistema, osoblja i sledećih grupa. Ove postavke su poništene ako onemogućite obaveštenja',
+ 'notification-from-following' => 'Primajte obaveštenja korisnika od',
+ 'notification-from-following-help' => 'Slijedeće korisničke obavijesti ćete primati samo od sljedećih grupa. Ove postavke su poništene ako onemogućite obaveštenja',
+ 'notification-from-forum' => 'Primajte obavijesti o forumu Od',
+ 'notification-from-forum-help' => 'Obaveštenja foruma ćete primati samo od sistema, osoblja i sledećih grupa. Ove postavke su poništene ako onemogućite obaveštenja',
+ 'notification-from-subscription' => 'Primajte obavijesti o pretplati od',
+ 'notification-from-subscription-help' => 'Obaveštenja foruma ćete primati samo od sistema, osoblja i sledećih grupa. Ove postavke su poništene ako onemogućite obaveštenja',
+ 'notification-from-torrent' => 'Primajte obaveštenja o greškama od',
+ 'notification-from-torrent-help' => 'Vi ćete primati samo torrent poruke od sistema, osoblja i sljedećih grupa. Ove postavke su poništene ako onemogućite obaveštenja',
+ 'notification-from-mention' => 'Primanje obaveštenja o obaveštenju od',
+ 'notification-from-mention-help' => 'Dobijate @mention obaveštenja samo od sistema, osoblja i sledećih grupa. Ove postavke su poništene ako onemogućite obaveštenja',
+ 'notification-from-request' => 'Primajte obavijesti o zahtjevima od',
+ 'notification-from-request-help' => 'Obaveštenja o zahtevima ćete primati samo od sistema, osoblja i sledećih grupa. Ove postavke su poništene ako onemogućite obaveštenja',
+ 'notifications' => 'Obaveštenja',
+ 'offline' => 'Korisnik je offline!',
+ 'online' => 'Korisnik je online!',
+ 'options' => 'Opcije',
+ 'other-help' => 'Kontrolišite deljenje drugih statistika i informacija sa grupama kojima je dozvoljen pristup vašem profilu. Ove postavke su poništene ako ne dozvolite bilo kojoj grupi da pristupaju vašim drugim statistikama i informacijama ili ako idete Privatno',
+ 'other-privacy' => 'Other Settings',
+ 'other-privacy-online' => 'Dozvolite korisnicima da vas vide u blokiranju korisnika na mreži',
+ 'passkey' => 'PID',
+ 'passkey-warning' => 'PID je kao vaša lozinka, morate ga čuvati na sigurnom!',
+ 'pending-achievements' => 'Predstojeća postignuća',
+ 'per-torrent' => 'Per Torrent',
+ 'posts' => 'Postovi',
+ 'posts-posted' => 'Postovi na forumu',
+ 'privacy' => 'Privatnost',
+ 'privacy-settings' => 'Postavke privatnosti',
+ 'private-info' => 'Privatne informacije',
+ 'private-forum-profile' => 'Pažnja: Ovo Članovi Tema & Istorija postova je postavljena na PRIVATE!',
+ 'private-profile' => 'Pažnja: ovaj profil je postavljen na PRIVATE!',
+ 'profile' => 'Profil',
+ 'profile-desc' => 'Korisnik: korisnički profil registrovan na: naslov',
+ 'profile-privacy' => 'Postavke profila',
+ 'profile-privacy-torrent-count' => 'Podijelite ukupan broj preuzimanja, učitavanja, sjeme i pijavica',
+ 'profile-privacy-torrent-ratio' => 'Podijelite svoje ukupne podatke za upload / download zajedno sa zabilježenim omjerom',
+ 'profile-privacy-torrent-seed' => 'Podijelite svoje ukupno vrijeme sijanja i prosjek',
+ 'profile-privacy-title' => 'Podijelite svoje osobne podatke o naslovu',
+ 'profile-privacy-about' => 'Podijelite svoje osobne informacije o meni',
+ 'profile-privacy-bon-extra' => 'Podijelite svoju BON statistiku',
+ 'profile-privacy-comment-extra' => 'Podijelite statistiku komentara',
+ 'profile-privacy-forum-extra' => 'Podijelite statistiku foruma',
+ 'profile-privacy-request-extra' => 'Podijelite statistiku zahtjeva',
+ 'profile-privacy-torrent-extra' => 'Podijelite svoje statistike o torrentu',
+ 'profile-privacy-badge' => 'Podijelite svoje zaslužene značke',
+ 'profile-privacy-achievement' => 'Podelite svoja nedavna dostignuća',
+ 'profile-privacy-follower' => 'Podijelite svoje nedavne sljedbenike',
+ 'profile-privacy-warning' => 'Podijelite svoje H&R upozorenja',
+ 'profile-privacy-help' => 'Kontrolišite koje se statistike i delovi informacija pojavljuju na vašem profilu. Ove postavke su poništene ako ne dozvolite bilo kojoj grupi da pristupi vašem profilu ili ako idete Privatno',
+ 'public-info' => 'Public Info',
+ 'recent-achievements' => 'Recent Achievements',
+ 'recent-followers' => 'Recent Followers',
+ 'registration-date' => 'Datum registracije',
+ 'report' => 'Report',
+ 'request-help' => 'Kontrolišite dijeljenje specifičnih statističkih podataka vezanih za zahtjev i informacije sa grupama kojima je dozvoljen pristup vašem profilu. Ove postavke su poništene ako ne dozvolite bilo kojoj grupi da pristupaju vašoj traženoj srodnoj statistici i informacijama ili ako idete Privatno',
+ 'request' => 'Zahtev',
+ 'requested' => 'Traženo',
+ 'requests' => 'Zahtjevi',
+ 'request-comments' => 'Request Comments Made',
+ 'request-notification' => 'Zahtevajte podešavanja obaveštenja',
+ 'request-notification-bounty' => 'Primite obaveštenje kada zahtevani torrent dobije novu nagradu',
+ 'request-notification-comment' => 'Primite obavijest kada zatraženi torrent dobije novi komentar',
+ 'request-notification-fill' => 'Primite obaveštenje kada se popuni traženi torrent',
+ 'request-notification-fill-approve' => 'Primite obaveštenje kada se odobri zahtevana popunjena datoteka',
+ 'request-notification-fill-reject' => 'Primite obaveštenje kada odbijena tražena popunjena datoteka',
+ 'request-notification-claim' => 'Primite obaveštenje kada se traži zahtevani torrent',
+ 'request-notification-unclaim' => 'Primite obaveštenje kada zahtevani torrent ne bude zatražen',
+ 'request-notification-help' => 'Kontrola koja obavještenja se šalju u vezi sa aktivnostima zahtjeva. Ove postavke su poništene ako ne dozvolite bilo kojoj grupi da šalje obavijesti o aktivnostima zahtjeva ili ako onemogućite obavijesti',
+ 'request-privacy' => 'Request Settings',
+ 'request-privacy-requested' => 'Omogućite korisnicima da prikažu listu zahteva koje ste napravili',
+ 'reset-passkey' => 'Reset Pass ključa (PID)',
+ 'reset-passkey-help' => 'Morat ćete ponovo preuzeti / ponovno učitati sve svoje aktivne torrente, nakon resetiranja PID-a',
+ 'reset-rss' => 'Resetiraj RSS ključ (RID)',
+ 'reset-rss-help' => 'Morat ćete ponovno učitati sve aktivne RSS izvore, nakon resetiranja RID-a',
+ 'resurrections' => 'Resurrections',
+ 'search' => 'Brzo pretraživanje po korisničkom imenu',
+ 'security' => 'Sigurnost',
+ 'security-settings' => 'Security Settings',
+ 'seedboxes' => 'Seedboxes',
+ 'seeds' => 'Seme',
+ 'send-invite' => 'Send Invite',
+ 'sender' => 'Sender',
+ 'settings' => 'Podešavanja',
+ 'show-passkey' => 'Prikaži PID',
+ 'staff-noted' => 'Račun za zaposlene',
+ 'statistics' => 'Statistika',
+ 'subscription-notification' => 'Postavke obavijesti o pretplati',
+ 'subscription-notification-forum' => 'Primite obavijest kada pretplaćeni forum dobije novu temu',
+ 'subscription-notification-topic' => 'Primite obaveštenje kada nova tema dobije novu poruku',
+ 'subscription-notification-help' => 'Kontrolišite koje se obavijesti šalju u vezi vaših pretplata. Ove postavke su poništene ako ne dozvolite bilo kojoj grupi da šalje obaveštenja koja se tiču vaših pretplata ili ako onemogućite obaveštenja',
+ 'thanks-given' => 'Thanks Given',
+ 'thanks-received' => 'Thanks Received',
+ 'tips-given' => 'Tips Given',
+ 'tips-received' => 'Primljeni saveti',
+ 'title' => 'Naslov',
+ 'top-bankers' => 'Top Bankers',
+ 'top-downloaders-data' => 'Najbolji preuzimatelji (podaci)',
+ 'top-leechers' => 'Top Leechers',
+ 'top-leechers-count' => 'Top Leechers (Count)',
+ 'top-seeders' => 'Top Seeders',
+ 'top-seeders-count' => 'Najviše sejalice (broj)',
+ 'top-seeding-size' => 'Vrh sjetve (veličina)',
+ 'top-seedtime' => 'Top Seedtime',
+ 'top-uploaders-data' => 'Najbolji učitavači (podaci)',
+ 'top-uploaders-count' => 'Najbolji učitavači (broj)',
+ 'topics' => 'Teme',
+ 'topics-started' => 'Započete teme foruma',
+ 'torrent-comments' => 'Torrent Comments Made',
+ 'torrent-help' => 'Kontrolirajte dijeljenje specifičnih statističkih podataka vezanih za torrent i informacije sa grupama kojima je dozvoljen pristup vašem profilu. Ove postavke su poništene ako ne dozvolite bilo kojoj grupi da pristupi statistikama i informacijama vezanim za torrent, ili ako idete Privatno',
+ 'torrent-notification' => 'Podešavanja obaveštenja o greškama',
+ 'torrent-notification-comment' => 'Primite obavijest kada učitan torrent dobije novi komentar',
+ 'torrent-notification-thank' => 'Primite obavijest kada novi torrent dobije novo zahvale',
+ 'torrent-notification-tip' => 'Primite obaveštenje kada novi upload učitan torrent',
+ 'torrent-notification-help' => 'Kontrola koja obavještenja se šalju u vezi sa aktivnostima torrenta. Ove postavke su nadjačane ako ne dozvolite bilo kojoj grupi da šalje obaveštenja o aktivnostima torrenta ili ako onemogućite obaveštenja',
+ 'torrent-privacy' => 'Podešavanja Torrenta',
+ 'torrent-privacy-download' => 'Omogućite korisnicima da vide listu bujica koje ste preuzeli',
+ 'torrent-privacy-upload' => 'Omogućite korisnicima da vide listu bujica koje ste učitali',
+ 'torrent-privacy-peer' => 'Dozvolite korisnicima da vas vide u tabeli istorije torrenta',
+ 'torrents' => 'Torrents',
+ 'torrents-history' => 'Torrents History',
+ 'total-download' => 'Total Download',
+ 'total-downloads' => 'Ukupno preuzimanja',
+ 'total-leeching' => 'Total Leeching',
+ 'total-seeding' => 'Total Seeding',
+ 'total-seedtime' => 'Ukupno seme',
+ 'total-upload' => 'Ukupno učitavanje',
+ 'total-uploads' => 'Ukupno učitavanja',
+ 'unban' => 'Unban User',
+ 'unfollow' => 'Unfollow',
+ 'unlocked' => 'Unlocked',
+ 'unlocked-achievements' => 'Unlocked Achievements',
+ 'unsatisfieds' => 'Unsatisfieds',
+ 'upload-bon' => 'Dodaj u BON Store',
+ 'upload-recorded' => 'Snimljeni prenos',
+ 'upload-true' => 'True Upload',
+ 'uploads' => 'Uploads',
+ 'uploads-table' => 'Uploads Table',
+ 'user' => 'User',
+ 'user-id' => 'Korisnički broj',
+ 'username-seedbox' => 'Korisničko ime Seedbox',
+ 'visible-to-achievement' => 'Dostignuća Vidljivo',
+ 'visible-to-achievement-help' => 'Vaša dostignuća će biti vidljiva samo osoblju i sljedećim grupama. Ove postavke su poništene ako idete Privatno',
+ 'visible-to-follower' => 'Followers Visible To',
+ 'visible-to-follower-help' => 'Vaši sljedbenici će biti vidljivi samo osoblju i sljedećim grupama. Ove postavke su poništene ako idete Privatno',
+ 'visible-to-forum' => 'Informacije o forumu Vidljivo',
+ 'visible-to-forum-help' => 'Informacije o forumu bit će vidljive samo osoblju i sljedećim grupama. Ove postavke su poništene ako idete Privatno',
+ 'visible-to-other' => 'Drugo Vidljivo za',
+ 'visible-to-other-help' => 'Ostale informacije koje se odnose na vaš račun bit će vidljive samo osoblju i sljedećim grupama. Ove postavke su poništene ako idete Privatno ili ako idete skriveni',
+ 'visible-to-profile' => 'Profil vidljiv za',
+ 'visible-to-profile-help' => 'Vaš profil će biti vidljiv samo osoblju i sljedećim grupama. Ove postavke su poništene ako idete Privatno',
+ 'visible-to-request' => 'Zatražite informacije vidljive za',
+ 'visible-to-request-help' => 'Informacije o vašem zahtjevu bit će vidljive samo osoblju i sljedećim grupama. Ove postavke su poništene ako idete Privatno',
+ 'visible-to-torrent' => 'Informacije o torentu vidljive su za',
+ 'visible-to-torrent-help' => 'Vaše informacije o torrentu će biti vidljive samo osoblju i sljedećim grupama. Ove postavke su poništene ako idete Privatno ili ako idete skriveni',
+ 'warned-on' => 'Warned On',
+ 'warning' => 'Upozorenje',
+ 'warning-log' => 'Dnevnik upozorenja',
+ 'wishlist' => 'Wishlist',
];
diff --git a/lang/bs/validation.php b/lang/bs/validation.php
index 89e25864b..d07358ee0 100644
--- a/lang/bs/validation.php
+++ b/lang/bs/validation.php
@@ -23,108 +23,108 @@ return [
|
*/
- 'accepted' => 'Polje :attribute mora biti prihvaćeno.',
- 'active_url' => 'Polje :attribute nije validan URL.',
- 'after' => 'Polje :attribute mora biti datum poslije :date.',
- 'after_or_equal' => 'The :attribute must be a date after or equal to :date.',
- 'alpha' => 'Polje :attribute može sadržati samo slova.',
- 'alpha_dash' => 'Polje :attribute može sadržati samo slova, brojeve i povlake.',
- 'alpha_num' => 'Polje :attribute može sadržati samo slova i brojeve.',
- 'array' => 'Polje :attribute mora biti niz.',
- 'before' => 'Polje :attribute mora biti datum prije :date.',
- 'before_or_equal' => 'The :attribute must be a date before or equal to :date.',
- 'between' => [
+ 'accepted' => 'Polje :attribute mora biti prihvaćeno.',
+ 'active_url' => 'Polje :attribute nije validan URL.',
+ 'after' => 'Polje :attribute mora biti datum poslije :date.',
+ 'after_or_equal' => 'The :attribute must be a date after or equal to :date.',
+ 'alpha' => 'Polje :attribute može sadržati samo slova.',
+ 'alpha_dash' => 'Polje :attribute može sadržati samo slova, brojeve i povlake.',
+ 'alpha_num' => 'Polje :attribute može sadržati samo slova i brojeve.',
+ 'array' => 'Polje :attribute mora biti niz.',
+ 'before' => 'Polje :attribute mora biti datum prije :date.',
+ 'before_or_equal' => 'The :attribute must be a date before or equal to :date.',
+ 'between' => [
'numeric' => 'Polje :attribute mora biti izmedju :min - :max.',
- 'file' => 'Fajl :attribute mora biti izmedju :min - :max kilobajta.',
- 'string' => 'Polje :attribute mora biti izmedju :min - :max karaktera.',
- 'array' => 'Polje :attribute mora biti između :min - :max karaktera.',
+ 'file' => 'Fajl :attribute mora biti izmedju :min - :max kilobajta.',
+ 'string' => 'Polje :attribute mora biti izmedju :min - :max karaktera.',
+ 'array' => 'Polje :attribute mora biti između :min - :max karaktera.',
],
- 'boolean' => 'Polje :attribute mora biti tačno ili netačno',
- 'confirmed' => 'Potvrda polja :attribute se ne poklapa.',
- 'date' => 'Polje :attribute nema ispravan datum.',
- 'date_equals' => 'The :attribute must be a date equal to :date.',
- 'date_format' => 'Polje :attribute nema odgovarajući format :format.',
- 'different' => 'Polja :attribute i :other moraju biti različita.',
- 'digits' => 'Polje :attribute mora da sadži :digits brojeve.',
- 'digits_between' => 'Polje :attribute mora biti između :min i :max broja.',
- 'dimensions' => 'The :attribute has invalid image dimensions.',
- 'distinct' => 'The :attribute field has a duplicate value.',
- 'email' => 'Format polja :attribute mora biti validan email.',
- 'exists' => 'Odabrano polje :attribute nije validno.',
- 'file' => 'The :attribute must be a file.',
- 'filled' => 'Polje :attribute je obavezno.',
- 'gt' => [
+ 'boolean' => 'Polje :attribute mora biti tačno ili netačno',
+ 'confirmed' => 'Potvrda polja :attribute se ne poklapa.',
+ 'date' => 'Polje :attribute nema ispravan datum.',
+ 'date_equals' => 'The :attribute must be a date equal to :date.',
+ 'date_format' => 'Polje :attribute nema odgovarajući format :format.',
+ 'different' => 'Polja :attribute i :other moraju biti različita.',
+ 'digits' => 'Polje :attribute mora da sadži :digits brojeve.',
+ 'digits_between' => 'Polje :attribute mora biti između :min i :max broja.',
+ 'dimensions' => 'The :attribute has invalid image dimensions.',
+ 'distinct' => 'The :attribute field has a duplicate value.',
+ 'email' => 'Format polja :attribute mora biti validan email.',
+ 'exists' => 'Odabrano polje :attribute nije validno.',
+ 'file' => 'The :attribute must be a file.',
+ 'filled' => 'Polje :attribute je obavezno.',
+ 'gt' => [
'numeric' => 'The :attribute must be greater than :value.',
- 'file' => 'The :attribute must be greater than :value kilobytes.',
- 'string' => 'The :attribute must be greater than :value characters.',
- 'array' => 'The :attribute must have more than :value items.',
+ 'file' => 'The :attribute must be greater than :value kilobytes.',
+ 'string' => 'The :attribute must be greater than :value characters.',
+ 'array' => 'The :attribute must have more than :value items.',
],
- 'gte' => [
+ 'gte' => [
'numeric' => 'The :attribute must be greater than or equal :value.',
- 'file' => 'The :attribute must be greater than or equal :value kilobytes.',
- 'string' => 'The :attribute must be greater than or equal :value characters.',
- 'array' => 'The :attribute must have :value items or more.',
+ 'file' => 'The :attribute must be greater than or equal :value kilobytes.',
+ 'string' => 'The :attribute must be greater than or equal :value characters.',
+ 'array' => 'The :attribute must have :value items or more.',
],
- 'image' => 'Polje :attribute mora biti slika.',
- 'in' => 'Odabrano polje :attribute nije validno.',
- 'in_array' => 'The :attribute field does not exist in :other.',
- 'integer' => 'Polje :attribute mora biti broj.',
- 'ip' => 'Polje :attribute mora biti validna IP adresa.',
- 'ipv4' => 'The :attribute must be a valid IPv4 address.',
- 'ipv6' => 'The :attribute must be a valid IPv6 address.',
- 'json' => 'The :attribute must be a valid JSON string.',
- 'lt' => [
+ 'image' => 'Polje :attribute mora biti slika.',
+ 'in' => 'Odabrano polje :attribute nije validno.',
+ 'in_array' => 'The :attribute field does not exist in :other.',
+ 'integer' => 'Polje :attribute mora biti broj.',
+ 'ip' => 'Polje :attribute mora biti validna IP adresa.',
+ 'ipv4' => 'The :attribute must be a valid IPv4 address.',
+ 'ipv6' => 'The :attribute must be a valid IPv6 address.',
+ 'json' => 'The :attribute must be a valid JSON string.',
+ 'lt' => [
'numeric' => 'The :attribute must be less than :value.',
- 'file' => 'The :attribute must be less than :value kilobytes.',
- 'string' => 'The :attribute must be less than :value characters.',
- 'array' => 'The :attribute must have less than :value items.',
+ 'file' => 'The :attribute must be less than :value kilobytes.',
+ 'string' => 'The :attribute must be less than :value characters.',
+ 'array' => 'The :attribute must have less than :value items.',
],
- 'lte' => [
+ 'lte' => [
'numeric' => 'The :attribute must be less than or equal :value.',
- 'file' => 'The :attribute must be less than or equal :value kilobytes.',
- 'string' => 'The :attribute must be less than or equal :value characters.',
- 'array' => 'The :attribute must not have more than :value items.',
+ 'file' => 'The :attribute must be less than or equal :value kilobytes.',
+ 'string' => 'The :attribute must be less than or equal :value characters.',
+ 'array' => 'The :attribute must not have more than :value items.',
],
- 'max' => [
+ 'max' => [
'numeric' => 'Polje :attribute mora biti manje od :max.',
- 'file' => 'Polje :attribute mora biti manje od :max kilobajta.',
- 'string' => 'Polje :attribute mora sadržati manje od :max karaktera.',
- 'array' => 'Polje :attribute mora sadržati manje od :max karaktera.',
+ 'file' => 'Polje :attribute mora biti manje od :max kilobajta.',
+ 'string' => 'Polje :attribute mora sadržati manje od :max karaktera.',
+ 'array' => 'Polje :attribute mora sadržati manje od :max karaktera.',
],
- 'mimes' => 'Polje :attribute mora biti fajl tipa: :values.',
- 'mimetypes' => 'Polje :attribute mora biti fajl tipa: :values.',
- 'min' => [
+ 'mimes' => 'Polje :attribute mora biti fajl tipa: :values.',
+ 'mimetypes' => 'Polje :attribute mora biti fajl tipa: :values.',
+ 'min' => [
'numeric' => 'Polje :attribute mora biti najmanje :min.',
- 'file' => 'Fajl :attribute mora biti najmanje :min kilobajta.',
- 'string' => 'Polje :attribute mora sadržati najmanje :min karaktera.',
- 'array' => 'Polje :attribute mora sadržati najmanje :min karaktera.',
+ 'file' => 'Fajl :attribute mora biti najmanje :min kilobajta.',
+ 'string' => 'Polje :attribute mora sadržati najmanje :min karaktera.',
+ 'array' => 'Polje :attribute mora sadržati najmanje :min karaktera.',
],
- 'not_in' => 'Odabrani element polja :attribute nije validan.',
- 'not_regex' => 'The :attribute format is invalid.',
- 'numeric' => 'Polje :attribute mora biti broj.',
- 'present' => 'The :attribute field must be present.',
- 'regex' => 'Polje :attribute ima neispravan format.',
- 'required' => 'Polje :attribute je obavezno.',
- 'required_if' => 'Polje :attribute je obavezno kada :other je :value.',
- 'required_unless' => 'The :attribute field is required unless :other is in :values.',
- 'required_with' => 'Polje :attribute je obavezno kada je :values prikazano.',
- 'required_with_all' => 'Polje :attribute je obavezno kada je :values prikazano.',
- 'required_without' => 'Polje :attribute je obavezno kada :values nije prikazano.',
+ 'not_in' => 'Odabrani element polja :attribute nije validan.',
+ 'not_regex' => 'The :attribute format is invalid.',
+ 'numeric' => 'Polje :attribute mora biti broj.',
+ 'present' => 'The :attribute field must be present.',
+ 'regex' => 'Polje :attribute ima neispravan format.',
+ 'required' => 'Polje :attribute je obavezno.',
+ 'required_if' => 'Polje :attribute je obavezno kada :other je :value.',
+ 'required_unless' => 'The :attribute field is required unless :other is in :values.',
+ 'required_with' => 'Polje :attribute je obavezno kada je :values prikazano.',
+ 'required_with_all' => 'Polje :attribute je obavezno kada je :values prikazano.',
+ 'required_without' => 'Polje :attribute je obavezno kada :values nije prikazano.',
'required_without_all' => 'Polje :attribute je obavezno kada nijedno :values nije prikazano.',
- 'same' => 'Polja :attribute i :other se moraju poklapati.',
- 'size' => [
+ 'same' => 'Polja :attribute i :other se moraju poklapati.',
+ 'size' => [
'numeric' => 'Polje :attribute mora biti :size.',
- 'file' => 'Fajl :attribute mora biti :size kilobajta.',
- 'string' => 'Polje :attribute mora biti :size karaktera.',
- 'array' => 'Polje :attribute mora biti :size karaktera.',
+ 'file' => 'Fajl :attribute mora biti :size kilobajta.',
+ 'string' => 'Polje :attribute mora biti :size karaktera.',
+ 'array' => 'Polje :attribute mora biti :size karaktera.',
],
- 'starts_with' => 'The :attribute must start with one of the following: :values',
- 'string' => 'Polje :attribute mora sadrzavati slova.',
- 'timezone' => 'Polje :attribute mora biti ispravna vremenska zona.',
- 'unique' => 'Polje :attribute već postoji.',
- 'uploaded' => 'The :attribute failed to upload.',
- 'url' => 'Format polja :attribute nije validan.',
- 'uuid' => 'The :attribute must be a valid UUID.',
+ 'starts_with' => 'The :attribute must start with one of the following: :values',
+ 'string' => 'Polje :attribute mora sadrzavati slova.',
+ 'timezone' => 'Polje :attribute mora biti ispravna vremenska zona.',
+ 'unique' => 'Polje :attribute već postoji.',
+ 'uploaded' => 'The :attribute failed to upload.',
+ 'url' => 'Format polja :attribute nije validan.',
+ 'uuid' => 'The :attribute must be a valid UUID.',
/*
|--------------------------------------------------------------------------
diff --git a/lang/ca/articles.php b/lang/ca/articles.php
index 9de1478c2..22d8ce0eb 100644
--- a/lang/ca/articles.php
+++ b/lang/ca/articles.php
@@ -12,8 +12,8 @@
*/
return [
- 'articles' => 'Articles',
+ 'articles' => 'Articles',
'meta-articles' => 'Articles i notícies sobre el seguidor i la comunitat',
- 'published-at' => 'Publicat el',
- 'read-more' => 'Llegeix més',
+ 'published-at' => 'Publicat el',
+ 'read-more' => 'Llegeix més',
];
diff --git a/lang/ca/auth.php b/lang/ca/auth.php
index 878ef6099..a99b2980e 100644
--- a/lang/ca/auth.php
+++ b/lang/ca/auth.php
@@ -23,6 +23,6 @@ return [
|
*/
- 'failed' => 'Aquestes credencials no concorden amb els nostres registres.',
+ 'failed' => 'Aquestes credencials no concorden amb els nostres registres.',
'throttle' => 'Heu superat el nombre màxim d\'intents d\'accés. Per favor, torna a intentar-ho en :seconds segons.',
];
diff --git a/lang/ca/backup.php b/lang/ca/backup.php
index 798f213cd..6f357747c 100644
--- a/lang/ca/backup.php
+++ b/lang/ca/backup.php
@@ -12,32 +12,32 @@
*/
return [
- 'actions' => 'Accions',
- 'backup' => 'Còpia de seguretat',
- 'backup_doesnt_exist' => 'El fitxer de còpia de seguretat no existeix.',
- 'create_a_new_backup' => 'Crea una còpia de seguretat completa',
- 'create_a_new_files_backup' => 'Crea còpia de seguretat de fitxers',
- 'create_a_new_db_backup' => 'Crea una còpia de seguretat de la base de dades',
- 'create_confirmation_message' => 'S està tornant a carregar la pàgina en 3 segons.',
- 'create_confirmation_title' => 'S ha completat la còpia de seguretat',
- 'create_error_message' => 'No es pot crear el fitxer de còpia de seguretat.',
- 'create_error_title' => 'Error de còpia de seguretat',
- 'create_warning_message' => 'No s’ha creat la vostra còpia de seguretat. Comproveu els fitxers de registre per obtenir més informació.',
- 'create_warning_title' => 'Error desconegut',
- 'date' => 'Data',
- 'delete' => 'Suprimeix',
- 'delete_cancel_message' => 'El fitxer de còpia de seguretat NO s’ha suprimit.',
- 'delete_cancel_title' => 'Està bé',
- 'delete_confirm' => 'Esteu segur que voleu suprimir aquest fitxer de còpia de seguretat?',
- 'delete_confirmation_message' => 'S ha suprimit el fitxer de còpia de seguretat.',
- 'delete_confirmation_title' => 'Fet',
- 'delete_error_message' => 'El fitxer de còpia de seguretat NO s’ha suprimit.',
- 'delete_error_title' => 'Error',
- 'download' => 'descarregar',
- 'existing_backups' => 'Còpies de seguretat existents',
- 'file_size' => 'Mida de l arxiu',
- 'location' => 'Ubicació',
- 'manager' => 'Gestor',
- 'no_disks_configured' => 'No s’ha configurat cap disc de còpia de seguretat a config / backup.php',
+ 'actions' => 'Accions',
+ 'backup' => 'Còpia de seguretat',
+ 'backup_doesnt_exist' => 'El fitxer de còpia de seguretat no existeix.',
+ 'create_a_new_backup' => 'Crea una còpia de seguretat completa',
+ 'create_a_new_files_backup' => 'Crea còpia de seguretat de fitxers',
+ 'create_a_new_db_backup' => 'Crea una còpia de seguretat de la base de dades',
+ 'create_confirmation_message' => 'S està tornant a carregar la pàgina en 3 segons.',
+ 'create_confirmation_title' => 'S ha completat la còpia de seguretat',
+ 'create_error_message' => 'No es pot crear el fitxer de còpia de seguretat.',
+ 'create_error_title' => 'Error de còpia de seguretat',
+ 'create_warning_message' => 'No s’ha creat la vostra còpia de seguretat. Comproveu els fitxers de registre per obtenir més informació.',
+ 'create_warning_title' => 'Error desconegut',
+ 'date' => 'Data',
+ 'delete' => 'Suprimeix',
+ 'delete_cancel_message' => 'El fitxer de còpia de seguretat NO s’ha suprimit.',
+ 'delete_cancel_title' => 'Està bé',
+ 'delete_confirm' => 'Esteu segur que voleu suprimir aquest fitxer de còpia de seguretat?',
+ 'delete_confirmation_message' => 'S ha suprimit el fitxer de còpia de seguretat.',
+ 'delete_confirmation_title' => 'Fet',
+ 'delete_error_message' => 'El fitxer de còpia de seguretat NO s’ha suprimit.',
+ 'delete_error_title' => 'Error',
+ 'download' => 'descarregar',
+ 'existing_backups' => 'Còpies de seguretat existents',
+ 'file_size' => 'Mida de l arxiu',
+ 'location' => 'Ubicació',
+ 'manager' => 'Gestor',
+ 'no_disks_configured' => 'No s’ha configurat cap disc de còpia de seguretat a config / backup.php',
'only_local_downloads_supported' => 'Només són compatibles les baixades del sistema de fitxers local.',
];
diff --git a/lang/ca/blocks.php b/lang/ca/blocks.php
index c8b7031f5..7253a0a01 100644
--- a/lang/ca/blocks.php
+++ b/lang/ca/blocks.php
@@ -12,19 +12,19 @@
*/
return [
- 'chatbox' => 'Xat de xat',
- 'click' => 'Feu clic a',
- 'to-enable-editor' => 'per habilitar l’editor',
- 'featured-by' => 'Destacat per',
- 'featured-torrents' => 'Torrents destacats',
+ 'chatbox' => 'Xat de xat',
+ 'click' => 'Feu clic a',
+ 'to-enable-editor' => 'per habilitar l’editor',
+ 'featured-by' => 'Destacat per',
+ 'featured-torrents' => 'Torrents destacats',
'featured-torrents-intro' => 'Aconsegueix-los mentre puguis!',
- 'featured-until' => 'Aquest és el torrent fins a',
- 'top-torrents' => 'Top Torrents',
- 'latest-posts' => 'Últims missatges',
- 'latest-topics' => 'Últims temes',
- 'active-in-last' => 'Activa per última vegada',
- 'users-online' => 'Usuaris en línia',
- 'check-news' => 'Notícies (consultar diàriament)',
- 'new-news' => 'Notícies noves',
- 'new-torrents' => 'Nous torrents',
+ 'featured-until' => 'Aquest és el torrent fins a',
+ 'top-torrents' => 'Top Torrents',
+ 'latest-posts' => 'Últims missatges',
+ 'latest-topics' => 'Últims temes',
+ 'active-in-last' => 'Activa per última vegada',
+ 'users-online' => 'Usuaris en línia',
+ 'check-news' => 'Notícies (consultar diàriament)',
+ 'new-news' => 'Notícies noves',
+ 'new-torrents' => 'Nous torrents',
];
diff --git a/lang/ca/bon.php b/lang/ca/bon.php
index 46070a714..5f37d8c45 100644
--- a/lang/ca/bon.php
+++ b/lang/ca/bon.php
@@ -12,44 +12,44 @@
*/
return [
- 'activated' => 'Activat',
- 'active' => 'Activat.',
- 'amount' => 'Quantitat',
- 'bon' => 'BON',
- 'bonus' => 'Bonificació',
- 'date' => 'Data',
- 'earning' => 'Guanyar',
- 'earning-rate' => 'A aquest ritme de guanys guanyareu el següent per període de temps.',
- 'earnings' => 'Guanys',
- 'exchange' => 'Intercanvi',
- 'exchange-warning' => 'Els canvis són definitius. Comproveu les vostres opcions abans de fer un canvi.',
- 'extended-stats' => 'Estadístiques esteses',
- 'gift' => 'Regal',
- 'gift-bonus' => 'Punts de bonificació de regal',
- 'gift-to' => 'Punts de bonificació de regal a',
- 'gifts' => 'Regals',
- 'item' => 'Article',
- 'no-refund' => 'Sense reemborsaments!',
- 'per-day' => 'Punts per dia',
- 'per-hour' => 'Punts per hora',
- 'per-minute' => 'Punts per minut',
- 'per-month' => 'Punts per mes',
- 'per-second' => 'Punts per segon',
- 'per-week' => 'Punts per setmana',
- 'per-year' => 'Punts per any',
- 'points' => 'Punts',
- 'receiver' => 'Receptor',
- 'review-seeds' => 'Reviseu tots els Torrents sembrats',
- 'send-gift' => 'Enviar un regal',
- 'sender' => 'Remitent',
- 'store' => 'Botiga',
- 'tips' => 'Consells',
- 'total' => 'Guanys totals',
- 'total-gifts' => 'En regals BON Total',
- 'total-tips' => 'A Total BON Tips',
+ 'activated' => 'Activat',
+ 'active' => 'Activat.',
+ 'amount' => 'Quantitat',
+ 'bon' => 'BON',
+ 'bonus' => 'Bonificació',
+ 'date' => 'Data',
+ 'earning' => 'Guanyar',
+ 'earning-rate' => 'A aquest ritme de guanys guanyareu el següent per període de temps.',
+ 'earnings' => 'Guanys',
+ 'exchange' => 'Intercanvi',
+ 'exchange-warning' => 'Els canvis són definitius. Comproveu les vostres opcions abans de fer un canvi.',
+ 'extended-stats' => 'Estadístiques esteses',
+ 'gift' => 'Regal',
+ 'gift-bonus' => 'Punts de bonificació de regal',
+ 'gift-to' => 'Punts de bonificació de regal a',
+ 'gifts' => 'Regals',
+ 'item' => 'Article',
+ 'no-refund' => 'Sense reemborsaments!',
+ 'per-day' => 'Punts per dia',
+ 'per-hour' => 'Punts per hora',
+ 'per-minute' => 'Punts per minut',
+ 'per-month' => 'Punts per mes',
+ 'per-second' => 'Punts per segon',
+ 'per-week' => 'Punts per setmana',
+ 'per-year' => 'Punts per any',
+ 'points' => 'Punts',
+ 'receiver' => 'Receptor',
+ 'review-seeds' => 'Reviseu tots els Torrents sembrats',
+ 'send-gift' => 'Enviar un regal',
+ 'sender' => 'Remitent',
+ 'store' => 'Botiga',
+ 'tips' => 'Consells',
+ 'total' => 'Guanys totals',
+ 'total-gifts' => 'En regals BON Total',
+ 'total-tips' => 'A Total BON Tips',
'you-have-received-gifts' => 'Heu rebut',
- 'you-have-sent-gifts' => 'Heu enviat',
- 'you-have-received-tips' => 'Heu rebut',
- 'you-have-sent-tips' => 'Heu enviat',
- 'your-points' => 'Els vostres punts',
+ 'you-have-sent-gifts' => 'Heu enviat',
+ 'you-have-received-tips' => 'Heu rebut',
+ 'you-have-sent-tips' => 'Heu enviat',
+ 'your-points' => 'Els vostres punts',
];
diff --git a/lang/ca/bot.php b/lang/ca/bot.php
index e0de93fd2..239c5b7c3 100644
--- a/lang/ca/bot.php
+++ b/lang/ca/bot.php
@@ -12,15 +12,15 @@
*/
return [
- 'about' => 'Quant a',
- 'bot' => 'Bot',
- 'bots' => 'Bots',
- 'color' => 'Color',
- 'command' => 'Comandament',
- 'edit-bot' => 'Edita Bot',
+ 'about' => 'Quant a',
+ 'bot' => 'Bot',
+ 'bots' => 'Bots',
+ 'color' => 'Color',
+ 'command' => 'Comandament',
+ 'edit-bot' => 'Edita Bot',
'emoji-code' => 'Codi Emoji',
- 'help' => 'Ajuda',
- 'icon' => 'Icona',
- 'info' => 'Informació',
- 'name' => 'Nom',
+ 'help' => 'Ajuda',
+ 'icon' => 'Icona',
+ 'info' => 'Informació',
+ 'name' => 'Nom',
];
diff --git a/lang/ca/bug.php b/lang/ca/bug.php
index 9f6d34648..66eeadf5c 100644
--- a/lang/ca/bug.php
+++ b/lang/ca/bug.php
@@ -12,15 +12,15 @@
*/
return [
- 'bug-report' => 'Informe d error',
+ 'bug-report' => 'Informe d error',
'bug-report-description' => 'Informa d un error del lloc',
- 'enter-description' => 'Descriu el problema el millor possible',
- 'enter-email' => 'Introduïu el vostre correu electrònic',
- 'enter-title' => 'Trieu un títol adequat',
- 'enter-username' => 'Introduïu el vostre nom d’usuari',
- 'high' => 'Alta',
- 'low' => 'baix',
- 'priority' => 'Prioritat',
- 'priority-description' => 'Trieu només molt alt si l’error és realment un problema per utilitzar el lloc.',
- 'very-high' => 'Molt alt',
+ 'enter-description' => 'Descriu el problema el millor possible',
+ 'enter-email' => 'Introduïu el vostre correu electrònic',
+ 'enter-title' => 'Trieu un títol adequat',
+ 'enter-username' => 'Introduïu el vostre nom d’usuari',
+ 'high' => 'Alta',
+ 'low' => 'baix',
+ 'priority' => 'Prioritat',
+ 'priority-description' => 'Trieu només molt alt si l’error és realment un problema per utilitzar el lloc.',
+ 'very-high' => 'Molt alt',
];
diff --git a/lang/ca/common.php b/lang/ca/common.php
index 14889a04d..fe3d04936 100644
--- a/lang/ca/common.php
+++ b/lang/ca/common.php
@@ -12,179 +12,179 @@
*/
return [
- 'a-an-art' => '',
- 'about' => 'Sobre nosaltres',
- 'account' => 'Compte',
- 'achievement-title' => 'Impressionant',
+ 'a-an-art' => '',
+ 'about' => 'Sobre nosaltres',
+ 'account' => 'Compte',
+ 'achievement-title' => 'Impressionant',
'achievement-unlocked' => 'Heu desbloquejat l’èxit ": nom"',
- 'active' => 'Actiu',
- 'active-warning' => 'Advertència activa',
- 'add' => 'Afegeix',
- 'added' => 'Afegit',
- 'amount' => 'Quantitat',
- 'anonymous' => 'Anònim',
- 'author' => 'Autor',
- 'balance' => 'Saldo',
- 'blacklist' => 'Llista negra del client',
- 'buffer' => 'Buffer',
- 'bug' => 'Informa d un error',
- 'but' => 'Però',
- 'cancel' => 'Cancel · lar',
- 'category' => 'Categoria',
- 'categories' => 'Categories',
- 'close' => 'Tanca',
- 'comment' => 'Comentari',
- 'comments' => 'Comentaris',
- 'community' => 'Comunitat',
- 'contact' => 'Contacte',
- 'contact-desc' => 'Aquesta sol·licitud de contacte s enviarà al propietari i us respondrà al més aviat possible',
- 'contact-header' => 'Hola',
- 'create' => 'Crear',
- 'created_at' => 'Creat a',
- 'day' => 'Dia',
- 'delete' => 'Suprimeix',
- 'delete-your-comment' => 'Suprimeix el teu comentari',
- 'description' => 'Descripció',
- 'direction' => 'Direcció',
- 'disable' => 'Inhabilitar',
- 'doubleup_activated' => 'Mode de càrrega doble global activat',
- 'download' => 'descarregar',
- 'edit' => 'Edita',
- 'edit-your-comment' => 'Editeu el vostre comentari',
- 'email' => 'Correu electrònic',
- 'email-blacklist' => 'Correu electrònic a la llista negra',
- 'email-whitelist' => 'Llista blanca de correu electrònic',
+ 'active' => 'Actiu',
+ 'active-warning' => 'Advertència activa',
+ 'add' => 'Afegeix',
+ 'added' => 'Afegit',
+ 'amount' => 'Quantitat',
+ 'anonymous' => 'Anònim',
+ 'author' => 'Autor',
+ 'balance' => 'Saldo',
+ 'blacklist' => 'Llista negra del client',
+ 'buffer' => 'Buffer',
+ 'bug' => 'Informa d un error',
+ 'but' => 'Però',
+ 'cancel' => 'Cancel · lar',
+ 'category' => 'Categoria',
+ 'categories' => 'Categories',
+ 'close' => 'Tanca',
+ 'comment' => 'Comentari',
+ 'comments' => 'Comentaris',
+ 'community' => 'Comunitat',
+ 'contact' => 'Contacte',
+ 'contact-desc' => 'Aquesta sol·licitud de contacte s enviarà al propietari i us respondrà al més aviat possible',
+ 'contact-header' => 'Hola',
+ 'create' => 'Crear',
+ 'created_at' => 'Creat a',
+ 'day' => 'Dia',
+ 'delete' => 'Suprimeix',
+ 'delete-your-comment' => 'Suprimeix el teu comentari',
+ 'description' => 'Descripció',
+ 'direction' => 'Direcció',
+ 'disable' => 'Inhabilitar',
+ 'doubleup_activated' => 'Mode de càrrega doble global activat',
+ 'download' => 'descarregar',
+ 'edit' => 'Edita',
+ 'edit-your-comment' => 'Editeu el vostre comentari',
+ 'email' => 'Correu electrònic',
+ 'email-blacklist' => 'Correu electrònic a la llista negra',
+ 'email-whitelist' => 'Llista blanca de correu electrònic',
'email-list-notactive' => 'El sistema de llistes blanques de correu electrònic / llista negra no està activat',
- 'enable' => 'Habilita',
- 'enter' => 'Introduïu',
- 'error' => 'Error',
- 'everyday' => 'Tots els dies',
- 'expired' => 'Caducat',
- 'extra' => 'Extra',
- 'extra-stats' => 'Estadístiques extra',
- 'faq' => 'PMF',
- 'files' => 'Fitxers',
- 'fl_token' => 'Freeleech Token',
- 'fl_tokens' => 'Fitxes Freeleech',
- 'for' => 'per',
- 'forum' => 'Fòrum',
- 'free' => 'Lliure',
- 'freeleech_activated' => 'Mode freeleech global activat',
- 'global' => 'Global',
- 'group' => 'Grup',
- 'groups' => 'Grups',
- 'hidden' => 'Oculta',
- 'high-speeds' => 'Alta velocitat',
- 'home' => 'Inici',
- 'hot' => 'Calenta!',
- 'hour' => 'Hores',
- 'huge' => 'Enorme',
- 'info' => 'Informació',
- 'internal' => 'Intern',
- 'ip' => 'IP',
- 'is-allowed' => 'està permès',
- 'large' => 'Gran',
- 'latest' => 'Últim',
- 'latest-posts' => 'Últims missatges',
- 'latest-topics' => 'Últims temes',
- 'legal' => 'Legal',
- 'legend' => 'Llegenda',
- 'lists' => 'Llistes',
- 'lock-account' => 'Bloqueja el compte',
- 'logout' => 'Tancar sessió',
- 'members' => 'Membres',
- 'message' => 'Missatge',
- 'minute' => 'Minut',
- 'moderated-by' => 'Moderat per',
- 'moderation' => 'Moderació',
- 'moderation-approve' => 'Aprova',
- 'moderation-postpone' => 'Posposar',
- 'moderation-reject' => 'Rebutjar',
- 'month' => 'Mes',
- 'months' => 'Mesos',
- 'my' => 'El meu',
- 'name' => 'Nom',
- 'navigation' => 'Navegació',
- 'new' => 'Nou!',
- 'new-adj' => 'Nou',
- 'news' => 'Notícies',
- 'next' => 'Pròxim',
- 'no' => 'No',
- 'no-comments' => 'Sense comentaris',
- 'no-result' => 'No hi ha cap resultat a la base de dades per a la consulta',
- 'notifications' => 'Notificacions',
- 'older-than' => 'Més gran que',
- 'oldest' => 'El més antic',
- 'openreg_activated' => 'S ha activat el registre obert',
- 'order-by' => 'Demanat per',
- 'other' => 'Altres',
- 'pages' => 'Pàgines',
- 'password' => 'Contrasenya',
- 'patron' => 'Fes-te patró',
- 'pending-torrents' => 'Torrents pendents',
- 'personal' => 'Personal',
- 'plural-suffix' => 's',
- 'port' => 'Port',
- 'position' => 'Posició',
- 'posts' => 'Missatges',
- 'powered-by' => 'Desenvolupat per UNIT3D',
- 'preview' => 'Vista prèvia',
- 'previous' => 'Anterior',
- 'progress' => 'Progrés, progressar',
- 'publish' => 'Publica',
- 'quantity' => 'Quantitat',
- 'quick-search' => 'Cerca ràpida',
- 'ratio' => 'Ràtio',
- 'reason' => 'Raó',
- 'remove' => 'Elimina',
- 'report' => 'Informe',
- 'resend' => 'Reenviar',
- 'reporter' => 'Periodista',
- 'required' => 'Obligatori',
- 'results' => 'Resultats',
- 'rss-system' => 'Sistema RSS',
- 'rules' => 'Normes',
- 'save' => 'Desa',
- 'search' => 'Cerca',
- 'search-results' => 'Resultats de la cerca',
- 'search-results-desc' => 'Vegeu els vostres resultats a continuació',
- 'second' => 'Segon',
- 'select' => 'Seleccioneu',
- 'sort' => 'Ordena',
- 'special' => 'Especial',
- 'staff' => 'Personal',
- 'staff-tools' => 'Eines del personal',
- 'stats' => 'Estadístiques',
- 'status' => 'Estat',
- 'sticked' => 'Destret',
- 'submit' => 'Presentar',
- 'subscriptions' => 'Subscripcions',
- 'teams' => 'Equips',
- 'terms' => 'Condicions d ús',
- 'times' => 'Temps',
- 'title' => 'Títol',
- 'top-bountied' => 'Top rebotjat',
- 'topics' => 'Temes',
- 'tracker-codes' => 'Codis de seguiment',
- 'type' => 'Escriviu',
- 'type-verb' => 'Escriviu',
- 'types' => 'Tipus',
- 'genre' => 'Gènere',
- 'genres' => 'Gèneres',
- 'action' => 'Acció',
- 'actions' => 'Accions',
- 'unknown' => 'Desconegut',
+ 'enable' => 'Habilita',
+ 'enter' => 'Introduïu',
+ 'error' => 'Error',
+ 'everyday' => 'Tots els dies',
+ 'expired' => 'Caducat',
+ 'extra' => 'Extra',
+ 'extra-stats' => 'Estadístiques extra',
+ 'faq' => 'PMF',
+ 'files' => 'Fitxers',
+ 'fl_token' => 'Freeleech Token',
+ 'fl_tokens' => 'Fitxes Freeleech',
+ 'for' => 'per',
+ 'forum' => 'Fòrum',
+ 'free' => 'Lliure',
+ 'freeleech_activated' => 'Mode freeleech global activat',
+ 'global' => 'Global',
+ 'group' => 'Grup',
+ 'groups' => 'Grups',
+ 'hidden' => 'Oculta',
+ 'high-speeds' => 'Alta velocitat',
+ 'home' => 'Inici',
+ 'hot' => 'Calenta!',
+ 'hour' => 'Hores',
+ 'huge' => 'Enorme',
+ 'info' => 'Informació',
+ 'internal' => 'Intern',
+ 'ip' => 'IP',
+ 'is-allowed' => 'està permès',
+ 'large' => 'Gran',
+ 'latest' => 'Últim',
+ 'latest-posts' => 'Últims missatges',
+ 'latest-topics' => 'Últims temes',
+ 'legal' => 'Legal',
+ 'legend' => 'Llegenda',
+ 'lists' => 'Llistes',
+ 'lock-account' => 'Bloqueja el compte',
+ 'logout' => 'Tancar sessió',
+ 'members' => 'Membres',
+ 'message' => 'Missatge',
+ 'minute' => 'Minut',
+ 'moderated-by' => 'Moderat per',
+ 'moderation' => 'Moderació',
+ 'moderation-approve' => 'Aprova',
+ 'moderation-postpone' => 'Posposar',
+ 'moderation-reject' => 'Rebutjar',
+ 'month' => 'Mes',
+ 'months' => 'Mesos',
+ 'my' => 'El meu',
+ 'name' => 'Nom',
+ 'navigation' => 'Navegació',
+ 'new' => 'Nou!',
+ 'new-adj' => 'Nou',
+ 'news' => 'Notícies',
+ 'next' => 'Pròxim',
+ 'no' => 'No',
+ 'no-comments' => 'Sense comentaris',
+ 'no-result' => 'No hi ha cap resultat a la base de dades per a la consulta',
+ 'notifications' => 'Notificacions',
+ 'older-than' => 'Més gran que',
+ 'oldest' => 'El més antic',
+ 'openreg_activated' => 'S ha activat el registre obert',
+ 'order-by' => 'Demanat per',
+ 'other' => 'Altres',
+ 'pages' => 'Pàgines',
+ 'password' => 'Contrasenya',
+ 'patron' => 'Fes-te patró',
+ 'pending-torrents' => 'Torrents pendents',
+ 'personal' => 'Personal',
+ 'plural-suffix' => 's',
+ 'port' => 'Port',
+ 'position' => 'Posició',
+ 'posts' => 'Missatges',
+ 'powered-by' => 'Desenvolupat per UNIT3D',
+ 'preview' => 'Vista prèvia',
+ 'previous' => 'Anterior',
+ 'progress' => 'Progrés, progressar',
+ 'publish' => 'Publica',
+ 'quantity' => 'Quantitat',
+ 'quick-search' => 'Cerca ràpida',
+ 'ratio' => 'Ràtio',
+ 'reason' => 'Raó',
+ 'remove' => 'Elimina',
+ 'report' => 'Informe',
+ 'resend' => 'Reenviar',
+ 'reporter' => 'Periodista',
+ 'required' => 'Obligatori',
+ 'results' => 'Resultats',
+ 'rss-system' => 'Sistema RSS',
+ 'rules' => 'Normes',
+ 'save' => 'Desa',
+ 'search' => 'Cerca',
+ 'search-results' => 'Resultats de la cerca',
+ 'search-results-desc' => 'Vegeu els vostres resultats a continuació',
+ 'second' => 'Segon',
+ 'select' => 'Seleccioneu',
+ 'sort' => 'Ordena',
+ 'special' => 'Especial',
+ 'staff' => 'Personal',
+ 'staff-tools' => 'Eines del personal',
+ 'stats' => 'Estadístiques',
+ 'status' => 'Estat',
+ 'sticked' => 'Destret',
+ 'submit' => 'Presentar',
+ 'subscriptions' => 'Subscripcions',
+ 'teams' => 'Equips',
+ 'terms' => 'Condicions d ús',
+ 'times' => 'Temps',
+ 'title' => 'Títol',
+ 'top-bountied' => 'Top rebotjat',
+ 'topics' => 'Temes',
+ 'tracker-codes' => 'Codis de seguiment',
+ 'type' => 'Escriviu',
+ 'type-verb' => 'Escriviu',
+ 'types' => 'Tipus',
+ 'genre' => 'Gènere',
+ 'genres' => 'Gèneres',
+ 'action' => 'Acció',
+ 'actions' => 'Accions',
+ 'unknown' => 'Desconegut',
'unlocked-achievement' => 'Vostè va desbloquejar: èxit assoliment',
- 'upload' => 'Carregar',
- 'upload-guide' => 'Guia de càrrega',
- 'user' => 'Usuari',
- 'username' => 'Nom d usuari',
- 'users' => 'Usuaris',
- 'view' => 'Veure',
- 'view-all' => 'Veure tot',
- 'warnings' => 'Advertències',
- 'year' => 'Curs',
- 'yes' => 'Sí',
- 'your' => 'El teu',
- 'your-comment' => 'El vostre comentari',
+ 'upload' => 'Carregar',
+ 'upload-guide' => 'Guia de càrrega',
+ 'user' => 'Usuari',
+ 'username' => 'Nom d usuari',
+ 'users' => 'Usuaris',
+ 'view' => 'Veure',
+ 'view-all' => 'Veure tot',
+ 'warnings' => 'Advertències',
+ 'year' => 'Curs',
+ 'yes' => 'Sí',
+ 'your' => 'El teu',
+ 'your-comment' => 'El vostre comentari',
];
diff --git a/lang/ca/email.php b/lang/ca/email.php
index 267198539..690bcfccf 100644
--- a/lang/ca/email.php
+++ b/lang/ca/email.php
@@ -12,46 +12,46 @@
*/
return [
- 'activate-account' => 'Activa el compte',
- 'ban-reason' => 'Raó',
- 'banned-footer' => 'Això és el que obtens per no seguir les regles',
- 'banned-header' => 'Heu estat prohibit',
- 'bug-description' => 'Problema',
- 'bug-footer' => 'Arregla aquesta merda',
- 'bug-header' => 'Nou informe d’error de',
- 'bug-priority' => 'Prioritat',
- 'bug-title' => 'Títol d’error',
- 'contact-header' => 'Nou correu de contacte de',
- 'contact-message' => 'Missatge',
- 'contact-name' => 'Nom',
+ 'activate-account' => 'Activa el compte',
+ 'ban-reason' => 'Raó',
+ 'banned-footer' => 'Això és el que obtens per no seguir les regles',
+ 'banned-header' => 'Heu estat prohibit',
+ 'bug-description' => 'Problema',
+ 'bug-footer' => 'Arregla aquesta merda',
+ 'bug-header' => 'Nou informe d’error de',
+ 'bug-priority' => 'Prioritat',
+ 'bug-title' => 'Títol d’error',
+ 'contact-header' => 'Nou correu de contacte de',
+ 'contact-message' => 'Missatge',
+ 'contact-name' => 'Nom',
'fail-login-greeting' => 'No s ha pogut iniciar la sessió al compte.',
- 'fail-login-line1' => 'S ha detectat un inici de sessió per al vostre compte.',
- 'fail-login-line2' => 'Aquesta sol·licitud s’origina a partir de: ip (: host) a: hora',
- 'fail-login-subject' => 'Notificació d’inici de sessió fallida',
- 'footer-link' => 'Si teniu problemes, feu clic al botó: actionText, copieu i enganxeu l’URL següent al vostre navegador:',
- 'invite-header' => 'Invitació a',
- 'invite-invited' => 'Us han convidat',
- 'invite-message' => 'Missatge',
- 'invite-signup' => 'Registreu-vos ara',
- 'newreply-header' => 'Hi ha una resposta nova en el vostre tema',
- 'newreply-message' => 'Missatge',
- 'newreply-replied' => 'Ha respost al vostre tema',
- 'newreply-view' => 'Veure-ho ara',
- 'no-email-found' => 'No hem trobat aquest correu electrònic al nostre sistema.',
- 'register-code' => 'Per completar l’activació del vostre compte, feu clic al botó següent',
- 'register-footer' => 'Si el botó anterior no funciona, copieu i enganxeu l URL a la barra d adreces del navegador',
- 'register-header' => 'Hola! Gràcies per registrar-vos',
- 'report-comment' => 'Comentari',
- 'report-email' => 'Correu electrònic',
- 'report-header' => 'Hola administrador, s’ha informat d’un enllaç',
- 'report-link' => 'Enllaç',
- 'report-link-hash' => 'Enllaç real',
- 'thanks' => 'Gràcies per fer servir',
- 'unban-footer' => 'Benvingut de nou!',
- 'unban-header' => 'Heu estat prohibit',
- 'unban-reason' => 'Raó',
- 'username-reminder' => 'Recentment ens vau enviar una sol·licitud per al vostre nom d usuari a la nostra aplicació. El vostre nom d’usuari és',
- 'username-sent' => 'El vostre nom d’usuari s’ha enviat a la vostra adreça de correu electrònic.',
- 'disabled-header' => 'El vostre compte ha estat deshabilitat',
- 'pruned-header' => 'S ha eliminat el vostre compte',
+ 'fail-login-line1' => 'S ha detectat un inici de sessió per al vostre compte.',
+ 'fail-login-line2' => 'Aquesta sol·licitud s’origina a partir de: ip (: host) a: hora',
+ 'fail-login-subject' => 'Notificació d’inici de sessió fallida',
+ 'footer-link' => 'Si teniu problemes, feu clic al botó: actionText, copieu i enganxeu l’URL següent al vostre navegador:',
+ 'invite-header' => 'Invitació a',
+ 'invite-invited' => 'Us han convidat',
+ 'invite-message' => 'Missatge',
+ 'invite-signup' => 'Registreu-vos ara',
+ 'newreply-header' => 'Hi ha una resposta nova en el vostre tema',
+ 'newreply-message' => 'Missatge',
+ 'newreply-replied' => 'Ha respost al vostre tema',
+ 'newreply-view' => 'Veure-ho ara',
+ 'no-email-found' => 'No hem trobat aquest correu electrònic al nostre sistema.',
+ 'register-code' => 'Per completar l’activació del vostre compte, feu clic al botó següent',
+ 'register-footer' => 'Si el botó anterior no funciona, copieu i enganxeu l URL a la barra d adreces del navegador',
+ 'register-header' => 'Hola! Gràcies per registrar-vos',
+ 'report-comment' => 'Comentari',
+ 'report-email' => 'Correu electrònic',
+ 'report-header' => 'Hola administrador, s’ha informat d’un enllaç',
+ 'report-link' => 'Enllaç',
+ 'report-link-hash' => 'Enllaç real',
+ 'thanks' => 'Gràcies per fer servir',
+ 'unban-footer' => 'Benvingut de nou!',
+ 'unban-header' => 'Heu estat prohibit',
+ 'unban-reason' => 'Raó',
+ 'username-reminder' => 'Recentment ens vau enviar una sol·licitud per al vostre nom d usuari a la nostra aplicació. El vostre nom d’usuari és',
+ 'username-sent' => 'El vostre nom d’usuari s’ha enviat a la vostra adreça de correu electrònic.',
+ 'disabled-header' => 'El vostre compte ha estat deshabilitat',
+ 'pruned-header' => 'S ha eliminat el vostre compte',
];
diff --git a/lang/ca/forum.php b/lang/ca/forum.php
index d4e934ce0..14c2c9a2b 100644
--- a/lang/ca/forum.php
+++ b/lang/ca/forum.php
@@ -12,63 +12,63 @@
*/
return [
- 'action' => 'Acció',
- 'activity' => 'Activitat',
- 'approved' => 'Aprovat',
- 'author' => 'Autor',
- 'bug' => 'Bug',
- 'category-quick-search' => 'Cerca ràpida del nom del tema (dins de la categoria)',
- 'close-topic' => 'Bloqueja el tema',
- 'closed' => 'Tancat',
- 'create-new-topic' => 'Crea un nou tema',
- 'created' => 'Creat',
- 'current' => 'Actual',
- 'delete-topic' => 'Suprimeix aquest tema',
- 'denied' => 'Negat',
- 'dislike-post' => 'No t agrada aquesta publicació',
- 'display-forum' => 'Mostra els temes de',
- 'edit-post' => 'Edita el missatge',
- 'edit-topic' => 'Edita el tema',
- 'forum' => 'Fòrum',
- 'forums' => 'Fòrums',
- 'implemented' => 'Implementat',
- 'in' => 'In',
- 'invalid' => 'Invàlid',
- 'label' => 'Etiqueta',
- 'label-system' => 'Sistema d’etiquetes',
- 'last-message' => 'Últim missatge',
- 'last-post-info' => 'Informació de l’últim missatge',
- 'latest' => 'Últim',
- 'like-post' => 'Com aquest missatge',
- 'meta-category' => 'Llista de fòrums de la categoria',
- 'moderation' => 'Moderació',
- 'name' => 'Nom',
- 'not-connected' => 'Heu d estar connectat',
- 'not-subscribed' => 'No subscrit',
- 'open' => 'Obre',
- 'open-topic' => 'Obre aquest tema',
- 'permalink' => 'Permalink',
- 'pin' => 'Pin',
- 'post' => 'Publicació',
- 'post-quick-search' => 'Cerca ràpida del cos del missatge',
- 'posts' => 'Missatges',
- 'quote' => 'Cita',
- 'read-topic' => 'Llegiu el tema',
- 'replies' => 'Respostes',
- 'send-new-topic' => 'Desa aquest tema',
- 'solved' => 'Solucionat',
- 'state' => 'Estat',
- 'stats' => 'Estadístiques',
- 'subscribed' => 'Subscrit',
+ 'action' => 'Acció',
+ 'activity' => 'Activitat',
+ 'approved' => 'Aprovat',
+ 'author' => 'Autor',
+ 'bug' => 'Bug',
+ 'category-quick-search' => 'Cerca ràpida del nom del tema (dins de la categoria)',
+ 'close-topic' => 'Bloqueja el tema',
+ 'closed' => 'Tancat',
+ 'create-new-topic' => 'Crea un nou tema',
+ 'created' => 'Creat',
+ 'current' => 'Actual',
+ 'delete-topic' => 'Suprimeix aquest tema',
+ 'denied' => 'Negat',
+ 'dislike-post' => 'No t agrada aquesta publicació',
+ 'display-forum' => 'Mostra els temes de',
+ 'edit-post' => 'Edita el missatge',
+ 'edit-topic' => 'Edita el tema',
+ 'forum' => 'Fòrum',
+ 'forums' => 'Fòrums',
+ 'implemented' => 'Implementat',
+ 'in' => 'In',
+ 'invalid' => 'Invàlid',
+ 'label' => 'Etiqueta',
+ 'label-system' => 'Sistema d’etiquetes',
+ 'last-message' => 'Últim missatge',
+ 'last-post-info' => 'Informació de l’últim missatge',
+ 'latest' => 'Últim',
+ 'like-post' => 'Com aquest missatge',
+ 'meta-category' => 'Llista de fòrums de la categoria',
+ 'moderation' => 'Moderació',
+ 'name' => 'Nom',
+ 'not-connected' => 'Heu d estar connectat',
+ 'not-subscribed' => 'No subscrit',
+ 'open' => 'Obre',
+ 'open-topic' => 'Obre aquest tema',
+ 'permalink' => 'Permalink',
+ 'pin' => 'Pin',
+ 'post' => 'Publicació',
+ 'post-quick-search' => 'Cerca ràpida del cos del missatge',
+ 'posts' => 'Missatges',
+ 'quote' => 'Cita',
+ 'read-topic' => 'Llegiu el tema',
+ 'replies' => 'Respostes',
+ 'send-new-topic' => 'Desa aquest tema',
+ 'solved' => 'Solucionat',
+ 'state' => 'Estat',
+ 'stats' => 'Estadístiques',
+ 'subscribed' => 'Subscrit',
'subscription-quick-search' => 'Cerca ràpida del nom del tema (dins de les subscripcions)',
- 'suggestion' => 'Suggeriment',
- 'topic' => 'Tema',
- 'topic-closed' => 'Aquest tema està tancat',
- 'topic-name' => 'Nom del tema',
- 'topic-quick-search' => 'Cerca ràpida del nom del tema',
- 'topic-title' => 'Títol d’aquest tema',
- 'topics' => 'Temes',
- 'unpin' => 'Desvinculació',
- 'view-all' => 'Veure tots els temes',
- 'views' => 'Vistes',
+ 'suggestion' => 'Suggeriment',
+ 'topic' => 'Tema',
+ 'topic-closed' => 'Aquest tema està tancat',
+ 'topic-name' => 'Nom del tema',
+ 'topic-quick-search' => 'Cerca ràpida del nom del tema',
+ 'topic-title' => 'Títol d’aquest tema',
+ 'topics' => 'Temes',
+ 'unpin' => 'Desvinculació',
+ 'view-all' => 'Veure tots els temes',
+ 'views' => 'Vistes',
];
diff --git a/lang/ca/graveyard.php b/lang/ca/graveyard.php
index cdc540e4e..7203bc0ca 100644
--- a/lang/ca/graveyard.php
+++ b/lang/ca/graveyard.php
@@ -12,15 +12,15 @@
*/
return [
- 'dead' => 'Mort',
- 'graveyard' => 'Cementiri',
- 'guidelines' => 'Directrius',
+ 'dead' => 'Mort',
+ 'graveyard' => 'Cementiri',
+ 'guidelines' => 'Directrius',
'guidelines-content' => '1) No podeu ressuscitar les vostres pròpies càrregues.
2) No ressuscitar res que no pugueu comprometre s també.',
- 'howto' => 'Heres The Rule',
- 'howto-desc1' => 'Heu de sembrar : nomeu-vos durant 30 dies per a una ressurecció amb èxit. En aquest cas, quan es produeixi la seva sembra actual',
- 'howto-desc2' => 'Serà recompensat',
- 'howto-hits' => 'Accessos',
- 'pending' => 'Pendents',
- 'resurrect' => 'Resucita',
- 'reward' => 'Fitxes Freeleech',
+ 'howto' => 'Heres The Rule',
+ 'howto-desc1' => 'Heu de sembrar : nomeu-vos durant 30 dies per a una ressurecció amb èxit. En aquest cas, quan es produeixi la seva sembra actual',
+ 'howto-desc2' => 'Serà recompensat',
+ 'howto-hits' => 'Accessos',
+ 'pending' => 'Pendents',
+ 'resurrect' => 'Resucita',
+ 'reward' => 'Fitxes Freeleech',
];
diff --git a/lang/ca/notification.php b/lang/ca/notification.php
index 1205953a5..c7f615077 100644
--- a/lang/ca/notification.php
+++ b/lang/ca/notification.php
@@ -12,14 +12,14 @@
*/
return [
- 'date' => 'Data',
- 'delete' => 'Suprimeix',
- 'delete-all' => 'Suprimeix totes les notificacions',
- 'mark-all-read' => 'Marcar tots com a llegits',
- 'mark-read' => 'Marcar com llegit',
- 'message' => 'Missatge',
+ 'date' => 'Data',
+ 'delete' => 'Suprimeix',
+ 'delete-all' => 'Suprimeix totes les notificacions',
+ 'mark-all-read' => 'Marcar tots com a llegits',
+ 'mark-read' => 'Marcar com llegit',
+ 'message' => 'Missatge',
'no-notifications' => 'No s’ha trobat cap notificació',
- 'notifications' => 'Notificacions',
- 'read' => 'Llegiu',
- 'title' => 'Títol',
+ 'notifications' => 'Notificacions',
+ 'read' => 'Llegiu',
+ 'title' => 'Títol',
];
diff --git a/lang/ca/page.php b/lang/ca/page.php
index 0f157a239..d273915f9 100644
--- a/lang/ca/page.php
+++ b/lang/ca/page.php
@@ -12,28 +12,28 @@
*/
return [
- 'aboutus-advantage' => 'L avantatge',
- 'aboutus-advantage1' => 'Tenim membres experimentats i personal amb gran coneixement sobre el món del vídeo / àudio d alta definició i el suport tècnic.',
- 'aboutus-advantage2' => 'Juntament amb la nostra extensa passió per pel·lícules i programes de televisió, oferim també una de les millors seleccions d’una cosa que la majoria no - FANRES! UN GRAN GRÀCIES als nostres col·laboradors.',
- 'aboutus-advantage3' => 'Tot i que acceptem donacions per mantenir el lloc en marxa, no hi haurà cap grup de missatgeria o banners al lloc. No us demanem.',
- 'aboutus-advantage4' => 'La nostra comunitat és insuperable per a la seva edat primerenca. Entre el nostre personal i la nostra base de dades, sempre vam estar aquí per ajudar-vos. Vaig ser un apassionat per assegurar-vos que la vostra experiència en: title és una cosa increïble.',
- 'aboutus-advantage5' => 'El nostre servei és utilitzat diàriament per moltes persones a tot el món. Hem provat que ens preocupem per la funcionalitat i la seguretat del nostre codi de base i es pot confiar i confiar. Els nostres desenvolupadors treballen diàriament per proporcionar una base de codi nex-gen veritablement.',
- 'aboutus-header' => 'Hola',
- 'aboutus-rules' => 'El que necessitem de vosaltres',
- 'aboutus-rules1' => 'Per ser un membre actiu de la comunitat! Això significa unir-vos a converses de manera productiva, afegir contingut aprovat i ajudar a altres usuaris si és possible.',
- 'aboutus-rules2' => 'Per llegir les regles completament i respectar-les!',
- 'aboutus-rules3' => 'Feu suggeriments. Ens esforcem per fer que el títol sigui millor cada dia. No estem dient que s’utilitzarà qualsevol suggeriment, però mai està de més veure noves idees.',
- 'aboutus-welcome' => 'Parlem',
- 'aboutus-welcome-desc' => ': title és una base de dades de Movie / TV / FANR construïda per la comunitat . La nostra increïble comunitat ha afegit totes les dades des del 2017.: els títols estan enfocats a un contingut d alta definició, a una base de dades activa, a un codi de codi increïble i segur i a un equip de personal amable i servicial.',
- 'blacklist-browsers' => 'Navegadors',
- 'blacklist-btclient' => 'Client BitTorrent',
- 'blacklist-clients' => 'Clients',
- 'blacklist-desc' => 'Els següents navegadors i els clients de BitTorrent es mostren a la llista negra / prohibida de l’anunci a: títol',
- 'blacklist-webbrowser' => 'Navegador web',
+ 'aboutus-advantage' => 'L avantatge',
+ 'aboutus-advantage1' => 'Tenim membres experimentats i personal amb gran coneixement sobre el món del vídeo / àudio d alta definició i el suport tècnic.',
+ 'aboutus-advantage2' => 'Juntament amb la nostra extensa passió per pel·lícules i programes de televisió, oferim també una de les millors seleccions d’una cosa que la majoria no - FANRES! UN GRAN GRÀCIES als nostres col·laboradors.',
+ 'aboutus-advantage3' => 'Tot i que acceptem donacions per mantenir el lloc en marxa, no hi haurà cap grup de missatgeria o banners al lloc. No us demanem.',
+ 'aboutus-advantage4' => 'La nostra comunitat és insuperable per a la seva edat primerenca. Entre el nostre personal i la nostra base de dades, sempre vam estar aquí per ajudar-vos. Vaig ser un apassionat per assegurar-vos que la vostra experiència en: title és una cosa increïble.',
+ 'aboutus-advantage5' => 'El nostre servei és utilitzat diàriament per moltes persones a tot el món. Hem provat que ens preocupem per la funcionalitat i la seguretat del nostre codi de base i es pot confiar i confiar. Els nostres desenvolupadors treballen diàriament per proporcionar una base de codi nex-gen veritablement.',
+ 'aboutus-header' => 'Hola',
+ 'aboutus-rules' => 'El que necessitem de vosaltres',
+ 'aboutus-rules1' => 'Per ser un membre actiu de la comunitat! Això significa unir-vos a converses de manera productiva, afegir contingut aprovat i ajudar a altres usuaris si és possible.',
+ 'aboutus-rules2' => 'Per llegir les regles completament i respectar-les!',
+ 'aboutus-rules3' => 'Feu suggeriments. Ens esforcem per fer que el títol sigui millor cada dia. No estem dient que s’utilitzarà qualsevol suggeriment, però mai està de més veure noves idees.',
+ 'aboutus-welcome' => 'Parlem',
+ 'aboutus-welcome-desc' => ': title és una base de dades de Movie / TV / FANR construïda per la comunitat . La nostra increïble comunitat ha afegit totes les dades des del 2017.: els títols estan enfocats a un contingut d alta definició, a una base de dades activa, a un codi de codi increïble i segur i a un equip de personal amable i servicial.',
+ 'blacklist-browsers' => 'Navegadors',
+ 'blacklist-btclient' => 'Client BitTorrent',
+ 'blacklist-clients' => 'Clients',
+ 'blacklist-desc' => 'Els següents navegadors i els clients de BitTorrent es mostren a la llista negra / prohibida de l’anunci a: títol',
+ 'blacklist-webbrowser' => 'Navegador web',
'blacklist-emaildomain' => 'Domini bloquejat',
- 'email-blacklist-desc' => 'Els següents dominis de correu electrònic es troben bloquejats si s’utilitzen. No es pot registrar ni enviar una invitació als següents.',
- 'email-whitelist-desc' => 'Els dominis de correu electrònic següents són els únics dominis de correu electrònic que s’utilitzen. Només es pot registrar o enviar una invitació mitjançant el següent.',
- 'staff-group' => 'Grup',
- 'staff-title' => 'Títol',
+ 'email-blacklist-desc' => 'Els següents dominis de correu electrònic es troben bloquejats si s’utilitzen. No es pot registrar ni enviar una invitació als següents.',
+ 'email-whitelist-desc' => 'Els dominis de correu electrònic següents són els únics dominis de correu electrònic que s’utilitzen. Només es pot registrar o enviar una invitació mitjançant el següent.',
+ 'staff-group' => 'Grup',
+ 'staff-title' => 'Títol',
'whitelist-emaildomain' => 'Domini de confiança',
];
diff --git a/lang/ca/pagination.php b/lang/ca/pagination.php
index c89458249..d9e37ef61 100644
--- a/lang/ca/pagination.php
+++ b/lang/ca/pagination.php
@@ -24,5 +24,5 @@ return [
*/
'previous' => '« Anterior',
- 'next' => 'Següent »',
+ 'next' => 'Següent »',
];
diff --git a/lang/ca/passwords.php b/lang/ca/passwords.php
index a70410c13..85e805a0f 100644
--- a/lang/ca/passwords.php
+++ b/lang/ca/passwords.php
@@ -24,8 +24,8 @@ return [
*/
'password' => 'Les contrasenyes han de contenir almenys 6 caràcters i coincidir.',
- 'reset' => 'La contrasenya s\'ha restablert!',
- 'sent' => 'T\'hem enviat per e-mail un enllaç per a reiniciar la teva contrasenya!',
- 'token' => 'Aquest token de recuperació de contrasenya és invàlid.',
- 'user' => 'No existeix cap usuari amb aquest correu.',
+ 'reset' => 'La contrasenya s\'ha restablert!',
+ 'sent' => 'T\'hem enviat per e-mail un enllaç per a reiniciar la teva contrasenya!',
+ 'token' => 'Aquest token de recuperació de contrasenya és invàlid.',
+ 'user' => 'No existeix cap usuari amb aquest correu.',
];
diff --git a/lang/ca/pm.php b/lang/ca/pm.php
index b231037a4..8b553f06a 100644
--- a/lang/ca/pm.php
+++ b/lang/ca/pm.php
@@ -12,28 +12,28 @@
*/
return [
- 'create' => 'Crear',
- 'delete' => 'Suprimeix',
+ 'create' => 'Crear',
+ 'delete' => 'Suprimeix',
'enter-subject' => 'Introduïu el tema',
- 'from' => 'Des de',
- 'inbox' => 'Safata d entrada',
+ 'from' => 'Des de',
+ 'inbox' => 'Safata d entrada',
'mark-all-read' => 'Marca tots els missatges com a llegits',
- 'message' => 'Missatge',
- 'messages' => 'Missatges',
- 'new' => 'Missatge nou',
- 'outbox' => 'Bústia de sortida',
- 'private' => 'Privat',
- 'read' => 'Llegiu',
- 'received-at' => 'Rebut a',
- 'refresh' => 'Actualització',
- 'reply' => 'Respon',
- 'search' => 'Cerca per matèria',
- 'select' => 'Seleccioneu Un usuari',
- 'send' => 'Enviar PM',
- 'send-to' => 'Envia PM a',
- 'sent' => 'Enviat',
- 'sent-at' => 'Enviat a',
- 'subject' => 'Assignatura',
- 'to' => 'A',
- 'unread' => 'No llegit',
+ 'message' => 'Missatge',
+ 'messages' => 'Missatges',
+ 'new' => 'Missatge nou',
+ 'outbox' => 'Bústia de sortida',
+ 'private' => 'Privat',
+ 'read' => 'Llegiu',
+ 'received-at' => 'Rebut a',
+ 'refresh' => 'Actualització',
+ 'reply' => 'Respon',
+ 'search' => 'Cerca per matèria',
+ 'select' => 'Seleccioneu Un usuari',
+ 'send' => 'Enviar PM',
+ 'send-to' => 'Envia PM a',
+ 'sent' => 'Enviat',
+ 'sent-at' => 'Enviat a',
+ 'subject' => 'Assignatura',
+ 'to' => 'A',
+ 'unread' => 'No llegit',
];
diff --git a/lang/ca/poll.php b/lang/ca/poll.php
index cf46f9b3d..84b1fbf5d 100644
--- a/lang/ca/poll.php
+++ b/lang/ca/poll.php
@@ -12,18 +12,18 @@
*/
return [
- 'add-option' => 'Afegeix opció',
- 'create-poll' => 'Crea una enquesta',
- 'current' => 'Enquesta actual (s)',
- 'delete-option' => 'Esborra l’opció',
+ 'add-option' => 'Afegeix opció',
+ 'create-poll' => 'Crea una enquesta',
+ 'current' => 'Enquesta actual (s)',
+ 'delete-option' => 'Esborra l’opció',
'multiple-choice' => 'Aquesta és una enquesta d elecció múltiple. Seleccioneu tantes respostes com vulgueu.',
- 'option' => 'Opció',
- 'poll' => 'Enquesta',
- 'polls' => 'Enquestes',
- 'results' => 'Resultats de l’enquesta',
- 'title' => 'Títol',
- 'total' => 'Total de vots',
- 'vote' => 'Vota',
- 'vote-now' => 'Obteniu el vostre vot ara mateix!',
- 'votes' => 'Vots',
+ 'option' => 'Opció',
+ 'poll' => 'Enquesta',
+ 'polls' => 'Enquestes',
+ 'results' => 'Resultats de l’enquesta',
+ 'title' => 'Títol',
+ 'total' => 'Total de vots',
+ 'vote' => 'Vota',
+ 'vote-now' => 'Obteniu el vostre vot ara mateix!',
+ 'votes' => 'Vots',
];
diff --git a/lang/ca/request.php b/lang/ca/request.php
index 54515bd6c..256986e45 100644
--- a/lang/ca/request.php
+++ b/lang/ca/request.php
@@ -12,67 +12,67 @@
*/
return [
- 'add-request' => 'Afegiu una sol·licitud',
- 'age' => 'Edat',
- 'all-requests' => 'Totes les peticions',
- 'approve' => 'Aprova',
- 'bounty' => 'Generositat',
- 'bounty-claimed' => 'Bounty va reclamar',
- 'bounty-unclaimed' => 'Bounty no reclamat',
- 'category' => 'Categoria',
- 'claim' => 'Reclamació',
- 'claim-anon-choose' => 'Trieu amb prudència',
- 'claim-as-anon' => 'Voleu reclamar-ho d’una manera anònima',
- 'claim-now' => 'Reclama ara',
- 'claimed' => 'Reclamat',
- 'current' => 'Actual',
- 'delete' => 'Suprimeix aquesta sol·licitud',
+ 'add-request' => 'Afegiu una sol·licitud',
+ 'age' => 'Edat',
+ 'all-requests' => 'Totes les peticions',
+ 'approve' => 'Aprova',
+ 'bounty' => 'Generositat',
+ 'bounty-claimed' => 'Bounty va reclamar',
+ 'bounty-unclaimed' => 'Bounty no reclamat',
+ 'category' => 'Categoria',
+ 'claim' => 'Reclamació',
+ 'claim-anon-choose' => 'Trieu amb prudència',
+ 'claim-as-anon' => 'Voleu reclamar-ho d’una manera anònima',
+ 'claim-now' => 'Reclama ara',
+ 'claimed' => 'Reclamat',
+ 'current' => 'Actual',
+ 'delete' => 'Suprimeix aquesta sol·licitud',
'delete-confirmation' => 'Esteu segur que voleu suprimir aquesta sol·licitud',
- 'delete-filled' => 'Aquesta sol·licitud només es pot suprimir si no s’ha omplert',
- 'description' => 'Descripció',
- 'dont-have-bps' => 'No teniu prou bons',
- 'edit-request' => 'Edició de la sol·licitud',
- 'enter-bp' => 'Introduïu punts de bonificació (mínim 100)',
- 'enter-hash' => 'Introduïu Info Hash del Torrent penjat',
- 'fill' => 'Ompliu',
- 'fill-request' => 'Ompliu aquesta sol·licitud',
- 'filled' => 'Omplert',
- 'filled-by' => 'Omplert',
- 'for' => 'per',
- 'fulfill' => 'Complir',
- 'last-vote' => 'Darrera votació',
- 'my-requests' => 'Les meves sol·licituds',
- 'no' => 'No,',
- 'no-imdb-id' => 'Totes les sol·licituds han de contenir un número IMDB',
- 'no-privileges' => 'Error: els vostres drets de petició s han desactivat',
- 'no-privileges-desc' => 'Si creieu que això és un error, poseu-vos en contacte amb el personal',
- 'no-refunds' => 'Els intercanvis BON per crear, omplir i recompenses són definitius!
Sense reemborsaments!',
- 'pending' => 'Pendents',
- 'reason' => 'Raó',
- 'reject' => 'Rebutjar',
- 'report' => 'Sol·licitud d informe',
- 'request' => 'Sol·licitud',
- 'request-details' => 'Sol·licitar detalls',
- 'requested-by' => 'Sol · licitada per',
- 'requests' => 'Sol·licituds',
- 'required' => 'Obligatori',
- 'reset' => 'Restableix',
- 'reset-confirmation' => 'Esteu segur que voleu restablir aquesta sol·licitud',
- 'reset-request' => 'Restableix aquesta sol·licitud',
- 'reward' => 'Recompensa',
- 'reward-desc' => 'Quin punt de bonificació us agradaria recompensar? Mínim 100 BP',
- 'reward-from' => 'Des de',
- 'title' => 'Títol',
- 'torrent-hash' => 'Torrent Hash',
- 'total-bounty' => 'Recompensa total',
- 'type' => 'Escriviu',
- 'unclaim' => 'Reclamar aquesta sol·licitud',
- 'unfilled' => 'Sense emplenar',
- 'view-filled' => 'Visualització completa',
- 'view-unfilled' => 'Visualització completa',
- 'vote' => 'Vota',
- 'vote-that' => 'Vota aquesta sol·licitud',
- 'voters' => 'Votants',
- 'votes' => 'Vots',
- 'yes' => 'Sí',
+ 'delete-filled' => 'Aquesta sol·licitud només es pot suprimir si no s’ha omplert',
+ 'description' => 'Descripció',
+ 'dont-have-bps' => 'No teniu prou bons',
+ 'edit-request' => 'Edició de la sol·licitud',
+ 'enter-bp' => 'Introduïu punts de bonificació (mínim 100)',
+ 'enter-hash' => 'Introduïu Info Hash del Torrent penjat',
+ 'fill' => 'Ompliu',
+ 'fill-request' => 'Ompliu aquesta sol·licitud',
+ 'filled' => 'Omplert',
+ 'filled-by' => 'Omplert',
+ 'for' => 'per',
+ 'fulfill' => 'Complir',
+ 'last-vote' => 'Darrera votació',
+ 'my-requests' => 'Les meves sol·licituds',
+ 'no' => 'No,',
+ 'no-imdb-id' => 'Totes les sol·licituds han de contenir un número IMDB',
+ 'no-privileges' => 'Error: els vostres drets de petició s han desactivat',
+ 'no-privileges-desc' => 'Si creieu que això és un error, poseu-vos en contacte amb el personal',
+ 'no-refunds' => 'Els intercanvis BON per crear, omplir i recompenses són definitius!
Sense reemborsaments!',
+ 'pending' => 'Pendents',
+ 'reason' => 'Raó',
+ 'reject' => 'Rebutjar',
+ 'report' => 'Sol·licitud d informe',
+ 'request' => 'Sol·licitud',
+ 'request-details' => 'Sol·licitar detalls',
+ 'requested-by' => 'Sol · licitada per',
+ 'requests' => 'Sol·licituds',
+ 'required' => 'Obligatori',
+ 'reset' => 'Restableix',
+ 'reset-confirmation' => 'Esteu segur que voleu restablir aquesta sol·licitud',
+ 'reset-request' => 'Restableix aquesta sol·licitud',
+ 'reward' => 'Recompensa',
+ 'reward-desc' => 'Quin punt de bonificació us agradaria recompensar? Mínim 100 BP',
+ 'reward-from' => 'Des de',
+ 'title' => 'Títol',
+ 'torrent-hash' => 'Torrent Hash',
+ 'total-bounty' => 'Recompensa total',
+ 'type' => 'Escriviu',
+ 'unclaim' => 'Reclamar aquesta sol·licitud',
+ 'unfilled' => 'Sense emplenar',
+ 'view-filled' => 'Visualització completa',
+ 'view-unfilled' => 'Visualització completa',
+ 'vote' => 'Vota',
+ 'vote-that' => 'Vota aquesta sol·licitud',
+ 'voters' => 'Votants',
+ 'votes' => 'Vots',
+ 'yes' => 'Sí',
];
diff --git a/lang/ca/rss.php b/lang/ca/rss.php
index 41e73e1d6..8ee99a4fb 100644
--- a/lang/ca/rss.php
+++ b/lang/ca/rss.php
@@ -12,19 +12,19 @@
*/
return [
- 'create' => 'Crear',
+ 'create' => 'Crear',
'create-private-feed' => 'Crea un canal RSS privat',
- 'create-public-feed' => 'Crea un canal RSS públic',
- 'delete' => 'Suprimeix',
- 'edit' => 'Edita',
- 'edit-private-feed' => 'Editeu el canal RSS privat',
- 'edit-public-feed' => 'Edita el canal RSS públic',
- 'feed' => 'Alimentació',
- 'feeds' => 'Feeds',
- 'name' => 'Nom',
- 'public' => 'Públic',
- 'private' => 'Privat',
- 'rss' => 'RSS',
- 'rss-feed' => 'Feed RSS',
- 'type' => 'Escriviu',
+ 'create-public-feed' => 'Crea un canal RSS públic',
+ 'delete' => 'Suprimeix',
+ 'edit' => 'Edita',
+ 'edit-private-feed' => 'Editeu el canal RSS privat',
+ 'edit-public-feed' => 'Edita el canal RSS públic',
+ 'feed' => 'Alimentació',
+ 'feeds' => 'Feeds',
+ 'name' => 'Nom',
+ 'public' => 'Públic',
+ 'private' => 'Privat',
+ 'rss' => 'RSS',
+ 'rss-feed' => 'Feed RSS',
+ 'type' => 'Escriviu',
];
diff --git a/lang/ca/staff.php b/lang/ca/staff.php
index 773be5049..8fe587d46 100644
--- a/lang/ca/staff.php
+++ b/lang/ca/staff.php
@@ -12,48 +12,48 @@
*/
return [
- 'audit-log' => 'Registre d activitats',
- 'articles' => 'Articles',
- 'applications' => 'Aplicacions',
- 'bans-log' => 'Bans Log',
- 'blocks' => 'Blocs',
- 'bot' => 'Bot',
- 'bots' => 'Bots',
- 'chat' => 'Xat',
- 'config-manager' => 'Gestor de configuració',
- 'dashboard' => 'panell',
- 'failed-login-log' => 'Error d’inici de sessió',
- 'flush-ghost-peers' => 'Flush Ghost Peers',
- 'forums' => 'Fòrums',
- 'frontend' => 'Frontend',
- 'general-tools' => 'Eines generals',
- 'groups' => 'Grups',
- 'invites-log' => 'Registre de invitacions',
- 'laravel-log' => 'Laravel Log',
- 'links' => 'Enllaços',
- 'logs' => 'Registres',
- 'mass-pm' => 'Primera massa',
- 'mass-validate-users' => 'Valida en massa els usuaris',
- 'moderation' => 'Moderació',
- 'pages' => 'Pàgines',
- 'please-moderate' => 'Si us plau, modereu aquest torrent.',
- 'polls' => 'Enquestes',
- 'reports-log' => 'Registre de informes',
- 'rss' => 'RSS',
- 'staff-dashboard' => 'Tauler de control del personal',
- 'torrent-categories' => 'Categories de Torrent',
- 'torrent-moderation' => 'Moderació de Torrent',
- 'torrent-tools' => 'Torrent Tools',
- 'torrent-types' => 'Tipus de Torrent',
- 'torrents' => 'Torrents',
- 'user-gifting' => 'Regalització d’usuaris d’usuaris',
- 'user-notes' => 'Registre de notes de l usuari',
- 'user-search' => 'Cerca d usuaris',
- 'user-tools' => 'Eines d usuari',
- 'warnings-log' => 'Registre d’Advertències',
- 'you-have' => 'Tu tens',
+ 'audit-log' => 'Registre d activitats',
+ 'articles' => 'Articles',
+ 'applications' => 'Aplicacions',
+ 'bans-log' => 'Bans Log',
+ 'blocks' => 'Blocs',
+ 'bot' => 'Bot',
+ 'bots' => 'Bots',
+ 'chat' => 'Xat',
+ 'config-manager' => 'Gestor de configuració',
+ 'dashboard' => 'panell',
+ 'failed-login-log' => 'Error d’inici de sessió',
+ 'flush-ghost-peers' => 'Flush Ghost Peers',
+ 'forums' => 'Fòrums',
+ 'frontend' => 'Frontend',
+ 'general-tools' => 'Eines generals',
+ 'groups' => 'Grups',
+ 'invites-log' => 'Registre de invitacions',
+ 'laravel-log' => 'Laravel Log',
+ 'links' => 'Enllaços',
+ 'logs' => 'Registres',
+ 'mass-pm' => 'Primera massa',
+ 'mass-validate-users' => 'Valida en massa els usuaris',
+ 'moderation' => 'Moderació',
+ 'pages' => 'Pàgines',
+ 'please-moderate' => 'Si us plau, modereu aquest torrent.',
+ 'polls' => 'Enquestes',
+ 'reports-log' => 'Registre de informes',
+ 'rss' => 'RSS',
+ 'staff-dashboard' => 'Tauler de control del personal',
+ 'torrent-categories' => 'Categories de Torrent',
+ 'torrent-moderation' => 'Moderació de Torrent',
+ 'torrent-tools' => 'Torrent Tools',
+ 'torrent-types' => 'Tipus de Torrent',
+ 'torrents' => 'Torrents',
+ 'user-gifting' => 'Regalització d’usuaris d’usuaris',
+ 'user-notes' => 'Registre de notes de l usuari',
+ 'user-search' => 'Cerca d usuaris',
+ 'user-tools' => 'Eines d usuari',
+ 'warnings-log' => 'Registre d’Advertències',
+ 'you-have' => 'Tu tens',
'possible-leech-cheaters' => 'Possibles tramposos',
- 'chat-tools' => 'Eines de xat',
- 'flush-chat' => 'Flush Chatbox',
- 'seedboxes' => 'Seedboxes registrades',
+ 'chat-tools' => 'Eines de xat',
+ 'flush-chat' => 'Flush Chatbox',
+ 'seedboxes' => 'Seedboxes registrades',
];
diff --git a/lang/ca/stat.php b/lang/ca/stat.php
index 8f7f61a03..64b7adaf5 100644
--- a/lang/ca/stat.php
+++ b/lang/ca/stat.php
@@ -12,40 +12,40 @@
*/
return [
- 'by-count' => 'Per compte',
- 'by-data' => 'Per dades',
- 'by-volume' => 'Per volum',
- 'group' => 'Grup',
- 'groups' => 'Grups',
- 'nerd-stats' => 'Estadístiques nerd',
- 'nerd-stats-desc' => 'Tots estimem les estadístiques. Aquí teniu alguns que considerem importants',
- 'registration-date' => 'Data de Registre',
- 'request-fulfilled' => 'Sol·licitud complerta',
- 'request-not-fulfilled' => 'La sol·licitud no s ha complert',
+ 'by-count' => 'Per compte',
+ 'by-data' => 'Per dades',
+ 'by-volume' => 'Per volum',
+ 'group' => 'Grup',
+ 'groups' => 'Grups',
+ 'nerd-stats' => 'Estadístiques nerd',
+ 'nerd-stats-desc' => 'Tots estimem les estadístiques. Aquí teniu alguns que considerem importants',
+ 'registration-date' => 'Data de Registre',
+ 'request-fulfilled' => 'Sol·licitud complerta',
+ 'request-not-fulfilled' => 'La sol·licitud no s ha complert',
'request-pending-aproval' => 'Sol·licitud pendent d aprovació',
- 'select-category' => 'Seleccioneu una categoria a continuació',
- 'site-stats' => 'Estadístiques del lloc',
- 'stats' => 'Estadístiques',
- 'stats-format' => 'Totes les estadístiques aparegudes al format Top 100',
- 'top-bankers' => 'Els millors banquers',
- 'top-bountied' => 'Top rebotjat',
- 'top-completed' => 'Top completat',
- 'top-dead' => 'Top Dead',
- 'top-downloaded' => 'Els millors torrents descarregats',
- 'top-downloaders' => 'Top Downloaders',
- 'top-dying' => 'Top Dying',
- 'top-leeched' => 'Top sangoner',
- 'top-leechers' => 'Top Leechers',
- 'top-seeded' => 'Top Seeded',
- 'top-seeding' => 'Sembrament superior',
- 'top-seeders' => 'Els millors llavors',
- 'top-seedsize' => 'Top Seedsize',
- 'top-seedtime' => 'Top seed time',
- 'top-uploaders' => 'Carregadors principals',
- 'total-download' => 'Descàrrega total',
- 'total-torrents' => 'Total Torrents',
- 'total-traffic' => 'Trànsit total',
- 'total-upload' => 'Càrrega total',
- 'users-in-group' => 'Usuaris del grup',
- 'users-per-group' => 'Usuaris per grup',
+ 'select-category' => 'Seleccioneu una categoria a continuació',
+ 'site-stats' => 'Estadístiques del lloc',
+ 'stats' => 'Estadístiques',
+ 'stats-format' => 'Totes les estadístiques aparegudes al format Top 100',
+ 'top-bankers' => 'Els millors banquers',
+ 'top-bountied' => 'Top rebotjat',
+ 'top-completed' => 'Top completat',
+ 'top-dead' => 'Top Dead',
+ 'top-downloaded' => 'Els millors torrents descarregats',
+ 'top-downloaders' => 'Top Downloaders',
+ 'top-dying' => 'Top Dying',
+ 'top-leeched' => 'Top sangoner',
+ 'top-leechers' => 'Top Leechers',
+ 'top-seeded' => 'Top Seeded',
+ 'top-seeding' => 'Sembrament superior',
+ 'top-seeders' => 'Els millors llavors',
+ 'top-seedsize' => 'Top Seedsize',
+ 'top-seedtime' => 'Top seed time',
+ 'top-uploaders' => 'Carregadors principals',
+ 'total-download' => 'Descàrrega total',
+ 'total-torrents' => 'Total Torrents',
+ 'total-traffic' => 'Trànsit total',
+ 'total-upload' => 'Càrrega total',
+ 'users-in-group' => 'Usuaris del grup',
+ 'users-per-group' => 'Usuaris per grup',
];
diff --git a/lang/ca/torrent.php b/lang/ca/torrent.php
index 2deddf88b..3d9207a59 100644
--- a/lang/ca/torrent.php
+++ b/lang/ca/torrent.php
@@ -12,197 +12,197 @@
*/
return [
- 'activity' => 'Activitat',
- 'age' => 'Edat',
- 'agent' => 'Agent',
- 'alive' => 'Viu',
- 'announce-url' => 'Anuncieu l’URL',
- 'announce-url-desc' => 'Utilitzeu l’URL d’anuncis anterior quan creeu un torrent nou. Si voleu utilitzar el vostre torrent sense descarregar-lo des del lloc, heu de configurar el senyalador privat i el codi font a: source',
- 'announce-url-desc-url' => 'Teniu problemes? Vegeu la nostra guia AQUÍ',
- 'announce-url-desc2' => 'TMDB i IMDB són necessaris per a totes les càrregues. S utilitza per agafar Cartells / Fons i ExtraInfo',
- 'approved' => 'Aprovat',
- 'audio' => 'Àudio',
- 'bon-tipped' => 'BON inclinat',
- 'bookmark' => 'Marcar',
- 'bookmarks' => 'Adreces d interès',
- 'bump' => 'Bony',
- 'cant-upload' => 'Error: els vostres drets de càrrega estan desactivats',
- 'cant-upload-desc' => 'Si us sentiu, això és un error, poseu-vos en contacte amb el personal',
- 'cards' => 'Targetes',
- 'cards-view' => 'Visualització de targetes de Torrent',
- 'categories' => 'Categories',
- 'category' => 'Categoria',
- 'client' => 'Client',
- 'commited' => 'Compromès',
- 'completed' => 'Completat',
- 'completed_at' => 'Completat a',
- 'completed-not-seeding' => 'Heu completat aquesta descàrrega, però no la heu de sembrar',
- 'created_at' => 'Creat a',
- 'credited' => 'Acreditat',
- 'current' => 'Actual',
- 'current-filters' => 'Filtres actuals',
- 'currently-leeching' => 'Actualment Leeching',
- 'currently-seeding' => 'Sembra actualment',
- 'dead-torrent' => 'Torrent mort',
- 'dead-torrents' => 'Dead Torrents',
- 'delete-bookmark' => 'Suprimeix aquest marcador',
- 'description' => 'Descripció',
- 'discounts' => 'Descomptes',
- 'double-upload' => 'Doble càrrega',
- 'download-all' => 'Descarrega-ho tot',
- 'download-check' => 'Baixa la comprovació',
- 'downloaded' => 'Descarregat',
- 'dying-torrent' => 'Torrent de morir',
- 'dying-torrents' => 'Torrents moribunds',
- 'encode-settings' => 'Codifiqueu la configuració',
- 'estimated-ratio' => 'Proporció estimada després de la descàrrega',
- 'failed' => 'Fracassat',
- 'feature' => 'Funció',
- 'featured' => 'Destacat',
- 'featured-desc' => 'Els torrents destacats són 100% gratuït i Doble càrrega!',
- 'featured-until' => 'Aquest és un Torrent destacat fins a',
- 'file' => 'Dossier',
- 'filters' => 'Filtres',
- 'fl-tokens-left' => 'Tu tens : resten testimonis',
- 'freeleech' => 'Freeleech',
- 'freeleech-token' => 'Freeleech Token',
- 'general' => 'General',
- 'genre' => 'Gènere',
- 'global-double-upload' => 'Doble càrrega global',
- 'global-freeleech' => 'Global Freeleech',
- 'grant' => 'Subvenció',
- 'greater-than' => 'Més gran que',
- 'grouping' => 'Agrupació',
- 'groupings' => 'Agrupacions',
- 'grouping-categories' => 'Agrupar categories',
+ 'activity' => 'Activitat',
+ 'age' => 'Edat',
+ 'agent' => 'Agent',
+ 'alive' => 'Viu',
+ 'announce-url' => 'Anuncieu l’URL',
+ 'announce-url-desc' => 'Utilitzeu l’URL d’anuncis anterior quan creeu un torrent nou. Si voleu utilitzar el vostre torrent sense descarregar-lo des del lloc, heu de configurar el senyalador privat i el codi font a: source',
+ 'announce-url-desc-url' => 'Teniu problemes? Vegeu la nostra guia AQUÍ',
+ 'announce-url-desc2' => 'TMDB i IMDB són necessaris per a totes les càrregues. S utilitza per agafar Cartells / Fons i ExtraInfo',
+ 'approved' => 'Aprovat',
+ 'audio' => 'Àudio',
+ 'bon-tipped' => 'BON inclinat',
+ 'bookmark' => 'Marcar',
+ 'bookmarks' => 'Adreces d interès',
+ 'bump' => 'Bony',
+ 'cant-upload' => 'Error: els vostres drets de càrrega estan desactivats',
+ 'cant-upload-desc' => 'Si us sentiu, això és un error, poseu-vos en contacte amb el personal',
+ 'cards' => 'Targetes',
+ 'cards-view' => 'Visualització de targetes de Torrent',
+ 'categories' => 'Categories',
+ 'category' => 'Categoria',
+ 'client' => 'Client',
+ 'commited' => 'Compromès',
+ 'completed' => 'Completat',
+ 'completed_at' => 'Completat a',
+ 'completed-not-seeding' => 'Heu completat aquesta descàrrega, però no la heu de sembrar',
+ 'created_at' => 'Creat a',
+ 'credited' => 'Acreditat',
+ 'current' => 'Actual',
+ 'current-filters' => 'Filtres actuals',
+ 'currently-leeching' => 'Actualment Leeching',
+ 'currently-seeding' => 'Sembra actualment',
+ 'dead-torrent' => 'Torrent mort',
+ 'dead-torrents' => 'Dead Torrents',
+ 'delete-bookmark' => 'Suprimeix aquest marcador',
+ 'description' => 'Descripció',
+ 'discounts' => 'Descomptes',
+ 'double-upload' => 'Doble càrrega',
+ 'download-all' => 'Descarrega-ho tot',
+ 'download-check' => 'Baixa la comprovació',
+ 'downloaded' => 'Descarregat',
+ 'dying-torrent' => 'Torrent de morir',
+ 'dying-torrents' => 'Torrents moribunds',
+ 'encode-settings' => 'Codifiqueu la configuració',
+ 'estimated-ratio' => 'Proporció estimada després de la descàrrega',
+ 'failed' => 'Fracassat',
+ 'feature' => 'Funció',
+ 'featured' => 'Destacat',
+ 'featured-desc' => 'Els torrents destacats són 100% gratuït i Doble càrrega!',
+ 'featured-until' => 'Aquest és un Torrent destacat fins a',
+ 'file' => 'Dossier',
+ 'filters' => 'Filtres',
+ 'fl-tokens-left' => 'Tu tens : resten testimonis',
+ 'freeleech' => 'Freeleech',
+ 'freeleech-token' => 'Freeleech Token',
+ 'general' => 'General',
+ 'genre' => 'Gènere',
+ 'global-double-upload' => 'Doble càrrega global',
+ 'global-freeleech' => 'Global Freeleech',
+ 'grant' => 'Subvenció',
+ 'greater-than' => 'Més gran que',
+ 'grouping' => 'Agrupació',
+ 'groupings' => 'Agrupacions',
+ 'grouping-categories' => 'Agrupar categories',
'grouping-categories-desc' => 'Quina categoria us agradaria agrupar?',
- 'grouping-results' => 'Agrupar els resultats',
- 'groupings-view' => 'Vista de les agrupacions',
- 'have-completed' => 'Completat',
- 'have-downloaded' => 'Descarregat',
- 'have-not-completed' => 'No completat',
- 'have-not-downloaded' => 'No descarregat',
- 'health' => 'Salut',
- 'history' => 'Història',
- 'hitrun' => 'H&R?',
- 'hit-and-runs' => 'Comptes de cop i execució',
- 'immune' => 'Immune?',
- 'info' => 'Informació',
- 'internal' => 'Intern',
- 'internal-release' => 'Alliberament intern',
- 'last-seed-activity' => 'Última activitat de les llavors',
- 'last-seeder' => 'Sou la darrera sembradora! (s ha descarregat almenys 3 vegades)',
- 'last-update' => 'Darrera actualització',
- 'leave-tip' => 'Deixeu el consell',
- 'leecher' => 'Leecher',
- 'leechers' => 'Leechers',
- 'leeching' => 'Leeching',
- 'left' => 'Esquerra',
- 'legendary-seeder' => 'Sembradora llegendària',
- 'legendary-torrent' => 'Torrent llegendari',
- 'list' => 'Llista',
- 'me' => 'Jo',
- 'media-info' => 'MediaInfo',
- 'media-info-parser' => 'Analitzador de MediaInfo',
- 'media-info-paste' => 'Enganxa el bolcat de MediaInfo aquí',
- 'meta-desc' => 'Descarregar: nom a la velocitat màxima',
- 'moderation' => 'Moderació',
- 'movies' => 'Pel·lícules',
- 'mvp' => 'MVP',
- 'my-active-torrents' => 'Els meus torrents actius',
- 'name' => 'Nom',
- 'no-bookmarks' => 'No s’han trobat marcadors.',
- 'no-discounts' => 'Actualment no hi ha descomptes',
- 'no-meta' => 'No s’han trobat metadades',
- 'no-privileges' => 'No podeu descarregar aquest fitxer: consulteu-ne a continuació per obtenir més informació',
- 'no-privileges-desc' => 'Sol·liciteu que aparegui el botó de descàrrega de resultats anteriors',
- 'not-completed' => 'S ha iniciat la descàrrega però no s ha completat mai',
- 'not-downloaded' => 'No descarregat',
- 'old-torrent' => 'Torrent antic',
- 'optional' => 'Opcional',
- 'original-output' => 'Mostra / Amaga la sortida original',
- 'participant' => 'Participant',
- 'passed' => 'Passat',
- 'peers' => 'Peers',
- 'pending' => 'Pendents',
- 'personal-freeleech' => 'Freeleech personal',
- 'poster' => 'Pòster',
- 'poster-view' => 'Vista del cartell',
- 'posters' => 'Cartells',
- 'prewarn' => 'Predicat?',
- 'progress' => 'Progrés, progressar',
- 'quick-comment' => 'Comentari ràpid',
- 'quick-tip' => 'Quantitats ràpides de consells',
- 'rated' => 'Valorat',
- 'rating' => 'Valoració',
- 'ready' => 'Aquest fitxer està a punt per descarregar-se',
- 'rejected' => 'Rebutjat',
- 'released' => 'Alliberat',
- 'remaining' => 'Restant',
- 'request-reseed' => 'Sol·licitud de devolució',
- 'requires-reseed' => 'Requereix la realització d’un resum',
- 'resurrections' => 'Resurreccions',
- 'revoke' => 'Revocar',
- 'rss' => 'RSS',
- 'runtime' => 'Temps d execució',
- 'satisfied_in' => 'Satisfet',
- 'say-thanks' => 'Recordeu-vos de dir gràcies i llavor durant tot el temps possible',
- 'sd-content' => 'Contingut SD',
- 'search' => 'Cerca',
- 'seed-time' => 'Temps de llavor',
- 'seeder' => 'Sembradora',
- 'seeders' => 'Llavors',
- 'seeding' => 'Sembra',
- 'seedsize' => 'Seedsize',
- 'seedtime' => 'Temps de llavors',
- 'short-completed' => 'C',
- 'short-leechs' => 'L',
- 'short-seeds' => 'S',
- 'show-files' => 'Mostra els fitxers',
- 'similar' => 'Torrents similars',
- 'size' => 'Mida',
- 'special' => 'Especial',
- 'special-freeleech' => 'Freeleech especial',
- 'started' => 'Iniciat',
- 'status' => 'Estat',
- 'statistics' => 'Estadístiques',
- 'stats' => 'Estadístiques',
- 'sticky' => 'Sticky',
- 'stream-optimized' => 'Stream optimitzat',
- 'subtitle' => 'Subtítol',
- 'team-player' => 'Jugador d equip',
- 'thank' => 'Gràcies',
- 'thanked' => 'Agraït',
- 'thanks' => 'Gràcies',
- 'thanks-given' => 'Gràcies donades',
- 'times' => 'Temps',
- 'tip-jar' => 'Vaixell de punta',
- 'title' => 'Títol',
- 'titles' => 'Títols',
- 'top-completed' => 'S ha completat la part superior',
- 'top-dead' => 'Top mort',
- 'top-dying' => 'Top mort',
- 'top-leeched' => 'A la part superior llops',
- 'top-seeded' => 'Top sembrat',
- 'torrent' => 'Torrent',
- 'torrent-request' => 'Torrent Request',
- 'torrent-tips' => 'En Total : el total de BON s ha enviat al destinatari, del qual : l’usuari és de vosaltres',
- 'torrent-tips-desc' => 'Es deduiran dels punts de bonificació disponibles',
- 'torrents' => 'Torrents',
- 'trailer' => 'Veure tràiler',
- 'type' => 'Escriviu',
- 'types' => 'Tipus',
- 'unbookmark' => 'Marcar com a referència',
- 'unsatisfieds' => 'Insatisfets',
- 'unsticky' => 'Unsticky',
- 'updated' => 'Actualitzat',
- 'updated_at' => 'Actualitzat a',
- 'uploaded' => 'Carregat',
- 'uploaded-by' => 'Carregat per',
- 'uploader' => 'Carregador',
- 'use-fl-token' => 'Utilitzeu un token Freeleech',
- 'video' => 'Vídeo',
- 'view-more' => 'Veure més',
- 'view-trailer' => 'Veure tràiler',
- 'votes' => 'Vots',
+ 'grouping-results' => 'Agrupar els resultats',
+ 'groupings-view' => 'Vista de les agrupacions',
+ 'have-completed' => 'Completat',
+ 'have-downloaded' => 'Descarregat',
+ 'have-not-completed' => 'No completat',
+ 'have-not-downloaded' => 'No descarregat',
+ 'health' => 'Salut',
+ 'history' => 'Història',
+ 'hitrun' => 'H&R?',
+ 'hit-and-runs' => 'Comptes de cop i execució',
+ 'immune' => 'Immune?',
+ 'info' => 'Informació',
+ 'internal' => 'Intern',
+ 'internal-release' => 'Alliberament intern',
+ 'last-seed-activity' => 'Última activitat de les llavors',
+ 'last-seeder' => 'Sou la darrera sembradora! (s ha descarregat almenys 3 vegades)',
+ 'last-update' => 'Darrera actualització',
+ 'leave-tip' => 'Deixeu el consell',
+ 'leecher' => 'Leecher',
+ 'leechers' => 'Leechers',
+ 'leeching' => 'Leeching',
+ 'left' => 'Esquerra',
+ 'legendary-seeder' => 'Sembradora llegendària',
+ 'legendary-torrent' => 'Torrent llegendari',
+ 'list' => 'Llista',
+ 'me' => 'Jo',
+ 'media-info' => 'MediaInfo',
+ 'media-info-parser' => 'Analitzador de MediaInfo',
+ 'media-info-paste' => 'Enganxa el bolcat de MediaInfo aquí',
+ 'meta-desc' => 'Descarregar: nom a la velocitat màxima',
+ 'moderation' => 'Moderació',
+ 'movies' => 'Pel·lícules',
+ 'mvp' => 'MVP',
+ 'my-active-torrents' => 'Els meus torrents actius',
+ 'name' => 'Nom',
+ 'no-bookmarks' => 'No s’han trobat marcadors.',
+ 'no-discounts' => 'Actualment no hi ha descomptes',
+ 'no-meta' => 'No s’han trobat metadades',
+ 'no-privileges' => 'No podeu descarregar aquest fitxer: consulteu-ne a continuació per obtenir més informació',
+ 'no-privileges-desc' => 'Sol·liciteu que aparegui el botó de descàrrega de resultats anteriors',
+ 'not-completed' => 'S ha iniciat la descàrrega però no s ha completat mai',
+ 'not-downloaded' => 'No descarregat',
+ 'old-torrent' => 'Torrent antic',
+ 'optional' => 'Opcional',
+ 'original-output' => 'Mostra / Amaga la sortida original',
+ 'participant' => 'Participant',
+ 'passed' => 'Passat',
+ 'peers' => 'Peers',
+ 'pending' => 'Pendents',
+ 'personal-freeleech' => 'Freeleech personal',
+ 'poster' => 'Pòster',
+ 'poster-view' => 'Vista del cartell',
+ 'posters' => 'Cartells',
+ 'prewarn' => 'Predicat?',
+ 'progress' => 'Progrés, progressar',
+ 'quick-comment' => 'Comentari ràpid',
+ 'quick-tip' => 'Quantitats ràpides de consells',
+ 'rated' => 'Valorat',
+ 'rating' => 'Valoració',
+ 'ready' => 'Aquest fitxer està a punt per descarregar-se',
+ 'rejected' => 'Rebutjat',
+ 'released' => 'Alliberat',
+ 'remaining' => 'Restant',
+ 'request-reseed' => 'Sol·licitud de devolució',
+ 'requires-reseed' => 'Requereix la realització d’un resum',
+ 'resurrections' => 'Resurreccions',
+ 'revoke' => 'Revocar',
+ 'rss' => 'RSS',
+ 'runtime' => 'Temps d execució',
+ 'satisfied_in' => 'Satisfet',
+ 'say-thanks' => 'Recordeu-vos de dir gràcies i llavor durant tot el temps possible',
+ 'sd-content' => 'Contingut SD',
+ 'search' => 'Cerca',
+ 'seed-time' => 'Temps de llavor',
+ 'seeder' => 'Sembradora',
+ 'seeders' => 'Llavors',
+ 'seeding' => 'Sembra',
+ 'seedsize' => 'Seedsize',
+ 'seedtime' => 'Temps de llavors',
+ 'short-completed' => 'C',
+ 'short-leechs' => 'L',
+ 'short-seeds' => 'S',
+ 'show-files' => 'Mostra els fitxers',
+ 'similar' => 'Torrents similars',
+ 'size' => 'Mida',
+ 'special' => 'Especial',
+ 'special-freeleech' => 'Freeleech especial',
+ 'started' => 'Iniciat',
+ 'status' => 'Estat',
+ 'statistics' => 'Estadístiques',
+ 'stats' => 'Estadístiques',
+ 'sticky' => 'Sticky',
+ 'stream-optimized' => 'Stream optimitzat',
+ 'subtitle' => 'Subtítol',
+ 'team-player' => 'Jugador d equip',
+ 'thank' => 'Gràcies',
+ 'thanked' => 'Agraït',
+ 'thanks' => 'Gràcies',
+ 'thanks-given' => 'Gràcies donades',
+ 'times' => 'Temps',
+ 'tip-jar' => 'Vaixell de punta',
+ 'title' => 'Títol',
+ 'titles' => 'Títols',
+ 'top-completed' => 'S ha completat la part superior',
+ 'top-dead' => 'Top mort',
+ 'top-dying' => 'Top mort',
+ 'top-leeched' => 'A la part superior llops',
+ 'top-seeded' => 'Top sembrat',
+ 'torrent' => 'Torrent',
+ 'torrent-request' => 'Torrent Request',
+ 'torrent-tips' => 'En Total : el total de BON s ha enviat al destinatari, del qual : l’usuari és de vosaltres',
+ 'torrent-tips-desc' => 'Es deduiran dels punts de bonificació disponibles',
+ 'torrents' => 'Torrents',
+ 'trailer' => 'Veure tràiler',
+ 'type' => 'Escriviu',
+ 'types' => 'Tipus',
+ 'unbookmark' => 'Marcar com a referència',
+ 'unsatisfieds' => 'Insatisfets',
+ 'unsticky' => 'Unsticky',
+ 'updated' => 'Actualitzat',
+ 'updated_at' => 'Actualitzat a',
+ 'uploaded' => 'Carregat',
+ 'uploaded-by' => 'Carregat per',
+ 'uploader' => 'Carregador',
+ 'use-fl-token' => 'Utilitzeu un token Freeleech',
+ 'video' => 'Vídeo',
+ 'view-more' => 'Veure més',
+ 'view-trailer' => 'Veure tràiler',
+ 'votes' => 'Vots',
];
diff --git a/lang/ca/user.php b/lang/ca/user.php
index 1542b6247..690ce68ea 100644
--- a/lang/ca/user.php
+++ b/lang/ca/user.php
@@ -12,316 +12,316 @@
*/
return [
- 'about' => 'Quant a',
- 'about-me' => 'Quant a mi',
- 'accepted-at' => 'Acceptat a',
- 'accepted-by' => 'Acceptat per',
- 'account-notification' => 'Configuració de notificació del compte',
- 'account-notification-follow' => 'Rebre una notificació quan un usuari segueix el vostre compte',
- 'account-notification-unfollow' => 'Rebre una notificació quan un usuari no obté el vostre compte',
- 'account-notification-help' => 'Controleu les notificacions que s envien pel que fa al vostre compte. Aquests valors s’han anul·lat si no permeteu que cap grup enviï notificacions relacionades amb el vostre compte o si desactiveu les notificacions',
- 'account-settings' => 'Configuració del compte',
- 'achievement-privacy' => 'Configuració d assoliment',
- 'achievement-privacy-list' => 'Permeti als usuaris veure una llista dels seus èxits',
- 'achievement-help' => 'Controleu la compartició d informació específica relacionada amb la realització amb grups que tinguin accés al vostre perfil. Aquests paràmetres s’han anul·lat si no permeteu que cap grup accedeixi als vostres èxits o si aneu en privat',
- 'achievements' => 'Assoliments',
- 'active' => 'Actiu',
- 'active-table' => 'La meva taula activa',
- 'active-torrents' => 'Torrents actius',
- 'active-warning' => 'Atenció activa',
- 'active-warnings' => 'Avisos actius',
- 'add-seedbox' => 'Afegeix Seedbox',
- 'all-torrents' => 'Tots els Torrents',
- 'article-comments' => 'Comentari de l article fet',
- 'avatar' => 'Avatar',
- 'avg-seedtime' => 'Temps mitjà de llavor',
- 'badges' => 'Insígnies',
- 'ban' => 'Prohibició d usuari',
- 'ban-log' => 'Registre de prohibició',
- 'become-hidden' => 'Fes-te ocult',
- 'become-visible' => 'Convertiu-vos en Visible',
- 'bon' => 'BON',
- 'bon-notification' => 'Configuració de notificació BON',
- 'bon-notification-gift' => 'Rebre una notificació quan un usuari us ofereix un bon regal',
- 'bon-notification-help' => 'Controleu les notificacions que s envien pel que fa a les transaccions de BON. Aquests paràmetres s’han anul·lat si no permeteu que cap grup enviï notificacions relacionades amb BON o si desactiveu les notificacions',
- 'bookmarks' => 'Adreces d interès',
- 'bounty-given' => 'Bounty Given',
- 'bounty-received' => 'Recompensa rebuda',
- 'can-chat' => 'Pot xatejar',
- 'can-comment' => 'Podeu fer comentaris',
- 'can-download' => 'Pot descarregar-se',
- 'can-invite' => 'Pot convidar',
- 'can-request' => 'Sol·licitud de Can',
- 'can-upload' => 'Pot carregar',
- 'certified-banker' => 'Banquer certificat',
- 'certified-banker-desc' => 'Té 50.000 O més en banc',
- 'certified-downloader' => 'Downloader certificat',
- 'certified-downloader-desc' => 'Descarregats 100 o més Torrents!',
- 'certified-seeder' => 'Sembradora certificada',
- 'certified-seeder-desc' => 'Sembra 150 o més Torrents!',
- 'change-email' => 'Canviar e-mail',
- 'change-email-help' => 'Haureu de tornar a confirmar el vostre compte, després de canviar el correu electrònic',
- 'change-password' => 'Canvia la contrasenya',
- 'change-password-help' => 'Haureu de tornar a iniciar la sessió, després de canviar la contrasenya',
- 'client-ip-address' => 'Adreça IP del client',
- 'code' => 'Codi',
- 'comments' => 'Comentaris',
- 'created-on' => 'Creat a',
- 'credited-download' => 'Descàrrega acreditada',
- 'credited-upload' => 'Càrrega acreditada',
- 'current-password' => 'Contrasenya actual',
- 'custom-title' => 'Títol personalitzat',
- 'delete' => 'Suprimeix l usuari',
- 'disable-notifications' => 'Desactiva les notificacions',
- 'disclaimer' => 'Exempció de responsabilitat',
- 'disclaimer-info' => 'De manera predeterminada, no registrem les adreces IP dels usuaris com la majoria dels seguidors. Si afegiu la vostra IP de seedbox a continuació, s’espera que sàpiga que les vostres IP es mostren a la nostra base de dades a menys que suprimiu els registres.',
- 'disclaimer-info-bordered' => 'Els IP de Seedbox afegits dispararan llavors una etiqueta de torrent d alta velocitat als torrents que s’estableixen a partir d’IPs que s’indiquen a continuació',
- 'download-bon' => 'Descàrrega eliminada de la botiga BON',
- 'download-recorded' => 'Descàrrega enregistrada',
- 'download-true' => 'Descàrrega real',
- 'downloads' => 'Descàrregues',
- 'edit' => 'Edita l usuari',
- 'edit-profile' => 'Edita el perfil',
- 'enable-notifications' => 'Activa les notificacions',
- 'expired' => 'Caducat',
- 'expires-on' => 'Caduca el',
- 'extra' => 'Extra',
- 'filled-request' => 'Sol·licituds de socis emplenats',
- 'follow' => 'Seguiu',
- 'follower-privacy' => 'Configuració del seguidor',
- 'follower-privacy-list' => 'Permeteu als usuaris veure una llista dels vostres seguidors',
- 'follower-help' => 'Controleu la compartició d informació específica relacionada amb els seguidors amb grups que tinguin accés al vostre perfil. Aquests paràmetres s’han anul·lat si no permeteu que cap grup accedeixi als vostres seguidors o si aneu privat',
- 'followers' => 'Seguidors',
- 'following-notification' => 'Configuració de notificació d usuari seguida',
- 'following-notification-upload' => 'Rebre una notificació quan un usuari seguit carrega un torrent',
- 'following-notification-help' => 'Controleu quines notificacions s’envien sobre les accions del lloc d’usuari seguides. Aquests paràmetres s’han anul·lat si no permeteu que cap grup enviï notificacions sobre usuaris seguits o si desactiveu les notificacions',
- 'formats-are-supported' => ': els formats són compatibles',
- 'forum-notification' => 'Configuració de notificació del fòrum',
- 'forum-notification-topic' => 'Rebre una notificació quan un tema que inicieu rep una nova publicació',
- 'forum-notification-help' => 'Controlar les notificacions que s envien en relació amb les activitats del fòrum. Aquests paràmetres s’han anul·lat si no permeteu que cap grup enviï notificacions sobre activitats del fòrum o si desactiveu les notificacions',
- 'forum-privacy' => 'Configuració del fòrum',
- 'forum-privacy-post' => 'Permeteu als usuaris veure una llista de les publicacions del fòrum que heu publicat',
- 'forum-privacy-topic' => 'Permeteu als usuaris veure una llista dels temes del fòrum que heu iniciat',
- 'forum-help' => 'Controleu la compartició d’estadístiques i informació específiques relacionades amb els fòrums amb grups que tinguin accés al vostre perfil. Aquestes opcions de configuració s’han anul·lat si no permeteu que cap grup accedeixi a les vostres estadístiques i informació relacionades amb el fòrum o si aneu en privat',
- 'forum-signature' => 'Signatura del fòrum',
- 'forums' => 'Fòrums',
- 'general' => 'General',
- 'general-settings' => 'Configuració general',
- 'gift-given' => 'Regal donat',
- 'gift-received' => 'Rebut de regals',
- 'go-public' => 'Anar al públic',
- 'go-private' => 'Aneu en privat',
- 'history' => 'Història',
- 'history-table' => 'La meva taula d història',
- 'hit-n-runs' => 'Hit and Run',
- 'hit-n-runs-count' => 'Comte i executa el compte (tots els temps)',
- 'hit-n-runs-history' => 'Torrent Hit and Runs History',
- 'image' => 'Imatge',
- 'important' => 'Important',
- 'important-info' => 'Informació important',
- 'information' => 'Informació',
- 'invite-friend' => 'Convida el teu amic (correu electrònic + missatge necessari)',
- 'invite-tree' => 'Convidar l arbre',
- 'invites' => 'Convida',
- 'invites-banned' => 'Error: els vostres drets d invitació han estat deshabilitats',
- 'invites-banned-desc' => 'Si sentiu que això és un error, contacteu amb el personal.',
- 'invites-count' => 'Vostè té: comptar les invitacions',
- 'invites-disabled' => 'Atenció: les invitacions estan desactivades per haver obert el registre!',
- 'invites-disabled-desc' => 'Si us plau, torneu a comprovar de nou!',
- 'invites-rules' => ' Inviteu només a la gent que conegueu i confieu. Es responsabilitzarà personalment dels que convidi. No inviteu-vos a nosaltres mateixos, revisem tots els usuaris convidats. No comercialitzeu ni comercialitzeu invitacions. Si una persona que heu convidat és capturada fent trampes, compte comercial o venent / negociant invitacions, se us avisarà. ',
- 'invites-send' => 'Envia les invitacions',
- 'last-login' => 'Últim inici de sessió',
- 'locked' => 'Bloquejat',
- 'locked-achievements' => 'Èxits bloquejats',
- 'member-since' => 'Membre des de',
- 'members-desc' => 'Llista d’usuaris registrats a: títol amb tots els grups. Cerqueu un usuari ara.',
- 'mention-notification' => 'Configuració de notificació @Mention',
+ 'about' => 'Quant a',
+ 'about-me' => 'Quant a mi',
+ 'accepted-at' => 'Acceptat a',
+ 'accepted-by' => 'Acceptat per',
+ 'account-notification' => 'Configuració de notificació del compte',
+ 'account-notification-follow' => 'Rebre una notificació quan un usuari segueix el vostre compte',
+ 'account-notification-unfollow' => 'Rebre una notificació quan un usuari no obté el vostre compte',
+ 'account-notification-help' => 'Controleu les notificacions que s envien pel que fa al vostre compte. Aquests valors s’han anul·lat si no permeteu que cap grup enviï notificacions relacionades amb el vostre compte o si desactiveu les notificacions',
+ 'account-settings' => 'Configuració del compte',
+ 'achievement-privacy' => 'Configuració d assoliment',
+ 'achievement-privacy-list' => 'Permeti als usuaris veure una llista dels seus èxits',
+ 'achievement-help' => 'Controleu la compartició d informació específica relacionada amb la realització amb grups que tinguin accés al vostre perfil. Aquests paràmetres s’han anul·lat si no permeteu que cap grup accedeixi als vostres èxits o si aneu en privat',
+ 'achievements' => 'Assoliments',
+ 'active' => 'Actiu',
+ 'active-table' => 'La meva taula activa',
+ 'active-torrents' => 'Torrents actius',
+ 'active-warning' => 'Atenció activa',
+ 'active-warnings' => 'Avisos actius',
+ 'add-seedbox' => 'Afegeix Seedbox',
+ 'all-torrents' => 'Tots els Torrents',
+ 'article-comments' => 'Comentari de l article fet',
+ 'avatar' => 'Avatar',
+ 'avg-seedtime' => 'Temps mitjà de llavor',
+ 'badges' => 'Insígnies',
+ 'ban' => 'Prohibició d usuari',
+ 'ban-log' => 'Registre de prohibició',
+ 'become-hidden' => 'Fes-te ocult',
+ 'become-visible' => 'Convertiu-vos en Visible',
+ 'bon' => 'BON',
+ 'bon-notification' => 'Configuració de notificació BON',
+ 'bon-notification-gift' => 'Rebre una notificació quan un usuari us ofereix un bon regal',
+ 'bon-notification-help' => 'Controleu les notificacions que s envien pel que fa a les transaccions de BON. Aquests paràmetres s’han anul·lat si no permeteu que cap grup enviï notificacions relacionades amb BON o si desactiveu les notificacions',
+ 'bookmarks' => 'Adreces d interès',
+ 'bounty-given' => 'Bounty Given',
+ 'bounty-received' => 'Recompensa rebuda',
+ 'can-chat' => 'Pot xatejar',
+ 'can-comment' => 'Podeu fer comentaris',
+ 'can-download' => 'Pot descarregar-se',
+ 'can-invite' => 'Pot convidar',
+ 'can-request' => 'Sol·licitud de Can',
+ 'can-upload' => 'Pot carregar',
+ 'certified-banker' => 'Banquer certificat',
+ 'certified-banker-desc' => 'Té 50.000 O més en banc',
+ 'certified-downloader' => 'Downloader certificat',
+ 'certified-downloader-desc' => 'Descarregats 100 o més Torrents!',
+ 'certified-seeder' => 'Sembradora certificada',
+ 'certified-seeder-desc' => 'Sembra 150 o més Torrents!',
+ 'change-email' => 'Canviar e-mail',
+ 'change-email-help' => 'Haureu de tornar a confirmar el vostre compte, després de canviar el correu electrònic',
+ 'change-password' => 'Canvia la contrasenya',
+ 'change-password-help' => 'Haureu de tornar a iniciar la sessió, després de canviar la contrasenya',
+ 'client-ip-address' => 'Adreça IP del client',
+ 'code' => 'Codi',
+ 'comments' => 'Comentaris',
+ 'created-on' => 'Creat a',
+ 'credited-download' => 'Descàrrega acreditada',
+ 'credited-upload' => 'Càrrega acreditada',
+ 'current-password' => 'Contrasenya actual',
+ 'custom-title' => 'Títol personalitzat',
+ 'delete' => 'Suprimeix l usuari',
+ 'disable-notifications' => 'Desactiva les notificacions',
+ 'disclaimer' => 'Exempció de responsabilitat',
+ 'disclaimer-info' => 'De manera predeterminada, no registrem les adreces IP dels usuaris com la majoria dels seguidors. Si afegiu la vostra IP de seedbox a continuació, s’espera que sàpiga que les vostres IP es mostren a la nostra base de dades a menys que suprimiu els registres.',
+ 'disclaimer-info-bordered' => 'Els IP de Seedbox afegits dispararan llavors una etiqueta de torrent d alta velocitat als torrents que s’estableixen a partir d’IPs que s’indiquen a continuació',
+ 'download-bon' => 'Descàrrega eliminada de la botiga BON',
+ 'download-recorded' => 'Descàrrega enregistrada',
+ 'download-true' => 'Descàrrega real',
+ 'downloads' => 'Descàrregues',
+ 'edit' => 'Edita l usuari',
+ 'edit-profile' => 'Edita el perfil',
+ 'enable-notifications' => 'Activa les notificacions',
+ 'expired' => 'Caducat',
+ 'expires-on' => 'Caduca el',
+ 'extra' => 'Extra',
+ 'filled-request' => 'Sol·licituds de socis emplenats',
+ 'follow' => 'Seguiu',
+ 'follower-privacy' => 'Configuració del seguidor',
+ 'follower-privacy-list' => 'Permeteu als usuaris veure una llista dels vostres seguidors',
+ 'follower-help' => 'Controleu la compartició d informació específica relacionada amb els seguidors amb grups que tinguin accés al vostre perfil. Aquests paràmetres s’han anul·lat si no permeteu que cap grup accedeixi als vostres seguidors o si aneu privat',
+ 'followers' => 'Seguidors',
+ 'following-notification' => 'Configuració de notificació d usuari seguida',
+ 'following-notification-upload' => 'Rebre una notificació quan un usuari seguit carrega un torrent',
+ 'following-notification-help' => 'Controleu quines notificacions s’envien sobre les accions del lloc d’usuari seguides. Aquests paràmetres s’han anul·lat si no permeteu que cap grup enviï notificacions sobre usuaris seguits o si desactiveu les notificacions',
+ 'formats-are-supported' => ': els formats són compatibles',
+ 'forum-notification' => 'Configuració de notificació del fòrum',
+ 'forum-notification-topic' => 'Rebre una notificació quan un tema que inicieu rep una nova publicació',
+ 'forum-notification-help' => 'Controlar les notificacions que s envien en relació amb les activitats del fòrum. Aquests paràmetres s’han anul·lat si no permeteu que cap grup enviï notificacions sobre activitats del fòrum o si desactiveu les notificacions',
+ 'forum-privacy' => 'Configuració del fòrum',
+ 'forum-privacy-post' => 'Permeteu als usuaris veure una llista de les publicacions del fòrum que heu publicat',
+ 'forum-privacy-topic' => 'Permeteu als usuaris veure una llista dels temes del fòrum que heu iniciat',
+ 'forum-help' => 'Controleu la compartició d’estadístiques i informació específiques relacionades amb els fòrums amb grups que tinguin accés al vostre perfil. Aquestes opcions de configuració s’han anul·lat si no permeteu que cap grup accedeixi a les vostres estadístiques i informació relacionades amb el fòrum o si aneu en privat',
+ 'forum-signature' => 'Signatura del fòrum',
+ 'forums' => 'Fòrums',
+ 'general' => 'General',
+ 'general-settings' => 'Configuració general',
+ 'gift-given' => 'Regal donat',
+ 'gift-received' => 'Rebut de regals',
+ 'go-public' => 'Anar al públic',
+ 'go-private' => 'Aneu en privat',
+ 'history' => 'Història',
+ 'history-table' => 'La meva taula d història',
+ 'hit-n-runs' => 'Hit and Run',
+ 'hit-n-runs-count' => 'Comte i executa el compte (tots els temps)',
+ 'hit-n-runs-history' => 'Torrent Hit and Runs History',
+ 'image' => 'Imatge',
+ 'important' => 'Important',
+ 'important-info' => 'Informació important',
+ 'information' => 'Informació',
+ 'invite-friend' => 'Convida el teu amic (correu electrònic + missatge necessari)',
+ 'invite-tree' => 'Convidar l arbre',
+ 'invites' => 'Convida',
+ 'invites-banned' => 'Error: els vostres drets d invitació han estat deshabilitats',
+ 'invites-banned-desc' => 'Si sentiu que això és un error, contacteu amb el personal.',
+ 'invites-count' => 'Vostè té: comptar les invitacions',
+ 'invites-disabled' => 'Atenció: les invitacions estan desactivades per haver obert el registre!',
+ 'invites-disabled-desc' => 'Si us plau, torneu a comprovar de nou!',
+ 'invites-rules' => ' Inviteu només a la gent que conegueu i confieu. Es responsabilitzarà personalment dels que convidi. No inviteu-vos a nosaltres mateixos, revisem tots els usuaris convidats. No comercialitzeu ni comercialitzeu invitacions. Si una persona que heu convidat és capturada fent trampes, compte comercial o venent / negociant invitacions, se us avisarà. ',
+ 'invites-send' => 'Envia les invitacions',
+ 'last-login' => 'Últim inici de sessió',
+ 'locked' => 'Bloquejat',
+ 'locked-achievements' => 'Èxits bloquejats',
+ 'member-since' => 'Membre des de',
+ 'members-desc' => 'Llista d’usuaris registrats a: títol amb tots els grups. Cerqueu un usuari ara.',
+ 'mention-notification' => 'Configuració de notificació @Mention',
'mention-notification-article-comment' => 'Rebre una notificació quan s’escriu en un comentari de l’article',
'mention-notification-torrent-comment' => 'Rebre una notificació quan s’escriu en un comentari del torrent',
'mention-notification-request-comment' => 'Rebre una notificació quan s’escriu en un comentari de sol·licitud',
- 'mention-notification-forum-post' => 'Rebre una notificació quan s’escriu en una entrada del fòrum',
- 'mention-notification-help' => 'Controleu quines notificacions s’envien quan un usuari us opina. Aquests paràmetres s’han anul·lat si no permeteu que cap grup enviï notificacions si un usuari @mentions us o si desactives les notificacions',
- 'moderated-by' => 'Moderat per: mod a',
- 'my-bonus-points' => 'Els meus punts de bonificació',
- 'my-bookmarks' => 'Els meus favorits',
- 'my-fl-tokens' => 'Els meus testimonis FL',
- 'my-general-settings' => 'Els meus paràmetres generals',
- 'my-notification' => 'La meva notificació',
- 'my-notification-settings' => 'La meva configuració de notificació',
- 'my-privacy' => 'La meva privadesa',
- 'my-privacy-settings' => 'La meva configuració de privadesa',
- 'my-profile' => 'El meu perfil',
- 'my-requested' => 'El meu sol·licitat',
- 'my-security' => 'La meva seguretat',
- 'my-security-settings' => 'Els meus paràmetres de seguretat',
- 'my-seedboxes' => 'Els meus seedboxes',
- 'my-settings' => 'Els meus paràmetres',
- 'my-wishlist' => 'la meva llista de desitjos',
- 'no-logs' => 'No hi ha registres d’invitació a la base de dades d’aquest usuari.',
- 'no-seedboxes' => 'No hi ha cap caixa de llavors',
- 'not-authorized' => 'No esteu autoritzat per veure aquesta pàgina. Aquest membre prefereix estar amagat com un ninja!',
- 'note' => 'Nota',
- 'notification' => 'Notificació',
- 'notification-settings' => 'Configuració de notificació',
- 'notification-from-account' => 'Rebre notificacions de compte des de',
- 'notification-from-account-help' => 'Només rebreu notificacions de comptes del sistema, el personal i els grups següents. Aquests paràmetres s’han anul·lat si desactiveu les notificacions',
- 'notification-from-bon' => 'Rebre notificacions BON des de',
- 'notification-from-bon-help' => 'Només rebreu notificacions BON del sistema, el personal i els grups següents. Aquests paràmetres s’han anul·lat si desactiveu les notificacions',
- 'notification-from-following' => 'Rebre les notificacions d’usuari seguides',
- 'notification-from-following-help' => 'Només rebreu les notificacions d’usuari seguides dels grups següents. Aquests paràmetres s’han anul·lat si desactiveu les notificacions',
- 'notification-from-forum' => 'Rebre notificacions del fòrum des de',
- 'notification-from-forum-help' => 'Només rebreu notificacions del fòrum del sistema, el personal i els grups següents. Aquests paràmetres s’han anul·lat si desactiveu les notificacions',
- 'notification-from-subscription' => 'Rebre notificacions de subscripció',
- 'notification-from-subscription-help' => 'Només rebreu notificacions del fòrum del sistema, el personal i els grups següents. Aquests paràmetres s’han anul·lat si desactiveu les notificacions',
- 'notification-from-torrent' => 'Rebre notificacions de Torrent des de',
- 'notification-from-torrent-help' => 'Només rebreu notificacions de torrent del sistema, el personal i els grups següents. Aquests paràmetres s’han anul·lat si desactiveu les notificacions',
- 'notification-from-mention' => 'Rebre notificacions de @Mention des de',
- 'notification-from-mention-help' => 'Només rebreu notificacions @mention del sistema, del personal i dels grups següents. Aquests paràmetres s’han anul·lat si desactiveu les notificacions',
- 'notification-from-request' => 'Rebre notificacions de sol·licitud',
- 'notification-from-request-help' => 'Només rebreu notificacions de sol·licitud del sistema, el personal i els grups següents. Aquests paràmetres s’han anul·lat si desactiveu les notificacions',
- 'notifications' => 'Notificacions',
- 'offline' => 'L usuari està fora de línia!',
- 'online' => 'L usuari està en línia!',
- 'options' => 'Opcions',
- 'other-help' => 'Controleu la compartició d altres estadístiques i informació amb grups que tinguin accés al vostre perfil. Aquests paràmetres s’han anul·lat si no permeteu que cap grup accedeixi a les vostres altres estadístiques i informacions o si aneu en privat',
- 'other-privacy' => 'Altres configuracions',
- 'other-privacy-online' => 'Permet que els usuaris us vegin al bloc d’usuaris en línia',
- 'passkey' => 'PID',
- 'passkey-warning' => 'PID és com la vostra contrasenya, heu de mantenir-la segura.',
- 'pending-achievements' => 'Resultats pendents',
- 'per-torrent' => 'Per Torrent',
- 'posts' => 'Missatges',
- 'posts-posted' => 'Missatges del fòrum publicats',
- 'privacy' => 'Privadesa',
- 'privacy-settings' => 'Configuració de privacitat',
- 'private-info' => 'Informació privada',
- 'private-forum-profile' => 'Atenció: aquest tema dels membres i l historial de publicacions s’han configurat com a PRIVAT!',
- 'private-profile' => 'Atenció: aquest perfil s ha configurat com a privat!',
- 'profile' => 'Perfil',
- 'profile-desc' => 'Usuari: perfil d’usuari registrat a: títol',
- 'profile-privacy' => 'Configuració del perfil',
- 'profile-privacy-torrent-count' => 'Comparteix el teu nombre total de descàrregues, càrregues, llavors i sangoneres',
- 'profile-privacy-torrent-ratio' => 'Compartiu les vostres dades de càrrega / descàrrega totals juntament amb la relació registrada',
- 'profile-privacy-torrent-seed' => 'Comparteix el temps i la mitjana de sembra total',
- 'profile-privacy-title' => 'Comparteix la informació del títol personal',
- 'profile-privacy-about' => 'Comparteix la teva informació personal sobre mi',
- 'profile-privacy-bon-extra' => 'Comparteix les estadístiques de BON',
- 'profile-privacy-comment-extra' => 'Comparteix les vostres estadístiques de comentaris',
- 'profile-privacy-forum-extra' => 'Comparteix les estadístiques del fòrum',
- 'profile-privacy-request-extra' => 'Compartiu les vostres estadístiques de sol·licituds',
- 'profile-privacy-torrent-extra' => 'Comparteix les teves estadístiques de torrent',
- 'profile-privacy-badge' => 'Comparteix les insígnies guanyades',
- 'profile-privacy-achievement' => 'Comparteix els teus assoliments recents',
- 'profile-privacy-follower' => 'Comparteix els teus seguidors recents',
- 'profile-privacy-warning' => 'Compartiu els vostres avisos de H&R',
- 'profile-privacy-help' => 'Controleu quines estadístiques i peces d informació apareixen al vostre perfil. Aquests paràmetres s’han anul·lat si no permeteu que cap grup accedeixi al vostre perfil o si aneu privat',
- 'public-info' => 'Informació pública',
- 'recent-achievements' => 'Assoliments recents',
- 'recent-followers' => 'Seguidors recents',
- 'registration-date' => 'Data de Registre',
- 'report' => 'Informe',
- 'request-help' => 'Controleu la compartició d’estadístiques relacionades amb la sol·licitud específica i la informació amb grups que tinguin accés al vostre perfil. Aquesta configuració s’ha anul·lat si no permeteu que cap grup accedeixi a les vostres estadístiques i informació relacionades sol·licitades o si feu clic privat',
- 'request' => 'Sol·licitud',
- 'requested' => 'Demanat',
- 'requests' => 'Sol·licituds',
- 'request-comments' => 'Sol·licitud de comentaris',
- 'request-notification' => 'Sol·licitud de configuració de notificació',
- 'request-notification-bounty' => 'Rebre una notificació quan un torrent sol·licitat obté una nova recompensa',
- 'request-notification-comment' => 'Rebre una notificació quan un torrent sol·licitat rep un nou comentari',
- 'request-notification-fill' => 'Rebre una notificació quan es completi un torrent sol·licitat',
- 'request-notification-fill-approve' => 'Rebre una notificació quan s apliqui un complet de torrent sol·licitat',
- 'request-notification-fill-reject' => 'Rebre una notificació quan es rebutgi un complet de torrent sol·licitat',
- 'request-notification-claim' => 'Rebre una notificació quan es reivindica un torrent sol·licitat',
- 'request-notification-unclaim' => 'Rebre una notificació quan no es reclama un torrent sol·licitat',
- 'request-notification-help' => 'Controleu les notificacions que s envien pel que fa a les activitats de sol·licitud. Aquests valors s’han anul·lat si no permeteu que cap grup enviï notificacions sobre activitats de sol·licitud o si desactiveu les notificacions',
- 'request-privacy' => 'Sol·licitud de configuració',
- 'request-privacy-requested' => 'Permeteu als usuaris veure una llista de sol·licituds que heu realitzat',
- 'reset-passkey' => 'Restableix la clau de pas (PID)',
- 'reset-passkey-help' => 'Haureu de tornar a descarregar / tornar a penjar tots els vostres torrents actius després de restablir el PID',
- 'reset-rss' => 'Restablir la clau RSS (RID)',
- 'reset-rss-help' => 'Haureu de tornar a carregar tots els vostres feeds RSS actius, després de restablir el RID',
- 'resurrections' => 'Resurreccions',
- 'search' => 'Cerca ràpida per nom d’usuari',
- 'security' => 'Seguretat',
- 'security-settings' => 'Configuració de seguretat',
- 'seedboxes' => 'Sembrades',
- 'seeds' => 'Llavors',
- 'send-invite' => 'Envia la invitació',
- 'sender' => 'Remitent',
- 'settings' => 'Configuració',
- 'show-passkey' => 'Mostra PID',
- 'staff-noted' => 'Compte notat del personal',
- 'statistics' => 'Estadístiques',
- 'subscription-notification' => 'Configuració de notificació de subscripció',
- 'subscription-notification-forum' => 'Rebre una notificació quan un fòrum subscrit rep un tema nou',
- 'subscription-notification-topic' => 'Rebre una notificació quan un tema subscrit rep una entrada nova',
- 'subscription-notification-help' => 'Controleu les notificacions que s envien pel que fa a les vostres subscripcions. Aquests paràmetres s’han anul·lat si no permeteu que cap grup enviï notificacions relacionades amb les vostres subscripcions o si desactiveu les notificacions',
- 'thanks-given' => 'Gràcies, donat',
- 'thanks-received' => 'Moltes gràcies',
- 'tips-given' => 'Consells donats',
- 'tips-received' => 'Consells rebuts',
- 'title' => 'Títol',
- 'top-bankers' => 'Els millors banquers',
- 'top-downloaders-data' => 'Top Downloaders (Data)',
- 'top-leechers' => 'Top Leechers',
- 'top-leechers-count' => 'Top Leechers (Count)',
- 'top-seeders' => 'Els millors llavors',
- 'top-seeders-count' => 'Sembradores principals (comptar)',
- 'top-seeding-size' => 'Sembrava (mida)',
- 'top-seedtime' => 'Top seed time',
- 'top-uploaders-data' => 'Carregadors principals (dades)',
- 'top-uploaders-count' => 'Top Uploaders (Count)',
- 'topics' => 'Temes',
- 'topics-started' => 'Temes del fòrum iniciats',
- 'torrent-comments' => 'Comentaris del torrent realitzats',
- 'torrent-help' => 'Controleu l’ús compartit d’estadístiques i d informacions relacionades amb el torrent específiques amb grups que tinguin accés al vostre perfil. Aquestes opcions de configuració s’han anul·lat si no permeteu que cap grup accedeixi a les vostres estadístiques i informació relacionades amb el torrent ni si és privat',
- 'torrent-notification' => 'Configuració de notificació de Torrent',
- 'torrent-notification-comment' => 'Rebre una notificació quan un torrent penjat rep un nou comentari',
- 'torrent-notification-thank' => 'Rebre una notificació quan un torrent penjat rep un agraïment nou',
- 'torrent-notification-tip' => 'Rebre una notificació quan un torrent penjat obté un consell nou',
- 'torrent-notification-help' => 'Controleu les notificacions que s envien pel que fa a les activitats del torrent. Aquests valors s’han anul·lat si no permeteu que cap grup enviï notificacions relacionades amb activitats de torrent o si desactiveu les notificacions',
- 'torrent-privacy' => 'Configuració de Torrent',
- 'torrent-privacy-download' => 'Permeteu als usuaris veure una llista de torrents que heu descarregat',
- 'torrent-privacy-upload' => 'Permeteu als usuaris veure una llista de torrents que heu penjat',
- 'torrent-privacy-peer' => 'Permet que els usuaris us vegin a la taula de l’historial de parells de torrent',
- 'torrents' => 'Torrents',
- 'torrents-history' => 'Història de Torrents',
- 'total-download' => 'Descàrrega total',
- 'total-downloads' => 'Descàrregues totals',
- 'total-leeching' => 'Leeching total',
- 'total-seeding' => 'Sembra total',
- 'total-seedtime' => 'Temps de sembra total',
- 'total-upload' => 'Càrrega total',
- 'total-uploads' => 'Total de càrregues',
- 'unban' => 'Unban User',
- 'unfollow' => 'Deixa de seguir',
- 'unlocked' => 'Desbloquejat',
- 'unlocked-achievements' => 'Realitzacions desbloquejades',
- 'unsatisfieds' => 'No satisfets',
- 'upload-bon' => 'Càrrega afegida des de la botiga BON',
- 'upload-recorded' => 'Càrrega enregistrada',
- 'upload-true' => 'Càrrega real',
- 'uploads' => 'Càrregues',
- 'uploads-table' => 'Taula de càrregues',
- 'user' => 'Usuari',
- 'user-id' => 'ID d usuari',
- 'username-seedbox' => 'Nom d usuari de Seedbox',
- 'visible-to-achievement' => 'Assoliments visibles a',
- 'visible-to-achievement-help' => 'Els vostres assoliments només seran visibles per al personal i els grups següents. Aquests valors s’han anul·lat si aneu en privat',
- 'visible-to-follower' => 'Seguidors visibles a',
- 'visible-to-follower-help' => 'Els vostres seguidors només seran visibles per al personal i els grups següents. Aquests valors s’han anul·lat si aneu en privat',
- 'visible-to-forum' => 'Informació del fòrum visible a',
- 'visible-to-forum-help' => 'La informació del fòrum només serà visible per al personal i els grups següents. Aquests valors s’han anul·lat si aneu en privat',
- 'visible-to-other' => 'Altres visibles a',
- 'visible-to-other-help' => 'Una altra informació relativa al vostre compte només serà visible per al personal i els grups següents. Aquests paràmetres s’han anul·lat si aneu en privat o si aneu ocults',
- 'visible-to-profile' => 'Perfil visible a',
- 'visible-to-profile-help' => 'El vostre perfil només serà visible per al personal i els grups següents. Aquests valors s’han anul·lat si aneu en privat',
- 'visible-to-request' => 'Sol·licitar informació visible a',
- 'visible-to-request-help' => 'La informació de la vostra sol·licitud només serà visible per al personal i els grups següents. Aquests valors s’han anul·lat si aneu en privat',
- 'visible-to-torrent' => 'Informació de Torrent visible a',
- 'visible-to-torrent-help' => 'La informació del torrent només serà visible per al personal i els grups següents. Aquests paràmetres s’han anul·lat si aneu en privat o si aneu ocults',
- 'warned-on' => 'Avisat',
- 'warning' => 'Advertència',
- 'warning-log' => 'Registre d avisos',
- 'wishlist' => 'Wishlist',
+ 'mention-notification-forum-post' => 'Rebre una notificació quan s’escriu en una entrada del fòrum',
+ 'mention-notification-help' => 'Controleu quines notificacions s’envien quan un usuari us opina. Aquests paràmetres s’han anul·lat si no permeteu que cap grup enviï notificacions si un usuari @mentions us o si desactives les notificacions',
+ 'moderated-by' => 'Moderat per: mod a',
+ 'my-bonus-points' => 'Els meus punts de bonificació',
+ 'my-bookmarks' => 'Els meus favorits',
+ 'my-fl-tokens' => 'Els meus testimonis FL',
+ 'my-general-settings' => 'Els meus paràmetres generals',
+ 'my-notification' => 'La meva notificació',
+ 'my-notification-settings' => 'La meva configuració de notificació',
+ 'my-privacy' => 'La meva privadesa',
+ 'my-privacy-settings' => 'La meva configuració de privadesa',
+ 'my-profile' => 'El meu perfil',
+ 'my-requested' => 'El meu sol·licitat',
+ 'my-security' => 'La meva seguretat',
+ 'my-security-settings' => 'Els meus paràmetres de seguretat',
+ 'my-seedboxes' => 'Els meus seedboxes',
+ 'my-settings' => 'Els meus paràmetres',
+ 'my-wishlist' => 'la meva llista de desitjos',
+ 'no-logs' => 'No hi ha registres d’invitació a la base de dades d’aquest usuari.',
+ 'no-seedboxes' => 'No hi ha cap caixa de llavors',
+ 'not-authorized' => 'No esteu autoritzat per veure aquesta pàgina. Aquest membre prefereix estar amagat com un ninja!',
+ 'note' => 'Nota',
+ 'notification' => 'Notificació',
+ 'notification-settings' => 'Configuració de notificació',
+ 'notification-from-account' => 'Rebre notificacions de compte des de',
+ 'notification-from-account-help' => 'Només rebreu notificacions de comptes del sistema, el personal i els grups següents. Aquests paràmetres s’han anul·lat si desactiveu les notificacions',
+ 'notification-from-bon' => 'Rebre notificacions BON des de',
+ 'notification-from-bon-help' => 'Només rebreu notificacions BON del sistema, el personal i els grups següents. Aquests paràmetres s’han anul·lat si desactiveu les notificacions',
+ 'notification-from-following' => 'Rebre les notificacions d’usuari seguides',
+ 'notification-from-following-help' => 'Només rebreu les notificacions d’usuari seguides dels grups següents. Aquests paràmetres s’han anul·lat si desactiveu les notificacions',
+ 'notification-from-forum' => 'Rebre notificacions del fòrum des de',
+ 'notification-from-forum-help' => 'Només rebreu notificacions del fòrum del sistema, el personal i els grups següents. Aquests paràmetres s’han anul·lat si desactiveu les notificacions',
+ 'notification-from-subscription' => 'Rebre notificacions de subscripció',
+ 'notification-from-subscription-help' => 'Només rebreu notificacions del fòrum del sistema, el personal i els grups següents. Aquests paràmetres s’han anul·lat si desactiveu les notificacions',
+ 'notification-from-torrent' => 'Rebre notificacions de Torrent des de',
+ 'notification-from-torrent-help' => 'Només rebreu notificacions de torrent del sistema, el personal i els grups següents. Aquests paràmetres s’han anul·lat si desactiveu les notificacions',
+ 'notification-from-mention' => 'Rebre notificacions de @Mention des de',
+ 'notification-from-mention-help' => 'Només rebreu notificacions @mention del sistema, del personal i dels grups següents. Aquests paràmetres s’han anul·lat si desactiveu les notificacions',
+ 'notification-from-request' => 'Rebre notificacions de sol·licitud',
+ 'notification-from-request-help' => 'Només rebreu notificacions de sol·licitud del sistema, el personal i els grups següents. Aquests paràmetres s’han anul·lat si desactiveu les notificacions',
+ 'notifications' => 'Notificacions',
+ 'offline' => 'L usuari està fora de línia!',
+ 'online' => 'L usuari està en línia!',
+ 'options' => 'Opcions',
+ 'other-help' => 'Controleu la compartició d altres estadístiques i informació amb grups que tinguin accés al vostre perfil. Aquests paràmetres s’han anul·lat si no permeteu que cap grup accedeixi a les vostres altres estadístiques i informacions o si aneu en privat',
+ 'other-privacy' => 'Altres configuracions',
+ 'other-privacy-online' => 'Permet que els usuaris us vegin al bloc d’usuaris en línia',
+ 'passkey' => 'PID',
+ 'passkey-warning' => 'PID és com la vostra contrasenya, heu de mantenir-la segura.',
+ 'pending-achievements' => 'Resultats pendents',
+ 'per-torrent' => 'Per Torrent',
+ 'posts' => 'Missatges',
+ 'posts-posted' => 'Missatges del fòrum publicats',
+ 'privacy' => 'Privadesa',
+ 'privacy-settings' => 'Configuració de privacitat',
+ 'private-info' => 'Informació privada',
+ 'private-forum-profile' => 'Atenció: aquest tema dels membres i l historial de publicacions s’han configurat com a PRIVAT!',
+ 'private-profile' => 'Atenció: aquest perfil s ha configurat com a privat!',
+ 'profile' => 'Perfil',
+ 'profile-desc' => 'Usuari: perfil d’usuari registrat a: títol',
+ 'profile-privacy' => 'Configuració del perfil',
+ 'profile-privacy-torrent-count' => 'Comparteix el teu nombre total de descàrregues, càrregues, llavors i sangoneres',
+ 'profile-privacy-torrent-ratio' => 'Compartiu les vostres dades de càrrega / descàrrega totals juntament amb la relació registrada',
+ 'profile-privacy-torrent-seed' => 'Comparteix el temps i la mitjana de sembra total',
+ 'profile-privacy-title' => 'Comparteix la informació del títol personal',
+ 'profile-privacy-about' => 'Comparteix la teva informació personal sobre mi',
+ 'profile-privacy-bon-extra' => 'Comparteix les estadístiques de BON',
+ 'profile-privacy-comment-extra' => 'Comparteix les vostres estadístiques de comentaris',
+ 'profile-privacy-forum-extra' => 'Comparteix les estadístiques del fòrum',
+ 'profile-privacy-request-extra' => 'Compartiu les vostres estadístiques de sol·licituds',
+ 'profile-privacy-torrent-extra' => 'Comparteix les teves estadístiques de torrent',
+ 'profile-privacy-badge' => 'Comparteix les insígnies guanyades',
+ 'profile-privacy-achievement' => 'Comparteix els teus assoliments recents',
+ 'profile-privacy-follower' => 'Comparteix els teus seguidors recents',
+ 'profile-privacy-warning' => 'Compartiu els vostres avisos de H&R',
+ 'profile-privacy-help' => 'Controleu quines estadístiques i peces d informació apareixen al vostre perfil. Aquests paràmetres s’han anul·lat si no permeteu que cap grup accedeixi al vostre perfil o si aneu privat',
+ 'public-info' => 'Informació pública',
+ 'recent-achievements' => 'Assoliments recents',
+ 'recent-followers' => 'Seguidors recents',
+ 'registration-date' => 'Data de Registre',
+ 'report' => 'Informe',
+ 'request-help' => 'Controleu la compartició d’estadístiques relacionades amb la sol·licitud específica i la informació amb grups que tinguin accés al vostre perfil. Aquesta configuració s’ha anul·lat si no permeteu que cap grup accedeixi a les vostres estadístiques i informació relacionades sol·licitades o si feu clic privat',
+ 'request' => 'Sol·licitud',
+ 'requested' => 'Demanat',
+ 'requests' => 'Sol·licituds',
+ 'request-comments' => 'Sol·licitud de comentaris',
+ 'request-notification' => 'Sol·licitud de configuració de notificació',
+ 'request-notification-bounty' => 'Rebre una notificació quan un torrent sol·licitat obté una nova recompensa',
+ 'request-notification-comment' => 'Rebre una notificació quan un torrent sol·licitat rep un nou comentari',
+ 'request-notification-fill' => 'Rebre una notificació quan es completi un torrent sol·licitat',
+ 'request-notification-fill-approve' => 'Rebre una notificació quan s apliqui un complet de torrent sol·licitat',
+ 'request-notification-fill-reject' => 'Rebre una notificació quan es rebutgi un complet de torrent sol·licitat',
+ 'request-notification-claim' => 'Rebre una notificació quan es reivindica un torrent sol·licitat',
+ 'request-notification-unclaim' => 'Rebre una notificació quan no es reclama un torrent sol·licitat',
+ 'request-notification-help' => 'Controleu les notificacions que s envien pel que fa a les activitats de sol·licitud. Aquests valors s’han anul·lat si no permeteu que cap grup enviï notificacions sobre activitats de sol·licitud o si desactiveu les notificacions',
+ 'request-privacy' => 'Sol·licitud de configuració',
+ 'request-privacy-requested' => 'Permeteu als usuaris veure una llista de sol·licituds que heu realitzat',
+ 'reset-passkey' => 'Restableix la clau de pas (PID)',
+ 'reset-passkey-help' => 'Haureu de tornar a descarregar / tornar a penjar tots els vostres torrents actius després de restablir el PID',
+ 'reset-rss' => 'Restablir la clau RSS (RID)',
+ 'reset-rss-help' => 'Haureu de tornar a carregar tots els vostres feeds RSS actius, després de restablir el RID',
+ 'resurrections' => 'Resurreccions',
+ 'search' => 'Cerca ràpida per nom d’usuari',
+ 'security' => 'Seguretat',
+ 'security-settings' => 'Configuració de seguretat',
+ 'seedboxes' => 'Sembrades',
+ 'seeds' => 'Llavors',
+ 'send-invite' => 'Envia la invitació',
+ 'sender' => 'Remitent',
+ 'settings' => 'Configuració',
+ 'show-passkey' => 'Mostra PID',
+ 'staff-noted' => 'Compte notat del personal',
+ 'statistics' => 'Estadístiques',
+ 'subscription-notification' => 'Configuració de notificació de subscripció',
+ 'subscription-notification-forum' => 'Rebre una notificació quan un fòrum subscrit rep un tema nou',
+ 'subscription-notification-topic' => 'Rebre una notificació quan un tema subscrit rep una entrada nova',
+ 'subscription-notification-help' => 'Controleu les notificacions que s envien pel que fa a les vostres subscripcions. Aquests paràmetres s’han anul·lat si no permeteu que cap grup enviï notificacions relacionades amb les vostres subscripcions o si desactiveu les notificacions',
+ 'thanks-given' => 'Gràcies, donat',
+ 'thanks-received' => 'Moltes gràcies',
+ 'tips-given' => 'Consells donats',
+ 'tips-received' => 'Consells rebuts',
+ 'title' => 'Títol',
+ 'top-bankers' => 'Els millors banquers',
+ 'top-downloaders-data' => 'Top Downloaders (Data)',
+ 'top-leechers' => 'Top Leechers',
+ 'top-leechers-count' => 'Top Leechers (Count)',
+ 'top-seeders' => 'Els millors llavors',
+ 'top-seeders-count' => 'Sembradores principals (comptar)',
+ 'top-seeding-size' => 'Sembrava (mida)',
+ 'top-seedtime' => 'Top seed time',
+ 'top-uploaders-data' => 'Carregadors principals (dades)',
+ 'top-uploaders-count' => 'Top Uploaders (Count)',
+ 'topics' => 'Temes',
+ 'topics-started' => 'Temes del fòrum iniciats',
+ 'torrent-comments' => 'Comentaris del torrent realitzats',
+ 'torrent-help' => 'Controleu l’ús compartit d’estadístiques i d informacions relacionades amb el torrent específiques amb grups que tinguin accés al vostre perfil. Aquestes opcions de configuració s’han anul·lat si no permeteu que cap grup accedeixi a les vostres estadístiques i informació relacionades amb el torrent ni si és privat',
+ 'torrent-notification' => 'Configuració de notificació de Torrent',
+ 'torrent-notification-comment' => 'Rebre una notificació quan un torrent penjat rep un nou comentari',
+ 'torrent-notification-thank' => 'Rebre una notificació quan un torrent penjat rep un agraïment nou',
+ 'torrent-notification-tip' => 'Rebre una notificació quan un torrent penjat obté un consell nou',
+ 'torrent-notification-help' => 'Controleu les notificacions que s envien pel que fa a les activitats del torrent. Aquests valors s’han anul·lat si no permeteu que cap grup enviï notificacions relacionades amb activitats de torrent o si desactiveu les notificacions',
+ 'torrent-privacy' => 'Configuració de Torrent',
+ 'torrent-privacy-download' => 'Permeteu als usuaris veure una llista de torrents que heu descarregat',
+ 'torrent-privacy-upload' => 'Permeteu als usuaris veure una llista de torrents que heu penjat',
+ 'torrent-privacy-peer' => 'Permet que els usuaris us vegin a la taula de l’historial de parells de torrent',
+ 'torrents' => 'Torrents',
+ 'torrents-history' => 'Història de Torrents',
+ 'total-download' => 'Descàrrega total',
+ 'total-downloads' => 'Descàrregues totals',
+ 'total-leeching' => 'Leeching total',
+ 'total-seeding' => 'Sembra total',
+ 'total-seedtime' => 'Temps de sembra total',
+ 'total-upload' => 'Càrrega total',
+ 'total-uploads' => 'Total de càrregues',
+ 'unban' => 'Unban User',
+ 'unfollow' => 'Deixa de seguir',
+ 'unlocked' => 'Desbloquejat',
+ 'unlocked-achievements' => 'Realitzacions desbloquejades',
+ 'unsatisfieds' => 'No satisfets',
+ 'upload-bon' => 'Càrrega afegida des de la botiga BON',
+ 'upload-recorded' => 'Càrrega enregistrada',
+ 'upload-true' => 'Càrrega real',
+ 'uploads' => 'Càrregues',
+ 'uploads-table' => 'Taula de càrregues',
+ 'user' => 'Usuari',
+ 'user-id' => 'ID d usuari',
+ 'username-seedbox' => 'Nom d usuari de Seedbox',
+ 'visible-to-achievement' => 'Assoliments visibles a',
+ 'visible-to-achievement-help' => 'Els vostres assoliments només seran visibles per al personal i els grups següents. Aquests valors s’han anul·lat si aneu en privat',
+ 'visible-to-follower' => 'Seguidors visibles a',
+ 'visible-to-follower-help' => 'Els vostres seguidors només seran visibles per al personal i els grups següents. Aquests valors s’han anul·lat si aneu en privat',
+ 'visible-to-forum' => 'Informació del fòrum visible a',
+ 'visible-to-forum-help' => 'La informació del fòrum només serà visible per al personal i els grups següents. Aquests valors s’han anul·lat si aneu en privat',
+ 'visible-to-other' => 'Altres visibles a',
+ 'visible-to-other-help' => 'Una altra informació relativa al vostre compte només serà visible per al personal i els grups següents. Aquests paràmetres s’han anul·lat si aneu en privat o si aneu ocults',
+ 'visible-to-profile' => 'Perfil visible a',
+ 'visible-to-profile-help' => 'El vostre perfil només serà visible per al personal i els grups següents. Aquests valors s’han anul·lat si aneu en privat',
+ 'visible-to-request' => 'Sol·licitar informació visible a',
+ 'visible-to-request-help' => 'La informació de la vostra sol·licitud només serà visible per al personal i els grups següents. Aquests valors s’han anul·lat si aneu en privat',
+ 'visible-to-torrent' => 'Informació de Torrent visible a',
+ 'visible-to-torrent-help' => 'La informació del torrent només serà visible per al personal i els grups següents. Aquests paràmetres s’han anul·lat si aneu en privat o si aneu ocults',
+ 'warned-on' => 'Avisat',
+ 'warning' => 'Advertència',
+ 'warning-log' => 'Registre d avisos',
+ 'wishlist' => 'Wishlist',
];
diff --git a/lang/ca/validation.php b/lang/ca/validation.php
index 4420ff857..b93ca78c4 100644
--- a/lang/ca/validation.php
+++ b/lang/ca/validation.php
@@ -23,108 +23,108 @@ return [
|
*/
- 'accepted' => ':attribute ha de ser acceptat.',
- 'active_url' => ':attribute no és un URL vàlid.',
- 'after' => ':attribute ha de ser una data posterior a :date.',
- 'after_or_equal' => ':attribute ha de ser una data posterior o igual a :date.',
- 'alpha' => ':attribute només pot contenir lletres.',
- 'alpha_dash' => ':attribute només pot contenir lletres, números i guions.',
- 'alpha_num' => ':attribute només pot contenir lletres i números.',
- 'array' => ':attribute ha de ser una matriu.',
- 'before' => ':attribute ha de ser una data anterior a :date.',
- 'before_or_equal' => ':attribute ha de ser una data anterior o igual a :date.',
- 'between' => [
+ 'accepted' => ':attribute ha de ser acceptat.',
+ 'active_url' => ':attribute no és un URL vàlid.',
+ 'after' => ':attribute ha de ser una data posterior a :date.',
+ 'after_or_equal' => ':attribute ha de ser una data posterior o igual a :date.',
+ 'alpha' => ':attribute només pot contenir lletres.',
+ 'alpha_dash' => ':attribute només pot contenir lletres, números i guions.',
+ 'alpha_num' => ':attribute només pot contenir lletres i números.',
+ 'array' => ':attribute ha de ser una matriu.',
+ 'before' => ':attribute ha de ser una data anterior a :date.',
+ 'before_or_equal' => ':attribute ha de ser una data anterior o igual a :date.',
+ 'between' => [
'numeric' => ":attribute ha d'estar entre :min - :max.",
- 'file' => ':attribute ha de pesar entre :min - :max kilobytes.',
- 'string' => ':attribute ha de tenir entre :min - :max caràcters.',
- 'array' => ':attribute ha de tenir entre :min - :max ítems.',
+ 'file' => ':attribute ha de pesar entre :min - :max kilobytes.',
+ 'string' => ':attribute ha de tenir entre :min - :max caràcters.',
+ 'array' => ':attribute ha de tenir entre :min - :max ítems.',
],
- 'boolean' => 'El camp :attribute ha de ser verdader o fals',
- 'confirmed' => 'La confirmació de :attribute no coincideix.',
- 'date' => ':attribute no és una data vàlida.',
- 'date_equals' => 'The :attribute must be a date equal to :date.',
- 'date_format' => 'El camp :attribute no concorda amb el format :format.',
- 'different' => ':attribute i :other han de ser diferents.',
- 'digits' => ':attribute ha de tenir :digits dígits.',
- 'digits_between' => ':attribute ha de tenir entre :min i :max dígits.',
- 'dimensions' => 'Les dimensions de la imatge :attribute no són vàlides.',
- 'distinct' => 'El camp :attribute té un valor duplicat.',
- 'email' => ':attribute no és un e-mail vàlid',
- 'exists' => ':attribute és invàlid.',
- 'file' => 'El camp :attribute ha de ser un arxiu.',
- 'filled' => 'El camp :attribute és obligatori.',
- 'gt' => [
+ 'boolean' => 'El camp :attribute ha de ser verdader o fals',
+ 'confirmed' => 'La confirmació de :attribute no coincideix.',
+ 'date' => ':attribute no és una data vàlida.',
+ 'date_equals' => 'The :attribute must be a date equal to :date.',
+ 'date_format' => 'El camp :attribute no concorda amb el format :format.',
+ 'different' => ':attribute i :other han de ser diferents.',
+ 'digits' => ':attribute ha de tenir :digits dígits.',
+ 'digits_between' => ':attribute ha de tenir entre :min i :max dígits.',
+ 'dimensions' => 'Les dimensions de la imatge :attribute no són vàlides.',
+ 'distinct' => 'El camp :attribute té un valor duplicat.',
+ 'email' => ':attribute no és un e-mail vàlid',
+ 'exists' => ':attribute és invàlid.',
+ 'file' => 'El camp :attribute ha de ser un arxiu.',
+ 'filled' => 'El camp :attribute és obligatori.',
+ 'gt' => [
'numeric' => 'The :attribute must be greater than :value.',
- 'file' => 'The :attribute must be greater than :value kilobytes.',
- 'string' => 'The :attribute must be greater than :value characters.',
- 'array' => 'The :attribute must have more than :value items.',
+ 'file' => 'The :attribute must be greater than :value kilobytes.',
+ 'string' => 'The :attribute must be greater than :value characters.',
+ 'array' => 'The :attribute must have more than :value items.',
],
- 'gte' => [
+ 'gte' => [
'numeric' => 'The :attribute must be greater than or equal :value.',
- 'file' => 'The :attribute must be greater than or equal :value kilobytes.',
- 'string' => 'The :attribute must be greater than or equal :value characters.',
- 'array' => 'The :attribute must have :value items or more.',
+ 'file' => 'The :attribute must be greater than or equal :value kilobytes.',
+ 'string' => 'The :attribute must be greater than or equal :value characters.',
+ 'array' => 'The :attribute must have :value items or more.',
],
- 'image' => ':attribute ha de ser una imatge.',
- 'in' => ':attribute és invàlid',
- 'in_array' => 'El camp :attribute no existeix dintre de :other.',
- 'integer' => ':attribute ha de ser un nombre enter.',
- 'ip' => ':attribute ha de ser una adreça IP vàlida.',
- 'ipv4' => ':attribute ha de ser una adreça IPv4 vàlida.',
- 'ipv6' => ':attribute ha de ser una adreça IPv6 vàlida.',
- 'json' => 'El camp :attribute ha de ser una cadena JSON vàlida.',
- 'lt' => [
+ 'image' => ':attribute ha de ser una imatge.',
+ 'in' => ':attribute és invàlid',
+ 'in_array' => 'El camp :attribute no existeix dintre de :other.',
+ 'integer' => ':attribute ha de ser un nombre enter.',
+ 'ip' => ':attribute ha de ser una adreça IP vàlida.',
+ 'ipv4' => ':attribute ha de ser una adreça IPv4 vàlida.',
+ 'ipv6' => ':attribute ha de ser una adreça IPv6 vàlida.',
+ 'json' => 'El camp :attribute ha de ser una cadena JSON vàlida.',
+ 'lt' => [
'numeric' => 'The :attribute must be less than :value.',
- 'file' => 'The :attribute must be less than :value kilobytes.',
- 'string' => 'The :attribute must be less than :value characters.',
- 'array' => 'The :attribute must have less than :value items.',
+ 'file' => 'The :attribute must be less than :value kilobytes.',
+ 'string' => 'The :attribute must be less than :value characters.',
+ 'array' => 'The :attribute must have less than :value items.',
],
- 'lte' => [
+ 'lte' => [
'numeric' => 'The :attribute must be less than or equal :value.',
- 'file' => 'The :attribute must be less than or equal :value kilobytes.',
- 'string' => 'The :attribute must be less than or equal :value characters.',
- 'array' => 'The :attribute must not have more than :value items.',
+ 'file' => 'The :attribute must be less than or equal :value kilobytes.',
+ 'string' => 'The :attribute must be less than or equal :value characters.',
+ 'array' => 'The :attribute must not have more than :value items.',
],
- 'max' => [
+ 'max' => [
'numeric' => ':attribute no pot ser més gran que :max.',
- 'file' => ':attribute no pot ser més gran que :max kilobytes.',
- 'string' => ':attribute no pot ser més gran que :max caràcters.',
- 'array' => ':attribute no pot tenir més de :max ítems.',
+ 'file' => ':attribute no pot ser més gran que :max kilobytes.',
+ 'string' => ':attribute no pot ser més gran que :max caràcters.',
+ 'array' => ':attribute no pot tenir més de :max ítems.',
],
- 'mimes' => ':attribute ha de ser un arxiu amb format: :values.',
- 'mimetypes' => ':attribute ha de ser un arxiu amb format: :values.',
- 'min' => [
+ 'mimes' => ':attribute ha de ser un arxiu amb format: :values.',
+ 'mimetypes' => ':attribute ha de ser un arxiu amb format: :values.',
+ 'min' => [
'numeric' => "El tamany de :attribute ha de ser d'almenys :min.",
- 'file' => "El tamany de :attribute ha de ser d'almenys :min kilobytes.",
- 'string' => ':attribute ha de contenir almenys :min caràcters.',
- 'array' => ':attribute ha de tenir almenys :min ítems.',
+ 'file' => "El tamany de :attribute ha de ser d'almenys :min kilobytes.",
+ 'string' => ':attribute ha de contenir almenys :min caràcters.',
+ 'array' => ':attribute ha de tenir almenys :min ítems.',
],
- 'not_in' => ':attribute és invàlid.',
- 'not_regex' => 'The :attribute format is invalid.',
- 'numeric' => ':attribute ha de ser numèric.',
- 'present' => 'El camp :attribute ha d\'existir.',
- 'regex' => 'El format de :attribute és invàlid.',
- 'required' => 'El camp :attribute és obligatori.',
- 'required_if' => 'El camp :attribute és obligatori quan :other és :value.',
- 'required_unless' => 'El camp :attribute és obligatori a no ser que :other sigui a :values.',
- 'required_with' => 'El camp :attribute és obligatori quan hi ha :values.',
- 'required_with_all' => 'El camp :attribute és obligatori quan hi ha :values.',
- 'required_without' => 'El camp :attribute és obligatori quan no hi ha :values.',
+ 'not_in' => ':attribute és invàlid.',
+ 'not_regex' => 'The :attribute format is invalid.',
+ 'numeric' => ':attribute ha de ser numèric.',
+ 'present' => 'El camp :attribute ha d\'existir.',
+ 'regex' => 'El format de :attribute és invàlid.',
+ 'required' => 'El camp :attribute és obligatori.',
+ 'required_if' => 'El camp :attribute és obligatori quan :other és :value.',
+ 'required_unless' => 'El camp :attribute és obligatori a no ser que :other sigui a :values.',
+ 'required_with' => 'El camp :attribute és obligatori quan hi ha :values.',
+ 'required_with_all' => 'El camp :attribute és obligatori quan hi ha :values.',
+ 'required_without' => 'El camp :attribute és obligatori quan no hi ha :values.',
'required_without_all' => 'El camp :attribute és obligatori quan no hi ha cap valor dels següents: :values.',
- 'same' => ':attribute i :other han de coincidir.',
- 'size' => [
+ 'same' => ':attribute i :other han de coincidir.',
+ 'size' => [
'numeric' => 'El tamany de :attribute ha de ser :size.',
- 'file' => 'El tamany de :attribute ha de ser :size kilobytes.',
- 'string' => ':attribute ha de contenir :size caràcters.',
- 'array' => ':attribute ha de contenir :size ítems.',
+ 'file' => 'El tamany de :attribute ha de ser :size kilobytes.',
+ 'string' => ':attribute ha de contenir :size caràcters.',
+ 'array' => ':attribute ha de contenir :size ítems.',
],
- 'starts_with' => 'The :attribute must start with one of the following: :values',
- 'string' => 'El camp :attribute ha de ser una cadena.',
- 'timezone' => 'El camp :attribute ha de ser una zona vàlida.',
- 'unique' => ':attribute ja està registrat i no es pot repetir.',
- 'uploaded' => ':attribute ha fallat al pujar.',
- 'url' => ':attribute no és una adreça web vàlida.',
- 'uuid' => 'The :attribute must be a valid UUID.',
+ 'starts_with' => 'The :attribute must start with one of the following: :values',
+ 'string' => 'El camp :attribute ha de ser una cadena.',
+ 'timezone' => 'El camp :attribute ha de ser una zona vàlida.',
+ 'unique' => ':attribute ja està registrat i no es pot repetir.',
+ 'uploaded' => ':attribute ha fallat al pujar.',
+ 'url' => ':attribute no és una adreça web vàlida.',
+ 'uuid' => 'The :attribute must be a valid UUID.',
/*
|--------------------------------------------------------------------------
@@ -155,34 +155,34 @@ return [
*/
'attributes' => [
- 'name' => 'nom',
- 'username' => 'usuari',
- 'email' => 'correu electrònic',
- 'first_name' => 'nom',
- 'last_name' => 'cognom',
- 'password' => 'contrasenya',
+ 'name' => 'nom',
+ 'username' => 'usuari',
+ 'email' => 'correu electrònic',
+ 'first_name' => 'nom',
+ 'last_name' => 'cognom',
+ 'password' => 'contrasenya',
'password_confirmation' => 'confirmació de la contrasenya',
- 'city' => 'ciutat',
- 'country' => 'país',
- 'address' => 'adreça',
- 'phone' => 'telèfon',
- 'mobile' => 'mòbil',
- 'age' => 'edat',
- 'sex' => 'sexe',
- 'gender' => 'gènere',
- 'year' => 'any',
- 'month' => 'mes',
- 'day' => 'dia',
- 'hour' => 'hora',
- 'minute' => 'minut',
- 'second' => 'segon',
- 'title' => 'títol',
- 'body' => 'contingut',
- 'description' => 'descripció',
- 'excerpt' => 'extracte',
- 'date' => 'data',
- 'time' => 'hora',
- 'subject' => 'assumpte',
- 'message' => 'missatge',
+ 'city' => 'ciutat',
+ 'country' => 'país',
+ 'address' => 'adreça',
+ 'phone' => 'telèfon',
+ 'mobile' => 'mòbil',
+ 'age' => 'edat',
+ 'sex' => 'sexe',
+ 'gender' => 'gènere',
+ 'year' => 'any',
+ 'month' => 'mes',
+ 'day' => 'dia',
+ 'hour' => 'hora',
+ 'minute' => 'minut',
+ 'second' => 'segon',
+ 'title' => 'títol',
+ 'body' => 'contingut',
+ 'description' => 'descripció',
+ 'excerpt' => 'extracte',
+ 'date' => 'data',
+ 'time' => 'hora',
+ 'subject' => 'assumpte',
+ 'message' => 'missatge',
],
];
diff --git a/lang/cs/articles.php b/lang/cs/articles.php
index 3b2d49188..d94c4866d 100644
--- a/lang/cs/articles.php
+++ b/lang/cs/articles.php
@@ -12,8 +12,8 @@
*/
return [
- 'articles' => 'Články',
+ 'articles' => 'Články',
'meta-articles' => 'Články a zprávy o trackeru a komunitě',
- 'published-at' => 'Publikováno dne',
- 'read-more' => 'Přečtěte si více',
+ 'published-at' => 'Publikováno dne',
+ 'read-more' => 'Přečtěte si více',
];
diff --git a/lang/cs/auth.php b/lang/cs/auth.php
index ebd17b9fb..dec4d8821 100644
--- a/lang/cs/auth.php
+++ b/lang/cs/auth.php
@@ -17,91 +17,91 @@ return [
| Default Authentication Language Lines
|--------------------------------------------------------------------------
*/
- 'activation-error' => 'Jste zabanován, neplatný link nebo máte účet již ověřen!',
- 'activation-success' => 'Účet byl aktivován! Nyní se můžete přihlásit!',
- 'add-image' => 'Přidejte jiný link obrázku',
- 'add-profile' => 'Přidejte jiný link profilu',
- 'allow-invite-appl' => 'Registrace jsou uzavřeny! Musíte být pozván k registraci! Registrace aplikací je otevřena. Nyní budete přesměrování na aplikační stránku!',
- 'allow-invite' => 'Registrace jsou uzavřeny! Musíte být pozván k registraci! Nyní budete přesměrování na přihlašovací stránku!',
- 'are-you' => 'Jste:',
- 'application' => 'Aplikace',
- 'appl-closed' => 'Aplikace jsou uzavřeny',
- 'appl-intro' => 'je uzavřená komunita. Musíte mít pozvánku k registraci. Pokud jste pozvánku neobdrželi, můžete vyplnit následující žádost o členství.',
- 'appl-reason' => 'How Did You Hear About ":sitename" And Why Do You Want In? ',
- 'application-submitted' => 'Vaše žádost byla přijata. Brzy vás budeme emailem kontaktovat!',
- 'banned' => 'Váš účet je zabanován!',
- 'check-later' => 'Zkontrolujte pozfději!',
- 'delete-image' => 'Smazat poslední link obrázku',
- 'delete-profile' => 'Smazat poslední link profilu',
- 'email' => 'E-mail',
- 'failed' => 'Zadané udaje se neshodují s žádným účtem v systému.',
- 'invalid-key' => 'Pozvánka je neplatná nebo vypršela platnost!',
- 'login' => 'Login',
- 'login-now-on' => 'Login now on',
- 'logout' => 'Logout',
- 'lost-password' => 'Zapomněl jste heslo?',
- 'lost-username' => 'Zapomněl jste nickname?',
- 'need-invite' => 'Registrace jsou zakázané, musíte byt pozván k získání přístupu!',
- 'newbie' => 'Nováček ve hře',
- 'not-a-member' => 'Ještě nejsi člen? Registrace netrvá déle než 30s.',
- 'not-activated' => 'Váš účet není stále aktivován. Prosím zkontrolujte si e-mail a aktivuje si účet pomocí aktivačniho linku. Pokud vám e-mail s aktivačním kódem nepřišel, klikni prosím na "Zapomněl jsem heslo" a řiďte se pokyny.',
- 'password' => 'Heslo',
- 'proof-image' => 'Proof Image URL',
- 'proof-image-title' => 'Links to profile screenshots',
- 'proof-profile' => 'Profile Link URL',
- 'proof-profile-title' => 'Links to your profiles',
- 'proof-min' => '(Minimum 2, Recommended 3)',
- 'recover-my-password' => 'Obnovit mé heslo',
- 'register-thanks' => 'Děkujeme za registraci! Prosím zkontrolujte svůj email kvůli aktivačnímu emailu',
- 'remember-me' => 'Zapamatovat',
- 'require-rules' => 'Please Read And Accept Our Rules By Scrolling To Bottom Of Page.',
- 'signup' => 'Registrovat',
- 'throttle' => 'Příliš mnoho pokusů. Prosim opakujte za :seconds vteřin.',
- 'unlock' => 'Odemknout',
- 'user-icon' => 'User Icon',
- 'username' => 'Username',
- 'veteran' => 'Experienced With Private Trackers',
- 'welcome' => 'Vítej zpět!',
- 'welcome-restore' => 'Welcome Back! Your Account Is No Longer Disabled!',
+ 'activation-error' => 'Jste zabanován, neplatný link nebo máte účet již ověřen!',
+ 'activation-success' => 'Účet byl aktivován! Nyní se můžete přihlásit!',
+ 'add-image' => 'Přidejte jiný link obrázku',
+ 'add-profile' => 'Přidejte jiný link profilu',
+ 'allow-invite-appl' => 'Registrace jsou uzavřeny! Musíte být pozván k registraci! Registrace aplikací je otevřena. Nyní budete přesměrování na aplikační stránku!',
+ 'allow-invite' => 'Registrace jsou uzavřeny! Musíte být pozván k registraci! Nyní budete přesměrování na přihlašovací stránku!',
+ 'are-you' => 'Jste:',
+ 'application' => 'Aplikace',
+ 'appl-closed' => 'Aplikace jsou uzavřeny',
+ 'appl-intro' => 'je uzavřená komunita. Musíte mít pozvánku k registraci. Pokud jste pozvánku neobdrželi, můžete vyplnit následující žádost o členství.',
+ 'appl-reason' => 'How Did You Hear About ":sitename" And Why Do You Want In? ',
+ 'application-submitted' => 'Vaše žádost byla přijata. Brzy vás budeme emailem kontaktovat!',
+ 'banned' => 'Váš účet je zabanován!',
+ 'check-later' => 'Zkontrolujte pozfději!',
+ 'delete-image' => 'Smazat poslední link obrázku',
+ 'delete-profile' => 'Smazat poslední link profilu',
+ 'email' => 'E-mail',
+ 'failed' => 'Zadané udaje se neshodují s žádným účtem v systému.',
+ 'invalid-key' => 'Pozvánka je neplatná nebo vypršela platnost!',
+ 'login' => 'Login',
+ 'login-now-on' => 'Login now on',
+ 'logout' => 'Logout',
+ 'lost-password' => 'Zapomněl jste heslo?',
+ 'lost-username' => 'Zapomněl jste nickname?',
+ 'need-invite' => 'Registrace jsou zakázané, musíte byt pozván k získání přístupu!',
+ 'newbie' => 'Nováček ve hře',
+ 'not-a-member' => 'Ještě nejsi člen? Registrace netrvá déle než 30s.',
+ 'not-activated' => 'Váš účet není stále aktivován. Prosím zkontrolujte si e-mail a aktivuje si účet pomocí aktivačniho linku. Pokud vám e-mail s aktivačním kódem nepřišel, klikni prosím na "Zapomněl jsem heslo" a řiďte se pokyny.',
+ 'password' => 'Heslo',
+ 'proof-image' => 'Proof Image URL',
+ 'proof-image-title' => 'Links to profile screenshots',
+ 'proof-profile' => 'Profile Link URL',
+ 'proof-profile-title' => 'Links to your profiles',
+ 'proof-min' => '(Minimum 2, Recommended 3)',
+ 'recover-my-password' => 'Obnovit mé heslo',
+ 'register-thanks' => 'Děkujeme za registraci! Prosím zkontrolujte svůj email kvůli aktivačnímu emailu',
+ 'remember-me' => 'Zapamatovat',
+ 'require-rules' => 'Please Read And Accept Our Rules By Scrolling To Bottom Of Page.',
+ 'signup' => 'Registrovat',
+ 'throttle' => 'Příliš mnoho pokusů. Prosim opakujte za :seconds vteřin.',
+ 'unlock' => 'Odemknout',
+ 'user-icon' => 'User Icon',
+ 'username' => 'Username',
+ 'veteran' => 'Experienced With Private Trackers',
+ 'welcome' => 'Vítej zpět!',
+ 'welcome-restore' => 'Welcome Back! Your Account Is No Longer Disabled!',
/*
|--------------------------------------------------------------------------
| Two Step Authentication Language Lines
|--------------------------------------------------------------------------
*/
- 'subtitle' => 'Verification Required',
- 'title' => '2-Step Verification',
- 'titleFailed' => 'Verification Failed',
- 'titlePassed' => 'Good News Everyone!',
+ 'subtitle' => 'Verification Required',
+ 'title' => '2-Step Verification',
+ 'titleFailed' => 'Verification Failed',
+ 'titlePassed' => 'Good News Everyone!',
- 'inputAlt1' => 'Code Input 1',
- 'inputAlt2' => 'Code Input 2',
- 'inputAlt3' => 'Code Input 3',
- 'inputAlt4' => 'Code Input 4',
+ 'inputAlt1' => 'Code Input 1',
+ 'inputAlt2' => 'Code Input 2',
+ 'inputAlt3' => 'Code Input 3',
+ 'inputAlt4' => 'Code Input 4',
- 'attemptsRemaining' => 'Attempt Remaining|Attempts Remaining',
- 'missingCode' => 'Didn\'t receive verification code?',
- 'verifyButton' => 'Ověřit',
+ 'attemptsRemaining' => 'Attempt Remaining|Attempts Remaining',
+ 'missingCode' => 'Didn\'t receive verification code?',
+ 'verifyButton' => 'Ověřit',
- 'exceededTitle' => 'Verification Attempts Exceeded',
- 'lockedUntil' => 'Účet uzamčen na:',
- 'returnButton' => 'Zpět domů',
- 'tryAgainIn' => 'Try again in',
+ 'exceededTitle' => 'Verification Attempts Exceeded',
+ 'lockedUntil' => 'Účet uzamčen na:',
+ 'returnButton' => 'Zpět domů',
+ 'tryAgainIn' => 'Try again in',
- 'verificationEmailButton' => 'Ověřit nyní',
- 'verificationEmailGreeting' => 'Ahoj :username',
- 'verificationEmailMessage' => 'Your account 2-step verification code is:',
- 'verificationEmailSubject' => 'Verification Required',
+ 'verificationEmailButton' => 'Ověřit nyní',
+ 'verificationEmailGreeting' => 'Ahoj :username',
+ 'verificationEmailMessage' => 'Your account 2-step verification code is:',
+ 'verificationEmailSubject' => 'Verification Required',
- 'verificationEmailSentMsg' => 'Ověřovací e-mail odeslán!',
- 'verificationEmailSuccess' => 'Úspěch!',
+ 'verificationEmailSentMsg' => 'Ověřovací e-mail odeslán!',
+ 'verificationEmailSuccess' => 'Úspěch!',
- 'verificationWarningMessage' => 'This is your last attempt before your account locks for :hours hours.',
- 'verificationWarningTitle' => 'Pozor!',
+ 'verificationWarningMessage' => 'This is your last attempt before your account locks for :hours hours.',
+ 'verificationWarningTitle' => 'Pozor!',
- 'verificationLockedMessage' => 'Účet uzamčen!',
- 'verificationLockedTitle' => 'Doh!',
+ 'verificationLockedMessage' => 'Účet uzamčen!',
+ 'verificationLockedTitle' => 'Doh!',
- 'verificationModalConfBtn' => 'Ok',
+ 'verificationModalConfBtn' => 'Ok',
];
diff --git a/lang/cs/backup.php b/lang/cs/backup.php
index 7fd6c8a4f..bfdb187d9 100644
--- a/lang/cs/backup.php
+++ b/lang/cs/backup.php
@@ -12,32 +12,32 @@
*/
return [
- 'actions' => 'Akce',
- 'backup' => 'Zálohování',
- 'backup_doesnt_exist' => 'Záložní soubor neexistuje.',
- 'create_a_new_backup' => 'Vytvořit plnou zálohu',
- 'create_a_new_files_backup' => 'Vytvoření záloh souborů',
- 'create_a_new_db_backup' => 'Vytvořit zálohu databáze',
- 'create_confirmation_message' => 'Obnovení stránky za 3 sekundy.',
- 'create_confirmation_title' => 'Zálohování dokončeno',
- 'create_error_message' => 'Záložní soubor nemohl být vytvořen.',
- 'create_error_title' => 'Chyba zálohování',
- 'create_warning_message' => 'Vaše záloha nemusí být vytvořena. Podrobnosti naleznete v souborech protokolu.',
- 'create_warning_title' => 'Neznámá chyba',
- 'date' => 'datum',
- 'delete' => 'Smazat',
- 'delete_cancel_message' => 'Záložní soubor nebyl odstraněn.',
- 'delete_cancel_title' => 'To je v pořádku',
- 'delete_confirm' => 'Opravdu chcete tento záložní soubor odstranit?',
- 'delete_confirmation_message' => 'Záložní soubor byl vymazán.',
- 'delete_confirmation_title' => 'Hotovo',
- 'delete_error_message' => 'Záložní soubor nebyl odstraněn.',
- 'delete_error_title' => 'Chyba',
- 'download' => 'Stažení',
- 'existing_backups' => 'Stávající zálohy',
- 'file_size' => 'Velikost souboru',
- 'location' => 'Umístění',
- 'manager' => 'Manažer',
- 'no_disks_configured' => 'V souboru config / backup.php nejsou nakonfigurovány žádné záložní disky',
+ 'actions' => 'Akce',
+ 'backup' => 'Zálohování',
+ 'backup_doesnt_exist' => 'Záložní soubor neexistuje.',
+ 'create_a_new_backup' => 'Vytvořit plnou zálohu',
+ 'create_a_new_files_backup' => 'Vytvoření záloh souborů',
+ 'create_a_new_db_backup' => 'Vytvořit zálohu databáze',
+ 'create_confirmation_message' => 'Obnovení stránky za 3 sekundy.',
+ 'create_confirmation_title' => 'Zálohování dokončeno',
+ 'create_error_message' => 'Záložní soubor nemohl být vytvořen.',
+ 'create_error_title' => 'Chyba zálohování',
+ 'create_warning_message' => 'Vaše záloha nemusí být vytvořena. Podrobnosti naleznete v souborech protokolu.',
+ 'create_warning_title' => 'Neznámá chyba',
+ 'date' => 'datum',
+ 'delete' => 'Smazat',
+ 'delete_cancel_message' => 'Záložní soubor nebyl odstraněn.',
+ 'delete_cancel_title' => 'To je v pořádku',
+ 'delete_confirm' => 'Opravdu chcete tento záložní soubor odstranit?',
+ 'delete_confirmation_message' => 'Záložní soubor byl vymazán.',
+ 'delete_confirmation_title' => 'Hotovo',
+ 'delete_error_message' => 'Záložní soubor nebyl odstraněn.',
+ 'delete_error_title' => 'Chyba',
+ 'download' => 'Stažení',
+ 'existing_backups' => 'Stávající zálohy',
+ 'file_size' => 'Velikost souboru',
+ 'location' => 'Umístění',
+ 'manager' => 'Manažer',
+ 'no_disks_configured' => 'V souboru config / backup.php nejsou nakonfigurovány žádné záložní disky',
'only_local_downloads_supported' => 'Podporovány jsou pouze stahování z lokálního souborového systému.',
];
diff --git a/lang/cs/blocks.php b/lang/cs/blocks.php
index d5caa76d6..d98b6529b 100644
--- a/lang/cs/blocks.php
+++ b/lang/cs/blocks.php
@@ -12,19 +12,19 @@
*/
return [
- 'chatbox' => 'Chat Box',
- 'click' => 'Klikněte na',
- 'to-enable-editor' => 'pro povolení editoru',
- 'featured-by' => 'Doporučil',
- 'featured-torrents' => 'Doporučené torrenty',
+ 'chatbox' => 'Chat Box',
+ 'click' => 'Klikněte na',
+ 'to-enable-editor' => 'pro povolení editoru',
+ 'featured-by' => 'Doporučil',
+ 'featured-torrents' => 'Doporučené torrenty',
'featured-torrents-intro' => 'Získejte je, zatímco vy můžete!',
- 'featured-until' => 'To je uváděn torrent až do',
- 'top-torrents' => 'Top Torrenty',
- 'latest-posts' => 'Nejnovější příspěvky',
- 'latest-topics' => 'Poslední témata',
- 'active-in-last' => 'Aktivní naposledy',
- 'users-online' => 'Uživatelé online',
- 'check-news' => 'Novinky (denně kontrolujte)',
- 'new-news' => 'Nové zprávy',
- 'new-torrents' => 'Nové torrenty',
+ 'featured-until' => 'To je uváděn torrent až do',
+ 'top-torrents' => 'Top Torrenty',
+ 'latest-posts' => 'Nejnovější příspěvky',
+ 'latest-topics' => 'Poslední témata',
+ 'active-in-last' => 'Aktivní naposledy',
+ 'users-online' => 'Uživatelé online',
+ 'check-news' => 'Novinky (denně kontrolujte)',
+ 'new-news' => 'Nové zprávy',
+ 'new-torrents' => 'Nové torrenty',
];
diff --git a/lang/cs/bon.php b/lang/cs/bon.php
index 431a8d075..0792041cd 100644
--- a/lang/cs/bon.php
+++ b/lang/cs/bon.php
@@ -12,44 +12,44 @@
*/
return [
- 'activated' => 'Aktivováno',
- 'active' => 'Aktivní!',
- 'amount' => 'Množství',
- 'bon' => 'BON',
- 'bonus' => 'Bonus',
- 'date' => 'datum',
- 'earning' => 'Vydělávat',
- 'earning-rate' => 'Při této míře výdělku získáte za časový rámec následující:',
- 'earnings' => 'Zisk',
- 'exchange' => 'Výměna',
- 'exchange-warning' => 'Výměna je konečná, před výměnou prosím zkontrolujte své volby.',
- 'extended-stats' => 'Rozšířené statistiky',
- 'gift' => 'Dar',
- 'gift-bonus' => 'Dárkové bonusové body',
- 'gift-to' => 'Dárkové bonusové body pro',
- 'gifts' => 'Dárkové předměty',
- 'item' => 'Položka',
- 'no-refund' => 'ŽÁDNÉ NÁHRADY!',
- 'per-day' => 'Body za den',
- 'per-hour' => 'Body za hodinu',
- 'per-minute' => 'Body za minutu',
- 'per-month' => 'Body za měsíc',
- 'per-second' => 'Body za sekundu',
- 'per-week' => 'Body za týden',
- 'per-year' => 'Body za rok',
- 'points' => 'Body',
- 'receiver' => 'Příjemce',
- 'review-seeds' => 'Zkontrolujte všechny nasazené torrenty',
- 'send-gift' => 'Poslat dárek',
- 'sender' => 'Odesílatel',
- 'store' => 'Obchod',
- 'tips' => 'Tipy',
- 'total' => 'Celkové příjmy',
- 'total-gifts' => 'Celkem Dárků',
- 'total-tips' => 'V tipech Total BON',
+ 'activated' => 'Aktivováno',
+ 'active' => 'Aktivní!',
+ 'amount' => 'Množství',
+ 'bon' => 'BON',
+ 'bonus' => 'Bonus',
+ 'date' => 'datum',
+ 'earning' => 'Vydělávat',
+ 'earning-rate' => 'Při této míře výdělku získáte za časový rámec následující:',
+ 'earnings' => 'Zisk',
+ 'exchange' => 'Výměna',
+ 'exchange-warning' => 'Výměna je konečná, před výměnou prosím zkontrolujte své volby.',
+ 'extended-stats' => 'Rozšířené statistiky',
+ 'gift' => 'Dar',
+ 'gift-bonus' => 'Dárkové bonusové body',
+ 'gift-to' => 'Dárkové bonusové body pro',
+ 'gifts' => 'Dárkové předměty',
+ 'item' => 'Položka',
+ 'no-refund' => 'ŽÁDNÉ NÁHRADY!',
+ 'per-day' => 'Body za den',
+ 'per-hour' => 'Body za hodinu',
+ 'per-minute' => 'Body za minutu',
+ 'per-month' => 'Body za měsíc',
+ 'per-second' => 'Body za sekundu',
+ 'per-week' => 'Body za týden',
+ 'per-year' => 'Body za rok',
+ 'points' => 'Body',
+ 'receiver' => 'Příjemce',
+ 'review-seeds' => 'Zkontrolujte všechny nasazené torrenty',
+ 'send-gift' => 'Poslat dárek',
+ 'sender' => 'Odesílatel',
+ 'store' => 'Obchod',
+ 'tips' => 'Tipy',
+ 'total' => 'Celkové příjmy',
+ 'total-gifts' => 'Celkem Dárků',
+ 'total-tips' => 'V tipech Total BON',
'you-have-received-gifts' => 'Obdržel jste',
- 'you-have-sent-gifts' => 'Poslali jste',
- 'you-have-received-tips' => 'Obdržel jste',
- 'you-have-sent-tips' => 'Poslali jste',
- 'your-points' => 'Vaše body',
+ 'you-have-sent-gifts' => 'Poslali jste',
+ 'you-have-received-tips' => 'Obdržel jste',
+ 'you-have-sent-tips' => 'Poslali jste',
+ 'your-points' => 'Vaše body',
];
diff --git a/lang/cs/bot.php b/lang/cs/bot.php
index e699c5a5b..25db1100c 100644
--- a/lang/cs/bot.php
+++ b/lang/cs/bot.php
@@ -12,15 +12,15 @@
*/
return [
- 'about' => 'O',
- 'bot' => 'Bot',
- 'bots' => 'Bots',
- 'color' => 'Barva',
- 'command' => 'Příkaz',
- 'edit-bot' => 'Upravit Bot',
+ 'about' => 'O',
+ 'bot' => 'Bot',
+ 'bots' => 'Bots',
+ 'color' => 'Barva',
+ 'command' => 'Příkaz',
+ 'edit-bot' => 'Upravit Bot',
'emoji-code' => 'Kód Emoji',
- 'help' => 'Pomoc',
- 'icon' => 'Ikona',
- 'info' => 'Informace',
- 'name' => 'název',
+ 'help' => 'Pomoc',
+ 'icon' => 'Ikona',
+ 'info' => 'Informace',
+ 'name' => 'název',
];
diff --git a/lang/cs/bug.php b/lang/cs/bug.php
index a3b3afaef..60bb28661 100644
--- a/lang/cs/bug.php
+++ b/lang/cs/bug.php
@@ -12,15 +12,15 @@
*/
return [
- 'bug-report' => 'Zpráva o chybě',
+ 'bug-report' => 'Zpráva o chybě',
'bug-report-description' => 'Nahlásit chybu webu',
- 'enter-description' => 'Popište problém co nejlépe',
- 'enter-email' => 'Zadejte prosím svůj e-mail',
- 'enter-title' => 'Zvolte prosím správný název',
- 'enter-username' => 'Zadejte své uživatelské jméno',
- 'high' => 'Vysoký',
- 'low' => 'Nízký',
- 'priority' => 'Přednost',
- 'priority-description' => 'Zvolte jen velmi vysokou hodnotu, pokud je chyba opravdu problémem pro používání webu.',
- 'very-high' => 'Velmi vysoko',
+ 'enter-description' => 'Popište problém co nejlépe',
+ 'enter-email' => 'Zadejte prosím svůj e-mail',
+ 'enter-title' => 'Zvolte prosím správný název',
+ 'enter-username' => 'Zadejte své uživatelské jméno',
+ 'high' => 'Vysoký',
+ 'low' => 'Nízký',
+ 'priority' => 'Přednost',
+ 'priority-description' => 'Zvolte jen velmi vysokou hodnotu, pokud je chyba opravdu problémem pro používání webu.',
+ 'very-high' => 'Velmi vysoko',
];
diff --git a/lang/cs/common.php b/lang/cs/common.php
index cb7101976..1557d3716 100644
--- a/lang/cs/common.php
+++ b/lang/cs/common.php
@@ -12,179 +12,179 @@
*/
return [
- 'a-an-art' => '',
- 'about' => 'O nás',
- 'account' => 'Účet',
- 'achievement-title' => 'Úžasné',
+ 'a-an-art' => '',
+ 'about' => 'O nás',
+ 'account' => 'Účet',
+ 'achievement-title' => 'Úžasné',
'achievement-unlocked' => 'Odemkli jste úspěch ": name"',
- 'active' => 'Aktivní',
- 'active-warning' => 'Aktivní varování',
- 'add' => 'Přidat',
- 'added' => 'Přidán',
- 'amount' => 'Množství',
- 'anonymous' => 'Anonymní',
- 'author' => 'Autor',
- 'balance' => 'Zůstatek',
- 'blacklist' => 'Seznam zakázaných klientů',
- 'buffer' => 'Buffer',
- 'bug' => 'Nahlásit chybu',
- 'but' => 'Ale',
- 'cancel' => 'zrušit',
- 'category' => 'Kategorie',
- 'categories' => 'Kategorie',
- 'close' => 'Zavřít',
- 'comment' => 'Komentář',
- 'comments' => 'Komentáře',
- 'community' => 'Komunita',
- 'contact' => 'Kontakt',
- 'contact-desc' => 'Tato žádost o kontakt bude zaslána majiteli a co nejdříve se k vám ozve',
- 'contact-header' => 'Ahoj',
- 'create' => 'Vytvořit',
- 'created_at' => 'Vytvořeno na',
- 'day' => 'Dnů',
- 'delete' => 'Smazat',
- 'delete-your-comment' => 'Smažte svůj komentář',
- 'description' => 'Popis',
- 'direction' => 'Směr',
- 'disable' => 'Zakázat',
- 'doubleup_activated' => 'Aktivován režim Global Double upload',
- 'download' => 'Staženo',
- 'edit' => 'Upravit',
- 'edit-your-comment' => 'Upravte svůj komentář',
- 'email' => 'E-mail',
- 'email-blacklist' => 'Email Blacklist',
- 'email-whitelist' => 'Email Whitelist',
+ 'active' => 'Aktivní',
+ 'active-warning' => 'Aktivní varování',
+ 'add' => 'Přidat',
+ 'added' => 'Přidán',
+ 'amount' => 'Množství',
+ 'anonymous' => 'Anonymní',
+ 'author' => 'Autor',
+ 'balance' => 'Zůstatek',
+ 'blacklist' => 'Seznam zakázaných klientů',
+ 'buffer' => 'Buffer',
+ 'bug' => 'Nahlásit chybu',
+ 'but' => 'Ale',
+ 'cancel' => 'zrušit',
+ 'category' => 'Kategorie',
+ 'categories' => 'Kategorie',
+ 'close' => 'Zavřít',
+ 'comment' => 'Komentář',
+ 'comments' => 'Komentáře',
+ 'community' => 'Komunita',
+ 'contact' => 'Kontakt',
+ 'contact-desc' => 'Tato žádost o kontakt bude zaslána majiteli a co nejdříve se k vám ozve',
+ 'contact-header' => 'Ahoj',
+ 'create' => 'Vytvořit',
+ 'created_at' => 'Vytvořeno na',
+ 'day' => 'Dnů',
+ 'delete' => 'Smazat',
+ 'delete-your-comment' => 'Smažte svůj komentář',
+ 'description' => 'Popis',
+ 'direction' => 'Směr',
+ 'disable' => 'Zakázat',
+ 'doubleup_activated' => 'Aktivován režim Global Double upload',
+ 'download' => 'Staženo',
+ 'edit' => 'Upravit',
+ 'edit-your-comment' => 'Upravte svůj komentář',
+ 'email' => 'E-mail',
+ 'email-blacklist' => 'Email Blacklist',
+ 'email-whitelist' => 'Email Whitelist',
'email-list-notactive' => 'Email Whitelist / Blacklist System není aktivován',
- 'enable' => 'Povolit',
- 'enter' => 'Zadejte',
- 'error' => 'Chyba',
- 'everyday' => 'Každý den',
- 'expired' => 'Platnost vypršela',
- 'extra' => 'Další',
- 'extra-stats' => 'Extra-statistiky',
- 'faq' => 'FAQ',
- 'files' => 'Soubory',
- 'fl_token' => 'Freeleech Token',
- 'fl_tokens' => 'Žetony Freeleech',
- 'for' => 'pro',
- 'forum' => 'Forum',
- 'free' => 'Volný',
- 'freeleech_activated' => 'Aktivován globální režim Freeleech',
- 'global' => 'Globální',
- 'group' => 'Skupina',
- 'groups' => 'Skupiny',
- 'hidden' => 'Skrytý',
- 'high-speeds' => 'Vysoká rychlost',
- 'home' => 'Domů',
- 'hot' => 'Horký!',
- 'hour' => 'Hodin',
- 'huge' => 'Obrovský',
- 'info' => 'Informace',
- 'internal' => 'Vnitřní',
- 'ip' => 'IP',
- 'is-allowed' => 'je povoleno',
- 'large' => 'Velký',
- 'latest' => 'Nejnovější',
- 'latest-posts' => 'Nejnovější příspěvky',
- 'latest-topics' => 'Poslední témata',
- 'legal' => 'Právní',
- 'legend' => 'Legenda',
- 'lists' => 'Seznamy',
- 'lock-account' => 'Uzamknout účet',
- 'logout' => 'Odhlásit se',
- 'members' => 'Členové',
- 'message' => 'Zpráva',
- 'minute' => 'Minut',
- 'moderated-by' => 'Moderuje',
- 'moderation' => 'Moderování',
- 'moderation-approve' => 'Schválit',
- 'moderation-postpone' => 'Odložit',
- 'moderation-reject' => 'Odmítnout',
- 'month' => 'Měsíc',
- 'months' => 'Měsíce',
- 'my' => 'Můj',
- 'name' => 'název',
- 'navigation' => 'Navigace',
- 'new' => 'Nový!',
- 'new-adj' => 'Nový',
- 'news' => 'Zprávy',
- 'next' => 'další',
- 'no' => 'Ne',
- 'no-comments' => 'Zatím žádné komentáře',
- 'no-result' => 'V databázi pro dotaz neexistuje žádný výsledek',
- 'notifications' => 'Oznámení',
- 'older-than' => 'Starší',
- 'oldest' => 'Nejstarší',
- 'openreg_activated' => 'Aktivována registrace',
- 'order-by' => 'Seřadit podle',
- 'other' => 'jiný',
- 'pages' => 'Stránky',
- 'password' => 'Heslo',
- 'patron' => 'Staňte se patronem',
- 'pending-torrents' => 'Čekající torrenty',
- 'personal' => 'Osobní',
- 'plural-suffix' => '',
- 'port' => 'port',
- 'position' => 'Pozice',
- 'posts' => 'Příspěvky',
- 'powered-by' => 'Powered by Herman',
- 'preview' => 'Náhled',
- 'previous' => 'Předchozí',
- 'progress' => 'Pokrok',
- 'publish' => 'Publikovat',
- 'quantity' => 'Množství',
- 'quick-search' => 'Rychlé hledání',
- 'ratio' => 'Ratio',
- 'reason' => 'Důvod',
- 'remove' => 'Odstranit',
- 'report' => 'Zpráva',
- 'resend' => 'Přeposlat',
- 'reporter' => 'Zpravodaj',
- 'required' => 'Povinný',
- 'results' => 'Výsledek',
- 'rss-system' => 'Systém RSS',
- 'rules' => 'Pravidla',
- 'save' => 'Uložit',
- 'search' => 'Vyhledávání',
- 'search-results' => 'Výsledky vyhledávání',
- 'search-results-desc' => 'Viz níže uvedené výsledky',
- 'second' => 'vteřin',
- 'select' => 'Vybrat',
- 'sort' => 'Třídit',
- 'special' => 'Speciální',
- 'staff' => 'Admin',
- 'staff-tools' => 'Admin panel',
- 'stats' => 'Statistiky',
- 'status' => 'Status',
- 'sticked' => 'Připnuté',
- 'submit' => 'Potvrdit',
- 'subscriptions' => 'Předplatné',
- 'teams' => 'Týmy',
- 'terms' => 'Podmínky použití',
- 'times' => 'Délka',
- 'title' => 'Titul',
- 'top-bountied' => 'Nejvíce hodnocené',
- 'topics' => 'Témata',
- 'tracker-codes' => 'Kódy',
- 'type' => 'Typ',
- 'type-verb' => 'Typ',
- 'types' => 'Typy',
- 'genre' => 'Žánr',
- 'genres' => 'Žánry',
- 'action' => 'Akční',
- 'actions' => 'Akce',
- 'unknown' => 'Neznámý',
+ 'enable' => 'Povolit',
+ 'enter' => 'Zadejte',
+ 'error' => 'Chyba',
+ 'everyday' => 'Každý den',
+ 'expired' => 'Platnost vypršela',
+ 'extra' => 'Další',
+ 'extra-stats' => 'Extra-statistiky',
+ 'faq' => 'FAQ',
+ 'files' => 'Soubory',
+ 'fl_token' => 'Freeleech Token',
+ 'fl_tokens' => 'Žetony Freeleech',
+ 'for' => 'pro',
+ 'forum' => 'Forum',
+ 'free' => 'Volný',
+ 'freeleech_activated' => 'Aktivován globální režim Freeleech',
+ 'global' => 'Globální',
+ 'group' => 'Skupina',
+ 'groups' => 'Skupiny',
+ 'hidden' => 'Skrytý',
+ 'high-speeds' => 'Vysoká rychlost',
+ 'home' => 'Domů',
+ 'hot' => 'Horký!',
+ 'hour' => 'Hodin',
+ 'huge' => 'Obrovský',
+ 'info' => 'Informace',
+ 'internal' => 'Vnitřní',
+ 'ip' => 'IP',
+ 'is-allowed' => 'je povoleno',
+ 'large' => 'Velký',
+ 'latest' => 'Nejnovější',
+ 'latest-posts' => 'Nejnovější příspěvky',
+ 'latest-topics' => 'Poslední témata',
+ 'legal' => 'Právní',
+ 'legend' => 'Legenda',
+ 'lists' => 'Seznamy',
+ 'lock-account' => 'Uzamknout účet',
+ 'logout' => 'Odhlásit se',
+ 'members' => 'Členové',
+ 'message' => 'Zpráva',
+ 'minute' => 'Minut',
+ 'moderated-by' => 'Moderuje',
+ 'moderation' => 'Moderování',
+ 'moderation-approve' => 'Schválit',
+ 'moderation-postpone' => 'Odložit',
+ 'moderation-reject' => 'Odmítnout',
+ 'month' => 'Měsíc',
+ 'months' => 'Měsíce',
+ 'my' => 'Můj',
+ 'name' => 'název',
+ 'navigation' => 'Navigace',
+ 'new' => 'Nový!',
+ 'new-adj' => 'Nový',
+ 'news' => 'Zprávy',
+ 'next' => 'další',
+ 'no' => 'Ne',
+ 'no-comments' => 'Zatím žádné komentáře',
+ 'no-result' => 'V databázi pro dotaz neexistuje žádný výsledek',
+ 'notifications' => 'Oznámení',
+ 'older-than' => 'Starší',
+ 'oldest' => 'Nejstarší',
+ 'openreg_activated' => 'Aktivována registrace',
+ 'order-by' => 'Seřadit podle',
+ 'other' => 'jiný',
+ 'pages' => 'Stránky',
+ 'password' => 'Heslo',
+ 'patron' => 'Staňte se patronem',
+ 'pending-torrents' => 'Čekající torrenty',
+ 'personal' => 'Osobní',
+ 'plural-suffix' => '',
+ 'port' => 'port',
+ 'position' => 'Pozice',
+ 'posts' => 'Příspěvky',
+ 'powered-by' => 'Powered by Herman',
+ 'preview' => 'Náhled',
+ 'previous' => 'Předchozí',
+ 'progress' => 'Pokrok',
+ 'publish' => 'Publikovat',
+ 'quantity' => 'Množství',
+ 'quick-search' => 'Rychlé hledání',
+ 'ratio' => 'Ratio',
+ 'reason' => 'Důvod',
+ 'remove' => 'Odstranit',
+ 'report' => 'Zpráva',
+ 'resend' => 'Přeposlat',
+ 'reporter' => 'Zpravodaj',
+ 'required' => 'Povinný',
+ 'results' => 'Výsledek',
+ 'rss-system' => 'Systém RSS',
+ 'rules' => 'Pravidla',
+ 'save' => 'Uložit',
+ 'search' => 'Vyhledávání',
+ 'search-results' => 'Výsledky vyhledávání',
+ 'search-results-desc' => 'Viz níže uvedené výsledky',
+ 'second' => 'vteřin',
+ 'select' => 'Vybrat',
+ 'sort' => 'Třídit',
+ 'special' => 'Speciální',
+ 'staff' => 'Admin',
+ 'staff-tools' => 'Admin panel',
+ 'stats' => 'Statistiky',
+ 'status' => 'Status',
+ 'sticked' => 'Připnuté',
+ 'submit' => 'Potvrdit',
+ 'subscriptions' => 'Předplatné',
+ 'teams' => 'Týmy',
+ 'terms' => 'Podmínky použití',
+ 'times' => 'Délka',
+ 'title' => 'Titul',
+ 'top-bountied' => 'Nejvíce hodnocené',
+ 'topics' => 'Témata',
+ 'tracker-codes' => 'Kódy',
+ 'type' => 'Typ',
+ 'type-verb' => 'Typ',
+ 'types' => 'Typy',
+ 'genre' => 'Žánr',
+ 'genres' => 'Žánry',
+ 'action' => 'Akční',
+ 'actions' => 'Akce',
+ 'unknown' => 'Neznámý',
'unlocked-achievement' => 'Odemkli jste si úspěch',
- 'upload' => 'Nahráno',
- 'upload-guide' => 'Průvodce nahráváním',
- 'user' => 'Uživatel',
- 'username' => 'Uživatelské jméno',
- 'users' => 'Uživatelé',
- 'view' => 'Náhled',
- 'view-all' => 'Zobrazit vše',
- 'warnings' => 'Varování',
- 'year' => 'Rok',
- 'yes' => 'Ano',
- 'your' => 'Tvůj',
- 'your-comment' => 'Tvůj komentář',
+ 'upload' => 'Nahráno',
+ 'upload-guide' => 'Průvodce nahráváním',
+ 'user' => 'Uživatel',
+ 'username' => 'Uživatelské jméno',
+ 'users' => 'Uživatelé',
+ 'view' => 'Náhled',
+ 'view-all' => 'Zobrazit vše',
+ 'warnings' => 'Varování',
+ 'year' => 'Rok',
+ 'yes' => 'Ano',
+ 'your' => 'Tvůj',
+ 'your-comment' => 'Tvůj komentář',
];
diff --git a/lang/cs/email.php b/lang/cs/email.php
index af56a5bf4..51bd4b53a 100644
--- a/lang/cs/email.php
+++ b/lang/cs/email.php
@@ -12,46 +12,46 @@
*/
return [
- 'activate-account' => 'Aktivovat účet',
- 'ban-reason' => 'Důvod',
- 'banned-footer' => 'To je to, co dostanete za nedodržování pravidel',
- 'banned-header' => 'Byl jste vykázán',
- 'bug-description' => 'Problém',
- 'bug-footer' => 'Opravte to hovno',
- 'bug-header' => 'Nová zpráva o chybě',
- 'bug-priority' => 'Přednost',
- 'bug-title' => 'Název chyby',
- 'contact-header' => 'Nová kontaktní pošta',
- 'contact-message' => 'Zpráva',
- 'contact-name' => 'název',
+ 'activate-account' => 'Aktivovat účet',
+ 'ban-reason' => 'Důvod',
+ 'banned-footer' => 'To je to, co dostanete za nedodržování pravidel',
+ 'banned-header' => 'Byl jste vykázán',
+ 'bug-description' => 'Problém',
+ 'bug-footer' => 'Opravte to hovno',
+ 'bug-header' => 'Nová zpráva o chybě',
+ 'bug-priority' => 'Přednost',
+ 'bug-title' => 'Název chyby',
+ 'contact-header' => 'Nová kontaktní pošta',
+ 'contact-message' => 'Zpráva',
+ 'contact-name' => 'název',
'fail-login-greeting' => 'Přihlášení k účtu se nezdařilo!',
- 'fail-login-line1' => 'Ve vašem účtu bylo zjištěno neúspěšné přihlášení.',
- 'fail-login-line2' => 'Tento požadavek pochází z: ip (: host) v: time',
- 'fail-login-subject' => 'Oznámení selhání přihlášení',
- 'footer-link' => 'Pokud máte potíže s kliknutím na tlačítko: actionText, zkopírujte a vložte adresu URL níže do webového prohlížeče:',
- 'invite-header' => 'Pozvánka pro',
- 'invite-invited' => 'Byli jste pozváni',
- 'invite-message' => 'Zpráva',
- 'invite-signup' => 'Zaregistrujte se nyní',
- 'newreply-header' => 'Ve vašem tématu je nová odpověď',
- 'newreply-message' => 'Zpráva',
- 'newreply-replied' => 'Odpověděl na vaše téma',
- 'newreply-view' => 'Zobrazit nyní',
- 'no-email-found' => 'V našem systému jsme tento e-mail nenalezli!',
- 'register-code' => 'Pro dokončení aktivace účtu klikněte na tlačítko níže',
- 'register-footer' => 'Pokud toto tlačítko nefunguje, zkopírujte a vložte adresu URL do adresního řádku prohlížeče',
- 'register-header' => 'Ahoj! Děkujeme za přihlášení',
- 'report-comment' => 'Komentář',
- 'report-email' => 'E-mailem',
- 'report-header' => 'Ahoj Admin, odkaz byl ohlášen',
- 'report-link' => 'Odkaz',
- 'report-link-hash' => 'Aktuální odkaz',
- 'thanks' => 'Děkujeme, že používáte',
- 'unban-footer' => 'Vítej zpět!',
- 'unban-header' => 'Byl jste odbanován',
- 'unban-reason' => 'Důvod',
- 'username-reminder' => 'Nedávno jste nám poslali žádost o své uživatelské jméno v naší aplikaci. Vaše uživatelské jméno je',
- 'username-sent' => 'Vaše uživatelské jméno bylo odesláno na vaši e-mailovou adresu!',
- 'disabled-header' => 'Váš účet byl zablokován',
- 'pruned-header' => 'Váš účet byl zkrácen',
+ 'fail-login-line1' => 'Ve vašem účtu bylo zjištěno neúspěšné přihlášení.',
+ 'fail-login-line2' => 'Tento požadavek pochází z: ip (: host) v: time',
+ 'fail-login-subject' => 'Oznámení selhání přihlášení',
+ 'footer-link' => 'Pokud máte potíže s kliknutím na tlačítko: actionText, zkopírujte a vložte adresu URL níže do webového prohlížeče:',
+ 'invite-header' => 'Pozvánka pro',
+ 'invite-invited' => 'Byli jste pozváni',
+ 'invite-message' => 'Zpráva',
+ 'invite-signup' => 'Zaregistrujte se nyní',
+ 'newreply-header' => 'Ve vašem tématu je nová odpověď',
+ 'newreply-message' => 'Zpráva',
+ 'newreply-replied' => 'Odpověděl na vaše téma',
+ 'newreply-view' => 'Zobrazit nyní',
+ 'no-email-found' => 'V našem systému jsme tento e-mail nenalezli!',
+ 'register-code' => 'Pro dokončení aktivace účtu klikněte na tlačítko níže',
+ 'register-footer' => 'Pokud toto tlačítko nefunguje, zkopírujte a vložte adresu URL do adresního řádku prohlížeče',
+ 'register-header' => 'Ahoj! Děkujeme za přihlášení',
+ 'report-comment' => 'Komentář',
+ 'report-email' => 'E-mailem',
+ 'report-header' => 'Ahoj Admin, odkaz byl ohlášen',
+ 'report-link' => 'Odkaz',
+ 'report-link-hash' => 'Aktuální odkaz',
+ 'thanks' => 'Děkujeme, že používáte',
+ 'unban-footer' => 'Vítej zpět!',
+ 'unban-header' => 'Byl jste odbanován',
+ 'unban-reason' => 'Důvod',
+ 'username-reminder' => 'Nedávno jste nám poslali žádost o své uživatelské jméno v naší aplikaci. Vaše uživatelské jméno je',
+ 'username-sent' => 'Vaše uživatelské jméno bylo odesláno na vaši e-mailovou adresu!',
+ 'disabled-header' => 'Váš účet byl zablokován',
+ 'pruned-header' => 'Váš účet byl zkrácen',
];
diff --git a/lang/cs/forum.php b/lang/cs/forum.php
index c293912a8..3de582eb2 100644
--- a/lang/cs/forum.php
+++ b/lang/cs/forum.php
@@ -12,63 +12,63 @@
*/
return [
- 'action' => 'Akce',
- 'activity' => 'Aktivita',
- 'approved' => 'Schválený',
- 'author' => 'Autor',
- 'bug' => 'Chyba',
- 'category-quick-search' => 'Název tématu rychlé vyhledávání (v rámci kategorie)',
- 'close-topic' => 'Zamknout téma',
- 'closed' => 'Zavřeno',
- 'create-new-topic' => 'Vytvořit nové téma',
- 'created' => 'Vytvořeno',
- 'current' => 'Proud',
- 'delete-topic' => 'Smazat toto téma',
- 'denied' => 'Odepřen',
- 'dislike-post' => 'Nelíbí tento příspěvek',
- 'display-forum' => 'Zobrazit témata v',
- 'edit-post' => 'Upravit příspěvek',
- 'edit-topic' => 'Upravit téma',
- 'forum' => 'Forum',
- 'forums' => 'Fóra',
- 'implemented' => 'Realizováno',
- 'in' => 'v',
- 'invalid' => 'Neplatný',
- 'label' => 'Označení',
- 'label-system' => 'Systém štítků',
- 'last-message' => 'Poslední zpráva',
- 'last-post-info' => 'Informace o posledním příspěvku',
- 'latest' => 'Nejnovější',
- 'like-post' => 'Jako tento příspěvek',
- 'meta-category' => 'Seznam fór v kategorii',
- 'moderation' => 'Umírněnost',
- 'name' => 'název',
- 'not-connected' => 'Musíte být připojeni',
- 'not-subscribed' => 'Nepodepsáno',
- 'open' => 'otevřeno',
- 'open-topic' => 'Otevřít toto téma',
- 'permalink' => 'Permalink',
- 'pin' => 'Kolík',
- 'post' => 'Pošta',
- 'post-quick-search' => 'Rychlé vyhledávání po těle',
- 'posts' => 'Příspěvky',
- 'quote' => 'Citát',
- 'read-topic' => 'Přečtěte si téma',
- 'replies' => 'Odpovědi',
- 'send-new-topic' => 'Uložit toto téma',
- 'solved' => 'Vyřešeno',
- 'state' => 'Stát',
- 'stats' => 'Statistiky',
- 'subscribed' => 'Přihlásit se',
+ 'action' => 'Akce',
+ 'activity' => 'Aktivita',
+ 'approved' => 'Schválený',
+ 'author' => 'Autor',
+ 'bug' => 'Chyba',
+ 'category-quick-search' => 'Název tématu rychlé vyhledávání (v rámci kategorie)',
+ 'close-topic' => 'Zamknout téma',
+ 'closed' => 'Zavřeno',
+ 'create-new-topic' => 'Vytvořit nové téma',
+ 'created' => 'Vytvořeno',
+ 'current' => 'Proud',
+ 'delete-topic' => 'Smazat toto téma',
+ 'denied' => 'Odepřen',
+ 'dislike-post' => 'Nelíbí tento příspěvek',
+ 'display-forum' => 'Zobrazit témata v',
+ 'edit-post' => 'Upravit příspěvek',
+ 'edit-topic' => 'Upravit téma',
+ 'forum' => 'Forum',
+ 'forums' => 'Fóra',
+ 'implemented' => 'Realizováno',
+ 'in' => 'v',
+ 'invalid' => 'Neplatný',
+ 'label' => 'Označení',
+ 'label-system' => 'Systém štítků',
+ 'last-message' => 'Poslední zpráva',
+ 'last-post-info' => 'Informace o posledním příspěvku',
+ 'latest' => 'Nejnovější',
+ 'like-post' => 'Jako tento příspěvek',
+ 'meta-category' => 'Seznam fór v kategorii',
+ 'moderation' => 'Umírněnost',
+ 'name' => 'název',
+ 'not-connected' => 'Musíte být připojeni',
+ 'not-subscribed' => 'Nepodepsáno',
+ 'open' => 'otevřeno',
+ 'open-topic' => 'Otevřít toto téma',
+ 'permalink' => 'Permalink',
+ 'pin' => 'Kolík',
+ 'post' => 'Pošta',
+ 'post-quick-search' => 'Rychlé vyhledávání po těle',
+ 'posts' => 'Příspěvky',
+ 'quote' => 'Citát',
+ 'read-topic' => 'Přečtěte si téma',
+ 'replies' => 'Odpovědi',
+ 'send-new-topic' => 'Uložit toto téma',
+ 'solved' => 'Vyřešeno',
+ 'state' => 'Stát',
+ 'stats' => 'Statistiky',
+ 'subscribed' => 'Přihlásit se',
'subscription-quick-search' => 'Název tématu rychlé vyhledávání (v rámci odběrů)',
- 'suggestion' => 'Návrh',
- 'topic' => 'Téma',
- 'topic-closed' => 'Toto téma je uzavřeno',
- 'topic-name' => 'Název tématu',
- 'topic-quick-search' => 'Název tématu rychlé vyhledávání',
- 'topic-title' => 'Název tohoto tématu',
- 'topics' => 'Témata',
- 'unpin' => 'Uvolnit',
- 'view-all' => 'Zobrazit všechna témata',
- 'views' => 'Zobrazení',
+ 'suggestion' => 'Návrh',
+ 'topic' => 'Téma',
+ 'topic-closed' => 'Toto téma je uzavřeno',
+ 'topic-name' => 'Název tématu',
+ 'topic-quick-search' => 'Název tématu rychlé vyhledávání',
+ 'topic-title' => 'Název tohoto tématu',
+ 'topics' => 'Témata',
+ 'unpin' => 'Uvolnit',
+ 'view-all' => 'Zobrazit všechna témata',
+ 'views' => 'Zobrazení',
];
diff --git a/lang/cs/graveyard.php b/lang/cs/graveyard.php
index 5ca6c68aa..85d61142c 100644
--- a/lang/cs/graveyard.php
+++ b/lang/cs/graveyard.php
@@ -12,15 +12,15 @@
*/
return [
- 'dead' => 'Mrtvý',
- 'graveyard' => 'Hřbitov',
- 'guidelines' => 'Pokyny',
+ 'dead' => 'Mrtvý',
+ 'graveyard' => 'Hřbitov',
+ 'guidelines' => 'Pokyny',
'guidelines-content' => '1) Nemůžete znovu načíst vlastní nahrání.
2) Nenechte se vzkřísit.',
- 'howto' => 'Heres The Rule',
- 'howto-desc1' => 'Musíte osivo : jméno po dobu 30 dnů pro úspěšnou regeneraci. V takovém případě, kdy je aktuální čas osiva',
- 'howto-desc2' => 'Budete odměněni',
- 'howto-hits' => 'Hity',
- 'pending' => 'čekající',
- 'resurrect' => 'Vzkřísit',
- 'reward' => 'Freeleech žetony',
+ 'howto' => 'Heres The Rule',
+ 'howto-desc1' => 'Musíte osivo : jméno po dobu 30 dnů pro úspěšnou regeneraci. V takovém případě, kdy je aktuální čas osiva',
+ 'howto-desc2' => 'Budete odměněni',
+ 'howto-hits' => 'Hity',
+ 'pending' => 'čekající',
+ 'resurrect' => 'Vzkřísit',
+ 'reward' => 'Freeleech žetony',
];
diff --git a/lang/cs/mediahub.php b/lang/cs/mediahub.php
index 0bfda3893..71f43798d 100644
--- a/lang/cs/mediahub.php
+++ b/lang/cs/mediahub.php
@@ -12,29 +12,29 @@
*/
return [
- 'born' => 'Born:',
- 'collections' => 'Collections',
- 'companies' => 'Companies',
- 'disclaimer' => 'This product uses the TMDb API but is not endorsed or certified by TMDb.',
- 'episodes' => 'Episodes',
- 'first-seen' => 'First Appeared:',
- 'genres' => 'Genres',
- 'includes' => 'Includes:',
- 'latest-project' => 'Latest Project:',
- 'networks' => 'Networks',
- 'no-data' => 'No Data Found!',
- 'movie' => 'Movie',
- 'movies' => 'Movies',
- 'movie-credits' => 'Movie Credits:',
- 'persons' => 'Persons',
- 'plot' => 'Plot:',
- 'release-date' => 'Release date:',
- 'seasons' => 'Seasons',
- 'select-hub' => 'Please Select A Hub',
- 'show' => 'TV Show',
- 'shows' => 'TV Shows',
- 'title' => 'MediaHub',
- 'tv-credits' => 'TV Credits:',
- 'view-collection' => 'View The Collection',
- 'wiki-read' => 'Read Full Bio On Wikipedia:',
+ 'born' => 'Born:',
+ 'collections' => 'Collections',
+ 'companies' => 'Companies',
+ 'disclaimer' => 'This product uses the TMDb API but is not endorsed or certified by TMDb.',
+ 'episodes' => 'Episodes',
+ 'first-seen' => 'First Appeared:',
+ 'genres' => 'Genres',
+ 'includes' => 'Includes:',
+ 'latest-project' => 'Latest Project:',
+ 'networks' => 'Networks',
+ 'no-data' => 'No Data Found!',
+ 'movie' => 'Movie',
+ 'movies' => 'Movies',
+ 'movie-credits' => 'Movie Credits:',
+ 'persons' => 'Persons',
+ 'plot' => 'Plot:',
+ 'release-date' => 'Release date:',
+ 'seasons' => 'Seasons',
+ 'select-hub' => 'Please Select A Hub',
+ 'show' => 'TV Show',
+ 'shows' => 'TV Shows',
+ 'title' => 'MediaHub',
+ 'tv-credits' => 'TV Credits:',
+ 'view-collection' => 'View The Collection',
+ 'wiki-read' => 'Read Full Bio On Wikipedia:',
];
diff --git a/lang/cs/notification.php b/lang/cs/notification.php
index d8abab570..bce231651 100644
--- a/lang/cs/notification.php
+++ b/lang/cs/notification.php
@@ -12,27 +12,27 @@
*/
return [
- 'bon-gifts' => 'Bon Gifts',
- 'comment-tags' => 'Comment Tags',
- 'date' => 'datum',
- 'delete' => 'Smazat',
- 'delete-all' => 'Smazat vše',
- 'filter-by-type' => 'Filter By Notification Type',
- 'mark-all-read' => 'Označit vše jako přečtené',
- 'mark-read' => 'Označit jako přečtené',
- 'message' => 'Zpráva',
- 'no-notifications' => 'Nebyla nalezena žádná oznámení',
- 'notifications' => 'Oznámení',
- 'post-tags' => 'Post Tags',
- 'post-tips' => 'Post Tips',
- 'read' => 'Číst',
+ 'bon-gifts' => 'Bon Gifts',
+ 'comment-tags' => 'Comment Tags',
+ 'date' => 'datum',
+ 'delete' => 'Smazat',
+ 'delete-all' => 'Smazat vše',
+ 'filter-by-type' => 'Filter By Notification Type',
+ 'mark-all-read' => 'Označit vše jako přečtené',
+ 'mark-read' => 'Označit jako přečtené',
+ 'message' => 'Zpráva',
+ 'no-notifications' => 'Nebyla nalezena žádná oznámení',
+ 'notifications' => 'Oznámení',
+ 'post-tags' => 'Post Tags',
+ 'post-tips' => 'Post Tips',
+ 'read' => 'Číst',
'request-approvals' => 'Request Approvals',
- 'request-bounties' => 'Request Bounties',
- 'request-claims' => 'Request Claim',
- 'request-fills' => 'Request Fills',
- 'request-rejections'=> 'Request Rejections',
- 'request-unclaims' => 'Request Unclaims',
- 'reseed-requests' => 'Reseed Request',
- 'title' => 'Název',
- 'unfollows' => 'Unfollows',
+ 'request-bounties' => 'Request Bounties',
+ 'request-claims' => 'Request Claim',
+ 'request-fills' => 'Request Fills',
+ 'request-rejections' => 'Request Rejections',
+ 'request-unclaims' => 'Request Unclaims',
+ 'reseed-requests' => 'Reseed Request',
+ 'title' => 'Název',
+ 'unfollows' => 'Unfollows',
];
diff --git a/lang/cs/page.php b/lang/cs/page.php
index b01e2aefb..881b9f2cb 100644
--- a/lang/cs/page.php
+++ b/lang/cs/page.php
@@ -12,28 +12,28 @@
*/
return [
- 'aboutus-advantage' => 'Výhoda',
- 'aboutus-advantage1' => 'Máme zkušené členy a zaměstnance, kteří se dobře orientují ve světě HD video / audio a technické podpory.',
- 'aboutus-advantage2' => 'Spolu s naší rozsáhlou vášní pro filmy a televizní pořady, nabízíme také jeden z nejlepších výběrů něčeho, co nejvíce dont - FANRES! VELKÝM DĚKUJEM našim nositelům obsahu.',
- 'aboutus-advantage3' => 'Zatímco přijímáme dary, abychom udrželi stránku v chodu, nebudou na místě žádné otřesy nebo bannery. Žádný prosit od nás.',
- 'aboutus-advantage4' => 'Naše komunita je v předčasném věku na špičkové úrovni. Mezi našimi pracovníky a uživatelskou základnou jsme vždy pomáhali. Byli vášniví o tom, že vaše zkušenosti na: titul není nic menšího než úžasné.',
- 'aboutus-advantage5' => 'Naše služba je denně využívána mnoha lidmi po celém světě. Dokázali jsme, že se staráme o funkčnost a bezpečnost naší databáze a lze na ni spolehnout a spoléhat se na ni. Naši vývojáři pracují denně a poskytují skutečně nex-gen codebase.',
- 'aboutus-header' => 'Ahoj',
- 'aboutus-rules' => 'Co od tebe potřebujeme',
- 'aboutus-rules1' => 'Být aktivním členem komunity! To znamená, že se můžete zapojit do produktivních konverzací, přidat schválený obsah a pomoci ostatním uživatelům, pokud jste schopni.',
- 'aboutus-rules2' => 'Přečtěte si pravidla v plném rozsahu a respektujte je!',
- 'aboutus-rules3' => 'Dělat návrhy! Snažíme se, aby každý den byl lepší. Neříkáme, že každý návrh bude použit, ale nikdy neublíží vidět nové myšlenky.',
- 'aboutus-welcome' => 'Promluvme si o',
- 'aboutus-welcome-desc' => ': název je komunitní databáze Movie / TV / FANRES. Každý kus dat byl přidán naší úžasnou komunitou od roku 2017.: tituly se zaměřují především na HD obsah, proaktivní userbase, úžasnou / bezpečnou codebase a vstřícný a přátelský tým zaměstnanců.',
- 'blacklist-browsers' => 'Prohlížeče',
- 'blacklist-btclient' => 'BitTorrent Client',
- 'blacklist-clients' => 'Klienti',
- 'blacklist-desc' => 'Následující prohlížeče a klienti s bittorrentem jsou vypsáni na černou listinu / zakázáno od oznámení:',
- 'blacklist-webbrowser' => 'Webový prohlížeč',
+ 'aboutus-advantage' => 'Výhoda',
+ 'aboutus-advantage1' => 'Máme zkušené členy a zaměstnance, kteří se dobře orientují ve světě HD video / audio a technické podpory.',
+ 'aboutus-advantage2' => 'Spolu s naší rozsáhlou vášní pro filmy a televizní pořady, nabízíme také jeden z nejlepších výběrů něčeho, co nejvíce dont - FANRES! VELKÝM DĚKUJEM našim nositelům obsahu.',
+ 'aboutus-advantage3' => 'Zatímco přijímáme dary, abychom udrželi stránku v chodu, nebudou na místě žádné otřesy nebo bannery. Žádný prosit od nás.',
+ 'aboutus-advantage4' => 'Naše komunita je v předčasném věku na špičkové úrovni. Mezi našimi pracovníky a uživatelskou základnou jsme vždy pomáhali. Byli vášniví o tom, že vaše zkušenosti na: titul není nic menšího než úžasné.',
+ 'aboutus-advantage5' => 'Naše služba je denně využívána mnoha lidmi po celém světě. Dokázali jsme, že se staráme o funkčnost a bezpečnost naší databáze a lze na ni spolehnout a spoléhat se na ni. Naši vývojáři pracují denně a poskytují skutečně nex-gen codebase.',
+ 'aboutus-header' => 'Ahoj',
+ 'aboutus-rules' => 'Co od tebe potřebujeme',
+ 'aboutus-rules1' => 'Být aktivním členem komunity! To znamená, že se můžete zapojit do produktivních konverzací, přidat schválený obsah a pomoci ostatním uživatelům, pokud jste schopni.',
+ 'aboutus-rules2' => 'Přečtěte si pravidla v plném rozsahu a respektujte je!',
+ 'aboutus-rules3' => 'Dělat návrhy! Snažíme se, aby každý den byl lepší. Neříkáme, že každý návrh bude použit, ale nikdy neublíží vidět nové myšlenky.',
+ 'aboutus-welcome' => 'Promluvme si o',
+ 'aboutus-welcome-desc' => ': název je komunitní databáze Movie / TV / FANRES. Každý kus dat byl přidán naší úžasnou komunitou od roku 2017.: tituly se zaměřují především na HD obsah, proaktivní userbase, úžasnou / bezpečnou codebase a vstřícný a přátelský tým zaměstnanců.',
+ 'blacklist-browsers' => 'Prohlížeče',
+ 'blacklist-btclient' => 'BitTorrent Client',
+ 'blacklist-clients' => 'Klienti',
+ 'blacklist-desc' => 'Následující prohlížeče a klienti s bittorrentem jsou vypsáni na černou listinu / zakázáno od oznámení:',
+ 'blacklist-webbrowser' => 'Webový prohlížeč',
'blacklist-emaildomain' => 'Blokovaná doména',
- 'email-blacklist-desc' => 'Následující e-mailové domény jsou blokovány z používání. Nelze zaregistrovat nebo odeslat pozvat na následující.',
- 'email-whitelist-desc' => 'Následující e-mailové domény jsou jediné e-mailové domény, které lze použít. Můžete pouze zaregistrovat nebo odeslat pozvat pomocí následující.',
- 'staff-group' => 'Skupina',
- 'staff-title' => 'Titul',
+ 'email-blacklist-desc' => 'Následující e-mailové domény jsou blokovány z používání. Nelze zaregistrovat nebo odeslat pozvat na následující.',
+ 'email-whitelist-desc' => 'Následující e-mailové domény jsou jediné e-mailové domény, které lze použít. Můžete pouze zaregistrovat nebo odeslat pozvat pomocí následující.',
+ 'staff-group' => 'Skupina',
+ 'staff-title' => 'Titul',
'whitelist-emaildomain' => 'Důvěryhodná doména',
];
diff --git a/lang/cs/pagination.php b/lang/cs/pagination.php
index d373e1838..477d9a163 100644
--- a/lang/cs/pagination.php
+++ b/lang/cs/pagination.php
@@ -24,5 +24,5 @@ return [
*/
'previous' => '« předchozí',
- 'next' => 'další »',
+ 'next' => 'další »',
];
diff --git a/lang/cs/passwords.php b/lang/cs/passwords.php
index 521a59e71..9bd2e5983 100644
--- a/lang/cs/passwords.php
+++ b/lang/cs/passwords.php
@@ -24,8 +24,8 @@ return [
*/
'password' => 'Heslo musí obsahovat alespoň 6 znaků.',
- 'reset' => 'Heslo bylo obnoveno!',
- 'sent' => 'E-mail s instrukcemi k obnovení hesla byl odeslán!',
- 'token' => 'Klíč pro obnovu hesla je nesprávný.',
- 'user' => 'Nepodařilo se najít uživatele s touto e-mailovou adresou.',
+ 'reset' => 'Heslo bylo obnoveno!',
+ 'sent' => 'E-mail s instrukcemi k obnovení hesla byl odeslán!',
+ 'token' => 'Klíč pro obnovu hesla je nesprávný.',
+ 'user' => 'Nepodařilo se najít uživatele s touto e-mailovou adresou.',
];
diff --git a/lang/cs/playlist.php b/lang/cs/playlist.php
index 8d184e90e..919040a08 100644
--- a/lang/cs/playlist.php
+++ b/lang/cs/playlist.php
@@ -12,20 +12,20 @@
*/
return [
- 'about' => 'Here you will find user compiled playlists that contain titles to their liking!',
+ 'about' => 'Here you will find user compiled playlists that contain titles to their liking!',
'add-to-playlist' => 'Add Torrent To Playlist',
- 'add-torrent' => 'Add Torrent',
- 'added-by' => 'By:',
- 'cover' => 'Select A Cover Image',
- 'create' => 'Create New Playlist',
+ 'add-torrent' => 'Add Torrent',
+ 'added-by' => 'By:',
+ 'cover' => 'Select A Cover Image',
+ 'create' => 'Create New Playlist',
'delete-playlist' => 'Delete Playlist',
- 'desc' => 'Playlist Description',
- 'download-all' => 'Download All Playlist Torrents',
- 'edit-playlist' => 'Edit Playlist',
- 'list-by' => 'A list made by:',
- 'list-about' => 'A list about:',
- 'is-private' => 'Private Playlist?',
- 'playlists' => 'Playlists',
- 'title' => 'Title',
- 'titles' => 'Titles',
+ 'desc' => 'Playlist Description',
+ 'download-all' => 'Download All Playlist Torrents',
+ 'edit-playlist' => 'Edit Playlist',
+ 'list-by' => 'A list made by:',
+ 'list-about' => 'A list about:',
+ 'is-private' => 'Private Playlist?',
+ 'playlists' => 'Playlists',
+ 'title' => 'Title',
+ 'titles' => 'Titles',
];
diff --git a/lang/cs/pm.php b/lang/cs/pm.php
index 8628c527a..71fbc1eac 100644
--- a/lang/cs/pm.php
+++ b/lang/cs/pm.php
@@ -12,29 +12,29 @@
*/
return [
- 'create' => 'Vytvořit',
- 'delete' => 'Smazat',
+ 'create' => 'Vytvořit',
+ 'delete' => 'Smazat',
'enter-subject' => 'Zadejte předmět',
- 'from' => 'Od',
- 'inbox' => 'Doručená pošta',
+ 'from' => 'Od',
+ 'inbox' => 'Doručená pošta',
'mark-all-read' => 'Označte všechny zprávy jako přečtené',
- 'message' => 'Zpráva',
- 'messages' => 'Zprávy',
- 'new' => 'Nová zpráva',
- 'outbox' => 'K odeslání',
- 'private' => 'Soukromé',
- 'read' => 'Číst',
- 'received-at' => 'Přijato dne',
- 'refresh' => 'Obnovit',
- 'reply' => 'Odpověď',
- 'search' => 'Vyhledávání podle předmětu',
- 'select' => 'Vyberte možnost',
- 'send' => 'Poslat',
- 'send-to' => 'Odeslat',
- 'sent' => 'Odeslané',
- 'sent-at' => 'Poslal',
- 'subject' => 'Předmět',
- 'to' => 'Pro',
- 'unread' => 'Nepřečtený',
- 'empty-inbox' => 'Vyprázdnit schránku',
+ 'message' => 'Zpráva',
+ 'messages' => 'Zprávy',
+ 'new' => 'Nová zpráva',
+ 'outbox' => 'K odeslání',
+ 'private' => 'Soukromé',
+ 'read' => 'Číst',
+ 'received-at' => 'Přijato dne',
+ 'refresh' => 'Obnovit',
+ 'reply' => 'Odpověď',
+ 'search' => 'Vyhledávání podle předmětu',
+ 'select' => 'Vyberte možnost',
+ 'send' => 'Poslat',
+ 'send-to' => 'Odeslat',
+ 'sent' => 'Odeslané',
+ 'sent-at' => 'Poslal',
+ 'subject' => 'Předmět',
+ 'to' => 'Pro',
+ 'unread' => 'Nepřečtený',
+ 'empty-inbox' => 'Vyprázdnit schránku',
];
diff --git a/lang/cs/poll.php b/lang/cs/poll.php
index 3e2cdf701..3db88566c 100644
--- a/lang/cs/poll.php
+++ b/lang/cs/poll.php
@@ -12,18 +12,18 @@
*/
return [
- 'add-option' => 'Přidat možnost',
- 'create-poll' => 'Vytvořit anketu',
- 'current' => 'Aktuální ankety',
- 'delete-option' => 'Možnost Odstranit',
+ 'add-option' => 'Přidat možnost',
+ 'create-poll' => 'Vytvořit anketu',
+ 'current' => 'Aktuální ankety',
+ 'delete-option' => 'Možnost Odstranit',
'multiple-choice' => 'Toto je anketa s více volbami. Vyberte tolik odpovědí, kolik chcete.',
- 'option' => 'Volba',
- 'poll' => 'Hlasování',
- 'polls' => 'Ankety',
- 'results' => 'Výsledky ankety',
- 'title' => 'Titul',
- 'total' => 'Celkem hlasů',
- 'vote' => 'Hlasování',
- 'vote-now' => 'Získejte svůj hlas nyní!',
- 'votes' => 'Hlasy',
+ 'option' => 'Volba',
+ 'poll' => 'Hlasování',
+ 'polls' => 'Ankety',
+ 'results' => 'Výsledky ankety',
+ 'title' => 'Titul',
+ 'total' => 'Celkem hlasů',
+ 'vote' => 'Hlasování',
+ 'vote-now' => 'Získejte svůj hlas nyní!',
+ 'votes' => 'Hlasy',
];
diff --git a/lang/cs/request.php b/lang/cs/request.php
index 49d7323f1..c6445bc4d 100644
--- a/lang/cs/request.php
+++ b/lang/cs/request.php
@@ -12,67 +12,67 @@
*/
return [
- 'add-request' => 'Přidat požadavek',
- 'age' => 'Stáří',
- 'all-requests' => 'Všechny požadavky',
- 'approve' => 'Schvalovat',
- 'bounty' => 'Bounty',
- 'bounty-claimed' => 'Nárok Bounty',
- 'bounty-unclaimed' => 'Bounty nenáročný',
- 'category' => 'Kategorie',
- 'claim' => 'Tvrzení',
- 'claim-anon-choose' => 'Prosím vyberte moudře',
- 'claim-as-anon' => 'Chtěl bys to Anonymně žádat',
- 'claim-now' => 'Nyní tvrdí',
- 'claimed' => 'Tvrdil',
- 'current' => 'Proud',
- 'delete' => 'Smazat tuto žádost',
+ 'add-request' => 'Přidat požadavek',
+ 'age' => 'Stáří',
+ 'all-requests' => 'Všechny požadavky',
+ 'approve' => 'Schvalovat',
+ 'bounty' => 'Bounty',
+ 'bounty-claimed' => 'Nárok Bounty',
+ 'bounty-unclaimed' => 'Bounty nenáročný',
+ 'category' => 'Kategorie',
+ 'claim' => 'Tvrzení',
+ 'claim-anon-choose' => 'Prosím vyberte moudře',
+ 'claim-as-anon' => 'Chtěl bys to Anonymně žádat',
+ 'claim-now' => 'Nyní tvrdí',
+ 'claimed' => 'Tvrdil',
+ 'current' => 'Proud',
+ 'delete' => 'Smazat tuto žádost',
'delete-confirmation' => 'Opravdu chcete tuto žádost smazat',
- 'delete-filled' => 'Tento požadavek lze smazat pouze tehdy, pokud nebyl vyplněn',
- 'description' => 'Popis',
- 'dont-have-bps' => 'Nemáte dostatek bonusu',
- 'edit-request' => 'Upravit požadavek',
- 'enter-bp' => 'Zadejte bonusové body (minimálně 100)',
- 'enter-hash' => 'Zadejte Info Hash nahraného Torrentu',
- 'fill' => 'Vyplnit',
- 'fill-request' => 'Vyplňte tento požadavek',
- 'filled' => 'Naplněné',
- 'filled-by' => 'Naplněn',
- 'for' => 'pro',
- 'fulfill' => 'Splnit',
- 'last-vote' => 'Poslední hlasování',
- 'my-requests' => 'Moje požadavky',
- 'no' => 'Ne,',
- 'no-imdb-id' => 'Všechny požadavky musí obsahovat číslo IMDB',
- 'no-privileges' => 'Chyba: Vaše práva byla zakázána',
- 'no-privileges-desc' => 'Pokud se domníváte, že se jedná o chybu, kontaktujte prosím zaměstnance',
- 'no-refunds' => 'BON výměny na vytváření, plnění a odměny jsou konečné!
ŽÁDNÉ NÁHRADY!',
- 'pending' => 'čekající',
- 'reason' => 'Důvod',
- 'reject' => 'Odmítnout',
- 'report' => 'Žádost o zprávu',
- 'request' => 'Žádost',
- 'request-details' => 'Požadovat detaily',
- 'requested-by' => 'Požadováno',
- 'requests' => 'Žádosti',
- 'required' => 'Povinný',
- 'reset' => 'Reset',
- 'reset-confirmation' => 'Opravdu chcete tento požadavek obnovit',
- 'reset-request' => 'Obnovit tuto žádost',
- 'reward' => 'Odměna',
- 'reward-desc' => 'Kolik bonusových bodů byste chtěli odměnit? Minimálně 100 BP',
- 'reward-from' => 'Z',
- 'title' => 'Titul',
- 'torrent-hash' => 'Torrent Hash',
- 'total-bounty' => 'Celková odměna',
- 'type' => 'Typ',
- 'unclaim' => 'Odvolejte tento požadavek',
- 'unfilled' => 'Nevyplněno',
- 'view-filled' => 'Zobrazit vyplněné',
- 'view-unfilled' => 'Zobrazit nevyplněné',
- 'vote' => 'Hlasování',
- 'vote-that' => 'Hlasujte pro tuto žádost',
- 'voters' => 'Voliči',
- 'votes' => 'Hlasy',
- 'yes' => 'Ano',
+ 'delete-filled' => 'Tento požadavek lze smazat pouze tehdy, pokud nebyl vyplněn',
+ 'description' => 'Popis',
+ 'dont-have-bps' => 'Nemáte dostatek bonusu',
+ 'edit-request' => 'Upravit požadavek',
+ 'enter-bp' => 'Zadejte bonusové body (minimálně 100)',
+ 'enter-hash' => 'Zadejte Info Hash nahraného Torrentu',
+ 'fill' => 'Vyplnit',
+ 'fill-request' => 'Vyplňte tento požadavek',
+ 'filled' => 'Naplněné',
+ 'filled-by' => 'Naplněn',
+ 'for' => 'pro',
+ 'fulfill' => 'Splnit',
+ 'last-vote' => 'Poslední hlasování',
+ 'my-requests' => 'Moje požadavky',
+ 'no' => 'Ne,',
+ 'no-imdb-id' => 'Všechny požadavky musí obsahovat číslo IMDB',
+ 'no-privileges' => 'Chyba: Vaše práva byla zakázána',
+ 'no-privileges-desc' => 'Pokud se domníváte, že se jedná o chybu, kontaktujte prosím zaměstnance',
+ 'no-refunds' => 'BON výměny na vytváření, plnění a odměny jsou konečné!
ŽÁDNÉ NÁHRADY!',
+ 'pending' => 'čekající',
+ 'reason' => 'Důvod',
+ 'reject' => 'Odmítnout',
+ 'report' => 'Žádost o zprávu',
+ 'request' => 'Žádost',
+ 'request-details' => 'Požadovat detaily',
+ 'requested-by' => 'Požadováno',
+ 'requests' => 'Žádosti',
+ 'required' => 'Povinný',
+ 'reset' => 'Reset',
+ 'reset-confirmation' => 'Opravdu chcete tento požadavek obnovit',
+ 'reset-request' => 'Obnovit tuto žádost',
+ 'reward' => 'Odměna',
+ 'reward-desc' => 'Kolik bonusových bodů byste chtěli odměnit? Minimálně 100 BP',
+ 'reward-from' => 'Z',
+ 'title' => 'Titul',
+ 'torrent-hash' => 'Torrent Hash',
+ 'total-bounty' => 'Celková odměna',
+ 'type' => 'Typ',
+ 'unclaim' => 'Odvolejte tento požadavek',
+ 'unfilled' => 'Nevyplněno',
+ 'view-filled' => 'Zobrazit vyplněné',
+ 'view-unfilled' => 'Zobrazit nevyplněné',
+ 'vote' => 'Hlasování',
+ 'vote-that' => 'Hlasujte pro tuto žádost',
+ 'voters' => 'Voliči',
+ 'votes' => 'Hlasy',
+ 'yes' => 'Ano',
];
diff --git a/lang/cs/rss.php b/lang/cs/rss.php
index 8001961da..9f8354334 100644
--- a/lang/cs/rss.php
+++ b/lang/cs/rss.php
@@ -12,19 +12,19 @@
*/
return [
- 'create' => 'Vytvořit',
+ 'create' => 'Vytvořit',
'create-private-feed' => 'Vytvořit soukromý RSS kanál',
- 'create-public-feed' => 'Vytvořit veřejný RSS kanál',
- 'delete' => 'Smazat',
- 'edit' => 'Upravit',
- 'edit-private-feed' => 'Upravit privátní RSS kanál',
- 'edit-public-feed' => 'Upravit veřejný kanál RSS',
- 'feed' => 'Krmivo',
- 'feeds' => 'Kanály',
- 'name' => 'název',
- 'public' => 'Veřejnost',
- 'private' => 'Soukromé',
- 'rss' => 'RSS',
- 'rss-feed' => 'RSS Feed',
- 'type' => 'Typ',
+ 'create-public-feed' => 'Vytvořit veřejný RSS kanál',
+ 'delete' => 'Smazat',
+ 'edit' => 'Upravit',
+ 'edit-private-feed' => 'Upravit privátní RSS kanál',
+ 'edit-public-feed' => 'Upravit veřejný kanál RSS',
+ 'feed' => 'Krmivo',
+ 'feeds' => 'Kanály',
+ 'name' => 'název',
+ 'public' => 'Veřejnost',
+ 'private' => 'Soukromé',
+ 'rss' => 'RSS',
+ 'rss-feed' => 'RSS Feed',
+ 'type' => 'Typ',
];
diff --git a/lang/cs/staff.php b/lang/cs/staff.php
index 49ffdf261..9628bdefd 100644
--- a/lang/cs/staff.php
+++ b/lang/cs/staff.php
@@ -12,48 +12,48 @@
*/
return [
- 'audit-log' => 'Protokol aktivity',
- 'articles' => 'Články',
- 'applications' => 'Aplikace',
- 'bans-log' => 'Bans Log',
- 'blocks' => 'Bloky',
- 'bot' => 'Bot',
- 'bots' => 'Bots',
- 'chat' => 'Povídat si',
- 'config-manager' => 'Správce konfigurace',
- 'dashboard' => 'Přístrojová deska',
- 'failed-login-log' => 'Selhalo přihlášení',
- 'flush-ghost-peers' => 'Flush Ghost Peers',
- 'forums' => 'Fóra',
- 'frontend' => 'Frontend',
- 'general-tools' => 'Obecné nástroje',
- 'groups' => 'Skupiny',
- 'invites-log' => 'Pozvánky',
- 'laravel-log' => 'Laravel Log',
- 'links' => 'Odkazy',
- 'logs' => 'Protokoly',
- 'mass-pm' => 'Hmotnostní PM',
- 'mass-validate-users' => 'Mass Validate Users',
- 'moderation' => 'Umírněnost',
- 'pages' => 'Stránky',
- 'please-moderate' => 'Prosím Moderovat Tento Torrent!',
- 'polls' => 'Ankety',
- 'reports-log' => 'Protokoly',
- 'rss' => 'RSS',
- 'staff-dashboard' => 'Panel zaměstnanců',
- 'torrent-categories' => 'Kategorie Torrent',
- 'torrent-moderation' => 'Moderování služby Torrent',
- 'torrent-tools' => 'Nástroje Torrent',
- 'torrent-types' => 'Typy Torrent',
- 'torrents' => 'Torrenty',
- 'user-gifting' => 'Uživatel Gifting',
- 'user-notes' => 'Poznámky uživatele',
- 'user-search' => 'Vyhledávání uživatelů',
- 'user-tools' => 'Uživatelské nástroje',
- 'warnings-log' => 'Varování',
- 'you-have' => 'Ty máš',
+ 'audit-log' => 'Protokol aktivity',
+ 'articles' => 'Články',
+ 'applications' => 'Aplikace',
+ 'bans-log' => 'Bans Log',
+ 'blocks' => 'Bloky',
+ 'bot' => 'Bot',
+ 'bots' => 'Bots',
+ 'chat' => 'Povídat si',
+ 'config-manager' => 'Správce konfigurace',
+ 'dashboard' => 'Přístrojová deska',
+ 'failed-login-log' => 'Selhalo přihlášení',
+ 'flush-ghost-peers' => 'Flush Ghost Peers',
+ 'forums' => 'Fóra',
+ 'frontend' => 'Frontend',
+ 'general-tools' => 'Obecné nástroje',
+ 'groups' => 'Skupiny',
+ 'invites-log' => 'Pozvánky',
+ 'laravel-log' => 'Laravel Log',
+ 'links' => 'Odkazy',
+ 'logs' => 'Protokoly',
+ 'mass-pm' => 'Hmotnostní PM',
+ 'mass-validate-users' => 'Mass Validate Users',
+ 'moderation' => 'Umírněnost',
+ 'pages' => 'Stránky',
+ 'please-moderate' => 'Prosím Moderovat Tento Torrent!',
+ 'polls' => 'Ankety',
+ 'reports-log' => 'Protokoly',
+ 'rss' => 'RSS',
+ 'staff-dashboard' => 'Panel zaměstnanců',
+ 'torrent-categories' => 'Kategorie Torrent',
+ 'torrent-moderation' => 'Moderování služby Torrent',
+ 'torrent-tools' => 'Nástroje Torrent',
+ 'torrent-types' => 'Typy Torrent',
+ 'torrents' => 'Torrenty',
+ 'user-gifting' => 'Uživatel Gifting',
+ 'user-notes' => 'Poznámky uživatele',
+ 'user-search' => 'Vyhledávání uživatelů',
+ 'user-tools' => 'Uživatelské nástroje',
+ 'warnings-log' => 'Varování',
+ 'you-have' => 'Ty máš',
'possible-leech-cheaters' => 'Možné podvodníky',
- 'chat-tools' => 'Nástroje chatu',
- 'flush-chat' => 'Flush Chatbox',
- 'seedboxes' => 'Registrované sejfy',
+ 'chat-tools' => 'Nástroje chatu',
+ 'flush-chat' => 'Flush Chatbox',
+ 'seedboxes' => 'Registrované sejfy',
];
diff --git a/lang/cs/stat.php b/lang/cs/stat.php
index 7c70c54da..8481e29a1 100644
--- a/lang/cs/stat.php
+++ b/lang/cs/stat.php
@@ -12,52 +12,52 @@
*/
return [
- 'active' => 'Active',
- 'all' => 'All',
- 'all-time' => 'All Time',
- 'banned' => 'Banned',
- 'by-count' => 'Počet',
- 'by-data' => 'Podle údajů',
- 'by-volume' => 'Podle objemu',
- 'credited' => 'Credited',
- 'disabled' => 'Disabled',
- 'group' => 'Skupina',
- 'groups' => 'Skupiny',
- 'last30days' => 'Last 30 Days',
- 'nerd-stats' => 'Statistiky blbeček',
- 'nerd-stats-desc' => 'Všichni milujeme statistiky. Zde je několik, které považujeme za důležité',
- 'languages' => 'Languages',
- 'place' => 'Place',
- 'pruned' => 'Pruned',
- 'real' => 'Real',
- 'registration-date' => 'Datum registrace',
- 'request-fulfilled' => 'Požadavek splněn',
- 'request-not-fulfilled' => 'Žádost není splněna',
+ 'active' => 'Active',
+ 'all' => 'All',
+ 'all-time' => 'All Time',
+ 'banned' => 'Banned',
+ 'by-count' => 'Počet',
+ 'by-data' => 'Podle údajů',
+ 'by-volume' => 'Podle objemu',
+ 'credited' => 'Credited',
+ 'disabled' => 'Disabled',
+ 'group' => 'Skupina',
+ 'groups' => 'Skupiny',
+ 'last30days' => 'Last 30 Days',
+ 'nerd-stats' => 'Statistiky blbeček',
+ 'nerd-stats-desc' => 'Všichni milujeme statistiky. Zde je několik, které považujeme za důležité',
+ 'languages' => 'Languages',
+ 'place' => 'Place',
+ 'pruned' => 'Pruned',
+ 'real' => 'Real',
+ 'registration-date' => 'Datum registrace',
+ 'request-fulfilled' => 'Požadavek splněn',
+ 'request-not-fulfilled' => 'Žádost není splněna',
'request-pending-aproval' => 'Čeká se na schválení',
- 'select-category' => 'Vyberte níže uvedenou kategorii',
- 'site-stats' => 'Statistiky webu',
- 'stats' => 'Statistiky',
- 'stats-format' => 'Všechny Statistiky Zobrazeny V Top 100',
- 'top-bankers' => 'Top bankéři',
- 'top-bountied' => 'Top Bountied',
- 'top-completed' => 'Top Dokončených',
- 'top-dead' => 'Top Dead',
- 'top-downloaded' => 'Top Staženo',
- 'top-downloaders' => 'Top Stažení',
- 'top-dying' => 'Top Umírající',
- 'top-leeched' => 'Top Leeched',
- 'top-leechers' => 'Top Leechers',
- 'top-seeded' => 'Top seedů',
- 'top-seeding' => 'Top seedování',
- 'top-seeders' => 'Top Seeders',
- 'top-seedsize' => 'Top Seedsize',
- 'top-seedtime' => 'Top Seedtime',
- 'top-uploaders' => 'Top Uploaders',
- 'total-download' => 'Celkový počet stažení',
- 'total-torrents' => 'Celkový počet torrentů',
- 'total-traffic' => 'Celkový provoz',
- 'total-upload' => 'Celkový počet nahrávek',
- 'updated' => '(Updated Every 10 Minutes!)',
- 'users-in-group' => 'Uživatelé ve skupině',
- 'users-per-group' => 'Uživatelé na skupinu',
+ 'select-category' => 'Vyberte níže uvedenou kategorii',
+ 'site-stats' => 'Statistiky webu',
+ 'stats' => 'Statistiky',
+ 'stats-format' => 'Všechny Statistiky Zobrazeny V Top 100',
+ 'top-bankers' => 'Top bankéři',
+ 'top-bountied' => 'Top Bountied',
+ 'top-completed' => 'Top Dokončených',
+ 'top-dead' => 'Top Dead',
+ 'top-downloaded' => 'Top Staženo',
+ 'top-downloaders' => 'Top Stažení',
+ 'top-dying' => 'Top Umírající',
+ 'top-leeched' => 'Top Leeched',
+ 'top-leechers' => 'Top Leechers',
+ 'top-seeded' => 'Top seedů',
+ 'top-seeding' => 'Top seedování',
+ 'top-seeders' => 'Top Seeders',
+ 'top-seedsize' => 'Top Seedsize',
+ 'top-seedtime' => 'Top Seedtime',
+ 'top-uploaders' => 'Top Uploaders',
+ 'total-download' => 'Celkový počet stažení',
+ 'total-torrents' => 'Celkový počet torrentů',
+ 'total-traffic' => 'Celkový provoz',
+ 'total-upload' => 'Celkový počet nahrávek',
+ 'updated' => '(Updated Every 10 Minutes!)',
+ 'users-in-group' => 'Uživatelé ve skupině',
+ 'users-per-group' => 'Uživatelé na skupinu',
];
diff --git a/lang/cs/subtitle.php b/lang/cs/subtitle.php
index e3fbf1895..66c908fd9 100644
--- a/lang/cs/subtitle.php
+++ b/lang/cs/subtitle.php
@@ -12,13 +12,13 @@
*/
return [
- 'downloads' => 'Downloads',
- 'extension' => 'Extension',
- 'delete-confirm' => 'Are You Sure You Want To Delete This?',
- 'note' => 'Note',
- 'note-help' => 'Extra Info for this subtitle',
- 'rules-title' => 'Subtitle Rules',
- 'rules' => '
+ 'downloads' => 'Downloads',
+ 'extension' => 'Extension',
+ 'delete-confirm' => 'Are You Sure You Want To Delete This?',
+ 'note' => 'Note',
+ 'note-help' => 'Extra Info for this subtitle',
+ 'rules-title' => 'Subtitle Rules',
+ 'rules' => '
- Only proper subtitles are allowed (correct frame rate, translation, spelling, timing)
- No Google-translated, machine-translated and incorrect subtitles
- Subtitles must be in sync with the video
@@ -26,9 +26,9 @@ return [
- Repeated uploads of junk subs will constitute a violation and subject to a disciplinary action
- Keep the Note of the subtitle short, NO urls/links are allowed
',
- 'size' => 'Size',
- 'subtitle-file' => 'Subtitle File',
- 'subtitle-file-types' => 'Accepted files are SRT, ASS, SUP and ZIP',
- 'uploaded' => 'Uploaded',
- 'uploader' => 'Uploader',
+ 'size' => 'Size',
+ 'subtitle-file' => 'Subtitle File',
+ 'subtitle-file-types' => 'Accepted files are SRT, ASS, SUP and ZIP',
+ 'uploaded' => 'Uploaded',
+ 'uploader' => 'Uploader',
];
diff --git a/lang/cs/ticket.php b/lang/cs/ticket.php
index 1358d1c29..85afa4544 100644
--- a/lang/cs/ticket.php
+++ b/lang/cs/ticket.php
@@ -12,29 +12,29 @@
*/
return [
- 'assign' => 'Assign',
- 'assigned-staff' => 'Assigned Staff',
- 'attachments' => 'Attachments',
+ 'assign' => 'Assign',
+ 'assigned-staff' => 'Assigned Staff',
+ 'attachments' => 'Attachments',
'attachments-save' => 'Save Attachments',
- 'body' => 'Body',
- 'body-enter' => 'Enter body here...',
- 'category' => 'Category',
- 'close' => 'Close',
- 'closed' => 'Closed',
- 'create-ticket' => 'Create Ticket',
- 'created' => 'Created',
- 'delete' => 'Delete',
- 'description' => 'Description',
- 'download' => 'Download',
- 'fix-errors' => 'Please fix the following error(s) and try again:',
- 'helpdesk' => 'Helpdesk',
- 'no-attach' => 'No attachments found',
- 'priority' => 'Priority',
- 'opened-by' => 'Opened By:',
- 'reset' => 'Reset',
- 'subject' => 'Subject',
- 'subject-enter' => 'Enter subject here...',
- 'submit-ticket' => 'Submit Ticket',
- 'ticket' => 'Ticket',
- 'unassign' => 'Unassign',
+ 'body' => 'Body',
+ 'body-enter' => 'Enter body here...',
+ 'category' => 'Category',
+ 'close' => 'Close',
+ 'closed' => 'Closed',
+ 'create-ticket' => 'Create Ticket',
+ 'created' => 'Created',
+ 'delete' => 'Delete',
+ 'description' => 'Description',
+ 'download' => 'Download',
+ 'fix-errors' => 'Please fix the following error(s) and try again:',
+ 'helpdesk' => 'Helpdesk',
+ 'no-attach' => 'No attachments found',
+ 'priority' => 'Priority',
+ 'opened-by' => 'Opened By:',
+ 'reset' => 'Reset',
+ 'subject' => 'Subject',
+ 'subject-enter' => 'Enter subject here...',
+ 'submit-ticket' => 'Submit Ticket',
+ 'ticket' => 'Ticket',
+ 'unassign' => 'Unassign',
];
diff --git a/lang/cs/torrent.php b/lang/cs/torrent.php
index 52ad420e9..b1d737fbc 100644
--- a/lang/cs/torrent.php
+++ b/lang/cs/torrent.php
@@ -12,197 +12,197 @@
*/
return [
- 'activity' => 'Aktivita',
- 'age' => 'Stáří',
- 'agent' => 'Client',
- 'alive' => 'Alive',
- 'announce-url' => 'Announce URL',
- 'announce-url-desc' => 'Při vytváření nového torrentu použijte prosím adresu URL výše. Pokud chcete použít torrent bez stahování z webu, musíte nastavit torrent a zdroj jako soukromý na: source',
- 'announce-url-desc-url' => 'Máte potíže? Přečtěte si náš průvodce ZDE',
- 'announce-url-desc2' => 'TMDB a IMDB je vyžadován pro všechny uploady! Používá se ke stažení obrázků a informací k danému torrentu',
- 'approved' => 'Schválený',
- 'audio' => 'Zvuk',
- 'bon-tipped' => 'Darovat BON',
- 'bookmark' => 'Záložka',
- 'bookmarks' => 'Záložky',
- 'bump' => 'Narazit',
- 'cant-upload' => 'Chyba: Nemáte oprávnění k uploadu',
- 'cant-upload-desc' => 'Pokud se domníváte, že se jedná o chybu, kontaktujte prosím administrátory',
- 'cards' => 'Karty',
- 'cards-view' => 'Zobrazit karty',
- 'categories' => 'Kategorie',
- 'category' => 'Kategorie',
- 'client' => 'Klient',
- 'commited' => 'Zavázán',
- 'completed' => 'Dokončeno',
- 'completed_at' => 'Dokončeno v',
- 'completed-not-seeding' => 'Dokončeno, bez seedů',
- 'created_at' => 'Vytvořeno na',
- 'credited' => 'Kredity',
- 'current' => 'Aktuální',
- 'current-filters' => 'Aktuální filtry',
- 'currently-leeching' => 'Momentálně Leeching',
- 'currently-seeding' => 'Momentálně Seeding',
- 'dead-torrent' => 'Mrtvý Torrent',
- 'dead-torrents' => 'Mrtvé torrenty',
- 'delete-bookmark' => 'Smazat tuto záložku',
- 'description' => 'Popis',
- 'discounts' => 'Výhody',
- 'double-upload' => 'Dvojitý upload',
- 'download-all' => 'Stáhnout vše',
- 'download-check' => 'Stáhnout kontrolu',
- 'downloaded' => 'Staženo',
- 'dying-torrent' => 'Umírající Torrent',
- 'dying-torrents' => 'Umírající torrenty',
- 'encode-settings' => 'Nastavení kódování',
- 'estimated-ratio' => 'Odhadované Ratio po stažení',
- 'failed' => 'Selhalo',
- 'feature' => 'Doporučit',
- 'featured' => 'Doporučené',
- 'featured-desc' => 'Doporučené torrenty jsou 100% zdarma a Dvojité nahrání!',
- 'featured-until' => 'Tohle je Doporučený Torrent do',
- 'file' => 'Soubor',
- 'filters' => 'Filtry',
- 'fl-tokens-left' => 'Zbývá ti : tokenů',
- 'freeleech' => 'Freeleech',
- 'freeleech-token' => 'Freeleech Token',
- 'general' => 'Všeobecné',
- 'genre' => 'Žánr',
- 'global-double-upload' => 'Globální dvojité nahrávání',
- 'global-freeleech' => 'Global Freeleech',
- 'grant' => 'Grant',
- 'greater-than' => 'Větší než',
- 'grouping' => 'Seskupování',
- 'groupings' => 'Seskupení',
- 'grouping-categories' => 'Kategorie seskupení',
+ 'activity' => 'Aktivita',
+ 'age' => 'Stáří',
+ 'agent' => 'Client',
+ 'alive' => 'Alive',
+ 'announce-url' => 'Announce URL',
+ 'announce-url-desc' => 'Při vytváření nového torrentu použijte prosím adresu URL výše. Pokud chcete použít torrent bez stahování z webu, musíte nastavit torrent a zdroj jako soukromý na: source',
+ 'announce-url-desc-url' => 'Máte potíže? Přečtěte si náš průvodce ZDE',
+ 'announce-url-desc2' => 'TMDB a IMDB je vyžadován pro všechny uploady! Používá se ke stažení obrázků a informací k danému torrentu',
+ 'approved' => 'Schválený',
+ 'audio' => 'Zvuk',
+ 'bon-tipped' => 'Darovat BON',
+ 'bookmark' => 'Záložka',
+ 'bookmarks' => 'Záložky',
+ 'bump' => 'Narazit',
+ 'cant-upload' => 'Chyba: Nemáte oprávnění k uploadu',
+ 'cant-upload-desc' => 'Pokud se domníváte, že se jedná o chybu, kontaktujte prosím administrátory',
+ 'cards' => 'Karty',
+ 'cards-view' => 'Zobrazit karty',
+ 'categories' => 'Kategorie',
+ 'category' => 'Kategorie',
+ 'client' => 'Klient',
+ 'commited' => 'Zavázán',
+ 'completed' => 'Dokončeno',
+ 'completed_at' => 'Dokončeno v',
+ 'completed-not-seeding' => 'Dokončeno, bez seedů',
+ 'created_at' => 'Vytvořeno na',
+ 'credited' => 'Kredity',
+ 'current' => 'Aktuální',
+ 'current-filters' => 'Aktuální filtry',
+ 'currently-leeching' => 'Momentálně Leeching',
+ 'currently-seeding' => 'Momentálně Seeding',
+ 'dead-torrent' => 'Mrtvý Torrent',
+ 'dead-torrents' => 'Mrtvé torrenty',
+ 'delete-bookmark' => 'Smazat tuto záložku',
+ 'description' => 'Popis',
+ 'discounts' => 'Výhody',
+ 'double-upload' => 'Dvojitý upload',
+ 'download-all' => 'Stáhnout vše',
+ 'download-check' => 'Stáhnout kontrolu',
+ 'downloaded' => 'Staženo',
+ 'dying-torrent' => 'Umírající Torrent',
+ 'dying-torrents' => 'Umírající torrenty',
+ 'encode-settings' => 'Nastavení kódování',
+ 'estimated-ratio' => 'Odhadované Ratio po stažení',
+ 'failed' => 'Selhalo',
+ 'feature' => 'Doporučit',
+ 'featured' => 'Doporučené',
+ 'featured-desc' => 'Doporučené torrenty jsou 100% zdarma a Dvojité nahrání!',
+ 'featured-until' => 'Tohle je Doporučený Torrent do',
+ 'file' => 'Soubor',
+ 'filters' => 'Filtry',
+ 'fl-tokens-left' => 'Zbývá ti : tokenů',
+ 'freeleech' => 'Freeleech',
+ 'freeleech-token' => 'Freeleech Token',
+ 'general' => 'Všeobecné',
+ 'genre' => 'Žánr',
+ 'global-double-upload' => 'Globální dvojité nahrávání',
+ 'global-freeleech' => 'Global Freeleech',
+ 'grant' => 'Grant',
+ 'greater-than' => 'Větší než',
+ 'grouping' => 'Seskupování',
+ 'groupings' => 'Seskupení',
+ 'grouping-categories' => 'Kategorie seskupení',
'grouping-categories-desc' => 'Jakou kategorii byste chtěli seskupit?',
- 'grouping-results' => 'Seskupování výsledků',
- 'groupings-view' => 'Zobrazení seskupení',
- 'have-completed' => 'Dokončeno',
- 'have-downloaded' => 'Staženo',
- 'have-not-completed' => 'Nedokončeno',
- 'have-not-downloaded' => 'Nestaženo',
- 'health' => 'Zdraví',
- 'history' => 'Historie',
- 'hitrun' => 'H&R?',
- 'hit-and-runs' => 'Počet zásahů a spuštění',
- 'immune' => 'Imunní',
- 'info' => 'Informace',
- 'internal' => 'Vnitřní',
- 'internal-release' => 'Vnitřní vydání',
- 'last-seed-activity' => 'Poslední aktivita seedu',
- 'last-seeder' => 'Jste poslední seeder! (bylo staženo nejméně 3krát)',
- 'last-update' => 'Poslední aktualizace',
- 'leave-tip' => 'odchozí tip',
- 'leecher' => 'Leechere',
- 'leechers' => 'Leechers',
- 'leeching' => 'Leechů',
- 'left' => 'Zbývá',
- 'legendary-seeder' => 'Legendární seeder',
- 'legendary-torrent' => 'Legendární torrent',
- 'list' => 'Seznam',
- 'me' => 'Mé',
- 'media-info' => 'MediaInfo',
- 'media-info-parser' => 'MediaInfo',
- 'media-info-paste' => 'Sem vložte výpis z MediaInfo',
- 'meta-desc' => 'Download: jméno při maximální rychlosti',
- 'moderation' => 'Moderace',
- 'movies' => 'Filmy',
- 'mvp' => 'MVP',
- 'my-active-torrents' => 'Moje aktivní torrenty',
- 'name' => 'Název',
- 'no-bookmarks' => 'Nebyly nalezeny žádné záložky.',
- 'no-discounts' => 'V současné době žádné slevy',
- 'no-meta' => 'Nebyla nalezena žádná metadata',
- 'no-privileges' => 'Tento soubor nemůžete stáhnout - pro více informací zkontrolujte níže',
- 'no-privileges-desc' => 'Vyřešte neúspěšné výsledky nad tlačítkem pro stažení',
- 'not-completed' => 'Začalo stahování, ale nikdy nedokončeno',
- 'not-downloaded' => 'Nestaženo',
- 'old-torrent' => 'Starý torrent',
- 'optional' => 'Volitelný',
- 'original-output' => 'Zobrazit / skrýt původní výstup',
- 'participant' => 'Účastník',
- 'passed' => 'Prošel',
- 'peers' => 'Peers',
- 'pending' => 'Čekající',
- 'personal-freeleech' => 'Osobní Freeleech',
- 'poster' => 'Plakát',
- 'poster-view' => 'Nahled',
- 'posters' => 'Plakáty',
- 'prewarn' => 'Posledni varování',
- 'progress' => 'Pokrok',
- 'quick-comment' => 'Rychlý komentář',
- 'quick-tip' => 'Rychlé tipy',
- 'rated' => 'Hodnocené',
- 'rating' => 'Hodnocení',
- 'ready' => 'Tento soubor je připraven ke stažení',
- 'rejected' => 'Odmítnuto',
- 'released' => 'Vydáno',
- 'remaining' => 'Zbývající',
- 'request-reseed' => 'Žádost o reseed',
- 'requires-reseed' => 'Vyžaduje se Reseed',
- 'resurrections' => 'Vzkříšení',
- 'revoke' => 'Zrušit',
- 'rss' => 'RSS',
- 'runtime' => 'Delka',
- 'satisfied_in' => 'Spokojeni',
- 'say-thanks' => 'Prosím, nezapomeňte poděkovat a semeno tak dlouho, jak můžete',
- 'sd-content' => 'Obsah SD',
- 'search' => 'Vyhledávání',
- 'seed-time' => 'Doba seedu',
- 'seeder' => 'Seeder',
- 'seeders' => 'Seeders',
- 'seeding' => 'Seedů',
- 'seedsize' => 'Seedsize',
- 'seedtime' => 'Čas setí',
- 'short-completed' => 'C',
- 'short-leechs' => 'L',
- 'short-seeds' => 'S',
- 'show-files' => 'Zobrazit soubory',
- 'similar' => 'Podobné torrenty',
- 'size' => 'Velikost',
- 'special' => 'Speciální',
- 'special-freeleech' => 'Speciální Freeleech',
- 'started' => 'Začalo',
- 'status' => 'Postavení',
- 'statistics' => 'Statistika',
- 'stats' => 'Statistiky',
- 'sticky' => 'Připnutý',
- 'stream-optimized' => 'Optimalizováno pro Stream',
- 'subtitle' => 'Podtitul',
- 'team-player' => 'Týmový hráč',
- 'thank' => 'Poděkovat',
- 'thanked' => 'Poděkoval',
- 'thanks' => 'Poděkovali',
- 'thanks-given' => 'Poděkoval',
- 'times' => 'Times',
- 'tip-jar' => 'Tip jar',
- 'title' => 'Titul',
- 'titles' => 'Tituly',
- 'top-completed' => 'Top dokončených',
- 'top-dead' => 'Top mrtvích',
- 'top-dying' => 'Top umírajícich',
- 'top-leeched' => 'Top Leechu',
- 'top-seeded' => 'Top Seedů',
- 'torrent' => 'Torrent',
- 'torrent-request' => 'Požadavek o Torrent',
- 'torrent-tips' => 'Celkem: celkový BON byl hrotem, který video nahrál, z toho: uživatelem se od vás',
- 'torrent-tips-desc' => 'Bude odečteno z vašich bonusových bodů',
- 'torrents' => 'Torrenty',
- 'trailer' => 'Trailer',
- 'type' => 'Typ',
- 'types' => 'Typy',
- 'unbookmark' => 'Odznačit',
- 'unsatisfieds' => 'Nespokojen',
- 'unsticky' => 'Odepnout',
- 'updated' => 'Aktualizováno',
- 'updated_at' => 'Aktualizováno na',
- 'uploaded' => 'Nahráno',
- 'uploaded-by' => 'Nahráno uživatelem',
- 'uploader' => 'Uploader',
- 'use-fl-token' => 'Použijte token Freeleech',
- 'video' => 'Video',
- 'view-more' => 'Zobrazit více',
- 'view-trailer' => 'Zobrazit trailer',
- 'votes' => 'Hlasů',
+ 'grouping-results' => 'Seskupování výsledků',
+ 'groupings-view' => 'Zobrazení seskupení',
+ 'have-completed' => 'Dokončeno',
+ 'have-downloaded' => 'Staženo',
+ 'have-not-completed' => 'Nedokončeno',
+ 'have-not-downloaded' => 'Nestaženo',
+ 'health' => 'Zdraví',
+ 'history' => 'Historie',
+ 'hitrun' => 'H&R?',
+ 'hit-and-runs' => 'Počet zásahů a spuštění',
+ 'immune' => 'Imunní',
+ 'info' => 'Informace',
+ 'internal' => 'Vnitřní',
+ 'internal-release' => 'Vnitřní vydání',
+ 'last-seed-activity' => 'Poslední aktivita seedu',
+ 'last-seeder' => 'Jste poslední seeder! (bylo staženo nejméně 3krát)',
+ 'last-update' => 'Poslední aktualizace',
+ 'leave-tip' => 'odchozí tip',
+ 'leecher' => 'Leechere',
+ 'leechers' => 'Leechers',
+ 'leeching' => 'Leechů',
+ 'left' => 'Zbývá',
+ 'legendary-seeder' => 'Legendární seeder',
+ 'legendary-torrent' => 'Legendární torrent',
+ 'list' => 'Seznam',
+ 'me' => 'Mé',
+ 'media-info' => 'MediaInfo',
+ 'media-info-parser' => 'MediaInfo',
+ 'media-info-paste' => 'Sem vložte výpis z MediaInfo',
+ 'meta-desc' => 'Download: jméno při maximální rychlosti',
+ 'moderation' => 'Moderace',
+ 'movies' => 'Filmy',
+ 'mvp' => 'MVP',
+ 'my-active-torrents' => 'Moje aktivní torrenty',
+ 'name' => 'Název',
+ 'no-bookmarks' => 'Nebyly nalezeny žádné záložky.',
+ 'no-discounts' => 'V současné době žádné slevy',
+ 'no-meta' => 'Nebyla nalezena žádná metadata',
+ 'no-privileges' => 'Tento soubor nemůžete stáhnout - pro více informací zkontrolujte níže',
+ 'no-privileges-desc' => 'Vyřešte neúspěšné výsledky nad tlačítkem pro stažení',
+ 'not-completed' => 'Začalo stahování, ale nikdy nedokončeno',
+ 'not-downloaded' => 'Nestaženo',
+ 'old-torrent' => 'Starý torrent',
+ 'optional' => 'Volitelný',
+ 'original-output' => 'Zobrazit / skrýt původní výstup',
+ 'participant' => 'Účastník',
+ 'passed' => 'Prošel',
+ 'peers' => 'Peers',
+ 'pending' => 'Čekající',
+ 'personal-freeleech' => 'Osobní Freeleech',
+ 'poster' => 'Plakát',
+ 'poster-view' => 'Nahled',
+ 'posters' => 'Plakáty',
+ 'prewarn' => 'Posledni varování',
+ 'progress' => 'Pokrok',
+ 'quick-comment' => 'Rychlý komentář',
+ 'quick-tip' => 'Rychlé tipy',
+ 'rated' => 'Hodnocené',
+ 'rating' => 'Hodnocení',
+ 'ready' => 'Tento soubor je připraven ke stažení',
+ 'rejected' => 'Odmítnuto',
+ 'released' => 'Vydáno',
+ 'remaining' => 'Zbývající',
+ 'request-reseed' => 'Žádost o reseed',
+ 'requires-reseed' => 'Vyžaduje se Reseed',
+ 'resurrections' => 'Vzkříšení',
+ 'revoke' => 'Zrušit',
+ 'rss' => 'RSS',
+ 'runtime' => 'Delka',
+ 'satisfied_in' => 'Spokojeni',
+ 'say-thanks' => 'Prosím, nezapomeňte poděkovat a semeno tak dlouho, jak můžete',
+ 'sd-content' => 'Obsah SD',
+ 'search' => 'Vyhledávání',
+ 'seed-time' => 'Doba seedu',
+ 'seeder' => 'Seeder',
+ 'seeders' => 'Seeders',
+ 'seeding' => 'Seedů',
+ 'seedsize' => 'Seedsize',
+ 'seedtime' => 'Čas setí',
+ 'short-completed' => 'C',
+ 'short-leechs' => 'L',
+ 'short-seeds' => 'S',
+ 'show-files' => 'Zobrazit soubory',
+ 'similar' => 'Podobné torrenty',
+ 'size' => 'Velikost',
+ 'special' => 'Speciální',
+ 'special-freeleech' => 'Speciální Freeleech',
+ 'started' => 'Začalo',
+ 'status' => 'Postavení',
+ 'statistics' => 'Statistika',
+ 'stats' => 'Statistiky',
+ 'sticky' => 'Připnutý',
+ 'stream-optimized' => 'Optimalizováno pro Stream',
+ 'subtitle' => 'Podtitul',
+ 'team-player' => 'Týmový hráč',
+ 'thank' => 'Poděkovat',
+ 'thanked' => 'Poděkoval',
+ 'thanks' => 'Poděkovali',
+ 'thanks-given' => 'Poděkoval',
+ 'times' => 'Times',
+ 'tip-jar' => 'Tip jar',
+ 'title' => 'Titul',
+ 'titles' => 'Tituly',
+ 'top-completed' => 'Top dokončených',
+ 'top-dead' => 'Top mrtvích',
+ 'top-dying' => 'Top umírajícich',
+ 'top-leeched' => 'Top Leechu',
+ 'top-seeded' => 'Top Seedů',
+ 'torrent' => 'Torrent',
+ 'torrent-request' => 'Požadavek o Torrent',
+ 'torrent-tips' => 'Celkem: celkový BON byl hrotem, který video nahrál, z toho: uživatelem se od vás',
+ 'torrent-tips-desc' => 'Bude odečteno z vašich bonusových bodů',
+ 'torrents' => 'Torrenty',
+ 'trailer' => 'Trailer',
+ 'type' => 'Typ',
+ 'types' => 'Typy',
+ 'unbookmark' => 'Odznačit',
+ 'unsatisfieds' => 'Nespokojen',
+ 'unsticky' => 'Odepnout',
+ 'updated' => 'Aktualizováno',
+ 'updated_at' => 'Aktualizováno na',
+ 'uploaded' => 'Nahráno',
+ 'uploaded-by' => 'Nahráno uživatelem',
+ 'uploader' => 'Uploader',
+ 'use-fl-token' => 'Použijte token Freeleech',
+ 'video' => 'Video',
+ 'view-more' => 'Zobrazit více',
+ 'view-trailer' => 'Zobrazit trailer',
+ 'votes' => 'Hlasů',
];
diff --git a/lang/cs/user.php b/lang/cs/user.php
index 0ffb902c8..33b323bd5 100644
--- a/lang/cs/user.php
+++ b/lang/cs/user.php
@@ -12,316 +12,316 @@
*/
return [
- 'about' => 'O mně',
- 'about-me' => 'O mně',
- 'accepted-at' => 'Přijato na',
- 'accepted-by' => 'Přijato',
- 'account-notification' => 'Nastavení oznámení účtu',
- 'account-notification-follow' => 'Pokud uživatel sleduje váš účet, obdržíte oznámení',
- 'account-notification-unfollow' => 'Obdržíte oznámení, když uživatel váš účet opustí',
- 'account-notification-help' => 'Určete, která oznámení se týkají vašeho účtu. Tato nastavení jsou přepsána, pokud nedovolíte, aby všechny skupiny odesílaly oznámení týkající se vašeho účtu nebo zakázaly oznámení',
- 'account-settings' => 'Nastavení účtu',
- 'achievement-privacy' => 'Nastavení úspěchu',
- 'achievement-privacy-list' => 'Umožnit uživatelům zobrazit seznam vašich úspěchů',
- 'achievement-help' => 'Řídit sdílení konkrétních informací týkajících se úspěchu se skupinami, které mají přístup k vašemu profilu. Tato nastavení jsou přepsána, pokud nepovolíte přístup ke svým úspěchům žádným skupinám nebo pokud jdete soukromě',
- 'achievements' => 'Úspěchy',
- 'active' => 'Aktivní',
- 'active-table' => 'Moje aktivní tabulka',
- 'active-torrents' => 'Aktivní torrenty',
- 'active-warning' => 'Aktivní varování',
- 'active-warnings' => 'Aktivní varování',
- 'add-seedbox' => 'Přidat Seedbox',
- 'all-torrents' => 'Všechny torrenty',
- 'article-comments' => 'Článek Komentáře Vyrobeno',
- 'avatar' => 'Avatar',
- 'avg-seedtime' => 'Průměrná doba seedu',
- 'badges' => 'Odznaky',
- 'ban' => 'Zákazník',
- 'ban-log' => 'Protokol Ban',
- 'become-hidden' => 'Skrytý',
- 'become-visible' => 'Stát se viditelným',
- 'bon' => 'BON',
- 'bon-notification' => 'Nastavení oznámení BON',
- 'bon-notification-gift' => 'Obdržíte oznámení, když vám uživatel daruje bon',
- 'bon-notification-help' => 'Kontrola, která oznámení jsou zasílána ohledně transakcí BON. Tato nastavení jsou přepsána, pokud nedovolíte, aby všechny skupiny odesílaly oznámení týkající se služby BON nebo zakázaly oznámení',
- 'bookmarks' => 'Záložky',
- 'bounty-given' => 'Bounty Given',
- 'bounty-received' => 'Bounty Received',
- 'can-chat' => 'Může chatovat',
- 'can-comment' => 'Může komentovat',
- 'can-download' => 'Může stáhnout',
- 'can-invite' => 'Může pozvat',
- 'can-request' => 'Může požádat',
- 'can-upload' => 'Lze nahrát',
- 'certified-banker' => 'Certifikovaný bankéř',
- 'certified-banker-desc' => 'Má 50.000 nebo více BON v bance',
- 'certified-downloader' => 'Certifikovaný Downloader',
- 'certified-downloader-desc' => 'Staženo 100 nebo více torrentů!',
- 'certified-seeder' => 'Certifikovaný secí stroj',
- 'certified-seeder-desc' => 'Secí 150 nebo více torrenty!',
- 'change-email' => 'Změnit e-mail',
- 'change-email-help' => 'Po změně e-mailu budete muset svůj účet znovu potvrdit',
- 'change-password' => 'Změnit heslo',
- 'change-password-help' => 'Po změně hesla se budete muset znovu přihlásit',
- 'client-ip-address' => 'Adresa IP klienta',
- 'code' => 'Kód',
- 'comments' => 'Poznámky',
- 'created-on' => 'Vytvořeno dne',
- 'credited-download' => 'Kredit ke stažení',
- 'credited-upload' => 'Kreditní upload',
- 'current-password' => 'Aktuální heslo',
- 'custom-title' => 'Vlastní název',
- 'delete' => 'Smazat uživatele',
- 'disable-notifications' => 'Zakázat oznámení',
- 'disclaimer' => 'Prohlášení',
- 'disclaimer-info' => 'Ve výchozím nastavení se nezaznamenávají uživatelé IP adresy jako většina trackerů. Přidáním vašeho IP adresáře se očekává, že víte, že vaše IP adresy uvedené níže jsou nyní uloženy v naší databázi, pokud tyto záznamy neodstraníte.',
- 'disclaimer-info-bordered' => 'Seedbox IP přidané pak spustí vysokorychlostní torrent tag na torrenty nasazené z IP uvedených níže',
- 'download-bon' => 'Stahování bylo odebráno z obchodu BON',
- 'download-recorded' => 'Zaznamenané stahování',
- 'download-true' => 'True Download',
- 'downloads' => 'Stahování',
- 'edit' => 'Upravit uživatele',
- 'edit-profile' => 'Editovat profil',
- 'enable-notifications' => 'Povolit oznámení',
- 'expired' => 'Platnost vypršela',
- 'expires-on' => 'Platnost vyprší',
- 'extra' => 'Další',
- 'filled-request' => 'Požadavky na vyplněné členy',
- 'follow' => 'Následovat',
- 'follower-privacy' => 'Nastavení sledovače',
- 'follower-privacy-list' => 'Umožnit uživatelům zobrazit seznam vašich následovníků',
- 'follower-help' => 'Řídit sdílení konkrétních informací souvisejících se sledovatelem se skupinami, které mají přístup k vašemu profilu. Tato nastavení jsou přepsána, pokud nepovolíte přístup ke svým následovníkům žádné skupině nebo pokud jdete na soukromou',
- 'followers' => 'Sledující',
- 'following-notification' => 'Nastavení následného oznámení uživatele',
- 'following-notification-upload' => 'Obdržíte oznámení, když sledovaný uživatel nahraje torrent',
- 'following-notification-help' => 'Řídit, která oznámení jsou zasílána o následných akcích uživatele. Tato nastavení jsou přepsána, pokud nepovolíte žádné skupiny odesílat oznámení týkající se následných uživatelů nebo pokud zakázáte oznámení',
- 'formats-are-supported' => ': formáty jsou podporovány',
- 'forum-notification' => 'Nastavení oznámení ve fóru',
- 'forum-notification-topic' => 'Obdržíte oznámení, když téma, které jste spustili, obdrží nový příspěvek',
- 'forum-notification-help' => 'Kontrola, která oznámení jsou zasílána ohledně činností fóra. Tato nastavení jsou přepsána, pokud nedovolíte, aby jakékoli skupiny odesílaly oznámení týkající se aktivit fóra nebo pokud zakázáte oznámení',
- 'forum-privacy' => 'Nastavení fóra',
- 'forum-privacy-post' => 'Umožnit uživatelům zobrazit seznam příspěvků ve fóru, které jste odeslali',
- 'forum-privacy-topic' => 'Umožnit uživatelům zobrazit seznam témat fóra, která jste zahájili',
- 'forum-help' => 'Řídit sdílení specifických statistik souvisejících s fórem a informací se skupinami, které mají přístup k vašemu profilu. Tato nastavení jsou přepsána, pokud nepovolíte přístup ke statistikám a informacím, které se týkají fóra, nebo pokud jdete soukromě',
- 'forum-signature' => 'Podpis fóra',
- 'forums' => 'Fóra',
- 'general' => 'Všeobecné',
- 'general-settings' => 'Obecné nastavení',
- 'gift-given' => 'Dárek',
- 'gift-received' => 'Dárky přijaty',
- 'go-public' => 'Jít na veřejnost',
- 'go-private' => 'Přejít soukromě',
- 'history' => 'Dějiny',
- 'history-table' => 'Tabulka moje historie',
- 'hit-n-runs' => 'Hit a běhy',
- 'hit-n-runs-count' => 'Počet zásahů a běhů (po celou dobu)',
- 'hit-n-runs-history' => 'Torrent Hit a běží historie',
- 'image' => 'obraz',
- 'important' => 'Důležité',
- 'important-info' => 'Důležité informace',
- 'information' => 'Informace',
- 'invite-friend' => 'Pozvěte svého přítele (vyžaduje se e-mail + zpráva)',
- 'invite-tree' => 'Pozvat strom',
- 'invites' => 'Pozvání',
- 'invites-banned' => 'Chyba: Vaše práva pozvat byla zakázána',
- 'invites-banned-desc' => 'Pokud máte pocit, že se jedná o chybu, kontaktujte prosím zaměstnance!',
- 'invites-count' => 'Máte: count Pozvěte žetony',
- 'invites-disabled' => 'Pozor: Pozvánka je zakázána kvůli otevřené registraci!',
- 'invites-disabled-desc' => 'Zkontrolujte, prosím, brzy!',
- 'invites-rules' => '- Pozvěte jen lidi, které znáte a kterým důvěřujete.
- Za ty, které pozveš, budeš osobně zodpovědný.
- Nepozvat se, kontrolujeme každého pozvaného uživatele.
- Dont obchodovat nebo prodávat pozvání.
- Pokud je osoba, kterou jste pozvali, chycena podváděním, obchodním účtem nebo prodejem / obchodováním, budete upozorněni.
',
- 'invites-send' => 'Pozvání Poslat',
- 'last-login' => 'Poslední přihlášení',
- 'locked' => 'Zamčené',
- 'locked-achievements' => 'Uzamčené úspěchy',
- 'member-since' => 'Členem od',
- 'members-desc' => 'Seznam uživatelů registrovaných na: titul se všemi skupinami. Najít uživatele.',
- 'mention-notification' => '@ Nastavení oznámení upozornění',
+ 'about' => 'O mně',
+ 'about-me' => 'O mně',
+ 'accepted-at' => 'Přijato na',
+ 'accepted-by' => 'Přijato',
+ 'account-notification' => 'Nastavení oznámení účtu',
+ 'account-notification-follow' => 'Pokud uživatel sleduje váš účet, obdržíte oznámení',
+ 'account-notification-unfollow' => 'Obdržíte oznámení, když uživatel váš účet opustí',
+ 'account-notification-help' => 'Určete, která oznámení se týkají vašeho účtu. Tato nastavení jsou přepsána, pokud nedovolíte, aby všechny skupiny odesílaly oznámení týkající se vašeho účtu nebo zakázaly oznámení',
+ 'account-settings' => 'Nastavení účtu',
+ 'achievement-privacy' => 'Nastavení úspěchu',
+ 'achievement-privacy-list' => 'Umožnit uživatelům zobrazit seznam vašich úspěchů',
+ 'achievement-help' => 'Řídit sdílení konkrétních informací týkajících se úspěchu se skupinami, které mají přístup k vašemu profilu. Tato nastavení jsou přepsána, pokud nepovolíte přístup ke svým úspěchům žádným skupinám nebo pokud jdete soukromě',
+ 'achievements' => 'Úspěchy',
+ 'active' => 'Aktivní',
+ 'active-table' => 'Moje aktivní tabulka',
+ 'active-torrents' => 'Aktivní torrenty',
+ 'active-warning' => 'Aktivní varování',
+ 'active-warnings' => 'Aktivní varování',
+ 'add-seedbox' => 'Přidat Seedbox',
+ 'all-torrents' => 'Všechny torrenty',
+ 'article-comments' => 'Článek Komentáře Vyrobeno',
+ 'avatar' => 'Avatar',
+ 'avg-seedtime' => 'Průměrná doba seedu',
+ 'badges' => 'Odznaky',
+ 'ban' => 'Zákazník',
+ 'ban-log' => 'Protokol Ban',
+ 'become-hidden' => 'Skrytý',
+ 'become-visible' => 'Stát se viditelným',
+ 'bon' => 'BON',
+ 'bon-notification' => 'Nastavení oznámení BON',
+ 'bon-notification-gift' => 'Obdržíte oznámení, když vám uživatel daruje bon',
+ 'bon-notification-help' => 'Kontrola, která oznámení jsou zasílána ohledně transakcí BON. Tato nastavení jsou přepsána, pokud nedovolíte, aby všechny skupiny odesílaly oznámení týkající se služby BON nebo zakázaly oznámení',
+ 'bookmarks' => 'Záložky',
+ 'bounty-given' => 'Bounty Given',
+ 'bounty-received' => 'Bounty Received',
+ 'can-chat' => 'Může chatovat',
+ 'can-comment' => 'Může komentovat',
+ 'can-download' => 'Může stáhnout',
+ 'can-invite' => 'Může pozvat',
+ 'can-request' => 'Může požádat',
+ 'can-upload' => 'Lze nahrát',
+ 'certified-banker' => 'Certifikovaný bankéř',
+ 'certified-banker-desc' => 'Má 50.000 nebo více BON v bance',
+ 'certified-downloader' => 'Certifikovaný Downloader',
+ 'certified-downloader-desc' => 'Staženo 100 nebo více torrentů!',
+ 'certified-seeder' => 'Certifikovaný secí stroj',
+ 'certified-seeder-desc' => 'Secí 150 nebo více torrenty!',
+ 'change-email' => 'Změnit e-mail',
+ 'change-email-help' => 'Po změně e-mailu budete muset svůj účet znovu potvrdit',
+ 'change-password' => 'Změnit heslo',
+ 'change-password-help' => 'Po změně hesla se budete muset znovu přihlásit',
+ 'client-ip-address' => 'Adresa IP klienta',
+ 'code' => 'Kód',
+ 'comments' => 'Poznámky',
+ 'created-on' => 'Vytvořeno dne',
+ 'credited-download' => 'Kredit ke stažení',
+ 'credited-upload' => 'Kreditní upload',
+ 'current-password' => 'Aktuální heslo',
+ 'custom-title' => 'Vlastní název',
+ 'delete' => 'Smazat uživatele',
+ 'disable-notifications' => 'Zakázat oznámení',
+ 'disclaimer' => 'Prohlášení',
+ 'disclaimer-info' => 'Ve výchozím nastavení se nezaznamenávají uživatelé IP adresy jako většina trackerů. Přidáním vašeho IP adresáře se očekává, že víte, že vaše IP adresy uvedené níže jsou nyní uloženy v naší databázi, pokud tyto záznamy neodstraníte.',
+ 'disclaimer-info-bordered' => 'Seedbox IP přidané pak spustí vysokorychlostní torrent tag na torrenty nasazené z IP uvedených níže',
+ 'download-bon' => 'Stahování bylo odebráno z obchodu BON',
+ 'download-recorded' => 'Zaznamenané stahování',
+ 'download-true' => 'True Download',
+ 'downloads' => 'Stahování',
+ 'edit' => 'Upravit uživatele',
+ 'edit-profile' => 'Editovat profil',
+ 'enable-notifications' => 'Povolit oznámení',
+ 'expired' => 'Platnost vypršela',
+ 'expires-on' => 'Platnost vyprší',
+ 'extra' => 'Další',
+ 'filled-request' => 'Požadavky na vyplněné členy',
+ 'follow' => 'Následovat',
+ 'follower-privacy' => 'Nastavení sledovače',
+ 'follower-privacy-list' => 'Umožnit uživatelům zobrazit seznam vašich následovníků',
+ 'follower-help' => 'Řídit sdílení konkrétních informací souvisejících se sledovatelem se skupinami, které mají přístup k vašemu profilu. Tato nastavení jsou přepsána, pokud nepovolíte přístup ke svým následovníkům žádné skupině nebo pokud jdete na soukromou',
+ 'followers' => 'Sledující',
+ 'following-notification' => 'Nastavení následného oznámení uživatele',
+ 'following-notification-upload' => 'Obdržíte oznámení, když sledovaný uživatel nahraje torrent',
+ 'following-notification-help' => 'Řídit, která oznámení jsou zasílána o následných akcích uživatele. Tato nastavení jsou přepsána, pokud nepovolíte žádné skupiny odesílat oznámení týkající se následných uživatelů nebo pokud zakázáte oznámení',
+ 'formats-are-supported' => ': formáty jsou podporovány',
+ 'forum-notification' => 'Nastavení oznámení ve fóru',
+ 'forum-notification-topic' => 'Obdržíte oznámení, když téma, které jste spustili, obdrží nový příspěvek',
+ 'forum-notification-help' => 'Kontrola, která oznámení jsou zasílána ohledně činností fóra. Tato nastavení jsou přepsána, pokud nedovolíte, aby jakékoli skupiny odesílaly oznámení týkající se aktivit fóra nebo pokud zakázáte oznámení',
+ 'forum-privacy' => 'Nastavení fóra',
+ 'forum-privacy-post' => 'Umožnit uživatelům zobrazit seznam příspěvků ve fóru, které jste odeslali',
+ 'forum-privacy-topic' => 'Umožnit uživatelům zobrazit seznam témat fóra, která jste zahájili',
+ 'forum-help' => 'Řídit sdílení specifických statistik souvisejících s fórem a informací se skupinami, které mají přístup k vašemu profilu. Tato nastavení jsou přepsána, pokud nepovolíte přístup ke statistikám a informacím, které se týkají fóra, nebo pokud jdete soukromě',
+ 'forum-signature' => 'Podpis fóra',
+ 'forums' => 'Fóra',
+ 'general' => 'Všeobecné',
+ 'general-settings' => 'Obecné nastavení',
+ 'gift-given' => 'Dárek',
+ 'gift-received' => 'Dárky přijaty',
+ 'go-public' => 'Jít na veřejnost',
+ 'go-private' => 'Přejít soukromě',
+ 'history' => 'Dějiny',
+ 'history-table' => 'Tabulka moje historie',
+ 'hit-n-runs' => 'Hit a běhy',
+ 'hit-n-runs-count' => 'Počet zásahů a běhů (po celou dobu)',
+ 'hit-n-runs-history' => 'Torrent Hit a běží historie',
+ 'image' => 'obraz',
+ 'important' => 'Důležité',
+ 'important-info' => 'Důležité informace',
+ 'information' => 'Informace',
+ 'invite-friend' => 'Pozvěte svého přítele (vyžaduje se e-mail + zpráva)',
+ 'invite-tree' => 'Pozvat strom',
+ 'invites' => 'Pozvání',
+ 'invites-banned' => 'Chyba: Vaše práva pozvat byla zakázána',
+ 'invites-banned-desc' => 'Pokud máte pocit, že se jedná o chybu, kontaktujte prosím zaměstnance!',
+ 'invites-count' => 'Máte: count Pozvěte žetony',
+ 'invites-disabled' => 'Pozor: Pozvánka je zakázána kvůli otevřené registraci!',
+ 'invites-disabled-desc' => 'Zkontrolujte, prosím, brzy!',
+ 'invites-rules' => '- Pozvěte jen lidi, které znáte a kterým důvěřujete.
- Za ty, které pozveš, budeš osobně zodpovědný.
- Nepozvat se, kontrolujeme každého pozvaného uživatele.
- Dont obchodovat nebo prodávat pozvání.
- Pokud je osoba, kterou jste pozvali, chycena podváděním, obchodním účtem nebo prodejem / obchodováním, budete upozorněni.
',
+ 'invites-send' => 'Pozvání Poslat',
+ 'last-login' => 'Poslední přihlášení',
+ 'locked' => 'Zamčené',
+ 'locked-achievements' => 'Uzamčené úspěchy',
+ 'member-since' => 'Členem od',
+ 'members-desc' => 'Seznam uživatelů registrovaných na: titul se všemi skupinami. Najít uživatele.',
+ 'mention-notification' => '@ Nastavení oznámení upozornění',
'mention-notification-article-comment' => 'Obdržíte oznámení, když jste @ komentováni v komentáři článku',
'mention-notification-torrent-comment' => 'Obdržíte oznámení, když jste @ komentováni v komentáři torrentu',
'mention-notification-request-comment' => 'Obdržíte oznámení, když jste v komentáři požadavku uvedeni',
- 'mention-notification-forum-post' => 'Dostanete oznámení, když jste @ postoupeni ve fóru',
- 'mention-notification-help' => 'Určete, která oznámení budou odeslána, když vás uživatel @mentions. Tato nastavení jsou přepsána, pokud nepovolíte odesílání oznámení žádným skupinám, pokud vás uživatel @mentions nebo deaktivujete.',
- 'moderated-by' => 'Moderuje: mod on',
- 'my-bonus-points' => 'Moje bonusové body',
- 'my-bookmarks' => 'Moje záložky',
- 'my-fl-tokens' => 'Moje FL tokeny',
- 'my-general-settings' => 'Moje obecná nastavení',
- 'my-notification' => 'Moje oznámení',
- 'my-notification-settings' => 'Nastavení oznámení',
- 'my-privacy' => 'Moje soukromí',
- 'my-privacy-settings' => 'Nastavení osobních údajů',
- 'my-profile' => 'Můj profil',
- 'my-requested' => 'Můj požadavek',
- 'my-security' => 'Moje bezpečnost',
- 'my-security-settings' => 'Nastavení zabezpečení',
- 'my-seedboxes' => 'Moje Seedboxes',
- 'my-settings' => 'Moje nastavení',
- 'my-wishlist' => 'můj list přání',
- 'no-logs' => 'Tento uživatel nemá v databázi žádné pozvánky!',
- 'no-seedboxes' => 'Žádné secí skříně 😔',
- 'not-authorized' => 'Nemáte oprávnění zobrazit tuto stránku. Tento člen dává přednost skrytí jako ninja!',
- 'note' => 'Poznámka',
- 'notification' => 'Oznámení',
- 'notification-settings' => 'Nastavení upozornění',
- 'notification-from-account' => 'Přijměte oznámení o účtu',
- 'notification-from-account-help' => 'Obdržíte pouze oznámení o účtu ze systému, personálu a následujících skupin. Tato nastavení jsou přepsána, pokud deaktivujete oznámení',
- 'notification-from-bon' => 'Dostávat oznámení BON od',
- 'notification-from-bon-help' => 'Oznámení BON obdržíte pouze od systému, personálu a následujících skupin. Tato nastavení jsou přepsána, pokud deaktivujete oznámení',
- 'notification-from-following' => 'Přijměte následná uživatelská oznámení od uživatele',
- 'notification-from-following-help' => 'Od následujících skupin obdržíte pouze následující uživatelská oznámení. Tato nastavení jsou přepsána, pokud deaktivujete oznámení',
- 'notification-from-forum' => 'Dostávat oznámení od fóra',
- 'notification-from-forum-help' => 'Budete dostávat oznámení pouze ze systému, personálu a následujících skupin. Tato nastavení jsou přepsána, pokud deaktivujete oznámení',
- 'notification-from-subscription' => 'Přijímat oznámení o odběru',
- 'notification-from-subscription-help' => 'Budete dostávat oznámení pouze ze systému, personálu a následujících skupin. Tato nastavení jsou přepsána, pokud deaktivujete oznámení',
- 'notification-from-torrent' => 'Dostávat Torrent oznámení od',
- 'notification-from-torrent-help' => 'Ty budou přijímat pouze torrent oznámení ze systému, zaměstnanců a následujících skupin. Tato nastavení jsou přepsána, pokud deaktivujete oznámení',
- 'notification-from-mention' => 'Přijmout oznámení o upozornění od uživatele',
- 'notification-from-mention-help' => 'Od systému, personálu a následujících skupin obdržíte pouze oznámení @mention. Tato nastavení jsou přepsána, pokud deaktivujete oznámení',
- 'notification-from-request' => 'Přijmout oznámení o požadavku od',
- 'notification-from-request-help' => 'Obdržíte pouze oznámení od systému, personálu a následujících skupin. Tato nastavení jsou přepsána, pokud deaktivujete oznámení',
- 'notifications' => 'Oznámení',
- 'offline' => 'Uživatel je offline!',
- 'online' => 'Uživatel je online!',
- 'options' => 'Možnosti',
- 'other-help' => 'Řídit sdílení dalších statistik a informací se skupinami, které mají přístup k vašemu profilu. Tato nastavení jsou přepsána, pokud nepovolíte přístup ke všem ostatním statistikám a informacím nebo pokud jdete soukromě',
- 'other-privacy' => 'Další nastavení',
- 'other-privacy-online' => 'Umožnit uživatelům vidět vás v bloku online uživatelů',
- 'passkey' => 'PID',
- 'passkey-warning' => 'PID je jako vaše heslo, musíte ho udržet v bezpečí!',
- 'pending-achievements' => 'Očekávané úspěchy',
- 'per-torrent' => 'Za Torrenta',
- 'posts' => 'Příspěvky',
- 'posts-posted' => 'Publikované příspěvky ve fóru',
- 'privacy' => 'Soukromí',
- 'privacy-settings' => 'Nastavení ochrany osobních údajů',
- 'private-info' => 'Soukromé informace',
- 'private-forum-profile' => 'Pozor: Členové Téma a historie příspěvků byla nastavena na PRIVATE!',
- 'private-profile' => 'Pozor: Tento profil byl nastaven na PRIVÁTNÍ!',
- 'profile' => 'Profil',
- 'profile-desc' => 'Uživatel: profil uživatele registrován na: title',
- 'profile-privacy' => 'Nastavení profilu',
- 'profile-privacy-torrent-count' => 'Podělte se o celkový počet stažení, nahrání, seedu a leechu',
- 'profile-privacy-torrent-ratio' => 'Podělte se o své celkové údaje o nahrávání a stahování spolu se zaznamenaným poměrem',
- 'profile-privacy-torrent-seed' => 'Podělte se o svůj celkový čas setby a průměr',
- 'profile-privacy-title' => 'Sdílejte své osobní informace o titulu',
- 'profile-privacy-about' => 'Podělte se o své osobní informace o mně',
- 'profile-privacy-bon-extra' => 'Sdílejte své statistiky BON',
- 'profile-privacy-comment-extra' => 'Sdílejte své statistiky komentářů',
- 'profile-privacy-forum-extra' => 'Sdílejte statistiky svého fóra',
- 'profile-privacy-request-extra' => 'Sdílejte své statistiky žádostí',
- 'profile-privacy-torrent-extra' => 'Sdílejte své torrent statistiky',
- 'profile-privacy-badge' => 'Sdílejte své vydělané odznaky',
- 'profile-privacy-achievement' => 'Podělte se o své nedávné úspěchy',
- 'profile-privacy-follower' => 'Sdílejte své nedávné následovníky',
- 'profile-privacy-warning' => 'Sdílejte svá varování H&R',
- 'profile-privacy-help' => 'Určete, které statistiky a informace se zobrazí ve vašem profilu. Tato nastavení jsou přepsána, pokud nepovolíte přístup ke svému profilu žádným skupinám nebo pokud jdete na možnost Soukromé',
- 'public-info' => 'Veřejné informace',
- 'recent-achievements' => 'Nedávné úspěchy',
- 'recent-followers' => 'Nedávní následovníci',
- 'registration-date' => 'Datum registrace',
- 'report' => 'Zpráva',
- 'request-help' => 'Řídit sdílení specifických statistik souvisejících s požadavky a informací se skupinami, které mají přístup k vašemu profilu. Tato nastavení jsou přepsána, pokud nedovolíte žádným skupinám přístup k požadovaným souvisejícím statistikám a informacím nebo pokud jdete soukromě',
- 'request' => 'Žádost',
- 'requested' => 'Požadováno',
- 'requests' => 'Žádosti',
- 'request-comments' => 'Vyžádejte si komentáře Made',
- 'request-notification' => 'Požadavky na oznámení',
- 'request-notification-bounty' => 'Přijmout oznámení, když požadovaný torrent dostane novou odměnu',
- 'request-notification-comment' => 'Přijmout oznámení, když požadovaný torrent dostane nový komentář',
- 'request-notification-fill' => 'Obdržíte oznámení, když je požadovaný torrent naplněn',
- 'request-notification-fill-approve' => 'Obdržíte oznámení, když bude schválena požadovaná výplň torrentu',
- 'request-notification-fill-reject' => 'Obdržíte oznámení, když bude požadovaná výplň torrentu odmítnuta',
- 'request-notification-claim' => 'Obdržíte oznámení, když bude požadován požadovaný torrent',
- 'request-notification-unclaim' => 'Přijmout oznámení, když požadovaný torrent dostane nevyžádané',
- 'request-notification-help' => 'Kontrola, která oznámení jsou zasílána ohledně činností žádostí. Tato nastavení jsou přepsána, pokud nedovolíte, aby všechny skupiny odesílaly oznámení týkající se činností žádostí nebo pokud zakázáte oznámení',
- 'request-privacy' => 'Nastavení požadavku',
- 'request-privacy-requested' => 'Umožnit uživatelům zobrazit seznam požadavků, které jste provedli',
- 'reset-passkey' => 'Resetovací klíč (PID)',
- 'reset-passkey-help' => 'Po resetování PID budete muset znovu stáhnout / znovu nahrát všechny své aktivní torrenty',
- 'reset-rss' => 'Obnovit klíč RSS (RID)',
- 'reset-rss-help' => 'Po resetování RID budete muset znovu načíst všechny své aktivní RSS kanály',
- 'resurrections' => 'Vzkříšení',
- 'search' => 'Rychlé vyhledávání podle uživatelského jména',
- 'security' => 'Bezpečnostní',
- 'security-settings' => 'Bezpečnostní nastavení',
- 'seedboxes' => 'Seedboxes',
- 'seeds' => 'Seedy',
- 'send-invite' => 'Poslat pozvánku',
- 'sender' => 'Odesílatel',
- 'settings' => 'Nastavení',
- 'show-passkey' => 'Zobrazit PID',
- 'staff-noted' => 'Účet zaměstnanců',
- 'statistics' => 'Statistika',
- 'subscription-notification' => 'Nastavení oznámení o odběru',
- 'subscription-notification-forum' => 'Pokud obdržíte nové téma, obdržíte oznámení',
- 'subscription-notification-topic' => 'Po obdržení nového příspěvku obdržíte oznámení',
- 'subscription-notification-help' => 'Řídit, která oznámení jsou zasílána ohledně vašich odběrů. Tato nastavení jsou přepsána, pokud nedovolíte, aby všechny skupiny odesílaly oznámení týkající se vašich odběrů nebo zakázaly oznámení',
- 'thanks-given' => 'Díky',
- 'thanks-received' => 'Díky Received',
- 'tips-given' => 'Tipy',
- 'tips-received' => 'Tipy přijaté',
- 'title' => 'Titul',
- 'top-bankers' => 'Top bankéři',
- 'top-downloaders-data' => 'Nejlépe stahovatelé (data)',
- 'top-leechers' => 'Top Leechers',
- 'top-leechers-count' => 'Top Leechers (Počet)',
- 'top-seeders' => 'Top Seeders',
- 'top-seeders-count' => 'Top Seeders (Počet)',
- 'top-seeding-size' => 'Top (velikost)',
- 'top-seedtime' => 'Top seedtime',
- 'top-uploaders-data' => 'Nahrávači (data)',
- 'top-uploaders-count' => 'Počet nejlepších nahrávek (počet)',
- 'topics' => 'Témata',
- 'topics-started' => 'Začala témata fóra',
- 'torrent-comments' => 'Komentáře Torrent',
- 'torrent-help' => 'Řídit sdílení specifických statistik souvisejících s torrentem a informací se skupinami, které mají přístup k vašemu profilu. Tato nastavení jsou přepsána, pokud nepovolíte přístup ke statistikám a informacím souvisejícím s torrentem žádné skupiny nebo pokud jdete soukromě',
- 'torrent-notification' => 'Nastavení oznámení Torrent',
- 'torrent-notification-comment' => 'Obdržíte oznámení, když nahraný torrent dostane nový komentář',
- 'torrent-notification-thank' => 'Obdržíte oznámení, když nahraný torrent dostane nové poděkování',
- 'torrent-notification-tip' => 'Obdržíte oznámení, když nahraný torrent dostane nový tip',
- 'torrent-notification-help' => 'Řídit, která oznámení jsou zasílána týkající se torrent aktivit. Tato nastavení jsou přepsána, pokud nedovolíte, aby všechny skupiny odesílaly upozornění týkající se aktivit torrentu nebo pokud zakázáte oznámení',
- 'torrent-privacy' => 'Nastavení Torrentu',
- 'torrent-privacy-download' => 'Umožnit uživatelům zobrazit seznam torrentů, které jste stáhli',
- 'torrent-privacy-upload' => 'Povolit uživatelům zobrazit seznam torrentů, které jste nahráli',
- 'torrent-privacy-peer' => 'Umožněte uživatelům vidět vás v tabulce historie peerů',
- 'torrents' => 'Torrenty',
- 'torrents-history' => 'Historie torrentů',
- 'total-download' => 'Celkový počet stažení',
- 'total-downloads' => 'Celkový počet stažení',
- 'total-leeching' => 'Celkem Leeching',
- 'total-seeding' => 'Celkový seed',
- 'total-seedtime' => 'Celkový čas seedu',
- 'total-upload' => 'Celkový počet nahrávek',
- 'total-uploads' => 'Celkový počet nahrání',
- 'unban' => 'Unban Uživatel',
- 'unfollow' => 'Nesledovat',
- 'unlocked' => 'Odemčený',
- 'unlocked-achievements' => 'Odemčené úspěchy',
- 'unsatisfieds' => 'Nespokojení',
- 'upload-bon' => 'Upload byl přidán z obchodu BON',
- 'upload-recorded' => 'Nahrané nahrávání',
- 'upload-true' => 'True Upload',
- 'uploads' => 'Nahrávky',
- 'uploads-table' => 'Tabulka nahrávek',
- 'user' => 'Uživatel',
- 'user-id' => 'uživatelské ID',
- 'username-seedbox' => 'Uživatelské jméno Seedbox',
- 'visible-to-achievement' => 'Úspěchy Viditelné Pro',
- 'visible-to-achievement-help' => 'Vaše úspěchy budou viditelné pouze pro zaměstnance a následující skupiny. Tato nastavení jsou přepsána, pokud přejdete na možnost Soukromé',
- 'visible-to-follower' => 'Sledující To',
- 'visible-to-follower-help' => 'Vaši následovníci budou viditelní pouze pro zaměstnance a následující skupiny. Tato nastavení jsou přepsána, pokud přejdete na možnost Soukromé',
- 'visible-to-forum' => 'Informace o fóru Viditelné',
- 'visible-to-forum-help' => 'Informace o fóru budou viditelné pouze pro zaměstnance a následující skupiny. Tato nastavení jsou přepsána, pokud přejdete na možnost Soukromé',
- 'visible-to-other' => 'Ostatní Viditelné',
- 'visible-to-other-help' => 'Další informace týkající se vašeho účtu budou viditelné pouze pro zaměstnance a následující skupiny. Tato nastavení jsou přepsána, pokud jdete soukromě nebo pokud jdete skrýt',
- 'visible-to-profile' => 'Profil Viditelný',
- 'visible-to-profile-help' => 'Váš profil bude viditelný pouze pro zaměstnance a následující skupiny. Tato nastavení jsou přepsána, pokud přejdete na možnost Soukromé',
- 'visible-to-request' => 'Žádost o informace Viditelné',
- 'visible-to-request-help' => 'Vaše informace o požadavku budou viditelné pouze pro zaměstnance a následující skupiny. Tato nastavení jsou přepsána, pokud přejdete na možnost Soukromé',
- 'visible-to-torrent' => 'Informace o Torrent Viditelné',
- 'visible-to-torrent-help' => 'Vaše informace o torrentu budou viditelné pouze pro zaměstnance a následující skupiny. Tato nastavení jsou přepsána, pokud jdete soukromě nebo pokud jdete skrýt',
- 'warned-on' => 'Varováno',
- 'warning' => 'Varování',
- 'warning-log' => 'Varovný protokol',
- 'wishlist' => 'Seznam přání',
+ 'mention-notification-forum-post' => 'Dostanete oznámení, když jste @ postoupeni ve fóru',
+ 'mention-notification-help' => 'Určete, která oznámení budou odeslána, když vás uživatel @mentions. Tato nastavení jsou přepsána, pokud nepovolíte odesílání oznámení žádným skupinám, pokud vás uživatel @mentions nebo deaktivujete.',
+ 'moderated-by' => 'Moderuje: mod on',
+ 'my-bonus-points' => 'Moje bonusové body',
+ 'my-bookmarks' => 'Moje záložky',
+ 'my-fl-tokens' => 'Moje FL tokeny',
+ 'my-general-settings' => 'Moje obecná nastavení',
+ 'my-notification' => 'Moje oznámení',
+ 'my-notification-settings' => 'Nastavení oznámení',
+ 'my-privacy' => 'Moje soukromí',
+ 'my-privacy-settings' => 'Nastavení osobních údajů',
+ 'my-profile' => 'Můj profil',
+ 'my-requested' => 'Můj požadavek',
+ 'my-security' => 'Moje bezpečnost',
+ 'my-security-settings' => 'Nastavení zabezpečení',
+ 'my-seedboxes' => 'Moje Seedboxes',
+ 'my-settings' => 'Moje nastavení',
+ 'my-wishlist' => 'můj list přání',
+ 'no-logs' => 'Tento uživatel nemá v databázi žádné pozvánky!',
+ 'no-seedboxes' => 'Žádné secí skříně 😔',
+ 'not-authorized' => 'Nemáte oprávnění zobrazit tuto stránku. Tento člen dává přednost skrytí jako ninja!',
+ 'note' => 'Poznámka',
+ 'notification' => 'Oznámení',
+ 'notification-settings' => 'Nastavení upozornění',
+ 'notification-from-account' => 'Přijměte oznámení o účtu',
+ 'notification-from-account-help' => 'Obdržíte pouze oznámení o účtu ze systému, personálu a následujících skupin. Tato nastavení jsou přepsána, pokud deaktivujete oznámení',
+ 'notification-from-bon' => 'Dostávat oznámení BON od',
+ 'notification-from-bon-help' => 'Oznámení BON obdržíte pouze od systému, personálu a následujících skupin. Tato nastavení jsou přepsána, pokud deaktivujete oznámení',
+ 'notification-from-following' => 'Přijměte následná uživatelská oznámení od uživatele',
+ 'notification-from-following-help' => 'Od následujících skupin obdržíte pouze následující uživatelská oznámení. Tato nastavení jsou přepsána, pokud deaktivujete oznámení',
+ 'notification-from-forum' => 'Dostávat oznámení od fóra',
+ 'notification-from-forum-help' => 'Budete dostávat oznámení pouze ze systému, personálu a následujících skupin. Tato nastavení jsou přepsána, pokud deaktivujete oznámení',
+ 'notification-from-subscription' => 'Přijímat oznámení o odběru',
+ 'notification-from-subscription-help' => 'Budete dostávat oznámení pouze ze systému, personálu a následujících skupin. Tato nastavení jsou přepsána, pokud deaktivujete oznámení',
+ 'notification-from-torrent' => 'Dostávat Torrent oznámení od',
+ 'notification-from-torrent-help' => 'Ty budou přijímat pouze torrent oznámení ze systému, zaměstnanců a následujících skupin. Tato nastavení jsou přepsána, pokud deaktivujete oznámení',
+ 'notification-from-mention' => 'Přijmout oznámení o upozornění od uživatele',
+ 'notification-from-mention-help' => 'Od systému, personálu a následujících skupin obdržíte pouze oznámení @mention. Tato nastavení jsou přepsána, pokud deaktivujete oznámení',
+ 'notification-from-request' => 'Přijmout oznámení o požadavku od',
+ 'notification-from-request-help' => 'Obdržíte pouze oznámení od systému, personálu a následujících skupin. Tato nastavení jsou přepsána, pokud deaktivujete oznámení',
+ 'notifications' => 'Oznámení',
+ 'offline' => 'Uživatel je offline!',
+ 'online' => 'Uživatel je online!',
+ 'options' => 'Možnosti',
+ 'other-help' => 'Řídit sdílení dalších statistik a informací se skupinami, které mají přístup k vašemu profilu. Tato nastavení jsou přepsána, pokud nepovolíte přístup ke všem ostatním statistikám a informacím nebo pokud jdete soukromě',
+ 'other-privacy' => 'Další nastavení',
+ 'other-privacy-online' => 'Umožnit uživatelům vidět vás v bloku online uživatelů',
+ 'passkey' => 'PID',
+ 'passkey-warning' => 'PID je jako vaše heslo, musíte ho udržet v bezpečí!',
+ 'pending-achievements' => 'Očekávané úspěchy',
+ 'per-torrent' => 'Za Torrenta',
+ 'posts' => 'Příspěvky',
+ 'posts-posted' => 'Publikované příspěvky ve fóru',
+ 'privacy' => 'Soukromí',
+ 'privacy-settings' => 'Nastavení ochrany osobních údajů',
+ 'private-info' => 'Soukromé informace',
+ 'private-forum-profile' => 'Pozor: Členové Téma a historie příspěvků byla nastavena na PRIVATE!',
+ 'private-profile' => 'Pozor: Tento profil byl nastaven na PRIVÁTNÍ!',
+ 'profile' => 'Profil',
+ 'profile-desc' => 'Uživatel: profil uživatele registrován na: title',
+ 'profile-privacy' => 'Nastavení profilu',
+ 'profile-privacy-torrent-count' => 'Podělte se o celkový počet stažení, nahrání, seedu a leechu',
+ 'profile-privacy-torrent-ratio' => 'Podělte se o své celkové údaje o nahrávání a stahování spolu se zaznamenaným poměrem',
+ 'profile-privacy-torrent-seed' => 'Podělte se o svůj celkový čas setby a průměr',
+ 'profile-privacy-title' => 'Sdílejte své osobní informace o titulu',
+ 'profile-privacy-about' => 'Podělte se o své osobní informace o mně',
+ 'profile-privacy-bon-extra' => 'Sdílejte své statistiky BON',
+ 'profile-privacy-comment-extra' => 'Sdílejte své statistiky komentářů',
+ 'profile-privacy-forum-extra' => 'Sdílejte statistiky svého fóra',
+ 'profile-privacy-request-extra' => 'Sdílejte své statistiky žádostí',
+ 'profile-privacy-torrent-extra' => 'Sdílejte své torrent statistiky',
+ 'profile-privacy-badge' => 'Sdílejte své vydělané odznaky',
+ 'profile-privacy-achievement' => 'Podělte se o své nedávné úspěchy',
+ 'profile-privacy-follower' => 'Sdílejte své nedávné následovníky',
+ 'profile-privacy-warning' => 'Sdílejte svá varování H&R',
+ 'profile-privacy-help' => 'Určete, které statistiky a informace se zobrazí ve vašem profilu. Tato nastavení jsou přepsána, pokud nepovolíte přístup ke svému profilu žádným skupinám nebo pokud jdete na možnost Soukromé',
+ 'public-info' => 'Veřejné informace',
+ 'recent-achievements' => 'Nedávné úspěchy',
+ 'recent-followers' => 'Nedávní následovníci',
+ 'registration-date' => 'Datum registrace',
+ 'report' => 'Zpráva',
+ 'request-help' => 'Řídit sdílení specifických statistik souvisejících s požadavky a informací se skupinami, které mají přístup k vašemu profilu. Tato nastavení jsou přepsána, pokud nedovolíte žádným skupinám přístup k požadovaným souvisejícím statistikám a informacím nebo pokud jdete soukromě',
+ 'request' => 'Žádost',
+ 'requested' => 'Požadováno',
+ 'requests' => 'Žádosti',
+ 'request-comments' => 'Vyžádejte si komentáře Made',
+ 'request-notification' => 'Požadavky na oznámení',
+ 'request-notification-bounty' => 'Přijmout oznámení, když požadovaný torrent dostane novou odměnu',
+ 'request-notification-comment' => 'Přijmout oznámení, když požadovaný torrent dostane nový komentář',
+ 'request-notification-fill' => 'Obdržíte oznámení, když je požadovaný torrent naplněn',
+ 'request-notification-fill-approve' => 'Obdržíte oznámení, když bude schválena požadovaná výplň torrentu',
+ 'request-notification-fill-reject' => 'Obdržíte oznámení, když bude požadovaná výplň torrentu odmítnuta',
+ 'request-notification-claim' => 'Obdržíte oznámení, když bude požadován požadovaný torrent',
+ 'request-notification-unclaim' => 'Přijmout oznámení, když požadovaný torrent dostane nevyžádané',
+ 'request-notification-help' => 'Kontrola, která oznámení jsou zasílána ohledně činností žádostí. Tato nastavení jsou přepsána, pokud nedovolíte, aby všechny skupiny odesílaly oznámení týkající se činností žádostí nebo pokud zakázáte oznámení',
+ 'request-privacy' => 'Nastavení požadavku',
+ 'request-privacy-requested' => 'Umožnit uživatelům zobrazit seznam požadavků, které jste provedli',
+ 'reset-passkey' => 'Resetovací klíč (PID)',
+ 'reset-passkey-help' => 'Po resetování PID budete muset znovu stáhnout / znovu nahrát všechny své aktivní torrenty',
+ 'reset-rss' => 'Obnovit klíč RSS (RID)',
+ 'reset-rss-help' => 'Po resetování RID budete muset znovu načíst všechny své aktivní RSS kanály',
+ 'resurrections' => 'Vzkříšení',
+ 'search' => 'Rychlé vyhledávání podle uživatelského jména',
+ 'security' => 'Bezpečnostní',
+ 'security-settings' => 'Bezpečnostní nastavení',
+ 'seedboxes' => 'Seedboxes',
+ 'seeds' => 'Seedy',
+ 'send-invite' => 'Poslat pozvánku',
+ 'sender' => 'Odesílatel',
+ 'settings' => 'Nastavení',
+ 'show-passkey' => 'Zobrazit PID',
+ 'staff-noted' => 'Účet zaměstnanců',
+ 'statistics' => 'Statistika',
+ 'subscription-notification' => 'Nastavení oznámení o odběru',
+ 'subscription-notification-forum' => 'Pokud obdržíte nové téma, obdržíte oznámení',
+ 'subscription-notification-topic' => 'Po obdržení nového příspěvku obdržíte oznámení',
+ 'subscription-notification-help' => 'Řídit, která oznámení jsou zasílána ohledně vašich odběrů. Tato nastavení jsou přepsána, pokud nedovolíte, aby všechny skupiny odesílaly oznámení týkající se vašich odběrů nebo zakázaly oznámení',
+ 'thanks-given' => 'Díky',
+ 'thanks-received' => 'Díky Received',
+ 'tips-given' => 'Tipy',
+ 'tips-received' => 'Tipy přijaté',
+ 'title' => 'Titul',
+ 'top-bankers' => 'Top bankéři',
+ 'top-downloaders-data' => 'Nejlépe stahovatelé (data)',
+ 'top-leechers' => 'Top Leechers',
+ 'top-leechers-count' => 'Top Leechers (Počet)',
+ 'top-seeders' => 'Top Seeders',
+ 'top-seeders-count' => 'Top Seeders (Počet)',
+ 'top-seeding-size' => 'Top (velikost)',
+ 'top-seedtime' => 'Top seedtime',
+ 'top-uploaders-data' => 'Nahrávači (data)',
+ 'top-uploaders-count' => 'Počet nejlepších nahrávek (počet)',
+ 'topics' => 'Témata',
+ 'topics-started' => 'Začala témata fóra',
+ 'torrent-comments' => 'Komentáře Torrent',
+ 'torrent-help' => 'Řídit sdílení specifických statistik souvisejících s torrentem a informací se skupinami, které mají přístup k vašemu profilu. Tato nastavení jsou přepsána, pokud nepovolíte přístup ke statistikám a informacím souvisejícím s torrentem žádné skupiny nebo pokud jdete soukromě',
+ 'torrent-notification' => 'Nastavení oznámení Torrent',
+ 'torrent-notification-comment' => 'Obdržíte oznámení, když nahraný torrent dostane nový komentář',
+ 'torrent-notification-thank' => 'Obdržíte oznámení, když nahraný torrent dostane nové poděkování',
+ 'torrent-notification-tip' => 'Obdržíte oznámení, když nahraný torrent dostane nový tip',
+ 'torrent-notification-help' => 'Řídit, která oznámení jsou zasílána týkající se torrent aktivit. Tato nastavení jsou přepsána, pokud nedovolíte, aby všechny skupiny odesílaly upozornění týkající se aktivit torrentu nebo pokud zakázáte oznámení',
+ 'torrent-privacy' => 'Nastavení Torrentu',
+ 'torrent-privacy-download' => 'Umožnit uživatelům zobrazit seznam torrentů, které jste stáhli',
+ 'torrent-privacy-upload' => 'Povolit uživatelům zobrazit seznam torrentů, které jste nahráli',
+ 'torrent-privacy-peer' => 'Umožněte uživatelům vidět vás v tabulce historie peerů',
+ 'torrents' => 'Torrenty',
+ 'torrents-history' => 'Historie torrentů',
+ 'total-download' => 'Celkový počet stažení',
+ 'total-downloads' => 'Celkový počet stažení',
+ 'total-leeching' => 'Celkem Leeching',
+ 'total-seeding' => 'Celkový seed',
+ 'total-seedtime' => 'Celkový čas seedu',
+ 'total-upload' => 'Celkový počet nahrávek',
+ 'total-uploads' => 'Celkový počet nahrání',
+ 'unban' => 'Unban Uživatel',
+ 'unfollow' => 'Nesledovat',
+ 'unlocked' => 'Odemčený',
+ 'unlocked-achievements' => 'Odemčené úspěchy',
+ 'unsatisfieds' => 'Nespokojení',
+ 'upload-bon' => 'Upload byl přidán z obchodu BON',
+ 'upload-recorded' => 'Nahrané nahrávání',
+ 'upload-true' => 'True Upload',
+ 'uploads' => 'Nahrávky',
+ 'uploads-table' => 'Tabulka nahrávek',
+ 'user' => 'Uživatel',
+ 'user-id' => 'uživatelské ID',
+ 'username-seedbox' => 'Uživatelské jméno Seedbox',
+ 'visible-to-achievement' => 'Úspěchy Viditelné Pro',
+ 'visible-to-achievement-help' => 'Vaše úspěchy budou viditelné pouze pro zaměstnance a následující skupiny. Tato nastavení jsou přepsána, pokud přejdete na možnost Soukromé',
+ 'visible-to-follower' => 'Sledující To',
+ 'visible-to-follower-help' => 'Vaši následovníci budou viditelní pouze pro zaměstnance a následující skupiny. Tato nastavení jsou přepsána, pokud přejdete na možnost Soukromé',
+ 'visible-to-forum' => 'Informace o fóru Viditelné',
+ 'visible-to-forum-help' => 'Informace o fóru budou viditelné pouze pro zaměstnance a následující skupiny. Tato nastavení jsou přepsána, pokud přejdete na možnost Soukromé',
+ 'visible-to-other' => 'Ostatní Viditelné',
+ 'visible-to-other-help' => 'Další informace týkající se vašeho účtu budou viditelné pouze pro zaměstnance a následující skupiny. Tato nastavení jsou přepsána, pokud jdete soukromě nebo pokud jdete skrýt',
+ 'visible-to-profile' => 'Profil Viditelný',
+ 'visible-to-profile-help' => 'Váš profil bude viditelný pouze pro zaměstnance a následující skupiny. Tato nastavení jsou přepsána, pokud přejdete na možnost Soukromé',
+ 'visible-to-request' => 'Žádost o informace Viditelné',
+ 'visible-to-request-help' => 'Vaše informace o požadavku budou viditelné pouze pro zaměstnance a následující skupiny. Tato nastavení jsou přepsána, pokud přejdete na možnost Soukromé',
+ 'visible-to-torrent' => 'Informace o Torrent Viditelné',
+ 'visible-to-torrent-help' => 'Vaše informace o torrentu budou viditelné pouze pro zaměstnance a následující skupiny. Tato nastavení jsou přepsána, pokud jdete soukromě nebo pokud jdete skrýt',
+ 'warned-on' => 'Varováno',
+ 'warning' => 'Varování',
+ 'warning-log' => 'Varovný protokol',
+ 'wishlist' => 'Seznam přání',
];
diff --git a/lang/cs/validation.php b/lang/cs/validation.php
index 4a612e425..a3d5b275a 100644
--- a/lang/cs/validation.php
+++ b/lang/cs/validation.php
@@ -23,108 +23,108 @@ return [
|
*/
- 'accepted' => ':attribute musí být přijat.',
- 'active_url' => ':attribute není platnou URL adresou.',
- 'after' => ':attribute musí být datum po :date.',
- 'after_or_equal' => ':attribute musí být datum :date nebo pozdější.',
- 'alpha' => ':attribute může obsahovat pouze písmena.',
- 'alpha_dash' => ':attribute může obsahovat pouze písmena, číslice, pomlčky a podtržítka. České znaky (á, é, í, ó, ú, ů, ž, š, č, ř, ď, ť, ň) nejsou podporovány.',
- 'alpha_num' => ':attribute může obsahovat pouze písmena a číslice.',
- 'array' => ':attribute musí být pole.',
- 'before' => ':attribute musí být datum před :date.',
- 'before_or_equal' => 'Datum :attribute musí být před nebo rovno :date.',
- 'between' => [
+ 'accepted' => ':attribute musí být přijat.',
+ 'active_url' => ':attribute není platnou URL adresou.',
+ 'after' => ':attribute musí být datum po :date.',
+ 'after_or_equal' => ':attribute musí být datum :date nebo pozdější.',
+ 'alpha' => ':attribute může obsahovat pouze písmena.',
+ 'alpha_dash' => ':attribute může obsahovat pouze písmena, číslice, pomlčky a podtržítka. České znaky (á, é, í, ó, ú, ů, ž, š, č, ř, ď, ť, ň) nejsou podporovány.',
+ 'alpha_num' => ':attribute může obsahovat pouze písmena a číslice.',
+ 'array' => ':attribute musí být pole.',
+ 'before' => ':attribute musí být datum před :date.',
+ 'before_or_equal' => 'Datum :attribute musí být před nebo rovno :date.',
+ 'between' => [
'numeric' => ':attribute musí být hodnota mezi :min a :max.',
- 'file' => ':attribute musí být větší než :min a menší než :max Kilobytů.',
- 'string' => ':attribute musí být delší než :min a kratší než :max znaků.',
- 'array' => ':attribute musí obsahovat nejméně :min a nesmí obsahovat více než :max prvků.',
+ 'file' => ':attribute musí být větší než :min a menší než :max Kilobytů.',
+ 'string' => ':attribute musí být delší než :min a kratší než :max znaků.',
+ 'array' => ':attribute musí obsahovat nejméně :min a nesmí obsahovat více než :max prvků.',
],
- 'boolean' => ':attribute musí být true nebo false',
- 'confirmed' => ':attribute nesouhlasí.',
- 'date' => ':attribute musí být platné datum.',
- 'date_equals' => 'The :attribute must be a date equal to :date.',
- 'date_format' => ':attribute není platný formát data podle :format.',
- 'different' => ':attribute a :other se musí lišit.',
- 'digits' => ':attribute musí být :digits pozic dlouhé.',
- 'digits_between' => ':attribute musí být dlouhé nejméně :min a nejvíce :max pozic.',
- 'dimensions' => ':attribute má neplatné rozměry.',
- 'distinct' => ':attribute má duplicitní hodnotu.',
- 'email' => ':attribute není platný formát.',
- 'exists' => 'Zvolená hodnota pro :attribute není platná.',
- 'file' => ':attribute musí být soubor.',
- 'filled' => ':attribute musí být vyplněno.',
- 'gt' => [
+ 'boolean' => ':attribute musí být true nebo false',
+ 'confirmed' => ':attribute nesouhlasí.',
+ 'date' => ':attribute musí být platné datum.',
+ 'date_equals' => 'The :attribute must be a date equal to :date.',
+ 'date_format' => ':attribute není platný formát data podle :format.',
+ 'different' => ':attribute a :other se musí lišit.',
+ 'digits' => ':attribute musí být :digits pozic dlouhé.',
+ 'digits_between' => ':attribute musí být dlouhé nejméně :min a nejvíce :max pozic.',
+ 'dimensions' => ':attribute má neplatné rozměry.',
+ 'distinct' => ':attribute má duplicitní hodnotu.',
+ 'email' => ':attribute není platný formát.',
+ 'exists' => 'Zvolená hodnota pro :attribute není platná.',
+ 'file' => ':attribute musí být soubor.',
+ 'filled' => ':attribute musí být vyplněno.',
+ 'gt' => [
'numeric' => ':attribute musí být větší než :value.',
- 'file' => 'Velikost souboru :attribute musí být větší než :value kB.',
- 'string' => 'Počet znaků :attribute musí být větší :value.',
- 'array' => 'Pole :attribute musí mít více prvků než :value.',
+ 'file' => 'Velikost souboru :attribute musí být větší než :value kB.',
+ 'string' => 'Počet znaků :attribute musí být větší :value.',
+ 'array' => 'Pole :attribute musí mít více prvků než :value.',
],
- 'gte' => [
+ 'gte' => [
'numeric' => ':attribute musí být větší nebo rovno :value.',
- 'file' => 'Velikost souboru :attribute musí být větší nebo rovno :value kB.',
- 'string' => 'Počet znaků :attribute musí být větší nebo rovno :value.',
- 'array' => 'Pole :attribute musí mít :value prvků nebo více.',
+ 'file' => 'Velikost souboru :attribute musí být větší nebo rovno :value kB.',
+ 'string' => 'Počet znaků :attribute musí být větší nebo rovno :value.',
+ 'array' => 'Pole :attribute musí mít :value prvků nebo více.',
],
- 'image' => ':attribute musí být obrázek.',
- 'in' => 'Zvolená hodnota pro :attribute je neplatná.',
- 'in_array' => ':attribute není obsažen v :other.',
- 'integer' => ':attribute musí být celé číslo.',
- 'ip' => ':attribute musí být platnou IP adresou.',
- 'ipv4' => ':attribute musí být platná IPv4 adresa.',
- 'ipv6' => ':attribute musí být platná IPv6 adresa.',
- 'json' => ':attribute musí být platný JSON řetězec.',
- 'lt' => [
+ 'image' => ':attribute musí být obrázek.',
+ 'in' => 'Zvolená hodnota pro :attribute je neplatná.',
+ 'in_array' => ':attribute není obsažen v :other.',
+ 'integer' => ':attribute musí být celé číslo.',
+ 'ip' => ':attribute musí být platnou IP adresou.',
+ 'ipv4' => ':attribute musí být platná IPv4 adresa.',
+ 'ipv6' => ':attribute musí být platná IPv6 adresa.',
+ 'json' => ':attribute musí být platný JSON řetězec.',
+ 'lt' => [
'numeric' => ':attribute musí být menší než :value.',
- 'file' => 'Velikost souboru :attribute musí být menší než :value kB.',
- 'string' => ':attribute musí obsahovat méně než :value znaků.',
- 'array' => ':attribute by měl obsahovat méně než :value položek.',
+ 'file' => 'Velikost souboru :attribute musí být menší než :value kB.',
+ 'string' => ':attribute musí obsahovat méně než :value znaků.',
+ 'array' => ':attribute by měl obsahovat méně než :value položek.',
],
- 'lte' => [
+ 'lte' => [
'numeric' => ':attribute musí být menší nebo rovno než :value.',
- 'file' => 'Velikost souboru :attribute musí být menší než :value kB.',
- 'string' => ':attribute nesmí být delší než :value znaků.',
- 'array' => ':attribute by měl obsahovat maximálně :value položek.',
+ 'file' => 'Velikost souboru :attribute musí být menší než :value kB.',
+ 'string' => ':attribute nesmí být delší než :value znaků.',
+ 'array' => ':attribute by měl obsahovat maximálně :value položek.',
],
- 'max' => [
+ 'max' => [
'numeric' => ':attribute nemůže být větší než :max.',
- 'file' => 'Velikost souboru :attribute musí být menší než :value kB.',
- 'string' => ':attribute nemůže být delší než :max znaků.',
- 'array' => ':attribute nemůže obsahovat více než :max prvků.',
+ 'file' => 'Velikost souboru :attribute musí být menší než :value kB.',
+ 'string' => ':attribute nemůže být delší než :max znaků.',
+ 'array' => ':attribute nemůže obsahovat více než :max prvků.',
],
- 'mimes' => ':attribute musí být jeden z následujících datových typů :values.',
- 'mimetypes' => ':attribute musí být jeden z následujících datových typů :values.',
- 'min' => [
+ 'mimes' => ':attribute musí být jeden z následujících datových typů :values.',
+ 'mimetypes' => ':attribute musí být jeden z následujících datových typů :values.',
+ 'min' => [
'numeric' => ':attribute musí být alespoň :min.',
- 'file' => ':attribute musí mít alespoň :min kB.',
- 'string' => ':attribute musí mít délku alespoň :min znaků.',
- 'array' => ':attribute musí obsahovat alespoň :min prvků.',
+ 'file' => ':attribute musí mít alespoň :min kB.',
+ 'string' => ':attribute musí mít délku alespoň :min znaků.',
+ 'array' => ':attribute musí obsahovat alespoň :min prvků.',
],
- 'not_in' => 'Zvolená hodnota pro :attribute je neplatná.',
- 'not_regex' => ':attribute musí být regulární výraz.',
- 'numeric' => ':attribute musí být číslo.',
- 'present' => ':attribute musí být vyplněno.',
- 'regex' => ':attribute nemá správný formát.',
- 'required' => ':attribute musí být vyplněno.',
- 'required_if' => ':attribute musí být vyplněno pokud :other je :value.',
- 'required_unless' => ':attribute musí být vyplněno dokud :other je v :values.',
- 'required_with' => ':attribute musí být vyplněno pokud :values je vyplněno.',
- 'required_with_all' => ':attribute musí být vyplněno pokud :values je zvoleno.',
- 'required_without' => ':attribute musí být vyplněno pokud :values není vyplněno.',
+ 'not_in' => 'Zvolená hodnota pro :attribute je neplatná.',
+ 'not_regex' => ':attribute musí být regulární výraz.',
+ 'numeric' => ':attribute musí být číslo.',
+ 'present' => ':attribute musí být vyplněno.',
+ 'regex' => ':attribute nemá správný formát.',
+ 'required' => ':attribute musí být vyplněno.',
+ 'required_if' => ':attribute musí být vyplněno pokud :other je :value.',
+ 'required_unless' => ':attribute musí být vyplněno dokud :other je v :values.',
+ 'required_with' => ':attribute musí být vyplněno pokud :values je vyplněno.',
+ 'required_with_all' => ':attribute musí být vyplněno pokud :values je zvoleno.',
+ 'required_without' => ':attribute musí být vyplněno pokud :values není vyplněno.',
'required_without_all' => ':attribute musí být vyplněno pokud není žádné z :values zvoleno.',
- 'same' => ':attribute a :other se musí shodovat.',
- 'size' => [
+ 'same' => ':attribute a :other se musí shodovat.',
+ 'size' => [
'numeric' => ':attribute musí být přesně :size.',
- 'file' => ':attribute musí mít přesně :size Kilobytů.',
- 'string' => ':attribute musí být přesně :size znaků dlouhý.',
- 'array' => ':attribute musí obsahovat právě :size prvků.',
+ 'file' => ':attribute musí mít přesně :size Kilobytů.',
+ 'string' => ':attribute musí být přesně :size znaků dlouhý.',
+ 'array' => ':attribute musí obsahovat právě :size prvků.',
],
- 'starts_with' => 'The :attribute must start with one of the following: :values',
- 'string' => ':attribute musí být řetězec znaků.',
- 'timezone' => ':attribute musí být platná časová zóna.',
- 'unique' => ':attribute musí být unikátní.',
- 'uploaded' => 'Nahrávání :attribute se nezdařilo.',
- 'url' => 'Formát :attribute je neplatný.',
- 'uuid' => ':attribute musí být validní UUID.',
+ 'starts_with' => 'The :attribute must start with one of the following: :values',
+ 'string' => ':attribute musí být řetězec znaků.',
+ 'timezone' => ':attribute musí být platná časová zóna.',
+ 'unique' => ':attribute musí být unikátní.',
+ 'uploaded' => 'Nahrávání :attribute se nezdařilo.',
+ 'url' => 'Formát :attribute je neplatný.',
+ 'uuid' => ':attribute musí být validní UUID.',
/*
|--------------------------------------------------------------------------
diff --git a/lang/cy/articles.php b/lang/cy/articles.php
index 71b316ad5..963b4308e 100644
--- a/lang/cy/articles.php
+++ b/lang/cy/articles.php
@@ -12,8 +12,8 @@
*/
return [
- 'articles' => 'Erthyglau',
+ 'articles' => 'Erthyglau',
'meta-articles' => 'Erthyglau a newyddion am y traciwr a r gymuned',
- 'published-at' => 'Cyhoeddwyd Ar',
- 'read-more' => 'Darllen mwy',
+ 'published-at' => 'Cyhoeddwyd Ar',
+ 'read-more' => 'Darllen mwy',
];
diff --git a/lang/cy/auth.php b/lang/cy/auth.php
index fc51cd165..ee4eeafde 100644
--- a/lang/cy/auth.php
+++ b/lang/cy/auth.php
@@ -23,6 +23,6 @@ return [
|
*/
- 'failed' => 'These credentials do not match our records.',
+ 'failed' => 'These credentials do not match our records.',
'throttle' => 'Too many login attempts. Please try again in :seconds seconds.',
];
diff --git a/lang/cy/backup.php b/lang/cy/backup.php
index 6d81fe66c..9afd248f3 100644
--- a/lang/cy/backup.php
+++ b/lang/cy/backup.php
@@ -12,32 +12,32 @@
*/
return [
- 'actions' => 'Camau gweithredu',
- 'backup' => 'Wrth gefn',
- 'backup_doesnt_exist' => 'Nid yw r ffeil wrth gefn yn bodoli.',
- 'create_a_new_backup' => 'Creu copi wrth gefn llawn',
- 'create_a_new_files_backup' => 'Creu Ffeiliau wrth gefn',
- 'create_a_new_db_backup' => 'Creu copi wrth gefn o r gronfa ddata',
- 'create_confirmation_message' => 'Ail-lwytho r dudalen mewn 3 eiliad.',
- 'create_confirmation_title' => 'Cwblhawyd copi wrth gefn',
- 'create_error_message' => 'NI ellir creu r ffeil wrth gefn.',
- 'create_error_title' => 'Gwall wrth gefn',
- 'create_warning_message' => 'Efallai na fydd eich copi wrth gefn wedi i greu. Gwiriwch ffeiliau log am fanylion.',
- 'create_warning_title' => 'Gwall anhysbys',
- 'date' => 'Dyddiad',
- 'delete' => 'Dileu',
- 'delete_cancel_message' => 'NID yw r ffeil wrth gefn wedi i dileu.',
- 'delete_cancel_title' => 'Mae n iawn',
- 'delete_confirm' => 'A ydych chi n siŵr eich bod am ddileu r ffeil wrth gefn hon?',
- 'delete_confirmation_message' => 'Cafodd y ffeil wrth gefn ei dileu.',
- 'delete_confirmation_title' => 'Wedi i wneud',
- 'delete_error_message' => 'NID yw r ffeil wrth gefn wedi i dileu.',
- 'delete_error_title' => 'Gwall',
- 'download' => 'Lawrlwytho',
- 'existing_backups' => 'Copïau wrth gefn presennol',
- 'file_size' => 'Maint ffeil',
- 'location' => 'Lleoliad',
- 'manager' => 'Rheolwr',
- 'no_disks_configured' => 'Dim disgiau wrth gefn wedi u ffurfweddu yn config / backup.php',
+ 'actions' => 'Camau gweithredu',
+ 'backup' => 'Wrth gefn',
+ 'backup_doesnt_exist' => 'Nid yw r ffeil wrth gefn yn bodoli.',
+ 'create_a_new_backup' => 'Creu copi wrth gefn llawn',
+ 'create_a_new_files_backup' => 'Creu Ffeiliau wrth gefn',
+ 'create_a_new_db_backup' => 'Creu copi wrth gefn o r gronfa ddata',
+ 'create_confirmation_message' => 'Ail-lwytho r dudalen mewn 3 eiliad.',
+ 'create_confirmation_title' => 'Cwblhawyd copi wrth gefn',
+ 'create_error_message' => 'NI ellir creu r ffeil wrth gefn.',
+ 'create_error_title' => 'Gwall wrth gefn',
+ 'create_warning_message' => 'Efallai na fydd eich copi wrth gefn wedi i greu. Gwiriwch ffeiliau log am fanylion.',
+ 'create_warning_title' => 'Gwall anhysbys',
+ 'date' => 'Dyddiad',
+ 'delete' => 'Dileu',
+ 'delete_cancel_message' => 'NID yw r ffeil wrth gefn wedi i dileu.',
+ 'delete_cancel_title' => 'Mae n iawn',
+ 'delete_confirm' => 'A ydych chi n siŵr eich bod am ddileu r ffeil wrth gefn hon?',
+ 'delete_confirmation_message' => 'Cafodd y ffeil wrth gefn ei dileu.',
+ 'delete_confirmation_title' => 'Wedi i wneud',
+ 'delete_error_message' => 'NID yw r ffeil wrth gefn wedi i dileu.',
+ 'delete_error_title' => 'Gwall',
+ 'download' => 'Lawrlwytho',
+ 'existing_backups' => 'Copïau wrth gefn presennol',
+ 'file_size' => 'Maint ffeil',
+ 'location' => 'Lleoliad',
+ 'manager' => 'Rheolwr',
+ 'no_disks_configured' => 'Dim disgiau wrth gefn wedi u ffurfweddu yn config / backup.php',
'only_local_downloads_supported' => 'Dim ond lawrlwythiadau o r system ffeiliau leol sy n cael eu cefnogi.',
];
diff --git a/lang/cy/blocks.php b/lang/cy/blocks.php
index f25d19af6..553024a54 100644
--- a/lang/cy/blocks.php
+++ b/lang/cy/blocks.php
@@ -12,19 +12,19 @@
*/
return [
- 'chatbox' => 'Chat Box',
- 'click' => 'Cliciwch',
- 'to-enable-editor' => 'i alluogi golygydd',
- 'featured-by' => 'Sylw gan',
- 'featured-torrents' => 'Cenhedlaeth dan Sylw',
+ 'chatbox' => 'Chat Box',
+ 'click' => 'Cliciwch',
+ 'to-enable-editor' => 'i alluogi golygydd',
+ 'featured-by' => 'Sylw gan',
+ 'featured-torrents' => 'Cenhedlaeth dan Sylw',
'featured-torrents-intro' => 'Cael Them Tra Allwch Chi!',
- 'featured-until' => 'Mae hyn yn ymddangos yn ffyrnig tan',
- 'top-torrents' => 'Y Cenhedloedd Gorau',
- 'latest-posts' => 'Swyddi Diweddaraf',
- 'latest-topics' => 'Y Pynciau Diweddaraf',
- 'active-in-last' => 'Yn weithgar o r diwedd',
- 'users-online' => 'Defnyddwyr Ar-lein',
- 'check-news' => 'Newyddion (gwiriwch bob dydd)',
- 'new-news' => 'Newyddion Newydd',
- 'new-torrents' => 'Ffrydiau newydd',
+ 'featured-until' => 'Mae hyn yn ymddangos yn ffyrnig tan',
+ 'top-torrents' => 'Y Cenhedloedd Gorau',
+ 'latest-posts' => 'Swyddi Diweddaraf',
+ 'latest-topics' => 'Y Pynciau Diweddaraf',
+ 'active-in-last' => 'Yn weithgar o r diwedd',
+ 'users-online' => 'Defnyddwyr Ar-lein',
+ 'check-news' => 'Newyddion (gwiriwch bob dydd)',
+ 'new-news' => 'Newyddion Newydd',
+ 'new-torrents' => 'Ffrydiau newydd',
];
diff --git a/lang/cy/bon.php b/lang/cy/bon.php
index 079c1f358..922ffb720 100644
--- a/lang/cy/bon.php
+++ b/lang/cy/bon.php
@@ -12,44 +12,44 @@
*/
return [
- 'activated' => 'Wedi i actifadu',
- 'active' => 'Wedi i actio!',
- 'amount' => 'Swm',
- 'bon' => 'BON',
- 'bonus' => 'Bonws',
- 'date' => 'Dyddiad',
- 'earning' => 'Ennill',
- 'earning-rate' => 'Ar y gyfradd hon o ennill byddwch yn ennill y canlynol fesul amserlen ..',
- 'earnings' => 'Enillion',
- 'exchange' => 'Cyfnewid',
- 'exchange-warning' => 'Mae cyfnewidiadau n derfynol, Gwiriwch eich dewisiadau ddwywaith cyn cyfnewid.',
- 'extended-stats' => 'Ystadegau Estynedig',
- 'gift' => 'Rhodd',
- 'gift-bonus' => 'Pwyntiau Bonws Rhodd',
- 'gift-to' => 'Pwyntiau Bonws Rhodd I',
- 'gifts' => 'Rhoddion',
- 'item' => 'Eitem',
- 'no-refund' => 'DIM AD-DALIADAU!',
- 'per-day' => 'Pwyntiau fesul diwrnod',
- 'per-hour' => 'Pwyntiau fesul Awr',
- 'per-minute' => 'Pwyntiau fesul munud',
- 'per-month' => 'Pwyntiau fesul mis',
- 'per-second' => 'Pwyntiau fesul eiliad',
- 'per-week' => 'Pwyntiau fesul wythnos',
- 'per-year' => 'Pwyntiau fesul blwyddyn',
- 'points' => 'Pwyntiau',
- 'receiver' => 'Derbynnydd',
- 'review-seeds' => 'Adolygu r holl Rifau Seeded',
- 'send-gift' => 'Danfon anrheg',
- 'sender' => 'Anfonwr',
- 'store' => 'Storfa',
- 'tips' => 'Awgrymiadau',
- 'total' => 'Cyfanswm Enillion',
- 'total-gifts' => 'Mewn Cyfanswm Rhoddion BON',
- 'total-tips' => 'Mewn Cyfanswm Awgrymiadau BON',
+ 'activated' => 'Wedi i actifadu',
+ 'active' => 'Wedi i actio!',
+ 'amount' => 'Swm',
+ 'bon' => 'BON',
+ 'bonus' => 'Bonws',
+ 'date' => 'Dyddiad',
+ 'earning' => 'Ennill',
+ 'earning-rate' => 'Ar y gyfradd hon o ennill byddwch yn ennill y canlynol fesul amserlen ..',
+ 'earnings' => 'Enillion',
+ 'exchange' => 'Cyfnewid',
+ 'exchange-warning' => 'Mae cyfnewidiadau n derfynol, Gwiriwch eich dewisiadau ddwywaith cyn cyfnewid.',
+ 'extended-stats' => 'Ystadegau Estynedig',
+ 'gift' => 'Rhodd',
+ 'gift-bonus' => 'Pwyntiau Bonws Rhodd',
+ 'gift-to' => 'Pwyntiau Bonws Rhodd I',
+ 'gifts' => 'Rhoddion',
+ 'item' => 'Eitem',
+ 'no-refund' => 'DIM AD-DALIADAU!',
+ 'per-day' => 'Pwyntiau fesul diwrnod',
+ 'per-hour' => 'Pwyntiau fesul Awr',
+ 'per-minute' => 'Pwyntiau fesul munud',
+ 'per-month' => 'Pwyntiau fesul mis',
+ 'per-second' => 'Pwyntiau fesul eiliad',
+ 'per-week' => 'Pwyntiau fesul wythnos',
+ 'per-year' => 'Pwyntiau fesul blwyddyn',
+ 'points' => 'Pwyntiau',
+ 'receiver' => 'Derbynnydd',
+ 'review-seeds' => 'Adolygu r holl Rifau Seeded',
+ 'send-gift' => 'Danfon anrheg',
+ 'sender' => 'Anfonwr',
+ 'store' => 'Storfa',
+ 'tips' => 'Awgrymiadau',
+ 'total' => 'Cyfanswm Enillion',
+ 'total-gifts' => 'Mewn Cyfanswm Rhoddion BON',
+ 'total-tips' => 'Mewn Cyfanswm Awgrymiadau BON',
'you-have-received-gifts' => 'Rydych chi wedi derbyn',
- 'you-have-sent-gifts' => 'Rydych wedi Anfon',
- 'you-have-received-tips' => 'Rydych chi wedi derbyn',
- 'you-have-sent-tips' => 'Rydych wedi Anfon',
- 'your-points' => 'Eich Pwyntiau',
+ 'you-have-sent-gifts' => 'Rydych wedi Anfon',
+ 'you-have-received-tips' => 'Rydych chi wedi derbyn',
+ 'you-have-sent-tips' => 'Rydych wedi Anfon',
+ 'your-points' => 'Eich Pwyntiau',
];
diff --git a/lang/cy/bot.php b/lang/cy/bot.php
index 6f28af840..192bbe363 100644
--- a/lang/cy/bot.php
+++ b/lang/cy/bot.php
@@ -12,15 +12,15 @@
*/
return [
- 'about' => 'Ynglŷn â',
- 'bot' => 'Bot',
- 'bots' => 'Bots',
- 'color' => 'Lliw',
- 'command' => 'Gorchymyn',
- 'edit-bot' => 'Golygu Bot',
+ 'about' => 'Ynglŷn â',
+ 'bot' => 'Bot',
+ 'bots' => 'Bots',
+ 'color' => 'Lliw',
+ 'command' => 'Gorchymyn',
+ 'edit-bot' => 'Golygu Bot',
'emoji-code' => 'Cod Emoji',
- 'help' => 'Help',
- 'icon' => 'Eicon',
- 'info' => 'Gwybodaeth',
- 'name' => 'Enw',
+ 'help' => 'Help',
+ 'icon' => 'Eicon',
+ 'info' => 'Gwybodaeth',
+ 'name' => 'Enw',
];
diff --git a/lang/cy/bug.php b/lang/cy/bug.php
index e6dc5ef35..120ddc7b6 100644
--- a/lang/cy/bug.php
+++ b/lang/cy/bug.php
@@ -12,15 +12,15 @@
*/
return [
- 'bug-report' => 'Adroddiad Bug',
+ 'bug-report' => 'Adroddiad Bug',
'bug-report-description' => 'Adrodd am nam ar y safle',
- 'enter-description' => 'Disgrifiwch y broblem cystal â phosibl',
- 'enter-email' => 'Rhowch eich e-bost',
- 'enter-title' => 'Dewiswch deitl priodol',
- 'enter-username' => 'Rhowch eich enw defnyddiwr',
- 'high' => 'Uchel',
- 'low' => 'Isel',
- 'priority' => 'Blaenoriaeth',
- 'priority-description' => 'Dewiswch yn uchel iawn os yw r nam mewn gwirionedd yn broblem ar gyfer defnyddio r safle.',
- 'very-high' => 'Uchel iawn',
+ 'enter-description' => 'Disgrifiwch y broblem cystal â phosibl',
+ 'enter-email' => 'Rhowch eich e-bost',
+ 'enter-title' => 'Dewiswch deitl priodol',
+ 'enter-username' => 'Rhowch eich enw defnyddiwr',
+ 'high' => 'Uchel',
+ 'low' => 'Isel',
+ 'priority' => 'Blaenoriaeth',
+ 'priority-description' => 'Dewiswch yn uchel iawn os yw r nam mewn gwirionedd yn broblem ar gyfer defnyddio r safle.',
+ 'very-high' => 'Uchel iawn',
];
diff --git a/lang/cy/common.php b/lang/cy/common.php
index 6256a1555..55bce0f9a 100644
--- a/lang/cy/common.php
+++ b/lang/cy/common.php
@@ -12,179 +12,179 @@
*/
return [
- 'a-an-art' => '',
- 'about' => 'Amdanom ni',
- 'account' => 'Cyfrif',
- 'achievement-title' => 'Yn anhygoel',
+ 'a-an-art' => '',
+ 'about' => 'Amdanom ni',
+ 'account' => 'Cyfrif',
+ 'achievement-title' => 'Yn anhygoel',
'achievement-unlocked' => 'Rydych wedi datgloi cyflawniad ": enw"',
- 'active' => 'Actif',
- 'active-warning' => 'Rhybudd gweithredol',
- 'add' => 'Ychwanegwch',
- 'added' => 'Wedi adio',
- 'amount' => 'Swm',
- 'anonymous' => 'Dienw',
- 'author' => 'Awdur',
- 'balance' => 'Cydbwysedd',
- 'blacklist' => 'Rhestr Dduw r Cleient',
- 'buffer' => 'Clustogi',
- 'bug' => 'Adroddwch A Bug',
- 'but' => 'Ond',
- 'cancel' => 'Diddymu',
- 'category' => 'Categori',
- 'categories' => 'Categorïau',
- 'close' => 'Caewch',
- 'comment' => 'Sylw',
- 'comments' => 'Sylwadau',
- 'community' => 'Cymuned',
- 'contact' => 'Cyswllt',
- 'contact-desc' => 'Bydd y cais cyswllt hwn yn cael ei anfon at y perchennog a bydd yn cysylltu â chi cyn gynted â phosibl',
- 'contact-header' => 'Helo',
- 'create' => 'Creu',
- 'created_at' => 'Crëwyd Ar',
- 'day' => 'Dydd',
- 'delete' => 'Dileu',
- 'delete-your-comment' => 'Dileu eich sylw',
- 'description' => 'Disgrifiad',
- 'direction' => 'Cyfarwyddyd',
- 'disable' => 'Analluogi',
- 'doubleup_activated' => 'Gweithredwyd dull llwytho dwbl byd-eang',
- 'download' => 'Lawrlwytho',
- 'edit' => 'Golygu',
- 'edit-your-comment' => 'Golygu eich sylw',
- 'email' => 'E-bost',
- 'email-blacklist' => 'E-bostiwch Blacklist',
- 'email-whitelist' => 'E-bostiwch Whitelist',
+ 'active' => 'Actif',
+ 'active-warning' => 'Rhybudd gweithredol',
+ 'add' => 'Ychwanegwch',
+ 'added' => 'Wedi adio',
+ 'amount' => 'Swm',
+ 'anonymous' => 'Dienw',
+ 'author' => 'Awdur',
+ 'balance' => 'Cydbwysedd',
+ 'blacklist' => 'Rhestr Dduw r Cleient',
+ 'buffer' => 'Clustogi',
+ 'bug' => 'Adroddwch A Bug',
+ 'but' => 'Ond',
+ 'cancel' => 'Diddymu',
+ 'category' => 'Categori',
+ 'categories' => 'Categorïau',
+ 'close' => 'Caewch',
+ 'comment' => 'Sylw',
+ 'comments' => 'Sylwadau',
+ 'community' => 'Cymuned',
+ 'contact' => 'Cyswllt',
+ 'contact-desc' => 'Bydd y cais cyswllt hwn yn cael ei anfon at y perchennog a bydd yn cysylltu â chi cyn gynted â phosibl',
+ 'contact-header' => 'Helo',
+ 'create' => 'Creu',
+ 'created_at' => 'Crëwyd Ar',
+ 'day' => 'Dydd',
+ 'delete' => 'Dileu',
+ 'delete-your-comment' => 'Dileu eich sylw',
+ 'description' => 'Disgrifiad',
+ 'direction' => 'Cyfarwyddyd',
+ 'disable' => 'Analluogi',
+ 'doubleup_activated' => 'Gweithredwyd dull llwytho dwbl byd-eang',
+ 'download' => 'Lawrlwytho',
+ 'edit' => 'Golygu',
+ 'edit-your-comment' => 'Golygu eich sylw',
+ 'email' => 'E-bost',
+ 'email-blacklist' => 'E-bostiwch Blacklist',
+ 'email-whitelist' => 'E-bostiwch Whitelist',
'email-list-notactive' => 'E-bost Nid yw r System Gwyn / Rhestr Ddu yn cael ei gweithredu',
- 'enable' => 'Galluogi',
- 'enter' => 'Rhowch i mewn',
- 'error' => 'Gwall',
- 'everyday' => 'Pob dydd',
- 'expired' => 'Wedi dod i ben',
- 'extra' => 'Extra',
- 'extra-stats' => 'Ystadegau Ychwanegol',
- 'faq' => 'Cwestiynau Cyffredin',
- 'files' => 'Ffeiliau',
- 'fl_token' => 'Tocyn Rhyddfrydol',
- 'fl_tokens' => 'Tocynnau Llawrydd',
- 'for' => 'ar gyfer',
- 'forum' => 'Fforwm',
- 'free' => 'Am ddim',
- 'freeleech_activated' => 'Gweithredwyd y dull Rhydd-rydd Fyd-eang',
- 'global' => 'Byd-eang',
- 'group' => 'Grŵp',
- 'groups' => 'Grwpiau',
- 'hidden' => 'Cudd',
- 'high-speeds' => 'Cyflymder uchel',
- 'home' => 'Hafan',
- 'hot' => 'Poeth!',
- 'hour' => 'Awr',
- 'huge' => 'Mawr',
- 'info' => 'Gwybodaeth',
- 'internal' => 'Mewnol',
- 'ip' => 'IP',
- 'is-allowed' => 'yn cael ei ganiatáu',
- 'large' => 'Mawr',
- 'latest' => 'Diweddaraf',
- 'latest-posts' => 'Swyddi Diweddaraf',
- 'latest-topics' => 'Y Pynciau Diweddaraf',
- 'legal' => 'Cyfreithiol',
- 'legend' => 'Chwedl',
- 'lists' => 'Rhestrau',
- 'lock-account' => 'Cyfrif clo',
- 'logout' => 'Allgofnodi',
- 'members' => 'Aelodau',
- 'message' => 'Neges',
- 'minute' => 'Munud',
- 'moderated-by' => 'Cymedrwyd gan',
- 'moderation' => 'Safoni',
- 'moderation-approve' => 'Cymeradwyo',
- 'moderation-postpone' => 'Gohirio',
- 'moderation-reject' => 'Gwrthod',
- 'month' => 'Mis',
- 'months' => 'Misoedd',
- 'my' => 'Fy',
- 'name' => 'Enw',
- 'navigation' => 'Llywio',
- 'new' => 'Newydd!',
- 'new-adj' => 'Newydd',
- 'news' => 'Newyddion',
- 'next' => 'Nesaf',
- 'no' => 'Na',
- 'no-comments' => 'No Comments Eto',
- 'no-result' => 'Nid oes canlyniad yn y gronfa ddata ar gyfer ymholiad',
- 'notifications' => 'Hysbysiadau',
- 'older-than' => 'Yn hŷn na',
- 'oldest' => 'Hynaf',
- 'openreg_activated' => 'Trefnwyd cofrestru agored',
- 'order-by' => 'Gorchymyn gan',
- 'other' => 'Arall',
- 'pages' => 'Tudalennau',
- 'password' => 'Cyfrinair',
- 'patron' => 'Dod yn Noddwr',
- 'pending-torrents' => 'Yn disgwyl torrents',
- 'personal' => 'Personol',
- 'plural-suffix' => 's',
- 'port' => 'Porthladd',
- 'position' => 'Sefyllfa',
- 'posts' => 'Swyddi',
- 'powered-by' => 'Wedi i bweru gan UNIT3D',
- 'preview' => 'Rhagolwg',
- 'previous' => 'Blaenorol',
- 'progress' => 'Cynnydd',
- 'publish' => 'Cyhoeddi',
- 'quantity' => 'Nifer',
- 'quick-search' => 'Chwilio Cyflym',
- 'ratio' => 'Cymhareb',
- 'reason' => 'Rheswm',
- 'remove' => 'Dileu',
- 'report' => 'Adroddiad',
- 'resend' => 'Ail-anfon',
- 'reporter' => 'Gohebydd',
- 'required' => 'Angenrheidiol',
- 'results' => 'Canlyniadau',
- 'rss-system' => 'System RSS',
- 'rules' => 'Rheolau',
- 'save' => 'Arbedwch',
- 'search' => 'Chwilio',
- 'search-results' => 'Canlyniadau chwilio',
- 'search-results-desc' => 'Gweler eich canlyniadau isod',
- 'second' => 'Yn ail',
- 'select' => 'Dewiswch',
- 'sort' => 'Trefnu',
- 'special' => 'Arbennig',
- 'staff' => 'Staff',
- 'staff-tools' => 'Offer staff',
- 'stats' => 'Ystadegau',
- 'status' => 'Statws',
- 'sticked' => 'Wedi ch sticio',
- 'submit' => 'Cyflwyno',
- 'subscriptions' => 'Tanysgrifiadau',
- 'teams' => 'Timau',
- 'terms' => 'Telerau defnyddio',
- 'times' => 'Amseroedd',
- 'title' => 'Teitl',
- 'top-bountied' => 'Yn Gyfrifol Uchaf',
- 'topics' => 'Pynciau',
- 'tracker-codes' => 'Codau olrhain',
- 'type' => 'Math',
- 'type-verb' => 'Math',
- 'types' => 'Mathau',
- 'genre' => 'Genre',
- 'genres' => 'Genres',
- 'action' => 'Gweithredu',
- 'actions' => 'Camau gweithredu',
- 'unknown' => 'Anhysbys',
+ 'enable' => 'Galluogi',
+ 'enter' => 'Rhowch i mewn',
+ 'error' => 'Gwall',
+ 'everyday' => 'Pob dydd',
+ 'expired' => 'Wedi dod i ben',
+ 'extra' => 'Extra',
+ 'extra-stats' => 'Ystadegau Ychwanegol',
+ 'faq' => 'Cwestiynau Cyffredin',
+ 'files' => 'Ffeiliau',
+ 'fl_token' => 'Tocyn Rhyddfrydol',
+ 'fl_tokens' => 'Tocynnau Llawrydd',
+ 'for' => 'ar gyfer',
+ 'forum' => 'Fforwm',
+ 'free' => 'Am ddim',
+ 'freeleech_activated' => 'Gweithredwyd y dull Rhydd-rydd Fyd-eang',
+ 'global' => 'Byd-eang',
+ 'group' => 'Grŵp',
+ 'groups' => 'Grwpiau',
+ 'hidden' => 'Cudd',
+ 'high-speeds' => 'Cyflymder uchel',
+ 'home' => 'Hafan',
+ 'hot' => 'Poeth!',
+ 'hour' => 'Awr',
+ 'huge' => 'Mawr',
+ 'info' => 'Gwybodaeth',
+ 'internal' => 'Mewnol',
+ 'ip' => 'IP',
+ 'is-allowed' => 'yn cael ei ganiatáu',
+ 'large' => 'Mawr',
+ 'latest' => 'Diweddaraf',
+ 'latest-posts' => 'Swyddi Diweddaraf',
+ 'latest-topics' => 'Y Pynciau Diweddaraf',
+ 'legal' => 'Cyfreithiol',
+ 'legend' => 'Chwedl',
+ 'lists' => 'Rhestrau',
+ 'lock-account' => 'Cyfrif clo',
+ 'logout' => 'Allgofnodi',
+ 'members' => 'Aelodau',
+ 'message' => 'Neges',
+ 'minute' => 'Munud',
+ 'moderated-by' => 'Cymedrwyd gan',
+ 'moderation' => 'Safoni',
+ 'moderation-approve' => 'Cymeradwyo',
+ 'moderation-postpone' => 'Gohirio',
+ 'moderation-reject' => 'Gwrthod',
+ 'month' => 'Mis',
+ 'months' => 'Misoedd',
+ 'my' => 'Fy',
+ 'name' => 'Enw',
+ 'navigation' => 'Llywio',
+ 'new' => 'Newydd!',
+ 'new-adj' => 'Newydd',
+ 'news' => 'Newyddion',
+ 'next' => 'Nesaf',
+ 'no' => 'Na',
+ 'no-comments' => 'No Comments Eto',
+ 'no-result' => 'Nid oes canlyniad yn y gronfa ddata ar gyfer ymholiad',
+ 'notifications' => 'Hysbysiadau',
+ 'older-than' => 'Yn hŷn na',
+ 'oldest' => 'Hynaf',
+ 'openreg_activated' => 'Trefnwyd cofrestru agored',
+ 'order-by' => 'Gorchymyn gan',
+ 'other' => 'Arall',
+ 'pages' => 'Tudalennau',
+ 'password' => 'Cyfrinair',
+ 'patron' => 'Dod yn Noddwr',
+ 'pending-torrents' => 'Yn disgwyl torrents',
+ 'personal' => 'Personol',
+ 'plural-suffix' => 's',
+ 'port' => 'Porthladd',
+ 'position' => 'Sefyllfa',
+ 'posts' => 'Swyddi',
+ 'powered-by' => 'Wedi i bweru gan UNIT3D',
+ 'preview' => 'Rhagolwg',
+ 'previous' => 'Blaenorol',
+ 'progress' => 'Cynnydd',
+ 'publish' => 'Cyhoeddi',
+ 'quantity' => 'Nifer',
+ 'quick-search' => 'Chwilio Cyflym',
+ 'ratio' => 'Cymhareb',
+ 'reason' => 'Rheswm',
+ 'remove' => 'Dileu',
+ 'report' => 'Adroddiad',
+ 'resend' => 'Ail-anfon',
+ 'reporter' => 'Gohebydd',
+ 'required' => 'Angenrheidiol',
+ 'results' => 'Canlyniadau',
+ 'rss-system' => 'System RSS',
+ 'rules' => 'Rheolau',
+ 'save' => 'Arbedwch',
+ 'search' => 'Chwilio',
+ 'search-results' => 'Canlyniadau chwilio',
+ 'search-results-desc' => 'Gweler eich canlyniadau isod',
+ 'second' => 'Yn ail',
+ 'select' => 'Dewiswch',
+ 'sort' => 'Trefnu',
+ 'special' => 'Arbennig',
+ 'staff' => 'Staff',
+ 'staff-tools' => 'Offer staff',
+ 'stats' => 'Ystadegau',
+ 'status' => 'Statws',
+ 'sticked' => 'Wedi ch sticio',
+ 'submit' => 'Cyflwyno',
+ 'subscriptions' => 'Tanysgrifiadau',
+ 'teams' => 'Timau',
+ 'terms' => 'Telerau defnyddio',
+ 'times' => 'Amseroedd',
+ 'title' => 'Teitl',
+ 'top-bountied' => 'Yn Gyfrifol Uchaf',
+ 'topics' => 'Pynciau',
+ 'tracker-codes' => 'Codau olrhain',
+ 'type' => 'Math',
+ 'type-verb' => 'Math',
+ 'types' => 'Mathau',
+ 'genre' => 'Genre',
+ 'genres' => 'Genres',
+ 'action' => 'Gweithredu',
+ 'actions' => 'Camau gweithredu',
+ 'unknown' => 'Anhysbys',
'unlocked-achievement' => 'Rydych wedi datgloi: cyflawniad cyflawniad',
- 'upload' => 'Llwytho i fyny',
- 'upload-guide' => 'Llwytho canllaw i fyny',
- 'user' => 'Defnyddiwr',
- 'username' => 'Enw defnyddiwr',
- 'users' => 'Defnyddwyr',
- 'view' => 'Golygfa',
- 'view-all' => 'Gweld popeth',
- 'warnings' => 'Rhybuddion',
- 'year' => 'Blwyddyn',
- 'yes' => 'Ydw',
- 'your' => 'Eich',
- 'your-comment' => 'Eich sylw',
+ 'upload' => 'Llwytho i fyny',
+ 'upload-guide' => 'Llwytho canllaw i fyny',
+ 'user' => 'Defnyddiwr',
+ 'username' => 'Enw defnyddiwr',
+ 'users' => 'Defnyddwyr',
+ 'view' => 'Golygfa',
+ 'view-all' => 'Gweld popeth',
+ 'warnings' => 'Rhybuddion',
+ 'year' => 'Blwyddyn',
+ 'yes' => 'Ydw',
+ 'your' => 'Eich',
+ 'your-comment' => 'Eich sylw',
];
diff --git a/lang/cy/email.php b/lang/cy/email.php
index 41c960c0d..85524d3f6 100644
--- a/lang/cy/email.php
+++ b/lang/cy/email.php
@@ -12,46 +12,46 @@
*/
return [
- 'activate-account' => 'Activate cyfrif',
- 'ban-reason' => 'Rheswm',
- 'banned-footer' => 'Dyna beth rydych chi n ei gael am beidio â dilyn y rheolau',
- 'banned-header' => 'Rydych wedi ch Gwahardd',
- 'bug-description' => 'Problem',
- 'bug-footer' => 'Trwsio r Cachu hwnnw',
- 'bug-header' => 'Adroddiad byg newydd o',
- 'bug-priority' => 'Blaenoriaeth',
- 'bug-title' => 'Teitl y bug',
- 'contact-header' => 'Post cyswllt newydd oddi wrth',
- 'contact-message' => 'Neges',
- 'contact-name' => 'Enw',
+ 'activate-account' => 'Activate cyfrif',
+ 'ban-reason' => 'Rheswm',
+ 'banned-footer' => 'Dyna beth rydych chi n ei gael am beidio â dilyn y rheolau',
+ 'banned-header' => 'Rydych wedi ch Gwahardd',
+ 'bug-description' => 'Problem',
+ 'bug-footer' => 'Trwsio r Cachu hwnnw',
+ 'bug-header' => 'Adroddiad byg newydd o',
+ 'bug-priority' => 'Blaenoriaeth',
+ 'bug-title' => 'Teitl y bug',
+ 'contact-header' => 'Post cyswllt newydd oddi wrth',
+ 'contact-message' => 'Neges',
+ 'contact-name' => 'Enw',
'fail-login-greeting' => 'Methu â Chofnodi r Cyfrif!',
- 'fail-login-line1' => 'Canfuwyd mewngofnod a fethwyd ar gyfer eich cyfrif.',
- 'fail-login-line2' => 'Mae r cais hwn yn deillio o: ip (: host) yn: amser',
- 'fail-login-subject' => 'Hysbysiad Mewngofnodi Methu',
- 'footer-link' => 'Os ydych chi n cael trafferth clicio ar y botwm actionText, copïwch a gludwch yr URL isod i ch porwr gwe:',
- 'invite-header' => 'Gwahoddiad i',
- 'invite-invited' => 'Fe ch gwahoddwyd i',
- 'invite-message' => 'Neges',
- 'invite-signup' => 'Cofrestrwch nawr',
- 'newreply-header' => 'Mae ateb newydd yn eich pwnc',
- 'newreply-message' => 'Neges',
- 'newreply-replied' => 'Wedi ymateb i ch pwnc',
- 'newreply-view' => 'View It Now',
- 'no-email-found' => 'Ni allem ddod o hyd i r e-bost hwn yn ein system!',
- 'register-code' => 'I gwblhau eich actifadu cyfrif cliciwch y botwm isod',
- 'register-footer' => 'Os nad yw r botwm uchod yn gweithio, copïwch a gludwch yr URL i ch bar cyfeiriad porwyr',
- 'register-header' => 'Helo! Diolch i chi am gofrestru',
- 'report-comment' => 'Sylw',
- 'report-email' => 'E-bost',
- 'report-header' => 'Helo Gweinyddol, Adroddwyd ar ddolen',
- 'report-link' => 'Cyswllt',
- 'report-link-hash' => 'Cyswllt gwirioneddol',
- 'thanks' => 'Diolch am ddefnyddio',
- 'unban-footer' => 'Croeso nol!',
- 'unban-header' => 'Rydych wedi bod yn ddi-fwg',
- 'unban-reason' => 'Rheswm',
- 'username-reminder' => 'Yn ddiweddar, gwnaethoch anfon cais atom am eich enw defnyddiwr ar ein app. Eich enw defnyddiwr yw',
- 'username-sent' => 'Mae eich enw defnyddiwr wedi cael ei anfon i ch cyfeiriad e-bost!',
- 'disabled-header' => 'Mae Eich Cyfrif wedi bod yn Anabl',
- 'pruned-header' => 'Mae ch cyfrif wedi bod yn brys',
+ 'fail-login-line1' => 'Canfuwyd mewngofnod a fethwyd ar gyfer eich cyfrif.',
+ 'fail-login-line2' => 'Mae r cais hwn yn deillio o: ip (: host) yn: amser',
+ 'fail-login-subject' => 'Hysbysiad Mewngofnodi Methu',
+ 'footer-link' => 'Os ydych chi n cael trafferth clicio ar y botwm actionText, copïwch a gludwch yr URL isod i ch porwr gwe:',
+ 'invite-header' => 'Gwahoddiad i',
+ 'invite-invited' => 'Fe ch gwahoddwyd i',
+ 'invite-message' => 'Neges',
+ 'invite-signup' => 'Cofrestrwch nawr',
+ 'newreply-header' => 'Mae ateb newydd yn eich pwnc',
+ 'newreply-message' => 'Neges',
+ 'newreply-replied' => 'Wedi ymateb i ch pwnc',
+ 'newreply-view' => 'View It Now',
+ 'no-email-found' => 'Ni allem ddod o hyd i r e-bost hwn yn ein system!',
+ 'register-code' => 'I gwblhau eich actifadu cyfrif cliciwch y botwm isod',
+ 'register-footer' => 'Os nad yw r botwm uchod yn gweithio, copïwch a gludwch yr URL i ch bar cyfeiriad porwyr',
+ 'register-header' => 'Helo! Diolch i chi am gofrestru',
+ 'report-comment' => 'Sylw',
+ 'report-email' => 'E-bost',
+ 'report-header' => 'Helo Gweinyddol, Adroddwyd ar ddolen',
+ 'report-link' => 'Cyswllt',
+ 'report-link-hash' => 'Cyswllt gwirioneddol',
+ 'thanks' => 'Diolch am ddefnyddio',
+ 'unban-footer' => 'Croeso nol!',
+ 'unban-header' => 'Rydych wedi bod yn ddi-fwg',
+ 'unban-reason' => 'Rheswm',
+ 'username-reminder' => 'Yn ddiweddar, gwnaethoch anfon cais atom am eich enw defnyddiwr ar ein app. Eich enw defnyddiwr yw',
+ 'username-sent' => 'Mae eich enw defnyddiwr wedi cael ei anfon i ch cyfeiriad e-bost!',
+ 'disabled-header' => 'Mae Eich Cyfrif wedi bod yn Anabl',
+ 'pruned-header' => 'Mae ch cyfrif wedi bod yn brys',
];
diff --git a/lang/cy/forum.php b/lang/cy/forum.php
index 74e4f7815..d08788e0c 100644
--- a/lang/cy/forum.php
+++ b/lang/cy/forum.php
@@ -12,63 +12,63 @@
*/
return [
- 'action' => 'Gweithredu',
- 'activity' => 'Gweithgaredd',
- 'approved' => 'Cymeradwywyd',
- 'author' => 'Awdur',
- 'bug' => 'Byg',
- 'category-quick-search' => 'Chwiliad cyflym o r enw pwnc (o fewn categori)',
- 'close-topic' => 'Lock Topic',
- 'closed' => 'Ar gau',
- 'create-new-topic' => 'Creu Pwnc Newydd',
- 'created' => 'Crëwyd',
- 'current' => 'Cyfredol',
- 'delete-topic' => 'Dileu Y Pwnc hwn',
- 'denied' => 'Wedi i wrthod',
- 'dislike-post' => 'Ddim yn hoffi Y Swydd hon',
- 'display-forum' => 'Dangoswch bynciau yn',
- 'edit-post' => 'Golygu Post',
- 'edit-topic' => 'Golygu Pwnc',
- 'forum' => 'Fforwm',
- 'forums' => 'Fforymau',
- 'implemented' => 'Wedi i weithredu',
- 'in' => 'Yn',
- 'invalid' => 'Annilys',
- 'label' => 'Label',
- 'label-system' => 'System Label',
- 'last-message' => 'Neges Olaf',
- 'last-post-info' => 'Post Diwethaf',
- 'latest' => 'Diweddaraf',
- 'like-post' => 'Fel This Post',
- 'meta-category' => 'Rhestr o fforymau yn y categori',
- 'moderation' => 'Safoni',
- 'name' => 'Enw',
- 'not-connected' => 'Rhaid i chi fod yn gysylltiedig',
- 'not-subscribed' => 'Heb ei Danysgrifio',
- 'open' => 'Agored',
- 'open-topic' => 'Agorwch y Pwnc hwn',
- 'permalink' => 'Permalink',
- 'pin' => 'Pin',
- 'post' => 'Post',
- 'post-quick-search' => 'Chwiliad cyflym ar ôl y corff',
- 'posts' => 'Swyddi',
- 'quote' => 'Dyfyniad',
- 'read-topic' => 'Darllenwch y Pwnc',
- 'replies' => 'Atebion',
- 'send-new-topic' => 'Arbedwch y Pwnc hwn',
- 'solved' => 'Datryswyd',
- 'state' => 'Nodwch',
- 'stats' => 'Ystadegau',
- 'subscribed' => 'Tanysgrifio',
+ 'action' => 'Gweithredu',
+ 'activity' => 'Gweithgaredd',
+ 'approved' => 'Cymeradwywyd',
+ 'author' => 'Awdur',
+ 'bug' => 'Byg',
+ 'category-quick-search' => 'Chwiliad cyflym o r enw pwnc (o fewn categori)',
+ 'close-topic' => 'Lock Topic',
+ 'closed' => 'Ar gau',
+ 'create-new-topic' => 'Creu Pwnc Newydd',
+ 'created' => 'Crëwyd',
+ 'current' => 'Cyfredol',
+ 'delete-topic' => 'Dileu Y Pwnc hwn',
+ 'denied' => 'Wedi i wrthod',
+ 'dislike-post' => 'Ddim yn hoffi Y Swydd hon',
+ 'display-forum' => 'Dangoswch bynciau yn',
+ 'edit-post' => 'Golygu Post',
+ 'edit-topic' => 'Golygu Pwnc',
+ 'forum' => 'Fforwm',
+ 'forums' => 'Fforymau',
+ 'implemented' => 'Wedi i weithredu',
+ 'in' => 'Yn',
+ 'invalid' => 'Annilys',
+ 'label' => 'Label',
+ 'label-system' => 'System Label',
+ 'last-message' => 'Neges Olaf',
+ 'last-post-info' => 'Post Diwethaf',
+ 'latest' => 'Diweddaraf',
+ 'like-post' => 'Fel This Post',
+ 'meta-category' => 'Rhestr o fforymau yn y categori',
+ 'moderation' => 'Safoni',
+ 'name' => 'Enw',
+ 'not-connected' => 'Rhaid i chi fod yn gysylltiedig',
+ 'not-subscribed' => 'Heb ei Danysgrifio',
+ 'open' => 'Agored',
+ 'open-topic' => 'Agorwch y Pwnc hwn',
+ 'permalink' => 'Permalink',
+ 'pin' => 'Pin',
+ 'post' => 'Post',
+ 'post-quick-search' => 'Chwiliad cyflym ar ôl y corff',
+ 'posts' => 'Swyddi',
+ 'quote' => 'Dyfyniad',
+ 'read-topic' => 'Darllenwch y Pwnc',
+ 'replies' => 'Atebion',
+ 'send-new-topic' => 'Arbedwch y Pwnc hwn',
+ 'solved' => 'Datryswyd',
+ 'state' => 'Nodwch',
+ 'stats' => 'Ystadegau',
+ 'subscribed' => 'Tanysgrifio',
'subscription-quick-search' => 'Chwiliad cyflym o r enw pwnc (o fewn tanysgrifiadau)',
- 'suggestion' => 'Awgrym',
- 'topic' => 'Pwnc',
- 'topic-closed' => 'Mae r Pwnc hwn ar Gau',
- 'topic-name' => 'Enw pwnc',
- 'topic-quick-search' => 'Chwiliad cyflym o r enw pwnc',
- 'topic-title' => 'Teitl y Pwnc hwn',
- 'topics' => 'Pynciau',
- 'unpin' => 'Unpin',
- 'view-all' => 'Gweld pob pwnc',
- 'views' => 'Barn',
+ 'suggestion' => 'Awgrym',
+ 'topic' => 'Pwnc',
+ 'topic-closed' => 'Mae r Pwnc hwn ar Gau',
+ 'topic-name' => 'Enw pwnc',
+ 'topic-quick-search' => 'Chwiliad cyflym o r enw pwnc',
+ 'topic-title' => 'Teitl y Pwnc hwn',
+ 'topics' => 'Pynciau',
+ 'unpin' => 'Unpin',
+ 'view-all' => 'Gweld pob pwnc',
+ 'views' => 'Barn',
];
diff --git a/lang/cy/graveyard.php b/lang/cy/graveyard.php
index 885e41240..a64136f95 100644
--- a/lang/cy/graveyard.php
+++ b/lang/cy/graveyard.php
@@ -12,15 +12,15 @@
*/
return [
- 'dead' => 'Marw',
- 'graveyard' => 'Mynwent',
- 'guidelines' => 'Canllawiau',
+ 'dead' => 'Marw',
+ 'graveyard' => 'Mynwent',
+ 'guidelines' => 'Canllawiau',
'guidelines-content' => '1) Ni allwch ailgodi eich llwythi eich hun.
2) Peidiwch â chywiro rhywbeth na allwch chi ei ymrwymo hefyd.',
- 'howto' => 'Heres Y Rheol',
- 'howto-desc1' => 'Rhaid i chi hadu : enw am 30 diwrnod ar gyfer cael ei hachub yn llwyddiannus. Yn yr achos hwn pan fydd eich hadau presennol o',
- 'howto-desc2' => 'Cewch eich gwobrwyo',
- 'howto-hits' => 'Ymweliadau',
- 'pending' => 'Yn aros',
- 'resurrect' => 'Ailgodi',
- 'reward' => 'Tocynnau lleferydd rhydd',
+ 'howto' => 'Heres Y Rheol',
+ 'howto-desc1' => 'Rhaid i chi hadu : enw am 30 diwrnod ar gyfer cael ei hachub yn llwyddiannus. Yn yr achos hwn pan fydd eich hadau presennol o',
+ 'howto-desc2' => 'Cewch eich gwobrwyo',
+ 'howto-hits' => 'Ymweliadau',
+ 'pending' => 'Yn aros',
+ 'resurrect' => 'Ailgodi',
+ 'reward' => 'Tocynnau lleferydd rhydd',
];
diff --git a/lang/cy/notification.php b/lang/cy/notification.php
index 69800b39c..b3130db1e 100644
--- a/lang/cy/notification.php
+++ b/lang/cy/notification.php
@@ -12,14 +12,14 @@
*/
return [
- 'date' => 'Dyddiad',
- 'delete' => 'Dileu',
- 'delete-all' => 'Dileu pob hysbysiad',
- 'mark-all-read' => 'Marciwch y cyfan fel y i darllenwyd',
- 'mark-read' => 'Marc fel y i darllenwyd',
- 'message' => 'Neges',
+ 'date' => 'Dyddiad',
+ 'delete' => 'Dileu',
+ 'delete-all' => 'Dileu pob hysbysiad',
+ 'mark-all-read' => 'Marciwch y cyfan fel y i darllenwyd',
+ 'mark-read' => 'Marc fel y i darllenwyd',
+ 'message' => 'Neges',
'no-notifications' => 'Ni ddarganfuwyd unrhyw hysbysiadau',
- 'notifications' => 'Hysbysiadau',
- 'read' => 'Darllenwch',
- 'title' => 'Teitl',
+ 'notifications' => 'Hysbysiadau',
+ 'read' => 'Darllenwch',
+ 'title' => 'Teitl',
];
diff --git a/lang/cy/page.php b/lang/cy/page.php
index acfca5571..e8405d3c7 100644
--- a/lang/cy/page.php
+++ b/lang/cy/page.php
@@ -12,28 +12,28 @@
*/
return [
- 'aboutus-advantage' => 'Y fantais',
- 'aboutus-advantage1' => 'Mae gennym aelodau profiadol a staff sy n hyddysg ym myd cymorth fideo / sain a thechnegol HD.',
- 'aboutus-advantage2' => 'Ynghyd â n brwdfrydedd helaeth am ffilmiau a sioeau teledu, rydym hefyd yn cynnig un o r dewisiadau gorau o rywbeth sydd ddim fwyaf - FANRES! DIOLCH YN FAWR i n cynnwyswyr.',
- 'aboutus-advantage3' => 'Er ein bod yn derbyn rhoddion i gadw r safle ar waith, ni fydd unrhyw PMs na baneri ar y safle. Dim cardio oddi wrthym ni.',
- 'aboutus-advantage4' => 'Mae ein cymuned heb ei hail am ei oedran cynnar. Rhwng ein staff a n userbase, roeddem bob amser yma i ch helpu. A oedd yn angerddol am wneud yn siŵr bod eich profiad yn: Nid yw teitl yn brin o anhygoel.',
- 'aboutus-advantage5' => 'Defnyddir ein gwasanaeth yn ddyddiol gan lawer o bobl ar draws y byd. Profwyd ein bod yn poeni am ymarferoldeb a diogelwch ein codebase a gellir ymddiried ynddo a dibynnu arno. Mae ein datblygwyr yn gweithio bob dydd i ddarparu codebase nex-gen gwirioneddol.',
- 'aboutus-header' => 'Helo yno',
- 'aboutus-rules' => 'Yr hyn sydd ei angen arnom',
- 'aboutus-rules1' => 'Bod yn aelod gweithgar o r gymuned! Mae hyn yn golygu ymuno mewn sgyrsiau yn gynhyrchiol, ychwanegu cynnwys cymeradwy a helpu defnyddwyr eraill os ydych chi n gallu.',
- 'aboutus-rules2' => 'I ddarllen y rheolau yn llawn a pharchwch nhw!',
- 'aboutus-rules3' => 'Gwnewch awgrymiadau! Rydym yn ymdrechu i wneud: teitl yn well bob dydd. Nid ydym yn dweud y bydd pob awgrym yn cael ei ddefnyddio, ond nid yw byth yn brifo i weld syniadau newydd.',
- 'aboutus-welcome' => 'Gadewch i ni siarad am',
- 'aboutus-welcome-desc' => ': teitl yw cronfa ddata Ffilm / Teledu / FANRES a adeiladwyd yn y gymuned . Mae pob darn o ddata wedi cael ei ychwanegu gan ein cymuned anhygoel ers 2017.: mae ffocws cryf ar deitlau ar gynnwys HD, userbase rhagweithiol, codebase anhygoel / diogel a thîm Staff cyfeillgar a chyfeillgar.',
- 'blacklist-browsers' => 'Porwyr',
- 'blacklist-btclient' => 'Cleient BitTorrent',
- 'blacklist-clients' => 'Cleientiaid',
- 'blacklist-desc' => 'Mae r Porwyr a r Cleientiaid Bittorrent canlynol yn cael eu rhestru ar y rhestr ddu / eu gwahardd rhag cyhoeddi: teitl',
- 'blacklist-webbrowser' => 'Porwr Gwe',
+ 'aboutus-advantage' => 'Y fantais',
+ 'aboutus-advantage1' => 'Mae gennym aelodau profiadol a staff sy n hyddysg ym myd cymorth fideo / sain a thechnegol HD.',
+ 'aboutus-advantage2' => 'Ynghyd â n brwdfrydedd helaeth am ffilmiau a sioeau teledu, rydym hefyd yn cynnig un o r dewisiadau gorau o rywbeth sydd ddim fwyaf - FANRES! DIOLCH YN FAWR i n cynnwyswyr.',
+ 'aboutus-advantage3' => 'Er ein bod yn derbyn rhoddion i gadw r safle ar waith, ni fydd unrhyw PMs na baneri ar y safle. Dim cardio oddi wrthym ni.',
+ 'aboutus-advantage4' => 'Mae ein cymuned heb ei hail am ei oedran cynnar. Rhwng ein staff a n userbase, roeddem bob amser yma i ch helpu. A oedd yn angerddol am wneud yn siŵr bod eich profiad yn: Nid yw teitl yn brin o anhygoel.',
+ 'aboutus-advantage5' => 'Defnyddir ein gwasanaeth yn ddyddiol gan lawer o bobl ar draws y byd. Profwyd ein bod yn poeni am ymarferoldeb a diogelwch ein codebase a gellir ymddiried ynddo a dibynnu arno. Mae ein datblygwyr yn gweithio bob dydd i ddarparu codebase nex-gen gwirioneddol.',
+ 'aboutus-header' => 'Helo yno',
+ 'aboutus-rules' => 'Yr hyn sydd ei angen arnom',
+ 'aboutus-rules1' => 'Bod yn aelod gweithgar o r gymuned! Mae hyn yn golygu ymuno mewn sgyrsiau yn gynhyrchiol, ychwanegu cynnwys cymeradwy a helpu defnyddwyr eraill os ydych chi n gallu.',
+ 'aboutus-rules2' => 'I ddarllen y rheolau yn llawn a pharchwch nhw!',
+ 'aboutus-rules3' => 'Gwnewch awgrymiadau! Rydym yn ymdrechu i wneud: teitl yn well bob dydd. Nid ydym yn dweud y bydd pob awgrym yn cael ei ddefnyddio, ond nid yw byth yn brifo i weld syniadau newydd.',
+ 'aboutus-welcome' => 'Gadewch i ni siarad am',
+ 'aboutus-welcome-desc' => ': teitl yw cronfa ddata Ffilm / Teledu / FANRES a adeiladwyd yn y gymuned . Mae pob darn o ddata wedi cael ei ychwanegu gan ein cymuned anhygoel ers 2017.: mae ffocws cryf ar deitlau ar gynnwys HD, userbase rhagweithiol, codebase anhygoel / diogel a thîm Staff cyfeillgar a chyfeillgar.',
+ 'blacklist-browsers' => 'Porwyr',
+ 'blacklist-btclient' => 'Cleient BitTorrent',
+ 'blacklist-clients' => 'Cleientiaid',
+ 'blacklist-desc' => 'Mae r Porwyr a r Cleientiaid Bittorrent canlynol yn cael eu rhestru ar y rhestr ddu / eu gwahardd rhag cyhoeddi: teitl',
+ 'blacklist-webbrowser' => 'Porwr Gwe',
'blacklist-emaildomain' => 'Parth wedi i flocio',
- 'email-blacklist-desc' => 'Mae r Meysydd E-bost canlynol yn cael eu rhwystro rhag cael eu defnyddio. Ni allwch gofrestru neu anfon gwahoddiad i r canlynol.',
- 'email-whitelist-desc' => 'Y Parthoedd E-bost canlynol yw r Parth E-bost Caniateir Yn Cael Eu Defnyddio. Gallwch ond Cofrestru neu Anfon Gwahoddiad gan ddefnyddio r Dilyniad.',
- 'staff-group' => 'Grŵp',
- 'staff-title' => 'Teitl',
+ 'email-blacklist-desc' => 'Mae r Meysydd E-bost canlynol yn cael eu rhwystro rhag cael eu defnyddio. Ni allwch gofrestru neu anfon gwahoddiad i r canlynol.',
+ 'email-whitelist-desc' => 'Y Parthoedd E-bost canlynol yw r Parth E-bost Caniateir Yn Cael Eu Defnyddio. Gallwch ond Cofrestru neu Anfon Gwahoddiad gan ddefnyddio r Dilyniad.',
+ 'staff-group' => 'Grŵp',
+ 'staff-title' => 'Teitl',
'whitelist-emaildomain' => 'Parth dibynadwy',
];
diff --git a/lang/cy/pagination.php b/lang/cy/pagination.php
index 3c00f34ee..09f271ed3 100644
--- a/lang/cy/pagination.php
+++ b/lang/cy/pagination.php
@@ -24,5 +24,5 @@ return [
*/
'previous' => '« Cynt',
- 'next' => 'Nesaf »',
+ 'next' => 'Nesaf »',
];
diff --git a/lang/cy/passwords.php b/lang/cy/passwords.php
index ee8993cf2..a34984e60 100644
--- a/lang/cy/passwords.php
+++ b/lang/cy/passwords.php
@@ -24,8 +24,8 @@ return [
*/
'password' => "Rhaid i'r cyfrinair fod o leiaf chwe nodyn o hyd ac yn matchio'r maes cadarnhau.",
- 'reset' => 'Mae dy gyfrinair wedi ei ail-osod!',
- 'sent' => "Rydym wedi e-bostio'r ddolen i ail-osod y cyfrinair!",
- 'token' => "Nid yw'r tocyn ail-osod cyfrinair yn ddilys.",
- 'user' => "Ni oes gennym ddefnyddiwr gyda'r cyfeiriad e-bost yna.",
+ 'reset' => 'Mae dy gyfrinair wedi ei ail-osod!',
+ 'sent' => "Rydym wedi e-bostio'r ddolen i ail-osod y cyfrinair!",
+ 'token' => "Nid yw'r tocyn ail-osod cyfrinair yn ddilys.",
+ 'user' => "Ni oes gennym ddefnyddiwr gyda'r cyfeiriad e-bost yna.",
];
diff --git a/lang/cy/pm.php b/lang/cy/pm.php
index 3074c74fb..cedfe6f07 100644
--- a/lang/cy/pm.php
+++ b/lang/cy/pm.php
@@ -12,28 +12,28 @@
*/
return [
- 'create' => 'Creu',
- 'delete' => 'Dileu',
+ 'create' => 'Creu',
+ 'delete' => 'Dileu',
'enter-subject' => 'Rhowch y pwnc',
- 'from' => 'O',
- 'inbox' => 'Mewnflwch',
+ 'from' => 'O',
+ 'inbox' => 'Mewnflwch',
'mark-all-read' => 'Marciwch bob neges fel y i darllenwyd',
- 'message' => 'Neges',
- 'messages' => 'Negeseuon',
- 'new' => 'Neges Newydd',
- 'outbox' => 'Blwch Allan',
- 'private' => 'Preifat',
- 'read' => 'Darllenwch',
- 'received-at' => 'Derbyniwyd Ar',
- 'refresh' => 'Adnewyddu',
- 'reply' => 'Atebwch',
- 'search' => 'Chwilio yn ôl Pwnc',
- 'select' => 'Dewiswch A Defnyddiwr',
- 'send' => 'Anfon PM',
- 'send-to' => 'Anfon PM I',
- 'sent' => 'Anfonwyd',
- 'sent-at' => 'Anfonwyd at',
- 'subject' => 'Pwnc',
- 'to' => 'I',
- 'unread' => 'Heb ei ddarllen',
+ 'message' => 'Neges',
+ 'messages' => 'Negeseuon',
+ 'new' => 'Neges Newydd',
+ 'outbox' => 'Blwch Allan',
+ 'private' => 'Preifat',
+ 'read' => 'Darllenwch',
+ 'received-at' => 'Derbyniwyd Ar',
+ 'refresh' => 'Adnewyddu',
+ 'reply' => 'Atebwch',
+ 'search' => 'Chwilio yn ôl Pwnc',
+ 'select' => 'Dewiswch A Defnyddiwr',
+ 'send' => 'Anfon PM',
+ 'send-to' => 'Anfon PM I',
+ 'sent' => 'Anfonwyd',
+ 'sent-at' => 'Anfonwyd at',
+ 'subject' => 'Pwnc',
+ 'to' => 'I',
+ 'unread' => 'Heb ei ddarllen',
];
diff --git a/lang/cy/poll.php b/lang/cy/poll.php
index 5107c718e..9187dc8c9 100644
--- a/lang/cy/poll.php
+++ b/lang/cy/poll.php
@@ -12,18 +12,18 @@
*/
return [
- 'add-option' => 'Ychwanegu opsiwn',
- 'create-poll' => 'Creu pôl',
- 'current' => 'Pôl (au) Cyfredol',
- 'delete-option' => 'Dileu opsiwn',
+ 'add-option' => 'Ychwanegu opsiwn',
+ 'create-poll' => 'Creu pôl',
+ 'current' => 'Pôl (au) Cyfredol',
+ 'delete-option' => 'Dileu opsiwn',
'multiple-choice' => 'Pôl aml-ddewis yw hwn. Dewiswch gymaint o atebion ag y dymunwch.',
- 'option' => 'Opsiwn',
- 'poll' => 'Pôl',
- 'polls' => 'Pleidleisiau',
- 'results' => 'Canlyniadau Pleidleisio',
- 'title' => 'Teitl',
- 'total' => 'Cyfanswm y Pleidleisiau erioed',
- 'vote' => 'Pleidleisiwch',
- 'vote-now' => 'Cael Eich Pleidlais Nawr!',
- 'votes' => 'Pleidleisiau',
+ 'option' => 'Opsiwn',
+ 'poll' => 'Pôl',
+ 'polls' => 'Pleidleisiau',
+ 'results' => 'Canlyniadau Pleidleisio',
+ 'title' => 'Teitl',
+ 'total' => 'Cyfanswm y Pleidleisiau erioed',
+ 'vote' => 'Pleidleisiwch',
+ 'vote-now' => 'Cael Eich Pleidlais Nawr!',
+ 'votes' => 'Pleidleisiau',
];
diff --git a/lang/cy/request.php b/lang/cy/request.php
index 40f9c194f..0ac3133a2 100644
--- a/lang/cy/request.php
+++ b/lang/cy/request.php
@@ -12,67 +12,67 @@
*/
return [
- 'add-request' => 'Ychwanegu cais',
- 'age' => 'Oedran',
- 'all-requests' => 'Pob cais',
- 'approve' => 'Cymeradwyo',
- 'bounty' => 'Haelioni',
- 'bounty-claimed' => 'Honnodd Bounty',
- 'bounty-unclaimed' => 'Bounty heb ei hawlio',
- 'category' => 'Categori',
- 'claim' => 'Hawlio',
- 'claim-anon-choose' => 'Dewiswch yn Ddoeth',
- 'claim-as-anon' => 'A fyddech chi n hoffi hawlio hyn yn anomaidd',
- 'claim-now' => 'Hawliwch nawr',
- 'claimed' => 'Hawliwyd',
- 'current' => 'Cyfredol',
- 'delete' => 'Dileu r Cais hwn',
+ 'add-request' => 'Ychwanegu cais',
+ 'age' => 'Oedran',
+ 'all-requests' => 'Pob cais',
+ 'approve' => 'Cymeradwyo',
+ 'bounty' => 'Haelioni',
+ 'bounty-claimed' => 'Honnodd Bounty',
+ 'bounty-unclaimed' => 'Bounty heb ei hawlio',
+ 'category' => 'Categori',
+ 'claim' => 'Hawlio',
+ 'claim-anon-choose' => 'Dewiswch yn Ddoeth',
+ 'claim-as-anon' => 'A fyddech chi n hoffi hawlio hyn yn anomaidd',
+ 'claim-now' => 'Hawliwch nawr',
+ 'claimed' => 'Hawliwyd',
+ 'current' => 'Cyfredol',
+ 'delete' => 'Dileu r Cais hwn',
'delete-confirmation' => 'Ydych chi n siŵr eich bod am ddileu r Cais hwn',
- 'delete-filled' => 'Dim ond os nad yw wedi i llenwi y gellir dileu r cais hwn',
- 'description' => 'Disgrifiad',
- 'dont-have-bps' => 'Nid oes gennych ddigon o fonws',
- 'edit-request' => 'Golygu r cais',
- 'enter-bp' => 'Rhowch bwyntiau bonws (o leiaf 100)',
- 'enter-hash' => 'Rhowch yr Hash Info o r Torrent wedi i lwytho i fyny',
- 'fill' => 'Llenwch',
- 'fill-request' => 'Llenwch y cais hwn',
- 'filled' => 'Llenwyd',
- 'filled-by' => 'Llenwyd gan',
- 'for' => 'ar gyfer',
- 'fulfill' => 'Cyflawnwch',
- 'last-vote' => 'Y bleidlais olaf',
- 'my-requests' => 'Fy nghais',
- 'no' => 'Na,',
- 'no-imdb-id' => 'Rhaid i bob cais gynnwys rhif IMDB',
- 'no-privileges' => 'Gwall: Mae eich hawliau cais wedi eu hanalluogi',
- 'no-privileges-desc' => 'Os ydych chi n teimlo bod hyn yn wallus, cysylltwch â Staff',
- 'no-refunds' => 'Mae cyfnewidiadau BON ar greu, llenwi a rhoi arian yn derfynol!
DIM AD-DALIADAU!',
- 'pending' => 'Yn aros',
- 'reason' => 'Rheswm',
- 'reject' => 'Gwrthod',
- 'report' => 'Cais am adroddiad',
- 'request' => 'Cais',
- 'request-details' => 'Gofyn am fanylion',
- 'requested-by' => 'Wedi i geisio gan',
- 'requests' => 'Ceisiadau',
- 'required' => 'Angenrheidiol',
- 'reset' => 'Ail gychwyn',
- 'reset-confirmation' => 'Ydych chi n siŵr eich bod am ailosod y Cais hwn',
- 'reset-request' => 'Ailosod y Cais hwn',
- 'reward' => 'Gwobr',
- 'reward-desc' => 'Faint o bwynt bonws hoffech chi ei wobrwyo? Lleiafswm o 100 BP',
- 'reward-from' => 'O',
- 'title' => 'Teitl',
- 'torrent-hash' => 'Torrent Hash',
- 'total-bounty' => 'Cyfanswm y bounty',
- 'type' => 'Math',
- 'unclaim' => 'Dileu r cais hwn',
- 'unfilled' => 'Heb ei lenwi',
- 'view-filled' => 'Golygfa wedi i llenwi',
- 'view-unfilled' => 'Yr olygfa heb ei llenwi',
- 'vote' => 'Pleidleisiwch',
- 'vote-that' => 'Pleidleisiwch y Cais hwn',
- 'voters' => 'Pleidleiswyr',
- 'votes' => 'Pleidleisiau',
- 'yes' => 'Ydw',
+ 'delete-filled' => 'Dim ond os nad yw wedi i llenwi y gellir dileu r cais hwn',
+ 'description' => 'Disgrifiad',
+ 'dont-have-bps' => 'Nid oes gennych ddigon o fonws',
+ 'edit-request' => 'Golygu r cais',
+ 'enter-bp' => 'Rhowch bwyntiau bonws (o leiaf 100)',
+ 'enter-hash' => 'Rhowch yr Hash Info o r Torrent wedi i lwytho i fyny',
+ 'fill' => 'Llenwch',
+ 'fill-request' => 'Llenwch y cais hwn',
+ 'filled' => 'Llenwyd',
+ 'filled-by' => 'Llenwyd gan',
+ 'for' => 'ar gyfer',
+ 'fulfill' => 'Cyflawnwch',
+ 'last-vote' => 'Y bleidlais olaf',
+ 'my-requests' => 'Fy nghais',
+ 'no' => 'Na,',
+ 'no-imdb-id' => 'Rhaid i bob cais gynnwys rhif IMDB',
+ 'no-privileges' => 'Gwall: Mae eich hawliau cais wedi eu hanalluogi',
+ 'no-privileges-desc' => 'Os ydych chi n teimlo bod hyn yn wallus, cysylltwch â Staff',
+ 'no-refunds' => 'Mae cyfnewidiadau BON ar greu, llenwi a rhoi arian yn derfynol!
DIM AD-DALIADAU!',
+ 'pending' => 'Yn aros',
+ 'reason' => 'Rheswm',
+ 'reject' => 'Gwrthod',
+ 'report' => 'Cais am adroddiad',
+ 'request' => 'Cais',
+ 'request-details' => 'Gofyn am fanylion',
+ 'requested-by' => 'Wedi i geisio gan',
+ 'requests' => 'Ceisiadau',
+ 'required' => 'Angenrheidiol',
+ 'reset' => 'Ail gychwyn',
+ 'reset-confirmation' => 'Ydych chi n siŵr eich bod am ailosod y Cais hwn',
+ 'reset-request' => 'Ailosod y Cais hwn',
+ 'reward' => 'Gwobr',
+ 'reward-desc' => 'Faint o bwynt bonws hoffech chi ei wobrwyo? Lleiafswm o 100 BP',
+ 'reward-from' => 'O',
+ 'title' => 'Teitl',
+ 'torrent-hash' => 'Torrent Hash',
+ 'total-bounty' => 'Cyfanswm y bounty',
+ 'type' => 'Math',
+ 'unclaim' => 'Dileu r cais hwn',
+ 'unfilled' => 'Heb ei lenwi',
+ 'view-filled' => 'Golygfa wedi i llenwi',
+ 'view-unfilled' => 'Yr olygfa heb ei llenwi',
+ 'vote' => 'Pleidleisiwch',
+ 'vote-that' => 'Pleidleisiwch y Cais hwn',
+ 'voters' => 'Pleidleiswyr',
+ 'votes' => 'Pleidleisiau',
+ 'yes' => 'Ydw',
];
diff --git a/lang/cy/rss.php b/lang/cy/rss.php
index 7bf02e1c6..fd09b687c 100644
--- a/lang/cy/rss.php
+++ b/lang/cy/rss.php
@@ -12,19 +12,19 @@
*/
return [
- 'create' => 'Creu',
+ 'create' => 'Creu',
'create-private-feed' => 'Creu Preifat RSS Feed',
- 'create-public-feed' => 'Creu Porth RSS RSS',
- 'delete' => 'Dileu',
- 'edit' => 'Golygu',
- 'edit-private-feed' => 'Golygu Porthiant RSS Preifat',
- 'edit-public-feed' => 'Golygu Porthiant RSS RSS',
- 'feed' => 'Porthiant',
- 'feeds' => 'Bwydydd',
- 'name' => 'Enw',
- 'public' => 'Cyhoeddus',
- 'private' => 'Preifat',
- 'rss' => 'RSS',
- 'rss-feed' => 'Porthiant RSS',
- 'type' => 'Math',
+ 'create-public-feed' => 'Creu Porth RSS RSS',
+ 'delete' => 'Dileu',
+ 'edit' => 'Golygu',
+ 'edit-private-feed' => 'Golygu Porthiant RSS Preifat',
+ 'edit-public-feed' => 'Golygu Porthiant RSS RSS',
+ 'feed' => 'Porthiant',
+ 'feeds' => 'Bwydydd',
+ 'name' => 'Enw',
+ 'public' => 'Cyhoeddus',
+ 'private' => 'Preifat',
+ 'rss' => 'RSS',
+ 'rss-feed' => 'Porthiant RSS',
+ 'type' => 'Math',
];
diff --git a/lang/cy/staff.php b/lang/cy/staff.php
index cdf867bab..aa1782909 100644
--- a/lang/cy/staff.php
+++ b/lang/cy/staff.php
@@ -12,48 +12,48 @@
*/
return [
- 'audit-log' => 'Log Gweithgareddau',
- 'articles' => 'Erthyglau',
- 'applications' => 'Ceisiadau',
- 'bans-log' => 'Logiau Gwahardd',
- 'blocks' => 'Blociau',
- 'bot' => 'Bot',
- 'bots' => 'Bots',
- 'chat' => 'Sgwrs',
- 'config-manager' => 'Rheolwr Config',
- 'dashboard' => 'Dangosfwrdd',
- 'failed-login-log' => 'Cofnod Mewngofnodi Methwyd',
- 'flush-ghost-peers' => 'Cyfeillion Ysbryd Fflysio',
- 'forums' => 'Fforymau',
- 'frontend' => 'Pen blaen',
- 'general-tools' => 'Offer Cyffredinol',
- 'groups' => 'Grwpiau',
- 'invites-log' => 'Log Gwahoddiadau',
- 'laravel-log' => 'Log Laravel',
- 'links' => 'Cysylltiadau',
- 'logs' => 'Logiau',
- 'mass-pm' => 'Offeren PM',
- 'mass-validate-users' => 'Defnyddwyr Dilysu Offeren',
- 'moderation' => 'Safoni',
- 'pages' => 'Tudalennau',
- 'please-moderate' => 'Os gwelwch yn dda Cymedrol Y Torrent hwn!',
- 'polls' => 'Pleidleisiau',
- 'reports-log' => 'Log Adroddiadau',
- 'rss' => 'RSS',
- 'staff-dashboard' => 'Dangosfwrdd Staff',
- 'torrent-categories' => 'Categorïau Cenllif',
- 'torrent-moderation' => 'Cymedroli Cenllif',
- 'torrent-tools' => 'Offer Cenllif',
- 'torrent-types' => 'Mathau Cenllif',
- 'torrents' => 'Cenllifau',
- 'user-gifting' => 'Rhoddion Defnyddwyr',
- 'user-notes' => 'Log Nodiadau Defnyddiwr',
- 'user-search' => 'Chwilio Defnyddiwr',
- 'user-tools' => 'Offer Defnyddwyr',
- 'warnings-log' => 'Log Rhybuddion',
- 'you-have' => 'Chi Wedi',
+ 'audit-log' => 'Log Gweithgareddau',
+ 'articles' => 'Erthyglau',
+ 'applications' => 'Ceisiadau',
+ 'bans-log' => 'Logiau Gwahardd',
+ 'blocks' => 'Blociau',
+ 'bot' => 'Bot',
+ 'bots' => 'Bots',
+ 'chat' => 'Sgwrs',
+ 'config-manager' => 'Rheolwr Config',
+ 'dashboard' => 'Dangosfwrdd',
+ 'failed-login-log' => 'Cofnod Mewngofnodi Methwyd',
+ 'flush-ghost-peers' => 'Cyfeillion Ysbryd Fflysio',
+ 'forums' => 'Fforymau',
+ 'frontend' => 'Pen blaen',
+ 'general-tools' => 'Offer Cyffredinol',
+ 'groups' => 'Grwpiau',
+ 'invites-log' => 'Log Gwahoddiadau',
+ 'laravel-log' => 'Log Laravel',
+ 'links' => 'Cysylltiadau',
+ 'logs' => 'Logiau',
+ 'mass-pm' => 'Offeren PM',
+ 'mass-validate-users' => 'Defnyddwyr Dilysu Offeren',
+ 'moderation' => 'Safoni',
+ 'pages' => 'Tudalennau',
+ 'please-moderate' => 'Os gwelwch yn dda Cymedrol Y Torrent hwn!',
+ 'polls' => 'Pleidleisiau',
+ 'reports-log' => 'Log Adroddiadau',
+ 'rss' => 'RSS',
+ 'staff-dashboard' => 'Dangosfwrdd Staff',
+ 'torrent-categories' => 'Categorïau Cenllif',
+ 'torrent-moderation' => 'Cymedroli Cenllif',
+ 'torrent-tools' => 'Offer Cenllif',
+ 'torrent-types' => 'Mathau Cenllif',
+ 'torrents' => 'Cenllifau',
+ 'user-gifting' => 'Rhoddion Defnyddwyr',
+ 'user-notes' => 'Log Nodiadau Defnyddiwr',
+ 'user-search' => 'Chwilio Defnyddiwr',
+ 'user-tools' => 'Offer Defnyddwyr',
+ 'warnings-log' => 'Log Rhybuddion',
+ 'you-have' => 'Chi Wedi',
'possible-leech-cheaters' => 'Cheaters Posibl',
- 'chat-tools' => 'Offer Sgwrsio',
- 'flush-chat' => 'Flush Chatbox',
- 'seedboxes' => 'Blychau Hadau Cofrestredig',
+ 'chat-tools' => 'Offer Sgwrsio',
+ 'flush-chat' => 'Flush Chatbox',
+ 'seedboxes' => 'Blychau Hadau Cofrestredig',
];
diff --git a/lang/cy/stat.php b/lang/cy/stat.php
index 740d8cf47..7fb70ec05 100644
--- a/lang/cy/stat.php
+++ b/lang/cy/stat.php
@@ -12,40 +12,40 @@
*/
return [
- 'by-count' => 'Trwy Gyfrif',
- 'by-data' => 'Yn ôl Data',
- 'by-volume' => 'Yn ôl Cyfrol',
- 'group' => 'Grŵp',
- 'groups' => 'Grwpiau',
- 'nerd-stats' => 'Ystadegau Nerd',
- 'nerd-stats-desc' => 'Rydym i gyd yn caru ystadegau. Dyma rai sy n bwysig i ni',
- 'registration-date' => 'Dyddiad cofrestru',
- 'request-fulfilled' => 'Cais wedi i gyflawni',
- 'request-not-fulfilled' => 'Cais heb ei gyflawni',
+ 'by-count' => 'Trwy Gyfrif',
+ 'by-data' => 'Yn ôl Data',
+ 'by-volume' => 'Yn ôl Cyfrol',
+ 'group' => 'Grŵp',
+ 'groups' => 'Grwpiau',
+ 'nerd-stats' => 'Ystadegau Nerd',
+ 'nerd-stats-desc' => 'Rydym i gyd yn caru ystadegau. Dyma rai sy n bwysig i ni',
+ 'registration-date' => 'Dyddiad cofrestru',
+ 'request-fulfilled' => 'Cais wedi i gyflawni',
+ 'request-not-fulfilled' => 'Cais heb ei gyflawni',
'request-pending-aproval' => 'Cais yn aros am gymeradwyaeth',
- 'select-category' => 'Dewiswch gategori isod',
- 'site-stats' => 'Ystadegau safleoedd',
- 'stats' => 'Ystadegau',
- 'stats-format' => 'Pob Stats a Arddangosir yn y 100 Fformat Uchaf',
- 'top-bankers' => 'Bancwyr Uchaf',
- 'top-bountied' => 'Yn Gyfrifol Uchaf',
- 'top-completed' => 'Top Wedi i gwblhau',
- 'top-dead' => 'Top Marw',
- 'top-downloaded' => 'Uchafbwyntiau a Lawrlwythwyd',
- 'top-downloaders' => 'Prif Lawrlwytho',
- 'top-dying' => 'Top Marw',
- 'top-leeched' => 'Top Leeched',
- 'top-leechers' => 'Top Cigyddion',
- 'top-seeded' => 'Top Seeded',
- 'top-seeding' => 'Hadau Uchaf',
- 'top-seeders' => 'Prif Seeders',
- 'top-seedsize' => 'Top Seedsize',
- 'top-seedtime' => 'Top Seedtime',
- 'top-uploaders' => 'Top Uploaders',
- 'total-download' => 'Cyfanswm Lawrlwytho',
- 'total-torrents' => 'Cyfanswm Torrents',
- 'total-traffic' => 'Cyfanswm Traffig',
- 'total-upload' => 'Cyfanswm llwytho',
- 'users-in-group' => 'Defnyddwyr Mewn Grŵp',
- 'users-per-group' => 'Defnyddwyr Per Grŵp',
+ 'select-category' => 'Dewiswch gategori isod',
+ 'site-stats' => 'Ystadegau safleoedd',
+ 'stats' => 'Ystadegau',
+ 'stats-format' => 'Pob Stats a Arddangosir yn y 100 Fformat Uchaf',
+ 'top-bankers' => 'Bancwyr Uchaf',
+ 'top-bountied' => 'Yn Gyfrifol Uchaf',
+ 'top-completed' => 'Top Wedi i gwblhau',
+ 'top-dead' => 'Top Marw',
+ 'top-downloaded' => 'Uchafbwyntiau a Lawrlwythwyd',
+ 'top-downloaders' => 'Prif Lawrlwytho',
+ 'top-dying' => 'Top Marw',
+ 'top-leeched' => 'Top Leeched',
+ 'top-leechers' => 'Top Cigyddion',
+ 'top-seeded' => 'Top Seeded',
+ 'top-seeding' => 'Hadau Uchaf',
+ 'top-seeders' => 'Prif Seeders',
+ 'top-seedsize' => 'Top Seedsize',
+ 'top-seedtime' => 'Top Seedtime',
+ 'top-uploaders' => 'Top Uploaders',
+ 'total-download' => 'Cyfanswm Lawrlwytho',
+ 'total-torrents' => 'Cyfanswm Torrents',
+ 'total-traffic' => 'Cyfanswm Traffig',
+ 'total-upload' => 'Cyfanswm llwytho',
+ 'users-in-group' => 'Defnyddwyr Mewn Grŵp',
+ 'users-per-group' => 'Defnyddwyr Per Grŵp',
];
diff --git a/lang/cy/torrent.php b/lang/cy/torrent.php
index e63a63177..6895a5724 100644
--- a/lang/cy/torrent.php
+++ b/lang/cy/torrent.php
@@ -12,197 +12,197 @@
*/
return [
- 'activity' => 'Gweithgaredd',
- 'age' => 'Oedran',
- 'agent' => 'Asiant',
- 'alive' => 'Byw n fyw',
- 'announce-url' => 'Cyhoeddi URL',
- 'announce-url-desc' => 'Defnyddiwch yr URL cyhoeddi uchod wrth greu llifeiriant newydd. Os ydych chi am ddefnyddio ch cenllif heb ei lwytho i lawr o r safle mae angen i chi osod y faner breifat a r ffynhonnell i: ffynhonnell',
- 'announce-url-desc-url' => 'Cael trafferth? Gweler Ein Canllaw YMA',
- 'announce-url-desc2' => 'Mae angen TMDB ac IMDB ar gyfer pob llwythiad! Fe i defnyddir i gydio mewn Posteri / Cefnlenni a ExtraInfo',
- 'approved' => 'Cymeradwywyd',
- 'audio' => 'Sain',
- 'bon-tipped' => 'BON Tipped',
- 'bookmark' => 'Nod tudalen',
- 'bookmarks' => 'Llyfrnodau',
- 'bump' => 'Bump',
- 'cant-upload' => 'Gwall: Mae ch Hawliau Llwytho i Fyny yn Anabl',
- 'cant-upload-desc' => 'Os ydych chi n teimlo bod hyn yn wallus, cysylltwch â staff',
- 'cards' => 'Cardiau',
- 'cards-view' => 'Gweld Cardiau Cenllif',
- 'categories' => 'Categorïau',
- 'category' => 'Categori',
- 'client' => 'Cleient',
- 'commited' => 'Wedi i gomisiynu',
- 'completed' => 'Wedi i gwblhau',
- 'completed_at' => 'Cwblhawyd ar',
- 'completed-not-seeding' => 'Fe wnaethoch chi Cwblhau r Lawrlwythiad hwn ond Ddim yn Hadau Hwyrach',
- 'created_at' => 'Crëwyd yn',
- 'credited' => 'Wedi i gredydu',
- 'current' => 'Cyfredol',
- 'current-filters' => 'Hidlau Cyfredol',
- 'currently-leeching' => 'Yn coginio ar hyn o bryd',
- 'currently-seeding' => 'Hadau ar hyn o bryd',
- 'dead-torrent' => 'Cenllifen Farw',
- 'dead-torrents' => 'Torrentau Marw',
- 'delete-bookmark' => 'Dileu y Llyfrnod hwn',
- 'description' => 'Disgrifiad',
- 'discounts' => 'Gostyngiadau',
- 'double-upload' => 'Llwytho Dwbl',
- 'download-all' => 'Download All',
- 'download-check' => 'Lawrlwytho siec',
- 'downloaded' => 'Lawrlwythwyd',
- 'dying-torrent' => 'Marw Torrent',
- 'dying-torrents' => 'Cenhedlu yn marw',
- 'encode-settings' => 'Amgodio Lleoliadau',
- 'estimated-ratio' => 'Amcangyfrif o r gymhareb ar ôl ei lawrlwytho',
- 'failed' => 'Wedi methu',
- 'feature' => 'Nodwedd',
- 'featured' => 'Sylw',
- 'featured-desc' => 'Ffrindiau amlwg yw 100% am ddim a Llwythwch Dwbl!',
- 'featured-until' => 'Mae hwn yn Genllif Dan Sylw Tan',
- 'file' => 'Ffeil',
- 'filters' => 'Hidlau',
- 'fl-tokens-left' => 'Mae gennych chi : tocynnau ar ôl',
- 'freeleech' => 'Rhyddfrydol',
- 'freeleech-token' => 'Tocyn Rhyddfrydol',
- 'general' => 'Cyffredinol',
- 'genre' => 'Genre',
- 'global-double-upload' => 'Llwythiad Dwbl Byd-eang',
- 'global-freeleech' => 'Rhydd-Llais Byd-eang',
- 'grant' => 'Grant',
- 'greater-than' => 'Yn fwy na',
- 'grouping' => 'Grwpio',
- 'groupings' => 'Grwpiau',
- 'grouping-categories' => 'Categorïau grwpio',
+ 'activity' => 'Gweithgaredd',
+ 'age' => 'Oedran',
+ 'agent' => 'Asiant',
+ 'alive' => 'Byw n fyw',
+ 'announce-url' => 'Cyhoeddi URL',
+ 'announce-url-desc' => 'Defnyddiwch yr URL cyhoeddi uchod wrth greu llifeiriant newydd. Os ydych chi am ddefnyddio ch cenllif heb ei lwytho i lawr o r safle mae angen i chi osod y faner breifat a r ffynhonnell i: ffynhonnell',
+ 'announce-url-desc-url' => 'Cael trafferth? Gweler Ein Canllaw YMA',
+ 'announce-url-desc2' => 'Mae angen TMDB ac IMDB ar gyfer pob llwythiad! Fe i defnyddir i gydio mewn Posteri / Cefnlenni a ExtraInfo',
+ 'approved' => 'Cymeradwywyd',
+ 'audio' => 'Sain',
+ 'bon-tipped' => 'BON Tipped',
+ 'bookmark' => 'Nod tudalen',
+ 'bookmarks' => 'Llyfrnodau',
+ 'bump' => 'Bump',
+ 'cant-upload' => 'Gwall: Mae ch Hawliau Llwytho i Fyny yn Anabl',
+ 'cant-upload-desc' => 'Os ydych chi n teimlo bod hyn yn wallus, cysylltwch â staff',
+ 'cards' => 'Cardiau',
+ 'cards-view' => 'Gweld Cardiau Cenllif',
+ 'categories' => 'Categorïau',
+ 'category' => 'Categori',
+ 'client' => 'Cleient',
+ 'commited' => 'Wedi i gomisiynu',
+ 'completed' => 'Wedi i gwblhau',
+ 'completed_at' => 'Cwblhawyd ar',
+ 'completed-not-seeding' => 'Fe wnaethoch chi Cwblhau r Lawrlwythiad hwn ond Ddim yn Hadau Hwyrach',
+ 'created_at' => 'Crëwyd yn',
+ 'credited' => 'Wedi i gredydu',
+ 'current' => 'Cyfredol',
+ 'current-filters' => 'Hidlau Cyfredol',
+ 'currently-leeching' => 'Yn coginio ar hyn o bryd',
+ 'currently-seeding' => 'Hadau ar hyn o bryd',
+ 'dead-torrent' => 'Cenllifen Farw',
+ 'dead-torrents' => 'Torrentau Marw',
+ 'delete-bookmark' => 'Dileu y Llyfrnod hwn',
+ 'description' => 'Disgrifiad',
+ 'discounts' => 'Gostyngiadau',
+ 'double-upload' => 'Llwytho Dwbl',
+ 'download-all' => 'Download All',
+ 'download-check' => 'Lawrlwytho siec',
+ 'downloaded' => 'Lawrlwythwyd',
+ 'dying-torrent' => 'Marw Torrent',
+ 'dying-torrents' => 'Cenhedlu yn marw',
+ 'encode-settings' => 'Amgodio Lleoliadau',
+ 'estimated-ratio' => 'Amcangyfrif o r gymhareb ar ôl ei lawrlwytho',
+ 'failed' => 'Wedi methu',
+ 'feature' => 'Nodwedd',
+ 'featured' => 'Sylw',
+ 'featured-desc' => 'Ffrindiau amlwg yw 100% am ddim a Llwythwch Dwbl!',
+ 'featured-until' => 'Mae hwn yn Genllif Dan Sylw Tan',
+ 'file' => 'Ffeil',
+ 'filters' => 'Hidlau',
+ 'fl-tokens-left' => 'Mae gennych chi : tocynnau ar ôl',
+ 'freeleech' => 'Rhyddfrydol',
+ 'freeleech-token' => 'Tocyn Rhyddfrydol',
+ 'general' => 'Cyffredinol',
+ 'genre' => 'Genre',
+ 'global-double-upload' => 'Llwythiad Dwbl Byd-eang',
+ 'global-freeleech' => 'Rhydd-Llais Byd-eang',
+ 'grant' => 'Grant',
+ 'greater-than' => 'Yn fwy na',
+ 'grouping' => 'Grwpio',
+ 'groupings' => 'Grwpiau',
+ 'grouping-categories' => 'Categorïau grwpio',
'grouping-categories-desc' => 'Pa gategori fyddech chi n hoffi ei grwpio?',
- 'grouping-results' => 'Canlyniadau Grwpio',
- 'groupings-view' => 'Gweld Grwpiau',
- 'have-completed' => 'Wedi i gwblhau',
- 'have-downloaded' => 'Lawrlwythwyd',
- 'have-not-completed' => 'Heb ei gwblhau',
- 'have-not-downloaded' => 'Heb ei Lawrlwytho',
- 'health' => 'Iechyd',
- 'history' => 'Hanes',
- 'hitrun' => 'H&R?',
- 'hit-and-runs' => 'Mae Hit and Run yn cyfrif',
- 'immune' => 'Imiwn?',
- 'info' => 'Gwybodaeth',
- 'internal' => 'Mewnol',
- 'internal-release' => 'Rhyddhad mewnol',
- 'last-seed-activity' => 'Gweithgaredd hadau diwethaf',
- 'last-seeder' => 'Chi yw r Seeder Gweddill Olaf! (wedi ei lwytho i lawr atleast 3 gwaith)',
- 'last-update' => 'Diweddariad diwethaf',
- 'leave-tip' => 'Gadewch domen',
- 'leecher' => 'Leecher',
- 'leechers' => 'Cigyddion',
- 'leeching' => 'Cnoi',
- 'left' => 'Chwith',
- 'legendary-seeder' => 'Hyrwyddwr chwedlonol',
- 'legendary-torrent' => 'Torrent chwedlonol',
- 'list' => 'Rhestr',
- 'me' => 'Fi',
- 'media-info' => 'MediaInfo',
- 'media-info-parser' => 'Parser MediaInfo',
- 'media-info-paste' => 'Gludwch dymp MediaInfo yma',
- 'meta-desc' => 'Llwytho: enw ar gyflymder uchaf',
- 'moderation' => 'Safoni',
- 'movies' => 'Ffilmiau',
- 'mvp' => 'MVP',
- 'my-active-torrents' => 'Fy ffrydiau gweithredol',
- 'name' => 'Enw',
- 'no-bookmarks' => 'Nid oes unrhyw nod llyfr.',
- 'no-discounts' => 'Dim gostyngiadau ar hyn o bryd',
- 'no-meta' => 'Ni ddarganfuwyd metadata',
- 'no-privileges' => 'Nid ydych yn gallu lawrlwytho r ffeil hon - gwiriwch isod am fwy o wybodaeth',
- 'no-privileges-desc' => 'Atebwch y canlyniadau a fethwyd uchod er mwyn i r botwm lawrlwytho ymddangos',
- 'not-completed' => 'Wedi i Ddechrau Llwytho i Lawr ond Heb ei Gwblhau',
- 'not-downloaded' => 'Heb ei Lawrlwytho',
- 'old-torrent' => 'Hen ffres',
- 'optional' => 'Dewisol',
- 'original-output' => 'Dangos / Cuddio allbwn gwreiddiol',
- 'participant' => 'Cyfranogwr',
- 'passed' => 'Pasiwyd',
- 'peers' => 'Cymheiriaid',
- 'pending' => 'Yn aros',
- 'personal-freeleech' => 'Lleferydd Personol Personol',
- 'poster' => 'Poster',
- 'poster-view' => 'Golygfa o bosteri',
- 'posters' => 'Posteri',
- 'prewarn' => 'Wedi ch rhagddarllen?',
- 'progress' => 'Cynnydd',
- 'quick-comment' => 'Sylw Cyflym',
- 'quick-tip' => 'Symiau tip cyflym',
- 'rated' => 'Graddiwyd',
- 'rating' => 'Graddio',
- 'ready' => 'Mae r ffeil hon yn barod i w lawrlwytho',
- 'rejected' => 'Gwrthodwyd',
- 'released' => 'Rhyddhawyd',
- 'remaining' => 'Yn weddill',
- 'request-reseed' => 'Cais am gael eich achub',
- 'requires-reseed' => 'Angen ei Osgoi',
- 'resurrections' => 'Atgyfeiriadau',
- 'revoke' => 'Diddymu',
- 'rss' => 'RSS',
- 'runtime' => 'Runtime',
- 'satisfied_in' => 'Bodlon yn',
- 'say-thanks' => 'Cofiwch ddweud diolch a hadau am gyn hired â phosibl',
- 'sd-content' => 'Cynnwys SD',
- 'search' => 'Chwilio',
- 'seed-time' => 'Amser hadau',
- 'seeder' => 'Seeder',
- 'seeders' => 'Hadau',
- 'seeding' => 'Hadau',
- 'seedsize' => 'Seedsize',
- 'seedtime' => 'Amser Hadau',
- 'short-completed' => 'C',
- 'short-leechs' => 'L',
- 'short-seeds' => 'S',
- 'show-files' => 'Dangos Ffeiliau',
- 'similar' => 'Cenllifau Tebyg',
- 'size' => 'Maint',
- 'special' => 'Arbennig',
- 'special-freeleech' => 'Lleferydd Arbennig',
- 'started' => 'Dechreuwyd',
- 'status' => 'Statws',
- 'statistics' => 'Ystadegau',
- 'stats' => 'Ystadegau',
- 'sticky' => 'Gludiog',
- 'stream-optimized' => 'Ffrydio wedi i optimeiddio',
- 'subtitle' => 'Is-deitl',
- 'team-player' => 'Chwaraewr tim',
- 'thank' => 'Diolch',
- 'thanked' => 'Diolchodd',
- 'thanks' => 'Diolch',
- 'thanks-given' => 'Diolch',
- 'times' => 'Amseroedd',
- 'tip-jar' => 'Jar tip',
- 'title' => 'Teitl',
- 'titles' => 'Teitlau',
- 'top-completed' => 'Wedi i gwblhau',
- 'top-dead' => 'Marw uchaf',
- 'top-dying' => 'Yn marw uchaf',
- 'top-leeched' => 'Brig y geg',
- 'top-seeded' => 'Top hadu',
- 'torrent' => 'Torrent',
- 'torrent-request' => 'Cais Cenllif',
- 'torrent-tips' => 'Cyfanswm : mae cyfanswm y BON wedi ei dipio i r llwythwr, gyda : defnyddiwr yn dod oddi wrthych',
- 'torrent-tips-desc' => 'Bydd hyn yn cael ei dynnu o ch pwyntiau bonws sydd ar gael',
- 'torrents' => 'Cenllifau',
- 'trailer' => 'Gweld y trelar',
- 'type' => 'Math',
- 'types' => 'Mathau',
- 'unbookmark' => 'Unbookmark',
- 'unsatisfieds' => 'Anfodlon',
- 'unsticky' => 'Unsticky',
- 'updated' => 'Diweddarwyd',
- 'updated_at' => 'Diweddarwyd yn',
- 'uploaded' => 'Llwythwyd i fyny',
- 'uploaded-by' => 'Llwythwyd i fyny gan',
- 'uploader' => 'Uploader',
- 'use-fl-token' => 'Defnyddiwch Docyn Rhydd',
- 'video' => 'Fideo',
- 'view-more' => 'Gweld mwy',
- 'view-trailer' => 'Gweld y trelar',
- 'votes' => 'Pleidleisiau',
+ 'grouping-results' => 'Canlyniadau Grwpio',
+ 'groupings-view' => 'Gweld Grwpiau',
+ 'have-completed' => 'Wedi i gwblhau',
+ 'have-downloaded' => 'Lawrlwythwyd',
+ 'have-not-completed' => 'Heb ei gwblhau',
+ 'have-not-downloaded' => 'Heb ei Lawrlwytho',
+ 'health' => 'Iechyd',
+ 'history' => 'Hanes',
+ 'hitrun' => 'H&R?',
+ 'hit-and-runs' => 'Mae Hit and Run yn cyfrif',
+ 'immune' => 'Imiwn?',
+ 'info' => 'Gwybodaeth',
+ 'internal' => 'Mewnol',
+ 'internal-release' => 'Rhyddhad mewnol',
+ 'last-seed-activity' => 'Gweithgaredd hadau diwethaf',
+ 'last-seeder' => 'Chi yw r Seeder Gweddill Olaf! (wedi ei lwytho i lawr atleast 3 gwaith)',
+ 'last-update' => 'Diweddariad diwethaf',
+ 'leave-tip' => 'Gadewch domen',
+ 'leecher' => 'Leecher',
+ 'leechers' => 'Cigyddion',
+ 'leeching' => 'Cnoi',
+ 'left' => 'Chwith',
+ 'legendary-seeder' => 'Hyrwyddwr chwedlonol',
+ 'legendary-torrent' => 'Torrent chwedlonol',
+ 'list' => 'Rhestr',
+ 'me' => 'Fi',
+ 'media-info' => 'MediaInfo',
+ 'media-info-parser' => 'Parser MediaInfo',
+ 'media-info-paste' => 'Gludwch dymp MediaInfo yma',
+ 'meta-desc' => 'Llwytho: enw ar gyflymder uchaf',
+ 'moderation' => 'Safoni',
+ 'movies' => 'Ffilmiau',
+ 'mvp' => 'MVP',
+ 'my-active-torrents' => 'Fy ffrydiau gweithredol',
+ 'name' => 'Enw',
+ 'no-bookmarks' => 'Nid oes unrhyw nod llyfr.',
+ 'no-discounts' => 'Dim gostyngiadau ar hyn o bryd',
+ 'no-meta' => 'Ni ddarganfuwyd metadata',
+ 'no-privileges' => 'Nid ydych yn gallu lawrlwytho r ffeil hon - gwiriwch isod am fwy o wybodaeth',
+ 'no-privileges-desc' => 'Atebwch y canlyniadau a fethwyd uchod er mwyn i r botwm lawrlwytho ymddangos',
+ 'not-completed' => 'Wedi i Ddechrau Llwytho i Lawr ond Heb ei Gwblhau',
+ 'not-downloaded' => 'Heb ei Lawrlwytho',
+ 'old-torrent' => 'Hen ffres',
+ 'optional' => 'Dewisol',
+ 'original-output' => 'Dangos / Cuddio allbwn gwreiddiol',
+ 'participant' => 'Cyfranogwr',
+ 'passed' => 'Pasiwyd',
+ 'peers' => 'Cymheiriaid',
+ 'pending' => 'Yn aros',
+ 'personal-freeleech' => 'Lleferydd Personol Personol',
+ 'poster' => 'Poster',
+ 'poster-view' => 'Golygfa o bosteri',
+ 'posters' => 'Posteri',
+ 'prewarn' => 'Wedi ch rhagddarllen?',
+ 'progress' => 'Cynnydd',
+ 'quick-comment' => 'Sylw Cyflym',
+ 'quick-tip' => 'Symiau tip cyflym',
+ 'rated' => 'Graddiwyd',
+ 'rating' => 'Graddio',
+ 'ready' => 'Mae r ffeil hon yn barod i w lawrlwytho',
+ 'rejected' => 'Gwrthodwyd',
+ 'released' => 'Rhyddhawyd',
+ 'remaining' => 'Yn weddill',
+ 'request-reseed' => 'Cais am gael eich achub',
+ 'requires-reseed' => 'Angen ei Osgoi',
+ 'resurrections' => 'Atgyfeiriadau',
+ 'revoke' => 'Diddymu',
+ 'rss' => 'RSS',
+ 'runtime' => 'Runtime',
+ 'satisfied_in' => 'Bodlon yn',
+ 'say-thanks' => 'Cofiwch ddweud diolch a hadau am gyn hired â phosibl',
+ 'sd-content' => 'Cynnwys SD',
+ 'search' => 'Chwilio',
+ 'seed-time' => 'Amser hadau',
+ 'seeder' => 'Seeder',
+ 'seeders' => 'Hadau',
+ 'seeding' => 'Hadau',
+ 'seedsize' => 'Seedsize',
+ 'seedtime' => 'Amser Hadau',
+ 'short-completed' => 'C',
+ 'short-leechs' => 'L',
+ 'short-seeds' => 'S',
+ 'show-files' => 'Dangos Ffeiliau',
+ 'similar' => 'Cenllifau Tebyg',
+ 'size' => 'Maint',
+ 'special' => 'Arbennig',
+ 'special-freeleech' => 'Lleferydd Arbennig',
+ 'started' => 'Dechreuwyd',
+ 'status' => 'Statws',
+ 'statistics' => 'Ystadegau',
+ 'stats' => 'Ystadegau',
+ 'sticky' => 'Gludiog',
+ 'stream-optimized' => 'Ffrydio wedi i optimeiddio',
+ 'subtitle' => 'Is-deitl',
+ 'team-player' => 'Chwaraewr tim',
+ 'thank' => 'Diolch',
+ 'thanked' => 'Diolchodd',
+ 'thanks' => 'Diolch',
+ 'thanks-given' => 'Diolch',
+ 'times' => 'Amseroedd',
+ 'tip-jar' => 'Jar tip',
+ 'title' => 'Teitl',
+ 'titles' => 'Teitlau',
+ 'top-completed' => 'Wedi i gwblhau',
+ 'top-dead' => 'Marw uchaf',
+ 'top-dying' => 'Yn marw uchaf',
+ 'top-leeched' => 'Brig y geg',
+ 'top-seeded' => 'Top hadu',
+ 'torrent' => 'Torrent',
+ 'torrent-request' => 'Cais Cenllif',
+ 'torrent-tips' => 'Cyfanswm : mae cyfanswm y BON wedi ei dipio i r llwythwr, gyda : defnyddiwr yn dod oddi wrthych',
+ 'torrent-tips-desc' => 'Bydd hyn yn cael ei dynnu o ch pwyntiau bonws sydd ar gael',
+ 'torrents' => 'Cenllifau',
+ 'trailer' => 'Gweld y trelar',
+ 'type' => 'Math',
+ 'types' => 'Mathau',
+ 'unbookmark' => 'Unbookmark',
+ 'unsatisfieds' => 'Anfodlon',
+ 'unsticky' => 'Unsticky',
+ 'updated' => 'Diweddarwyd',
+ 'updated_at' => 'Diweddarwyd yn',
+ 'uploaded' => 'Llwythwyd i fyny',
+ 'uploaded-by' => 'Llwythwyd i fyny gan',
+ 'uploader' => 'Uploader',
+ 'use-fl-token' => 'Defnyddiwch Docyn Rhydd',
+ 'video' => 'Fideo',
+ 'view-more' => 'Gweld mwy',
+ 'view-trailer' => 'Gweld y trelar',
+ 'votes' => 'Pleidleisiau',
];
diff --git a/lang/cy/user.php b/lang/cy/user.php
index 3ec67d5e2..546dff8ab 100644
--- a/lang/cy/user.php
+++ b/lang/cy/user.php
@@ -12,316 +12,316 @@
*/
return [
- 'about' => 'Ynglŷn â',
- 'about-me' => 'Amdanaf i',
- 'accepted-at' => 'Derbyniwyd yn',
- 'accepted-by' => 'Derbyniwyd gan',
- 'account-notification' => 'Lleoliadau Hysbysu Cyfrifon',
- 'account-notification-follow' => 'Derbyn hysbysiad pan fydd defnyddiwr yn dilyn eich cyfrif',
- 'account-notification-unfollow' => 'Derbyn hysbysiad pan fydd defnyddiwr yn dad-ddatgelu eich cyfrif',
- 'account-notification-help' => 'Rheolaeth sy n anfon hysbysiadau ynghylch eich cyfrif. Mae r gosodiadau hyn yn cael eu diystyru os na fyddwch yn caniatáu i unrhyw grwpiau anfon hysbysiadau ynghylch eich cyfrif neu os ydych yn Analluogi Hysbysiadau',
- 'account-settings' => 'Gosodiadau Cyfrif',
- 'achievement-privacy' => 'Lleoliadau Cyflawniad',
- 'achievement-privacy-list' => 'Caniatáu i ddefnyddwyr weld rhestr o ch cyflawniadau',
- 'achievement-help' => 'Rheoli rhannu gwybodaeth sy n ymwneud â chyflawniad penodol gyda grwpiau sy n cael mynediad i ch proffil. Mae r gosodiadau hyn yn cael eu diystyru os na fyddwch yn caniatáu i unrhyw grwpiau gael mynediad i ch cyflawniadau neu os ydych chi n mynd yn breifat',
- 'achievements' => 'Cyflawniadau',
- 'active' => 'Actif',
- 'active-table' => 'My Active Table',
- 'active-torrents' => 'Ffrwythlondeb gweithredol',
- 'active-warning' => 'Rhybudd Gweithredol',
- 'active-warnings' => 'Rhybuddion Actif',
- 'add-seedbox' => 'Ychwanegu Seedbox',
- 'all-torrents' => 'Pob Cenllif',
- 'article-comments' => 'Sylwadau r Sylwadau',
- 'avatar' => 'Avatar',
- 'avg-seedtime' => 'Cyfartaledd Hadau Amser',
- 'badges' => 'Bathodynnau',
- 'ban' => 'Gwahardd Defnyddiwr',
- 'ban-log' => 'Log Ban',
- 'become-hidden' => 'Dod yn gudd',
- 'become-visible' => 'Dewch yn Weladwy',
- 'bon' => 'BON',
- 'bon-notification' => 'Lleoliadau Hysbysu BON',
- 'bon-notification-gift' => 'Derbyn hysbysiad pan fydd defnyddiwr yn rhoi bon i chi',
- 'bon-notification-help' => 'Rheolaeth sy n anfon hysbysiadau ynghylch trafodion BON. Mae r gosodiadau hyn yn cael eu diystyru os na fyddwch yn caniatáu i unrhyw grwpiau anfon hysbysiadau ynghylch BON neu os ydych yn Analluogi Hysbysiadau',
- 'bookmarks' => 'Llyfrnodau',
- 'bounty-given' => 'Bounty Given',
- 'bounty-received' => 'Derbyniwyd Bounty',
- 'can-chat' => 'Yn gallu Sgwrsio',
- 'can-comment' => 'Yn gallu Sylwadau',
- 'can-download' => 'Gallu Lawrlwytho',
- 'can-invite' => 'Gall wahodd',
- 'can-request' => 'Gallu Gwneud Cais',
- 'can-upload' => 'Yn gallu llwytho',
- 'certified-banker' => 'Bancwr Ardystiedig',
- 'certified-banker-desc' => 'Mae ganddo 50,000 neu fwy o fwg yn y banc',
- 'certified-downloader' => 'Downloader Ardystiedig',
- 'certified-downloader-desc' => 'Lawrlwythwyd 100 neu More Torrents!',
- 'certified-seeder' => 'Seeder Ardystiedig',
- 'certified-seeder-desc' => 'Hadau 150 Neu Mwy o Rhedolion!',
- 'change-email' => 'Newid E-bost',
- 'change-email-help' => 'Bydd yn rhaid i chi ail-gadarnhau eich cyfrif, ar ôl i chi newid eich e-bost',
- 'change-password' => 'Newid cyfrinair',
- 'change-password-help' => 'Bydd yn rhaid i chi fewngofnodi eto, ar ôl i chi newid eich cyfrinair',
- 'client-ip-address' => 'Cyfeiriad IP y Cleient',
- 'code' => 'Côd',
- 'comments' => 'Sylwadau',
- 'created-on' => 'Crëwyd ar',
- 'credited-download' => 'Llwytho i lawr wedi i gredydu',
- 'credited-upload' => 'Llwythiad wedi i gredydu',
- 'current-password' => 'Cyfrinair cyfredol',
- 'custom-title' => 'Teitl personol',
- 'delete' => 'Dileu Defnyddiwr',
- 'disable-notifications' => 'Analluogi Hysbysiadau',
- 'disclaimer' => 'Ymwadiad',
- 'disclaimer-info' => 'Nid ydym yn ddiofyn yn cofnodi cyfeiriadau IP defnyddwyr fel y rhan fwyaf o olrheinwyr. Drwy ychwanegu eich IP blwch isod isod disgwylir i chi wybod bod eich IPs a restrir isod bellach yn cael eu storio yn ein cronfa ddata oni bai eich bod yn dileu r cofnodion.',
- 'disclaimer-info-bordered' => 'Yna, bydd IPs Seedbox a ychwanegir yn sbarduno tag torrent cyflymder uchel ar ffrydiau llif sy n cael eu hadu o IPs a restrir isod',
- 'download-bon' => 'Lawrlwythwyd o BON Store',
- 'download-recorded' => 'Llwytho i Lawr',
- 'download-true' => 'Gwir Lawrlwytho',
- 'downloads' => 'Lawrlwythiadau',
- 'edit' => 'Golygu Defnyddiwr',
- 'edit-profile' => 'Golygu Proffil',
- 'enable-notifications' => 'Galluogi Hysbysiadau',
- 'expired' => 'Wedi dod i ben',
- 'expires-on' => 'Yn dod i ben ar',
- 'extra' => 'Extra',
- 'filled-request' => 'Ceisiadau Aelodau Llenwi',
- 'follow' => 'Dilynwch',
- 'follower-privacy' => 'Lleoliadau Dilynwyr',
- 'follower-privacy-list' => 'Caniatáu i ddefnyddwyr weld rhestr o ch dilynwyr',
- 'follower-help' => 'Rheoli rhannu gwybodaeth benodol sy n gysylltiedig â dilynwyr gyda grwpiau sy n cael mynediad i ch proffil. Mae r gosodiadau hyn yn cael eu diystyru os na fyddwch yn caniatáu i unrhyw grwpiau gael mynediad i ch dilynwyr neu os ydych yn mynd yn breifat',
- 'followers' => 'Dilynwyr',
- 'following-notification' => 'Lleoliadau Hysbysu Defnyddiwr dilynol',
- 'following-notification-upload' => 'Derbyn hysbysiad pan fydd defnyddiwr dilynol yn llwytho torrent',
- 'following-notification-help' => 'Rheolaeth sy n anfon hysbysiadau ynglŷn â chamau gweithredu dilynol y defnyddiwr. Mae r gosodiadau hyn yn cael eu diystyru os na fyddwch yn caniatáu i unrhyw grwpiau anfon hysbysiadau ynghylch defnyddwyr a ddilynwyd neu os ydych yn Analluogi Hysbysiadau',
- 'formats-are-supported' => ': cefnogir fformatau',
- 'forum-notification' => 'Lleoliadau Hysbysu r Fforwm',
- 'forum-notification-topic' => 'Derbyn hysbysiad pan fydd pwnc a ddechreuoch chi yn cael swydd newydd',
- 'forum-notification-help' => 'Rheolaeth sy n anfon hysbysiadau ynghylch gweithgareddau fforwm. Mae r gosodiadau hyn yn cael eu diystyru os na fyddwch yn caniatáu i unrhyw grwpiau anfon hysbysiadau ynghylch gweithgareddau r fforwm neu os ydych yn analluogi hysbysiadau',
- 'forum-privacy' => 'Lleoliadau r Fforwm',
- 'forum-privacy-post' => 'Caniatáu i ddefnyddwyr weld rhestr o swyddi fforwm rydych chi wedi u postio',
- 'forum-privacy-topic' => 'Caniatáu i ddefnyddwyr weld rhestr o bynciau r fforwm rydych chi wedi dechrau arnynt',
- 'forum-help' => 'Rheoli rhannu ystadegau a gwybodaeth sy n ymwneud â fforwm penodol gyda grwpiau sy n cael mynediad i ch proffil. Mae r gosodiadau hyn yn cael eu diystyru os na fyddwch yn caniatáu i unrhyw grwpiau gael mynediad i ystadegau a gwybodaeth sy n gysylltiedig â ch fforwm neu os ydych yn Mynd yn Breifat',
- 'forum-signature' => 'Llofnod y Fforwm',
- 'forums' => 'Fforymau',
- 'general' => 'Cyffredinol',
- 'general-settings' => 'Gosodiadau Cyffredinol',
- 'gift-given' => 'Rhoi Rhodd',
- 'gift-received' => 'Rhodd a Dderbyniwyd',
- 'go-public' => 'Go Public',
- 'go-private' => 'Ewch yn breifat',
- 'history' => 'Hanes',
- 'history-table' => 'Fy Nhabl Hanes',
- 'hit-n-runs' => 'Hit and Runs',
- 'hit-n-runs-count' => 'Cyfrif Cyrraedd a Rhedeg (Pob Amser)',
- 'hit-n-runs-history' => 'Torrent Hit and Runs History',
- 'image' => 'Delwedd',
- 'important' => 'Pwysig',
- 'important-info' => 'Gwybodaeth Bwysig',
- 'information' => 'Gwybodaeth',
- 'invite-friend' => 'Gwahoddwch eich ffrind (E-bost + Neges Angenrheidiol)',
- 'invite-tree' => 'Gwahodd Coed',
- 'invites' => 'Gwahoddiadau',
- 'invites-banned' => 'Gwall: Mae ch Hawliau Gwahodd wedi bod yn anabl',
- 'invites-banned-desc' => 'Os ydych chi n teimlo bod hyn yn wallus, cysylltwch â staff!',
- 'invites-count' => 'Rydych wedi: cyfrif Gwahodd Tocynnau',
- 'invites-disabled' => 'Sylw: Gwahodd Gwahoddiad i Agor Cofrestru!',
- 'invites-disabled-desc' => 'Edrychwch yn ôl yn fuan!',
- 'invites-rules' => '- Gwahoddwch bobl rydych chi n eu hadnabod ac yn ymddiried ynddynt yn unig.
- Byddwch yn bersonol gyfrifol am y rhai rydych chi n eu gwahodd.
- Peidiwch â gwahodd eich hun, rydym yn gwirio pob defnyddiwr gwadd.
- Peidiwch â masnachu na gwerthu Gwahoddiadau.
- Os yw rhywun y gwnaethoch ei wahodd yn cael ei ddal yn twyllo, cyfrif masnachu neu wahoddiad gwerthu / masnachu, cewch eich rhybuddio.
',
- 'invites-send' => 'Gwahoddiadau Anfon',
- 'last-login' => 'Mewngofnodi diwethaf',
- 'locked' => 'Wedi i gloi',
- 'locked-achievements' => 'Cyflawniadau dan glo',
- 'member-since' => 'Aelod ers',
- 'members-desc' => 'Rhestr o ddefnyddwyr sydd wedi u cofrestru ar: deitl gyda phob grŵp. Dod o hyd i ddefnyddiwr nawr.',
- 'mention-notification' => 'Lleoliadau Hysbysu @Mention',
+ 'about' => 'Ynglŷn â',
+ 'about-me' => 'Amdanaf i',
+ 'accepted-at' => 'Derbyniwyd yn',
+ 'accepted-by' => 'Derbyniwyd gan',
+ 'account-notification' => 'Lleoliadau Hysbysu Cyfrifon',
+ 'account-notification-follow' => 'Derbyn hysbysiad pan fydd defnyddiwr yn dilyn eich cyfrif',
+ 'account-notification-unfollow' => 'Derbyn hysbysiad pan fydd defnyddiwr yn dad-ddatgelu eich cyfrif',
+ 'account-notification-help' => 'Rheolaeth sy n anfon hysbysiadau ynghylch eich cyfrif. Mae r gosodiadau hyn yn cael eu diystyru os na fyddwch yn caniatáu i unrhyw grwpiau anfon hysbysiadau ynghylch eich cyfrif neu os ydych yn Analluogi Hysbysiadau',
+ 'account-settings' => 'Gosodiadau Cyfrif',
+ 'achievement-privacy' => 'Lleoliadau Cyflawniad',
+ 'achievement-privacy-list' => 'Caniatáu i ddefnyddwyr weld rhestr o ch cyflawniadau',
+ 'achievement-help' => 'Rheoli rhannu gwybodaeth sy n ymwneud â chyflawniad penodol gyda grwpiau sy n cael mynediad i ch proffil. Mae r gosodiadau hyn yn cael eu diystyru os na fyddwch yn caniatáu i unrhyw grwpiau gael mynediad i ch cyflawniadau neu os ydych chi n mynd yn breifat',
+ 'achievements' => 'Cyflawniadau',
+ 'active' => 'Actif',
+ 'active-table' => 'My Active Table',
+ 'active-torrents' => 'Ffrwythlondeb gweithredol',
+ 'active-warning' => 'Rhybudd Gweithredol',
+ 'active-warnings' => 'Rhybuddion Actif',
+ 'add-seedbox' => 'Ychwanegu Seedbox',
+ 'all-torrents' => 'Pob Cenllif',
+ 'article-comments' => 'Sylwadau r Sylwadau',
+ 'avatar' => 'Avatar',
+ 'avg-seedtime' => 'Cyfartaledd Hadau Amser',
+ 'badges' => 'Bathodynnau',
+ 'ban' => 'Gwahardd Defnyddiwr',
+ 'ban-log' => 'Log Ban',
+ 'become-hidden' => 'Dod yn gudd',
+ 'become-visible' => 'Dewch yn Weladwy',
+ 'bon' => 'BON',
+ 'bon-notification' => 'Lleoliadau Hysbysu BON',
+ 'bon-notification-gift' => 'Derbyn hysbysiad pan fydd defnyddiwr yn rhoi bon i chi',
+ 'bon-notification-help' => 'Rheolaeth sy n anfon hysbysiadau ynghylch trafodion BON. Mae r gosodiadau hyn yn cael eu diystyru os na fyddwch yn caniatáu i unrhyw grwpiau anfon hysbysiadau ynghylch BON neu os ydych yn Analluogi Hysbysiadau',
+ 'bookmarks' => 'Llyfrnodau',
+ 'bounty-given' => 'Bounty Given',
+ 'bounty-received' => 'Derbyniwyd Bounty',
+ 'can-chat' => 'Yn gallu Sgwrsio',
+ 'can-comment' => 'Yn gallu Sylwadau',
+ 'can-download' => 'Gallu Lawrlwytho',
+ 'can-invite' => 'Gall wahodd',
+ 'can-request' => 'Gallu Gwneud Cais',
+ 'can-upload' => 'Yn gallu llwytho',
+ 'certified-banker' => 'Bancwr Ardystiedig',
+ 'certified-banker-desc' => 'Mae ganddo 50,000 neu fwy o fwg yn y banc',
+ 'certified-downloader' => 'Downloader Ardystiedig',
+ 'certified-downloader-desc' => 'Lawrlwythwyd 100 neu More Torrents!',
+ 'certified-seeder' => 'Seeder Ardystiedig',
+ 'certified-seeder-desc' => 'Hadau 150 Neu Mwy o Rhedolion!',
+ 'change-email' => 'Newid E-bost',
+ 'change-email-help' => 'Bydd yn rhaid i chi ail-gadarnhau eich cyfrif, ar ôl i chi newid eich e-bost',
+ 'change-password' => 'Newid cyfrinair',
+ 'change-password-help' => 'Bydd yn rhaid i chi fewngofnodi eto, ar ôl i chi newid eich cyfrinair',
+ 'client-ip-address' => 'Cyfeiriad IP y Cleient',
+ 'code' => 'Côd',
+ 'comments' => 'Sylwadau',
+ 'created-on' => 'Crëwyd ar',
+ 'credited-download' => 'Llwytho i lawr wedi i gredydu',
+ 'credited-upload' => 'Llwythiad wedi i gredydu',
+ 'current-password' => 'Cyfrinair cyfredol',
+ 'custom-title' => 'Teitl personol',
+ 'delete' => 'Dileu Defnyddiwr',
+ 'disable-notifications' => 'Analluogi Hysbysiadau',
+ 'disclaimer' => 'Ymwadiad',
+ 'disclaimer-info' => 'Nid ydym yn ddiofyn yn cofnodi cyfeiriadau IP defnyddwyr fel y rhan fwyaf o olrheinwyr. Drwy ychwanegu eich IP blwch isod isod disgwylir i chi wybod bod eich IPs a restrir isod bellach yn cael eu storio yn ein cronfa ddata oni bai eich bod yn dileu r cofnodion.',
+ 'disclaimer-info-bordered' => 'Yna, bydd IPs Seedbox a ychwanegir yn sbarduno tag torrent cyflymder uchel ar ffrydiau llif sy n cael eu hadu o IPs a restrir isod',
+ 'download-bon' => 'Lawrlwythwyd o BON Store',
+ 'download-recorded' => 'Llwytho i Lawr',
+ 'download-true' => 'Gwir Lawrlwytho',
+ 'downloads' => 'Lawrlwythiadau',
+ 'edit' => 'Golygu Defnyddiwr',
+ 'edit-profile' => 'Golygu Proffil',
+ 'enable-notifications' => 'Galluogi Hysbysiadau',
+ 'expired' => 'Wedi dod i ben',
+ 'expires-on' => 'Yn dod i ben ar',
+ 'extra' => 'Extra',
+ 'filled-request' => 'Ceisiadau Aelodau Llenwi',
+ 'follow' => 'Dilynwch',
+ 'follower-privacy' => 'Lleoliadau Dilynwyr',
+ 'follower-privacy-list' => 'Caniatáu i ddefnyddwyr weld rhestr o ch dilynwyr',
+ 'follower-help' => 'Rheoli rhannu gwybodaeth benodol sy n gysylltiedig â dilynwyr gyda grwpiau sy n cael mynediad i ch proffil. Mae r gosodiadau hyn yn cael eu diystyru os na fyddwch yn caniatáu i unrhyw grwpiau gael mynediad i ch dilynwyr neu os ydych yn mynd yn breifat',
+ 'followers' => 'Dilynwyr',
+ 'following-notification' => 'Lleoliadau Hysbysu Defnyddiwr dilynol',
+ 'following-notification-upload' => 'Derbyn hysbysiad pan fydd defnyddiwr dilynol yn llwytho torrent',
+ 'following-notification-help' => 'Rheolaeth sy n anfon hysbysiadau ynglŷn â chamau gweithredu dilynol y defnyddiwr. Mae r gosodiadau hyn yn cael eu diystyru os na fyddwch yn caniatáu i unrhyw grwpiau anfon hysbysiadau ynghylch defnyddwyr a ddilynwyd neu os ydych yn Analluogi Hysbysiadau',
+ 'formats-are-supported' => ': cefnogir fformatau',
+ 'forum-notification' => 'Lleoliadau Hysbysu r Fforwm',
+ 'forum-notification-topic' => 'Derbyn hysbysiad pan fydd pwnc a ddechreuoch chi yn cael swydd newydd',
+ 'forum-notification-help' => 'Rheolaeth sy n anfon hysbysiadau ynghylch gweithgareddau fforwm. Mae r gosodiadau hyn yn cael eu diystyru os na fyddwch yn caniatáu i unrhyw grwpiau anfon hysbysiadau ynghylch gweithgareddau r fforwm neu os ydych yn analluogi hysbysiadau',
+ 'forum-privacy' => 'Lleoliadau r Fforwm',
+ 'forum-privacy-post' => 'Caniatáu i ddefnyddwyr weld rhestr o swyddi fforwm rydych chi wedi u postio',
+ 'forum-privacy-topic' => 'Caniatáu i ddefnyddwyr weld rhestr o bynciau r fforwm rydych chi wedi dechrau arnynt',
+ 'forum-help' => 'Rheoli rhannu ystadegau a gwybodaeth sy n ymwneud â fforwm penodol gyda grwpiau sy n cael mynediad i ch proffil. Mae r gosodiadau hyn yn cael eu diystyru os na fyddwch yn caniatáu i unrhyw grwpiau gael mynediad i ystadegau a gwybodaeth sy n gysylltiedig â ch fforwm neu os ydych yn Mynd yn Breifat',
+ 'forum-signature' => 'Llofnod y Fforwm',
+ 'forums' => 'Fforymau',
+ 'general' => 'Cyffredinol',
+ 'general-settings' => 'Gosodiadau Cyffredinol',
+ 'gift-given' => 'Rhoi Rhodd',
+ 'gift-received' => 'Rhodd a Dderbyniwyd',
+ 'go-public' => 'Go Public',
+ 'go-private' => 'Ewch yn breifat',
+ 'history' => 'Hanes',
+ 'history-table' => 'Fy Nhabl Hanes',
+ 'hit-n-runs' => 'Hit and Runs',
+ 'hit-n-runs-count' => 'Cyfrif Cyrraedd a Rhedeg (Pob Amser)',
+ 'hit-n-runs-history' => 'Torrent Hit and Runs History',
+ 'image' => 'Delwedd',
+ 'important' => 'Pwysig',
+ 'important-info' => 'Gwybodaeth Bwysig',
+ 'information' => 'Gwybodaeth',
+ 'invite-friend' => 'Gwahoddwch eich ffrind (E-bost + Neges Angenrheidiol)',
+ 'invite-tree' => 'Gwahodd Coed',
+ 'invites' => 'Gwahoddiadau',
+ 'invites-banned' => 'Gwall: Mae ch Hawliau Gwahodd wedi bod yn anabl',
+ 'invites-banned-desc' => 'Os ydych chi n teimlo bod hyn yn wallus, cysylltwch â staff!',
+ 'invites-count' => 'Rydych wedi: cyfrif Gwahodd Tocynnau',
+ 'invites-disabled' => 'Sylw: Gwahodd Gwahoddiad i Agor Cofrestru!',
+ 'invites-disabled-desc' => 'Edrychwch yn ôl yn fuan!',
+ 'invites-rules' => '- Gwahoddwch bobl rydych chi n eu hadnabod ac yn ymddiried ynddynt yn unig.
- Byddwch yn bersonol gyfrifol am y rhai rydych chi n eu gwahodd.
- Peidiwch â gwahodd eich hun, rydym yn gwirio pob defnyddiwr gwadd.
- Peidiwch â masnachu na gwerthu Gwahoddiadau.
- Os yw rhywun y gwnaethoch ei wahodd yn cael ei ddal yn twyllo, cyfrif masnachu neu wahoddiad gwerthu / masnachu, cewch eich rhybuddio.
',
+ 'invites-send' => 'Gwahoddiadau Anfon',
+ 'last-login' => 'Mewngofnodi diwethaf',
+ 'locked' => 'Wedi i gloi',
+ 'locked-achievements' => 'Cyflawniadau dan glo',
+ 'member-since' => 'Aelod ers',
+ 'members-desc' => 'Rhestr o ddefnyddwyr sydd wedi u cofrestru ar: deitl gyda phob grŵp. Dod o hyd i ddefnyddiwr nawr.',
+ 'mention-notification' => 'Lleoliadau Hysbysu @Mention',
'mention-notification-article-comment' => 'Derbyn hysbysiad pan fyddwch yn @mentioned mewn sylw erthygl',
'mention-notification-torrent-comment' => 'Derbyn hysbysiad pan fyddwch chi n cael eich rhoi mewn sylwadau trist',
'mention-notification-request-comment' => 'Derbyn hysbysiad pan fyddwch yn @mentioned mewn sylw cais',
- 'mention-notification-forum-post' => 'Derbyn hysbysiad pan fyddwch yn @mentioned mewn swydd fforwm',
- 'mention-notification-help' => 'Rheoli sy n anfon hysbysiadau pan fydd defnyddiwr @mentions yn eich rhoi. Mae r gosodiadau hyn yn cael eu diystyru os na fyddwch yn caniatáu i unrhyw grwpiau anfon hysbysiadau os yw defnyddiwr @mentions chi neu os ydych yn Analluogi Hysbysiadau',
- 'moderated-by' => 'Cymedrwyd gan: mod on',
- 'my-bonus-points' => 'Fy Mannau Bonws',
- 'my-bookmarks' => 'Fy Nodau Tudalen',
- 'my-fl-tokens' => 'Fy nhocynnau FL',
- 'my-general-settings' => 'Fy Lleoliadau Cyffredinol',
- 'my-notification' => 'Fy Hysbysiad',
- 'my-notification-settings' => 'Fy Gosodiadau Hysbysu',
- 'my-privacy' => 'Fy mhreifatrwydd',
- 'my-privacy-settings' => 'Fy Gosodiadau Preifatrwydd',
- 'my-profile' => 'Fy mhroffil',
- 'my-requested' => 'Fy Ngheisiadau',
- 'my-security' => 'Fy Niogelwch',
- 'my-security-settings' => 'Fy Lleoliadau Diogelwch',
- 'my-seedboxes' => 'Fy Seedboxes',
- 'my-settings' => 'Fy Lleoliadau',
- 'my-wishlist' => 'Fy Rhestr dymuniadau',
- 'no-logs' => 'Nid oes unrhyw logiau gwahodd yn y gronfa ddata ar gyfer y defnyddiwr hwn!',
- 'no-seedboxes' => 'Dim bocsys 😔',
- 'not-authorized' => 'Nid ydych wedi ch awdurdodi i weld y dudalen hon. Mae n well gan yr aelod hwn gael ei guddio fel ninja!',
- 'note' => 'Nodyn',
- 'notification' => 'Hysbysiad',
- 'notification-settings' => 'Lleoliadau Hysbysu',
- 'notification-from-account' => 'Derbyn Hysbysiadau o Gyfrifon',
- 'notification-from-account-help' => 'Byddwch ond yn derbyn hysbysiadau cyfrif gan y system, staff a r grwpiau canlynol. Mae r gosodiadau hyn yn cael eu diystyru os ydych yn analluogi hysbysiadau',
- 'notification-from-bon' => 'Derbyn Hysbysiadau BON O',
- 'notification-from-bon-help' => 'Ni fyddwch ond yn derbyn hysbysiadau BON o r system, staff a r grwpiau canlynol. Mae r gosodiadau hyn yn cael eu diystyru os ydych yn analluogi hysbysiadau',
- 'notification-from-following' => 'Derbyn Hysbysiadau Defnyddiwr Dilynol O',
- 'notification-from-following-help' => 'Dim ond y grwpiau canlynol a dderbyniwch hysbysiadau defnyddwyr dilynol. Mae r gosodiadau hyn yn cael eu diystyru os ydych yn analluogi hysbysiadau',
- 'notification-from-forum' => 'Derbyn Hysbysiadau Fforwm O',
- 'notification-from-forum-help' => 'Byddwch ond yn derbyn hysbysiadau fforwm gan y system, y staff a r grwpiau canlynol. Mae r gosodiadau hyn yn cael eu diystyru os ydych yn analluogi hysbysiadau',
- 'notification-from-subscription' => 'Derbyn Hysbysiadau Tanysgrifio O',
- 'notification-from-subscription-help' => 'Byddwch ond yn derbyn hysbysiadau fforwm gan y system, y staff a r grwpiau canlynol. Mae r gosodiadau hyn yn cael eu diystyru os ydych yn analluogi hysbysiadau',
- 'notification-from-torrent' => 'Derbyn Hysbysiadau Cenllif O',
- 'notification-from-torrent-help' => 'Byddwch ond yn derbyn hysbysiadau torrent gan y system, y staff a r grwpiau canlynol. Mae r gosodiadau hyn yn cael eu diystyru os ydych yn analluogi hysbysiadau',
- 'notification-from-mention' => 'Derbyn Hysbysiadau @Mention O',
- 'notification-from-mention-help' => 'Byddwch ond yn derbyn hysbysiadau @mention o r system, y staff a r grwpiau canlynol. Mae r gosodiadau hyn yn cael eu diystyru os ydych yn analluogi hysbysiadau',
- 'notification-from-request' => 'Derbyn Cais am Hysbysiadau O',
- 'notification-from-request-help' => 'Dim ond ceisiadau gan y system, y staff a r grwpiau canlynol y byddwch yn eu derbyn. Mae r gosodiadau hyn yn cael eu diystyru os ydych yn analluogi hysbysiadau',
- 'notifications' => 'Hysbysiadau',
- 'offline' => 'Mae r Defnyddiwr yn All-lein!',
- 'online' => 'Mae Defnyddiwr Ar-lein!',
- 'options' => 'Opsiynau',
- 'other-help' => 'Rheoli rhannu ystadegau a gwybodaeth arall gyda grwpiau sy n cael mynediad i ch proffil. Mae r gosodiadau hyn yn cael eu diystyru os na fyddwch yn caniatáu i unrhyw grwpiau gael gafael ar eich ystadegau a ch gwybodaeth arall neu os ydych yn mynd yn breifat',
- 'other-privacy' => 'Lleoliadau Eraill',
- 'other-privacy-online' => 'Caniatáu defnyddwyr i ch gweld yn y bloc defnyddwyr ar-lein',
- 'passkey' => 'PID',
- 'passkey-warning' => 'Mae PID fel eich cyfrinair, mae n rhaid i chi ei gadw n ddiogel!',
- 'pending-achievements' => 'Cyflawniadau yn yr arfaeth',
- 'per-torrent' => 'Per Torrent',
- 'posts' => 'Swyddi',
- 'posts-posted' => 'Post Forums Postiwyd',
- 'privacy' => 'Preifatrwydd',
- 'privacy-settings' => 'Gosodiadau Preifatrwydd',
- 'private-info' => 'Gwybodaeth breifat',
- 'private-forum-profile' => 'Sylw: Mae r Aelod hwn Pwnc a Hanes Ôl wedi Dod yn Breifat!',
- 'private-profile' => 'Sylw: Mae r Proffil hwn wedi ei osod i fod yn BREIFAT!',
- 'profile' => 'Proffil',
- 'profile-desc' => 'Proffil defnyddiwr: defnyddiwr wedi i gofrestru ar: teitl',
- 'profile-privacy' => 'Lleoliadau Proffil',
- 'profile-privacy-torrent-count' => 'Rhannwch gyfanswm eich lawrlwythiadau, llwythi, hadau a chennin',
- 'profile-privacy-torrent-ratio' => 'Rhannwch eich cyfanswm llwytho / lawrlwytho data ynghyd â chymhareb wedi i recordio',
- 'profile-privacy-torrent-seed' => 'Rhannwch gyfanswm eich amser hadu a ch cyfartaledd',
- 'profile-privacy-title' => 'Rhannwch eich gwybodaeth teitl personol',
- 'profile-privacy-about' => 'Rhannwch eich gwybodaeth bersonol amdanaf fi',
- 'profile-privacy-bon-extra' => 'Rhannwch eich ystadegau BON',
- 'profile-privacy-comment-extra' => 'Rhannwch eich ystadegau sylwadau',
- 'profile-privacy-forum-extra' => 'Rhannwch ystadegau eich fforwm',
- 'profile-privacy-request-extra' => 'Rhannwch eich ystadegau cais',
- 'profile-privacy-torrent-extra' => 'Rhannwch eich ystadegau torrent',
- 'profile-privacy-badge' => 'Rhannwch eich bathodynnau a enillwyd',
- 'profile-privacy-achievement' => 'Rhannwch eich cyflawniadau diweddar',
- 'profile-privacy-follower' => 'Rhannwch eich dilynwyr diweddar',
- 'profile-privacy-warning' => 'Rhannwch eich rhybuddion Iechyd a Diogelwch',
- 'profile-privacy-help' => 'Rheoli pa ystadegau a darnau o wybodaeth sy n ymddangos ar eich proffil. Mae r gosodiadau hyn yn cael eu diystyru os na fyddwch yn caniatáu i unrhyw grwpiau gael mynediad i ch proffil neu os ydych yn mynd yn breifat',
- 'public-info' => 'Gwybodaeth Gyhoeddus',
- 'recent-achievements' => 'Cyflawniadau Diweddar',
- 'recent-followers' => 'Dilynwyr Diweddar',
- 'registration-date' => 'Dyddiad cofrestru',
- 'report' => 'Adroddiad',
- 'request-help' => 'Rheoli rhannu ystadegau a gwybodaeth sy n ymwneud â cheisiadau penodol gyda grwpiau sy n cael mynediad i ch proffil. Mae r gosodiadau hyn yn cael eu diystyru os na fyddwch yn caniatáu i unrhyw grwpiau gyrchu ch ystadegau a gwybodaeth gysylltiedig neu os ydych yn mynd yn breifat',
- 'request' => 'Cais',
- 'requested' => 'Ceisio',
- 'requests' => 'Ceisiadau',
- 'request-comments' => 'Gwneud Cais am Sylwadau',
- 'request-notification' => 'Gofyn am Leoliadau Hysbysu',
- 'request-notification-bounty' => 'Derbyn hysbysiad pan fydd torrent y gofynnir amdano yn cael bounty newydd',
- 'request-notification-comment' => 'Derbyn hysbysiad pan fydd torrent y gofynnwyd amdano yn cael sylw newydd',
- 'request-notification-fill' => 'Derbyn hysbysiad pan fydd y llifeiriant y gofynnwyd amdano yn cael ei lenwi',
- 'request-notification-fill-approve' => 'Derbyn hysbysiad pan fydd llenwi llifeiriant yn cael ei gymeradwyo',
- 'request-notification-fill-reject' => 'Derbyn hysbysiad pan fydd llenwi llifeiriant y gofynnwyd amdano yn cael ei wrthod',
- 'request-notification-claim' => 'Derbyn hysbysiad pan fydd y torrent a geisir yn cael ei hawlio',
- 'request-notification-unclaim' => 'Derbyn hysbysiad pan na fydd y cenllif y gofynnwyd amdano yn cael ei hawlio',
- 'request-notification-help' => 'Rheolaeth sy n anfon hysbysiadau ynghylch gweithgareddau gwneud cais. Mae r gosodiadau hyn yn cael eu diystyru os na fyddwch yn caniatáu i unrhyw grwpiau anfon hysbysiadau ynglŷn â gweithgareddau cais neu os ydych yn Analluogi Hysbysiadau',
- 'request-privacy' => 'Gofyn am Leoliadau',
- 'request-privacy-requested' => 'Caniatáu i ddefnyddwyr weld rhestr o geisiadau rydych chi wedi u gwneud',
- 'reset-passkey' => 'Allwedd Ailosod Pas (PID)',
- 'reset-passkey-help' => 'Bydd yn rhaid i chi ail-lwytho / ail-lwytho eich holl ffrydiau gweithredol, ar ôl ailosod y PID',
- 'reset-rss' => 'Ailosod Allwedd RSS (RID)',
- 'reset-rss-help' => 'Bydd yn rhaid i chi ail-lwytho eich holl borthiannau RSS gweithredol, ar ôl ailosod y RID',
- 'resurrections' => 'Atgyfeiriadau',
- 'search' => 'Chwilio cyflym yn ôl enw defnyddiwr',
- 'security' => 'Diogelwch',
- 'security-settings' => 'Lleoliadau Diogelwch',
- 'seedboxes' => 'Blychau hadau',
- 'seeds' => 'Hadau',
- 'send-invite' => 'Anfon Gwahoddiad',
- 'sender' => 'Anfonwr',
- 'settings' => 'Lleoliadau',
- 'show-passkey' => 'Dangos PID',
- 'staff-noted' => 'Cyfrif Staff a Nodwyd',
- 'statistics' => 'Ystadegau',
- 'subscription-notification' => 'Lleoliadau Hysbysu Tanysgrifiadau',
- 'subscription-notification-forum' => 'Derbyn hysbysiad pan fydd fforwm danysgrifio yn cael pwnc newydd',
- 'subscription-notification-topic' => 'Derbyn hysbysiad pan fydd pwnc danysgrifio yn cael swydd newydd',
- 'subscription-notification-help' => 'Rheolaeth sy n anfon hysbysiadau ynghylch eich tanysgrifiadau. Mae r gosodiadau hyn yn cael eu diystyru os na fyddwch yn caniatáu i unrhyw grwpiau anfon hysbysiadau ynghylch eich tanysgrifiadau neu os ydych yn Analluogi Hysbysiadau',
- 'thanks-given' => 'Diolch yn fawr',
- 'thanks-received' => 'Diolch a Gafwyd',
- 'tips-given' => 'Awgrymiadau a roddwyd',
- 'tips-received' => 'Awgrymiadau a Dderbyniwyd',
- 'title' => 'Teitl',
- 'top-bankers' => 'Bancwyr Uchaf',
- 'top-downloaders-data' => 'Prif Lawrlwytho (Data)',
- 'top-leechers' => 'Top Cigyddion',
- 'top-leechers-count' => 'Top Leechers (Cyfrif)',
- 'top-seeders' => 'Prif Seeders',
- 'top-seeders-count' => 'Top Seeders (Cyfrif)',
- 'top-seeding-size' => 'Hadau Uchaf (Maint)',
- 'top-seedtime' => 'Top Seedtime',
- 'top-uploaders-data' => 'Uwch-lwythwyr (Data)',
- 'top-uploaders-count' => 'Uwch-lwythwyr (Cyfrif)',
- 'topics' => 'Pynciau',
- 'topics-started' => 'Dechreuwyd Pynciau r Fforwm',
- 'torrent-comments' => 'Torrent Comments Made',
- 'torrent-help' => 'Rheoli rhannu ystadegau a gwybodaeth benodol sy n ymwneud â thorri coed gyda grwpiau y caniateir iddynt gael mynediad i ch proffil. Mae r gosodiadau hyn yn cael eu diystyru os na fyddwch yn caniatáu i unrhyw grwpiau gyrchu ch ystadegau a ch gwybodaeth sy n gysylltiedig â thorri neu os ydych yn mynd yn breifat',
- 'torrent-notification' => 'Lleoliadau Hysbysu Cenllif',
- 'torrent-notification-comment' => 'Derbyn hysbysiad pan fydd torrent wedi i lanlwytho yn cael sylw newydd',
- 'torrent-notification-thank' => 'Derbyn hysbysiad pan fydd torrent wedi i lanlwytho yn cael diolch newydd',
- 'torrent-notification-tip' => 'Derbyn hysbysiad pan fydd torrent wedi i lanlwytho yn cael tip newydd',
- 'torrent-notification-help' => 'Rheolaeth sy n anfon hysbysiadau ynglŷn â gweithgareddau torrent. Mae r gosodiadau hyn yn cael eu diystyru os na fyddwch yn caniatáu i unrhyw grwpiau anfon hysbysiadau sy n ymwneud â gweithgareddau torrent neu os ydych yn Analluogi Hysbysiadau',
- 'torrent-privacy' => 'Lleoliadau Cenllif',
- 'torrent-privacy-download' => 'Caniatáu i ddefnyddwyr weld rhestr o ffrydiau cenhedlu rydych chi wedi u lawrlwytho',
- 'torrent-privacy-upload' => 'Caniatáu i ddefnyddwyr weld rhestr o ffrydiau llif rydych chi wedi u llwytho i fyny',
- 'torrent-privacy-peer' => 'Caniatáu i ddefnyddwyr eich gweld yn y tabl hanes cyfoedion torrent',
- 'torrents' => 'Cenllifau',
- 'torrents-history' => 'Hanes Torrents',
- 'total-download' => 'Cyfanswm Lawrlwytho',
- 'total-downloads' => 'Cyfanswm Lawrlwythiadau',
- 'total-leeching' => 'Cyfanswm Crasio',
- 'total-seeding' => 'Cyfanswm Hadau',
- 'total-seedtime' => 'Cyfanswm Amser Hadau',
- 'total-upload' => 'Cyfanswm llwytho',
- 'total-uploads' => 'Cyfanswm Llwythiadau',
- 'unban' => 'Defnyddiwr Unban',
- 'unfollow' => 'Unfollow',
- 'unlocked' => 'Heb ei gloi',
- 'unlocked-achievements' => 'Cyflawniadau heb eu cloi',
- 'unsatisfieds' => 'Di-drafferthion',
- 'upload-bon' => 'Llwytho i fyny o BON Store',
- 'upload-recorded' => 'Llwythiad wedi i Gofnodi',
- 'upload-true' => 'Gwir lwyth',
- 'uploads' => 'Llwythiadau',
- 'uploads-table' => 'Tabl Llwythiadau',
- 'user' => 'Defnyddiwr',
- 'user-id' => 'ID Defnyddiwr',
- 'username-seedbox' => 'Enw Defnyddiwr Seedbox',
- 'visible-to-achievement' => 'Cyflawniadau Gweladwy I',
- 'visible-to-achievement-help' => 'Bydd eich cyflawniadau ond yn weladwy i staff a r grwpiau canlynol. Mae r gosodiadau hyn yn cael eu diystyru os ydych chi n mynd yn breifat',
- 'visible-to-follower' => 'Dilynwyr Gweladwy To',
- 'visible-to-follower-help' => 'Bydd eich dilynwyr yn weladwy i staff a r grwpiau canlynol yn unig. Mae r gosodiadau hyn yn cael eu diystyru os ydych chi n mynd yn breifat',
- 'visible-to-forum' => 'Gwybodaeth Fforwm Yn Weladwy I',
- 'visible-to-forum-help' => 'Bydd gwybodaeth eich fforwm yn weladwy i staff a r grwpiau canlynol yn unig. Mae r gosodiadau hyn yn cael eu diystyru os ydych chi n mynd yn breifat',
- 'visible-to-other' => 'To Gweladwy Arall',
- 'visible-to-other-help' => 'Bydd gwybodaeth arall am eich cyfrif yn weladwy i staff a r grwpiau canlynol yn unig. Mae r gosodiadau hyn yn cael eu diystyru os ydych yn mynd yn breifat neu os ydych yn Go Hidden',
- 'visible-to-profile' => 'Proffil To Gweladwy',
- 'visible-to-profile-help' => 'Bydd eich proffil yn weladwy i staff a r grwpiau canlynol yn unig. Mae r gosodiadau hyn yn cael eu diystyru os ydych chi n mynd yn breifat',
- 'visible-to-request' => 'Gofyn am Wybodaeth Weladwy i',
- 'visible-to-request-help' => 'Bydd gwybodaeth eich cais yn weladwy i staff a r grwpiau canlynol yn unig. Mae r gosodiadau hyn yn cael eu diystyru os ydych chi n mynd yn breifat',
- 'visible-to-torrent' => 'Gwybodaeth Cenllif Gweladwy I',
- 'visible-to-torrent-help' => 'Dim ond staff a r grwpiau canlynol fydd yn gallu gweld eich gwybodaeth cenllif. Mae r gosodiadau hyn yn cael eu diystyru os ydych yn mynd yn breifat neu os ydych yn Go Hidden',
- 'warned-on' => 'Rhybudd ymlaen',
- 'warning' => 'Rhybudd',
- 'warning-log' => 'Log Rhybudd',
- 'wishlist' => 'Rhestr dymuniadau',
+ 'mention-notification-forum-post' => 'Derbyn hysbysiad pan fyddwch yn @mentioned mewn swydd fforwm',
+ 'mention-notification-help' => 'Rheoli sy n anfon hysbysiadau pan fydd defnyddiwr @mentions yn eich rhoi. Mae r gosodiadau hyn yn cael eu diystyru os na fyddwch yn caniatáu i unrhyw grwpiau anfon hysbysiadau os yw defnyddiwr @mentions chi neu os ydych yn Analluogi Hysbysiadau',
+ 'moderated-by' => 'Cymedrwyd gan: mod on',
+ 'my-bonus-points' => 'Fy Mannau Bonws',
+ 'my-bookmarks' => 'Fy Nodau Tudalen',
+ 'my-fl-tokens' => 'Fy nhocynnau FL',
+ 'my-general-settings' => 'Fy Lleoliadau Cyffredinol',
+ 'my-notification' => 'Fy Hysbysiad',
+ 'my-notification-settings' => 'Fy Gosodiadau Hysbysu',
+ 'my-privacy' => 'Fy mhreifatrwydd',
+ 'my-privacy-settings' => 'Fy Gosodiadau Preifatrwydd',
+ 'my-profile' => 'Fy mhroffil',
+ 'my-requested' => 'Fy Ngheisiadau',
+ 'my-security' => 'Fy Niogelwch',
+ 'my-security-settings' => 'Fy Lleoliadau Diogelwch',
+ 'my-seedboxes' => 'Fy Seedboxes',
+ 'my-settings' => 'Fy Lleoliadau',
+ 'my-wishlist' => 'Fy Rhestr dymuniadau',
+ 'no-logs' => 'Nid oes unrhyw logiau gwahodd yn y gronfa ddata ar gyfer y defnyddiwr hwn!',
+ 'no-seedboxes' => 'Dim bocsys 😔',
+ 'not-authorized' => 'Nid ydych wedi ch awdurdodi i weld y dudalen hon. Mae n well gan yr aelod hwn gael ei guddio fel ninja!',
+ 'note' => 'Nodyn',
+ 'notification' => 'Hysbysiad',
+ 'notification-settings' => 'Lleoliadau Hysbysu',
+ 'notification-from-account' => 'Derbyn Hysbysiadau o Gyfrifon',
+ 'notification-from-account-help' => 'Byddwch ond yn derbyn hysbysiadau cyfrif gan y system, staff a r grwpiau canlynol. Mae r gosodiadau hyn yn cael eu diystyru os ydych yn analluogi hysbysiadau',
+ 'notification-from-bon' => 'Derbyn Hysbysiadau BON O',
+ 'notification-from-bon-help' => 'Ni fyddwch ond yn derbyn hysbysiadau BON o r system, staff a r grwpiau canlynol. Mae r gosodiadau hyn yn cael eu diystyru os ydych yn analluogi hysbysiadau',
+ 'notification-from-following' => 'Derbyn Hysbysiadau Defnyddiwr Dilynol O',
+ 'notification-from-following-help' => 'Dim ond y grwpiau canlynol a dderbyniwch hysbysiadau defnyddwyr dilynol. Mae r gosodiadau hyn yn cael eu diystyru os ydych yn analluogi hysbysiadau',
+ 'notification-from-forum' => 'Derbyn Hysbysiadau Fforwm O',
+ 'notification-from-forum-help' => 'Byddwch ond yn derbyn hysbysiadau fforwm gan y system, y staff a r grwpiau canlynol. Mae r gosodiadau hyn yn cael eu diystyru os ydych yn analluogi hysbysiadau',
+ 'notification-from-subscription' => 'Derbyn Hysbysiadau Tanysgrifio O',
+ 'notification-from-subscription-help' => 'Byddwch ond yn derbyn hysbysiadau fforwm gan y system, y staff a r grwpiau canlynol. Mae r gosodiadau hyn yn cael eu diystyru os ydych yn analluogi hysbysiadau',
+ 'notification-from-torrent' => 'Derbyn Hysbysiadau Cenllif O',
+ 'notification-from-torrent-help' => 'Byddwch ond yn derbyn hysbysiadau torrent gan y system, y staff a r grwpiau canlynol. Mae r gosodiadau hyn yn cael eu diystyru os ydych yn analluogi hysbysiadau',
+ 'notification-from-mention' => 'Derbyn Hysbysiadau @Mention O',
+ 'notification-from-mention-help' => 'Byddwch ond yn derbyn hysbysiadau @mention o r system, y staff a r grwpiau canlynol. Mae r gosodiadau hyn yn cael eu diystyru os ydych yn analluogi hysbysiadau',
+ 'notification-from-request' => 'Derbyn Cais am Hysbysiadau O',
+ 'notification-from-request-help' => 'Dim ond ceisiadau gan y system, y staff a r grwpiau canlynol y byddwch yn eu derbyn. Mae r gosodiadau hyn yn cael eu diystyru os ydych yn analluogi hysbysiadau',
+ 'notifications' => 'Hysbysiadau',
+ 'offline' => 'Mae r Defnyddiwr yn All-lein!',
+ 'online' => 'Mae Defnyddiwr Ar-lein!',
+ 'options' => 'Opsiynau',
+ 'other-help' => 'Rheoli rhannu ystadegau a gwybodaeth arall gyda grwpiau sy n cael mynediad i ch proffil. Mae r gosodiadau hyn yn cael eu diystyru os na fyddwch yn caniatáu i unrhyw grwpiau gael gafael ar eich ystadegau a ch gwybodaeth arall neu os ydych yn mynd yn breifat',
+ 'other-privacy' => 'Lleoliadau Eraill',
+ 'other-privacy-online' => 'Caniatáu defnyddwyr i ch gweld yn y bloc defnyddwyr ar-lein',
+ 'passkey' => 'PID',
+ 'passkey-warning' => 'Mae PID fel eich cyfrinair, mae n rhaid i chi ei gadw n ddiogel!',
+ 'pending-achievements' => 'Cyflawniadau yn yr arfaeth',
+ 'per-torrent' => 'Per Torrent',
+ 'posts' => 'Swyddi',
+ 'posts-posted' => 'Post Forums Postiwyd',
+ 'privacy' => 'Preifatrwydd',
+ 'privacy-settings' => 'Gosodiadau Preifatrwydd',
+ 'private-info' => 'Gwybodaeth breifat',
+ 'private-forum-profile' => 'Sylw: Mae r Aelod hwn Pwnc a Hanes Ôl wedi Dod yn Breifat!',
+ 'private-profile' => 'Sylw: Mae r Proffil hwn wedi ei osod i fod yn BREIFAT!',
+ 'profile' => 'Proffil',
+ 'profile-desc' => 'Proffil defnyddiwr: defnyddiwr wedi i gofrestru ar: teitl',
+ 'profile-privacy' => 'Lleoliadau Proffil',
+ 'profile-privacy-torrent-count' => 'Rhannwch gyfanswm eich lawrlwythiadau, llwythi, hadau a chennin',
+ 'profile-privacy-torrent-ratio' => 'Rhannwch eich cyfanswm llwytho / lawrlwytho data ynghyd â chymhareb wedi i recordio',
+ 'profile-privacy-torrent-seed' => 'Rhannwch gyfanswm eich amser hadu a ch cyfartaledd',
+ 'profile-privacy-title' => 'Rhannwch eich gwybodaeth teitl personol',
+ 'profile-privacy-about' => 'Rhannwch eich gwybodaeth bersonol amdanaf fi',
+ 'profile-privacy-bon-extra' => 'Rhannwch eich ystadegau BON',
+ 'profile-privacy-comment-extra' => 'Rhannwch eich ystadegau sylwadau',
+ 'profile-privacy-forum-extra' => 'Rhannwch ystadegau eich fforwm',
+ 'profile-privacy-request-extra' => 'Rhannwch eich ystadegau cais',
+ 'profile-privacy-torrent-extra' => 'Rhannwch eich ystadegau torrent',
+ 'profile-privacy-badge' => 'Rhannwch eich bathodynnau a enillwyd',
+ 'profile-privacy-achievement' => 'Rhannwch eich cyflawniadau diweddar',
+ 'profile-privacy-follower' => 'Rhannwch eich dilynwyr diweddar',
+ 'profile-privacy-warning' => 'Rhannwch eich rhybuddion Iechyd a Diogelwch',
+ 'profile-privacy-help' => 'Rheoli pa ystadegau a darnau o wybodaeth sy n ymddangos ar eich proffil. Mae r gosodiadau hyn yn cael eu diystyru os na fyddwch yn caniatáu i unrhyw grwpiau gael mynediad i ch proffil neu os ydych yn mynd yn breifat',
+ 'public-info' => 'Gwybodaeth Gyhoeddus',
+ 'recent-achievements' => 'Cyflawniadau Diweddar',
+ 'recent-followers' => 'Dilynwyr Diweddar',
+ 'registration-date' => 'Dyddiad cofrestru',
+ 'report' => 'Adroddiad',
+ 'request-help' => 'Rheoli rhannu ystadegau a gwybodaeth sy n ymwneud â cheisiadau penodol gyda grwpiau sy n cael mynediad i ch proffil. Mae r gosodiadau hyn yn cael eu diystyru os na fyddwch yn caniatáu i unrhyw grwpiau gyrchu ch ystadegau a gwybodaeth gysylltiedig neu os ydych yn mynd yn breifat',
+ 'request' => 'Cais',
+ 'requested' => 'Ceisio',
+ 'requests' => 'Ceisiadau',
+ 'request-comments' => 'Gwneud Cais am Sylwadau',
+ 'request-notification' => 'Gofyn am Leoliadau Hysbysu',
+ 'request-notification-bounty' => 'Derbyn hysbysiad pan fydd torrent y gofynnir amdano yn cael bounty newydd',
+ 'request-notification-comment' => 'Derbyn hysbysiad pan fydd torrent y gofynnwyd amdano yn cael sylw newydd',
+ 'request-notification-fill' => 'Derbyn hysbysiad pan fydd y llifeiriant y gofynnwyd amdano yn cael ei lenwi',
+ 'request-notification-fill-approve' => 'Derbyn hysbysiad pan fydd llenwi llifeiriant yn cael ei gymeradwyo',
+ 'request-notification-fill-reject' => 'Derbyn hysbysiad pan fydd llenwi llifeiriant y gofynnwyd amdano yn cael ei wrthod',
+ 'request-notification-claim' => 'Derbyn hysbysiad pan fydd y torrent a geisir yn cael ei hawlio',
+ 'request-notification-unclaim' => 'Derbyn hysbysiad pan na fydd y cenllif y gofynnwyd amdano yn cael ei hawlio',
+ 'request-notification-help' => 'Rheolaeth sy n anfon hysbysiadau ynghylch gweithgareddau gwneud cais. Mae r gosodiadau hyn yn cael eu diystyru os na fyddwch yn caniatáu i unrhyw grwpiau anfon hysbysiadau ynglŷn â gweithgareddau cais neu os ydych yn Analluogi Hysbysiadau',
+ 'request-privacy' => 'Gofyn am Leoliadau',
+ 'request-privacy-requested' => 'Caniatáu i ddefnyddwyr weld rhestr o geisiadau rydych chi wedi u gwneud',
+ 'reset-passkey' => 'Allwedd Ailosod Pas (PID)',
+ 'reset-passkey-help' => 'Bydd yn rhaid i chi ail-lwytho / ail-lwytho eich holl ffrydiau gweithredol, ar ôl ailosod y PID',
+ 'reset-rss' => 'Ailosod Allwedd RSS (RID)',
+ 'reset-rss-help' => 'Bydd yn rhaid i chi ail-lwytho eich holl borthiannau RSS gweithredol, ar ôl ailosod y RID',
+ 'resurrections' => 'Atgyfeiriadau',
+ 'search' => 'Chwilio cyflym yn ôl enw defnyddiwr',
+ 'security' => 'Diogelwch',
+ 'security-settings' => 'Lleoliadau Diogelwch',
+ 'seedboxes' => 'Blychau hadau',
+ 'seeds' => 'Hadau',
+ 'send-invite' => 'Anfon Gwahoddiad',
+ 'sender' => 'Anfonwr',
+ 'settings' => 'Lleoliadau',
+ 'show-passkey' => 'Dangos PID',
+ 'staff-noted' => 'Cyfrif Staff a Nodwyd',
+ 'statistics' => 'Ystadegau',
+ 'subscription-notification' => 'Lleoliadau Hysbysu Tanysgrifiadau',
+ 'subscription-notification-forum' => 'Derbyn hysbysiad pan fydd fforwm danysgrifio yn cael pwnc newydd',
+ 'subscription-notification-topic' => 'Derbyn hysbysiad pan fydd pwnc danysgrifio yn cael swydd newydd',
+ 'subscription-notification-help' => 'Rheolaeth sy n anfon hysbysiadau ynghylch eich tanysgrifiadau. Mae r gosodiadau hyn yn cael eu diystyru os na fyddwch yn caniatáu i unrhyw grwpiau anfon hysbysiadau ynghylch eich tanysgrifiadau neu os ydych yn Analluogi Hysbysiadau',
+ 'thanks-given' => 'Diolch yn fawr',
+ 'thanks-received' => 'Diolch a Gafwyd',
+ 'tips-given' => 'Awgrymiadau a roddwyd',
+ 'tips-received' => 'Awgrymiadau a Dderbyniwyd',
+ 'title' => 'Teitl',
+ 'top-bankers' => 'Bancwyr Uchaf',
+ 'top-downloaders-data' => 'Prif Lawrlwytho (Data)',
+ 'top-leechers' => 'Top Cigyddion',
+ 'top-leechers-count' => 'Top Leechers (Cyfrif)',
+ 'top-seeders' => 'Prif Seeders',
+ 'top-seeders-count' => 'Top Seeders (Cyfrif)',
+ 'top-seeding-size' => 'Hadau Uchaf (Maint)',
+ 'top-seedtime' => 'Top Seedtime',
+ 'top-uploaders-data' => 'Uwch-lwythwyr (Data)',
+ 'top-uploaders-count' => 'Uwch-lwythwyr (Cyfrif)',
+ 'topics' => 'Pynciau',
+ 'topics-started' => 'Dechreuwyd Pynciau r Fforwm',
+ 'torrent-comments' => 'Torrent Comments Made',
+ 'torrent-help' => 'Rheoli rhannu ystadegau a gwybodaeth benodol sy n ymwneud â thorri coed gyda grwpiau y caniateir iddynt gael mynediad i ch proffil. Mae r gosodiadau hyn yn cael eu diystyru os na fyddwch yn caniatáu i unrhyw grwpiau gyrchu ch ystadegau a ch gwybodaeth sy n gysylltiedig â thorri neu os ydych yn mynd yn breifat',
+ 'torrent-notification' => 'Lleoliadau Hysbysu Cenllif',
+ 'torrent-notification-comment' => 'Derbyn hysbysiad pan fydd torrent wedi i lanlwytho yn cael sylw newydd',
+ 'torrent-notification-thank' => 'Derbyn hysbysiad pan fydd torrent wedi i lanlwytho yn cael diolch newydd',
+ 'torrent-notification-tip' => 'Derbyn hysbysiad pan fydd torrent wedi i lanlwytho yn cael tip newydd',
+ 'torrent-notification-help' => 'Rheolaeth sy n anfon hysbysiadau ynglŷn â gweithgareddau torrent. Mae r gosodiadau hyn yn cael eu diystyru os na fyddwch yn caniatáu i unrhyw grwpiau anfon hysbysiadau sy n ymwneud â gweithgareddau torrent neu os ydych yn Analluogi Hysbysiadau',
+ 'torrent-privacy' => 'Lleoliadau Cenllif',
+ 'torrent-privacy-download' => 'Caniatáu i ddefnyddwyr weld rhestr o ffrydiau cenhedlu rydych chi wedi u lawrlwytho',
+ 'torrent-privacy-upload' => 'Caniatáu i ddefnyddwyr weld rhestr o ffrydiau llif rydych chi wedi u llwytho i fyny',
+ 'torrent-privacy-peer' => 'Caniatáu i ddefnyddwyr eich gweld yn y tabl hanes cyfoedion torrent',
+ 'torrents' => 'Cenllifau',
+ 'torrents-history' => 'Hanes Torrents',
+ 'total-download' => 'Cyfanswm Lawrlwytho',
+ 'total-downloads' => 'Cyfanswm Lawrlwythiadau',
+ 'total-leeching' => 'Cyfanswm Crasio',
+ 'total-seeding' => 'Cyfanswm Hadau',
+ 'total-seedtime' => 'Cyfanswm Amser Hadau',
+ 'total-upload' => 'Cyfanswm llwytho',
+ 'total-uploads' => 'Cyfanswm Llwythiadau',
+ 'unban' => 'Defnyddiwr Unban',
+ 'unfollow' => 'Unfollow',
+ 'unlocked' => 'Heb ei gloi',
+ 'unlocked-achievements' => 'Cyflawniadau heb eu cloi',
+ 'unsatisfieds' => 'Di-drafferthion',
+ 'upload-bon' => 'Llwytho i fyny o BON Store',
+ 'upload-recorded' => 'Llwythiad wedi i Gofnodi',
+ 'upload-true' => 'Gwir lwyth',
+ 'uploads' => 'Llwythiadau',
+ 'uploads-table' => 'Tabl Llwythiadau',
+ 'user' => 'Defnyddiwr',
+ 'user-id' => 'ID Defnyddiwr',
+ 'username-seedbox' => 'Enw Defnyddiwr Seedbox',
+ 'visible-to-achievement' => 'Cyflawniadau Gweladwy I',
+ 'visible-to-achievement-help' => 'Bydd eich cyflawniadau ond yn weladwy i staff a r grwpiau canlynol. Mae r gosodiadau hyn yn cael eu diystyru os ydych chi n mynd yn breifat',
+ 'visible-to-follower' => 'Dilynwyr Gweladwy To',
+ 'visible-to-follower-help' => 'Bydd eich dilynwyr yn weladwy i staff a r grwpiau canlynol yn unig. Mae r gosodiadau hyn yn cael eu diystyru os ydych chi n mynd yn breifat',
+ 'visible-to-forum' => 'Gwybodaeth Fforwm Yn Weladwy I',
+ 'visible-to-forum-help' => 'Bydd gwybodaeth eich fforwm yn weladwy i staff a r grwpiau canlynol yn unig. Mae r gosodiadau hyn yn cael eu diystyru os ydych chi n mynd yn breifat',
+ 'visible-to-other' => 'To Gweladwy Arall',
+ 'visible-to-other-help' => 'Bydd gwybodaeth arall am eich cyfrif yn weladwy i staff a r grwpiau canlynol yn unig. Mae r gosodiadau hyn yn cael eu diystyru os ydych yn mynd yn breifat neu os ydych yn Go Hidden',
+ 'visible-to-profile' => 'Proffil To Gweladwy',
+ 'visible-to-profile-help' => 'Bydd eich proffil yn weladwy i staff a r grwpiau canlynol yn unig. Mae r gosodiadau hyn yn cael eu diystyru os ydych chi n mynd yn breifat',
+ 'visible-to-request' => 'Gofyn am Wybodaeth Weladwy i',
+ 'visible-to-request-help' => 'Bydd gwybodaeth eich cais yn weladwy i staff a r grwpiau canlynol yn unig. Mae r gosodiadau hyn yn cael eu diystyru os ydych chi n mynd yn breifat',
+ 'visible-to-torrent' => 'Gwybodaeth Cenllif Gweladwy I',
+ 'visible-to-torrent-help' => 'Dim ond staff a r grwpiau canlynol fydd yn gallu gweld eich gwybodaeth cenllif. Mae r gosodiadau hyn yn cael eu diystyru os ydych yn mynd yn breifat neu os ydych yn Go Hidden',
+ 'warned-on' => 'Rhybudd ymlaen',
+ 'warning' => 'Rhybudd',
+ 'warning-log' => 'Log Rhybudd',
+ 'wishlist' => 'Rhestr dymuniadau',
];
diff --git a/lang/cy/validation.php b/lang/cy/validation.php
index dae0fc0e0..42900d55c 100644
--- a/lang/cy/validation.php
+++ b/lang/cy/validation.php
@@ -23,108 +23,108 @@ return [
|
*/
- 'accepted' => 'Rhaid derbyn :attribute.',
- 'active_url' => 'Nid yw :attribute yn URL dilys.',
- 'after' => 'Rhaid i :attribute fod yn ddyddiad sydd ar ôl :date.',
- 'after_or_equal' => 'The :attribute must be a date after or equal to :date.',
- 'alpha' => "Dim ond llythrennau'n unig gall :attribute gynnwys.",
- 'alpha_dash' => 'Dim ond llythrennau, rhifau a dash yn unig gall :attribute gynnwys.',
- 'alpha_num' => 'Dim ond llythrennau a rhifau yn unig gall :attribute gynnwys.',
- 'array' => 'Rhaid i :attribute fod yn array.',
- 'before' => 'Rhaid i :attribute fod yn ddyddiad sydd cyn :date.',
- 'before_or_equal' => 'The :attribute must be a date before or equal to :date.',
- 'between' => [
+ 'accepted' => 'Rhaid derbyn :attribute.',
+ 'active_url' => 'Nid yw :attribute yn URL dilys.',
+ 'after' => 'Rhaid i :attribute fod yn ddyddiad sydd ar ôl :date.',
+ 'after_or_equal' => 'The :attribute must be a date after or equal to :date.',
+ 'alpha' => "Dim ond llythrennau'n unig gall :attribute gynnwys.",
+ 'alpha_dash' => 'Dim ond llythrennau, rhifau a dash yn unig gall :attribute gynnwys.',
+ 'alpha_num' => 'Dim ond llythrennau a rhifau yn unig gall :attribute gynnwys.',
+ 'array' => 'Rhaid i :attribute fod yn array.',
+ 'before' => 'Rhaid i :attribute fod yn ddyddiad sydd cyn :date.',
+ 'before_or_equal' => 'The :attribute must be a date before or equal to :date.',
+ 'between' => [
'numeric' => 'Rhaid i :attribute fod rhwng :min a :max.',
- 'file' => 'Rhaid i :attribute fod rhwng :min a :max kilobytes.',
- 'string' => 'Rhaid i :attribute fod rhwng :min a :max nodyn.',
- 'array' => 'Rhaid i :attribute fod rhwng :min a :max eitem.',
+ 'file' => 'Rhaid i :attribute fod rhwng :min a :max kilobytes.',
+ 'string' => 'Rhaid i :attribute fod rhwng :min a :max nodyn.',
+ 'array' => 'Rhaid i :attribute fod rhwng :min a :max eitem.',
],
- 'boolean' => "Rhaid i'r maes :attribute fod yn wir neu gau.",
- 'confirmed' => "Nid yw'r cadarnhad :attribute yn gyfwerth.",
- 'date' => 'Nid yw :attribute yn ddyddiad dilys.',
- 'date_equals' => 'The :attribute must be a date equal to :date.',
- 'date_format' => 'Nid yw :attribute yn y fformat :format.',
- 'different' => 'Rhaid i :attribute a :other fod yn wahanol.',
- 'digits' => 'Rhaid i :attribute fod yn :digits digid.',
- 'digits_between' => 'Rhaid i :attribute fod rhwng :min a :max digid.',
- 'dimensions' => 'The :attribute has invalid image dimensions.',
- 'distinct' => 'The :attribute field has a duplicate value.',
- 'email' => 'Rhaid i :attribute fod yn gyfeiriad ebost dilys.',
- 'file' => 'The :attribute must be a file.',
- 'filled' => 'Rhaid cynnwys :attribute.',
- 'exists' => 'Nid yw :attribute yn ddilys.',
- 'gt' => [
+ 'boolean' => "Rhaid i'r maes :attribute fod yn wir neu gau.",
+ 'confirmed' => "Nid yw'r cadarnhad :attribute yn gyfwerth.",
+ 'date' => 'Nid yw :attribute yn ddyddiad dilys.',
+ 'date_equals' => 'The :attribute must be a date equal to :date.',
+ 'date_format' => 'Nid yw :attribute yn y fformat :format.',
+ 'different' => 'Rhaid i :attribute a :other fod yn wahanol.',
+ 'digits' => 'Rhaid i :attribute fod yn :digits digid.',
+ 'digits_between' => 'Rhaid i :attribute fod rhwng :min a :max digid.',
+ 'dimensions' => 'The :attribute has invalid image dimensions.',
+ 'distinct' => 'The :attribute field has a duplicate value.',
+ 'email' => 'Rhaid i :attribute fod yn gyfeiriad ebost dilys.',
+ 'file' => 'The :attribute must be a file.',
+ 'filled' => 'Rhaid cynnwys :attribute.',
+ 'exists' => 'Nid yw :attribute yn ddilys.',
+ 'gt' => [
'numeric' => 'The :attribute must be greater than :value.',
- 'file' => 'The :attribute must be greater than :value kilobytes.',
- 'string' => 'The :attribute must be greater than :value characters.',
- 'array' => 'The :attribute must have more than :value items.',
+ 'file' => 'The :attribute must be greater than :value kilobytes.',
+ 'string' => 'The :attribute must be greater than :value characters.',
+ 'array' => 'The :attribute must have more than :value items.',
],
- 'gte' => [
+ 'gte' => [
'numeric' => 'The :attribute must be greater than or equal :value.',
- 'file' => 'The :attribute must be greater than or equal :value kilobytes.',
- 'string' => 'The :attribute must be greater than or equal :value characters.',
- 'array' => 'The :attribute must have :value items or more.',
+ 'file' => 'The :attribute must be greater than or equal :value kilobytes.',
+ 'string' => 'The :attribute must be greater than or equal :value characters.',
+ 'array' => 'The :attribute must have :value items or more.',
],
- 'image' => 'Rhaid i :attribute fod yn lun.',
- 'in' => 'Nid yw :attribute yn ddilys.',
- 'in_array' => 'The :attribute field does not exist in :other.',
- 'integer' => 'Rhaid i :attribute fod yn integer.',
- 'ip' => 'Rhaid i :attribute fod yn gyfeiriad IP dilys.',
- 'ipv4' => 'The :attribute must be a valid IPv4 address.',
- 'ipv6' => 'The :attribute must be a valid IPv6 address.',
- 'json' => 'The :attribute must be a valid JSON string.',
- 'lt' => [
+ 'image' => 'Rhaid i :attribute fod yn lun.',
+ 'in' => 'Nid yw :attribute yn ddilys.',
+ 'in_array' => 'The :attribute field does not exist in :other.',
+ 'integer' => 'Rhaid i :attribute fod yn integer.',
+ 'ip' => 'Rhaid i :attribute fod yn gyfeiriad IP dilys.',
+ 'ipv4' => 'The :attribute must be a valid IPv4 address.',
+ 'ipv6' => 'The :attribute must be a valid IPv6 address.',
+ 'json' => 'The :attribute must be a valid JSON string.',
+ 'lt' => [
'numeric' => 'The :attribute must be less than :value.',
- 'file' => 'The :attribute must be less than :value kilobytes.',
- 'string' => 'The :attribute must be less than :value characters.',
- 'array' => 'The :attribute must have less than :value items.',
+ 'file' => 'The :attribute must be less than :value kilobytes.',
+ 'string' => 'The :attribute must be less than :value characters.',
+ 'array' => 'The :attribute must have less than :value items.',
],
- 'lte' => [
+ 'lte' => [
'numeric' => 'The :attribute must be less than or equal :value.',
- 'file' => 'The :attribute must be less than or equal :value kilobytes.',
- 'string' => 'The :attribute must be less than or equal :value characters.',
- 'array' => 'The :attribute must not have more than :value items.',
+ 'file' => 'The :attribute must be less than or equal :value kilobytes.',
+ 'string' => 'The :attribute must be less than or equal :value characters.',
+ 'array' => 'The :attribute must not have more than :value items.',
],
- 'max' => [
+ 'max' => [
'numeric' => 'Ni chai :attribute fod yn fwy na :max.',
- 'file' => 'Ni chai :attribute fod yn fwy na :max kilobytes.',
- 'string' => 'Ni chai :attribute fod yn fwy na :max nodyn.',
- 'array' => 'Ni chai :attribute fod yn fwy na :max eitem.',
+ 'file' => 'Ni chai :attribute fod yn fwy na :max kilobytes.',
+ 'string' => 'Ni chai :attribute fod yn fwy na :max nodyn.',
+ 'array' => 'Ni chai :attribute fod yn fwy na :max eitem.',
],
- 'mimes' => "Rhaid i :attribute fod yn ffeil o'r math: :values.",
- 'mimetypes' => "Rhaid i :attribute fod yn ffeil o'r math: :values.",
- 'min' => [
+ 'mimes' => "Rhaid i :attribute fod yn ffeil o'r math: :values.",
+ 'mimetypes' => "Rhaid i :attribute fod yn ffeil o'r math: :values.",
+ 'min' => [
'numeric' => 'Rhaid i :attribute fod o leiaf :min.',
- 'file' => 'Rhaid i :attribute fod o leiaf :min kilobytes.',
- 'string' => 'Rhaid i :attribute fod o leiaf :min nodyn.',
- 'array' => 'Rhaid i :attribute fod o leiaf :min eitem.',
+ 'file' => 'Rhaid i :attribute fod o leiaf :min kilobytes.',
+ 'string' => 'Rhaid i :attribute fod o leiaf :min nodyn.',
+ 'array' => 'Rhaid i :attribute fod o leiaf :min eitem.',
],
- 'not_in' => 'Nid yw :attribute yn ddilys.',
- 'not_regex' => 'The :attribute format is invalid.',
- 'numeric' => 'Rhaid i :attribute fod yn rif.',
- 'present' => 'The :attribute field must be present.',
- 'regex' => 'Nid yw fformat :attribute yn ddilys.',
- 'required' => 'Rhaid cynnwys :attribute.',
- 'required_if' => 'Rhaid cynnwys :attribute pan mae :other yn :value.',
- 'required_unless' => 'The :attribute field is required unless :other is in :values.',
- 'required_with' => 'Rhaid cynnwys :attribute pan mae :values yn bresennol.',
- 'required_with_all' => 'Rhaid cynnwys :attribute pan mae :values yn bresennol.',
- 'required_without' => 'Rhaid cynnwys :attribute pan nad oes :values yn bresennol.',
+ 'not_in' => 'Nid yw :attribute yn ddilys.',
+ 'not_regex' => 'The :attribute format is invalid.',
+ 'numeric' => 'Rhaid i :attribute fod yn rif.',
+ 'present' => 'The :attribute field must be present.',
+ 'regex' => 'Nid yw fformat :attribute yn ddilys.',
+ 'required' => 'Rhaid cynnwys :attribute.',
+ 'required_if' => 'Rhaid cynnwys :attribute pan mae :other yn :value.',
+ 'required_unless' => 'The :attribute field is required unless :other is in :values.',
+ 'required_with' => 'Rhaid cynnwys :attribute pan mae :values yn bresennol.',
+ 'required_with_all' => 'Rhaid cynnwys :attribute pan mae :values yn bresennol.',
+ 'required_without' => 'Rhaid cynnwys :attribute pan nad oes :values yn bresennol.',
'required_without_all' => 'Rhaid cynnwys :attribute pan nad oes :values yn bresennol.',
- 'same' => 'Rhaid i :attribute a :other fod yn gyfwerth.',
- 'size' => [
+ 'same' => 'Rhaid i :attribute a :other fod yn gyfwerth.',
+ 'size' => [
'numeric' => 'Rhaid i :attribute fod yn :size.',
- 'file' => 'Rhaid i :attribute fod yn :size kilobytes.',
- 'string' => 'Rhaid i :attribute fod yn :size nodyn.',
- 'array' => 'Rhaid i :attribute fod yn :size eitem.',
+ 'file' => 'Rhaid i :attribute fod yn :size kilobytes.',
+ 'string' => 'Rhaid i :attribute fod yn :size nodyn.',
+ 'array' => 'Rhaid i :attribute fod yn :size eitem.',
],
- 'starts_with' => 'The :attribute must start with one of the following: :values',
- 'string' => 'The :attribute must be a string.',
- 'timezone' => 'Rhaid i :attribute fod yn timezone dilys.',
- 'unique' => 'Mae :attribute eisoes yn bodoli.',
- 'uploaded' => 'The :attribute failed to upload.',
- 'url' => 'Nid yw fformat :attribute yn ddilys.',
- 'uuid' => 'The :attribute must be a valid UUID.',
+ 'starts_with' => 'The :attribute must start with one of the following: :values',
+ 'string' => 'The :attribute must be a string.',
+ 'timezone' => 'Rhaid i :attribute fod yn timezone dilys.',
+ 'unique' => 'Mae :attribute eisoes yn bodoli.',
+ 'uploaded' => 'The :attribute failed to upload.',
+ 'url' => 'Nid yw fformat :attribute yn ddilys.',
+ 'uuid' => 'The :attribute must be a valid UUID.',
/*
|--------------------------------------------------------------------------
diff --git a/lang/da/articles.php b/lang/da/articles.php
index ce17aa877..3b904994a 100644
--- a/lang/da/articles.php
+++ b/lang/da/articles.php
@@ -12,8 +12,8 @@
*/
return [
- 'articles' => 'Nyheder',
+ 'articles' => 'Nyheder',
'meta-articles' => 'Nyheder og artikler om tracker samt community',
- 'published-at' => 'Udgivet den',
- 'read-more' => 'Læs mere',
+ 'published-at' => 'Udgivet den',
+ 'read-more' => 'Læs mere',
];
diff --git a/lang/da/auth.php b/lang/da/auth.php
index 6426fb9bb..d0a47a10b 100644
--- a/lang/da/auth.php
+++ b/lang/da/auth.php
@@ -23,91 +23,91 @@ return [
|
*/
- 'activation-error' => 'Forbudt eller ugyldig token eller konto allerede bekræftet!',
- 'activation-success' => 'Konto bekræftet! Du kan nu logge ind!',
- 'add-image' => 'Tilføj endnu et billedlink',
- 'add-profile' => 'Tilføj endnu et profillink',
- 'allow-invite-appl' => 'Åben registrering er lukket! Du skal inviteres for at kunne tilmelde sig! Dog er tilmeldinger via ansøgninger åbne. Du er blevet omdirigeret til ansøgningsiden!',
- 'allow-invite' => 'Åben registrering er lukket! Du skal inviteres for at kunne tilmelde dig! Du er blevet omdirigeret til login-siden!',
- 'are-you' => 'Er du:',
- 'application' => 'Ansøgning',
- 'appl-closed' => 'Ansøgninger er lukket',
- 'appl-intro' => 'er et lukket fælleskab. Du skal have et invitationslink for at kunne registrere dig. Hvis du ikke kan få en invitation, kan du udfylde følgende ansøgning om medlemskab.',
- 'appl-reason' => 'Hvordan har du hørt om ":sitename" og hvorfor vil du gerne være medlem? ',
- 'application-submitted' => 'Din ansøgning er indsendt. Du modtager en e-mail når den er behandlet!',
- 'banned' => 'Denne konto er udelukket!',
- 'check-later' => 'Kom tilbage senere!',
- 'delete-image' => 'Slet link til sidste billede',
- 'delete-profile' => 'Slet link til sidste profil',
- 'email' => 'E-mail',
- 'failed' => 'Disse legitimationsoplysninger stemmer ikke overens med vores optegnelser.',
- 'invalid-key' => 'Ugyldig eller udløbet invitationsnøgle!',
- 'login' => 'Logind',
- 'login-now-on' => 'Logind nu på',
- 'logout' => 'Logud',
- 'lost-password' => 'Glemt din adgangskode?',
- 'lost-username' => 'Glemt dit brugernavn?',
- 'need-invite' => 'Åben registrering er deaktiveret, og du skal bruge en invitation for at få adgang!',
- 'newbie' => 'Ny i dette',
- 'not-a-member' => 'Ikke medlem? Tilmeld dig på under 30s.',
- 'not-activated' => 'Denne konto er ikke aktiveret og er stadig under validering. Tjek venligst din e-mail for aktiveringslink. Hvis du ikke modtog aktiveringskoden, skal du klikke på "glemt adgangskode" og udføre trinnene.',
- 'password' => 'Adgangskode',
- 'proof-image' => 'Bevis billede URL',
- 'proof-image-title' => 'Links til profilskærmbilleder',
- 'proof-profile' => 'Profil-link URL',
- 'proof-profile-title' => 'Links til dine profiler',
- 'proof-min' => '(Minimum 2, Anbefalet 3)',
- 'recover-my-password' => 'Gendan min adgangskode',
- 'register-thanks' => 'Tak for tilmeldingen! Tjek din e-mail for at validere din konto',
- 'remember-me' => 'Husk mig',
- 'require-rules' => 'Læs og accepter vores regler ved at rulle til bunden af siden.',
- 'signup' => 'Tilmeld',
- 'throttle' => 'For mange loginforsøg. Prøv igen om :seconds sekunder.',
- 'unlock' => 'Lås op',
- 'user-icon' => 'Brugerikon',
- 'username' => 'Brugernavn',
- 'veteran' => 'Erfaren med private trackere',
- 'welcome' => 'Velkommen tilbage!',
- 'welcome-restore' => 'Velkommen tilbage! Din konto er ikke længere deaktiveret!',
+ 'activation-error' => 'Forbudt eller ugyldig token eller konto allerede bekræftet!',
+ 'activation-success' => 'Konto bekræftet! Du kan nu logge ind!',
+ 'add-image' => 'Tilføj endnu et billedlink',
+ 'add-profile' => 'Tilføj endnu et profillink',
+ 'allow-invite-appl' => 'Åben registrering er lukket! Du skal inviteres for at kunne tilmelde sig! Dog er tilmeldinger via ansøgninger åbne. Du er blevet omdirigeret til ansøgningsiden!',
+ 'allow-invite' => 'Åben registrering er lukket! Du skal inviteres for at kunne tilmelde dig! Du er blevet omdirigeret til login-siden!',
+ 'are-you' => 'Er du:',
+ 'application' => 'Ansøgning',
+ 'appl-closed' => 'Ansøgninger er lukket',
+ 'appl-intro' => 'er et lukket fælleskab. Du skal have et invitationslink for at kunne registrere dig. Hvis du ikke kan få en invitation, kan du udfylde følgende ansøgning om medlemskab.',
+ 'appl-reason' => 'Hvordan har du hørt om ":sitename" og hvorfor vil du gerne være medlem? ',
+ 'application-submitted' => 'Din ansøgning er indsendt. Du modtager en e-mail når den er behandlet!',
+ 'banned' => 'Denne konto er udelukket!',
+ 'check-later' => 'Kom tilbage senere!',
+ 'delete-image' => 'Slet link til sidste billede',
+ 'delete-profile' => 'Slet link til sidste profil',
+ 'email' => 'E-mail',
+ 'failed' => 'Disse legitimationsoplysninger stemmer ikke overens med vores optegnelser.',
+ 'invalid-key' => 'Ugyldig eller udløbet invitationsnøgle!',
+ 'login' => 'Logind',
+ 'login-now-on' => 'Logind nu på',
+ 'logout' => 'Logud',
+ 'lost-password' => 'Glemt din adgangskode?',
+ 'lost-username' => 'Glemt dit brugernavn?',
+ 'need-invite' => 'Åben registrering er deaktiveret, og du skal bruge en invitation for at få adgang!',
+ 'newbie' => 'Ny i dette',
+ 'not-a-member' => 'Ikke medlem? Tilmeld dig på under 30s.',
+ 'not-activated' => 'Denne konto er ikke aktiveret og er stadig under validering. Tjek venligst din e-mail for aktiveringslink. Hvis du ikke modtog aktiveringskoden, skal du klikke på "glemt adgangskode" og udføre trinnene.',
+ 'password' => 'Adgangskode',
+ 'proof-image' => 'Bevis billede URL',
+ 'proof-image-title' => 'Links til profilskærmbilleder',
+ 'proof-profile' => 'Profil-link URL',
+ 'proof-profile-title' => 'Links til dine profiler',
+ 'proof-min' => '(Minimum 2, Anbefalet 3)',
+ 'recover-my-password' => 'Gendan min adgangskode',
+ 'register-thanks' => 'Tak for tilmeldingen! Tjek din e-mail for at validere din konto',
+ 'remember-me' => 'Husk mig',
+ 'require-rules' => 'Læs og accepter vores regler ved at rulle til bunden af siden.',
+ 'signup' => 'Tilmeld',
+ 'throttle' => 'For mange loginforsøg. Prøv igen om :seconds sekunder.',
+ 'unlock' => 'Lås op',
+ 'user-icon' => 'Brugerikon',
+ 'username' => 'Brugernavn',
+ 'veteran' => 'Erfaren med private trackere',
+ 'welcome' => 'Velkommen tilbage!',
+ 'welcome-restore' => 'Velkommen tilbage! Din konto er ikke længere deaktiveret!',
/*
|--------------------------------------------------------------------------
| Two Step Authentication Language Lines
|--------------------------------------------------------------------------
*/
- 'subtitle' => 'Verifikation Krævet',
- 'title' => '2-trins Verifikation',
- 'titleFailed' => 'Verifikation Fejlet',
- 'titlePassed' => 'Gode nyheder alle sammen!',
+ 'subtitle' => 'Verifikation Krævet',
+ 'title' => '2-trins Verifikation',
+ 'titleFailed' => 'Verifikation Fejlet',
+ 'titlePassed' => 'Gode nyheder alle sammen!',
- 'inputAlt1' => 'Kode Indtastning 1',
- 'inputAlt2' => 'Kode Indtastning 2',
- 'inputAlt3' => 'Kode Indtastning 3',
- 'inputAlt4' => 'Kode Indtastning 4',
+ 'inputAlt1' => 'Kode Indtastning 1',
+ 'inputAlt2' => 'Kode Indtastning 2',
+ 'inputAlt3' => 'Kode Indtastning 3',
+ 'inputAlt4' => 'Kode Indtastning 4',
- 'attemptsRemaining' => 'Resterende forsøg',
- 'missingCode' => 'Modtog du ikke bekræftelseskode?',
- 'verifyButton' => 'Verificér',
+ 'attemptsRemaining' => 'Resterende forsøg',
+ 'missingCode' => 'Modtog du ikke bekræftelseskode?',
+ 'verifyButton' => 'Verificér',
- 'exceededTitle' => 'Bekræftelsesforsøg overskredet',
- 'lockedUntil' => 'Konto låst indtil:',
- 'returnButton' => 'Tilbage til start',
- 'tryAgainIn' => 'Prøv igen om',
+ 'exceededTitle' => 'Bekræftelsesforsøg overskredet',
+ 'lockedUntil' => 'Konto låst indtil:',
+ 'returnButton' => 'Tilbage til start',
+ 'tryAgainIn' => 'Prøv igen om',
- 'verificationEmailButton' => 'Verificer nu',
- 'verificationEmailGreeting' => 'Hej :username',
- 'verificationEmailMessage' => 'Din kontos 2-trins bekræftelseskode er:',
- 'verificationEmailSubject' => 'Verifikation Krævet',
+ 'verificationEmailButton' => 'Verificer nu',
+ 'verificationEmailGreeting' => 'Hej :username',
+ 'verificationEmailMessage' => 'Din kontos 2-trins bekræftelseskode er:',
+ 'verificationEmailSubject' => 'Verifikation Krævet',
- 'verificationEmailSentMsg' => 'Bekræftelses-e-mail sendt!',
- 'verificationEmailSuccess' => 'Success!',
+ 'verificationEmailSentMsg' => 'Bekræftelses-e-mail sendt!',
+ 'verificationEmailSuccess' => 'Success!',
- 'verificationWarningMessage' => 'Dette er dit sidste forsøg, før din konto låses i :hours timer.',
- 'verificationWarningTitle' => 'Advarsel!',
+ 'verificationWarningMessage' => 'Dette er dit sidste forsøg, før din konto låses i :hours timer.',
+ 'verificationWarningTitle' => 'Advarsel!',
- 'verificationLockedMessage' => 'Konto Låst!',
- 'verificationLockedTitle' => 'Doh!',
+ 'verificationLockedMessage' => 'Konto Låst!',
+ 'verificationLockedTitle' => 'Doh!',
- 'verificationModalConfBtn' => 'Ok',
+ 'verificationModalConfBtn' => 'Ok',
];
diff --git a/lang/da/backup.php b/lang/da/backup.php
index 0dc5c14a8..6bb1be23c 100644
--- a/lang/da/backup.php
+++ b/lang/da/backup.php
@@ -12,33 +12,33 @@
*/
return [
- 'actions' => 'Handlinger',
- 'backup' => 'Backup',
- 'backup_doesnt_exist' => 'Backupfilen findes ikke.',
- 'create_a_new_backup' => 'Opret fuld backup',
- 'create_a_new_files_backup' => 'Opret filer backup',
- 'create_a_new_db_backup' => 'Opret database backup',
- 'create_confirmation_message' => 'Genindlæser siden om 3 sekunder.',
- 'create_confirmation_title' => 'Backup afsluttet',
- 'create_error_message' => 'Backupfilen kunne IKKE oprettes.',
- 'create_error_title' => 'Sikkerhedsfejl',
- 'create_warning_message' => 'Din sikkerhedskopiering er muligvis IKKE blevet oprettet. Kontroller logfilerne for detaljer.',
- 'create_warning_title' => 'Ukendt fejl',
- 'date' => 'Dato',
- 'delete' => 'Slet',
- 'delete_cancel_message' => 'Backupfilen er IKKE blevet slettet.',
- 'delete_cancel_title' => 'Det er ok',
- 'delete_confirm' => 'Er du sikker på, at du vil slette denne sikkerhedskopieringsfil?',
- 'delete_confirmation_message' => 'Sikkerhedsfilen blev slettet.',
- 'delete_confirmation_title' => 'Færdig',
- 'delete_error_message' => 'Backupfilen er IKKE blevet slettet.',
- 'delete_error_title' => 'Fejl',
- 'download' => 'Hent',
- 'existing_backups' => 'Eksisterende sikkerhedskopier',
- 'file_size' => 'Filstørrelse',
- 'location' => 'Beliggenhed',
- 'manager' => 'Manager',
- 'no_disks_configured' => 'Ingen backup diske konfigureret i config / backup.php',
+ 'actions' => 'Handlinger',
+ 'backup' => 'Backup',
+ 'backup_doesnt_exist' => 'Backupfilen findes ikke.',
+ 'create_a_new_backup' => 'Opret fuld backup',
+ 'create_a_new_files_backup' => 'Opret filer backup',
+ 'create_a_new_db_backup' => 'Opret database backup',
+ 'create_confirmation_message' => 'Genindlæser siden om 3 sekunder.',
+ 'create_confirmation_title' => 'Backup afsluttet',
+ 'create_error_message' => 'Backupfilen kunne IKKE oprettes.',
+ 'create_error_title' => 'Sikkerhedsfejl',
+ 'create_warning_message' => 'Din sikkerhedskopiering er muligvis IKKE blevet oprettet. Kontroller logfilerne for detaljer.',
+ 'create_warning_title' => 'Ukendt fejl',
+ 'date' => 'Dato',
+ 'delete' => 'Slet',
+ 'delete_cancel_message' => 'Backupfilen er IKKE blevet slettet.',
+ 'delete_cancel_title' => 'Det er ok',
+ 'delete_confirm' => 'Er du sikker på, at du vil slette denne sikkerhedskopieringsfil?',
+ 'delete_confirmation_message' => 'Sikkerhedsfilen blev slettet.',
+ 'delete_confirmation_title' => 'Færdig',
+ 'delete_error_message' => 'Backupfilen er IKKE blevet slettet.',
+ 'delete_error_title' => 'Fejl',
+ 'download' => 'Hent',
+ 'existing_backups' => 'Eksisterende sikkerhedskopier',
+ 'file_size' => 'Filstørrelse',
+ 'location' => 'Beliggenhed',
+ 'manager' => 'Manager',
+ 'no_disks_configured' => 'Ingen backup diske konfigureret i config / backup.php',
'only_local_downloads_supported' => 'Kun downloads fra det lokale filsystem understøttes.',
];
diff --git a/lang/da/blocks.php b/lang/da/blocks.php
index 493fd81ad..2d95481e0 100644
--- a/lang/da/blocks.php
+++ b/lang/da/blocks.php
@@ -12,21 +12,21 @@
*/
return [
- 'chatbox' => 'Chatboks',
- 'click' => 'Klik',
- 'to-enable-editor' => 'for at aktivere editoren',
- 'featured-by' => 'Udvalgt af',
- 'featured-torrents' => 'Udvalgte Torrents',
+ 'chatbox' => 'Chatboks',
+ 'click' => 'Klik',
+ 'to-enable-editor' => 'for at aktivere editoren',
+ 'featured-by' => 'Udvalgt af',
+ 'featured-torrents' => 'Udvalgte Torrents',
'featured-torrents-intro' => 'Få dem, mens du kan!',
- 'featured-until' => 'Denne torrent er featured indtil',
- 'top-torrents' => 'Top Torrents',
- 'latest-posts' => 'Seneste Indlæg',
- 'latest-topics' => 'Seneste Emner',
- 'active-in-last' => 'Aktiv i sidste',
- 'users-online' => 'Brugere Online',
- 'check-news' => 'Nyheder (tjek dagligt)',
- 'new-news' => 'Nye Nyheder',
- 'new-torrents' => 'Nye Torrents',
- 'latest-poll' => ' Seneste Afstemning',
+ 'featured-until' => 'Denne torrent er featured indtil',
+ 'top-torrents' => 'Top Torrents',
+ 'latest-posts' => 'Seneste Indlæg',
+ 'latest-topics' => 'Seneste Emner',
+ 'active-in-last' => 'Aktiv i sidste',
+ 'users-online' => 'Brugere Online',
+ 'check-news' => 'Nyheder (tjek dagligt)',
+ 'new-news' => 'Nye Nyheder',
+ 'new-torrents' => 'Nye Torrents',
+ 'latest-poll' => ' Seneste Afstemning',
];
diff --git a/lang/da/bon.php b/lang/da/bon.php
index fb66a05f9..0bd0fed6a 100644
--- a/lang/da/bon.php
+++ b/lang/da/bon.php
@@ -12,45 +12,45 @@
*/
return [
- 'activated' => 'Aktiveret',
- 'active' => 'Aktive!',
- 'amount' => 'Beløb',
- 'bon' => 'BON',
- 'bonus' => 'Bonus',
- 'date' => 'Dato',
- 'earning' => 'Optjening',
- 'earning-rate' => 'Ved denne sats, vil du optjene følgende pr. time..',
- 'earnings' => 'Indtjening',
- 'exchange' => 'Køb',
- 'exchange-warning' => 'Vær venlig at kontrollere dine valg, før du køber.',
- 'extended-stats' => 'Udvidet statestik',
- 'gift' => 'Send BON',
- 'gift-bonus' => 'Send bonuspoint',
- 'gift-to' => 'Send bonuspoint til',
- 'gifts' => 'Gaver',
- 'item' => 'Vare',
- 'no-refund' => 'Ingen tilbagebetalinger!',
- 'per-day' => 'Point pr. Dag',
- 'per-hour' => 'Point pr. Time',
- 'per-minute' => 'Point pr. Minut',
- 'per-month' => 'Point pr. Måned',
- 'per-second' => 'Point Per Sekund',
- 'per-week' => 'Point pr. Uge',
- 'per-year' => 'Point pr. År',
- 'points' => 'Points',
- 'receiver' => 'Modtager',
- 'review-seeds' => 'Gennemgå alle seedede torrents',
- 'send-gift' => 'Send bonuspoint',
- 'sender' => 'Afsender',
- 'store' => 'Butik',
- 'tips' => 'Belønning',
- 'total' => 'Samlet indtjening',
- 'total-gifts' => 'som BON gaver',
- 'total-tips' => 'som BON belønning',
+ 'activated' => 'Aktiveret',
+ 'active' => 'Aktive!',
+ 'amount' => 'Beløb',
+ 'bon' => 'BON',
+ 'bonus' => 'Bonus',
+ 'date' => 'Dato',
+ 'earning' => 'Optjening',
+ 'earning-rate' => 'Ved denne sats, vil du optjene følgende pr. time..',
+ 'earnings' => 'Indtjening',
+ 'exchange' => 'Køb',
+ 'exchange-warning' => 'Vær venlig at kontrollere dine valg, før du køber.',
+ 'extended-stats' => 'Udvidet statestik',
+ 'gift' => 'Send BON',
+ 'gift-bonus' => 'Send bonuspoint',
+ 'gift-to' => 'Send bonuspoint til',
+ 'gifts' => 'Gaver',
+ 'item' => 'Vare',
+ 'no-refund' => 'Ingen tilbagebetalinger!',
+ 'per-day' => 'Point pr. Dag',
+ 'per-hour' => 'Point pr. Time',
+ 'per-minute' => 'Point pr. Minut',
+ 'per-month' => 'Point pr. Måned',
+ 'per-second' => 'Point Per Sekund',
+ 'per-week' => 'Point pr. Uge',
+ 'per-year' => 'Point pr. År',
+ 'points' => 'Points',
+ 'receiver' => 'Modtager',
+ 'review-seeds' => 'Gennemgå alle seedede torrents',
+ 'send-gift' => 'Send bonuspoint',
+ 'sender' => 'Afsender',
+ 'store' => 'Butik',
+ 'tips' => 'Belønning',
+ 'total' => 'Samlet indtjening',
+ 'total-gifts' => 'som BON gaver',
+ 'total-tips' => 'som BON belønning',
'you-have-received-gifts' => 'Du har modtaget',
- 'you-have-sent-gifts' => 'Du har sendt',
- 'you-have-received-tips' => 'Du har modtaget',
- 'you-have-sent-tips' => 'Du har sendt',
- 'your-points' => 'Dine point',
+ 'you-have-sent-gifts' => 'Du har sendt',
+ 'you-have-received-tips' => 'Du har modtaget',
+ 'you-have-sent-tips' => 'Du har sendt',
+ 'your-points' => 'Dine point',
];
diff --git a/lang/da/bot.php b/lang/da/bot.php
index 3782ae339..7abd01d5e 100644
--- a/lang/da/bot.php
+++ b/lang/da/bot.php
@@ -12,15 +12,15 @@
*/
return [
- 'about' => 'Om',
- 'bot' => 'Bot',
- 'bots' => 'Bots',
- 'color' => 'Farve',
- 'command' => 'Kommando',
- 'edit-bot' => 'Rediger Bot',
+ 'about' => 'Om',
+ 'bot' => 'Bot',
+ 'bots' => 'Bots',
+ 'color' => 'Farve',
+ 'command' => 'Kommando',
+ 'edit-bot' => 'Rediger Bot',
'emoji-code' => 'Emoji Code',
- 'help' => 'Hjælp',
- 'icon' => 'Ikon',
- 'info' => 'Info',
- 'name' => 'Navn',
+ 'help' => 'Hjælp',
+ 'icon' => 'Ikon',
+ 'info' => 'Info',
+ 'name' => 'Navn',
];
diff --git a/lang/da/bug.php b/lang/da/bug.php
index 247481021..858524e7f 100644
--- a/lang/da/bug.php
+++ b/lang/da/bug.php
@@ -12,15 +12,15 @@
*/
return [
- 'bug-report' => 'Fejlrapport',
+ 'bug-report' => 'Fejlrapport',
'bug-report-description' => 'Rapporter en sidefejl',
- 'enter-description' => 'Beskriv problemet så godt som muligt',
- 'enter-email' => 'Indtast venligst din e-mail',
- 'enter-title' => 'Vælg venligst en ordentlig titel',
- 'enter-username' => 'Indtast venligst dit brugernavn',
- 'high' => 'Høj',
- 'low' => 'Lav',
- 'priority' => 'Prioritet',
- 'priority-description' => 'Vælg kun meget høj, hvis fejlen virkelig er et problem for at bruge webstedet.',
- 'very-high' => 'Meget høj',
+ 'enter-description' => 'Beskriv problemet så godt som muligt',
+ 'enter-email' => 'Indtast venligst din e-mail',
+ 'enter-title' => 'Vælg venligst en ordentlig titel',
+ 'enter-username' => 'Indtast venligst dit brugernavn',
+ 'high' => 'Høj',
+ 'low' => 'Lav',
+ 'priority' => 'Prioritet',
+ 'priority-description' => 'Vælg kun meget høj, hvis fejlen virkelig er et problem for at bruge webstedet.',
+ 'very-high' => 'Meget høj',
];
diff --git a/lang/da/common.php b/lang/da/common.php
index c109be82a..db1bfffa5 100644
--- a/lang/da/common.php
+++ b/lang/da/common.php
@@ -12,220 +12,220 @@
*/
return [
- 'a-an-art' => '{0}en|[1,*]an',
- 'abbrev-days' => 'D ',
- 'abbrev-hours' => 't ',
- 'abbrev-minutes' => 'm ',
- 'abbrev-months' => 'M ',
- 'abbrev-seconds' => 's',
- 'abbrev-weeks' => 'U ',
- 'abbrev-years' => 'Å ',
- 'about' => 'Om os',
- 'account' => 'Konto',
- 'achievement-title' => 'Fantastisk',
+ 'a-an-art' => '{0}en|[1,*]an',
+ 'abbrev-days' => 'D ',
+ 'abbrev-hours' => 't ',
+ 'abbrev-minutes' => 'm ',
+ 'abbrev-months' => 'M ',
+ 'abbrev-seconds' => 's',
+ 'abbrev-weeks' => 'U ',
+ 'abbrev-years' => 'Å ',
+ 'about' => 'Om os',
+ 'account' => 'Konto',
+ 'achievement-title' => 'Fantastisk',
'achievement-unlocked' => 'Du låste op for præstation',
- 'active' => 'Aktive',
- 'active-warning' => 'Aktive Advarsler',
- 'add' => 'Tilføj',
- 'added' => 'Tilføjet',
- 'amount' => 'Mængde',
- 'anonymous' => 'Anonym',
- 'ascending' => 'Stigende',
- 'author' => 'Forfatter',
- 'balance' => 'Balance',
- 'blacklist' => 'Blacklistede Klienter',
- 'by' => 'Af',
- 'buffer' => 'Buffer',
- 'bug' => 'Anmeld en fejl',
- 'but' => 'men',
- 'cancel' => 'Fortryd',
- 'category' => 'Kategori',
- 'categories' => 'Kategorier',
- 'chat' => 'Chat',
- 'chat-room' => 'Chatrum',
- 'chat-rooms' => 'Chatrum',
- 'close' => 'Luk',
- 'code' => 'Kode',
- 'color' => 'Farve',
- 'command' => 'Kommando',
- 'comment' => 'Kommentar',
- 'comments' => 'Kommentarer',
- 'community' => 'Fællesskab',
- 'content' => 'Indhold',
- 'connected' => 'Forbundet',
- 'contact' => 'Kontakt',
- 'contact-desc' => 'Denne kontaktanmodning sendes til ejeren og du vil blive kontaktet hurtigst muligt',
- 'contact-header' => 'Hej',
- 'create' => 'Opret',
- 'created_at' => 'Oprettet den',
- 'date' => 'Dato',
- 'day' => 'Dag(e)',
- 'delete' => 'Slet',
- 'delete-your-comment' => 'Slet din kommentar',
- 'delete-comment' => 'Slet kommentar',
- 'description' => 'Beskrivelse',
- 'descending' => 'Faldende',
- 'direction' => 'Retning',
- 'disable' => 'Deaktiver',
- 'doubleup_activated' => 'Global dobbelt upload aktiveret',
- 'download' => 'Download',
- 'magnet' => 'Magnet',
- 'edit' => 'Rediger',
- 'edit-your-comment' => 'Rediger din kommentar',
- 'edit-comment' => 'Rediger kommentar',
- 'email' => 'E-mail',
- 'email-blacklist' => 'Email Blacklist',
- 'email-whitelist' => 'Email Whitelist',
+ 'active' => 'Aktive',
+ 'active-warning' => 'Aktive Advarsler',
+ 'add' => 'Tilføj',
+ 'added' => 'Tilføjet',
+ 'amount' => 'Mængde',
+ 'anonymous' => 'Anonym',
+ 'ascending' => 'Stigende',
+ 'author' => 'Forfatter',
+ 'balance' => 'Balance',
+ 'blacklist' => 'Blacklistede Klienter',
+ 'by' => 'Af',
+ 'buffer' => 'Buffer',
+ 'bug' => 'Anmeld en fejl',
+ 'but' => 'men',
+ 'cancel' => 'Fortryd',
+ 'category' => 'Kategori',
+ 'categories' => 'Kategorier',
+ 'chat' => 'Chat',
+ 'chat-room' => 'Chatrum',
+ 'chat-rooms' => 'Chatrum',
+ 'close' => 'Luk',
+ 'code' => 'Kode',
+ 'color' => 'Farve',
+ 'command' => 'Kommando',
+ 'comment' => 'Kommentar',
+ 'comments' => 'Kommentarer',
+ 'community' => 'Fællesskab',
+ 'content' => 'Indhold',
+ 'connected' => 'Forbundet',
+ 'contact' => 'Kontakt',
+ 'contact-desc' => 'Denne kontaktanmodning sendes til ejeren og du vil blive kontaktet hurtigst muligt',
+ 'contact-header' => 'Hej',
+ 'create' => 'Opret',
+ 'created_at' => 'Oprettet den',
+ 'date' => 'Dato',
+ 'day' => 'Dag(e)',
+ 'delete' => 'Slet',
+ 'delete-your-comment' => 'Slet din kommentar',
+ 'delete-comment' => 'Slet kommentar',
+ 'description' => 'Beskrivelse',
+ 'descending' => 'Faldende',
+ 'direction' => 'Retning',
+ 'disable' => 'Deaktiver',
+ 'doubleup_activated' => 'Global dobbelt upload aktiveret',
+ 'download' => 'Download',
+ 'magnet' => 'Magnet',
+ 'edit' => 'Rediger',
+ 'edit-your-comment' => 'Rediger din kommentar',
+ 'edit-comment' => 'Rediger kommentar',
+ 'email' => 'E-mail',
+ 'email-blacklist' => 'Email Blacklist',
+ 'email-whitelist' => 'Email Whitelist',
'email-list-notactive' => 'Email Whitelist / Blacklist System er ikke aktiveret',
- 'enable' => 'Aktiver',
- 'enter' => 'Enter',
- 'error' => 'Fejl',
- 'everyday' => 'Daglige',
- 'expired' => 'Udløbet',
- 'extra' => 'Ekstra',
- 'extra-stats' => 'Ekstra-Stats',
- 'faq' => 'FAQ',
- 'files' => 'Filer',
- 'fl_token' => 'Freeleech Token',
- 'fl_tokens' => 'Freeleech Tokens',
- 'for' => 'for',
- 'forum' => 'Forum',
- 'free' => 'Gratis',
- 'freeleech_activated' => 'Global Freeleech Aktiveret',
- 'given' => 'Givet',
- 'global' => 'Global',
- 'group' => 'Gruppe',
- 'groups' => 'Grupper',
- 'hidden' => 'Skjult',
- 'high-speeds' => 'Høj hastighed',
- 'home' => 'Hjem',
- 'hot' => 'Vild!',
- 'hour' => 'Time(r)',
- 'huge' => 'Kæmpe',
- 'icon' => 'Ikon',
- 'image' => 'Billede',
- 'info' => 'Info',
- 'internal' => 'Intern',
- 'ip' => 'IP',
- 'is-allowed' => 'er tilladt',
- 'language' => 'Sprog',
- 'languages' => 'Sprog',
- 'large' => 'Stor',
- 'latest' => 'Seneste',
- 'latest-posts' => 'Seneste indlæg',
- 'latest-topics' => 'Seneste emner',
- 'legal' => 'Gyldig',
- 'legend' => 'Ikonforklaring',
- 'lists' => 'Lister',
- 'lock-account' => 'Lås konto',
- 'logout' => 'Logud',
- 'media-language' => 'Medie sprog',
- 'media-languages' => 'Media sprog',
- 'members' => 'Medlemmer',
- 'message' => 'Besked',
- 'minute' => 'Minut(ter)',
- 'moderated-by' => 'Modereret af',
- 'moderation' => 'Moderering',
- 'moderation-approve' => 'Godkend',
- 'moderation-postpone' => 'Tilbagehold',
- 'moderation-reject' => 'Afvis',
- 'month' => 'Måned',
- 'months' => 'Måneder',
- 'my' => 'min',
- 'name' => 'Navn',
- 'navigation' => 'Navigering',
- 'new' => 'Ny!',
- 'new-adj' => 'ny',
- 'news' => 'Nyheder',
- 'next' => 'Næste',
- 'no' => 'Nej',
- 'no-comments' => 'Ingen kommentarer endnu',
- 'no-result' => 'Der er intet resultat i databasen til forespørgsel',
- 'notifications' => 'Underetning',
- 'older-than' => 'Ældre end',
- 'oldest' => 'Ældste',
- 'openreg_activated' => 'Åben Registrering Aktiveret',
- 'order-by' => 'Sorter efter',
- 'other' => 'Andet',
- 'overview' => 'Oversigt',
- 'pages' => 'Sider',
- 'password' => 'Adgangskode',
- 'patron' => 'Bliv en Patron',
- 'pending-torrents' => 'Afventende Torrents',
- 'personal' => 'Personlig',
- 'plural-suffix' => 'er',
- 'port' => 'Port',
- 'position' => 'Position',
- 'posts' => 'Indlæg',
- 'powered-by' => 'Drevet af UNIT3D',
- 'preview' => 'Eksempel',
- 'previous' => 'Tidligere',
- 'progress' => 'Fremgang',
- 'publish' => 'Udgiv',
- 'quantity' => 'Antal',
- 'quick-search' => 'Hurtigsøgning',
- 'ratio' => 'Ratio',
- 'reason' => 'Årsag',
- 'remove' => 'Fjern',
- 'report' => 'Anmeld',
- 'resend' => 'Gensend',
- 'resolution' => 'Opløsning',
- 'resolutions' => 'Opløsninger',
- 'reporter' => 'Anmelder',
- 'required' => 'Krævet',
- 'results' => 'Resultat',
- 'rss-system' => 'RSS System',
- 'rules' => 'Regler',
- 'save' => 'Gem',
- 'search' => 'Søgning',
- 'search-advanced' => 'Avanceret søgning',
- 'search-hide' => 'Skjul avanceret søgning',
- 'search-results' => 'Søgeresultater',
- 'search-results-desc' => 'Se dine resultater nedenfor',
- 'second' => 'Sekund(er)',
- 'select' => 'Vælg',
- 'sort' => 'Sorter',
- 'special' => 'Speciel',
- 'sponsor' => 'Bliv en Sponsor',
- 'staff' => 'Staff',
- 'staff-tools' => 'Staff Værktøjer',
- 'stats' => 'Stats',
- 'status' => 'Status',
- 'sticked' => 'Sticked',
- 'submit' => 'Indsend',
- 'subscriptions' => 'Abonnementer',
- 'subtitle' => 'Undertekst',
- 'subtitles' => 'Undertekster',
- 'suggested-clients' => 'Anbefalede klienter',
- 'teams' => 'Teams',
- 'terms' => 'Betingelser for brug',
- 'the' => 'det',
- 'this' => 'dette',
- 'times' => 'Gange',
- 'title' => 'Titel',
- 'top-bountied' => 'Top Dusør',
- 'topics' => 'Emner',
- 'tracker-codes' => 'Tracker Koder',
- 'type' => 'Type',
- 'type-verb' => 'Tast',
- 'types' => 'Typer',
- 'genre' => 'Genre',
- 'genres' => 'Genrer',
- 'action' => 'Handling',
- 'actions' => 'Handlinger',
- 'unknown' => 'Ukendt',
+ 'enable' => 'Aktiver',
+ 'enter' => 'Enter',
+ 'error' => 'Fejl',
+ 'everyday' => 'Daglige',
+ 'expired' => 'Udløbet',
+ 'extra' => 'Ekstra',
+ 'extra-stats' => 'Ekstra-Stats',
+ 'faq' => 'FAQ',
+ 'files' => 'Filer',
+ 'fl_token' => 'Freeleech Token',
+ 'fl_tokens' => 'Freeleech Tokens',
+ 'for' => 'for',
+ 'forum' => 'Forum',
+ 'free' => 'Gratis',
+ 'freeleech_activated' => 'Global Freeleech Aktiveret',
+ 'given' => 'Givet',
+ 'global' => 'Global',
+ 'group' => 'Gruppe',
+ 'groups' => 'Grupper',
+ 'hidden' => 'Skjult',
+ 'high-speeds' => 'Høj hastighed',
+ 'home' => 'Hjem',
+ 'hot' => 'Vild!',
+ 'hour' => 'Time(r)',
+ 'huge' => 'Kæmpe',
+ 'icon' => 'Ikon',
+ 'image' => 'Billede',
+ 'info' => 'Info',
+ 'internal' => 'Intern',
+ 'ip' => 'IP',
+ 'is-allowed' => 'er tilladt',
+ 'language' => 'Sprog',
+ 'languages' => 'Sprog',
+ 'large' => 'Stor',
+ 'latest' => 'Seneste',
+ 'latest-posts' => 'Seneste indlæg',
+ 'latest-topics' => 'Seneste emner',
+ 'legal' => 'Gyldig',
+ 'legend' => 'Ikonforklaring',
+ 'lists' => 'Lister',
+ 'lock-account' => 'Lås konto',
+ 'logout' => 'Logud',
+ 'media-language' => 'Medie sprog',
+ 'media-languages' => 'Media sprog',
+ 'members' => 'Medlemmer',
+ 'message' => 'Besked',
+ 'minute' => 'Minut(ter)',
+ 'moderated-by' => 'Modereret af',
+ 'moderation' => 'Moderering',
+ 'moderation-approve' => 'Godkend',
+ 'moderation-postpone' => 'Tilbagehold',
+ 'moderation-reject' => 'Afvis',
+ 'month' => 'Måned',
+ 'months' => 'Måneder',
+ 'my' => 'min',
+ 'name' => 'Navn',
+ 'navigation' => 'Navigering',
+ 'new' => 'Ny!',
+ 'new-adj' => 'ny',
+ 'news' => 'Nyheder',
+ 'next' => 'Næste',
+ 'no' => 'Nej',
+ 'no-comments' => 'Ingen kommentarer endnu',
+ 'no-result' => 'Der er intet resultat i databasen til forespørgsel',
+ 'notifications' => 'Underetning',
+ 'older-than' => 'Ældre end',
+ 'oldest' => 'Ældste',
+ 'openreg_activated' => 'Åben Registrering Aktiveret',
+ 'order-by' => 'Sorter efter',
+ 'other' => 'Andet',
+ 'overview' => 'Oversigt',
+ 'pages' => 'Sider',
+ 'password' => 'Adgangskode',
+ 'patron' => 'Bliv en Patron',
+ 'pending-torrents' => 'Afventende Torrents',
+ 'personal' => 'Personlig',
+ 'plural-suffix' => 'er',
+ 'port' => 'Port',
+ 'position' => 'Position',
+ 'posts' => 'Indlæg',
+ 'powered-by' => 'Drevet af UNIT3D',
+ 'preview' => 'Eksempel',
+ 'previous' => 'Tidligere',
+ 'progress' => 'Fremgang',
+ 'publish' => 'Udgiv',
+ 'quantity' => 'Antal',
+ 'quick-search' => 'Hurtigsøgning',
+ 'ratio' => 'Ratio',
+ 'reason' => 'Årsag',
+ 'remove' => 'Fjern',
+ 'report' => 'Anmeld',
+ 'resend' => 'Gensend',
+ 'resolution' => 'Opløsning',
+ 'resolutions' => 'Opløsninger',
+ 'reporter' => 'Anmelder',
+ 'required' => 'Krævet',
+ 'results' => 'Resultat',
+ 'rss-system' => 'RSS System',
+ 'rules' => 'Regler',
+ 'save' => 'Gem',
+ 'search' => 'Søgning',
+ 'search-advanced' => 'Avanceret søgning',
+ 'search-hide' => 'Skjul avanceret søgning',
+ 'search-results' => 'Søgeresultater',
+ 'search-results-desc' => 'Se dine resultater nedenfor',
+ 'second' => 'Sekund(er)',
+ 'select' => 'Vælg',
+ 'sort' => 'Sorter',
+ 'special' => 'Speciel',
+ 'sponsor' => 'Bliv en Sponsor',
+ 'staff' => 'Staff',
+ 'staff-tools' => 'Staff Værktøjer',
+ 'stats' => 'Stats',
+ 'status' => 'Status',
+ 'sticked' => 'Sticked',
+ 'submit' => 'Indsend',
+ 'subscriptions' => 'Abonnementer',
+ 'subtitle' => 'Undertekst',
+ 'subtitles' => 'Undertekster',
+ 'suggested-clients' => 'Anbefalede klienter',
+ 'teams' => 'Teams',
+ 'terms' => 'Betingelser for brug',
+ 'the' => 'det',
+ 'this' => 'dette',
+ 'times' => 'Gange',
+ 'title' => 'Titel',
+ 'top-bountied' => 'Top Dusør',
+ 'topics' => 'Emner',
+ 'tracker-codes' => 'Tracker Koder',
+ 'type' => 'Type',
+ 'type-verb' => 'Tast',
+ 'types' => 'Typer',
+ 'genre' => 'Genre',
+ 'genres' => 'Genrer',
+ 'action' => 'Handling',
+ 'actions' => 'Handlinger',
+ 'unknown' => 'Ukendt',
'unlocked-achievement' => 'Du har låst :achievement præstationen op',
- 'upload' => 'Upload',
- 'upload-guide' => 'Upload Guide',
- 'user' => 'Bruger',
- 'username' => 'Brugernavn',
- 'users' => 'Brugere',
- 'view' => 'Vis',
- 'view-all' => 'Vis alle',
- 'warnings' => 'Advarsler',
- 'year' => 'År',
- 'yes' => 'Ja',
- 'your' => 'Din',
- 'your-comment' => 'Din kommentar',
+ 'upload' => 'Upload',
+ 'upload-guide' => 'Upload Guide',
+ 'user' => 'Bruger',
+ 'username' => 'Brugernavn',
+ 'users' => 'Brugere',
+ 'view' => 'Vis',
+ 'view-all' => 'Vis alle',
+ 'warnings' => 'Advarsler',
+ 'year' => 'År',
+ 'yes' => 'Ja',
+ 'your' => 'Din',
+ 'your-comment' => 'Din kommentar',
];
diff --git a/lang/da/email.php b/lang/da/email.php
index 1a9fa2b3c..4b48dee96 100644
--- a/lang/da/email.php
+++ b/lang/da/email.php
@@ -12,47 +12,47 @@
*/
return [
- 'activate-account' => 'Aktivér konto',
- 'ban-reason' => 'Årsag',
- 'banned-footer' => 'Det er hvad du får for ikke at følge reglerne',
- 'banned-header' => 'Du er blevet udelukket',
- 'bug-description' => 'Problem',
- 'bug-footer' => 'Fiks det her',
- 'bug-header' => 'Ny fejlrapport fra',
- 'bug-priority' => 'Prioritet',
- 'bug-title' => 'Fejltitel',
- 'contact-header' => 'Ny kontakt mail fra',
- 'contact-message' => 'Besked',
- 'contact-name' => 'Navn',
+ 'activate-account' => 'Aktivér konto',
+ 'ban-reason' => 'Årsag',
+ 'banned-footer' => 'Det er hvad du får for ikke at følge reglerne',
+ 'banned-header' => 'Du er blevet udelukket',
+ 'bug-description' => 'Problem',
+ 'bug-footer' => 'Fiks det her',
+ 'bug-header' => 'Ny fejlrapport fra',
+ 'bug-priority' => 'Prioritet',
+ 'bug-title' => 'Fejltitel',
+ 'contact-header' => 'Ny kontakt mail fra',
+ 'contact-message' => 'Besked',
+ 'contact-name' => 'Navn',
'fail-login-greeting' => 'Konto-login mislykkedes!',
- 'fail-login-line1' => 'Der blev registreret et mislykket login for din konto.',
- 'fail-login-line2' => 'Denne anmodning stammede fra :ip ( :host ) den :time',
- 'fail-login-subject' => 'Mislykket login underetning',
- 'footer-link' => 'Hvis du har problemer med at klikke på knappen :actionText, kopier og indsæt webadressen nedenfor i din webbrowser:',
- 'invite-header' => 'Invitation til',
- 'invite-invited' => 'Du er blevet inviteret til',
- 'invite-message' => 'Besked',
- 'invite-signup' => 'Tilmeld dig nu',
- 'newreply-header' => 'Der er nyt svar til dit emne',
- 'newreply-message' => 'Besked',
- 'newreply-replied' => 'Har svaret på dit emne',
- 'newreply-view' => 'Se det nu',
- 'no-email-found' => 'Vi kunne ikke finde denne email i vores system!',
- 'register-code' => 'For at afslutte din kontoaktivering klik på knappen nedenfor',
- 'register-footer' => 'Hvis knappen ovenfor ikke virker, kopier og indsæt webadressen i din webbrowser',
- 'register-header' => 'Hej! Tak for at tilmelde dig',
- 'report-comment' => 'Kommentar',
- 'report-email' => 'E-mail',
- 'report-header' => 'Hej Admin, Der er anmeldt et link',
- 'report-link' => 'Link',
- 'report-link-hash' => 'Faktisk link',
- 'thanks' => 'Tak fordi du bruger',
- 'unban-footer' => 'Velkommen tilbage!',
- 'unban-header' => 'Du er ikke længere udelukket',
- 'unban-reason' => 'Årsag',
- 'username-reminder' => 'Du har for nylig sendt os en anmodning om dit brugernavn på vores app. Dit brugernavn er',
- 'username-sent' => 'Dit brugernavn er blevet sendt til din email-adresse!',
- 'disabled-header' => 'Din konto er blevet deaktiveret',
- 'pruned-header' => 'Din konto er blevet fjernet',
+ 'fail-login-line1' => 'Der blev registreret et mislykket login for din konto.',
+ 'fail-login-line2' => 'Denne anmodning stammede fra :ip ( :host ) den :time',
+ 'fail-login-subject' => 'Mislykket login underetning',
+ 'footer-link' => 'Hvis du har problemer med at klikke på knappen :actionText, kopier og indsæt webadressen nedenfor i din webbrowser:',
+ 'invite-header' => 'Invitation til',
+ 'invite-invited' => 'Du er blevet inviteret til',
+ 'invite-message' => 'Besked',
+ 'invite-signup' => 'Tilmeld dig nu',
+ 'newreply-header' => 'Der er nyt svar til dit emne',
+ 'newreply-message' => 'Besked',
+ 'newreply-replied' => 'Har svaret på dit emne',
+ 'newreply-view' => 'Se det nu',
+ 'no-email-found' => 'Vi kunne ikke finde denne email i vores system!',
+ 'register-code' => 'For at afslutte din kontoaktivering klik på knappen nedenfor',
+ 'register-footer' => 'Hvis knappen ovenfor ikke virker, kopier og indsæt webadressen i din webbrowser',
+ 'register-header' => 'Hej! Tak for at tilmelde dig',
+ 'report-comment' => 'Kommentar',
+ 'report-email' => 'E-mail',
+ 'report-header' => 'Hej Admin, Der er anmeldt et link',
+ 'report-link' => 'Link',
+ 'report-link-hash' => 'Faktisk link',
+ 'thanks' => 'Tak fordi du bruger',
+ 'unban-footer' => 'Velkommen tilbage!',
+ 'unban-header' => 'Du er ikke længere udelukket',
+ 'unban-reason' => 'Årsag',
+ 'username-reminder' => 'Du har for nylig sendt os en anmodning om dit brugernavn på vores app. Dit brugernavn er',
+ 'username-sent' => 'Dit brugernavn er blevet sendt til din email-adresse!',
+ 'disabled-header' => 'Din konto er blevet deaktiveret',
+ 'pruned-header' => 'Din konto er blevet fjernet',
];
diff --git a/lang/da/forum.php b/lang/da/forum.php
index b13268ef4..f612882c0 100644
--- a/lang/da/forum.php
+++ b/lang/da/forum.php
@@ -12,72 +12,72 @@
*/
return [
- 'action' => 'Handling',
- 'activity' => 'Aktivitet',
- 'approved' => 'godkendt',
- 'author' => 'Forfatter',
- 'bug' => 'Fejl',
- 'category-quick-search' => 'Hurtig kategorisøgning',
- 'close-topic' => 'Lås emne',
- 'closed' => 'Lukket',
- 'create-new-topic' => 'Opret nyt emne',
- 'created' => 'lavet',
- 'created-at' => 'Oprettelsestidspunkt',
- 'current' => 'Nuværende',
- 'delete-topic' => 'Slet emne',
- 'denied' => 'Nægtet',
- 'dislike-post' => 'Syntes ikke om dette indlæg',
- 'display-forum' => 'Vis emner i',
- 'edit-post' => 'Rediger indlæg',
- 'edit-topic' => 'Rediger emne',
- 'forum' => 'Forum',
- 'forums' => 'Fora',
- 'forums-post-search' => 'Indlægssøgning',
- 'forums-topic-search' => 'Emnesøgning',
- 'implemented' => 'Implementeret',
- 'in' => 'i',
- 'invalid' => 'Afvist',
- 'label' => 'Etiket',
- 'label-system' => 'Etiketsystem',
- 'last-message' => 'Seneste indlæg lavet af',
- 'last-post-info' => 'Senest besvaret af',
- 'latest' => 'Seneste',
- 'like-post' => 'Syntes godt om dette indlæg',
- 'meta-category' => 'Liste over fora i kategorien',
- 'moderation' => 'Moderering',
- 'name' => 'Navn',
- 'not-connected' => 'Du skal være forbundet',
- 'not-subscribed' => 'Ikke abonneret',
- 'open' => 'Åben',
- 'open-topic' => 'Åbn dette emne',
- 'permalink' => 'Permalink',
- 'pin' => 'Fastgør',
- 'post' => 'Indlæg',
- 'post-quick-search' => 'Hurtig indlægssøgning',
- 'posts' => 'Indlæg',
- 'quote' => 'Citér',
- 'read-topic' => 'Læs emnet',
- 'replies' => 'Svar',
- 'send-new-topic' => 'Gem dette emne',
- 'solved' => 'Løst',
- 'state' => 'Tilstand',
- 'stats' => 'Antal',
- 'select-all-forum' => 'Hele forum',
- 'subscribe' => 'Abonnér',
- 'subscribed' => 'Abonneret',
+ 'action' => 'Handling',
+ 'activity' => 'Aktivitet',
+ 'approved' => 'godkendt',
+ 'author' => 'Forfatter',
+ 'bug' => 'Fejl',
+ 'category-quick-search' => 'Hurtig kategorisøgning',
+ 'close-topic' => 'Lås emne',
+ 'closed' => 'Lukket',
+ 'create-new-topic' => 'Opret nyt emne',
+ 'created' => 'lavet',
+ 'created-at' => 'Oprettelsestidspunkt',
+ 'current' => 'Nuværende',
+ 'delete-topic' => 'Slet emne',
+ 'denied' => 'Nægtet',
+ 'dislike-post' => 'Syntes ikke om dette indlæg',
+ 'display-forum' => 'Vis emner i',
+ 'edit-post' => 'Rediger indlæg',
+ 'edit-topic' => 'Rediger emne',
+ 'forum' => 'Forum',
+ 'forums' => 'Fora',
+ 'forums-post-search' => 'Indlægssøgning',
+ 'forums-topic-search' => 'Emnesøgning',
+ 'implemented' => 'Implementeret',
+ 'in' => 'i',
+ 'invalid' => 'Afvist',
+ 'label' => 'Etiket',
+ 'label-system' => 'Etiketsystem',
+ 'last-message' => 'Seneste indlæg lavet af',
+ 'last-post-info' => 'Senest besvaret af',
+ 'latest' => 'Seneste',
+ 'like-post' => 'Syntes godt om dette indlæg',
+ 'meta-category' => 'Liste over fora i kategorien',
+ 'moderation' => 'Moderering',
+ 'name' => 'Navn',
+ 'not-connected' => 'Du skal være forbundet',
+ 'not-subscribed' => 'Ikke abonneret',
+ 'open' => 'Åben',
+ 'open-topic' => 'Åbn dette emne',
+ 'permalink' => 'Permalink',
+ 'pin' => 'Fastgør',
+ 'post' => 'Indlæg',
+ 'post-quick-search' => 'Hurtig indlægssøgning',
+ 'posts' => 'Indlæg',
+ 'quote' => 'Citér',
+ 'read-topic' => 'Læs emnet',
+ 'replies' => 'Svar',
+ 'send-new-topic' => 'Gem dette emne',
+ 'solved' => 'Løst',
+ 'state' => 'Tilstand',
+ 'stats' => 'Antal',
+ 'select-all-forum' => 'Hele forum',
+ 'subscribe' => 'Abonnér',
+ 'subscribed' => 'Abonneret',
'subscription-quick-search' => 'Hurtig abonnementsøgning',
- 'suggestion' => 'Forslag',
- 'tip-post-total' => 'Dette indlæg er blevet belønnet med ialt',
- 'tip-this-post' => 'Beløn indlæg',
- 'topic' => 'Emne',
- 'topic-closed' => 'Dette emne er lukket',
- 'topic-name' => 'Emne',
- 'topic-quick-search' => 'Hurtig emnesøgning',
- 'topic-title' => 'Titel på dette emne',
- 'topics' => 'Emner',
- 'unpin' => 'Frigør',
- 'updated-at' => 'Opdateringstidspunkt',
- 'unsubscribe' => 'Afmeld',
- 'view-all' => 'Se alle emner',
- 'views' => 'Visninger',
+ 'suggestion' => 'Forslag',
+ 'tip-post-total' => 'Dette indlæg er blevet belønnet med ialt',
+ 'tip-this-post' => 'Beløn indlæg',
+ 'topic' => 'Emne',
+ 'topic-closed' => 'Dette emne er lukket',
+ 'topic-name' => 'Emne',
+ 'topic-quick-search' => 'Hurtig emnesøgning',
+ 'topic-title' => 'Titel på dette emne',
+ 'topics' => 'Emner',
+ 'unpin' => 'Frigør',
+ 'updated-at' => 'Opdateringstidspunkt',
+ 'unsubscribe' => 'Afmeld',
+ 'view-all' => 'Se alle emner',
+ 'views' => 'Visninger',
];
diff --git a/lang/da/graveyard.php b/lang/da/graveyard.php
index 6ab870ae9..eb1d71cd8 100644
--- a/lang/da/graveyard.php
+++ b/lang/da/graveyard.php
@@ -12,21 +12,21 @@
*/
return [
- 'current-seedtime' => 'Nuværende Seedtid',
- 'dead' => 'Døde',
- 'graveyard' => 'Kirkegård',
- 'guidelines' => 'Retningslinier',
+ 'current-seedtime' => 'Nuværende Seedtid',
+ 'dead' => 'Døde',
+ 'graveyard' => 'Kirkegård',
+ 'guidelines' => 'Retningslinier',
'guidelines-content' => '1) Du kan ikke genoplive dine egne uploads.
2) Genopliv ikke noget, du ikke kan forpligtige dig til.',
- 'howto' => 'Sådan gør du',
- 'howto-desc1' => 'Du skal seede :name i 30 dage for at opnå en vellykket genoplivning. I hvilket tilfælde din nuværende seedtid på',
- 'howto-desc2' => 'Du vil blive belønnet med',
- 'howto-hits' => 'rammer',
- 'not-rewarded' => 'Ikke belønnet',
- 'pending' => 'Afventende',
- 'resurrect' => 'Genopliv',
- 'resurrect-date' => 'Genoplivelses-dato',
- 'reward' => 'Freeleech tokens',
- 'rewarded' => 'Belønnet',
- 'seedtime-goal' => 'Seedtids-mål',
+ 'howto' => 'Sådan gør du',
+ 'howto-desc1' => 'Du skal seede :name i 30 dage for at opnå en vellykket genoplivning. I hvilket tilfælde din nuværende seedtid på',
+ 'howto-desc2' => 'Du vil blive belønnet med',
+ 'howto-hits' => 'rammer',
+ 'not-rewarded' => 'Ikke belønnet',
+ 'pending' => 'Afventende',
+ 'resurrect' => 'Genopliv',
+ 'resurrect-date' => 'Genoplivelses-dato',
+ 'reward' => 'Freeleech tokens',
+ 'rewarded' => 'Belønnet',
+ 'seedtime-goal' => 'Seedtids-mål',
];
diff --git a/lang/da/mediahub.php b/lang/da/mediahub.php
index 6dab23010..4cbc9a32f 100644
--- a/lang/da/mediahub.php
+++ b/lang/da/mediahub.php
@@ -12,28 +12,28 @@
*/
return [
- 'born' => 'Født:',
- 'collections' => 'Samlinger',
- 'companies' => 'Firmaer',
- 'disclaimer' => 'Dette produkt bruger TMDb API, men er ikke godkendt eller certificeret af TMDb.',
- 'episodes' => 'Episoder',
- 'first-seen' => 'Først set på:',
- 'genres' => 'Genre',
- 'includes' => 'Inkluderer:',
- 'latest-project' => 'Seneste projekt:',
- 'networks' => 'Netværk',
- 'no-data' => 'Ingen data fundet!',
- 'movies' => 'Film',
- 'movie-credits' => 'Film-kredits:',
- 'persons' => 'Personer',
- 'plot' => 'Handling:',
- 'release-date' => 'Frigivelsesdato:',
- 'seasons' => 'Sæsoner',
- 'select-hub' => 'Vælg venligst en Hub',
- 'show' => 'TV Show',
- 'shows' => 'TV Shows',
- 'title' => 'MedieHub',
- 'tv-credits' => 'TV-kredits:',
- 'view-collection' => 'Vis samlingen',
- 'wiki-read' => 'Læs hele bio på Wikipedia:',
+ 'born' => 'Født:',
+ 'collections' => 'Samlinger',
+ 'companies' => 'Firmaer',
+ 'disclaimer' => 'Dette produkt bruger TMDb API, men er ikke godkendt eller certificeret af TMDb.',
+ 'episodes' => 'Episoder',
+ 'first-seen' => 'Først set på:',
+ 'genres' => 'Genre',
+ 'includes' => 'Inkluderer:',
+ 'latest-project' => 'Seneste projekt:',
+ 'networks' => 'Netværk',
+ 'no-data' => 'Ingen data fundet!',
+ 'movies' => 'Film',
+ 'movie-credits' => 'Film-kredits:',
+ 'persons' => 'Personer',
+ 'plot' => 'Handling:',
+ 'release-date' => 'Frigivelsesdato:',
+ 'seasons' => 'Sæsoner',
+ 'select-hub' => 'Vælg venligst en Hub',
+ 'show' => 'TV Show',
+ 'shows' => 'TV Shows',
+ 'title' => 'MedieHub',
+ 'tv-credits' => 'TV-kredits:',
+ 'view-collection' => 'Vis samlingen',
+ 'wiki-read' => 'Læs hele bio på Wikipedia:',
];
diff --git a/lang/da/notification.php b/lang/da/notification.php
index 88ae0b146..dbc9bf5e7 100644
--- a/lang/da/notification.php
+++ b/lang/da/notification.php
@@ -12,27 +12,27 @@
*/
return [
- 'bon-gifts' => 'Bon Gaver',
- 'comment-tags' => 'Kommentar-tags',
- 'date' => 'Dato',
- 'delete' => 'Slet',
- 'delete-all' => 'Slet alt',
- 'filter-by-type' => 'Filtrer via Notifikationstype',
- 'mark-all-read' => 'Markér alle som læst',
- 'mark-read' => 'Markér som læst',
- 'message' => 'Besked',
- 'no-notifications' => 'Der er ingen meddelelser fundet',
- 'notifications' => 'Notifikationer',
- 'post-tags' => 'Indlægs-tags',
- 'post-tips' => 'Indlægs-belønning',
- 'read' => 'Læs',
- 'request-approvals' => 'Request Godkendt',
- 'request-bounties' => 'Request Dusør',
- 'request-claims' => 'Request Opkrævet',
- 'request-fills' => 'Request Opfyldt',
+ 'bon-gifts' => 'Bon Gaver',
+ 'comment-tags' => 'Kommentar-tags',
+ 'date' => 'Dato',
+ 'delete' => 'Slet',
+ 'delete-all' => 'Slet alt',
+ 'filter-by-type' => 'Filtrer via Notifikationstype',
+ 'mark-all-read' => 'Markér alle som læst',
+ 'mark-read' => 'Markér som læst',
+ 'message' => 'Besked',
+ 'no-notifications' => 'Der er ingen meddelelser fundet',
+ 'notifications' => 'Notifikationer',
+ 'post-tags' => 'Indlægs-tags',
+ 'post-tips' => 'Indlægs-belønning',
+ 'read' => 'Læs',
+ 'request-approvals' => 'Request Godkendt',
+ 'request-bounties' => 'Request Dusør',
+ 'request-claims' => 'Request Opkrævet',
+ 'request-fills' => 'Request Opfyldt',
'request-rejections' => 'Request Afvist',
- 'request-unclaims' => 'Request Uopkrævet',
- 'reseed-requests' => 'Reseed Request',
- 'title' => 'Titel',
- 'unfollows' => 'Affølger',
+ 'request-unclaims' => 'Request Uopkrævet',
+ 'reseed-requests' => 'Reseed Request',
+ 'title' => 'Titel',
+ 'unfollows' => 'Affølger',
];
diff --git a/lang/da/page.php b/lang/da/page.php
index a6bd3fd1e..dfb726a52 100644
--- a/lang/da/page.php
+++ b/lang/da/page.php
@@ -12,29 +12,29 @@
*/
return [
- 'aboutus-advantage' => 'Fordelen',
- 'aboutus-advantage1' => 'Vi har erfarne medlemmer og staff, der er velbevandrede i en verden med HD video / audio og teknisk support.',
- 'aboutus-advantage2' => 'Sammen med vores omfattende passion for film og tv-shows tilbyder vi også et af de bedste udvalg af noget, som andre ikke gør - FANRES! STOR TAK til vores indholdsleverandøre.',
- 'aboutus-advantage3' => 'Selvom vi accepterer donationer for at holde webstedet i gang og sikkert, vil der ikke være irriterende PMs er eller bannere sitet. Du vil ikke se noget tiggeri fra os.',
- 'aboutus-advantage4' => 'Vores fællesskab kan ikke sammenlignes til trods for sin unge alder. Mellem vores staff og brugerbase er vi altid til at hjælpe. Vi er passionere omkring at gøre din oplevelse på :title intet mindre end fantastisk.',
- 'aboutus-advantage5' => 'Vores service bruges dagligt af mange mennesker over hele kloden. Vi har højeste interesse i funktionalitet og sikkerhed omkring vores kodebase, hvor vores udviklere dagligt arbejder for at løfte den til det næste niveau.',
- 'aboutus-header' => 'Hej',
- 'aboutus-rules' => 'Hvad vi har brug for fra dig',
- 'aboutus-rules1' => 'At være et aktivt medlem af fælleskabet! Det betyder at deltage produktivt, tilføje godkendt indhold og hjælpe andre brugere, hvis du har mulighed for dette.',
- 'aboutus-rules2' => 'At læse reglerne fuldt ud og at respektere dem!',
- 'aboutus-rules3' => 'Komme med forslag! Vi stræber efter at gøre :title bedre hver dag. Vi siger ikke, at ethvert forslag vil blive brugt, men det gør aldrig ondt at se på nye ideer.',
- 'aboutus-welcome' => 'Lad os snakke om',
- 'aboutus-welcome-desc' => ':title er et fælleskab-skabt Film/TV/FANRES database. Alle data er blevet tilføjet af vores fantastiske fælleskabd siden 2017. :title har et stærkt fokus på HD-indhold, en proaktiv brugerbase, en fantastisk/sikker kodebase og et hjælpsomt og venligt staff.',
- 'blacklist-browsers' => 'Browsere',
- 'blacklist-btclient' => 'BitTorrent Klient',
- 'blacklist-clients' => 'Klienter',
- 'blacklist-desc' => 'Følgende browsere og Bittorrent-klienter er blacklisted/forbudt til brug på :title',
- 'blacklist-webbrowser' => 'Webbrowser',
+ 'aboutus-advantage' => 'Fordelen',
+ 'aboutus-advantage1' => 'Vi har erfarne medlemmer og staff, der er velbevandrede i en verden med HD video / audio og teknisk support.',
+ 'aboutus-advantage2' => 'Sammen med vores omfattende passion for film og tv-shows tilbyder vi også et af de bedste udvalg af noget, som andre ikke gør - FANRES! STOR TAK til vores indholdsleverandøre.',
+ 'aboutus-advantage3' => 'Selvom vi accepterer donationer for at holde webstedet i gang og sikkert, vil der ikke være irriterende PMs er eller bannere sitet. Du vil ikke se noget tiggeri fra os.',
+ 'aboutus-advantage4' => 'Vores fællesskab kan ikke sammenlignes til trods for sin unge alder. Mellem vores staff og brugerbase er vi altid til at hjælpe. Vi er passionere omkring at gøre din oplevelse på :title intet mindre end fantastisk.',
+ 'aboutus-advantage5' => 'Vores service bruges dagligt af mange mennesker over hele kloden. Vi har højeste interesse i funktionalitet og sikkerhed omkring vores kodebase, hvor vores udviklere dagligt arbejder for at løfte den til det næste niveau.',
+ 'aboutus-header' => 'Hej',
+ 'aboutus-rules' => 'Hvad vi har brug for fra dig',
+ 'aboutus-rules1' => 'At være et aktivt medlem af fælleskabet! Det betyder at deltage produktivt, tilføje godkendt indhold og hjælpe andre brugere, hvis du har mulighed for dette.',
+ 'aboutus-rules2' => 'At læse reglerne fuldt ud og at respektere dem!',
+ 'aboutus-rules3' => 'Komme med forslag! Vi stræber efter at gøre :title bedre hver dag. Vi siger ikke, at ethvert forslag vil blive brugt, men det gør aldrig ondt at se på nye ideer.',
+ 'aboutus-welcome' => 'Lad os snakke om',
+ 'aboutus-welcome-desc' => ':title er et fælleskab-skabt Film/TV/FANRES database. Alle data er blevet tilføjet af vores fantastiske fælleskabd siden 2017. :title har et stærkt fokus på HD-indhold, en proaktiv brugerbase, en fantastisk/sikker kodebase og et hjælpsomt og venligt staff.',
+ 'blacklist-browsers' => 'Browsere',
+ 'blacklist-btclient' => 'BitTorrent Klient',
+ 'blacklist-clients' => 'Klienter',
+ 'blacklist-desc' => 'Følgende browsere og Bittorrent-klienter er blacklisted/forbudt til brug på :title',
+ 'blacklist-webbrowser' => 'Webbrowser',
'blacklist-emaildomain' => 'Blokeret email-domæne',
- 'email-blacklist-desc' => 'De følgende email-domæner er blokeret fra at blive brugt. Du kan ikke registrere eller sende en invitation til følgende.',
- 'email-whitelist-desc' => 'De følgende email-domæner er de eneste e-mail-domæner, der kan bruges. Du må kun registrere eller sende en invitation ved hjælp af følgende.',
- 'staff-group' => 'Gruppe',
- 'staff-title' => 'Titel',
+ 'email-blacklist-desc' => 'De følgende email-domæner er blokeret fra at blive brugt. Du kan ikke registrere eller sende en invitation til følgende.',
+ 'email-whitelist-desc' => 'De følgende email-domæner er de eneste e-mail-domæner, der kan bruges. Du må kun registrere eller sende en invitation ved hjælp af følgende.',
+ 'staff-group' => 'Gruppe',
+ 'staff-title' => 'Titel',
'whitelist-emaildomain' => 'Tilladt email-domæne',
];
diff --git a/lang/da/pagination.php b/lang/da/pagination.php
index 8bf140f80..156167805 100644
--- a/lang/da/pagination.php
+++ b/lang/da/pagination.php
@@ -24,6 +24,6 @@ return [
*/
'previous' => 'Forrige',
- 'next' => 'Næste',
+ 'next' => 'Næste',
];
diff --git a/lang/da/passwords.php b/lang/da/passwords.php
index 9da60b31f..5a6bda61e 100644
--- a/lang/da/passwords.php
+++ b/lang/da/passwords.php
@@ -24,8 +24,8 @@ return [
*/
'password' => 'Adgangskode skal minimum være 6 tegn og skal være tastet ens i begge felter.',
- 'reset' => 'Adgangskoden er blevet nulstillet!',
- 'sent' => 'Vi har sendt dig en e-mail til at nulstille din adgangskode!',
- 'token' => 'Koden til nulstilling af adgangskoden er ugyldig.',
- 'user' => 'Vi kan ikke finde en bruger med den e-mailadresse.',
+ 'reset' => 'Adgangskoden er blevet nulstillet!',
+ 'sent' => 'Vi har sendt dig en e-mail til at nulstille din adgangskode!',
+ 'token' => 'Koden til nulstilling af adgangskoden er ugyldig.',
+ 'user' => 'Vi kan ikke finde en bruger med den e-mailadresse.',
];
diff --git a/lang/da/playlist.php b/lang/da/playlist.php
index 21911a28f..3f2ec77d6 100644
--- a/lang/da/playlist.php
+++ b/lang/da/playlist.php
@@ -12,19 +12,19 @@
*/
return [
- 'about' => 'Her finder du brugerkompilerede afspilningslister, der indeholder titler efter deres smag!',
- 'add-torrent' => 'Tilføj Torrent',
- 'added-by' => 'Af:',
- 'cover' => 'Vælg et coverbillede',
- 'create' => 'Opret afspilningsliste',
+ 'about' => 'Her finder du brugerkompilerede afspilningslister, der indeholder titler efter deres smag!',
+ 'add-torrent' => 'Tilføj Torrent',
+ 'added-by' => 'Af:',
+ 'cover' => 'Vælg et coverbillede',
+ 'create' => 'Opret afspilningsliste',
'delete-playlist' => 'Slet afspildningsliste',
- 'desc' => 'Beskrivelse',
- 'download-all' => 'Download afspilningslistens torrents',
- 'edit-playlist' => 'Rediger afspildningsliste',
- 'list-by' => 'En liste lavet af:',
- 'list-about' => 'En liste der omhandler:',
- 'is-private' => 'Privat afspildningsliste?',
- 'playlists' => 'Afspildningslister',
- 'title' => 'Titel',
- 'titles' => 'Titler',
+ 'desc' => 'Beskrivelse',
+ 'download-all' => 'Download afspilningslistens torrents',
+ 'edit-playlist' => 'Rediger afspildningsliste',
+ 'list-by' => 'En liste lavet af:',
+ 'list-about' => 'En liste der omhandler:',
+ 'is-private' => 'Privat afspildningsliste?',
+ 'playlists' => 'Afspildningslister',
+ 'title' => 'Titel',
+ 'titles' => 'Titler',
];
diff --git a/lang/da/pm.php b/lang/da/pm.php
index 517835ad3..4bb32d9dc 100644
--- a/lang/da/pm.php
+++ b/lang/da/pm.php
@@ -12,30 +12,30 @@
*/
return [
- 'create' => 'Opret',
- 'delete' => 'Slet',
+ 'create' => 'Opret',
+ 'delete' => 'Slet',
'enter-subject' => 'Indtast emne',
- 'from' => 'Fra',
- 'inbox' => 'Indbakke',
+ 'from' => 'Fra',
+ 'inbox' => 'Indbakke',
'mark-all-read' => 'Markér alle meddelelser som læst',
- 'message' => 'Besked',
- 'messages' => 'Beskeder',
- 'new' => 'Ny meddelelse',
- 'outbox' => 'Udbakke',
- 'private' => 'Privat',
- 'read' => 'Læst',
- 'received-at' => 'Modtaget den',
- 'refresh' => 'Opdater',
- 'reply' => 'Svar',
- 'search' => 'Søg efter emne',
- 'select' => 'Vælg en bruger',
- 'send' => 'Send PM',
- 'send-to' => 'Send PM til',
- 'sent' => 'Sendt',
- 'sent-at' => 'Sendt til',
- 'subject' => 'Emne',
- 'to' => 'Til',
- 'unread' => 'Ulæst',
- 'empty-inbox' => 'Tøm indbakke',
+ 'message' => 'Besked',
+ 'messages' => 'Beskeder',
+ 'new' => 'Ny meddelelse',
+ 'outbox' => 'Udbakke',
+ 'private' => 'Privat',
+ 'read' => 'Læst',
+ 'received-at' => 'Modtaget den',
+ 'refresh' => 'Opdater',
+ 'reply' => 'Svar',
+ 'search' => 'Søg efter emne',
+ 'select' => 'Vælg en bruger',
+ 'send' => 'Send PM',
+ 'send-to' => 'Send PM til',
+ 'sent' => 'Sendt',
+ 'sent-at' => 'Sendt til',
+ 'subject' => 'Emne',
+ 'to' => 'Til',
+ 'unread' => 'Ulæst',
+ 'empty-inbox' => 'Tøm indbakke',
];
diff --git a/lang/da/poll.php b/lang/da/poll.php
index 4b6bd3603..6547b963d 100644
--- a/lang/da/poll.php
+++ b/lang/da/poll.php
@@ -12,19 +12,19 @@
*/
return [
- 'add-option' => 'Tilføj mulighed',
- 'create-poll' => 'Opret afstemning',
- 'current' => 'Nuværende afstemning (er)',
- 'delete-option' => 'Slet valgmulighed',
+ 'add-option' => 'Tilføj mulighed',
+ 'create-poll' => 'Opret afstemning',
+ 'current' => 'Nuværende afstemning (er)',
+ 'delete-option' => 'Slet valgmulighed',
'multiple-choice' => 'Dette er en multi-valgs afstemning. Vælg så mange svar som du vil.',
- 'option' => 'Mulighed',
- 'poll' => 'Afstemning',
- 'polls' => 'Afstemninger',
- 'results' => 'Afstemningsresultater',
- 'title' => 'Titel',
- 'total' => 'Samlet antal stemmer nogensinde',
- 'vote' => 'Stem',
- 'vote-now' => 'Stem nu!',
- 'votes' => 'Stemmer',
+ 'option' => 'Mulighed',
+ 'poll' => 'Afstemning',
+ 'polls' => 'Afstemninger',
+ 'results' => 'Afstemningsresultater',
+ 'title' => 'Titel',
+ 'total' => 'Samlet antal stemmer nogensinde',
+ 'vote' => 'Stem',
+ 'vote-now' => 'Stem nu!',
+ 'votes' => 'Stemmer',
];
diff --git a/lang/da/request.php b/lang/da/request.php
index 8b355362c..ed7994186 100644
--- a/lang/da/request.php
+++ b/lang/da/request.php
@@ -12,72 +12,72 @@
*/
return [
- 'add-request' => 'Tilføj request',
- 'age' => 'Alder',
- 'all-requests' => 'Alle requests',
- 'approve' => 'Godkende',
- 'bounty' => 'Dusør',
- 'bounty-claimed' => 'Dusør opkrævet',
- 'bounty-unclaimed' => 'Dusør uopkrævet',
- 'category' => 'Kategori',
- 'claim' => 'Opkræv',
- 'claim-anon-choose' => 'Vælg venligst klogt',
- 'claim-as-anon' => 'Vil du gerne opkræve dette anonymt',
- 'claim-now' => 'Opkræv nu',
- 'claimed' => 'Opkrævet',
- 'current' => 'Nuværende',
- 'delete' => 'Slet denne request',
+ 'add-request' => 'Tilføj request',
+ 'age' => 'Alder',
+ 'all-requests' => 'Alle requests',
+ 'approve' => 'Godkende',
+ 'bounty' => 'Dusør',
+ 'bounty-claimed' => 'Dusør opkrævet',
+ 'bounty-unclaimed' => 'Dusør uopkrævet',
+ 'category' => 'Kategori',
+ 'claim' => 'Opkræv',
+ 'claim-anon-choose' => 'Vælg venligst klogt',
+ 'claim-as-anon' => 'Vil du gerne opkræve dette anonymt',
+ 'claim-now' => 'Opkræv nu',
+ 'claimed' => 'Opkrævet',
+ 'current' => 'Nuværende',
+ 'delete' => 'Slet denne request',
'delete-confirmation' => 'Er du sikker på, at du vil slette denne request',
- 'delete-filled' => 'Denne request kan kun slettes, hvis den ikke er blevet opfyldt',
- 'description' => 'Beskrivelse',
- 'dont-have-bps' => 'Du har ikke nok Bonus',
- 'edit-request' => 'Rediger request',
- 'enter-bp' => 'Indtast bonuspoint (minimum 100)',
- 'enter-hash' => 'Indtast Info Hash af den uploadede Torrent',
- 'fill' => 'Opfyld',
- 'fill-request' => 'Opfyld denne request',
- 'filled' => 'Opfyldt',
- 'filled-by' => 'Opfyldt af',
- 'for' => 'til',
- 'fulfill' => 'Opfyld',
- 'last-vote' => 'Senest stemt på for',
- 'my-requests' => 'Mine requests',
- 'my-claims' => 'Mine opkrævede',
- 'my-voted' => 'Mine stemte',
- 'my-filled' => 'Mine opfyldte',
- 'no' => 'Nej,',
- 'no-imdb-id' => 'Alle requests skal indeholde et IMDB-nummer',
- 'no-privileges' => 'Fejl: Dine requestrettigheder er blevet deaktiveret',
- 'no-privileges-desc' => 'Hvis du mener, at dette er i fejl, bedes du kontakte staff',
- 'no-refunds' => 'BON-udvekslinger i forbindelse med oprettelse, opfyldning og dusør er endelige!
Ingen tilbagebetalinger!',
- 'pending' => 'Afventende',
- 'reason' => 'Årsag',
- 'reject' => 'Afvis',
- 'report' => 'Anmeld request',
- 'request' => 'Request',
- 'request-details' => 'Request-detaljer',
- 'requested-by' => 'Efterspurgt af',
- 'requests' => 'Request',
- 'required' => 'Nødvendig',
- 'reset' => 'Nulstil',
- 'reset-confirmation' => 'Er du sikker på, at du vil nulstille denne request',
- 'reset-request' => 'Nulstil denne request',
- 'resolution' => 'Opløsning',
- 'reward' => 'Belønning',
- 'reward-desc' => 'Hvor mange bonuspoint vil du gerne belønne requesten med? Minimum 100 BP',
- 'reward-from' => 'Fra',
- 'title' => 'Titel',
- 'torrent-hash' => 'Torrent Hash',
- 'total-bounty' => 'Samlet dusør',
- 'type' => 'Type',
- 'unclaim' => 'Afkræv denne anmodning',
- 'unfilled' => 'Ikke opfyldt',
- 'view-filled' => 'Vis opfylte',
- 'view-unfilled' => 'Vis ikke opfyldte',
- 'vote' => 'Stem',
- 'vote-that' => 'Stem på denne',
- 'voters' => 'Bruger(re) har stemt på dette request!',
- 'votes' => 'Stemmer',
- 'yes' => 'Ja',
+ 'delete-filled' => 'Denne request kan kun slettes, hvis den ikke er blevet opfyldt',
+ 'description' => 'Beskrivelse',
+ 'dont-have-bps' => 'Du har ikke nok Bonus',
+ 'edit-request' => 'Rediger request',
+ 'enter-bp' => 'Indtast bonuspoint (minimum 100)',
+ 'enter-hash' => 'Indtast Info Hash af den uploadede Torrent',
+ 'fill' => 'Opfyld',
+ 'fill-request' => 'Opfyld denne request',
+ 'filled' => 'Opfyldt',
+ 'filled-by' => 'Opfyldt af',
+ 'for' => 'til',
+ 'fulfill' => 'Opfyld',
+ 'last-vote' => 'Senest stemt på for',
+ 'my-requests' => 'Mine requests',
+ 'my-claims' => 'Mine opkrævede',
+ 'my-voted' => 'Mine stemte',
+ 'my-filled' => 'Mine opfyldte',
+ 'no' => 'Nej,',
+ 'no-imdb-id' => 'Alle requests skal indeholde et IMDB-nummer',
+ 'no-privileges' => 'Fejl: Dine requestrettigheder er blevet deaktiveret',
+ 'no-privileges-desc' => 'Hvis du mener, at dette er i fejl, bedes du kontakte staff',
+ 'no-refunds' => 'BON-udvekslinger i forbindelse med oprettelse, opfyldning og dusør er endelige!
Ingen tilbagebetalinger!',
+ 'pending' => 'Afventende',
+ 'reason' => 'Årsag',
+ 'reject' => 'Afvis',
+ 'report' => 'Anmeld request',
+ 'request' => 'Request',
+ 'request-details' => 'Request-detaljer',
+ 'requested-by' => 'Efterspurgt af',
+ 'requests' => 'Request',
+ 'required' => 'Nødvendig',
+ 'reset' => 'Nulstil',
+ 'reset-confirmation' => 'Er du sikker på, at du vil nulstille denne request',
+ 'reset-request' => 'Nulstil denne request',
+ 'resolution' => 'Opløsning',
+ 'reward' => 'Belønning',
+ 'reward-desc' => 'Hvor mange bonuspoint vil du gerne belønne requesten med? Minimum 100 BP',
+ 'reward-from' => 'Fra',
+ 'title' => 'Titel',
+ 'torrent-hash' => 'Torrent Hash',
+ 'total-bounty' => 'Samlet dusør',
+ 'type' => 'Type',
+ 'unclaim' => 'Afkræv denne anmodning',
+ 'unfilled' => 'Ikke opfyldt',
+ 'view-filled' => 'Vis opfylte',
+ 'view-unfilled' => 'Vis ikke opfyldte',
+ 'vote' => 'Stem',
+ 'vote-that' => 'Stem på denne',
+ 'voters' => 'Bruger(re) har stemt på dette request!',
+ 'votes' => 'Stemmer',
+ 'yes' => 'Ja',
];
diff --git a/lang/da/rss.php b/lang/da/rss.php
index cc405e350..22dd31a39 100644
--- a/lang/da/rss.php
+++ b/lang/da/rss.php
@@ -12,19 +12,19 @@
*/
return [
- 'create' => 'Opret',
+ 'create' => 'Opret',
'create-private-feed' => 'Opret privat RSS-feed',
- 'create-public-feed' => 'Opret offentlig RSS-feed',
- 'delete' => 'Slet',
- 'edit' => 'Rediger',
- 'edit-private-feed' => 'Rediger privat RSS Feed',
- 'edit-public-feed' => 'Rediger offentlig RSS-feed',
- 'feed' => 'Feed',
- 'feeds' => 'Feeds',
- 'name' => 'Navn',
- 'public' => 'Offentlig',
- 'private' => 'Privat',
- 'rss' => 'RSS',
- 'rss-feed' => 'RSS Feed',
- 'type' => 'Type',
+ 'create-public-feed' => 'Opret offentlig RSS-feed',
+ 'delete' => 'Slet',
+ 'edit' => 'Rediger',
+ 'edit-private-feed' => 'Rediger privat RSS Feed',
+ 'edit-public-feed' => 'Rediger offentlig RSS-feed',
+ 'feed' => 'Feed',
+ 'feeds' => 'Feeds',
+ 'name' => 'Navn',
+ 'public' => 'Offentlig',
+ 'private' => 'Privat',
+ 'rss' => 'RSS',
+ 'rss-feed' => 'RSS Feed',
+ 'type' => 'Type',
];
diff --git a/lang/da/staff.php b/lang/da/staff.php
index d4617fe1b..1e9e40847 100644
--- a/lang/da/staff.php
+++ b/lang/da/staff.php
@@ -12,63 +12,63 @@
*/
return [
- 'audit-log' => 'Aktivitets Log',
- 'articles' => 'Nyheder',
- 'article-content' => 'Indhold',
- 'application' => 'Ansøgning',
- 'applications' => 'Ansøgninger',
- 'application-type' => 'Type',
- 'application-image-proofs'=> 'Billedbevis',
- 'application-referrer' => 'Reference',
- 'bans-log' => 'Udelukkelses Log',
- 'blocks' => 'Blokke',
- 'bot' => 'Bot',
- 'bots' => 'Bots',
- 'chat' => 'Chat',
- 'config-manager' => 'Konfigurations Manager',
- 'commands' => 'Kommandoer',
- 'dashboard' => 'Dahsboard',
- 'failed-login-log' => 'Mislykkede login Log',
- 'flush-ghost-peers' => 'Tøm Ghost peers',
- 'forums' => 'Fora',
- 'frontend' => 'Frontend',
- 'general-tools' => 'Generelle værktøjer',
- 'groups' => 'Grupper',
- 'invites-log' => 'Invitations Log',
- 'laravel-log' => 'Laravel Log',
- 'link' => 'Link',
- 'links' => 'Links',
- 'logs' => 'Logs',
- 'mass-pm' => 'Masse PM',
- 'mass-validate-users' => 'Masse valider brugere',
- 'media-languages-desc' => '(Sprog, der bruges til at udfylde dropdown-sprog til undertekster / lydbøger / osv.)',
- 'moderation' => 'Moderering',
- 'moderation-since' => 'Modereret den',
- 'page' => 'Side',
- 'pages' => 'Sider',
- 'please-moderate' => 'Moderer venligst denne Torrent!',
- 'polls' => 'Afstemninger',
- 'rooms' => 'Rum',
- 'reports-log' => 'Anmeldelses Log',
- 'rss' => 'RSS',
- 'staff-dashboard' => 'Staff Dashboard',
- 'status' => 'Status',
- 'statuses' => 'Status',
- 'torrent-categories' => 'Torrent Kategorier',
- 'torrent-moderation' => 'Torrent Moderering',
- 'torrent-tools' => 'Torrent Værktøjer',
- 'torrent-types' => 'Torrent Typer',
- 'torrent-resolutions' => 'Torrent Opløsninger',
- 'torrents' => 'Torrents',
- 'user-gifting' => 'Brugerbelønning',
- 'user-notes' => 'Brugernoter Log',
- 'user-search' => 'Brugersøgning',
- 'user-tools' => 'Brugerværktøjer',
- 'warnings-log' => 'Advarsels Log',
- 'you-have' => 'Du har',
+ 'audit-log' => 'Aktivitets Log',
+ 'articles' => 'Nyheder',
+ 'article-content' => 'Indhold',
+ 'application' => 'Ansøgning',
+ 'applications' => 'Ansøgninger',
+ 'application-type' => 'Type',
+ 'application-image-proofs' => 'Billedbevis',
+ 'application-referrer' => 'Reference',
+ 'bans-log' => 'Udelukkelses Log',
+ 'blocks' => 'Blokke',
+ 'bot' => 'Bot',
+ 'bots' => 'Bots',
+ 'chat' => 'Chat',
+ 'config-manager' => 'Konfigurations Manager',
+ 'commands' => 'Kommandoer',
+ 'dashboard' => 'Dahsboard',
+ 'failed-login-log' => 'Mislykkede login Log',
+ 'flush-ghost-peers' => 'Tøm Ghost peers',
+ 'forums' => 'Fora',
+ 'frontend' => 'Frontend',
+ 'general-tools' => 'Generelle værktøjer',
+ 'groups' => 'Grupper',
+ 'invites-log' => 'Invitations Log',
+ 'laravel-log' => 'Laravel Log',
+ 'link' => 'Link',
+ 'links' => 'Links',
+ 'logs' => 'Logs',
+ 'mass-pm' => 'Masse PM',
+ 'mass-validate-users' => 'Masse valider brugere',
+ 'media-languages-desc' => '(Sprog, der bruges til at udfylde dropdown-sprog til undertekster / lydbøger / osv.)',
+ 'moderation' => 'Moderering',
+ 'moderation-since' => 'Modereret den',
+ 'page' => 'Side',
+ 'pages' => 'Sider',
+ 'please-moderate' => 'Moderer venligst denne Torrent!',
+ 'polls' => 'Afstemninger',
+ 'rooms' => 'Rum',
+ 'reports-log' => 'Anmeldelses Log',
+ 'rss' => 'RSS',
+ 'staff-dashboard' => 'Staff Dashboard',
+ 'status' => 'Status',
+ 'statuses' => 'Status',
+ 'torrent-categories' => 'Torrent Kategorier',
+ 'torrent-moderation' => 'Torrent Moderering',
+ 'torrent-tools' => 'Torrent Værktøjer',
+ 'torrent-types' => 'Torrent Typer',
+ 'torrent-resolutions' => 'Torrent Opløsninger',
+ 'torrents' => 'Torrents',
+ 'user-gifting' => 'Brugerbelønning',
+ 'user-notes' => 'Brugernoter Log',
+ 'user-search' => 'Brugersøgning',
+ 'user-tools' => 'Brugerværktøjer',
+ 'warnings-log' => 'Advarsels Log',
+ 'you-have' => 'Du har',
'possible-leech-cheaters' => 'Mulige snydere',
- 'chat-tools' => 'Chatværktøjer',
- 'flush-chat' => 'Tøm chatboksen',
- 'seedboxes' => 'Registrerede seedbokse',
+ 'chat-tools' => 'Chatværktøjer',
+ 'flush-chat' => 'Tøm chatboksen',
+ 'seedboxes' => 'Registrerede seedbokse',
];
diff --git a/lang/da/stat.php b/lang/da/stat.php
index ea10b81b2..828d45705 100644
--- a/lang/da/stat.php
+++ b/lang/da/stat.php
@@ -12,52 +12,52 @@
*/
return [
- 'all' => 'Alle',
- 'active' => 'Aktive',
- 'all-time' => 'Totalt',
- 'banned' => 'Udelukkede',
- 'by-count' => 'Efter Antal',
- 'by-data' => 'Efter Data',
- 'by-volume' => 'Efter volumen',
- 'credited' => 'Krediteret',
- 'disabled' => 'Deaktiverede',
- 'group' => 'Gruppe',
- 'groups' => 'Grupper',
- 'last30days' => 'Seneste 30 dage',
- 'nerd-stats' => 'Nerd stats',
- 'nerd-stats-desc' => 'Vi elsker statistik. Her er nogle af dem',
- 'languages' => 'Sprog',
- 'place' => 'Sted',
- 'pruned' => 'Forældede',
- 'real' => 'Reel',
- 'registration-date' => 'Registrerings dato',
- 'request-fulfilled' => 'Forespørgsel opfyldt',
- 'request-not-fulfilled' => 'Forespørgslen ikke opfyldt',
+ 'all' => 'Alle',
+ 'active' => 'Aktive',
+ 'all-time' => 'Totalt',
+ 'banned' => 'Udelukkede',
+ 'by-count' => 'Efter Antal',
+ 'by-data' => 'Efter Data',
+ 'by-volume' => 'Efter volumen',
+ 'credited' => 'Krediteret',
+ 'disabled' => 'Deaktiverede',
+ 'group' => 'Gruppe',
+ 'groups' => 'Grupper',
+ 'last30days' => 'Seneste 30 dage',
+ 'nerd-stats' => 'Nerd stats',
+ 'nerd-stats-desc' => 'Vi elsker statistik. Her er nogle af dem',
+ 'languages' => 'Sprog',
+ 'place' => 'Sted',
+ 'pruned' => 'Forældede',
+ 'real' => 'Reel',
+ 'registration-date' => 'Registrerings dato',
+ 'request-fulfilled' => 'Forespørgsel opfyldt',
+ 'request-not-fulfilled' => 'Forespørgslen ikke opfyldt',
'request-pending-aproval' => 'Forespørgsel afventer godkendelse',
- 'select-category' => 'Vælg venligst en kategori nedenfor',
- 'site-stats' => 'Sitets stats',
- 'stats' => 'Stats',
- 'stats-format' => 'Alle statistikker vises i Top 100 Format',
- 'top-bankers' => 'Top Bonus',
- 'top-bountied' => 'Top Dusør',
- 'top-completed' => 'Top Afsluttet',
- 'top-dead' => 'Top Døde',
- 'top-downloaded' => 'Top Downloadede Torrents',
- 'top-downloaders' => 'Top Downloaders',
- 'top-dying' => 'Top Døende',
- 'top-leeched' => 'Top Leeched',
- 'top-leechers' => 'Top Leechere',
- 'top-seeded' => 'Top Seeded',
- 'top-seeding' => 'Top Seeder',
- 'top-seeders' => 'Top Seeders',
- 'top-seedsize' => 'Top Seedstørrelse',
- 'top-seedtime' => 'Top Seedtid',
- 'top-uploaders' => 'Top Uploadere',
- 'total-download' => 'Total Download',
- 'total-torrents' => 'Total Torrents',
- 'total-traffic' => 'Total Trafik',
- 'total-upload' => 'Total Upload',
- 'users-in-group' => 'Brugere i gruppe',
- 'users-per-group' => 'Brugere pr. Gruppe',
- 'updated' => '(Opdateres hvert 10. minut!)',
+ 'select-category' => 'Vælg venligst en kategori nedenfor',
+ 'site-stats' => 'Sitets stats',
+ 'stats' => 'Stats',
+ 'stats-format' => 'Alle statistikker vises i Top 100 Format',
+ 'top-bankers' => 'Top Bonus',
+ 'top-bountied' => 'Top Dusør',
+ 'top-completed' => 'Top Afsluttet',
+ 'top-dead' => 'Top Døde',
+ 'top-downloaded' => 'Top Downloadede Torrents',
+ 'top-downloaders' => 'Top Downloaders',
+ 'top-dying' => 'Top Døende',
+ 'top-leeched' => 'Top Leeched',
+ 'top-leechers' => 'Top Leechere',
+ 'top-seeded' => 'Top Seeded',
+ 'top-seeding' => 'Top Seeder',
+ 'top-seeders' => 'Top Seeders',
+ 'top-seedsize' => 'Top Seedstørrelse',
+ 'top-seedtime' => 'Top Seedtid',
+ 'top-uploaders' => 'Top Uploadere',
+ 'total-download' => 'Total Download',
+ 'total-torrents' => 'Total Torrents',
+ 'total-traffic' => 'Total Trafik',
+ 'total-upload' => 'Total Upload',
+ 'users-in-group' => 'Brugere i gruppe',
+ 'users-per-group' => 'Brugere pr. Gruppe',
+ 'updated' => '(Opdateres hvert 10. minut!)',
];
diff --git a/lang/da/subtitle.php b/lang/da/subtitle.php
index bebf42586..005e42fb1 100644
--- a/lang/da/subtitle.php
+++ b/lang/da/subtitle.php
@@ -12,13 +12,13 @@
*/
return [
- 'downloads' => 'Downloads',
- 'extension' => 'Udvidelser',
- 'delete-confirm' => 'Er du sikker på du vil slette denne?',
- 'note' => 'Note',
- 'note-help' => 'Ekstra info til denne undertekst',
- 'rules-title' => 'Undertekst regler!',
- 'rules' => '
+ 'downloads' => 'Downloads',
+ 'extension' => 'Udvidelser',
+ 'delete-confirm' => 'Er du sikker på du vil slette denne?',
+ 'note' => 'Note',
+ 'note-help' => 'Ekstra info til denne undertekst',
+ 'rules-title' => 'Undertekst regler!',
+ 'rules' => '
- Det er kun tilladt at uploade ordentlige undertekster (Korrekt billedhastighed, oversættelse, stavning og timing).
- Ingen google oversat / maskin oversat / ukorrekte undertekster tilladt.
- Undertekster skal være synkroniseret med videoen.
@@ -27,11 +27,11 @@ return [
- Hold undertekstens note kort. INGEN webadresser/links er tilladt.
- Alle undertekster skal bekræftes, verificeres og synkoniseres korrekt til den specifikke Torrent/Film.
',
- 'size' => 'Størrelse',
- 'subtitle-file' => 'Undertekst fil',
- 'subtitle-file-types' => 'Accepterede filer er ICO, SRT and ZIP',
- 'search' => 'Søg efter torrent',
- 'uploaded' => 'Uploaded',
- 'uploader' => 'Uploader',
+ 'size' => 'Størrelse',
+ 'subtitle-file' => 'Undertekst fil',
+ 'subtitle-file-types' => 'Accepterede filer er ICO, SRT and ZIP',
+ 'search' => 'Søg efter torrent',
+ 'uploaded' => 'Uploaded',
+ 'uploader' => 'Uploader',
];
diff --git a/lang/da/ticket.php b/lang/da/ticket.php
index ff441c904..af37463eb 100644
--- a/lang/da/ticket.php
+++ b/lang/da/ticket.php
@@ -12,29 +12,29 @@
*/
return [
- 'assign' => 'Tildel',
- 'assigned-staff' => 'Tildelt',
- 'attachments' => 'Vedhæftninger',
+ 'assign' => 'Tildel',
+ 'assigned-staff' => 'Tildelt',
+ 'attachments' => 'Vedhæftninger',
'attachments-save' => 'Gem vedhæftninger',
- 'body' => 'Beskrivelse',
- 'body-enter' => 'Skriv beskrivelsen her...',
- 'category' => 'Kategori',
- 'close' => 'Luk',
- 'closed' => 'Lukket',
- 'create-ticket' => 'Opret Sag',
- 'created' => 'Oprettet',
- 'delete' => 'Slet',
- 'description' => 'Beskrivelse',
- 'download' => 'Download',
- 'fix-errors' => 'Afhjælp følgende fejl og prøv igen:',
- 'helpdesk' => 'Helpdesk',
- 'no-attach' => 'Ingen vedhæftninger fundet',
- 'priority' => 'Prioritet',
- 'opened-by' => 'Åbnet af:',
- 'reset' => 'Nulstil',
- 'subject' => 'Emne',
- 'subject-enter' => 'Skriv emne her...',
- 'submit-ticket' => 'Indsend Sag',
- 'ticket' => 'Sag',
- 'unassign' => 'Fjern tildeling',
+ 'body' => 'Beskrivelse',
+ 'body-enter' => 'Skriv beskrivelsen her...',
+ 'category' => 'Kategori',
+ 'close' => 'Luk',
+ 'closed' => 'Lukket',
+ 'create-ticket' => 'Opret Sag',
+ 'created' => 'Oprettet',
+ 'delete' => 'Slet',
+ 'description' => 'Beskrivelse',
+ 'download' => 'Download',
+ 'fix-errors' => 'Afhjælp følgende fejl og prøv igen:',
+ 'helpdesk' => 'Helpdesk',
+ 'no-attach' => 'Ingen vedhæftninger fundet',
+ 'priority' => 'Prioritet',
+ 'opened-by' => 'Åbnet af:',
+ 'reset' => 'Nulstil',
+ 'subject' => 'Emne',
+ 'subject-enter' => 'Skriv emne her...',
+ 'submit-ticket' => 'Indsend Sag',
+ 'ticket' => 'Sag',
+ 'unassign' => 'Fjern tildeling',
];
diff --git a/lang/da/torrent.php b/lang/da/torrent.php
index 50c6d51ca..00751c8e0 100644
--- a/lang/da/torrent.php
+++ b/lang/da/torrent.php
@@ -12,220 +12,220 @@
*/
return [
- 'activity' => 'Aktivitet',
- 'add-to-playlist' => 'Tilføj til afspildningsliste',
- 'age' => 'Alder',
- 'agent' => 'Agent',
- 'alive' => 'I live',
- 'announce-url' => 'Announce URL',
- 'announce-url-desc' => 'Brug venligst announceadressen ovenfor, når du opretter en ny torrent.
Tip - brug :source som source i din klient for at undgå at skulle hente den fra sitet efter oprettelse!',
- 'announce-url-desc-url' => 'Har problemer? Se vores guide her',
- 'announce-url-desc2' => 'TMDB eller IMDB er påkrævet for alle uploads! For at kunne hente plakater, baggrunde og ekstra info',
- 'approved' => 'Godkendt',
- 'audio' => 'Lyd',
- 'bon-tipped' => 'BON belønnet',
- 'bookmark' => 'Bogmærke',
- 'bookmarks' => 'Bogmærker',
- 'bump' => 'Bump',
- 'c-column' => 'F',
- 'cant-upload' => 'Fejl: Dine uploadrettigheder er deaktiveret',
- 'cant-upload-desc' => 'Hvis du føler, at dette er i fejl, skal du kontakte staff',
- 'cards' => 'Kort',
- 'cards-view' => 'Torrent Kortvisning',
- 'categories' => 'Kategorier',
- 'category' => 'Kategori',
- 'client' => 'Klient',
- 'commited' => 'Dedikeret',
- 'completed' => 'Fuldført',
- 'completed_at' => 'Fuldført den',
- 'completed-not-seeding' => 'Du har fuldført dette download, men seeder ikke længere',
- 'completed-times' => 'Gange Fulført',
- 'comments-left' => 'Kommentarer givet',
- 'created_at' => 'Oprettet den',
- 'credited' => 'Krediteret',
- 'current' => 'Nuværende',
- 'current-filters' => 'Nuværende filtre',
- 'currently-leeching' => 'Leecher i øjeblikket',
- 'currently-seeding' => 'Seeder i øjeblikket',
- 'dead-torrent' => 'Død Torrent',
- 'dead-torrents' => 'Døde Torrents',
- 'define-tip-amount' => 'Beløn med',
- 'delete-bookmark' => 'Slet bogmærke',
- 'description' => 'Beskrivelse',
- 'discounts' => 'Rabat',
- 'double-upload' => 'Dobbelt Upload',
- 'download-all' => 'Download alle',
- 'download-check' => 'Download check',
- 'downloaded' => 'downloadet',
- 'dying-torrent' => 'Last man standing (tæt på at dø!)',
- 'dying-torrents' => 'Døende Torrents',
- 'encode-settings' => 'Indkodnings indstillinger',
- 'end-year' => 'År til',
- 'episode-number' => 'Episodenummer',
- 'estimated-ratio' => 'Estimeret ratio efter download',
- 'failed' => 'Mislykkedes',
- 'feature' => 'Udvalgt',
- 'featured' => 'Udvalgte',
- 'featured-desc' => 'Udvalgte torrents er 100% gratis og giver Dobbelt upload!',
- 'featured-until' => 'Dette er en fremhævet Torrent indtil',
- 'file' => 'Fil',
- 'filters' => 'Filtre',
- 'fl-tokens-left' => 'Du har :tokens tilbage',
- 'freeleech' => 'Freeleech',
- 'freeleech-token' => 'Freeleech Token',
- 'general' => 'Generel',
- 'genre' => 'Genre',
- 'global-double-upload' => 'Global Dobbelt Upload',
- 'global-freeleech' => 'Global Freeleech',
- 'grant' => 'Tildel',
- 'greater-than' => 'Større end',
- 'grouping' => 'Gruppering',
- 'groupings' => 'Grupperinger',
- 'grouping-categories' => 'Grupperingskategorier',
+ 'activity' => 'Aktivitet',
+ 'add-to-playlist' => 'Tilføj til afspildningsliste',
+ 'age' => 'Alder',
+ 'agent' => 'Agent',
+ 'alive' => 'I live',
+ 'announce-url' => 'Announce URL',
+ 'announce-url-desc' => 'Brug venligst announceadressen ovenfor, når du opretter en ny torrent.
Tip - brug :source som source i din klient for at undgå at skulle hente den fra sitet efter oprettelse!',
+ 'announce-url-desc-url' => 'Har problemer? Se vores guide her',
+ 'announce-url-desc2' => 'TMDB eller IMDB er påkrævet for alle uploads! For at kunne hente plakater, baggrunde og ekstra info',
+ 'approved' => 'Godkendt',
+ 'audio' => 'Lyd',
+ 'bon-tipped' => 'BON belønnet',
+ 'bookmark' => 'Bogmærke',
+ 'bookmarks' => 'Bogmærker',
+ 'bump' => 'Bump',
+ 'c-column' => 'F',
+ 'cant-upload' => 'Fejl: Dine uploadrettigheder er deaktiveret',
+ 'cant-upload-desc' => 'Hvis du føler, at dette er i fejl, skal du kontakte staff',
+ 'cards' => 'Kort',
+ 'cards-view' => 'Torrent Kortvisning',
+ 'categories' => 'Kategorier',
+ 'category' => 'Kategori',
+ 'client' => 'Klient',
+ 'commited' => 'Dedikeret',
+ 'completed' => 'Fuldført',
+ 'completed_at' => 'Fuldført den',
+ 'completed-not-seeding' => 'Du har fuldført dette download, men seeder ikke længere',
+ 'completed-times' => 'Gange Fulført',
+ 'comments-left' => 'Kommentarer givet',
+ 'created_at' => 'Oprettet den',
+ 'credited' => 'Krediteret',
+ 'current' => 'Nuværende',
+ 'current-filters' => 'Nuværende filtre',
+ 'currently-leeching' => 'Leecher i øjeblikket',
+ 'currently-seeding' => 'Seeder i øjeblikket',
+ 'dead-torrent' => 'Død Torrent',
+ 'dead-torrents' => 'Døde Torrents',
+ 'define-tip-amount' => 'Beløn med',
+ 'delete-bookmark' => 'Slet bogmærke',
+ 'description' => 'Beskrivelse',
+ 'discounts' => 'Rabat',
+ 'double-upload' => 'Dobbelt Upload',
+ 'download-all' => 'Download alle',
+ 'download-check' => 'Download check',
+ 'downloaded' => 'downloadet',
+ 'dying-torrent' => 'Last man standing (tæt på at dø!)',
+ 'dying-torrents' => 'Døende Torrents',
+ 'encode-settings' => 'Indkodnings indstillinger',
+ 'end-year' => 'År til',
+ 'episode-number' => 'Episodenummer',
+ 'estimated-ratio' => 'Estimeret ratio efter download',
+ 'failed' => 'Mislykkedes',
+ 'feature' => 'Udvalgt',
+ 'featured' => 'Udvalgte',
+ 'featured-desc' => 'Udvalgte torrents er 100% gratis og giver Dobbelt upload!',
+ 'featured-until' => 'Dette er en fremhævet Torrent indtil',
+ 'file' => 'Fil',
+ 'filters' => 'Filtre',
+ 'fl-tokens-left' => 'Du har :tokens tilbage',
+ 'freeleech' => 'Freeleech',
+ 'freeleech-token' => 'Freeleech Token',
+ 'general' => 'Generel',
+ 'genre' => 'Genre',
+ 'global-double-upload' => 'Global Dobbelt Upload',
+ 'global-freeleech' => 'Global Freeleech',
+ 'grant' => 'Tildel',
+ 'greater-than' => 'Større end',
+ 'grouping' => 'Gruppering',
+ 'groupings' => 'Grupperinger',
+ 'grouping-categories' => 'Grupperingskategorier',
'grouping-categories-desc' => 'Hvilken kategori vil du gerne gruppere?',
- 'grouping-results' => 'Gruppering af resultater',
- 'groupings-view' => 'Grupperingsvisning',
- 'have-completed' => 'Fuldført',
- 'have-downloaded' => 'Downloadet',
- 'have-not-completed' => 'Ikke fuldført',
- 'have-not-downloaded' => 'Ikke downloadet',
- 'health' => 'Sundhed',
- 'history' => 'Historik',
- 'hitrun' => 'H & R?',
- 'hit-and-runs' => 'Hitn Run antal',
- 'immune' => 'Immun?',
- 'info' => 'Info',
- 'info-hash' => 'Info Hash',
- 'internal' => 'Intern',
- 'internal-release' => 'Intern udgivelse',
- 'keywords' => 'Nøgleord',
- 'keywords-example' => 'Eksempel: superhero, dc comics, marvel',
- 'last-seed-activity' => 'Sidste seedaktivitet',
- 'last-seeder' => 'Du er den sidste resterende seeder! (er downloadet mindst 3 gange)',
- 'last-update' => 'Seneste ændring',
- 'leave-tip' => 'Beløn',
- 'leecher' => 'Leecher',
- 'leechers' => 'Leechere',
- 'leeching' => 'Leecher',
- 'left' => 'Venstre',
- 'legendary-seeder' => 'Legendarisk Seeder',
- 'legendary-torrent' => 'Legendariske Torrents',
- 'list' => 'Liste',
- 'me' => 'Mig',
- 'media-info' => 'MediaInfo',
- 'media-info-parser' => 'MediaInfo Parser',
- 'media-info-paste' => 'Indsæt MediaInfo dump her',
- 'meta-desc' => 'Download :name ved maksimal hastighed',
- 'moderation' => 'Modering',
- 'movies' => 'Film',
- 'mvp' => 'MVP',
- 'my-active-torrents' => 'Mine aktive torrents',
- 'name' => 'Navn',
- 'no-bookmarks' => 'Der er ingen bogmærker fundet.',
- 'no-discounts' => 'Der er i øjeblikket ingen rabat aktiv på denne torrent!',
- 'no-meta' => 'Ingen metadata fundet',
- 'no-privileges' => 'Du kan ikke downloade denne fil - se venligst nedenfor for mere info',
- 'no-privileges-desc' => 'Løs venligst de fejlede resultater ovenfor for at download-knappen kan blive vist',
- 'not-completed' => 'Startet downloading men aldrig afsluttet',
- 'not-downloaded' => 'Ikke downloadet',
- 'old-torrent' => 'Gamle Torrents',
- 'optional' => 'Valgfri',
- 'original-output' => 'Vis/Skjul originalt output',
- 'participant' => 'Deltager',
- 'passed' => 'Godkendt',
- 'peers' => 'Peers',
- 'pending' => 'Afventende',
- 'personal-freeleech' => 'Personlig Freeleech',
- 'poster' => 'Plakat',
- 'poster-view' => 'Plakatvisning',
- 'posters' => 'Plakater',
- 'prewarn' => 'Prewarned?',
- 'progress' => 'Fremskridt',
- 'quick-comment' => 'Hurtig kommentar',
- 'quick-tip' => 'Hurtig belønning',
- 'rated' => 'Bedømt',
- 'rating' => 'Bedømmelse',
- 'ready' => 'Denne fil er klar til download',
- 'recent-bumped' => 'Skubbet "op" for nylig',
- 'recommendations' => 'Anbefalinger',
- 'rejected' => 'Afvist',
- 'released' => 'Udgivet',
- 'remaining' => 'Resterende',
- 'required-anime' => 'Krævet til Anime',
- 'required-games' => 'Krævet til Spil',
- 'request-reseed' => 'Anmod om reseed',
- 'requires-reseed' => 'Kræver reseed',
- 'resolution' => 'Opløsning',
- 'resolutions' => 'Opløsninger',
- 'resurrections' => 'Genoplivninger',
- 'revoke' => 'Tilbagekald',
- 'rss' => 'RSS',
- 'runtime' => 'Varighed',
- 'satisfied_in' => 'Tilfreds med',
- 'say-thanks' => 'Husk at sige tak og seed så længe du kan',
- 'sd-content' => 'SD-indhold',
- 'search' => 'Søg',
- 'search-by-name' => 'Søg via navn',
- 'season-number' => 'Sæsonnummer',
- 'seed-time' => 'Seedtid',
- 'seeder' => 'Seeder',
- 'seeders' => 'Seedet',
- 'seeding' => 'Seeder',
- 'seedsize' => 'Seedstørrelse',
- 'seedtime' => 'Seedtid',
- 'short-completed' => 'F',
- 'short-leechs' => 'L',
- 'short-seeds' => 'S',
- 'show-files' => 'Vis filer',
- 'similar' => 'Lignende Torrents',
- 'size' => 'Størrelse',
- 'special' => 'Særlig',
- 'special-freeleech' => 'Særlig Freeleech',
- 'staff-tools' => 'Staff værktøjer',
- 'start-year' => 'År fra',
- 'started' => 'Startet',
- 'status' => 'status',
- 'statistics' => 'Statistik',
- 'stats' => 'Stats',
- 'sticky' => 'Gør Sticky',
- 'stream-optimized' => 'Stream optimeret',
- 'subtitle' => 'Undertekst',
- 'subtitle-included' => 'Denne torrent indeholder allerede følgende undertekster muxed med:',
- 'team-player' => 'Holdspiller',
- 'thank' => 'Takke',
- 'thanked' => 'takket',
- 'thanks' => 'Tak',
- 'thanks-given' => 'Tak givet',
- 'times' => 'Gange',
- 'tip-jar' => 'Belønning',
- 'title' => 'Titel',
- 'titles' => 'Titler',
- 'top-completed' => 'Top fuldført',
- 'top-dead' => 'Top døde',
- 'top-dying' => 'Top døende',
- 'top-leeched' => 'Top leechet',
- 'top-seeded' => 'Top seedet',
- 'torrent' => 'Torrent',
- 'torrent-request' => 'Torrent Request',
- 'torrent-tips' => 'I alt :total BON er blevet brugt til at belønne uploaderen, hvoraf :user er fra dig',
- 'torrent-tips-desc' => 'Dette vil blive fratrukket dine tilgængelige bonuspoint',
- 'torrents' => 'Torrents',
- 'torrents-matched' => 'Torrents listet',
- 'trailer' => 'Trailer',
- 'type' => 'Type',
- 'types' => 'Typer',
- 'unbookmark' => 'Fjern Bogmærke',
- 'unsatisfieds' => 'Utilfredsstillende',
- 'unsticky' => 'Fjern Sticky',
- 'updated' => 'Opdateret',
- 'updated_at' => 'Opdateret kl',
- 'uploaded' => 'Uploaded',
- 'uploaded-by' => 'Uploadet af',
- 'uploader' => 'Uploader',
- 'use-fl-token' => 'Brug en Freeleech Token',
- 'video' => 'Video',
- 'view-more' => 'Se mere',
- 'view-trailer' => 'Se trailer',
- 'votes' => 'Stemmer',
- 'year-range' => 'Årsinterval',
+ 'grouping-results' => 'Gruppering af resultater',
+ 'groupings-view' => 'Grupperingsvisning',
+ 'have-completed' => 'Fuldført',
+ 'have-downloaded' => 'Downloadet',
+ 'have-not-completed' => 'Ikke fuldført',
+ 'have-not-downloaded' => 'Ikke downloadet',
+ 'health' => 'Sundhed',
+ 'history' => 'Historik',
+ 'hitrun' => 'H & R?',
+ 'hit-and-runs' => 'Hitn Run antal',
+ 'immune' => 'Immun?',
+ 'info' => 'Info',
+ 'info-hash' => 'Info Hash',
+ 'internal' => 'Intern',
+ 'internal-release' => 'Intern udgivelse',
+ 'keywords' => 'Nøgleord',
+ 'keywords-example' => 'Eksempel: superhero, dc comics, marvel',
+ 'last-seed-activity' => 'Sidste seedaktivitet',
+ 'last-seeder' => 'Du er den sidste resterende seeder! (er downloadet mindst 3 gange)',
+ 'last-update' => 'Seneste ændring',
+ 'leave-tip' => 'Beløn',
+ 'leecher' => 'Leecher',
+ 'leechers' => 'Leechere',
+ 'leeching' => 'Leecher',
+ 'left' => 'Venstre',
+ 'legendary-seeder' => 'Legendarisk Seeder',
+ 'legendary-torrent' => 'Legendariske Torrents',
+ 'list' => 'Liste',
+ 'me' => 'Mig',
+ 'media-info' => 'MediaInfo',
+ 'media-info-parser' => 'MediaInfo Parser',
+ 'media-info-paste' => 'Indsæt MediaInfo dump her',
+ 'meta-desc' => 'Download :name ved maksimal hastighed',
+ 'moderation' => 'Modering',
+ 'movies' => 'Film',
+ 'mvp' => 'MVP',
+ 'my-active-torrents' => 'Mine aktive torrents',
+ 'name' => 'Navn',
+ 'no-bookmarks' => 'Der er ingen bogmærker fundet.',
+ 'no-discounts' => 'Der er i øjeblikket ingen rabat aktiv på denne torrent!',
+ 'no-meta' => 'Ingen metadata fundet',
+ 'no-privileges' => 'Du kan ikke downloade denne fil - se venligst nedenfor for mere info',
+ 'no-privileges-desc' => 'Løs venligst de fejlede resultater ovenfor for at download-knappen kan blive vist',
+ 'not-completed' => 'Startet downloading men aldrig afsluttet',
+ 'not-downloaded' => 'Ikke downloadet',
+ 'old-torrent' => 'Gamle Torrents',
+ 'optional' => 'Valgfri',
+ 'original-output' => 'Vis/Skjul originalt output',
+ 'participant' => 'Deltager',
+ 'passed' => 'Godkendt',
+ 'peers' => 'Peers',
+ 'pending' => 'Afventende',
+ 'personal-freeleech' => 'Personlig Freeleech',
+ 'poster' => 'Plakat',
+ 'poster-view' => 'Plakatvisning',
+ 'posters' => 'Plakater',
+ 'prewarn' => 'Prewarned?',
+ 'progress' => 'Fremskridt',
+ 'quick-comment' => 'Hurtig kommentar',
+ 'quick-tip' => 'Hurtig belønning',
+ 'rated' => 'Bedømt',
+ 'rating' => 'Bedømmelse',
+ 'ready' => 'Denne fil er klar til download',
+ 'recent-bumped' => 'Skubbet "op" for nylig',
+ 'recommendations' => 'Anbefalinger',
+ 'rejected' => 'Afvist',
+ 'released' => 'Udgivet',
+ 'remaining' => 'Resterende',
+ 'required-anime' => 'Krævet til Anime',
+ 'required-games' => 'Krævet til Spil',
+ 'request-reseed' => 'Anmod om reseed',
+ 'requires-reseed' => 'Kræver reseed',
+ 'resolution' => 'Opløsning',
+ 'resolutions' => 'Opløsninger',
+ 'resurrections' => 'Genoplivninger',
+ 'revoke' => 'Tilbagekald',
+ 'rss' => 'RSS',
+ 'runtime' => 'Varighed',
+ 'satisfied_in' => 'Tilfreds med',
+ 'say-thanks' => 'Husk at sige tak og seed så længe du kan',
+ 'sd-content' => 'SD-indhold',
+ 'search' => 'Søg',
+ 'search-by-name' => 'Søg via navn',
+ 'season-number' => 'Sæsonnummer',
+ 'seed-time' => 'Seedtid',
+ 'seeder' => 'Seeder',
+ 'seeders' => 'Seedet',
+ 'seeding' => 'Seeder',
+ 'seedsize' => 'Seedstørrelse',
+ 'seedtime' => 'Seedtid',
+ 'short-completed' => 'F',
+ 'short-leechs' => 'L',
+ 'short-seeds' => 'S',
+ 'show-files' => 'Vis filer',
+ 'similar' => 'Lignende Torrents',
+ 'size' => 'Størrelse',
+ 'special' => 'Særlig',
+ 'special-freeleech' => 'Særlig Freeleech',
+ 'staff-tools' => 'Staff værktøjer',
+ 'start-year' => 'År fra',
+ 'started' => 'Startet',
+ 'status' => 'status',
+ 'statistics' => 'Statistik',
+ 'stats' => 'Stats',
+ 'sticky' => 'Gør Sticky',
+ 'stream-optimized' => 'Stream optimeret',
+ 'subtitle' => 'Undertekst',
+ 'subtitle-included' => 'Denne torrent indeholder allerede følgende undertekster muxed med:',
+ 'team-player' => 'Holdspiller',
+ 'thank' => 'Takke',
+ 'thanked' => 'takket',
+ 'thanks' => 'Tak',
+ 'thanks-given' => 'Tak givet',
+ 'times' => 'Gange',
+ 'tip-jar' => 'Belønning',
+ 'title' => 'Titel',
+ 'titles' => 'Titler',
+ 'top-completed' => 'Top fuldført',
+ 'top-dead' => 'Top døde',
+ 'top-dying' => 'Top døende',
+ 'top-leeched' => 'Top leechet',
+ 'top-seeded' => 'Top seedet',
+ 'torrent' => 'Torrent',
+ 'torrent-request' => 'Torrent Request',
+ 'torrent-tips' => 'I alt :total BON er blevet brugt til at belønne uploaderen, hvoraf :user er fra dig',
+ 'torrent-tips-desc' => 'Dette vil blive fratrukket dine tilgængelige bonuspoint',
+ 'torrents' => 'Torrents',
+ 'torrents-matched' => 'Torrents listet',
+ 'trailer' => 'Trailer',
+ 'type' => 'Type',
+ 'types' => 'Typer',
+ 'unbookmark' => 'Fjern Bogmærke',
+ 'unsatisfieds' => 'Utilfredsstillende',
+ 'unsticky' => 'Fjern Sticky',
+ 'updated' => 'Opdateret',
+ 'updated_at' => 'Opdateret kl',
+ 'uploaded' => 'Uploaded',
+ 'uploaded-by' => 'Uploadet af',
+ 'uploader' => 'Uploader',
+ 'use-fl-token' => 'Brug en Freeleech Token',
+ 'video' => 'Video',
+ 'view-more' => 'Se mere',
+ 'view-trailer' => 'Se trailer',
+ 'votes' => 'Stemmer',
+ 'year-range' => 'Årsinterval',
];
diff --git a/lang/da/user.php b/lang/da/user.php
index 1ba523bbc..8d6fb284d 100644
--- a/lang/da/user.php
+++ b/lang/da/user.php
@@ -12,343 +12,343 @@
*/
return [
- 'about' => 'Om',
- 'about-me' => 'Om mig',
- 'accepted-at' => 'Accepteret den',
- 'accepted-by' => 'Accepteret af',
- 'account-notification' => 'Konto Notifikationsindstillinger',
- 'account-notification-follow' => 'Modtag en notifikation, når en bruger følger din konto',
- 'account-notification-unfollow' => 'Modtag en notifikation, når en bruger ikke længere følger din konto',
- 'account-notification-help' => 'Kontroller, hvilke notifikationer der sendes vedrørende din konto. Disse indstillinger tilsidesættes, hvis du ikke tillader nogen grupper at sende notifikationer om din konto, eller hvis du Deaktiverer Notifikationer',
- 'account-settings' => 'Kontoindstillinger',
- 'achievement-privacy' => 'Præstationsindstillinger',
- 'achievement-privacy-list' => 'Tillad brugere at se en liste over dine præstationer',
- 'achievement-help' => 'Styr deling af specifikke præstationsrelaterede oplysninger med grupper, der har adgang til din profil. Disse indstillinger tilsidesættes, hvis du ikke giver nogen grupper adgang til dine præstationer, eller hvis du Går Privat',
- 'achievements' => 'Præstationer',
- 'active' => 'Aktive',
- 'active-table' => 'Mine Aktive Tabel',
- 'active-torrents' => 'Aktive Torrents',
- 'active-warning' => 'Aktiv Advarsel',
- 'active-warnings' => 'AKtive Advarsler',
- 'add-seedbox' => 'Tilføj Seedbox',
- 'all-torrents' => 'Alle Torrents',
- 'article-comments' => 'Nyheds-kommentarer lavet',
- 'avatar' => 'Avatar',
- 'avg-seedtime' => 'Gennemsnitlig Seedtid',
- 'badges' => 'Udmærkelser',
- 'ban' => 'Udeluk Bruger',
- 'bans' => 'Udelukkelser',
- 'ban-log' => 'Udelukkelses Log',
- 'become-hidden' => 'Bliv skjult',
- 'become-visible' => 'Bliv synlig',
- 'bon' => 'BON',
- 'bon-notification' => 'BON Notifikationsindstillinger',
- 'bon-notification-gift' => 'Modtag en notifikation, når en bruger giver dig bon',
- 'bon-notification-help' => 'Kontroller, hvilke notifikationer der sendes vedrørende BON transaktioner. Disse indstillinger tilsidesættes, hvis du ikke tillader nogen grupper at sende notifikationer om BON eller hvis du Deaktiverer Notifikationer',
- 'bookmarks' => 'Bogmærker',
- 'bounty-given' => 'Dusør Givet',
- 'bounty-received' => 'Dusør Modtaget',
- 'can-chat' => 'Kan Chatte',
- 'can-comment' => 'Kan Kommentere',
- 'can-download' => 'Kan Downloade',
- 'can-invite' => 'Kan Invitere',
- 'can-request' => 'Kan Requeste',
- 'can-upload' => 'Kan Uploade',
- 'certified-banker' => 'Certificeret Bank',
- 'certified-banker-desc' => 'Har 50,000 BON eller mere i banken',
- 'certified-downloader' => 'Certificeret Downloader',
- 'certified-downloader-desc' => 'Har downloaded 100 eller flere torrents!',
- 'certified-seeder' => 'Certificeret Seeder',
- 'certified-seeder-desc' => 'Seeder 150 eller flere torrents!',
- 'change-email' => 'Skift email',
- 'change-email-help' => 'Du bliver nødt til at bekræfte din konto igen, når du har ændret din e-mail',
- 'change-password' => 'Skift adgangskode',
- 'change-password-help' => 'Du bliver nødt til at logge ind igen, når du har ændret din adgangskode',
- 'client-ip-address' => 'Klient IP Address',
- 'code' => 'Kode',
- 'comments' => 'Kommentarer',
- 'created' => 'Oprette',
- 'created-on' => 'Oprettet den',
- 'credited-download' => 'Krediteret Download',
- 'credited-upload' => 'Krediteret Upload',
- 'current-password' => 'Nuværende adgangskode',
- 'custom-title' => 'Tilpasset titel',
- 'deactivate' => 'Deaktiver',
- 'deactivate-all' => 'Deaktiver alt',
- 'delete' => 'Slet bruger',
- 'delete-all' => 'Slet alt',
- 'deleted-by' => 'Slettet af',
- 'deleted-on' => 'Slettet den',
- 'disable-notifications' => 'Deaktiver Notifikationer',
- 'disclaimer' => 'Ansvarsfraskrivelse',
- 'disclaimer-info' => 'Vi logger som standard ikke brugernes IP-adresser som de fleste andre trackere. Ved at tilføje din seedbox-IP nedenfor forventes det, at du ved, at dine IPer nedenfor er gemt i vores database, medmindre du sletter posterne.',
- 'disclaimer-info-bordered' => 'Seedbox-IPer tilføjet vil derefter udløse højhastigheds torrent-tag på torrents, der er seedet fra IPer, der er anført nedenfor',
- 'download-bon' => 'Download fjernet via BON butik',
- 'download-recorded' => 'Registreret Download',
- 'download-true' => 'Reel Download',
- 'downloads' => 'Downloads',
- 'edit' => 'Rediger bruger',
- 'edit-profile' => 'Rediger profil',
- 'enable-notifications' => 'Aktivér notifikationer',
- 'expired' => 'Udløbet',
- 'expires-on' => 'Udløbet den',
- 'extra' => 'Ekstra',
- 'filled-request' => 'Opfyldte requests',
- 'follow' => 'Følg',
- 'follower-privacy' => 'Følgerindstillinger',
- 'follower-privacy-list' => 'Tillad brugere at se en liste over dine følgere',
- 'follower-help' => 'Styr deling af specifikke følgerrelaterede oplysninger med grupper, der har adgang til din profil. Disse indstillinger tilsidesættes, hvis du ikke giver nogen grupper adgang til dine tilhængere, eller hvis duGår Privat',
- 'followers' => 'Følgere',
- 'following-notification' => 'Fulgte brugerindstillinger',
- 'following-notification-upload' => 'Modtag en notifikation, når en fulgt bruger uploader en torrent',
- 'following-notification-help' => 'Kontroller, hvilke notifikationer der sendes vedrørende fulgte brugers handlinger her på webstedet. Disse indstillinger tilsidesættes, hvis du ikke tillader nogen grupper at sende meddelelser om fulgte brugere eller hvis du Deaktiverer Notifikationer',
- 'formats-are-supported' => ':formats er understøttet',
- 'forum-notification' => 'Forum notifikationsindstillinger',
- 'forum-notification-topic' => 'Modtag en notifikation, når et emne du har oprettet modtager et nyt indlæg',
- 'forum-notification-help' => 'Kontroller, hvilke notifikationer der sendes vedrørende forumaktiviteter. Disse indstillinger tilsidesættes, hvis du ikke tillader nogen grupper at sende notifikationer om forumaktiviteter, eller hvis du Deaktiverer Notifikationer',
- 'forum-privacy' => 'Forumindstillinger',
- 'forum-privacy-post' => 'Tillad brugere at se en liste over forumindlæg, som du har sendt',
- 'forum-privacy-topic' => 'Tillad brugere at se en liste over forumemner, som du har oprettet',
- 'forum-help' => 'Styr deling af specifikke forumrelaterede statistikker og oplysninger med grupper, der har adgang til din profil. Disse indstillinger tilsidesættes, hvis du ikke giver nogen grupper adgang til dine forumrelaterede statistikker og oplysninger, eller hvis du Går Privat',
- 'forum-signature' => 'Forumsignatur',
- 'forums' => 'Fora',
- 'general' => 'Generel',
- 'general-settings' => 'Generalle indstillinger',
- 'gift-given' => 'Gaver givet',
- 'gift-received' => 'Gaver modtaget',
- 'go-public' => 'Gå Offentlig',
- 'go-private' => 'Gå Privat',
- 'history' => 'Historik',
- 'history-table' => 'Min historik tabel',
- 'hit-n-runs' => 'Hit and Runs',
- 'hit-n-runs-count' => 'Hit and Run antal (Ialt)',
- 'hit-n-runs-history' => 'Torrent Hit and Runs historik',
- 'id-permissions' => 'ID & Tilladelser',
- 'image' => 'Billede',
- 'important' => 'Vigtigt',
- 'important-info' => 'Vigtig Info',
- 'information' => 'Information',
- 'invited-by' => 'Inviteret af',
- 'invite-friend' => 'Inviter din ven (Email + Besked krævet)',
- 'invite-tree' => 'Invitationstræ',
- 'invites' => 'Invitationer',
- 'invites-banned' => 'Fejl: Dine invitationsrettigheder er blevet deaktiveret',
- 'invites-banned-desc' => 'Hvis du føler, at dette er en fejl, bedes du kontakte staff!',
- 'invites-count' => 'Du har :count invitation/er',
- 'invites-disabled' => 'OBS: Invitationer er deaktiveret på grund af åben registrering!',
- 'invites-disabled-desc' => 'Kom snart igen!',
- 'invites-rules' => '- Inviter kun folk, du kender og stoler på.
- Du vil blive holdt personligt ansvarlig for dem, du inviterer.
- Inviter ikke dig selv, vi tjekker alle inviterede brugere.
- Du må ikke forhandle eller sælge invitationer.
- Hvis en person, du har inviteret, bliver fanget i snyd, handle med konti eller sælger/forhandler invitationer, vil du blive advaret med stor risiko for udelukkelse.
',
- 'invites-send' => 'Invitationer afsendt',
- 'judge' => 'Dom',
- 'last-login' => 'Sidste login',
- 'locked' => 'Låst',
- 'locked-achievements' => 'Låste Præstationer',
- 'member-since' => 'Medlem siden',
- 'members-desc' => 'Liste over brugere registreret på :title i alle grupper. Find en bruger nu.',
- 'mention-notification' => '@Nævn notifikationsindstillinger',
- 'mention-notification-article-comment' => 'Modtag en notifikation, når du er @nævnt i en artikel-kommentar',
- 'mention-notification-torrent-comment' => 'Modtag en notifikation, når du er @nævnt i en torrent-kommentar',
- 'mention-notification-request-comment' => 'Modtag en notifikation, når du er @nævnt i en request-kommentar',
- 'mention-notification-forum-post' => 'Modtag en notifikation, når du er @nævnt i et forumindlæg',
- 'mention-notification-help' => 'Kontroller, hvilke meddelelser der sendes, når en bruger @nævnver dig. Disse indstillinger tilsidesættes, hvis du ikke tillader nogen grupper at sende notifikationer, hvis en bruger @nævner dig, eller hvis du Deaktiverer Notifikationer',
- 'moderated-by' => 'Modereret af :mod den',
- 'my-bonus-points' => 'Mine bonus points',
- 'my-bookmarks' => 'Mine bogmærker',
- 'my-fl-tokens' => 'Mine FL tokens',
- 'my-general-settings' => 'Mine generelle indstillinger',
- 'my-notification' => 'Mine notifikationer',
- 'my-notification-settings' => 'Mine notifikationsindstillinger',
- 'my-privacy' => 'Mit privatliv',
- 'my-privacy-settings' => 'Mine privatlivsindstillinger',
- 'my-profile' => 'Min profil',
- 'my-requested' => 'Mine requests',
- 'my-security' => 'Min sikkerhed',
- 'my-security-settings' => 'Mine sikkerhedsindstillinger',
- 'my-seedboxes' => 'Mine Seedbokse',
- 'my-settings' => 'Mine indstillinger',
- 'my-uploads' => 'Mine uploads',
- 'my-wishlist' => 'Min ønskeliste',
- 'no-ban' => 'Der er ingen udelukkelseslogfiler i databasen for denne bruger!',
- 'no-logs' => 'Der er ingen invitationslogfiler i databasen for denne bruger!',
- 'no-seedboxes' => 'Ingen Seedbokse 😔',
- 'no-soft-warning' => 'Der er ingen slettede advarsler i databasen for denne bruger!',
- 'no-warning' => 'Der er ingen advarsler i databasen for denne bruger!',
- 'not-authorized' => 'Du er ikke autoriseret til at se denne side. Dette medlem foretrækker at være skjult som en ninja!',
- 'not-satisfied-not-immune' => 'Ikke tilfredstillet/Ikke immun',
- 'note' => 'Note',
- 'notification' => 'Notifikation',
- 'notification-settings' => 'Notifikationsindstillinger',
- 'notification-from-account' => 'Modtag kontonotifikation fra',
- 'notification-from-account-help' => 'Du modtager kun kontonotifikationer fra systemet, staff og de følgende grupper. Disse indstillinger tilsidesættes, hvis du Deaktiverer Notifikationer',
- 'notification-from-bon' => 'Modtag BON notifikation fra',
- 'notification-from-bon-help' => 'Du modtager kun BON notifikationer fra systemet, staff og de følgende grupper. Disse indstillinger tilsidesættes, hvis du Deaktiverer Notifikationer',
- 'notification-from-following' => 'Modtag fulgt bruger notifikation fra',
- 'notification-from-following-help' => 'Du modtager kun fulgt bruger notifikationer fra følgende grupper. Disse indstillinger tilsidesættes, hvis du Deaktiverer Notifikationer',
- 'notification-from-forum' => 'Modtag forumnotifikationer fra',
- 'notification-from-forum-help' => 'Du modtager kun forumnotifikationer fra systemet, staff og de følgende grupper. Disse indstillinger tilsidesættes, hvis du Deaktiverer Notifikationer',
- 'notification-from-subscription' => 'Modtag abonnement notifikationer fra',
- 'notification-from-subscription-help' => 'Du modtager kun abonnement notifikationer fra systemet, staff og de følgende grupper. Disse indstillinger tilsidesættes, hvis du Deaktiverer Notifikationer',
- 'notification-from-torrent' => 'Modtag torrentnotifikationer fra',
- 'notification-from-torrent-help' => 'Du modtager kun torrentnotifikationer fra systemet, staff og de følgende grupper. Disse indstillinger tilsidesættes, hvis du Deaktiverer Notifikationer',
- 'notification-from-mention' => 'Modtag @nævn notifikationer fra',
- 'notification-from-mention-help' => 'Du modtager kun @nævn notifikationer fra systemet, staff og de følgende grupper. Disse indstillinger tilsidesættes, hvis du Deaktiverer Notifikationer',
- 'notification-from-request' => 'Modtag request notifikationer fra',
- 'notification-from-request-help' => 'Du modtager kun request notifikationer fra systemet, staff og de følgende grupper. Disse indstillinger tilsidesættes, hvis du Deaktiverer Notifikationer',
- 'notifications' => 'Notifikationer',
- 'offline' => 'Bruger er Offline!',
- 'online' => 'Bruger er Online!',
- 'open-registration' => 'Open Registration',
- 'options' => 'Muligheder',
- 'other-help' => 'Kontroller deling af andre statistikker og oplysninger med grupper, der har adgang til din profil. Disse indstillinger tilsidesættes, hvis du ikke giver nogen grupper adgang til dine andre statistikker og oplysninger, eller hvis du Går Privat',
- 'other-privacy' => 'Andre indstillinger',
- 'other-privacy-online' => 'Tillad brugere at se dig i boksen af onlinebrugere',
- 'passkey' => 'PID',
- 'passkey-warning' => 'PID er som dit kodeord, du skal holde det sikkert!',
- 'pending-achievements' => 'Afventende præstationer',
- 'per-torrent' => 'Pr. Torrent',
- 'posts' => 'Indlæg',
- 'posts-posted' => 'Forumindlæg skrevet',
- 'privacy' => 'Privatliv',
- 'privacy-settings' => 'Privatlivsindstillinger',
- 'private-info' => 'Privat Info',
- 'private-forum-profile' => 'OBS: Dette medlems emne og indlægshistorie er indstillet til PRIVAT!',
- 'private-profile' => 'OBS: Denne profil er sat til PRIVAT!',
- 'profile' => 'Profil',
- 'profile-desc' => ':user profil er registeret den :title',
- 'profile-privacy' => 'Profilindstillinger',
- 'profile-privacy-torrent-count' => 'Del dit samlede antal downloads, uploads, seeds og leech',
- 'profile-privacy-torrent-ratio' => 'Del dit samlede antal upload/download data sammen med registrert ratio',
- 'profile-privacy-torrent-seed' => 'Del din samlede seeding tid og gennemsnit',
- 'profile-privacy-title' => 'Del din personlige titel',
- 'profile-privacy-about' => 'Del din personlige om mig information',
- 'profile-privacy-bon-extra' => 'Del dine BON stats',
- 'profile-privacy-comment-extra' => 'Del dine kommentar stats',
- 'profile-privacy-forum-extra' => 'Del dine forum stats',
- 'profile-privacy-request-extra' => 'Del dine request stats',
- 'profile-privacy-torrent-extra' => 'Del dine torrent stats',
- 'profile-privacy-badge' => 'Del dine optjente udmærkelser',
- 'profile-privacy-achievement' => 'Del dine seneste præstationer',
- 'profile-privacy-follower' => 'Del dine seneste følgere',
- 'profile-privacy-warning' => 'Del dine H&R advarsler',
- 'profile-privacy-help' => 'Kontroller, hvilke statistikker og informationer der vises på din profil. Disse indstillinger tilsidesættes, hvis du ikke giver nogen grupper adgang til din profil, eller hvis du Går Privat',
- 'public-info' => 'Offentlig Info',
- 'reason-ban' => 'Udelukkelsesårsag',
- 'reason-unban' => 'Udelukkelse fjernet årsag',
- 'recent-achievements' => 'Præstationer',
- 'recent-followers' => 'Følgere',
- 'registration-date' => 'Registreringsdato',
- 'removed' => 'Fjernet',
- 'report' => 'Anmeld',
- 'request-help' => 'Kontroller deling af specifikke request relaterede statistikker og oplysninger med grupper, der har adgang til din profil. Disse indstillinger tilsidesættes, hvis du ikke tillader nogen grupper at få adgang til dine anmodede relaterede statistikker og oplysninger, eller hvis du Går Privat',
- 'request' => 'Request',
- 'requested' => 'Requestet',
- 'requests' => 'Requests',
- 'request-comments' => 'Request-kommentarer lavet',
- 'request-notification' => 'Request notifikationsindstillinger',
- 'request-notification-bounty' => 'Modtag en notifikation, når en requestet torrent får en ny dusør',
- 'request-notification-comment' => 'Modtag en notifikation, når en requestet torrent får en ny kommentar',
- 'request-notification-fill' => 'Modtag en notifikation, når en requestet torrent bliver opfyldt',
- 'request-notification-fill-approve' => 'Modtag en notifikation, når en requestet torrent der er opfyldt bliver godkendt',
- 'request-notification-fill-reject' => 'Modtag en notifikation, når en requestet torrent der er opfyldt bliver afvist',
- 'request-notification-claim' => 'Modtag en notifikation, når en requestet torrent bliver opkrævet',
- 'request-notification-unclaim' => 'Modtag en notifikation, når en requestet torrent bliver uopkrævet',
- 'request-notification-help' => 'Kontroller, hvilke notifikationer der sendes vedrørende anmodningsaktiviteter. Disse indstillinger tilsidesættes, hvis du ikke tillader nogen grupper at sende notifikationer om requestaktiviteter, eller hvis du Deaktiverer Notifikationer',
- 'request-privacy' => 'Requestindstillinger',
- 'request-privacy-requested' => 'Tillad brugere at se en liste over requests som du har lavet',
- 'reset-api-token' => 'Nulstil API Token',
- 'reset-api-help' => 'Du bliver nødt til at opdatere de scripts eller applikationer, du bruger med dit nye token, efter at du har nulstillet API-token',
- 'reset-passkey' => 'Nulstil Pass Key (PID)',
- 'reset-passkey-help' => 'Du bliver nødt til at downloade/re-uploade alle dine aktive torrents, efter at du har nulstillet PID',
- 'reset-rss' => 'Nulstil RSS Key (RID)',
- 'reset-rss-help' => 'Du bliver nødt til at indlæse alle dine aktive RSS-feeds igen, efter at du har nulstillet RID',
- 'resurrections' => 'Genoplivninger',
- 'restore' => 'Gendan',
- 'satisfied-immune' => 'Tilfredstillende/Immun',
- 'search' => 'Hurtigsøgning via brugernavn/email',
- 'security' => 'Sikkerhed',
- 'security-settings' => 'Sikkerhedsindstillinger',
- 'seedboxes' => 'Seedbokse',
- 'seeding-size' => 'Seed størrelse',
- 'seeds' => 'Seeds',
- 'send-invite' => 'Send invitation',
- 'sender' => 'Afsender',
- 'settings' => 'Indstillinger',
- 'show-passkey' => 'Vis PID',
- 'soft-deleted-warnings' => 'Slettede advarsler',
- 'staff-noted' => 'Staff noteret konto',
- 'statistics' => 'Statistik',
- 'subscription-notification' => 'Abonnement notifkationsindstillinger',
- 'subscription-notification-forum' => 'Modtag en notifikation når abonneret forum får et nyt emne',
- 'subscription-notification-topic' => 'Modtag en notifikation når abonneret emne får et nyt indlæg',
- 'subscription-notification-help' => 'Kontroller, hvilke notifdikationer der sendes vedrørende dine abonnementer. Disse indstillinger tilsidesættes, hvis du ikke tillader nogen grupper at sende notifikationer om dine abonnementer, eller hvis du Deaktiverer Notifikationer',
- 'thanks-given' => 'Tak givet',
- 'thanks-received' => 'Tak modtaget',
- 'tips-given' => 'Belønning givet',
- 'tips-received' => 'Belønning modtaget',
- 'title' => 'Titel',
- 'top-bankers' => 'Top Banker',
- 'top-downloaders-data' => 'Top Downloaders (Data)',
- 'top-leechers' => 'Top Leechers',
- 'top-leechers-count' => 'Top Leechers (Antal)',
- 'top-seeders' => 'Top Seeders',
- 'top-seeders-count' => 'Top Seeders (Antal)',
- 'top-seeding-size' => 'Top Seeding (Størrelse)',
- 'top-seedtime' => 'Top Seedtime',
- 'top-uploaders-data' => 'Top Uploaders (Data)',
- 'top-uploaders-count' => 'Top Uploaders (Antal)',
- 'topics' => 'Emner',
- 'topics-started' => 'Forumemner oprettet',
- 'torrent-comments' => 'Torrent-kommentarer lavet',
- 'torrent-help' => 'Styr deling af specifikke torrentrelaterede statistikker og oplysninger med grupper, der har adgang til din profil. Disse indstillinger tilsidesættes, hvis du ikke tillader nogen grupper at få adgang til dine torrentrelaterede statistikker og oplysninger, eller hvis du Går Privat',
- 'torrent-notification' => 'Torrent notifikationsindstillinger',
- 'torrent-notification-comment' => 'Modtag en notifikation når en uploadet torrent får en ny kommentar',
- 'torrent-notification-thank' => 'Modtag en notifikation når en uploadet torrent får en ny tak',
- 'torrent-notification-tip' => 'Modtag en notifikation når en uploadet torrent får en ny belønning',
- 'torrent-notification-help' => 'Kontroller, hvilke meddelelser der sendes vedrørende torrentaktiviteter. Disse indstillinger tilsidesættes, hvis du ikke tillader nogen grupper at sende underretninger om torrentaktiviteter, eller hvis du Deaktiverer Notifikationer',
- 'torrent-privacy' => 'Torrentindstillinger',
- 'torrent-privacy-download' => 'Tillad brugere at se en liste over torrents du har downloadet',
- 'torrent-privacy-upload' => 'Tillad brugere at se en liste over torrents du hare uploadet',
- 'torrent-privacy-peer' => 'Tillad brugere at se dig i torrent peer historik tabellen',
- 'torrents' => 'Torrents',
- 'torrents-history' => 'Torrents historik',
- 'total-download' => 'Total Download',
- 'total-downloads' => 'Total Downloads',
- 'total-leeching' => 'Total Leeching',
- 'total-seeding' => 'Total Seeding',
- 'total-seedtime' => 'Total Seedtid',
- 'total-upload' => 'Total Upload',
- 'total-uploads' => 'Total Uploads',
- 'unban' => 'Udeluk ikke bruger',
- 'unfollow' => 'Fjern følgeskab',
- 'unlocked' => 'Ulåst',
- 'unlocked-achievements' => 'Ulåste præstationer',
- 'unsatisfieds' => 'Ikke tilfredstillende',
- 'upload-bon' => 'Upload tilføjet via BON butik',
- 'upload-recorded' => 'Registret Upload',
- 'upload-true' => 'Sand Upload',
- 'uploads' => 'Uploads',
- 'uploads-table' => 'Uploads Tabel',
- 'user' => 'Bruger',
- 'user-id' => 'Bruger ID',
- 'username-seedbox' => 'Brugernavn Seedboks',
- 'visible-to-achievement' => 'Præstationer synlige for',
- 'visible-to-achievement-help' => 'Dine præstationer vil kun være synlige for staff og de følgende grupper. Disse indstillinger tilsidesættes, hvis du Går Privat',
- 'visible-to-follower' => 'Følgere synlig for',
- 'visible-to-follower-help' => 'Dine følgere vil kun være synlige for staff og de følgende grupper. Disse indstillinger tilsidesættes, hvis du Går Privat',
- 'visible-to-forum' => 'Foruminformation synlig for',
- 'visible-to-forum-help' => 'Din foruminformation vil kun være synlige for staff og de følgende grupper. Disse indstillinger tilsidesættes, hvis du Går Privat',
- 'visible-to-other' => 'Andet information synlig for',
- 'visible-to-other-help' => 'Andet information vedrørende din konto vil kun være synlige for staff og de følgende grupper. Disse indstillinger tilsidesættes, hvis du Går Privat eller hvis du Går Skjult',
- 'visible-to-profile' => 'Profil synlig for',
- 'visible-to-profile-help' => 'Din profil vil kun være synlige for staff og de følgende grupper. Disse indstillinger tilsidesættes, hvis du Går Privat',
- 'visible-to-request' => 'Request information synlig for',
- 'visible-to-request-help' => 'Din request information vil kun være synlige for staff og de følgende grupper. Disse indstillinger tilsidesættes, hvis du Går Privat',
- 'visible-to-torrent' => 'Torrent information synlig for',
- 'visible-to-torrent-help' => 'Din torrent information vil kun være synlige for staff og de følgende grupper. Disse indstillinger tilsidesættes, hvis du Går Privat eller hvis du Går Skjult',
- 'warned-by' => 'Advaret af',
- 'warned-on' => 'Advaret den',
- 'warning' => 'Advarsel',
- 'warnings' => 'Advarsler',
- 'warning-log' => 'Advarsels Log',
- 'wishlist' => 'Ønskeliste',
+ 'about' => 'Om',
+ 'about-me' => 'Om mig',
+ 'accepted-at' => 'Accepteret den',
+ 'accepted-by' => 'Accepteret af',
+ 'account-notification' => 'Konto Notifikationsindstillinger',
+ 'account-notification-follow' => 'Modtag en notifikation, når en bruger følger din konto',
+ 'account-notification-unfollow' => 'Modtag en notifikation, når en bruger ikke længere følger din konto',
+ 'account-notification-help' => 'Kontroller, hvilke notifikationer der sendes vedrørende din konto. Disse indstillinger tilsidesættes, hvis du ikke tillader nogen grupper at sende notifikationer om din konto, eller hvis du Deaktiverer Notifikationer',
+ 'account-settings' => 'Kontoindstillinger',
+ 'achievement-privacy' => 'Præstationsindstillinger',
+ 'achievement-privacy-list' => 'Tillad brugere at se en liste over dine præstationer',
+ 'achievement-help' => 'Styr deling af specifikke præstationsrelaterede oplysninger med grupper, der har adgang til din profil. Disse indstillinger tilsidesættes, hvis du ikke giver nogen grupper adgang til dine præstationer, eller hvis du Går Privat',
+ 'achievements' => 'Præstationer',
+ 'active' => 'Aktive',
+ 'active-table' => 'Mine Aktive Tabel',
+ 'active-torrents' => 'Aktive Torrents',
+ 'active-warning' => 'Aktiv Advarsel',
+ 'active-warnings' => 'AKtive Advarsler',
+ 'add-seedbox' => 'Tilføj Seedbox',
+ 'all-torrents' => 'Alle Torrents',
+ 'article-comments' => 'Nyheds-kommentarer lavet',
+ 'avatar' => 'Avatar',
+ 'avg-seedtime' => 'Gennemsnitlig Seedtid',
+ 'badges' => 'Udmærkelser',
+ 'ban' => 'Udeluk Bruger',
+ 'bans' => 'Udelukkelser',
+ 'ban-log' => 'Udelukkelses Log',
+ 'become-hidden' => 'Bliv skjult',
+ 'become-visible' => 'Bliv synlig',
+ 'bon' => 'BON',
+ 'bon-notification' => 'BON Notifikationsindstillinger',
+ 'bon-notification-gift' => 'Modtag en notifikation, når en bruger giver dig bon',
+ 'bon-notification-help' => 'Kontroller, hvilke notifikationer der sendes vedrørende BON transaktioner. Disse indstillinger tilsidesættes, hvis du ikke tillader nogen grupper at sende notifikationer om BON eller hvis du Deaktiverer Notifikationer',
+ 'bookmarks' => 'Bogmærker',
+ 'bounty-given' => 'Dusør Givet',
+ 'bounty-received' => 'Dusør Modtaget',
+ 'can-chat' => 'Kan Chatte',
+ 'can-comment' => 'Kan Kommentere',
+ 'can-download' => 'Kan Downloade',
+ 'can-invite' => 'Kan Invitere',
+ 'can-request' => 'Kan Requeste',
+ 'can-upload' => 'Kan Uploade',
+ 'certified-banker' => 'Certificeret Bank',
+ 'certified-banker-desc' => 'Har 50,000 BON eller mere i banken',
+ 'certified-downloader' => 'Certificeret Downloader',
+ 'certified-downloader-desc' => 'Har downloaded 100 eller flere torrents!',
+ 'certified-seeder' => 'Certificeret Seeder',
+ 'certified-seeder-desc' => 'Seeder 150 eller flere torrents!',
+ 'change-email' => 'Skift email',
+ 'change-email-help' => 'Du bliver nødt til at bekræfte din konto igen, når du har ændret din e-mail',
+ 'change-password' => 'Skift adgangskode',
+ 'change-password-help' => 'Du bliver nødt til at logge ind igen, når du har ændret din adgangskode',
+ 'client-ip-address' => 'Klient IP Address',
+ 'code' => 'Kode',
+ 'comments' => 'Kommentarer',
+ 'created' => 'Oprette',
+ 'created-on' => 'Oprettet den',
+ 'credited-download' => 'Krediteret Download',
+ 'credited-upload' => 'Krediteret Upload',
+ 'current-password' => 'Nuværende adgangskode',
+ 'custom-title' => 'Tilpasset titel',
+ 'deactivate' => 'Deaktiver',
+ 'deactivate-all' => 'Deaktiver alt',
+ 'delete' => 'Slet bruger',
+ 'delete-all' => 'Slet alt',
+ 'deleted-by' => 'Slettet af',
+ 'deleted-on' => 'Slettet den',
+ 'disable-notifications' => 'Deaktiver Notifikationer',
+ 'disclaimer' => 'Ansvarsfraskrivelse',
+ 'disclaimer-info' => 'Vi logger som standard ikke brugernes IP-adresser som de fleste andre trackere. Ved at tilføje din seedbox-IP nedenfor forventes det, at du ved, at dine IPer nedenfor er gemt i vores database, medmindre du sletter posterne.',
+ 'disclaimer-info-bordered' => 'Seedbox-IPer tilføjet vil derefter udløse højhastigheds torrent-tag på torrents, der er seedet fra IPer, der er anført nedenfor',
+ 'download-bon' => 'Download fjernet via BON butik',
+ 'download-recorded' => 'Registreret Download',
+ 'download-true' => 'Reel Download',
+ 'downloads' => 'Downloads',
+ 'edit' => 'Rediger bruger',
+ 'edit-profile' => 'Rediger profil',
+ 'enable-notifications' => 'Aktivér notifikationer',
+ 'expired' => 'Udløbet',
+ 'expires-on' => 'Udløbet den',
+ 'extra' => 'Ekstra',
+ 'filled-request' => 'Opfyldte requests',
+ 'follow' => 'Følg',
+ 'follower-privacy' => 'Følgerindstillinger',
+ 'follower-privacy-list' => 'Tillad brugere at se en liste over dine følgere',
+ 'follower-help' => 'Styr deling af specifikke følgerrelaterede oplysninger med grupper, der har adgang til din profil. Disse indstillinger tilsidesættes, hvis du ikke giver nogen grupper adgang til dine tilhængere, eller hvis duGår Privat',
+ 'followers' => 'Følgere',
+ 'following-notification' => 'Fulgte brugerindstillinger',
+ 'following-notification-upload' => 'Modtag en notifikation, når en fulgt bruger uploader en torrent',
+ 'following-notification-help' => 'Kontroller, hvilke notifikationer der sendes vedrørende fulgte brugers handlinger her på webstedet. Disse indstillinger tilsidesættes, hvis du ikke tillader nogen grupper at sende meddelelser om fulgte brugere eller hvis du Deaktiverer Notifikationer',
+ 'formats-are-supported' => ':formats er understøttet',
+ 'forum-notification' => 'Forum notifikationsindstillinger',
+ 'forum-notification-topic' => 'Modtag en notifikation, når et emne du har oprettet modtager et nyt indlæg',
+ 'forum-notification-help' => 'Kontroller, hvilke notifikationer der sendes vedrørende forumaktiviteter. Disse indstillinger tilsidesættes, hvis du ikke tillader nogen grupper at sende notifikationer om forumaktiviteter, eller hvis du Deaktiverer Notifikationer',
+ 'forum-privacy' => 'Forumindstillinger',
+ 'forum-privacy-post' => 'Tillad brugere at se en liste over forumindlæg, som du har sendt',
+ 'forum-privacy-topic' => 'Tillad brugere at se en liste over forumemner, som du har oprettet',
+ 'forum-help' => 'Styr deling af specifikke forumrelaterede statistikker og oplysninger med grupper, der har adgang til din profil. Disse indstillinger tilsidesættes, hvis du ikke giver nogen grupper adgang til dine forumrelaterede statistikker og oplysninger, eller hvis du Går Privat',
+ 'forum-signature' => 'Forumsignatur',
+ 'forums' => 'Fora',
+ 'general' => 'Generel',
+ 'general-settings' => 'Generalle indstillinger',
+ 'gift-given' => 'Gaver givet',
+ 'gift-received' => 'Gaver modtaget',
+ 'go-public' => 'Gå Offentlig',
+ 'go-private' => 'Gå Privat',
+ 'history' => 'Historik',
+ 'history-table' => 'Min historik tabel',
+ 'hit-n-runs' => 'Hit and Runs',
+ 'hit-n-runs-count' => 'Hit and Run antal (Ialt)',
+ 'hit-n-runs-history' => 'Torrent Hit and Runs historik',
+ 'id-permissions' => 'ID & Tilladelser',
+ 'image' => 'Billede',
+ 'important' => 'Vigtigt',
+ 'important-info' => 'Vigtig Info',
+ 'information' => 'Information',
+ 'invited-by' => 'Inviteret af',
+ 'invite-friend' => 'Inviter din ven (Email + Besked krævet)',
+ 'invite-tree' => 'Invitationstræ',
+ 'invites' => 'Invitationer',
+ 'invites-banned' => 'Fejl: Dine invitationsrettigheder er blevet deaktiveret',
+ 'invites-banned-desc' => 'Hvis du føler, at dette er en fejl, bedes du kontakte staff!',
+ 'invites-count' => 'Du har :count invitation/er',
+ 'invites-disabled' => 'OBS: Invitationer er deaktiveret på grund af åben registrering!',
+ 'invites-disabled-desc' => 'Kom snart igen!',
+ 'invites-rules' => '- Inviter kun folk, du kender og stoler på.
- Du vil blive holdt personligt ansvarlig for dem, du inviterer.
- Inviter ikke dig selv, vi tjekker alle inviterede brugere.
- Du må ikke forhandle eller sælge invitationer.
- Hvis en person, du har inviteret, bliver fanget i snyd, handle med konti eller sælger/forhandler invitationer, vil du blive advaret med stor risiko for udelukkelse.
',
+ 'invites-send' => 'Invitationer afsendt',
+ 'judge' => 'Dom',
+ 'last-login' => 'Sidste login',
+ 'locked' => 'Låst',
+ 'locked-achievements' => 'Låste Præstationer',
+ 'member-since' => 'Medlem siden',
+ 'members-desc' => 'Liste over brugere registreret på :title i alle grupper. Find en bruger nu.',
+ 'mention-notification' => '@Nævn notifikationsindstillinger',
+ 'mention-notification-article-comment' => 'Modtag en notifikation, når du er @nævnt i en artikel-kommentar',
+ 'mention-notification-torrent-comment' => 'Modtag en notifikation, når du er @nævnt i en torrent-kommentar',
+ 'mention-notification-request-comment' => 'Modtag en notifikation, når du er @nævnt i en request-kommentar',
+ 'mention-notification-forum-post' => 'Modtag en notifikation, når du er @nævnt i et forumindlæg',
+ 'mention-notification-help' => 'Kontroller, hvilke meddelelser der sendes, når en bruger @nævnver dig. Disse indstillinger tilsidesættes, hvis du ikke tillader nogen grupper at sende notifikationer, hvis en bruger @nævner dig, eller hvis du Deaktiverer Notifikationer',
+ 'moderated-by' => 'Modereret af :mod den',
+ 'my-bonus-points' => 'Mine bonus points',
+ 'my-bookmarks' => 'Mine bogmærker',
+ 'my-fl-tokens' => 'Mine FL tokens',
+ 'my-general-settings' => 'Mine generelle indstillinger',
+ 'my-notification' => 'Mine notifikationer',
+ 'my-notification-settings' => 'Mine notifikationsindstillinger',
+ 'my-privacy' => 'Mit privatliv',
+ 'my-privacy-settings' => 'Mine privatlivsindstillinger',
+ 'my-profile' => 'Min profil',
+ 'my-requested' => 'Mine requests',
+ 'my-security' => 'Min sikkerhed',
+ 'my-security-settings' => 'Mine sikkerhedsindstillinger',
+ 'my-seedboxes' => 'Mine Seedbokse',
+ 'my-settings' => 'Mine indstillinger',
+ 'my-uploads' => 'Mine uploads',
+ 'my-wishlist' => 'Min ønskeliste',
+ 'no-ban' => 'Der er ingen udelukkelseslogfiler i databasen for denne bruger!',
+ 'no-logs' => 'Der er ingen invitationslogfiler i databasen for denne bruger!',
+ 'no-seedboxes' => 'Ingen Seedbokse 😔',
+ 'no-soft-warning' => 'Der er ingen slettede advarsler i databasen for denne bruger!',
+ 'no-warning' => 'Der er ingen advarsler i databasen for denne bruger!',
+ 'not-authorized' => 'Du er ikke autoriseret til at se denne side. Dette medlem foretrækker at være skjult som en ninja!',
+ 'not-satisfied-not-immune' => 'Ikke tilfredstillet/Ikke immun',
+ 'note' => 'Note',
+ 'notification' => 'Notifikation',
+ 'notification-settings' => 'Notifikationsindstillinger',
+ 'notification-from-account' => 'Modtag kontonotifikation fra',
+ 'notification-from-account-help' => 'Du modtager kun kontonotifikationer fra systemet, staff og de følgende grupper. Disse indstillinger tilsidesættes, hvis du Deaktiverer Notifikationer',
+ 'notification-from-bon' => 'Modtag BON notifikation fra',
+ 'notification-from-bon-help' => 'Du modtager kun BON notifikationer fra systemet, staff og de følgende grupper. Disse indstillinger tilsidesættes, hvis du Deaktiverer Notifikationer',
+ 'notification-from-following' => 'Modtag fulgt bruger notifikation fra',
+ 'notification-from-following-help' => 'Du modtager kun fulgt bruger notifikationer fra følgende grupper. Disse indstillinger tilsidesættes, hvis du Deaktiverer Notifikationer',
+ 'notification-from-forum' => 'Modtag forumnotifikationer fra',
+ 'notification-from-forum-help' => 'Du modtager kun forumnotifikationer fra systemet, staff og de følgende grupper. Disse indstillinger tilsidesættes, hvis du Deaktiverer Notifikationer',
+ 'notification-from-subscription' => 'Modtag abonnement notifikationer fra',
+ 'notification-from-subscription-help' => 'Du modtager kun abonnement notifikationer fra systemet, staff og de følgende grupper. Disse indstillinger tilsidesættes, hvis du Deaktiverer Notifikationer',
+ 'notification-from-torrent' => 'Modtag torrentnotifikationer fra',
+ 'notification-from-torrent-help' => 'Du modtager kun torrentnotifikationer fra systemet, staff og de følgende grupper. Disse indstillinger tilsidesættes, hvis du Deaktiverer Notifikationer',
+ 'notification-from-mention' => 'Modtag @nævn notifikationer fra',
+ 'notification-from-mention-help' => 'Du modtager kun @nævn notifikationer fra systemet, staff og de følgende grupper. Disse indstillinger tilsidesættes, hvis du Deaktiverer Notifikationer',
+ 'notification-from-request' => 'Modtag request notifikationer fra',
+ 'notification-from-request-help' => 'Du modtager kun request notifikationer fra systemet, staff og de følgende grupper. Disse indstillinger tilsidesættes, hvis du Deaktiverer Notifikationer',
+ 'notifications' => 'Notifikationer',
+ 'offline' => 'Bruger er Offline!',
+ 'online' => 'Bruger er Online!',
+ 'open-registration' => 'Open Registration',
+ 'options' => 'Muligheder',
+ 'other-help' => 'Kontroller deling af andre statistikker og oplysninger med grupper, der har adgang til din profil. Disse indstillinger tilsidesættes, hvis du ikke giver nogen grupper adgang til dine andre statistikker og oplysninger, eller hvis du Går Privat',
+ 'other-privacy' => 'Andre indstillinger',
+ 'other-privacy-online' => 'Tillad brugere at se dig i boksen af onlinebrugere',
+ 'passkey' => 'PID',
+ 'passkey-warning' => 'PID er som dit kodeord, du skal holde det sikkert!',
+ 'pending-achievements' => 'Afventende præstationer',
+ 'per-torrent' => 'Pr. Torrent',
+ 'posts' => 'Indlæg',
+ 'posts-posted' => 'Forumindlæg skrevet',
+ 'privacy' => 'Privatliv',
+ 'privacy-settings' => 'Privatlivsindstillinger',
+ 'private-info' => 'Privat Info',
+ 'private-forum-profile' => 'OBS: Dette medlems emne og indlægshistorie er indstillet til PRIVAT!',
+ 'private-profile' => 'OBS: Denne profil er sat til PRIVAT!',
+ 'profile' => 'Profil',
+ 'profile-desc' => ':user profil er registeret den :title',
+ 'profile-privacy' => 'Profilindstillinger',
+ 'profile-privacy-torrent-count' => 'Del dit samlede antal downloads, uploads, seeds og leech',
+ 'profile-privacy-torrent-ratio' => 'Del dit samlede antal upload/download data sammen med registrert ratio',
+ 'profile-privacy-torrent-seed' => 'Del din samlede seeding tid og gennemsnit',
+ 'profile-privacy-title' => 'Del din personlige titel',
+ 'profile-privacy-about' => 'Del din personlige om mig information',
+ 'profile-privacy-bon-extra' => 'Del dine BON stats',
+ 'profile-privacy-comment-extra' => 'Del dine kommentar stats',
+ 'profile-privacy-forum-extra' => 'Del dine forum stats',
+ 'profile-privacy-request-extra' => 'Del dine request stats',
+ 'profile-privacy-torrent-extra' => 'Del dine torrent stats',
+ 'profile-privacy-badge' => 'Del dine optjente udmærkelser',
+ 'profile-privacy-achievement' => 'Del dine seneste præstationer',
+ 'profile-privacy-follower' => 'Del dine seneste følgere',
+ 'profile-privacy-warning' => 'Del dine H&R advarsler',
+ 'profile-privacy-help' => 'Kontroller, hvilke statistikker og informationer der vises på din profil. Disse indstillinger tilsidesættes, hvis du ikke giver nogen grupper adgang til din profil, eller hvis du Går Privat',
+ 'public-info' => 'Offentlig Info',
+ 'reason-ban' => 'Udelukkelsesårsag',
+ 'reason-unban' => 'Udelukkelse fjernet årsag',
+ 'recent-achievements' => 'Præstationer',
+ 'recent-followers' => 'Følgere',
+ 'registration-date' => 'Registreringsdato',
+ 'removed' => 'Fjernet',
+ 'report' => 'Anmeld',
+ 'request-help' => 'Kontroller deling af specifikke request relaterede statistikker og oplysninger med grupper, der har adgang til din profil. Disse indstillinger tilsidesættes, hvis du ikke tillader nogen grupper at få adgang til dine anmodede relaterede statistikker og oplysninger, eller hvis du Går Privat',
+ 'request' => 'Request',
+ 'requested' => 'Requestet',
+ 'requests' => 'Requests',
+ 'request-comments' => 'Request-kommentarer lavet',
+ 'request-notification' => 'Request notifikationsindstillinger',
+ 'request-notification-bounty' => 'Modtag en notifikation, når en requestet torrent får en ny dusør',
+ 'request-notification-comment' => 'Modtag en notifikation, når en requestet torrent får en ny kommentar',
+ 'request-notification-fill' => 'Modtag en notifikation, når en requestet torrent bliver opfyldt',
+ 'request-notification-fill-approve' => 'Modtag en notifikation, når en requestet torrent der er opfyldt bliver godkendt',
+ 'request-notification-fill-reject' => 'Modtag en notifikation, når en requestet torrent der er opfyldt bliver afvist',
+ 'request-notification-claim' => 'Modtag en notifikation, når en requestet torrent bliver opkrævet',
+ 'request-notification-unclaim' => 'Modtag en notifikation, når en requestet torrent bliver uopkrævet',
+ 'request-notification-help' => 'Kontroller, hvilke notifikationer der sendes vedrørende anmodningsaktiviteter. Disse indstillinger tilsidesættes, hvis du ikke tillader nogen grupper at sende notifikationer om requestaktiviteter, eller hvis du Deaktiverer Notifikationer',
+ 'request-privacy' => 'Requestindstillinger',
+ 'request-privacy-requested' => 'Tillad brugere at se en liste over requests som du har lavet',
+ 'reset-api-token' => 'Nulstil API Token',
+ 'reset-api-help' => 'Du bliver nødt til at opdatere de scripts eller applikationer, du bruger med dit nye token, efter at du har nulstillet API-token',
+ 'reset-passkey' => 'Nulstil Pass Key (PID)',
+ 'reset-passkey-help' => 'Du bliver nødt til at downloade/re-uploade alle dine aktive torrents, efter at du har nulstillet PID',
+ 'reset-rss' => 'Nulstil RSS Key (RID)',
+ 'reset-rss-help' => 'Du bliver nødt til at indlæse alle dine aktive RSS-feeds igen, efter at du har nulstillet RID',
+ 'resurrections' => 'Genoplivninger',
+ 'restore' => 'Gendan',
+ 'satisfied-immune' => 'Tilfredstillende/Immun',
+ 'search' => 'Hurtigsøgning via brugernavn/email',
+ 'security' => 'Sikkerhed',
+ 'security-settings' => 'Sikkerhedsindstillinger',
+ 'seedboxes' => 'Seedbokse',
+ 'seeding-size' => 'Seed størrelse',
+ 'seeds' => 'Seeds',
+ 'send-invite' => 'Send invitation',
+ 'sender' => 'Afsender',
+ 'settings' => 'Indstillinger',
+ 'show-passkey' => 'Vis PID',
+ 'soft-deleted-warnings' => 'Slettede advarsler',
+ 'staff-noted' => 'Staff noteret konto',
+ 'statistics' => 'Statistik',
+ 'subscription-notification' => 'Abonnement notifkationsindstillinger',
+ 'subscription-notification-forum' => 'Modtag en notifikation når abonneret forum får et nyt emne',
+ 'subscription-notification-topic' => 'Modtag en notifikation når abonneret emne får et nyt indlæg',
+ 'subscription-notification-help' => 'Kontroller, hvilke notifdikationer der sendes vedrørende dine abonnementer. Disse indstillinger tilsidesættes, hvis du ikke tillader nogen grupper at sende notifikationer om dine abonnementer, eller hvis du Deaktiverer Notifikationer',
+ 'thanks-given' => 'Tak givet',
+ 'thanks-received' => 'Tak modtaget',
+ 'tips-given' => 'Belønning givet',
+ 'tips-received' => 'Belønning modtaget',
+ 'title' => 'Titel',
+ 'top-bankers' => 'Top Banker',
+ 'top-downloaders-data' => 'Top Downloaders (Data)',
+ 'top-leechers' => 'Top Leechers',
+ 'top-leechers-count' => 'Top Leechers (Antal)',
+ 'top-seeders' => 'Top Seeders',
+ 'top-seeders-count' => 'Top Seeders (Antal)',
+ 'top-seeding-size' => 'Top Seeding (Størrelse)',
+ 'top-seedtime' => 'Top Seedtime',
+ 'top-uploaders-data' => 'Top Uploaders (Data)',
+ 'top-uploaders-count' => 'Top Uploaders (Antal)',
+ 'topics' => 'Emner',
+ 'topics-started' => 'Forumemner oprettet',
+ 'torrent-comments' => 'Torrent-kommentarer lavet',
+ 'torrent-help' => 'Styr deling af specifikke torrentrelaterede statistikker og oplysninger med grupper, der har adgang til din profil. Disse indstillinger tilsidesættes, hvis du ikke tillader nogen grupper at få adgang til dine torrentrelaterede statistikker og oplysninger, eller hvis du Går Privat',
+ 'torrent-notification' => 'Torrent notifikationsindstillinger',
+ 'torrent-notification-comment' => 'Modtag en notifikation når en uploadet torrent får en ny kommentar',
+ 'torrent-notification-thank' => 'Modtag en notifikation når en uploadet torrent får en ny tak',
+ 'torrent-notification-tip' => 'Modtag en notifikation når en uploadet torrent får en ny belønning',
+ 'torrent-notification-help' => 'Kontroller, hvilke meddelelser der sendes vedrørende torrentaktiviteter. Disse indstillinger tilsidesættes, hvis du ikke tillader nogen grupper at sende underretninger om torrentaktiviteter, eller hvis du Deaktiverer Notifikationer',
+ 'torrent-privacy' => 'Torrentindstillinger',
+ 'torrent-privacy-download' => 'Tillad brugere at se en liste over torrents du har downloadet',
+ 'torrent-privacy-upload' => 'Tillad brugere at se en liste over torrents du hare uploadet',
+ 'torrent-privacy-peer' => 'Tillad brugere at se dig i torrent peer historik tabellen',
+ 'torrents' => 'Torrents',
+ 'torrents-history' => 'Torrents historik',
+ 'total-download' => 'Total Download',
+ 'total-downloads' => 'Total Downloads',
+ 'total-leeching' => 'Total Leeching',
+ 'total-seeding' => 'Total Seeding',
+ 'total-seedtime' => 'Total Seedtid',
+ 'total-upload' => 'Total Upload',
+ 'total-uploads' => 'Total Uploads',
+ 'unban' => 'Udeluk ikke bruger',
+ 'unfollow' => 'Fjern følgeskab',
+ 'unlocked' => 'Ulåst',
+ 'unlocked-achievements' => 'Ulåste præstationer',
+ 'unsatisfieds' => 'Ikke tilfredstillende',
+ 'upload-bon' => 'Upload tilføjet via BON butik',
+ 'upload-recorded' => 'Registret Upload',
+ 'upload-true' => 'Sand Upload',
+ 'uploads' => 'Uploads',
+ 'uploads-table' => 'Uploads Tabel',
+ 'user' => 'Bruger',
+ 'user-id' => 'Bruger ID',
+ 'username-seedbox' => 'Brugernavn Seedboks',
+ 'visible-to-achievement' => 'Præstationer synlige for',
+ 'visible-to-achievement-help' => 'Dine præstationer vil kun være synlige for staff og de følgende grupper. Disse indstillinger tilsidesættes, hvis du Går Privat',
+ 'visible-to-follower' => 'Følgere synlig for',
+ 'visible-to-follower-help' => 'Dine følgere vil kun være synlige for staff og de følgende grupper. Disse indstillinger tilsidesættes, hvis du Går Privat',
+ 'visible-to-forum' => 'Foruminformation synlig for',
+ 'visible-to-forum-help' => 'Din foruminformation vil kun være synlige for staff og de følgende grupper. Disse indstillinger tilsidesættes, hvis du Går Privat',
+ 'visible-to-other' => 'Andet information synlig for',
+ 'visible-to-other-help' => 'Andet information vedrørende din konto vil kun være synlige for staff og de følgende grupper. Disse indstillinger tilsidesættes, hvis du Går Privat eller hvis du Går Skjult',
+ 'visible-to-profile' => 'Profil synlig for',
+ 'visible-to-profile-help' => 'Din profil vil kun være synlige for staff og de følgende grupper. Disse indstillinger tilsidesættes, hvis du Går Privat',
+ 'visible-to-request' => 'Request information synlig for',
+ 'visible-to-request-help' => 'Din request information vil kun være synlige for staff og de følgende grupper. Disse indstillinger tilsidesættes, hvis du Går Privat',
+ 'visible-to-torrent' => 'Torrent information synlig for',
+ 'visible-to-torrent-help' => 'Din torrent information vil kun være synlige for staff og de følgende grupper. Disse indstillinger tilsidesættes, hvis du Går Privat eller hvis du Går Skjult',
+ 'warned-by' => 'Advaret af',
+ 'warned-on' => 'Advaret den',
+ 'warning' => 'Advarsel',
+ 'warnings' => 'Advarsler',
+ 'warning-log' => 'Advarsels Log',
+ 'wishlist' => 'Ønskeliste',
];
diff --git a/lang/da/validation.php b/lang/da/validation.php
index b3f685525..7861a597d 100644
--- a/lang/da/validation.php
+++ b/lang/da/validation.php
@@ -23,108 +23,108 @@ return [
|
*/
- 'accepted' => ':attribute skal accepteres.',
- 'active_url' => ':attribute er ikke en gyldig URL.',
- 'after' => ':attribute skal være en dato efter :date.',
- 'after_or_equal' => ':attribute skal være en dato efter eller lig med :date.',
- 'alpha' => ':attribute må kun bestå af bogstaver.',
- 'alpha_dash' => ':attribute må kun bestå af bogstaver, tal og bindestreger.',
- 'alpha_num' => ':attribute må kun bestå af bogstaver og tal.',
- 'array' => ':attribute skal være et array.',
- 'before' => ':attribute skal være en dato før :date.',
- 'before_or_equal' => ':attribute skal være en dato før eller lig med :date.',
- 'between' => [
+ 'accepted' => ':attribute skal accepteres.',
+ 'active_url' => ':attribute er ikke en gyldig URL.',
+ 'after' => ':attribute skal være en dato efter :date.',
+ 'after_or_equal' => ':attribute skal være en dato efter eller lig med :date.',
+ 'alpha' => ':attribute må kun bestå af bogstaver.',
+ 'alpha_dash' => ':attribute må kun bestå af bogstaver, tal og bindestreger.',
+ 'alpha_num' => ':attribute må kun bestå af bogstaver og tal.',
+ 'array' => ':attribute skal være et array.',
+ 'before' => ':attribute skal være en dato før :date.',
+ 'before_or_equal' => ':attribute skal være en dato før eller lig med :date.',
+ 'between' => [
'numeric' => ':attribute skal være mellem :min - :max.',
- 'file' => ':attribute skal være mellem :min - :max kilobytes.',
- 'string' => ':attribute skal være mellem :min - :max tegn.',
- 'array' => ':attribute skal indeholde mellem :min - :max elementer.',
+ 'file' => ':attribute skal være mellem :min - :max kilobytes.',
+ 'string' => ':attribute skal være mellem :min - :max tegn.',
+ 'array' => ':attribute skal indeholde mellem :min - :max elementer.',
],
- 'boolean' => ':attribute skal være sandt eller falsk',
- 'confirmed' => ':attribute er ikke det samme som bekræftelsesfeltet.',
- 'date' => ':attribute er ikke en gyldig dato.',
- 'date_equals' => 'The :attribute must be a date equal to :date.',
- 'date_format' => ':attribute matcher ikke formatet :format.',
- 'different' => ':attribute og :other skal være forskellige.',
- 'digits' => ':attribute skal have :digits cifre.',
- 'digits_between' => ':attribute skal have mellem :min og :max cifre.',
- 'dimensions' => ':attribute har forkerte billede dimensioner.',
- 'distinct' => ':attribute har en duplikatværdi.',
- 'email' => ':attribute skal være en gyldig e-mailadresse.',
- 'exists' => 'Det valgte :attribute er ugyldig.',
- 'file' => ':attribute skal være en fil.',
- 'filled' => ':attribute skal udfyldes.',
- 'gt' => [
+ 'boolean' => ':attribute skal være sandt eller falsk',
+ 'confirmed' => ':attribute er ikke det samme som bekræftelsesfeltet.',
+ 'date' => ':attribute er ikke en gyldig dato.',
+ 'date_equals' => 'The :attribute must be a date equal to :date.',
+ 'date_format' => ':attribute matcher ikke formatet :format.',
+ 'different' => ':attribute og :other skal være forskellige.',
+ 'digits' => ':attribute skal have :digits cifre.',
+ 'digits_between' => ':attribute skal have mellem :min og :max cifre.',
+ 'dimensions' => ':attribute har forkerte billede dimensioner.',
+ 'distinct' => ':attribute har en duplikatværdi.',
+ 'email' => ':attribute skal være en gyldig e-mailadresse.',
+ 'exists' => 'Det valgte :attribute er ugyldig.',
+ 'file' => ':attribute skal være en fil.',
+ 'filled' => ':attribute skal udfyldes.',
+ 'gt' => [
'numeric' => 'The :attribute skal være større end :value.',
- 'file' => 'The :attribute skal være større end :value kilobytes.',
- 'string' => 'The :attribute skal være større end :value tegn.',
- 'array' => 'The :attribute skal være mere end :value elementer.',
+ 'file' => 'The :attribute skal være større end :value kilobytes.',
+ 'string' => 'The :attribute skal være større end :value tegn.',
+ 'array' => 'The :attribute skal være mere end :value elementer.',
],
- 'gte' => [
+ 'gte' => [
'numeric' => 'The :attribute skal være større end eller lig med :value.',
- 'file' => 'The :attribute skal være større end eller lig med :value kilobytes.',
- 'string' => 'The :attribute skal være større end eller lig med :value tegn.',
- 'array' => 'The :attribute skal have :value items eller mere.',
+ 'file' => 'The :attribute skal være større end eller lig med :value kilobytes.',
+ 'string' => 'The :attribute skal være større end eller lig med :value tegn.',
+ 'array' => 'The :attribute skal have :value items eller mere.',
],
- 'image' => ':attribute skal være et billede.',
- 'in' => 'Det valgte :attribute er ugyldig.',
- 'in_array' => ':attribute eksisterer ikke i :other.',
- 'integer' => ':attribute skal være et heltal.',
- 'ip' => ':attribute skal være en gyldig IP adresse.',
- 'ipv4' => ':attribute skal være en gyldig IPv4 adresse.',
- 'ipv6' => ':attribute skal være en gyldig IPv6 adresse.',
- 'json' => ':attribute skal være en gyldig JSON streng.',
- 'lt' => [
+ 'image' => ':attribute skal være et billede.',
+ 'in' => 'Det valgte :attribute er ugyldig.',
+ 'in_array' => ':attribute eksisterer ikke i :other.',
+ 'integer' => ':attribute skal være et heltal.',
+ 'ip' => ':attribute skal være en gyldig IP adresse.',
+ 'ipv4' => ':attribute skal være en gyldig IPv4 adresse.',
+ 'ipv6' => ':attribute skal være en gyldig IPv6 adresse.',
+ 'json' => ':attribute skal være en gyldig JSON streng.',
+ 'lt' => [
'numeric' => 'The :attribute skal være mindre end :value.',
- 'file' => 'The :attribute skal være mindre end :value kilobytes.',
- 'string' => 'The :attribute skal være mindre end :value tegn.',
- 'array' => 'The :attribute skal have mindre end :value elementer.',
+ 'file' => 'The :attribute skal være mindre end :value kilobytes.',
+ 'string' => 'The :attribute skal være mindre end :value tegn.',
+ 'array' => 'The :attribute skal have mindre end :value elementer.',
],
- 'lte' => [
+ 'lte' => [
'numeric' => 'The :attribute skal være mindre eller lig med :value.',
- 'file' => 'The :attribute skal være mindre eller lig med :value kilobytes.',
- 'string' => 'The :attribute skal være mindre eller lig med :value tegn.',
- 'array' => 'The :attribute må ikke have mere end :value elementer.',
+ 'file' => 'The :attribute skal være mindre eller lig med :value kilobytes.',
+ 'string' => 'The :attribute skal være mindre eller lig med :value tegn.',
+ 'array' => 'The :attribute må ikke have mere end :value elementer.',
],
- 'max' => [
+ 'max' => [
'numeric' => ':attribute skal være højest :max.',
- 'file' => ':attribute skal være højest :max kilobytes.',
- 'string' => ':attribute skal være højest :max tegn.',
- 'array' => ':attribute må ikke indeholde mere end :max elementer.',
+ 'file' => ':attribute skal være højest :max kilobytes.',
+ 'string' => ':attribute skal være højest :max tegn.',
+ 'array' => ':attribute må ikke indeholde mere end :max elementer.',
],
- 'mimes' => ':attribute skal være en fil af typen: :values.',
- 'mimetypes' => ':attribute skal være en fil af typen: :values.',
- 'min' => [
+ 'mimes' => ':attribute skal være en fil af typen: :values.',
+ 'mimetypes' => ':attribute skal være en fil af typen: :values.',
+ 'min' => [
'numeric' => ':attribute skal være mindst :min.',
- 'file' => ':attribute skal være mindst :min kilobytes.',
- 'string' => ':attribute skal være mindst :min tegn.',
- 'array' => ':attribute skal indeholde mindst :min elementer.',
+ 'file' => ':attribute skal være mindst :min kilobytes.',
+ 'string' => ':attribute skal være mindst :min tegn.',
+ 'array' => ':attribute skal indeholde mindst :min elementer.',
],
- 'not_in' => 'Den valgte :attribute er ugyldig.',
- 'not_regex' => 'The :attribute format is invalid.',
- 'numeric' => ':attribute skal være et tal.',
- 'present' => ':attribute skal være tilstede.',
- 'regex' => ':attribute formatet er ugyldigt.',
- 'required' => ':attribute skal udfyldes.',
- 'required_if' => ':attribute skal udfyldes når :other er :value.',
- 'required_unless' => ':attribute er påkrævet med mindre :other findes i :values.',
- 'required_with' => ':attribute skal udfyldes når :values er udfyldt.',
- 'required_with_all' => ':attribute skal udfyldes når :values er udfyldt.',
- 'required_without' => ':attribute skal udfyldes når :values ikke er udfyldt.',
+ 'not_in' => 'Den valgte :attribute er ugyldig.',
+ 'not_regex' => 'The :attribute format is invalid.',
+ 'numeric' => ':attribute skal være et tal.',
+ 'present' => ':attribute skal være tilstede.',
+ 'regex' => ':attribute formatet er ugyldigt.',
+ 'required' => ':attribute skal udfyldes.',
+ 'required_if' => ':attribute skal udfyldes når :other er :value.',
+ 'required_unless' => ':attribute er påkrævet med mindre :other findes i :values.',
+ 'required_with' => ':attribute skal udfyldes når :values er udfyldt.',
+ 'required_with_all' => ':attribute skal udfyldes når :values er udfyldt.',
+ 'required_without' => ':attribute skal udfyldes når :values ikke er udfyldt.',
'required_without_all' => ':attribute skal udfyldes når ingen af :values er udfyldt.',
- 'same' => ':attribute og :other skal være ens.',
- 'size' => [
+ 'same' => ':attribute og :other skal være ens.',
+ 'size' => [
'numeric' => ':attribute skal være :size.',
- 'file' => ':attribute skal være :size kilobytes.',
- 'string' => ':attribute skal være :size tegn lang.',
- 'array' => ':attribute skal indeholde :size elementer.',
+ 'file' => ':attribute skal være :size kilobytes.',
+ 'string' => ':attribute skal være :size tegn lang.',
+ 'array' => ':attribute skal indeholde :size elementer.',
],
- 'starts_with' => ':attribute skal starte med et af følgende: :values',
- 'string' => ':attribute skal være en streng.',
- 'timezone' => ':attribute skal være en gyldig tidszone.',
- 'unique' => ':attribute er allerede taget.',
- 'uploaded' => ':attribute fejlene i uploaden.',
- 'url' => ':attribute formatet er ugyldigt.',
- 'uuid' => ':attribute skal være en gyldig UUID.',
+ 'starts_with' => ':attribute skal starte med et af følgende: :values',
+ 'string' => ':attribute skal være en streng.',
+ 'timezone' => ':attribute skal være en gyldig tidszone.',
+ 'unique' => ':attribute er allerede taget.',
+ 'uploaded' => ':attribute fejlene i uploaden.',
+ 'url' => ':attribute formatet er ugyldigt.',
+ 'uuid' => ':attribute skal være en gyldig UUID.',
/*
|--------------------------------------------------------------------------
diff --git a/lang/de/articles.php b/lang/de/articles.php
index a1a24edc4..0bd6df1f8 100644
--- a/lang/de/articles.php
+++ b/lang/de/articles.php
@@ -12,8 +12,8 @@
*/
return [
- 'articles' => 'Artikel',
+ 'articles' => 'Artikel',
'meta-articles' => 'Artikel und Neuigkeiten zum Tracker und zur Community',
- 'published-at' => 'Veröffentlicht am ',
- 'read-more' => 'Weiterlesen',
+ 'published-at' => 'Veröffentlicht am ',
+ 'read-more' => 'Weiterlesen',
];
diff --git a/lang/de/auth.php b/lang/de/auth.php
index 46eca0cd6..6bb653576 100644
--- a/lang/de/auth.php
+++ b/lang/de/auth.php
@@ -17,87 +17,87 @@ return [
| Default Authentication Language Lines
|--------------------------------------------------------------------------
*/
- 'activation-error' => 'Verbannt oder ungültiger Invite-oken oder das Nutzerkonto ist bereits aktiviert!',
- 'activation-success' => 'Nutzerkonto wurde aktiviert! Du kannst dich jetzt anmelden!',
- 'add-image' => 'Einen weiteres Bild hinzufügen',
- 'add-profile' => 'Einen weiteres Profil hinzufügen',
- 'allow-invite-appl' => 'Offene Registrierung ist geschlossen! Du musst eingeladen werden, um dich registrieren zu können! Bewerbungen sind jedoch offen. Du wurdest zur Bewerbungsseite weitergeleitet!',
- 'allow-invite' => 'Offene Registrierung ist geschlossen! Du musst eingeladen werden, um dich registrieren zu können! Du wurdest zur Anmeldeseite weitergeleitet!',
- 'are-you' => 'Bist du:',
- 'application' => 'Bewerbung',
- 'appl-closed' => 'Bewerbungen sind geschlossen',
- 'appl-intro' => 'ist eine geschlossene Community. Du brauchst einen Invitelink, um dich registrieren zu können! Wenn du keinen Invite bekommen kannst, dann kannst du folgendes Bewerbungschreiben ausfüllen.',
- 'appl-reason' => 'Wie hast du von ":sitename" erfahren? Wieso willst du reinkommen? ',
- 'application-submitted' => 'Deine Bewerbung wurde abgeschickt. Du wirst demnächst eine E-Mail erhalten!',
- 'banned' => 'Dieser Account wurde gebannt!',
- 'check-later' => 'Komme später noch mal!',
- 'delete-image' => 'Letztes Bild löschen',
- 'delete-profile' => 'Letztes Profil löschen',
- 'email' => 'E-Mail',
- 'failed' => 'Diese Anmeldedaten stimmen nicht mit unserer Datenbank überein.',
- 'invalid-key' => 'Ungültiger oder abgelaufener Invitelink!',
- 'login' => 'Einloggen',
- 'login-now-on' => 'Jetzt einloggen auf',
- 'logout' => 'Ausloggen',
- 'lost-password' => 'Passwort vergessen?',
- 'lost-username' => 'Nutzername vergessen?',
- 'need-invite' => 'Offene Registrierung ist deaktiviert, du brauchst einen Invite um Zugriff zu erhalten!',
- 'newbie' => 'Neu in der Szene?',
- 'not-a-member' => 'Noch kein Mitglied? Registriere dich in weniger als 30s.',
- 'not-activated' => 'Dieser Account wurde noch nicht aktiviert und befindet sich noch in der Validierungsgruppe. Bitte prüfe deinen E-Mail Postfach auf einen Aktivierungslink. Wenn du keinen Aktivierungslink erhalten hast, klicke bitte auf "Passwort vergessen" und führe die dortigen Schritte durch.',
- 'password' => 'Passwort',
- 'proof-image' => 'Proof Bild Link',
- 'proof-image-title' => 'Links zum Profil Screenshot',
- 'proof-profile' => 'Profil Link URL',
- 'proof-profile-title' => 'Links zu deinem Profil',
- 'proof-min' => '(Minimum 2, Empfohlen 3)',
- 'recover-my-password' => 'Passwort zurücksetzen',
- 'register-thanks' => 'Danke für die Registrierung! Bitte überprüfe dein E-Mail Postfach, um das Konto zu aktivieren.',
- 'require-rules' => 'Bitte lese und akzeptiere unsere Regeln, indem du zum Ende der Seite gehst.',
- 'signup' => 'Registrieren',
- 'throttle' => 'Zu viele Anmeldeversuche. Bitte versuche es erneut in :seconds Sekunden.',
- 'unlock' => 'Entsperren',
- 'user-icon' => 'Nutzer Icon',
- 'username' => 'Nutzername',
- 'welcome' => 'Willkommen zurück!',
- 'welcome-restore' => 'Willkommen zurück! Dein Account ist nicht mehr deaktiviert!',
+ 'activation-error' => 'Verbannt oder ungültiger Invite-oken oder das Nutzerkonto ist bereits aktiviert!',
+ 'activation-success' => 'Nutzerkonto wurde aktiviert! Du kannst dich jetzt anmelden!',
+ 'add-image' => 'Einen weiteres Bild hinzufügen',
+ 'add-profile' => 'Einen weiteres Profil hinzufügen',
+ 'allow-invite-appl' => 'Offene Registrierung ist geschlossen! Du musst eingeladen werden, um dich registrieren zu können! Bewerbungen sind jedoch offen. Du wurdest zur Bewerbungsseite weitergeleitet!',
+ 'allow-invite' => 'Offene Registrierung ist geschlossen! Du musst eingeladen werden, um dich registrieren zu können! Du wurdest zur Anmeldeseite weitergeleitet!',
+ 'are-you' => 'Bist du:',
+ 'application' => 'Bewerbung',
+ 'appl-closed' => 'Bewerbungen sind geschlossen',
+ 'appl-intro' => 'ist eine geschlossene Community. Du brauchst einen Invitelink, um dich registrieren zu können! Wenn du keinen Invite bekommen kannst, dann kannst du folgendes Bewerbungschreiben ausfüllen.',
+ 'appl-reason' => 'Wie hast du von ":sitename" erfahren? Wieso willst du reinkommen? ',
+ 'application-submitted' => 'Deine Bewerbung wurde abgeschickt. Du wirst demnächst eine E-Mail erhalten!',
+ 'banned' => 'Dieser Account wurde gebannt!',
+ 'check-later' => 'Komme später noch mal!',
+ 'delete-image' => 'Letztes Bild löschen',
+ 'delete-profile' => 'Letztes Profil löschen',
+ 'email' => 'E-Mail',
+ 'failed' => 'Diese Anmeldedaten stimmen nicht mit unserer Datenbank überein.',
+ 'invalid-key' => 'Ungültiger oder abgelaufener Invitelink!',
+ 'login' => 'Einloggen',
+ 'login-now-on' => 'Jetzt einloggen auf',
+ 'logout' => 'Ausloggen',
+ 'lost-password' => 'Passwort vergessen?',
+ 'lost-username' => 'Nutzername vergessen?',
+ 'need-invite' => 'Offene Registrierung ist deaktiviert, du brauchst einen Invite um Zugriff zu erhalten!',
+ 'newbie' => 'Neu in der Szene?',
+ 'not-a-member' => 'Noch kein Mitglied? Registriere dich in weniger als 30s.',
+ 'not-activated' => 'Dieser Account wurde noch nicht aktiviert und befindet sich noch in der Validierungsgruppe. Bitte prüfe deinen E-Mail Postfach auf einen Aktivierungslink. Wenn du keinen Aktivierungslink erhalten hast, klicke bitte auf "Passwort vergessen" und führe die dortigen Schritte durch.',
+ 'password' => 'Passwort',
+ 'proof-image' => 'Proof Bild Link',
+ 'proof-image-title' => 'Links zum Profil Screenshot',
+ 'proof-profile' => 'Profil Link URL',
+ 'proof-profile-title' => 'Links zu deinem Profil',
+ 'proof-min' => '(Minimum 2, Empfohlen 3)',
+ 'recover-my-password' => 'Passwort zurücksetzen',
+ 'register-thanks' => 'Danke für die Registrierung! Bitte überprüfe dein E-Mail Postfach, um das Konto zu aktivieren.',
+ 'require-rules' => 'Bitte lese und akzeptiere unsere Regeln, indem du zum Ende der Seite gehst.',
+ 'signup' => 'Registrieren',
+ 'throttle' => 'Zu viele Anmeldeversuche. Bitte versuche es erneut in :seconds Sekunden.',
+ 'unlock' => 'Entsperren',
+ 'user-icon' => 'Nutzer Icon',
+ 'username' => 'Nutzername',
+ 'welcome' => 'Willkommen zurück!',
+ 'welcome-restore' => 'Willkommen zurück! Dein Account ist nicht mehr deaktiviert!',
/*
|--------------------------------------------------------------------------
| Two Step Authentication Language Lines
|--------------------------------------------------------------------------
*/
- 'subtitle' => 'Verifizierung erforderlich',
- 'title' => '2-Faktor-Verifizierung',
- 'titleFailed' => 'Verifizierung fehlgeschlagen',
- 'titlePassed' => 'Gute Nachricht!',
+ 'subtitle' => 'Verifizierung erforderlich',
+ 'title' => '2-Faktor-Verifizierung',
+ 'titleFailed' => 'Verifizierung fehlgeschlagen',
+ 'titlePassed' => 'Gute Nachricht!',
- 'inputAlt1' => 'Code Eingabe 1',
- 'inputAlt2' => 'Code Eingabe 2',
- 'inputAlt3' => 'Code Eingabe 3',
- 'inputAlt4' => 'Code Eingabe 4',
+ 'inputAlt1' => 'Code Eingabe 1',
+ 'inputAlt2' => 'Code Eingabe 2',
+ 'inputAlt3' => 'Code Eingabe 3',
+ 'inputAlt4' => 'Code Eingabe 4',
- 'attemptsRemaining' => 'Verbleibende Versuche|Verbleibende Versuche',
- 'missingCode' => 'Keinen Verifizierungscode erhalten?',
- 'verifyButton' => 'Verifizieren',
+ 'attemptsRemaining' => 'Verbleibende Versuche|Verbleibende Versuche',
+ 'missingCode' => 'Keinen Verifizierungscode erhalten?',
+ 'verifyButton' => 'Verifizieren',
- 'exceededTitle' => 'Verifizierungsversuche überschritten',
- 'lockedUntil' => 'Nutzerkonto gesperrt bis:',
- 'returnButton' => 'Zurück zur Homepage',
- 'tryAgainIn' => 'Versuche erneut in',
+ 'exceededTitle' => 'Verifizierungsversuche überschritten',
+ 'lockedUntil' => 'Nutzerkonto gesperrt bis:',
+ 'returnButton' => 'Zurück zur Homepage',
+ 'tryAgainIn' => 'Versuche erneut in',
- 'verificationEmailButton' => 'Jetzt verifizieren',
- 'verificationEmailGreeting' => 'Hallo :username',
- 'verificationEmailMessage' => 'Dein 2-Faktor-Verifizierung Code ist:',
- 'verificationEmailSubject' => 'Verifizierung erforderlich',
+ 'verificationEmailButton' => 'Jetzt verifizieren',
+ 'verificationEmailGreeting' => 'Hallo :username',
+ 'verificationEmailMessage' => 'Dein 2-Faktor-Verifizierung Code ist:',
+ 'verificationEmailSubject' => 'Verifizierung erforderlich',
- 'verificationEmailSentMsg' => 'Verifizierungs E-Mail gesendet!',
- 'verificationEmailSuccess' => 'Erfolgreich!',
+ 'verificationEmailSentMsg' => 'Verifizierungs E-Mail gesendet!',
+ 'verificationEmailSuccess' => 'Erfolgreich!',
- 'verificationWarningMessage' => 'Dies ist dein letzter Versuch, bevor dein Konto für :hours Stunden gesperrt wird.',
- 'verificationWarningTitle' => 'Achtung!',
+ 'verificationWarningMessage' => 'Dies ist dein letzter Versuch, bevor dein Konto für :hours Stunden gesperrt wird.',
+ 'verificationWarningTitle' => 'Achtung!',
- 'verificationLockedMessage' => 'Konto gesperrt!',
- 'verificationLockedTitle' => 'Oje!',
+ 'verificationLockedMessage' => 'Konto gesperrt!',
+ 'verificationLockedTitle' => 'Oje!',
];
diff --git a/lang/de/backup.php b/lang/de/backup.php
index 5e6653268..bfe2395d4 100644
--- a/lang/de/backup.php
+++ b/lang/de/backup.php
@@ -23,32 +23,32 @@ return [
|
*/
- 'backup' => 'Backup',
- 'backup_process_started' => 'Neuer Backup Prozess gestartet',
- 'create_a_new_backup' => 'Komplett Backup erstellen',
- 'create_a_new_files_backup' => 'Datei Backup erstellen',
- 'create_a_new_db_backup' => 'Datenbank Backup erstellen',
- 'existing_backups' => 'Vorhandene Backups',
- 'date' => 'Datum',
- 'file_size' => 'Dateigröße',
- 'actions' => 'Aktionen',
- 'download' => 'Download',
- 'delete' => 'Löschen',
- 'delete_confirm' => 'Möchtest du diese Backup-Datei wirklich löschen?',
- 'delete_confirmation_title' => 'Fertig',
- 'delete_confirmation_message' => 'Die Backup-Datei wurde gelöscht.',
- 'delete_error_title' => 'Fehler',
- 'delete_error_message' => 'Die Backup-Datei wurde NICHT gelöscht.',
- 'delete_cancel_title' => 'Alles ok',
- 'delete_cancel_message' => 'Die Backup-Datei wurde NICHT gelöscht.',
- 'create_confirmation_title' => 'Backup Prozess gestartet',
- 'create_confirmation_message' => 'Bitte warte ein paar Minuten bis der Vorgang abgeschlossen ist, anschließend lade die Seite neu.',
- 'create_error_title' => 'Backup Fehler',
- 'create_error_message' => 'Die Backup-Datei konnte NICHT erstellt werden.',
- 'create_warning_title' => 'Unbekannter Fehler',
- 'create_warning_message' => 'Das Backup wurde möglichweise NICHT erstellt. Bitte prüfe die Log-Dateien für weitere Details.',
- 'location' => 'Ort',
- 'no_disks_configured' => 'Keine Backuplaufwerke in config/backup.php konfiguriert',
- 'backup_doesnt_exist' => 'Die Backup-Datei existiert nicht.',
+ 'backup' => 'Backup',
+ 'backup_process_started' => 'Neuer Backup Prozess gestartet',
+ 'create_a_new_backup' => 'Komplett Backup erstellen',
+ 'create_a_new_files_backup' => 'Datei Backup erstellen',
+ 'create_a_new_db_backup' => 'Datenbank Backup erstellen',
+ 'existing_backups' => 'Vorhandene Backups',
+ 'date' => 'Datum',
+ 'file_size' => 'Dateigröße',
+ 'actions' => 'Aktionen',
+ 'download' => 'Download',
+ 'delete' => 'Löschen',
+ 'delete_confirm' => 'Möchtest du diese Backup-Datei wirklich löschen?',
+ 'delete_confirmation_title' => 'Fertig',
+ 'delete_confirmation_message' => 'Die Backup-Datei wurde gelöscht.',
+ 'delete_error_title' => 'Fehler',
+ 'delete_error_message' => 'Die Backup-Datei wurde NICHT gelöscht.',
+ 'delete_cancel_title' => 'Alles ok',
+ 'delete_cancel_message' => 'Die Backup-Datei wurde NICHT gelöscht.',
+ 'create_confirmation_title' => 'Backup Prozess gestartet',
+ 'create_confirmation_message' => 'Bitte warte ein paar Minuten bis der Vorgang abgeschlossen ist, anschließend lade die Seite neu.',
+ 'create_error_title' => 'Backup Fehler',
+ 'create_error_message' => 'Die Backup-Datei konnte NICHT erstellt werden.',
+ 'create_warning_title' => 'Unbekannter Fehler',
+ 'create_warning_message' => 'Das Backup wurde möglichweise NICHT erstellt. Bitte prüfe die Log-Dateien für weitere Details.',
+ 'location' => 'Ort',
+ 'no_disks_configured' => 'Keine Backuplaufwerke in config/backup.php konfiguriert',
+ 'backup_doesnt_exist' => 'Die Backup-Datei existiert nicht.',
'only_local_downloads_supported' => 'Es werden nur Downloads aus dem lokalen Dateisystem unterstützt.',
];
diff --git a/lang/de/blocks.php b/lang/de/blocks.php
index d8531c429..e51289085 100644
--- a/lang/de/blocks.php
+++ b/lang/de/blocks.php
@@ -13,33 +13,33 @@
return [
// Chat
- 'chatbox' => 'Chat Box',
- 'click' => 'Klick',
- 'to-enable-editor' => 'Editor aktivieren',
+ 'chatbox' => 'Chat Box',
+ 'click' => 'Klick',
+ 'to-enable-editor' => 'Editor aktivieren',
// Featured Torrents
- 'featured-by' => 'Vorgestellt durch',
- 'featured-torrents' => 'Vorgestellte Torrents',
+ 'featured-by' => 'Vorgestellt durch',
+ 'featured-torrents' => 'Vorgestellte Torrents',
'featured-torrents-intro' => 'Holen Sie sie, solange Sie können!',
- 'featured-until' => 'Vorgestellt bis',
+ 'featured-until' => 'Vorgestellt bis',
// Latest Torrents
- 'top-torrents' => 'Top Torrents',
+ 'top-torrents' => 'Top Torrents',
// Latest Posts
- 'latest-posts' => 'Neueste Beiträge',
+ 'latest-posts' => 'Neueste Beiträge',
// Latest Topics
- 'latest-topics' => 'Neueste Themen',
+ 'latest-topics' => 'Neueste Themen',
// Users Online
- 'active-in-last' => 'Zuletzt aktiv',
- 'users-online' => 'Nutzer online',
+ 'active-in-last' => 'Zuletzt aktiv',
+ 'users-online' => 'Nutzer online',
// News/Articles
- 'check-news' => 'Neuste News',
- 'new-news' => 'Neue Nachrichten',
+ 'check-news' => 'Neuste News',
+ 'new-news' => 'Neue Nachrichten',
// Top Torrents
- 'new-torrents' => 'Neue Torrents',
+ 'new-torrents' => 'Neue Torrents',
];
diff --git a/lang/de/bon.php b/lang/de/bon.php
index 181d5f440..4f738fbac 100644
--- a/lang/de/bon.php
+++ b/lang/de/bon.php
@@ -12,56 +12,56 @@
*/
return [
- 'activated' => 'Aktiviert',
- 'active' => 'Aktiviert!',
- 'amount' => 'Menge',
- 'bon' => 'Bonus',
- 'bonus' => 'Bonus',
- 'date' => 'Datum',
- 'earning' => '',
- 'earning-rate' => 'Bei dieser Rate erhältst du folgende Punktzahl in folgenden Zeiträumen:',
- 'earnings' => 'Verdienste',
- 'exchange' => 'Einwechseln',
- 'exchange-warning' => 'Der Austausch ist endgültig. Bitte überprüfen deine Auswahl, bevor der Austausch durchgeführt wird.',
- 'extended-stats' => 'Erweiterte Statistiken',
- 'failed' => 'Bonusumtausch fehlgeschlagen!',
- 'failed-amount-message' => 'Du musst einen Betrag und eine Nachricht eingeben!',
- 'failed-funds-poster' => 'Du bist zu pleite, um dem Poster Trinkgeld zu geben!',
- 'failed-funds-uploader' => 'Du bist zu pleite, um dem Uploader Trinkgeld zu geben!',
- 'failed-negative' => 'Du kannst kein negatives Trinkgeld geben!',
- 'failed-user-not-found' => 'Der angegebene Nutzer kann nicht gefunden werden',
- 'failed-yourself' => 'Du kannst dir selbst kein Trinkgeld geben!',
- 'gift' => 'Geschenk',
- 'gift-bonus' => 'Geschenk-Bonuspunkte',
- 'gift-sent' => 'Geschenk gesendet',
- 'gift-to' => 'Geschenk-Bonuspunkte an',
- 'gifts' => 'Geschenkt',
- 'item' => 'Artikel',
- 'no-refund' => 'KEINE RÜCKERSTATTUNG!',
- 'per-day' => 'Punkte pro Tag',
- 'per-hour' => 'Punkte pro Stunde',
- 'per-minute' => 'Punkte pro Minute',
- 'per-month' => 'Punkte pro Monat',
- 'per-second' => 'Punkte pro Sekunde',
- 'per-week' => 'Punkte pro Woche',
- 'per-year' => 'Punkte pro Jahr',
- 'pm-subject' => 'Persönlicher 24-Stunden-Freeleech Aktiviert',
- 'pm-message' => 'Dein [b]Persönliches 24-Stunden-Freeleech[/b] hat begonnen! Es wird auslaufen am %s [b]',
- 'points' => 'Punkte',
- 'receiver' => 'Empfänger',
- 'review-seeds' => 'Übersicht aller geseedeten Torrents',
- 'send-gift' => 'Geschenk senden',
- 'sender' => 'Absender',
- 'store' => 'Store',
- 'success' => 'Bonusaustausch erfolgreich',
- 'success-tip' => 'Dein Trinkgeld wurde erfolgreich übertragen!',
- 'tips' => 'Trinkgeld',
- 'total' => 'Gesamteinnahmen',
- 'total-gifts' => 'Geschenkte Bonuspunkte',
- 'total-tips' => 'Trinkgeld Bonuspunkte',
+ 'activated' => 'Aktiviert',
+ 'active' => 'Aktiviert!',
+ 'amount' => 'Menge',
+ 'bon' => 'Bonus',
+ 'bonus' => 'Bonus',
+ 'date' => 'Datum',
+ 'earning' => '',
+ 'earning-rate' => 'Bei dieser Rate erhältst du folgende Punktzahl in folgenden Zeiträumen:',
+ 'earnings' => 'Verdienste',
+ 'exchange' => 'Einwechseln',
+ 'exchange-warning' => 'Der Austausch ist endgültig. Bitte überprüfen deine Auswahl, bevor der Austausch durchgeführt wird.',
+ 'extended-stats' => 'Erweiterte Statistiken',
+ 'failed' => 'Bonusumtausch fehlgeschlagen!',
+ 'failed-amount-message' => 'Du musst einen Betrag und eine Nachricht eingeben!',
+ 'failed-funds-poster' => 'Du bist zu pleite, um dem Poster Trinkgeld zu geben!',
+ 'failed-funds-uploader' => 'Du bist zu pleite, um dem Uploader Trinkgeld zu geben!',
+ 'failed-negative' => 'Du kannst kein negatives Trinkgeld geben!',
+ 'failed-user-not-found' => 'Der angegebene Nutzer kann nicht gefunden werden',
+ 'failed-yourself' => 'Du kannst dir selbst kein Trinkgeld geben!',
+ 'gift' => 'Geschenk',
+ 'gift-bonus' => 'Geschenk-Bonuspunkte',
+ 'gift-sent' => 'Geschenk gesendet',
+ 'gift-to' => 'Geschenk-Bonuspunkte an',
+ 'gifts' => 'Geschenkt',
+ 'item' => 'Artikel',
+ 'no-refund' => 'KEINE RÜCKERSTATTUNG!',
+ 'per-day' => 'Punkte pro Tag',
+ 'per-hour' => 'Punkte pro Stunde',
+ 'per-minute' => 'Punkte pro Minute',
+ 'per-month' => 'Punkte pro Monat',
+ 'per-second' => 'Punkte pro Sekunde',
+ 'per-week' => 'Punkte pro Woche',
+ 'per-year' => 'Punkte pro Jahr',
+ 'pm-subject' => 'Persönlicher 24-Stunden-Freeleech Aktiviert',
+ 'pm-message' => 'Dein [b]Persönliches 24-Stunden-Freeleech[/b] hat begonnen! Es wird auslaufen am %s [b]',
+ 'points' => 'Punkte',
+ 'receiver' => 'Empfänger',
+ 'review-seeds' => 'Übersicht aller geseedeten Torrents',
+ 'send-gift' => 'Geschenk senden',
+ 'sender' => 'Absender',
+ 'store' => 'Store',
+ 'success' => 'Bonusaustausch erfolgreich',
+ 'success-tip' => 'Dein Trinkgeld wurde erfolgreich übertragen!',
+ 'tips' => 'Trinkgeld',
+ 'total' => 'Gesamteinnahmen',
+ 'total-gifts' => 'Geschenkte Bonuspunkte',
+ 'total-tips' => 'Trinkgeld Bonuspunkte',
'you-have-received-gifts' => 'Du hast erhalten',
- 'you-have-sent-gifts' => 'Du hast gesendet',
- 'you-have-received-tips' => 'Du hast erhalten',
- 'you-have-sent-tips' => 'Du hast gesendet',
- 'your-points' => 'Deine Punkte',
+ 'you-have-sent-gifts' => 'Du hast gesendet',
+ 'you-have-received-tips' => 'Du hast erhalten',
+ 'you-have-sent-tips' => 'Du hast gesendet',
+ 'your-points' => 'Deine Punkte',
];
diff --git a/lang/de/bot.php b/lang/de/bot.php
index f429608c2..8d0bf6d03 100644
--- a/lang/de/bot.php
+++ b/lang/de/bot.php
@@ -12,15 +12,15 @@
*/
return [
- 'about' => 'Über',
- 'bot' => 'Bot',
- 'bots' => 'Bots',
- 'color' => 'Farbe',
- 'command' => 'Befehl',
- 'edit-bot' => 'Bot bearbeiten',
+ 'about' => 'Über',
+ 'bot' => 'Bot',
+ 'bots' => 'Bots',
+ 'color' => 'Farbe',
+ 'command' => 'Befehl',
+ 'edit-bot' => 'Bot bearbeiten',
'emoji-code' => 'Emoji-Code',
- 'help' => 'Hilfe',
- 'icon' => 'Icon',
- 'info' => 'Info',
- 'name' => 'Name',
+ 'help' => 'Hilfe',
+ 'icon' => 'Icon',
+ 'info' => 'Info',
+ 'name' => 'Name',
];
diff --git a/lang/de/bug.php b/lang/de/bug.php
index 9b65d481c..b729bfc59 100644
--- a/lang/de/bug.php
+++ b/lang/de/bug.php
@@ -12,15 +12,15 @@
*/
return [
- 'bug-report' => 'Bug Report',
+ 'bug-report' => 'Bug Report',
'bug-report-description' => 'Einen Webseiten Bug melden',
- 'enter-description' => 'Beschreibe das Problem so gut wie möglich',
- 'enter-email' => 'Bitte gebe deine E-Mail-Adresse ein',
- 'enter-title' => 'Bitte wähle einen passenden Titel',
- 'enter-username' => 'Bitte gebe deinen Nutzernamen ein',
- 'high' => 'Hoch',
- 'low' => 'Niedrig',
- 'priority' => 'Priorität',
- 'priority-description' => 'Wähle nur "Sehr Hoch", wenn der Fehler wirklich ein Problem für die Benutzung der Webseite ist.',
- 'very-high' => 'Sehr Hoch',
+ 'enter-description' => 'Beschreibe das Problem so gut wie möglich',
+ 'enter-email' => 'Bitte gebe deine E-Mail-Adresse ein',
+ 'enter-title' => 'Bitte wähle einen passenden Titel',
+ 'enter-username' => 'Bitte gebe deinen Nutzernamen ein',
+ 'high' => 'Hoch',
+ 'low' => 'Niedrig',
+ 'priority' => 'Priorität',
+ 'priority-description' => 'Wähle nur "Sehr Hoch", wenn der Fehler wirklich ein Problem für die Benutzung der Webseite ist.',
+ 'very-high' => 'Sehr Hoch',
];
diff --git a/lang/de/comment.php b/lang/de/comment.php
index c28757987..bab1973ce 100644
--- a/lang/de/comment.php
+++ b/lang/de/comment.php
@@ -12,9 +12,9 @@
*/
return [
- 'added' => 'Dein Kommentar wurde hinzugefügt!',
- 'deleted' => 'Kommentar wurde gelöscht.',
- 'edited' => 'Kommentar wurde editiert.',
- 'rights-revoked' => 'Deine Kommentarrechte sind entzogen worden!',
- 'slow-down' => 'Langsamer - Zu viele Kommentare!',
+ 'added' => 'Dein Kommentar wurde hinzugefügt!',
+ 'deleted' => 'Kommentar wurde gelöscht.',
+ 'edited' => 'Kommentar wurde editiert.',
+ 'rights-revoked' => 'Deine Kommentarrechte sind entzogen worden!',
+ 'slow-down' => 'Langsamer - Zu viele Kommentare!',
];
diff --git a/lang/de/common.php b/lang/de/common.php
index bc6845b2e..5aaf23cf2 100644
--- a/lang/de/common.php
+++ b/lang/de/common.php
@@ -12,200 +12,200 @@
*/
return [
- 'a-an-art' => '',
- 'about' => 'Über uns',
- 'account' => 'Konto',
- 'achievement-title' => 'Großartig',
+ 'a-an-art' => '',
+ 'about' => 'Über uns',
+ 'account' => 'Konto',
+ 'achievement-title' => 'Großartig',
'achievement-unlocked' => 'Du hast Achievement freigeschaltet',
- 'active' => 'Aktiv',
- 'active-warning' => 'Aktive Verwarnungen',
- 'add' => 'Hinzufügen',
- 'added' => 'Hinzugefügt',
- 'amount' => 'Menge',
- 'anonymous' => 'Anonym',
- 'ascending' => 'Aufsteigend',
- 'author' => 'Von',
- 'connected' => 'Verbunden',
- 'balance' => 'Balance',
- 'blacklist' => 'Client-Blacklist',
- 'buffer' => 'Puffer',
- 'bug' => 'Melde einen technischen Fehler',
- 'but' => 'Aber',
- 'cancel' => 'Abbrechen',
- 'category' => 'Kategorie',
- 'categories' => 'Kategorien',
- 'close' => 'Schließen',
- 'color' => 'Farbe',
- 'comment' => 'Kommentar',
- 'comments' => 'Kommentare',
- 'community' => 'Community',
- 'content' => 'Inhalt',
- 'connected' => 'Verbunden',
- 'contact' => 'Kontakt',
- 'contact-desc' => 'Diese Anfrage wird an den Eigentümer gesendet, welcher sich so schnell wie möglich bei dir melden wird',
- 'contact-header' => 'Hallo',
- 'create' => 'Erstellen',
- 'created_at' => 'Erstellt am',
- 'date' => 'Datum',
- 'day' => 'Tag',
- 'delete' => 'Löschen',
- 'delete-your-comment' => 'Lösche deinen Kommentar',
- 'description' => 'Beschreibung',
- 'descending' => 'Absteigend',
- 'direction' => 'Richtung',
- 'disable' => 'Deaktivieren',
- 'doubleup_activated' => 'Globaler Doppel Upload-Modus aktiviert',
- 'download' => 'Download',
- 'edit' => 'Bearbeiten',
- 'edit-your-comment' => 'Bearbeite dein Kommentar',
- 'email' => 'E-Mmail',
- 'email-blacklist' => 'E-Mail-Blacklist',
- 'email-whitelist' => 'E-Mail-Whitelist',
+ 'active' => 'Aktiv',
+ 'active-warning' => 'Aktive Verwarnungen',
+ 'add' => 'Hinzufügen',
+ 'added' => 'Hinzugefügt',
+ 'amount' => 'Menge',
+ 'anonymous' => 'Anonym',
+ 'ascending' => 'Aufsteigend',
+ 'author' => 'Von',
+ 'connected' => 'Verbunden',
+ 'balance' => 'Balance',
+ 'blacklist' => 'Client-Blacklist',
+ 'buffer' => 'Puffer',
+ 'bug' => 'Melde einen technischen Fehler',
+ 'but' => 'Aber',
+ 'cancel' => 'Abbrechen',
+ 'category' => 'Kategorie',
+ 'categories' => 'Kategorien',
+ 'close' => 'Schließen',
+ 'color' => 'Farbe',
+ 'comment' => 'Kommentar',
+ 'comments' => 'Kommentare',
+ 'community' => 'Community',
+ 'content' => 'Inhalt',
+ 'connected' => 'Verbunden',
+ 'contact' => 'Kontakt',
+ 'contact-desc' => 'Diese Anfrage wird an den Eigentümer gesendet, welcher sich so schnell wie möglich bei dir melden wird',
+ 'contact-header' => 'Hallo',
+ 'create' => 'Erstellen',
+ 'created_at' => 'Erstellt am',
+ 'date' => 'Datum',
+ 'day' => 'Tag',
+ 'delete' => 'Löschen',
+ 'delete-your-comment' => 'Lösche deinen Kommentar',
+ 'description' => 'Beschreibung',
+ 'descending' => 'Absteigend',
+ 'direction' => 'Richtung',
+ 'disable' => 'Deaktivieren',
+ 'doubleup_activated' => 'Globaler Doppel Upload-Modus aktiviert',
+ 'download' => 'Download',
+ 'edit' => 'Bearbeiten',
+ 'edit-your-comment' => 'Bearbeite dein Kommentar',
+ 'email' => 'E-Mmail',
+ 'email-blacklist' => 'E-Mail-Blacklist',
+ 'email-whitelist' => 'E-Mail-Whitelist',
'email-list-notactive' => 'Das E-Mail-Whitelist / Blacklist-System ist nicht aktiviert',
- 'enable' => 'Aktivieren',
- 'enter' => 'Eingeben',
- 'error' => 'Error',
- 'everyday' => 'Jeden Tag',
- 'expired' => 'Abgelaufen',
- 'extra' => 'Extra',
- 'extra-stats' => 'Extra-Statistiken',
- 'faq' => 'FAQ',
- 'files' => 'Dateien',
- 'fl_token' => 'Freeleech Token',
- 'fl_tokens' => 'Freeleech-Token',
- 'for' => 'für',
- 'forum' => 'Forum',
- 'free' => 'Kostenlos',
- 'freeleech_activated' => 'Globaler Freeleech-Modus aktiviert',
- 'given' => 'Gegeben',
- 'global' => 'Global',
- 'group' => 'Gruppe',
- 'groups' => 'Gruppen',
- 'hidden' => 'Versteckt',
- 'high-speeds' => 'Hohe Geschwindigkeiten',
- 'home' => 'Startseite',
- 'hot' => 'Heiß!',
- 'hour' => 'Stunde',
- 'huge' => 'Enorm',
- 'icon' => 'Icon',
- 'info' => 'Info',
- 'internal' => 'Intern',
- 'ip' => 'IP',
- 'is-allowed' => 'ist erlaubt',
- 'language' => 'Sprache',
- 'languages' => 'Sprachen',
- 'large' => 'Groß',
- 'latest' => 'Neueste',
- 'latest-posts' => 'Neueste Beiträge',
- 'latest-topics' => 'Neueste Themen',
- 'legal' => 'Rechtliches',
- 'legend' => 'Legende',
- 'lists' => 'Listen',
- 'lock-account' => 'Account sperren',
- 'logout' => 'Ausloggen',
- 'media-language' => 'Medien Sprache',
- 'media-languages' => 'Medien Sprachen',
- 'members' => 'Mitglieder',
- 'message' => 'Nachricht',
- 'minute' => 'Minute',
- 'moderated-by' => 'Moderiert von',
- 'moderation' => 'Moderation',
- 'moderation-approve' => 'Genehmigen',
- 'moderation-postpone' => 'Neu prüfen',
- 'moderation-reject' => 'Ablehnen',
- 'month' => 'Monat',
- 'months' => 'Monate',
- 'my' => 'Meine',
- 'name' => 'Name',
- 'navigation' => 'Navigation',
- 'new' => 'Neu!',
- 'new-adj' => 'Neu',
- 'news' => 'News',
- 'next' => 'Nächster',
- 'no' => 'Nein',
- 'no-comments' => 'Noch keine Kommentare',
- 'no-result' => 'Es gibt für diese Abfrage kein Ergebnis in der Datenbank',
- 'notifications' => 'Benachrichtigungen',
- 'older-than' => 'Älter als',
- 'oldest' => 'Älteste',
- 'openreg_activated' => 'Offene Registrierung aktiviert',
- 'order-by' => 'Sortieren nach',
- 'other' => 'Anderes',
- 'pages' => 'Seiten',
- 'password' => 'Passwort',
- 'patron' => 'Patron werden',
- 'pending-torrents' => 'Ausstehende Torrents',
- 'personal' => 'persönlich',
- 'plural-suffix' => 's',
- 'port' => 'Port',
- 'position' => 'Position',
- 'posts' => 'Beiträge',
- 'powered-by' => 'Unterstützt von UNIT3D',
- 'preview' => 'Vorschau',
- 'previous' => 'Bisherige',
- 'progress' => 'Fortschritt',
- 'publish' => 'Hochladen',
- 'quantity' => 'Anzahl',
- 'quick-search' => 'Schnelle Suche',
- 'ratio' => 'Ratio',
- 'reason' => 'Grund',
- 'remove' => 'Löschen',
- 'report' => 'Report',
- 'resend' => 'Erneut senden',
- 'reporter' => 'Reporter',
- 'required' => 'Erforderlich',
- 'required-anime' => 'Erforderlich für Anime',
- 'required-games' => 'Erforderlich für Games',
- 'resolution' => 'Auflösung',
- 'results' => 'Ergebnisse',
- 'rss-system' => 'RSS-System',
- 'rules' => 'Regeln',
- 'save' => 'Speichere',
- 'search' => 'Suche',
- 'search-results' => 'Suchergebnisse',
- 'search-results-desc' => 'Bitte sehe deine Suchergebnisse unten',
- 'second' => 'Zweite',
- 'select' => 'Wähle',
+ 'enable' => 'Aktivieren',
+ 'enter' => 'Eingeben',
+ 'error' => 'Error',
+ 'everyday' => 'Jeden Tag',
+ 'expired' => 'Abgelaufen',
+ 'extra' => 'Extra',
+ 'extra-stats' => 'Extra-Statistiken',
+ 'faq' => 'FAQ',
+ 'files' => 'Dateien',
+ 'fl_token' => 'Freeleech Token',
+ 'fl_tokens' => 'Freeleech-Token',
+ 'for' => 'für',
+ 'forum' => 'Forum',
+ 'free' => 'Kostenlos',
+ 'freeleech_activated' => 'Globaler Freeleech-Modus aktiviert',
+ 'given' => 'Gegeben',
+ 'global' => 'Global',
+ 'group' => 'Gruppe',
+ 'groups' => 'Gruppen',
+ 'hidden' => 'Versteckt',
+ 'high-speeds' => 'Hohe Geschwindigkeiten',
+ 'home' => 'Startseite',
+ 'hot' => 'Heiß!',
+ 'hour' => 'Stunde',
+ 'huge' => 'Enorm',
+ 'icon' => 'Icon',
+ 'info' => 'Info',
+ 'internal' => 'Intern',
+ 'ip' => 'IP',
+ 'is-allowed' => 'ist erlaubt',
+ 'language' => 'Sprache',
+ 'languages' => 'Sprachen',
+ 'large' => 'Groß',
+ 'latest' => 'Neueste',
+ 'latest-posts' => 'Neueste Beiträge',
+ 'latest-topics' => 'Neueste Themen',
+ 'legal' => 'Rechtliches',
+ 'legend' => 'Legende',
+ 'lists' => 'Listen',
+ 'lock-account' => 'Account sperren',
+ 'logout' => 'Ausloggen',
+ 'media-language' => 'Medien Sprache',
+ 'media-languages' => 'Medien Sprachen',
+ 'members' => 'Mitglieder',
+ 'message' => 'Nachricht',
+ 'minute' => 'Minute',
+ 'moderated-by' => 'Moderiert von',
+ 'moderation' => 'Moderation',
+ 'moderation-approve' => 'Genehmigen',
+ 'moderation-postpone' => 'Neu prüfen',
+ 'moderation-reject' => 'Ablehnen',
+ 'month' => 'Monat',
+ 'months' => 'Monate',
+ 'my' => 'Meine',
+ 'name' => 'Name',
+ 'navigation' => 'Navigation',
+ 'new' => 'Neu!',
+ 'new-adj' => 'Neu',
+ 'news' => 'News',
+ 'next' => 'Nächster',
+ 'no' => 'Nein',
+ 'no-comments' => 'Noch keine Kommentare',
+ 'no-result' => 'Es gibt für diese Abfrage kein Ergebnis in der Datenbank',
+ 'notifications' => 'Benachrichtigungen',
+ 'older-than' => 'Älter als',
+ 'oldest' => 'Älteste',
+ 'openreg_activated' => 'Offene Registrierung aktiviert',
+ 'order-by' => 'Sortieren nach',
+ 'other' => 'Anderes',
+ 'pages' => 'Seiten',
+ 'password' => 'Passwort',
+ 'patron' => 'Patron werden',
+ 'pending-torrents' => 'Ausstehende Torrents',
+ 'personal' => 'persönlich',
+ 'plural-suffix' => 's',
+ 'port' => 'Port',
+ 'position' => 'Position',
+ 'posts' => 'Beiträge',
+ 'powered-by' => 'Unterstützt von UNIT3D',
+ 'preview' => 'Vorschau',
+ 'previous' => 'Bisherige',
+ 'progress' => 'Fortschritt',
+ 'publish' => 'Hochladen',
+ 'quantity' => 'Anzahl',
+ 'quick-search' => 'Schnelle Suche',
+ 'ratio' => 'Ratio',
+ 'reason' => 'Grund',
+ 'remove' => 'Löschen',
+ 'report' => 'Report',
+ 'resend' => 'Erneut senden',
+ 'reporter' => 'Reporter',
+ 'required' => 'Erforderlich',
+ 'required-anime' => 'Erforderlich für Anime',
+ 'required-games' => 'Erforderlich für Games',
+ 'resolution' => 'Auflösung',
+ 'results' => 'Ergebnisse',
+ 'rss-system' => 'RSS-System',
+ 'rules' => 'Regeln',
+ 'save' => 'Speichere',
+ 'search' => 'Suche',
+ 'search-results' => 'Suchergebnisse',
+ 'search-results-desc' => 'Bitte sehe deine Suchergebnisse unten',
+ 'second' => 'Zweite',
+ 'select' => 'Wähle',
'something-went-wrong' => 'Irgendwas ist schiefgelaufen!',
- 'sort' => 'Sortieren',
- 'special' => 'Besondere',
- 'sponsor' => 'Werde ein Sponsor',
- 'staff' => 'Teammitglieder',
- 'staff-tools' => 'Team Tools',
- 'stats' => 'Statistiken',
- 'status' => 'Status',
- 'sticked' => 'Gesteckt',
- 'submit' => 'Absenden',
- 'subscriptions' => 'Abonnements',
- 'subtitle' => 'Untertitel',
- 'subtitles' => 'Untertitel',
- 'system-message' => 'DIES IST EINE AUTOMATISCHE SYSTEMNACHRICHT, BITTE NICHT ANTWORTEN!',
- 'teams' => 'Teams',
- 'terms' => 'Nutzungsbedingungen',
- 'times' => 'Mal',
- 'title' => 'Titel',
- 'top-bountied' => 'Top Bountied',
- 'topics' => 'Themen',
- 'tracker-codes' => 'Tracker-Codes',
- 'type' => 'Art',
- 'type-verb' => 'Schreibe',
- 'types' => 'Typen',
- 'genre' => 'Genre',
- 'genres' => 'Genres',
- 'action' => 'Aktion',
- 'actions' => 'Aktionen',
- 'unknown' => 'Unbekannt',
+ 'sort' => 'Sortieren',
+ 'special' => 'Besondere',
+ 'sponsor' => 'Werde ein Sponsor',
+ 'staff' => 'Teammitglieder',
+ 'staff-tools' => 'Team Tools',
+ 'stats' => 'Statistiken',
+ 'status' => 'Status',
+ 'sticked' => 'Gesteckt',
+ 'submit' => 'Absenden',
+ 'subscriptions' => 'Abonnements',
+ 'subtitle' => 'Untertitel',
+ 'subtitles' => 'Untertitel',
+ 'system-message' => 'DIES IST EINE AUTOMATISCHE SYSTEMNACHRICHT, BITTE NICHT ANTWORTEN!',
+ 'teams' => 'Teams',
+ 'terms' => 'Nutzungsbedingungen',
+ 'times' => 'Mal',
+ 'title' => 'Titel',
+ 'top-bountied' => 'Top Bountied',
+ 'topics' => 'Themen',
+ 'tracker-codes' => 'Tracker-Codes',
+ 'type' => 'Art',
+ 'type-verb' => 'Schreibe',
+ 'types' => 'Typen',
+ 'genre' => 'Genre',
+ 'genres' => 'Genres',
+ 'action' => 'Aktion',
+ 'actions' => 'Aktionen',
+ 'unknown' => 'Unbekannt',
'unlocked-achievement' => 'Du hast :achievement freigeschaltet',
- 'upload' => 'Upload',
- 'upload-guide' => 'Upload Guide',
- 'user' => 'Nutzer',
- 'username' => 'Nutzername',
- 'users' => 'Nutzer',
- 'view' => 'Zeige',
- 'view-all' => 'Zeige alles',
- 'warnings' => 'Warnungen',
- 'year' => 'Jahr',
- 'yes' => 'Ja',
- 'your' => 'Ihre',
- 'your-comment' => 'Dein Kommentar',
+ 'upload' => 'Upload',
+ 'upload-guide' => 'Upload Guide',
+ 'user' => 'Nutzer',
+ 'username' => 'Nutzername',
+ 'users' => 'Nutzer',
+ 'view' => 'Zeige',
+ 'view-all' => 'Zeige alles',
+ 'warnings' => 'Warnungen',
+ 'year' => 'Jahr',
+ 'yes' => 'Ja',
+ 'your' => 'Ihre',
+ 'your-comment' => 'Dein Kommentar',
];
diff --git a/lang/de/email.php b/lang/de/email.php
index 3d2655046..718aee38c 100644
--- a/lang/de/email.php
+++ b/lang/de/email.php
@@ -12,46 +12,46 @@
*/
return [
- 'activate-account' => 'Nutzerkonto aktivieren',
- 'ban-reason' => 'Grund',
- 'banned-footer' => 'Das ist was man bekommt, wenn man sich NICHT an die Regeln hält',
- 'banned-header' => 'Du wurdest gebannt',
- 'bug-description' => 'Problem',
- 'bug-footer' => 'Repariere diesen Scheiß!',
- 'bug-header' => 'Neuer Bug-Report von',
- 'bug-priority' => 'Priorität',
- 'bug-title' => 'Bug Titel',
- 'contact-header' => 'Neue E-Mail von',
- 'contact-message' => 'Nachricht',
- 'contact-name' => 'Name',
+ 'activate-account' => 'Nutzerkonto aktivieren',
+ 'ban-reason' => 'Grund',
+ 'banned-footer' => 'Das ist was man bekommt, wenn man sich NICHT an die Regeln hält',
+ 'banned-header' => 'Du wurdest gebannt',
+ 'bug-description' => 'Problem',
+ 'bug-footer' => 'Repariere diesen Scheiß!',
+ 'bug-header' => 'Neuer Bug-Report von',
+ 'bug-priority' => 'Priorität',
+ 'bug-title' => 'Bug Titel',
+ 'contact-header' => 'Neue E-Mail von',
+ 'contact-message' => 'Nachricht',
+ 'contact-name' => 'Name',
'fail-login-greeting' => 'Kontoanmeldung fehlgeschlagen!',
- 'fail-login-line1' => 'Für dein Konto wurde eine fehlgeschlagene Anmeldung festgestellt.',
- 'fail-login-line2' => 'Dieser Anmeldungsversuch stammt von :ip ( :host ) um :time',
- 'fail-login-subject' => 'Benachrichtigung über fehlgeschlagene Anmeldung',
- 'footer-link' => 'Wenn du Probleme hast auf die Schaltfläche :actionText zu klicken, kopiere die unten stehende URL und fügen sie in deinem Webbrowser ein:',
- 'invite-header' => 'Einladung zu',
- 'invite-invited' => 'Du wurdest eingeladen zu',
- 'invite-message' => 'Nachricht',
- 'invite-signup' => 'Jetzt registrieren',
- 'newreply-header' => 'Es gibt eine neue Antwort',
- 'newreply-message' => 'Nachricht',
- 'newreply-replied' => 'Hat dir geantwortet',
- 'newreply-view' => 'Jetzt ansehen',
- 'no-email-found' => 'Wir konnten diese E-Mail in unserem System nicht finden!',
- 'register-code' => 'Um die Kontoaktivierung abzuschließen, klicke auf die Schaltfläche unten',
- 'register-footer' => 'Wenn die Schaltfläche oben nicht funktioniert, kopiere den Link und fügen diesen in die Adressleiste deines Browsers ein',
- 'register-header' => 'Hallo! Vielen Dank, dass für das Registrieren auf',
- 'report-comment' => 'Kommentar',
- 'report-email' => 'E-Mail',
- 'report-header' => 'Hallo Admin, ein Link wurde reported',
- 'report-link' => 'Link',
- 'report-link-hash' => 'Tatsächlicher Link',
- 'thanks' => 'Danke für das Benutzen von',
- 'unban-footer' => 'Willkommen zurück!',
- 'unban-header' => 'Du wurdest entbannt',
- 'unban-reason' => 'Grund',
- 'username-reminder' => 'Du hast uns eine Anfrage für deinen Nenutzernamen gesendet. Dein Nutzername ist',
- 'username-sent' => 'Dein Nutzername wurde an deine E-Mail-Adresse gesendet!',
- 'disabled-header' => 'Dein Konto wurde deaktiviert',
- 'pruned-header' => 'Dein Konto wurde wegen Inaktivität deaktiviert',
+ 'fail-login-line1' => 'Für dein Konto wurde eine fehlgeschlagene Anmeldung festgestellt.',
+ 'fail-login-line2' => 'Dieser Anmeldungsversuch stammt von :ip ( :host ) um :time',
+ 'fail-login-subject' => 'Benachrichtigung über fehlgeschlagene Anmeldung',
+ 'footer-link' => 'Wenn du Probleme hast auf die Schaltfläche :actionText zu klicken, kopiere die unten stehende URL und fügen sie in deinem Webbrowser ein:',
+ 'invite-header' => 'Einladung zu',
+ 'invite-invited' => 'Du wurdest eingeladen zu',
+ 'invite-message' => 'Nachricht',
+ 'invite-signup' => 'Jetzt registrieren',
+ 'newreply-header' => 'Es gibt eine neue Antwort',
+ 'newreply-message' => 'Nachricht',
+ 'newreply-replied' => 'Hat dir geantwortet',
+ 'newreply-view' => 'Jetzt ansehen',
+ 'no-email-found' => 'Wir konnten diese E-Mail in unserem System nicht finden!',
+ 'register-code' => 'Um die Kontoaktivierung abzuschließen, klicke auf die Schaltfläche unten',
+ 'register-footer' => 'Wenn die Schaltfläche oben nicht funktioniert, kopiere den Link und fügen diesen in die Adressleiste deines Browsers ein',
+ 'register-header' => 'Hallo! Vielen Dank, dass für das Registrieren auf',
+ 'report-comment' => 'Kommentar',
+ 'report-email' => 'E-Mail',
+ 'report-header' => 'Hallo Admin, ein Link wurde reported',
+ 'report-link' => 'Link',
+ 'report-link-hash' => 'Tatsächlicher Link',
+ 'thanks' => 'Danke für das Benutzen von',
+ 'unban-footer' => 'Willkommen zurück!',
+ 'unban-header' => 'Du wurdest entbannt',
+ 'unban-reason' => 'Grund',
+ 'username-reminder' => 'Du hast uns eine Anfrage für deinen Nenutzernamen gesendet. Dein Nutzername ist',
+ 'username-sent' => 'Dein Nutzername wurde an deine E-Mail-Adresse gesendet!',
+ 'disabled-header' => 'Dein Konto wurde deaktiviert',
+ 'pruned-header' => 'Dein Konto wurde wegen Inaktivität deaktiviert',
];
diff --git a/lang/de/forum.php b/lang/de/forum.php
index 890e9a1f0..ee95ed37a 100644
--- a/lang/de/forum.php
+++ b/lang/de/forum.php
@@ -12,76 +12,76 @@
*/
return [
- 'action' => 'Aktion',
- 'activity' => 'Aktivität',
- 'approved' => 'Genehmigt',
- 'author' => 'Von',
- 'bug' => 'Bug',
- 'category-quick-search' => 'Schnellsuche Themennamen (innerhalb der Kategorie)',
- 'close-topic' => 'Thema sperren',
- 'closed' => 'Geschlossen',
- 'create-new-topic' => 'Neues Thema erstellen',
- 'created' => 'Erstellt',
- 'created-at' => 'Erstellt am',
- 'current' => 'Aktuell',
- 'delete-topic' => 'Dieses Thema löschen',
- 'delete-post-success' => 'Post wurde gelöscht!',
- 'denied' => 'Verweigert',
- 'dislike-post' => 'Den Post disliken',
- 'display-forum' => 'Themen anzeigen in ',
- 'edit-post' => 'Beitrag bearbeiten',
- 'edit-post-success' => 'Post erfolgreich bearbeitet!',
- 'edit-topic' => 'Thema bearbeiten',
- 'forum' => 'Forum',
- 'forums' => 'Foren',
- 'forums-post-search' => 'Post Suche',
- 'forums-topic-search' => 'Thema Suche',
- 'implemented' => 'Implementiert',
- 'in' => 'In',
- 'invalid' => 'Ungültig',
- 'label' => 'Label',
- 'label-system' => 'Label System',
- 'last-message' => 'Letzte Nachricht',
- 'last-post-info' => 'Letzter Beitrag Info',
- 'latest' => 'Neueste',
- 'like-post' => 'Den Post liken',
- 'meta-category' => 'Liste der Foren in der Kategorie',
- 'moderation' => 'Moderation',
- 'name' => 'Name',
- 'not-connected' => 'Du musst verbunden sein',
- 'not-subscribed' => 'Nicht abonniert',
- 'open' => 'Öffnen',
- 'open-topic' => 'Öffne dieses Thema',
- 'permalink' => 'Permalink',
- 'pin' => 'Anpinnen',
- 'post' => 'Post',
- 'post-quick-search' => 'Post Inhalt Schnellsuche',
- 'posts' => 'Beiträge',
- 'quote' => 'Zitat',
- 'read-topic' => 'Lese das Thema',
- 'replies' => 'Antworten',
- 'reply-topic-error' => 'Du kannst diesem Thema nicht antworten!',
- 'reply-topic-success' => 'Beitrag erfolgreich gepostet!',
- 'send-new-topic' => 'Speicher dieses Thema',
- 'solved' => 'Gelöst',
- 'state' => 'Status',
- 'stats' => 'Statistiken',
- 'select-all-forum' => 'Alle Kategorien/Foren',
- 'subscribe' => 'Abonnieren',
- 'subscribed' => 'Abonniert',
+ 'action' => 'Aktion',
+ 'activity' => 'Aktivität',
+ 'approved' => 'Genehmigt',
+ 'author' => 'Von',
+ 'bug' => 'Bug',
+ 'category-quick-search' => 'Schnellsuche Themennamen (innerhalb der Kategorie)',
+ 'close-topic' => 'Thema sperren',
+ 'closed' => 'Geschlossen',
+ 'create-new-topic' => 'Neues Thema erstellen',
+ 'created' => 'Erstellt',
+ 'created-at' => 'Erstellt am',
+ 'current' => 'Aktuell',
+ 'delete-topic' => 'Dieses Thema löschen',
+ 'delete-post-success' => 'Post wurde gelöscht!',
+ 'denied' => 'Verweigert',
+ 'dislike-post' => 'Den Post disliken',
+ 'display-forum' => 'Themen anzeigen in ',
+ 'edit-post' => 'Beitrag bearbeiten',
+ 'edit-post-success' => 'Post erfolgreich bearbeitet!',
+ 'edit-topic' => 'Thema bearbeiten',
+ 'forum' => 'Forum',
+ 'forums' => 'Foren',
+ 'forums-post-search' => 'Post Suche',
+ 'forums-topic-search' => 'Thema Suche',
+ 'implemented' => 'Implementiert',
+ 'in' => 'In',
+ 'invalid' => 'Ungültig',
+ 'label' => 'Label',
+ 'label-system' => 'Label System',
+ 'last-message' => 'Letzte Nachricht',
+ 'last-post-info' => 'Letzter Beitrag Info',
+ 'latest' => 'Neueste',
+ 'like-post' => 'Den Post liken',
+ 'meta-category' => 'Liste der Foren in der Kategorie',
+ 'moderation' => 'Moderation',
+ 'name' => 'Name',
+ 'not-connected' => 'Du musst verbunden sein',
+ 'not-subscribed' => 'Nicht abonniert',
+ 'open' => 'Öffnen',
+ 'open-topic' => 'Öffne dieses Thema',
+ 'permalink' => 'Permalink',
+ 'pin' => 'Anpinnen',
+ 'post' => 'Post',
+ 'post-quick-search' => 'Post Inhalt Schnellsuche',
+ 'posts' => 'Beiträge',
+ 'quote' => 'Zitat',
+ 'read-topic' => 'Lese das Thema',
+ 'replies' => 'Antworten',
+ 'reply-topic-error' => 'Du kannst diesem Thema nicht antworten!',
+ 'reply-topic-success' => 'Beitrag erfolgreich gepostet!',
+ 'send-new-topic' => 'Speicher dieses Thema',
+ 'solved' => 'Gelöst',
+ 'state' => 'Status',
+ 'stats' => 'Statistiken',
+ 'select-all-forum' => 'Alle Kategorien/Foren',
+ 'subscribe' => 'Abonnieren',
+ 'subscribed' => 'Abonniert',
'subscription-quick-search' => 'Schnellsuche Themennamen (innerhalb von Abonnements)',
- 'suggestion' => 'Vorschlag',
- 'tip-post-total' => 'Dieser Beitrag hat ingesamt an Trinkgeld erhalten',
- 'tip-this-post' => 'Trinkgeld geben',
- 'topic' => 'Thema',
- 'topic-closed' => 'Dieses Thema ist geschlossen',
- 'topic-name' => 'Themenname',
- 'topic-quick-search' => 'Schnellsuche nach Themennamen',
- 'topic-title' => 'Titel dieses Themas',
- 'topics' => 'Themen',
- 'unpin' => 'Unpin',
- 'updated-at' => 'Geupdated am',
- 'unsubscribe' => 'Deabonnieren',
- 'view-all' => 'Alle Themen anzeigen',
- 'views' => 'Aufrufe',
+ 'suggestion' => 'Vorschlag',
+ 'tip-post-total' => 'Dieser Beitrag hat ingesamt an Trinkgeld erhalten',
+ 'tip-this-post' => 'Trinkgeld geben',
+ 'topic' => 'Thema',
+ 'topic-closed' => 'Dieses Thema ist geschlossen',
+ 'topic-name' => 'Themenname',
+ 'topic-quick-search' => 'Schnellsuche nach Themennamen',
+ 'topic-title' => 'Titel dieses Themas',
+ 'topics' => 'Themen',
+ 'unpin' => 'Unpin',
+ 'updated-at' => 'Geupdated am',
+ 'unsubscribe' => 'Deabonnieren',
+ 'view-all' => 'Alle Themen anzeigen',
+ 'views' => 'Aufrufe',
];
diff --git a/lang/de/graveyard.php b/lang/de/graveyard.php
index 5297a7d1e..5f7e3b03e 100644
--- a/lang/de/graveyard.php
+++ b/lang/de/graveyard.php
@@ -12,24 +12,24 @@
*/
return [
- 'current-seedtime' => 'Aktuelle Seedzeit',
- 'dead' => 'Tot',
- 'graveyard' => 'Friedhof',
- 'guidelines' => 'Richtlinien',
- 'guidelines-content' => '1) Du kannst deinen eigenen Upload nicht wiederbeleben.
2) Belebe nicht etwas wieder, wenn du dich nicht dazu verpflichten kannst.',
- 'howto' => 'Hier sind die Regeln',
- 'howto-desc1' => 'Du musst :name 30 Tage lang Seeden, für eine erfolgreiche Wiederbelebung. In diesem Fall, wenn deine aktuelle Seedzeit von',
- 'howto-desc2' => 'erhältst du',
- 'howto-hits' => 'erreicht',
- 'not-rewarded' => 'Nicht Belohnt',
- 'pending' => 'Ausstehend',
- 'resurrect' => 'Wiederbeleben',
- 'resurrect-canceled' => 'Wiederbelebung erfolgreich abgebrochen!',
- 'resurrect-complete' => 'Torrent-Wiederbelebung abgeschlossen! Du wirst automatisch belohnt, sobald die Anforderungen für die Seed-Zeit erfüllt sind.',
- 'resurrect-date' => 'Wiederbelebungs Datum',
- 'resurrect-failed-own' => 'Torrent-Wiederbelebung fehlgeschlagen! Du kannst deine eigenen Uploads nicht wiederherstellen.',
- 'resurrect-failed-pending' => 'Torrent-Wiederbelebung fehlgeschlagen! Dieser Torrent wartet bereits auf eine Wiederbelebung.',
- 'reward' => 'Freeleech Token',
- 'rewarded' => 'Belohnt',
- 'seedtime-goal' => 'Seedzeit Ziel',
+ 'current-seedtime' => 'Aktuelle Seedzeit',
+ 'dead' => 'Tot',
+ 'graveyard' => 'Friedhof',
+ 'guidelines' => 'Richtlinien',
+ 'guidelines-content' => '1) Du kannst deinen eigenen Upload nicht wiederbeleben.
2) Belebe nicht etwas wieder, wenn du dich nicht dazu verpflichten kannst.',
+ 'howto' => 'Hier sind die Regeln',
+ 'howto-desc1' => 'Du musst :name 30 Tage lang Seeden, für eine erfolgreiche Wiederbelebung. In diesem Fall, wenn deine aktuelle Seedzeit von',
+ 'howto-desc2' => 'erhältst du',
+ 'howto-hits' => 'erreicht',
+ 'not-rewarded' => 'Nicht Belohnt',
+ 'pending' => 'Ausstehend',
+ 'resurrect' => 'Wiederbeleben',
+ 'resurrect-canceled' => 'Wiederbelebung erfolgreich abgebrochen!',
+ 'resurrect-complete' => 'Torrent-Wiederbelebung abgeschlossen! Du wirst automatisch belohnt, sobald die Anforderungen für die Seed-Zeit erfüllt sind.',
+ 'resurrect-date' => 'Wiederbelebungs Datum',
+ 'resurrect-failed-own' => 'Torrent-Wiederbelebung fehlgeschlagen! Du kannst deine eigenen Uploads nicht wiederherstellen.',
+ 'resurrect-failed-pending' => 'Torrent-Wiederbelebung fehlgeschlagen! Dieser Torrent wartet bereits auf eine Wiederbelebung.',
+ 'reward' => 'Freeleech Token',
+ 'rewarded' => 'Belohnt',
+ 'seedtime-goal' => 'Seedzeit Ziel',
];
diff --git a/lang/de/mediahub.php b/lang/de/mediahub.php
index 5311e1d9c..a3edaa625 100644
--- a/lang/de/mediahub.php
+++ b/lang/de/mediahub.php
@@ -12,24 +12,24 @@
*/
return [
- 'born' => 'Geboren:',
- 'collections' => 'Kollektionen',
- 'companies' => 'Unternehmen',
- 'disclaimer' => 'Dies benutzt die TMDb API, jedoch ist es nicht zertifiziert/gern gesehen von TMDb.',
- 'episodes' => 'Episoden',
- 'first-seen' => 'Erstmals erschienen:',
- 'genres' => 'Genres',
- 'includes' => 'Beinhaltet:',
- 'latest-project' => 'Letztes Projekt:',
- 'networks' => 'Netzwerke',
- 'no-data' => 'Keine Daten gefunden!',
- 'movies' => 'Filme',
- 'movie-credits' => 'Film Credits:',
- 'persons' => 'Personen',
- 'plot' => 'Plot:',
- 'release-date' => 'Release Datum:',
- 'seasons' => 'Staffeln',
- 'select-hub' => 'Bitte wähle einen Hub',
- 'view-collection' => 'Die Kollektion ansehen',
- 'wiki-read' => 'Vollständige Bio auf Wikipedia lesen:',
+ 'born' => 'Geboren:',
+ 'collections' => 'Kollektionen',
+ 'companies' => 'Unternehmen',
+ 'disclaimer' => 'Dies benutzt die TMDb API, jedoch ist es nicht zertifiziert/gern gesehen von TMDb.',
+ 'episodes' => 'Episoden',
+ 'first-seen' => 'Erstmals erschienen:',
+ 'genres' => 'Genres',
+ 'includes' => 'Beinhaltet:',
+ 'latest-project' => 'Letztes Projekt:',
+ 'networks' => 'Netzwerke',
+ 'no-data' => 'Keine Daten gefunden!',
+ 'movies' => 'Filme',
+ 'movie-credits' => 'Film Credits:',
+ 'persons' => 'Personen',
+ 'plot' => 'Plot:',
+ 'release-date' => 'Release Datum:',
+ 'seasons' => 'Staffeln',
+ 'select-hub' => 'Bitte wähle einen Hub',
+ 'view-collection' => 'Die Kollektion ansehen',
+ 'wiki-read' => 'Vollständige Bio auf Wikipedia lesen:',
];
diff --git a/lang/de/notification.php b/lang/de/notification.php
index 95f0478de..f9b568650 100644
--- a/lang/de/notification.php
+++ b/lang/de/notification.php
@@ -13,32 +13,32 @@
return [
'already-marked-read' => 'Benachrichtigung bereits als gelesen markiert!',
- 'all-deleted' => 'Alle Benachrichtigungen gelöscht!',
- 'all-marked-read' => 'Alle Benachrichtigungen als gelesen markiert!',
- 'bon-gifts' => 'Bonus Geschenke',
- 'comment-tags' => 'Kommentar Erwähnungen',
- 'date' => 'Datum',
- 'delete' => 'Löschen',
- 'delete-all' => 'Lösche alle Benachrichtigungen',
- 'deleted' => 'Benachrichtigung gelöscht!',
- 'filter-by-type' => 'Filtere alles nach Benachrichtigungstyp',
- 'mark-all-read' => 'Alles als gelesen markieren',
- 'mark-read' => 'Als gelesen markieren',
- 'marked-read' => 'Benachrichtigung als gelesen markiert!',
- 'message' => 'Nachricht',
- 'no-notifications' => 'Es wurden keine Benachrichtigungen gefunden',
- 'not-existent' => 'Benachrichtigung existiert nicht!',
- 'notifications' => 'Benachrichtigungen',
- 'post-tags' => 'Post Erwähnungen',
- 'post-tips' => 'Post Trinkgeld',
- 'read' => 'Gelesen',
- 'request-approvals' => 'Zugelassene Requests',
- 'request-bounties' => 'Request Bounties',
- 'request-claims' => 'Request nicht Erfüllt',
- 'request-fills' => 'Request Erfüllt',
- 'request-rejections' => 'Zurückgewiesene Requests',
- 'request-unclaims' => 'Request Unclaimed',
- 'reseed-requests' => 'Reseed Request',
- 'title' => 'Titel',
- 'unfollows' => 'Entfolgt',
+ 'all-deleted' => 'Alle Benachrichtigungen gelöscht!',
+ 'all-marked-read' => 'Alle Benachrichtigungen als gelesen markiert!',
+ 'bon-gifts' => 'Bonus Geschenke',
+ 'comment-tags' => 'Kommentar Erwähnungen',
+ 'date' => 'Datum',
+ 'delete' => 'Löschen',
+ 'delete-all' => 'Lösche alle Benachrichtigungen',
+ 'deleted' => 'Benachrichtigung gelöscht!',
+ 'filter-by-type' => 'Filtere alles nach Benachrichtigungstyp',
+ 'mark-all-read' => 'Alles als gelesen markieren',
+ 'mark-read' => 'Als gelesen markieren',
+ 'marked-read' => 'Benachrichtigung als gelesen markiert!',
+ 'message' => 'Nachricht',
+ 'no-notifications' => 'Es wurden keine Benachrichtigungen gefunden',
+ 'not-existent' => 'Benachrichtigung existiert nicht!',
+ 'notifications' => 'Benachrichtigungen',
+ 'post-tags' => 'Post Erwähnungen',
+ 'post-tips' => 'Post Trinkgeld',
+ 'read' => 'Gelesen',
+ 'request-approvals' => 'Zugelassene Requests',
+ 'request-bounties' => 'Request Bounties',
+ 'request-claims' => 'Request nicht Erfüllt',
+ 'request-fills' => 'Request Erfüllt',
+ 'request-rejections' => 'Zurückgewiesene Requests',
+ 'request-unclaims' => 'Request Unclaimed',
+ 'reseed-requests' => 'Reseed Request',
+ 'title' => 'Titel',
+ 'unfollows' => 'Entfolgt',
];
diff --git a/lang/de/page.php b/lang/de/page.php
index 3b99b89a5..71b2b6f4e 100644
--- a/lang/de/page.php
+++ b/lang/de/page.php
@@ -12,26 +12,26 @@
*/
return [
- 'aboutus-advantage' => 'Die Vorteile',
- 'aboutus-advantage1' => 'Wir haben erfahrene Mitglieder und Teammitglieder, die sich mit HD Video / Audio gut auskennen und auch Erfahrung im Support haben.',
- 'aboutus-advantage2' => 'Neben unserer großen Leidenschaft für Filme und Fernsehsendungen bieten wir auch eine der besten Auswahl an etwas, das die meisten nicht tun - FANRES! (Fanrestaurierung) Ein großes Dankeschön an unsere Content-Provider.',
- 'aboutus-advantage3' => 'Wir nehmen zwar Spenden an, um die Website am Laufen zu halten, jedoch werden wir keine störenden PNs oder Banner schalten. Wir werden nicht betteln.',
- 'aboutus-advantage4' => 'Unsere Community ist für ihr junges Alter unübertroffen. Zwischen unseren Team und der Userbase standen wir immer zur Verfügung. Wir sind mit Leidenschaft dabei, dass deine Erfahrungen auf :title unglaublich sein wird.',
- 'aboutus-advantage5' => 'Unser Service wird täglich von vielen Menschen auf der ganzen Welt genutzt. Wir haben bewiesen, dass uns die Funktionalität und Sicherheit unserer Codebase am Herzen liegt und dass diese vertrauenswürdig und zuverlässig ist. Unsere Entwickler arbeiten täglich daran, eine wirklich nexgen Codebase bereitzustellen.',
- 'aboutus-header' => 'Hallo',
- 'aboutus-rules' => 'Was brauchen wir von dir?',
- 'aboutus-rules1' => 'Um ein aktives Mitglied der Community zu sein! Dies bedeutet, an Gesprächen produktiv teilzunehmen, erlaubte Inhalte hinzuzufügen und anderen Nutzern möglichst zu helfen.',
- 'aboutus-rules2' => 'Bitte lese die Regeln vollständig durch und respektieren sie!',
- 'aboutus-rules3' => 'Vorschläge machen! Wir sind bestrebt, :title jeden Tag besser zu machen. Wir sagen nicht, dass jeder Vorschlag verwendet wird, aber es schadet nie, neue Ideen zu sehen.',
- 'aboutus-welcome' => 'Lass uns reden über',
- 'aboutus-welcome-desc' => ':title ist eine von der Community erstellte Film und TV Datenbank. Alle Torrents wurden von unserer erstaunlichen Community seit 2017 hinzugefügt. Der Schwerpunkt auf :title liegt bei HD-Torrents und Fanrestaurierungen, einer aktiven Userbase, einer tollen/sicheren Codebase und einem hilfsbereiten und freundlichen Team.',
- 'blacklist-btclient' => 'Torrent-Client',
- 'blacklist-clients' => 'Clients',
- 'blacklist-desc' => 'Die folgenden Torrent-Clients sind verboten/gebannt und dürfen nicht zu :title annoncieren',
+ 'aboutus-advantage' => 'Die Vorteile',
+ 'aboutus-advantage1' => 'Wir haben erfahrene Mitglieder und Teammitglieder, die sich mit HD Video / Audio gut auskennen und auch Erfahrung im Support haben.',
+ 'aboutus-advantage2' => 'Neben unserer großen Leidenschaft für Filme und Fernsehsendungen bieten wir auch eine der besten Auswahl an etwas, das die meisten nicht tun - FANRES! (Fanrestaurierung) Ein großes Dankeschön an unsere Content-Provider.',
+ 'aboutus-advantage3' => 'Wir nehmen zwar Spenden an, um die Website am Laufen zu halten, jedoch werden wir keine störenden PNs oder Banner schalten. Wir werden nicht betteln.',
+ 'aboutus-advantage4' => 'Unsere Community ist für ihr junges Alter unübertroffen. Zwischen unseren Team und der Userbase standen wir immer zur Verfügung. Wir sind mit Leidenschaft dabei, dass deine Erfahrungen auf :title unglaublich sein wird.',
+ 'aboutus-advantage5' => 'Unser Service wird täglich von vielen Menschen auf der ganzen Welt genutzt. Wir haben bewiesen, dass uns die Funktionalität und Sicherheit unserer Codebase am Herzen liegt und dass diese vertrauenswürdig und zuverlässig ist. Unsere Entwickler arbeiten täglich daran, eine wirklich nexgen Codebase bereitzustellen.',
+ 'aboutus-header' => 'Hallo',
+ 'aboutus-rules' => 'Was brauchen wir von dir?',
+ 'aboutus-rules1' => 'Um ein aktives Mitglied der Community zu sein! Dies bedeutet, an Gesprächen produktiv teilzunehmen, erlaubte Inhalte hinzuzufügen und anderen Nutzern möglichst zu helfen.',
+ 'aboutus-rules2' => 'Bitte lese die Regeln vollständig durch und respektieren sie!',
+ 'aboutus-rules3' => 'Vorschläge machen! Wir sind bestrebt, :title jeden Tag besser zu machen. Wir sagen nicht, dass jeder Vorschlag verwendet wird, aber es schadet nie, neue Ideen zu sehen.',
+ 'aboutus-welcome' => 'Lass uns reden über',
+ 'aboutus-welcome-desc' => ':title ist eine von der Community erstellte Film und TV Datenbank. Alle Torrents wurden von unserer erstaunlichen Community seit 2017 hinzugefügt. Der Schwerpunkt auf :title liegt bei HD-Torrents und Fanrestaurierungen, einer aktiven Userbase, einer tollen/sicheren Codebase und einem hilfsbereiten und freundlichen Team.',
+ 'blacklist-btclient' => 'Torrent-Client',
+ 'blacklist-clients' => 'Clients',
+ 'blacklist-desc' => 'Die folgenden Torrent-Clients sind verboten/gebannt und dürfen nicht zu :title annoncieren',
'blacklist-emaildomain' => 'Gesperrte Provider',
- 'email-blacklist-desc' => 'Die folgenden E-Mail-Provider sind gesperrt. Du kannst dich nicht mit den folgenden Providern registrieren oder Invites versenden.',
- 'email-whitelist-desc' => 'Die folgenden E-Mail-Provider sind die einzigen, die verwendet werden dürfen. Du kannst dich nur mit den folgenden Providern registrieren oder Invites versenden.',
- 'staff-group' => 'Gruppe',
- 'staff-title' => 'Titel',
+ 'email-blacklist-desc' => 'Die folgenden E-Mail-Provider sind gesperrt. Du kannst dich nicht mit den folgenden Providern registrieren oder Invites versenden.',
+ 'email-whitelist-desc' => 'Die folgenden E-Mail-Provider sind die einzigen, die verwendet werden dürfen. Du kannst dich nur mit den folgenden Providern registrieren oder Invites versenden.',
+ 'staff-group' => 'Gruppe',
+ 'staff-title' => 'Titel',
'whitelist-emaildomain' => 'Vertrauenswürdige Provider',
];
diff --git a/lang/de/pagination.php b/lang/de/pagination.php
index 27a1bc0f3..958591043 100644
--- a/lang/de/pagination.php
+++ b/lang/de/pagination.php
@@ -24,5 +24,5 @@ return [
*/
'previous' => '« Zurück',
- 'next' => 'Weiter »',
+ 'next' => 'Weiter »',
];
diff --git a/lang/de/passwords.php b/lang/de/passwords.php
index b8e0fd1a5..ecc17f6b9 100644
--- a/lang/de/passwords.php
+++ b/lang/de/passwords.php
@@ -24,8 +24,8 @@ return [
*/
'password' => 'Passwörter müssen mindestens 6 Zeichen lang sein und mit der Passwortwiederholung übereinstimmen.',
- 'reset' => 'Das Passwort wurde zurückgesetzt!',
- 'sent' => 'Wir haben dir den Link zum Zurücksetzen des Passworts per E-Mail zugeschickt!',
- 'token' => 'Der Passwort-Reset-Token ist ungültig oder abgelaufen.',
- 'user' => 'Es konnte leider kein Nutzer mit dieser E-Mail-Adresse gefunden werden.',
+ 'reset' => 'Das Passwort wurde zurückgesetzt!',
+ 'sent' => 'Wir haben dir den Link zum Zurücksetzen des Passworts per E-Mail zugeschickt!',
+ 'token' => 'Der Passwort-Reset-Token ist ungültig oder abgelaufen.',
+ 'user' => 'Es konnte leider kein Nutzer mit dieser E-Mail-Adresse gefunden werden.',
];
diff --git a/lang/de/playlist.php b/lang/de/playlist.php
index ae9ea95e6..6c874f164 100644
--- a/lang/de/playlist.php
+++ b/lang/de/playlist.php
@@ -12,26 +12,26 @@
*/
return [
- 'about' => 'Hier findest du von Nutzern erstelle Playlists!',
- 'attached-success' => 'Torrent wurde erfolgreich zur Playlist hinzugefügt.',
- 'add-to-playlist' => 'Torrent zur Playlist hinzufügen',
- 'add-torrent' => 'Torrent hinzufügen',
- 'added-by' => 'Von:',
- 'cover' => 'Ein Titelbild auswählen',
- 'create' => 'Neue Playlist erstellen',
- 'delete-playlist' => 'Playlist löschen',
- 'deleted' => 'Playlist gelöscht!',
- 'detached-success' => 'Torrent wurde erfolgreich von der Playslist entfernt.',
- 'desc' => 'Playlist Beschreibung',
- 'download-all' => 'Alle Playlist Torrents herunterladen',
- 'edit-playlist' => 'Playlist bearbeiten',
- 'list-by' => 'Eine Liste erstellt von:',
- 'list-about' => 'Eine Liste über:',
- 'is-private' => 'Private Playlist?',
- 'playlists' => 'Playlists',
- 'private-error' => 'Dies ist eine Private Playlist!',
+ 'about' => 'Hier findest du von Nutzern erstelle Playlists!',
+ 'attached-success' => 'Torrent wurde erfolgreich zur Playlist hinzugefügt.',
+ 'add-to-playlist' => 'Torrent zur Playlist hinzufügen',
+ 'add-torrent' => 'Torrent hinzufügen',
+ 'added-by' => 'Von:',
+ 'cover' => 'Ein Titelbild auswählen',
+ 'create' => 'Neue Playlist erstellen',
+ 'delete-playlist' => 'Playlist löschen',
+ 'deleted' => 'Playlist gelöscht!',
+ 'detached-success' => 'Torrent wurde erfolgreich von der Playslist entfernt.',
+ 'desc' => 'Playlist Beschreibung',
+ 'download-all' => 'Alle Playlist Torrents herunterladen',
+ 'edit-playlist' => 'Playlist bearbeiten',
+ 'list-by' => 'Eine Liste erstellt von:',
+ 'list-about' => 'Eine Liste über:',
+ 'is-private' => 'Private Playlist?',
+ 'playlists' => 'Playlists',
+ 'private-error' => 'Dies ist eine Private Playlist!',
'published-success' => 'Deine Playlist wurde erfolgreich erstellt!',
- 'title' => 'Titel',
- 'titles' => 'Titel',
- 'update-success' => 'Deine Playlist wurde erfolgreich aktualisiert!',
+ 'title' => 'Titel',
+ 'titles' => 'Titel',
+ 'update-success' => 'Deine Playlist wurde erfolgreich aktualisiert!',
];
diff --git a/lang/de/pm.php b/lang/de/pm.php
index b37d6eaa7..baa2566ec 100644
--- a/lang/de/pm.php
+++ b/lang/de/pm.php
@@ -13,32 +13,32 @@
return [
'all-marked-read' => 'Alle Nachrichten wurden als gelesen markiert!',
- 'create' => 'Erstellen',
- 'delete' => 'Löschen',
- 'delete-success' => 'Nachricht wurde erfolgreich gelöscht!',
- 'enter-subject' => 'Betreff eingeben',
- 'error' => 'Was versuchst du hier zu machen?!',
- 'from' => 'Von',
- 'inbox' => 'Posteingang',
- 'mark-all-read' => 'Alle Nachrichten als gelesen markieren',
- 'message' => 'Nachricht',
- 'messages' => 'Nachrichten',
- 'new' => 'Neue Nachricht',
- 'outbox' => 'Postausgang',
- 'private' => 'Private',
- 'read' => 'Gelesen',
- 'received-at' => 'Erhalten am',
- 'refresh' => 'Aktualisieren',
- 'reply' => 'Antworten',
- 'search' => 'Suche nach Betreff',
- 'select' => 'Wähle einen Nutzer aus',
- 'send' => 'PN senden',
- 'send-to' => 'PN senden an',
- 'sent' => 'Versendet',
- 'sent-at' => 'Versendet am',
- 'sent-success' => 'Deine Nachricht wurde erfolgreich versendet!',
- 'subject' => 'Betreff',
- 'to' => 'An',
- 'unread' => 'Ungelesen',
- 'empty-inbox' => 'Posteingang leeren',
+ 'create' => 'Erstellen',
+ 'delete' => 'Löschen',
+ 'delete-success' => 'Nachricht wurde erfolgreich gelöscht!',
+ 'enter-subject' => 'Betreff eingeben',
+ 'error' => 'Was versuchst du hier zu machen?!',
+ 'from' => 'Von',
+ 'inbox' => 'Posteingang',
+ 'mark-all-read' => 'Alle Nachrichten als gelesen markieren',
+ 'message' => 'Nachricht',
+ 'messages' => 'Nachrichten',
+ 'new' => 'Neue Nachricht',
+ 'outbox' => 'Postausgang',
+ 'private' => 'Private',
+ 'read' => 'Gelesen',
+ 'received-at' => 'Erhalten am',
+ 'refresh' => 'Aktualisieren',
+ 'reply' => 'Antworten',
+ 'search' => 'Suche nach Betreff',
+ 'select' => 'Wähle einen Nutzer aus',
+ 'send' => 'PN senden',
+ 'send-to' => 'PN senden an',
+ 'sent' => 'Versendet',
+ 'sent-at' => 'Versendet am',
+ 'sent-success' => 'Deine Nachricht wurde erfolgreich versendet!',
+ 'subject' => 'Betreff',
+ 'to' => 'An',
+ 'unread' => 'Ungelesen',
+ 'empty-inbox' => 'Posteingang leeren',
];
diff --git a/lang/de/poll.php b/lang/de/poll.php
index 3d4ceb1ae..02a22e26c 100644
--- a/lang/de/poll.php
+++ b/lang/de/poll.php
@@ -12,22 +12,22 @@
*/
return [
- 'add-option' => 'Option hinzufügen',
- 'already-voted-error' => 'Du hast bereits an dieser Umfrage teilgenommen. Deine Stimme wurde nicht gezählt.',
+ 'add-option' => 'Option hinzufügen',
+ 'already-voted-error' => 'Du hast bereits an dieser Umfrage teilgenommen. Deine Stimme wurde nicht gezählt.',
'already-voted-result' => 'Du hast bereits an dieser Umfrage teilgenommen. Hier sind die Ergebnisse.',
- 'create-poll' => 'Umfrage erstellen',
- 'current' => 'Aktuelle Umfragen',
- 'delete-option' => 'Option löschen',
- 'edit-poll' => 'Umfrage bearbeiten',
- 'multiple-choice' => 'Dies ist eine Multiple-Choice-Umfrage. Wähle so viele Antworten aus, wie du willst.',
- 'option' => 'Möglichkeit',
- 'poll' => 'Umfrage',
- 'polls' => 'Umfragen',
- 'results' => 'Umfrage-Ergebnisse',
- 'title' => 'Titel',
- 'total' => 'Gesamtstimmen bisher',
- 'vote' => 'Abstimmung',
- 'vote-counted' => 'Deine Stimme wurde gezählt.',
- 'vote-now' => 'Stimme jetzt ab!',
- 'votes' => 'Abstimmungen',
+ 'create-poll' => 'Umfrage erstellen',
+ 'current' => 'Aktuelle Umfragen',
+ 'delete-option' => 'Option löschen',
+ 'edit-poll' => 'Umfrage bearbeiten',
+ 'multiple-choice' => 'Dies ist eine Multiple-Choice-Umfrage. Wähle so viele Antworten aus, wie du willst.',
+ 'option' => 'Möglichkeit',
+ 'poll' => 'Umfrage',
+ 'polls' => 'Umfragen',
+ 'results' => 'Umfrage-Ergebnisse',
+ 'title' => 'Titel',
+ 'total' => 'Gesamtstimmen bisher',
+ 'vote' => 'Abstimmung',
+ 'vote-counted' => 'Deine Stimme wurde gezählt.',
+ 'vote-now' => 'Stimme jetzt ab!',
+ 'votes' => 'Abstimmungen',
];
diff --git a/lang/de/request.php b/lang/de/request.php
index 7eda9086e..d6e1956ee 100644
--- a/lang/de/request.php
+++ b/lang/de/request.php
@@ -12,89 +12,89 @@
*/
return [
- 'access-error' => 'Du hast keine Berechtigung, diesen Request zu genehmigen.',
+ 'access-error' => 'Du hast keine Berechtigung, diesen Request zu genehmigen.',
'access-delete-error' => 'Du hast keine Berechtigung, diesen Request zu löschen.',
- 'add-request' => 'Request hinzufügen',
- 'added-bonus' => 'Dein Bonus wurde erfolgreich hinzugefügt.',
- 'added-request' => 'Request hinzugefügt.',
- 'age' => 'Alter',
- 'all-requests' => 'Alle Requests',
- 'already-approved' => 'Es scheint, dass dieser Request bereits genehmigt wurde',
- 'already-claimed' => 'Jemand anderes hat diesen Request bereits erfüllt.',
- 'already-rejected' => 'Es scheint, dass dieser Request bereits abgelehnt wurde',
- 'approve' => 'Genehmigen',
- 'approved-anon' => 'Du hast %s genehmigt und das Bounty wurde an einen anonymen Benutzer ausgezahlt.',
- 'approved-user' => 'Du hast %s genehmigt und das Bounty wurde an %s ausgezahlt.',
- 'bounty' => 'Bounty',
- 'bounty-claimed' => 'Bounty beansprucht',
- 'bounty-unclaimed' => 'Bounty nicht beansprucht',
- 'category' => 'Kategorie',
- 'claim' => 'Anspruch',
- 'claim-anon-choose' => 'Bitte wähle weise',
- 'claim-as-anon' => 'Möchtest du dies auf anonyme Weise geltend machen?',
- 'claim-now' => 'Jetzt Erfüllen',
- 'claimed' => 'Erfüllt',
- 'claimed-success' => 'Request erfolgreich erfüllt',
- 'current' => 'Aktuell',
- 'delete' => 'Lösche diese Anfrage',
+ 'add-request' => 'Request hinzufügen',
+ 'added-bonus' => 'Dein Bonus wurde erfolgreich hinzugefügt.',
+ 'added-request' => 'Request hinzugefügt.',
+ 'age' => 'Alter',
+ 'all-requests' => 'Alle Requests',
+ 'already-approved' => 'Es scheint, dass dieser Request bereits genehmigt wurde',
+ 'already-claimed' => 'Jemand anderes hat diesen Request bereits erfüllt.',
+ 'already-rejected' => 'Es scheint, dass dieser Request bereits abgelehnt wurde',
+ 'approve' => 'Genehmigen',
+ 'approved-anon' => 'Du hast %s genehmigt und das Bounty wurde an einen anonymen Benutzer ausgezahlt.',
+ 'approved-user' => 'Du hast %s genehmigt und das Bounty wurde an %s ausgezahlt.',
+ 'bounty' => 'Bounty',
+ 'bounty-claimed' => 'Bounty beansprucht',
+ 'bounty-unclaimed' => 'Bounty nicht beansprucht',
+ 'category' => 'Kategorie',
+ 'claim' => 'Anspruch',
+ 'claim-anon-choose' => 'Bitte wähle weise',
+ 'claim-as-anon' => 'Möchtest du dies auf anonyme Weise geltend machen?',
+ 'claim-now' => 'Jetzt Erfüllen',
+ 'claimed' => 'Erfüllt',
+ 'claimed-success' => 'Request erfolgreich erfüllt',
+ 'current' => 'Aktuell',
+ 'delete' => 'Lösche diese Anfrage',
'delete-confirmation' => 'Möchtest du diesen Request wirklich löschen?',
- 'delete-filled' => 'Dieser Request kann nur gelöscht werden, wenn diese nicht Erfüllt wurde',
- 'deleted' => 'Du hast %s gelöscht',
- 'description' => 'Beschreibung',
- 'dont-have-bps' => 'Du hast nicht genug Bonuspunkte',
- 'edit-request' => 'Anfrage bearbeiten',
- 'edited-request' => 'Request erfolgreich bearbeitet.',
- 'enter-bp' => 'Bonuspunkte eingeben (mindestens 100)',
- 'enter-hash' => 'Gebe den Info-Hash des hochgeladenen Torrents ein',
- 'fill' => 'Erfüllen',
- 'fill-request' => 'Erfüllen diesen Request',
- 'filled' => 'Erfüllt',
- 'filled-by' => 'Erfüllt von',
- 'for' => 'zum',
- 'fulfill' => 'Erfüllen',
- 'last-vote' => 'Letzte Abstimmung',
- 'my-requests' => 'Meine Requests',
- 'my-filled' => 'Meine Erfüllungen',
- 'my-claims' => 'Meine Claims',
- 'my-voted' => 'Meine Votes',
- 'no' => 'Nr.',
- 'no-imdb-id' => 'Alle Requests müssen eine TMDB/IMDB-Nummer enthalten',
- 'no-privileges' => 'Fehler: Deine Request-Rechte wurden entzogen',
- 'no-privileges-desc' => 'Wenn du das Gefühl hast, dass dies falsch ist, wende dich bitte an das Team',
- 'no-refunds' => 'Ein Bonuspunkte-Austausch ist beim Erstellen von Requests endgültig!
KEINE RÜCKERSTATTUNG!',
- 'pending' => 'Ausstehend',
- 'pending-approval' => 'Die Requesterfüllung muss noch vom Requester genehmigt werden.',
- 'pending-moderation' => 'Der Torrent info_hash, den du versuchst zu verwenden, ist in unserer Datenbank gültig, wird aber noch zu moderation zurückgehalten. Warte bitte auf die Genehmigung deines Torrents und versuche es dann erneut.',
- 'reason' => 'Grund',
- 'reject' => 'Ablehnen',
- 'report' => 'Request melden',
- 'request' => 'Request',
- 'request-details' => 'Request-Details',
- 'request-reset' => 'Request wurde zurückgesetzt.',
- 'requested-by' => 'Requested von',
- 'requests' => 'Requests',
- 'required' => 'Erforderlich',
- 'reset' => 'Zurücksetzen',
- 'reset-confirmation' => 'Möchtest du diesen Request wirklich zurücksetzen?',
- 'reset-request' => 'Setze diese Request zurück',
- 'resolution' => 'Auflösung',
- 'resolutions' => 'Auflösungen',
- 'reward' => 'Belohnung',
- 'reward-desc' => 'Wie viel Bonuspunkt möchtest du belohnen? Minimum 100 Punkte',
- 'reward-from' => 'Von',
- 'title' => 'Titel',
- 'torrent-hash' => 'Torrent Hash',
- 'total-bounty' => 'Gesamt Bounty',
- 'type' => 'Typ',
- 'unclaim' => 'zurückziehen',
- 'unfilled' => 'Nicht erfüllt',
- 'unclaim-error' => 'Nichts zum Zurückziehen.',
- 'unclaimed-success' => 'Requesterfüllung erfolgreich zurückgezogen',
- 'view-filled' => 'Zeige erfüllte Requests',
- 'view-unfilled' => 'Zeige nicht erfüllte Request',
- 'vote' => 'Abstimmung',
- 'vote-that' => 'Stimme diesem Request zu',
- 'voters' => 'Wähler',
- 'votes' => 'Abstimmungen',
- 'yes' => 'Ja',
+ 'delete-filled' => 'Dieser Request kann nur gelöscht werden, wenn diese nicht Erfüllt wurde',
+ 'deleted' => 'Du hast %s gelöscht',
+ 'description' => 'Beschreibung',
+ 'dont-have-bps' => 'Du hast nicht genug Bonuspunkte',
+ 'edit-request' => 'Anfrage bearbeiten',
+ 'edited-request' => 'Request erfolgreich bearbeitet.',
+ 'enter-bp' => 'Bonuspunkte eingeben (mindestens 100)',
+ 'enter-hash' => 'Gebe den Info-Hash des hochgeladenen Torrents ein',
+ 'fill' => 'Erfüllen',
+ 'fill-request' => 'Erfüllen diesen Request',
+ 'filled' => 'Erfüllt',
+ 'filled-by' => 'Erfüllt von',
+ 'for' => 'zum',
+ 'fulfill' => 'Erfüllen',
+ 'last-vote' => 'Letzte Abstimmung',
+ 'my-requests' => 'Meine Requests',
+ 'my-filled' => 'Meine Erfüllungen',
+ 'my-claims' => 'Meine Claims',
+ 'my-voted' => 'Meine Votes',
+ 'no' => 'Nr.',
+ 'no-imdb-id' => 'Alle Requests müssen eine TMDB/IMDB-Nummer enthalten',
+ 'no-privileges' => 'Fehler: Deine Request-Rechte wurden entzogen',
+ 'no-privileges-desc' => 'Wenn du das Gefühl hast, dass dies falsch ist, wende dich bitte an das Team',
+ 'no-refunds' => 'Ein Bonuspunkte-Austausch ist beim Erstellen von Requests endgültig!
KEINE RÜCKERSTATTUNG!',
+ 'pending' => 'Ausstehend',
+ 'pending-approval' => 'Die Requesterfüllung muss noch vom Requester genehmigt werden.',
+ 'pending-moderation' => 'Der Torrent info_hash, den du versuchst zu verwenden, ist in unserer Datenbank gültig, wird aber noch zu moderation zurückgehalten. Warte bitte auf die Genehmigung deines Torrents und versuche es dann erneut.',
+ 'reason' => 'Grund',
+ 'reject' => 'Ablehnen',
+ 'report' => 'Request melden',
+ 'request' => 'Request',
+ 'request-details' => 'Request-Details',
+ 'request-reset' => 'Request wurde zurückgesetzt.',
+ 'requested-by' => 'Requested von',
+ 'requests' => 'Requests',
+ 'required' => 'Erforderlich',
+ 'reset' => 'Zurücksetzen',
+ 'reset-confirmation' => 'Möchtest du diesen Request wirklich zurücksetzen?',
+ 'reset-request' => 'Setze diese Request zurück',
+ 'resolution' => 'Auflösung',
+ 'resolutions' => 'Auflösungen',
+ 'reward' => 'Belohnung',
+ 'reward-desc' => 'Wie viel Bonuspunkt möchtest du belohnen? Minimum 100 Punkte',
+ 'reward-from' => 'Von',
+ 'title' => 'Titel',
+ 'torrent-hash' => 'Torrent Hash',
+ 'total-bounty' => 'Gesamt Bounty',
+ 'type' => 'Typ',
+ 'unclaim' => 'zurückziehen',
+ 'unfilled' => 'Nicht erfüllt',
+ 'unclaim-error' => 'Nichts zum Zurückziehen.',
+ 'unclaimed-success' => 'Requesterfüllung erfolgreich zurückgezogen',
+ 'view-filled' => 'Zeige erfüllte Requests',
+ 'view-unfilled' => 'Zeige nicht erfüllte Request',
+ 'vote' => 'Abstimmung',
+ 'vote-that' => 'Stimme diesem Request zu',
+ 'voters' => 'Wähler',
+ 'votes' => 'Abstimmungen',
+ 'yes' => 'Ja',
];
diff --git a/lang/de/rss.php b/lang/de/rss.php
index 22232a0aa..e09eb8adb 100644
--- a/lang/de/rss.php
+++ b/lang/de/rss.php
@@ -12,23 +12,23 @@
*/
return [
- 'create' => 'Erstellen',
+ 'create' => 'Erstellen',
'create-private-feed' => 'Erstelle einen privaten RSS-Feed',
- 'create-public-feed' => 'Erstelle einen öffentlichen RSS-Feed',
- 'created' => 'Privater RSS-Feed erstellt',
- 'delete' => 'Löschen',
- 'deleted' => 'RSS-Feed gelöscht!',
- 'edit' => 'Bearbeiten',
- 'edit-private-feed' => 'Privaten RSS-Feed bearbeiten',
- 'edit-public-feed' => 'Öffentlicher RSS-Feed bearbeiten',
- 'error' => 'Request kann nicht ausgeführt werden',
- 'feed' => 'Feed',
- 'feeds' => 'Feeds',
- 'name' => 'Name',
- 'public' => 'Öffentlich',
- 'private' => 'Privat',
- 'rss' => 'RSS',
- 'rss-feed' => 'RSS-Feed',
- 'type' => 'Art',
- 'updated' => 'Privater RSS-Feed aktualisiert',
+ 'create-public-feed' => 'Erstelle einen öffentlichen RSS-Feed',
+ 'created' => 'Privater RSS-Feed erstellt',
+ 'delete' => 'Löschen',
+ 'deleted' => 'RSS-Feed gelöscht!',
+ 'edit' => 'Bearbeiten',
+ 'edit-private-feed' => 'Privaten RSS-Feed bearbeiten',
+ 'edit-public-feed' => 'Öffentlicher RSS-Feed bearbeiten',
+ 'error' => 'Request kann nicht ausgeführt werden',
+ 'feed' => 'Feed',
+ 'feeds' => 'Feeds',
+ 'name' => 'Name',
+ 'public' => 'Öffentlich',
+ 'private' => 'Privat',
+ 'rss' => 'RSS',
+ 'rss-feed' => 'RSS-Feed',
+ 'type' => 'Art',
+ 'updated' => 'Privater RSS-Feed aktualisiert',
];
diff --git a/lang/de/staff.php b/lang/de/staff.php
index 7a8a16127..32e9fd9b3 100644
--- a/lang/de/staff.php
+++ b/lang/de/staff.php
@@ -12,59 +12,59 @@
*/
return [
- 'audit-log' => 'Aktivitäts-Log',
- 'articles' => 'Artikel',
- 'application' => 'Bewerbung',
- 'applications' => 'Bewerbungen',
- 'application-type' => 'Typ',
- 'application-image-proofs'=> 'Foto Proofs',
- 'application-referrer' => 'Referent',
- 'article-content' => 'Inhalt',
- 'bans-log' => 'Ban Log',
- 'blocks' => 'Blöcke',
- 'bot' => 'Bot',
- 'bots' => 'Bots',
- 'chat' => 'Chat',
- 'config-manager' => 'Config Manager',
- 'dashboard' => 'Dashboard',
- 'failed-login-log' => 'Fehlgeschlagene Anmeldungen',
- 'flush-ghost-peers' => 'Flush Ghost Peers',
- 'forums' => 'Foren',
- 'frontend' => 'Frontend',
- 'general-tools' => 'Allgemeine Tools',
- 'groups' => 'Gruppen',
- 'invites-log' => 'Invite Log',
- 'laravel-log' => 'Laravel Log',
- 'link' => 'Link',
- 'links' => 'Links',
- 'logs' => 'Protokolle',
- 'mass-pm' => 'Mass PM',
- 'mass-validate-users' => 'Massen-Nutzer-Validierung',
- 'media-languages-desc' => '(Benutzte Sprachen um die Dropdowns für Untertitel/Audio/etc. zu füllen)',
- 'moderation' => 'Moderation',
- 'moderation-since' => 'Moderiert seit',
- 'page' => 'Seite',
- 'pages' => 'Seiten',
- 'please-moderate' => 'Bitte Torrent moderieren!',
- 'polls' => 'Umfragen',
- 'reports-log' => 'Report Log',
- 'rooms' => 'Räume',
- 'rss' => 'RSS',
- 'staff-dashboard' => 'Team Dashboard',
- 'torrent-categories' => 'Torrent Kategorien',
- 'torrent-moderation' => 'Torrent Moderation',
- 'torrent-tools' => 'Torrent Werkzeuge',
- 'torrent-types' => 'Torrent Typen',
- 'torrent-resolutions' => 'Torrent Auflösungen',
- 'torrents' => 'Torrents',
- 'user-gifting' => 'Nutzer Gifting',
- 'user-notes' => 'Nutzer Anmerkungs Log',
- 'user-search' => 'Nutzer Suche',
- 'user-tools' => 'Nutzer Tools',
- 'warnings-log' => 'Verwarnungen Log',
- 'you-have' => 'Du hast',
+ 'audit-log' => 'Aktivitäts-Log',
+ 'articles' => 'Artikel',
+ 'application' => 'Bewerbung',
+ 'applications' => 'Bewerbungen',
+ 'application-type' => 'Typ',
+ 'application-image-proofs' => 'Foto Proofs',
+ 'application-referrer' => 'Referent',
+ 'article-content' => 'Inhalt',
+ 'bans-log' => 'Ban Log',
+ 'blocks' => 'Blöcke',
+ 'bot' => 'Bot',
+ 'bots' => 'Bots',
+ 'chat' => 'Chat',
+ 'config-manager' => 'Config Manager',
+ 'dashboard' => 'Dashboard',
+ 'failed-login-log' => 'Fehlgeschlagene Anmeldungen',
+ 'flush-ghost-peers' => 'Flush Ghost Peers',
+ 'forums' => 'Foren',
+ 'frontend' => 'Frontend',
+ 'general-tools' => 'Allgemeine Tools',
+ 'groups' => 'Gruppen',
+ 'invites-log' => 'Invite Log',
+ 'laravel-log' => 'Laravel Log',
+ 'link' => 'Link',
+ 'links' => 'Links',
+ 'logs' => 'Protokolle',
+ 'mass-pm' => 'Mass PM',
+ 'mass-validate-users' => 'Massen-Nutzer-Validierung',
+ 'media-languages-desc' => '(Benutzte Sprachen um die Dropdowns für Untertitel/Audio/etc. zu füllen)',
+ 'moderation' => 'Moderation',
+ 'moderation-since' => 'Moderiert seit',
+ 'page' => 'Seite',
+ 'pages' => 'Seiten',
+ 'please-moderate' => 'Bitte Torrent moderieren!',
+ 'polls' => 'Umfragen',
+ 'reports-log' => 'Report Log',
+ 'rooms' => 'Räume',
+ 'rss' => 'RSS',
+ 'staff-dashboard' => 'Team Dashboard',
+ 'torrent-categories' => 'Torrent Kategorien',
+ 'torrent-moderation' => 'Torrent Moderation',
+ 'torrent-tools' => 'Torrent Werkzeuge',
+ 'torrent-types' => 'Torrent Typen',
+ 'torrent-resolutions' => 'Torrent Auflösungen',
+ 'torrents' => 'Torrents',
+ 'user-gifting' => 'Nutzer Gifting',
+ 'user-notes' => 'Nutzer Anmerkungs Log',
+ 'user-search' => 'Nutzer Suche',
+ 'user-tools' => 'Nutzer Tools',
+ 'warnings-log' => 'Verwarnungen Log',
+ 'you-have' => 'Du hast',
'possible-leech-cheaters' => 'Mögliche Cheater',
- 'chat-tools' => 'Chat Tools',
- 'flush-chat' => 'Chatbox leeren',
- 'seedboxes' => 'Registrierte Seedboxen',
+ 'chat-tools' => 'Chat Tools',
+ 'flush-chat' => 'Chatbox leeren',
+ 'seedboxes' => 'Registrierte Seedboxen',
];
diff --git a/lang/de/stat.php b/lang/de/stat.php
index 8adfa2fc8..2fd39c939 100644
--- a/lang/de/stat.php
+++ b/lang/de/stat.php
@@ -12,51 +12,51 @@
*/
return [
- 'active' => 'Aktive',
- 'all' => 'Alle',
- 'all-time' => 'Alle Bisher',
- 'banned' => 'Verbannte',
- 'by-count' => 'Nach Anzahl',
- 'by-data' => 'Nach Größe',
- 'by-volume' => 'Nach Traffic',
- 'credited' => 'Gutgeschrieben',
- 'disabled' => 'Deaktivierte',
- 'group' => 'Gruppe',
- 'groups' => 'Gruppen',
- 'last30days' => 'Letzte 30 Tage',
- 'nerd-stats' => 'Nerd-Statistiken',
- 'nerd-stats-desc' => 'Wir alle lieben Statistiken. Hier einige, die wir wichtig finden',
- 'place' => 'Ort',
- 'pruned' => 'Deaktivierte',
- 'real' => '',
- 'registration-date' => 'Registrierungs-Datum',
- 'request-fulfilled' => 'Request erfüllt',
- 'request-not-fulfilled' => 'Request nicht erfüllt',
+ 'active' => 'Aktive',
+ 'all' => 'Alle',
+ 'all-time' => 'Alle Bisher',
+ 'banned' => 'Verbannte',
+ 'by-count' => 'Nach Anzahl',
+ 'by-data' => 'Nach Größe',
+ 'by-volume' => 'Nach Traffic',
+ 'credited' => 'Gutgeschrieben',
+ 'disabled' => 'Deaktivierte',
+ 'group' => 'Gruppe',
+ 'groups' => 'Gruppen',
+ 'last30days' => 'Letzte 30 Tage',
+ 'nerd-stats' => 'Nerd-Statistiken',
+ 'nerd-stats-desc' => 'Wir alle lieben Statistiken. Hier einige, die wir wichtig finden',
+ 'place' => 'Ort',
+ 'pruned' => 'Deaktivierte',
+ 'real' => '',
+ 'registration-date' => 'Registrierungs-Datum',
+ 'request-fulfilled' => 'Request erfüllt',
+ 'request-not-fulfilled' => 'Request nicht erfüllt',
'request-pending-aproval' => 'Noch ausstehende Request Genehmigung',
- 'select-category' => 'Bitte wähle eine Kategorie aus',
- 'site-stats' => 'Seiten-Statistiken',
- 'stats' => 'Statistiken',
- 'stats-format' => 'Alle Statistiken werden im Top-100-Format angezeigt',
- 'top-bankers' => 'Top Punkte-Hoarder',
- 'top-bountied' => 'Top Bountied',
- 'top-completed' => 'Top Abgeschlossen',
- 'top-dead' => 'Top Tot',
- 'top-downloaded' => 'Top Heruntergeladene Torrents',
- 'top-downloaders' => 'Top Downloader',
- 'top-dying' => 'Top Sterbend',
- 'top-leeched' => 'Top Leecher',
- 'top-leechers' => 'Top Leecher',
- 'top-seeded' => 'Top Seeded',
- 'top-seeding' => 'Top Seeding',
- 'top-seeders' => 'Top Seeder',
- 'top-seedsize' => 'Top Seedgröße',
- 'top-seedtime' => 'Top Seedzeit',
- 'top-uploaders' => 'Top Uploader',
- 'total-download' => 'Total Download',
- 'total-torrents' => 'Total Torrents',
- 'total-traffic' => 'Total Traffic',
- 'total-upload' => 'Total Upload',
- 'updated' => '(Wird alle 10 Minuten aktualisiert!)',
- 'users-in-group' => 'Nutzer in der Gruppe',
- 'users-per-group' => 'Nutzer pro Gruppe',
+ 'select-category' => 'Bitte wähle eine Kategorie aus',
+ 'site-stats' => 'Seiten-Statistiken',
+ 'stats' => 'Statistiken',
+ 'stats-format' => 'Alle Statistiken werden im Top-100-Format angezeigt',
+ 'top-bankers' => 'Top Punkte-Hoarder',
+ 'top-bountied' => 'Top Bountied',
+ 'top-completed' => 'Top Abgeschlossen',
+ 'top-dead' => 'Top Tot',
+ 'top-downloaded' => 'Top Heruntergeladene Torrents',
+ 'top-downloaders' => 'Top Downloader',
+ 'top-dying' => 'Top Sterbend',
+ 'top-leeched' => 'Top Leecher',
+ 'top-leechers' => 'Top Leecher',
+ 'top-seeded' => 'Top Seeded',
+ 'top-seeding' => 'Top Seeding',
+ 'top-seeders' => 'Top Seeder',
+ 'top-seedsize' => 'Top Seedgröße',
+ 'top-seedtime' => 'Top Seedzeit',
+ 'top-uploaders' => 'Top Uploader',
+ 'total-download' => 'Total Download',
+ 'total-torrents' => 'Total Torrents',
+ 'total-traffic' => 'Total Traffic',
+ 'total-upload' => 'Total Upload',
+ 'updated' => '(Wird alle 10 Minuten aktualisiert!)',
+ 'users-in-group' => 'Nutzer in der Gruppe',
+ 'users-per-group' => 'Nutzer pro Gruppe',
];
diff --git a/lang/de/subtitle.php b/lang/de/subtitle.php
index 6efc07146..e4b5d4081 100644
--- a/lang/de/subtitle.php
+++ b/lang/de/subtitle.php
@@ -12,13 +12,13 @@
*/
return [
- 'downloads' => 'Downloads',
- 'extension' => 'Erweiterungen',
- 'delete-confirm' => 'Bist du sicher, dass du dies löschen möchten?',
- 'note' => 'Notiz',
- 'note-help' => 'Extra Info für diesen Untertitel',
- 'rules-title' => 'Untertitel Regeln!',
- 'rules' => '
+ 'downloads' => 'Downloads',
+ 'extension' => 'Erweiterungen',
+ 'delete-confirm' => 'Bist du sicher, dass du dies löschen möchten?',
+ 'note' => 'Notiz',
+ 'note-help' => 'Extra Info für diesen Untertitel',
+ 'rules-title' => 'Untertitel Regeln!',
+ 'rules' => '
- Es dürfen nur korrekte Untertitel hochgeladen werden (korrekte Framerate. Übersetzung, Rechtschreibung, Timing).
- Keine Google-Übersetzung / maschinelle Übersetzung / falsche Untertitel erlaubt.
- Die Untertitel müssen mit dem Video synchron sein.
@@ -27,9 +27,9 @@ return [
- Halte die Notiz des Untertitels kurz. Es sind KEINE Urls/Links erlaubt.
- Alle Untertitel müssen Bestätigt, Verifiziert und richtig getimed sein für den jeweilgen Torrent.
',
- 'size' => 'Größe',
- 'subtitle-file' => 'Untertitel Datei',
- 'subtitle-file-types' => 'Akzeptierte Dateien sind ICO, SRT, SUP, ASS und ZIP',
- 'uploaded' => 'Hochgeladen',
- 'uploader' => 'Uploader',
+ 'size' => 'Größe',
+ 'subtitle-file' => 'Untertitel Datei',
+ 'subtitle-file-types' => 'Akzeptierte Dateien sind ICO, SRT, SUP, ASS und ZIP',
+ 'uploaded' => 'Hochgeladen',
+ 'uploader' => 'Uploader',
];
diff --git a/lang/de/ticket.php b/lang/de/ticket.php
index cb37da879..7ec510717 100644
--- a/lang/de/ticket.php
+++ b/lang/de/ticket.php
@@ -12,35 +12,35 @@
*/
return [
- 'assign' => 'Zuweisen',
- 'assigned-staff' => 'Zugewiesenes Team-Mitglied',
- 'assigned-success' => 'Helpdesk Ticket wurde erfolgreich zugewiesen!',
- 'attachments' => 'Anhänge',
- 'attachments-save' => 'Anhänge speichern',
- 'body' => 'Inhalt',
- 'body-enter' => 'Inhalt hier eingeben...',
- 'category' => 'Kategorie',
- 'close' => 'Schließen',
- 'closed' => 'Geschlossen',
- 'closed-success' => 'Helpdesk Ticket wurde erfolgreich geschlossen!',
- 'create-ticket' => 'Ticket erstellen',
- 'created' => 'Erstellt',
- 'created-success' => 'Dein Helpdesk Ticket wurde erfolgreich erstellt!',
- 'delete' => 'Löschen',
- 'deleted-success' => 'Dein Helpdesk Ticket wurde erfolgreich gelöscht!',
- 'description' => 'Beschreibung',
- 'download' => 'Download',
- 'fix-errors' => 'Bitte behebe folgende Fehler und versuche es nochmal:',
- 'helpdesk' => 'Helpdesk',
- 'no-attach' => 'Keine Anhänge gefunden',
- 'priority' => 'Priorität',
- 'opened-by' => 'Geöffnet von:',
- 'reset' => 'Reset',
- 'subject' => 'Betreff',
- 'subject-enter' => 'Betreff hier eingeben...',
- 'submit-ticket' => 'Ticket absenden',
- 'ticket' => 'Ticket',
- 'unassign' => 'Zuweisung zurückziehen',
+ 'assign' => 'Zuweisen',
+ 'assigned-staff' => 'Zugewiesenes Team-Mitglied',
+ 'assigned-success' => 'Helpdesk Ticket wurde erfolgreich zugewiesen!',
+ 'attachments' => 'Anhänge',
+ 'attachments-save' => 'Anhänge speichern',
+ 'body' => 'Inhalt',
+ 'body-enter' => 'Inhalt hier eingeben...',
+ 'category' => 'Kategorie',
+ 'close' => 'Schließen',
+ 'closed' => 'Geschlossen',
+ 'closed-success' => 'Helpdesk Ticket wurde erfolgreich geschlossen!',
+ 'create-ticket' => 'Ticket erstellen',
+ 'created' => 'Erstellt',
+ 'created-success' => 'Dein Helpdesk Ticket wurde erfolgreich erstellt!',
+ 'delete' => 'Löschen',
+ 'deleted-success' => 'Dein Helpdesk Ticket wurde erfolgreich gelöscht!',
+ 'description' => 'Beschreibung',
+ 'download' => 'Download',
+ 'fix-errors' => 'Bitte behebe folgende Fehler und versuche es nochmal:',
+ 'helpdesk' => 'Helpdesk',
+ 'no-attach' => 'Keine Anhänge gefunden',
+ 'priority' => 'Priorität',
+ 'opened-by' => 'Geöffnet von:',
+ 'reset' => 'Reset',
+ 'subject' => 'Betreff',
+ 'subject-enter' => 'Betreff hier eingeben...',
+ 'submit-ticket' => 'Ticket absenden',
+ 'ticket' => 'Ticket',
+ 'unassign' => 'Zuweisung zurückziehen',
'unassigned-success' => 'Zuweisung vom Helpdesk Ticket erfolgreich zurückgezogen!',
- 'updated-success' => 'Dein Helpdesk Ticket wurde erfolgreich aktualisiert!',
+ 'updated-success' => 'Dein Helpdesk Ticket wurde erfolgreich aktualisiert!',
];
diff --git a/lang/de/torrent.php b/lang/de/torrent.php
index ed9e377bd..0cf2d9e91 100644
--- a/lang/de/torrent.php
+++ b/lang/de/torrent.php
@@ -12,226 +12,226 @@
*/
return [
- 'activity' => 'Aktivität',
- 'add-to-playlist' => 'Zur Playlist hinzufügen',
- 'age' => 'Alter',
- 'agent' => 'Agent',
- 'alive' => 'Am Leben',
- 'announce-url' => 'Announce URL',
- 'announce-url-desc' => 'Beim erstellen eines Torrents muss die Announce-URL wie oben angegeben eingetragen werden. Wenn du den Torrent verwenden möchtest, ohne ihn von der Seite herunterzuladen, muss dieser auf Privat und die Quelle auf :source gesetzt werden',
- 'announce-url-desc-url' => 'Probleme? HIER findest du unseren Guide',
- 'announce-url-desc2' => 'TMDB und IMDB sind für alle Film/TV Uploads erforderlich! Es wird verwendet, um Poster/Hintergrundbildern und andere Meta-Daten zu parsen',
- 'approved' => 'Genehmigt',
- 'audio' => 'Audio',
- 'bon-tipped' => 'Bonus Tringeld',
- 'bookmark' => 'Lesezeichen',
- 'bookmarks' => 'Lesezeichen',
- 'bump' => 'Torrent an erster Stelle verschieben',
- 'cant-upload' => 'Fehler: Du hast keine Upload-Rechte',
- 'cant-upload-desc' => 'Wenn du glaubst, dass dies ein Fehler ist, wende dich bitte an das Team',
- 'cards' => 'Kacheln',
- 'cards-view' => 'Torrent-Kachelansicht',
- 'categories' => 'Kategorien',
- 'category' => 'Kategorie',
- 'client' => 'Client',
- 'commited' => 'Engagierter',
- 'completed' => 'Abgeschlossen',
- 'completed_at' => 'Abgeschlossen am',
- 'completed-not-seeding' => 'Du hast diesen Download abgeschlossen, seedest aber nicht mehr',
- 'completed-times' => 'Anzahl Abgeschlossen',
- 'created_at' => 'Erstellt am',
- 'credited' => 'Gutgeschrieben',
- 'current' => 'Aktuell',
- 'current-filters' => 'Aktuelle Filter',
- 'currently-leeching' => 'Aktuell im Leech',
- 'currently-seeding' => 'Aktuell im Seed',
- 'date' => 'Datum',
- 'dead-torrent' => 'Toter Torrent',
- 'dead-torrents' => 'Tote Torrents',
- 'define-tip-amount' => 'Trinkgeldbetrag festlegen',
- 'delete-bookmark' => 'Dieses Lesezeichen löschen',
- 'description' => 'Beschreibung',
- 'discounts' => 'Rabatte',
- 'double-upload' => 'Doppelter Upload',
- 'download-all' => 'Alles herunterladen',
- 'download-check' => 'Download Check',
- 'download-rights-active' => 'Download Rechte Aktiv',
- 'downloaded' => 'Heruntergeladen',
- 'dying-torrent' => 'Sterbender Torrent',
- 'dying-torrents' => 'Sterbende Torrents',
- 'encode-settings' => 'Encode Settings',
- 'end-year' => 'Jahres Ende',
- 'episode-number' => 'Episoden Nummer',
- 'estimated-ratio' => 'Geschätzte Ratio nach dem Download',
- 'failed' => 'Fehlgeschlagen',
- 'feature' => 'Vorgestellt',
- 'featured' => 'Vorgestellt',
- 'featured-desc' => 'Ausgewählte Torrents sind 100% kostenlos, sowie Doppelter Upload!',
- 'featured-until' => 'Dies ist ein vorgestellter Torrent bis',
- 'file' => 'Datei',
- 'filters' => 'Filter',
- 'fl-tokens-left' => 'Du hast :tokens Tokens übrig',
- 'freeleech' => 'Freeleech',
- 'freeleech-token' => 'Freeleech Token',
- 'general' => 'Allgemeines',
- 'genre' => 'Genre',
- 'genre-tags' => 'Genre Tags',
- 'global-double-upload' => 'Global Doppelter Upload',
- 'global-freeleech' => 'Global Freeleech',
- 'grant' => 'Gewähre',
- 'greater-than' => 'Größer als',
- 'grouping' => 'Gruppierung',
- 'groupings' => 'Gruppiert',
- 'grouping-categories' => 'Gruppierte Kategorien',
+ 'activity' => 'Aktivität',
+ 'add-to-playlist' => 'Zur Playlist hinzufügen',
+ 'age' => 'Alter',
+ 'agent' => 'Agent',
+ 'alive' => 'Am Leben',
+ 'announce-url' => 'Announce URL',
+ 'announce-url-desc' => 'Beim erstellen eines Torrents muss die Announce-URL wie oben angegeben eingetragen werden. Wenn du den Torrent verwenden möchtest, ohne ihn von der Seite herunterzuladen, muss dieser auf Privat und die Quelle auf :source gesetzt werden',
+ 'announce-url-desc-url' => 'Probleme? HIER findest du unseren Guide',
+ 'announce-url-desc2' => 'TMDB und IMDB sind für alle Film/TV Uploads erforderlich! Es wird verwendet, um Poster/Hintergrundbildern und andere Meta-Daten zu parsen',
+ 'approved' => 'Genehmigt',
+ 'audio' => 'Audio',
+ 'bon-tipped' => 'Bonus Tringeld',
+ 'bookmark' => 'Lesezeichen',
+ 'bookmarks' => 'Lesezeichen',
+ 'bump' => 'Torrent an erster Stelle verschieben',
+ 'cant-upload' => 'Fehler: Du hast keine Upload-Rechte',
+ 'cant-upload-desc' => 'Wenn du glaubst, dass dies ein Fehler ist, wende dich bitte an das Team',
+ 'cards' => 'Kacheln',
+ 'cards-view' => 'Torrent-Kachelansicht',
+ 'categories' => 'Kategorien',
+ 'category' => 'Kategorie',
+ 'client' => 'Client',
+ 'commited' => 'Engagierter',
+ 'completed' => 'Abgeschlossen',
+ 'completed_at' => 'Abgeschlossen am',
+ 'completed-not-seeding' => 'Du hast diesen Download abgeschlossen, seedest aber nicht mehr',
+ 'completed-times' => 'Anzahl Abgeschlossen',
+ 'created_at' => 'Erstellt am',
+ 'credited' => 'Gutgeschrieben',
+ 'current' => 'Aktuell',
+ 'current-filters' => 'Aktuelle Filter',
+ 'currently-leeching' => 'Aktuell im Leech',
+ 'currently-seeding' => 'Aktuell im Seed',
+ 'date' => 'Datum',
+ 'dead-torrent' => 'Toter Torrent',
+ 'dead-torrents' => 'Tote Torrents',
+ 'define-tip-amount' => 'Trinkgeldbetrag festlegen',
+ 'delete-bookmark' => 'Dieses Lesezeichen löschen',
+ 'description' => 'Beschreibung',
+ 'discounts' => 'Rabatte',
+ 'double-upload' => 'Doppelter Upload',
+ 'download-all' => 'Alles herunterladen',
+ 'download-check' => 'Download Check',
+ 'download-rights-active' => 'Download Rechte Aktiv',
+ 'downloaded' => 'Heruntergeladen',
+ 'dying-torrent' => 'Sterbender Torrent',
+ 'dying-torrents' => 'Sterbende Torrents',
+ 'encode-settings' => 'Encode Settings',
+ 'end-year' => 'Jahres Ende',
+ 'episode-number' => 'Episoden Nummer',
+ 'estimated-ratio' => 'Geschätzte Ratio nach dem Download',
+ 'failed' => 'Fehlgeschlagen',
+ 'feature' => 'Vorgestellt',
+ 'featured' => 'Vorgestellt',
+ 'featured-desc' => 'Ausgewählte Torrents sind 100% kostenlos, sowie Doppelter Upload!',
+ 'featured-until' => 'Dies ist ein vorgestellter Torrent bis',
+ 'file' => 'Datei',
+ 'filters' => 'Filter',
+ 'fl-tokens-left' => 'Du hast :tokens Tokens übrig',
+ 'freeleech' => 'Freeleech',
+ 'freeleech-token' => 'Freeleech Token',
+ 'general' => 'Allgemeines',
+ 'genre' => 'Genre',
+ 'genre-tags' => 'Genre Tags',
+ 'global-double-upload' => 'Global Doppelter Upload',
+ 'global-freeleech' => 'Global Freeleech',
+ 'grant' => 'Gewähre',
+ 'greater-than' => 'Größer als',
+ 'grouping' => 'Gruppierung',
+ 'groupings' => 'Gruppiert',
+ 'grouping-categories' => 'Gruppierte Kategorien',
'grouping-categories-desc' => 'Welche Kategorie möchtest du gruppieren?',
- 'grouping-results' => 'Ergebnisse gruppieren',
- 'groupings-view' => 'Gruppierungs-Ansicht',
- 'have-completed' => 'Abgeschlossen',
- 'have-downloaded' => 'Heruntergeladen',
- 'have-not-completed' => 'Nicht Abgeschlossen',
- 'have-not-downloaded' => 'Nicht Heruntergeladen',
- 'health' => 'Zustand',
- 'history' => 'Verlauf',
- 'hitrun' => 'H&R?',
- 'hit-and-runs' => 'Hit and Run Anzahl',
- 'immune' => 'Immun?',
- 'info' => 'Info',
- 'info-hash' => 'Info Hash',
- 'internal' => 'Intern',
- 'internal-release' => 'Interner Release',
- 'keywords' => 'Stichwörter',
- 'keywords-example' => 'Beispiel: superheld, dc comics, marvel',
- 'last-seed-activity' => 'Letzte Seed Aktivität',
- 'last-seeder' => 'Du bist der letzte verbleibende Seeder! (wurde mindestens 3 mal heruntergeladen)',
- 'last-update' => 'Letztes Update',
- 'leave-tip' => 'Trinkgeld geben',
- 'leecher' => 'Leecher',
- 'leechers' => 'Leechers',
- 'leeching' => 'Leeching',
- 'left' => 'Verbleibend',
- 'legendary-seeder' => 'Legendäre Seeder',
- 'legendary-torrent' => 'Legendärer Torrent',
- 'list' => 'Liste',
- 'me' => 'Ich',
- 'media-info' => 'MediaInfo',
- 'media-info-parser' => 'MediaInfo-Parser',
- 'media-info-paste' => 'Füge hier die MediaInfo ein',
- 'meta-desc' => 'Downloade :name mit maximaler Geschwindigkeit',
- 'moderation' => 'Moderation',
- 'movies' => 'Filme',
- 'mvp' => 'MVP',
- 'my-active-torrents' => 'Meine aktiven Torrents',
- 'name' => 'Name',
- 'no-bookmarks' => 'Es wurden keine Lesezeichen gefunden.',
- 'no-discounts' => 'Derzeit keine Rabatte',
- 'no-meta' => 'Keine Metadaten gefunden',
- 'no-privileges' => 'Du kannst diese Datei nicht herunterladen. Weitere Informationen findest du unten',
- 'no-privileges-desc' => 'Bitte löse die Probleme oben, damit der Download-Button angezeigt wird',
- 'not-completed' => 'Der Download wurde gestartet, wurde aber nie abgeschlossen',
- 'not-downloaded' => 'Nicht Heruntergeladen',
- 'not-seeding' => 'Seeded nicht',
- 'old-torrent' => 'Alter Torrent',
- 'optional' => 'Optional',
- 'original-output' => 'Originalausgabe anzeigen / verbergen',
- 'participant' => 'Teilnehmer',
- 'passed' => 'Abgeschlossen',
- 'peers' => 'Peers',
- 'pending' => 'Ausstehend',
- 'personal-freeleech' => 'Persönlicher Freeleech',
- 'poster' => 'Poster',
- 'poster-view' => 'Poster-Ansicht',
- 'posters' => 'Poster',
- 'postponed-torrents' => 'Zur Prüfung ausstehende Torrents',
- 'prewarn' => 'Vorgewarnt?',
- 'progress' => 'Fortschritt',
- 'publish-time' => 'Zeit der Veröffentlichung',
- 'quick-comment' => 'Schnelle Dank-Sagung',
- 'quick-tip' => 'Schnelle Trinkgeldbeträge',
- 'rated' => 'Bewertet',
- 'rating' => 'Bewertung',
- 'ready' => 'Diese Datei steht zum Download bereit',
- 'recent-bumped' => 'Zuletzt nach oben verschoben',
- 'recommendations' => 'Empfehlungen',
- 'rejected' => 'Abgelehnt',
- 'released' => 'Veröffentlicht',
- 'remaining' => 'Verbleibend',
- 'request-reseed' => 'Request Reseed',
- 'required-anime' => 'Erforderlich für Anime',
- 'required-games' => 'Erforderlich für Games',
- 'requires-reseed' => 'Benötigt Reseed',
- 'resolution' => 'Auflösung',
- 'resolutions' => 'Auflösungen',
- 'resurrections' => 'Wiederbelebt',
- 'revoke' => 'Widerrufen',
- 'revokefeatured' => 'Widerrufe Vorgestellt',
- 'rss' => 'RSS',
- 'runtime' => 'Laufzeit',
- 'satisfied_in' => 'Zufrieden in',
- 'say-thanks' => 'Bitte denke daran Danke zu sagen und so lange wie möglich zu Seeden',
- 'sd-content' => 'SD Content',
- 'search' => 'Suche',
- 'search-by-name' => 'Suche nach Name',
- 'season-number' => 'Staffel Nummer',
- 'seed-time' => 'Seedzeit',
- 'seeder' => 'Seeder',
- 'seeders' => 'Seeders',
- 'seeding' => 'Seeds',
- 'seedsize' => 'Seedgröße',
- 'seedtime' => 'Seedzeit',
- 'short-completed' => 'C',
- 'short-leechs' => 'L',
- 'short-seeds' => 'S',
- 'show-files' => 'Zeige Dateien',
- 'similar' => 'Ähnliche Torrents',
- 'size' => 'Größe',
- 'special' => 'Speziell',
- 'special-double_upload' => 'Spezieller Doppel Upload',
- 'special-freeleech' => 'Spezieller Freeleech',
- 'staff-tools' => 'Team Tools',
- 'start-year' => 'Start Jahr',
- 'started' => 'Gestartet',
- 'status' => 'Status',
- 'statistics' => 'Statistiken',
- 'stats' => 'Statistiken',
- 'sticky' => 'Angepinnt',
- 'stream-optimized' => 'Stream optimiert',
- 'subtitle' => 'Untertitel',
- 'subtitle-included' => 'Dieser Torrent enthält bereits die folgenden eingemuxten Untertitel:',
- 'team-player' => 'Teamspieler',
- 'thank' => 'Dank dem',
- 'thanked' => 'Dankte',
- 'thanks' => 'Vielen Dank',
- 'thanks-given' => 'Danke gegeben',
- 'times' => 'mal',
- 'tip-jar' => 'Trinkgeld Glas',
- 'title' => 'Titel',
- 'titles' => 'Titel',
- 'top-completed' => 'Top Abgeschlossen',
- 'top-dead' => 'Top Tot',
- 'top-dying' => 'Top Sterbend',
- 'top-leeched' => 'Top Leeched',
- 'top-seeded' => 'Top Seeded',
- 'torrent' => 'Torrent',
- 'torrent-request' => 'Torrent Request',
- 'torrent-tips' => 'Insgesamt :total Bonus-Punkte wurde dem Uploader übergeben, von denen sind :user von dir',
- 'torrent-tips-desc' => 'Dies wird von deinen verfügbaren Bonuspunkten abgezogen',
- 'torrents' => 'Torrents',
- 'torrents-matched' => 'Passende Torrents',
- 'trailer' => 'Trailer ansehen',
- 'type' => 'Typ',
- 'types' => 'Typen',
- 'unbookmark' => 'Lesezeichen aufheben',
- 'unsatisfieds' => 'Unerfüllt',
- 'unsticky' => 'Abpinnen',
- 'updated' => 'Aktualisiert',
- 'updated_at' => 'Aktualisiert am',
- 'uploaded' => 'Hochgeladen',
- 'uploaded-by' => 'Hochgeladen von',
- 'uploader' => 'Uploader',
- 'use-fl-token' => 'Verwende einen Freeleech-Token',
- 'video' => 'Video',
- 'view-more' => 'Mehr zeigen',
- 'view-trailer' => 'Trailer ansehen',
- 'votes' => 'Abstimmung',
- 'year-range' => 'Jahresbereich',
+ 'grouping-results' => 'Ergebnisse gruppieren',
+ 'groupings-view' => 'Gruppierungs-Ansicht',
+ 'have-completed' => 'Abgeschlossen',
+ 'have-downloaded' => 'Heruntergeladen',
+ 'have-not-completed' => 'Nicht Abgeschlossen',
+ 'have-not-downloaded' => 'Nicht Heruntergeladen',
+ 'health' => 'Zustand',
+ 'history' => 'Verlauf',
+ 'hitrun' => 'H&R?',
+ 'hit-and-runs' => 'Hit and Run Anzahl',
+ 'immune' => 'Immun?',
+ 'info' => 'Info',
+ 'info-hash' => 'Info Hash',
+ 'internal' => 'Intern',
+ 'internal-release' => 'Interner Release',
+ 'keywords' => 'Stichwörter',
+ 'keywords-example' => 'Beispiel: superheld, dc comics, marvel',
+ 'last-seed-activity' => 'Letzte Seed Aktivität',
+ 'last-seeder' => 'Du bist der letzte verbleibende Seeder! (wurde mindestens 3 mal heruntergeladen)',
+ 'last-update' => 'Letztes Update',
+ 'leave-tip' => 'Trinkgeld geben',
+ 'leecher' => 'Leecher',
+ 'leechers' => 'Leechers',
+ 'leeching' => 'Leeching',
+ 'left' => 'Verbleibend',
+ 'legendary-seeder' => 'Legendäre Seeder',
+ 'legendary-torrent' => 'Legendärer Torrent',
+ 'list' => 'Liste',
+ 'me' => 'Ich',
+ 'media-info' => 'MediaInfo',
+ 'media-info-parser' => 'MediaInfo-Parser',
+ 'media-info-paste' => 'Füge hier die MediaInfo ein',
+ 'meta-desc' => 'Downloade :name mit maximaler Geschwindigkeit',
+ 'moderation' => 'Moderation',
+ 'movies' => 'Filme',
+ 'mvp' => 'MVP',
+ 'my-active-torrents' => 'Meine aktiven Torrents',
+ 'name' => 'Name',
+ 'no-bookmarks' => 'Es wurden keine Lesezeichen gefunden.',
+ 'no-discounts' => 'Derzeit keine Rabatte',
+ 'no-meta' => 'Keine Metadaten gefunden',
+ 'no-privileges' => 'Du kannst diese Datei nicht herunterladen. Weitere Informationen findest du unten',
+ 'no-privileges-desc' => 'Bitte löse die Probleme oben, damit der Download-Button angezeigt wird',
+ 'not-completed' => 'Der Download wurde gestartet, wurde aber nie abgeschlossen',
+ 'not-downloaded' => 'Nicht Heruntergeladen',
+ 'not-seeding' => 'Seeded nicht',
+ 'old-torrent' => 'Alter Torrent',
+ 'optional' => 'Optional',
+ 'original-output' => 'Originalausgabe anzeigen / verbergen',
+ 'participant' => 'Teilnehmer',
+ 'passed' => 'Abgeschlossen',
+ 'peers' => 'Peers',
+ 'pending' => 'Ausstehend',
+ 'personal-freeleech' => 'Persönlicher Freeleech',
+ 'poster' => 'Poster',
+ 'poster-view' => 'Poster-Ansicht',
+ 'posters' => 'Poster',
+ 'postponed-torrents' => 'Zur Prüfung ausstehende Torrents',
+ 'prewarn' => 'Vorgewarnt?',
+ 'progress' => 'Fortschritt',
+ 'publish-time' => 'Zeit der Veröffentlichung',
+ 'quick-comment' => 'Schnelle Dank-Sagung',
+ 'quick-tip' => 'Schnelle Trinkgeldbeträge',
+ 'rated' => 'Bewertet',
+ 'rating' => 'Bewertung',
+ 'ready' => 'Diese Datei steht zum Download bereit',
+ 'recent-bumped' => 'Zuletzt nach oben verschoben',
+ 'recommendations' => 'Empfehlungen',
+ 'rejected' => 'Abgelehnt',
+ 'released' => 'Veröffentlicht',
+ 'remaining' => 'Verbleibend',
+ 'request-reseed' => 'Request Reseed',
+ 'required-anime' => 'Erforderlich für Anime',
+ 'required-games' => 'Erforderlich für Games',
+ 'requires-reseed' => 'Benötigt Reseed',
+ 'resolution' => 'Auflösung',
+ 'resolutions' => 'Auflösungen',
+ 'resurrections' => 'Wiederbelebt',
+ 'revoke' => 'Widerrufen',
+ 'revokefeatured' => 'Widerrufe Vorgestellt',
+ 'rss' => 'RSS',
+ 'runtime' => 'Laufzeit',
+ 'satisfied_in' => 'Zufrieden in',
+ 'say-thanks' => 'Bitte denke daran Danke zu sagen und so lange wie möglich zu Seeden',
+ 'sd-content' => 'SD Content',
+ 'search' => 'Suche',
+ 'search-by-name' => 'Suche nach Name',
+ 'season-number' => 'Staffel Nummer',
+ 'seed-time' => 'Seedzeit',
+ 'seeder' => 'Seeder',
+ 'seeders' => 'Seeders',
+ 'seeding' => 'Seeds',
+ 'seedsize' => 'Seedgröße',
+ 'seedtime' => 'Seedzeit',
+ 'short-completed' => 'C',
+ 'short-leechs' => 'L',
+ 'short-seeds' => 'S',
+ 'show-files' => 'Zeige Dateien',
+ 'similar' => 'Ähnliche Torrents',
+ 'size' => 'Größe',
+ 'special' => 'Speziell',
+ 'special-double_upload' => 'Spezieller Doppel Upload',
+ 'special-freeleech' => 'Spezieller Freeleech',
+ 'staff-tools' => 'Team Tools',
+ 'start-year' => 'Start Jahr',
+ 'started' => 'Gestartet',
+ 'status' => 'Status',
+ 'statistics' => 'Statistiken',
+ 'stats' => 'Statistiken',
+ 'sticky' => 'Angepinnt',
+ 'stream-optimized' => 'Stream optimiert',
+ 'subtitle' => 'Untertitel',
+ 'subtitle-included' => 'Dieser Torrent enthält bereits die folgenden eingemuxten Untertitel:',
+ 'team-player' => 'Teamspieler',
+ 'thank' => 'Dank dem',
+ 'thanked' => 'Dankte',
+ 'thanks' => 'Vielen Dank',
+ 'thanks-given' => 'Danke gegeben',
+ 'times' => 'mal',
+ 'tip-jar' => 'Trinkgeld Glas',
+ 'title' => 'Titel',
+ 'titles' => 'Titel',
+ 'top-completed' => 'Top Abgeschlossen',
+ 'top-dead' => 'Top Tot',
+ 'top-dying' => 'Top Sterbend',
+ 'top-leeched' => 'Top Leeched',
+ 'top-seeded' => 'Top Seeded',
+ 'torrent' => 'Torrent',
+ 'torrent-request' => 'Torrent Request',
+ 'torrent-tips' => 'Insgesamt :total Bonus-Punkte wurde dem Uploader übergeben, von denen sind :user von dir',
+ 'torrent-tips-desc' => 'Dies wird von deinen verfügbaren Bonuspunkten abgezogen',
+ 'torrents' => 'Torrents',
+ 'torrents-matched' => 'Passende Torrents',
+ 'trailer' => 'Trailer ansehen',
+ 'type' => 'Typ',
+ 'types' => 'Typen',
+ 'unbookmark' => 'Lesezeichen aufheben',
+ 'unsatisfieds' => 'Unerfüllt',
+ 'unsticky' => 'Abpinnen',
+ 'updated' => 'Aktualisiert',
+ 'updated_at' => 'Aktualisiert am',
+ 'uploaded' => 'Hochgeladen',
+ 'uploaded-by' => 'Hochgeladen von',
+ 'uploader' => 'Uploader',
+ 'use-fl-token' => 'Verwende einen Freeleech-Token',
+ 'video' => 'Video',
+ 'view-more' => 'Mehr zeigen',
+ 'view-trailer' => 'Trailer ansehen',
+ 'votes' => 'Abstimmung',
+ 'year-range' => 'Jahresbereich',
];
diff --git a/lang/de/user.php b/lang/de/user.php
index f89a20e23..8e04e9d47 100644
--- a/lang/de/user.php
+++ b/lang/de/user.php
@@ -12,343 +12,343 @@
*/
return [
- 'about' => 'Über',
- 'about-me' => 'Über mich',
- 'accepted-at' => 'Akzeptiert um',
- 'accepted-by' => 'Akzeptiert von',
- 'account-notification' => 'Konto-Benachrichtigungs-Einstellungen',
- 'account-notification-follow' => 'Erhalte eine Benachrichtigung, wenn ein Nutzer dir folgt',
- 'account-notification-unfollow' => 'Erhalte eine Benachrichtigung, wenn ein Nutzer dir entfolgt',
- 'account-notification-help' => 'Lege fest, welche Benachrichtigungen deinem Konto betreffend gesendet werden. Diese Einstellungen werden überschrieben, wenn du die Benachrichtigung aller Gruppen nicht zulässt, oder wenn du Benachrichtigungen deaktivierst',
- 'account-settings' => 'Konto Einstellungen',
- 'achievement-privacy' => 'Achievement-Einstellungen',
- 'achievement-privacy-list' => 'Erlaube es Nutzern, deine Achievements anzusehen',
- 'achievement-help' => 'Lege das Teilen bestimmter Achievements mit Gruppen fest, welche Zugriff auf dein Profil haben. Diese Einstellungen werden überschrieben, wenn du den Benachrichtigung aller Gruppen nicht zulässt oder wenn du privat gehst',
- 'achievements' => 'Achievements',
- 'active' => 'Aktiv',
- 'active-table' => 'Meine aktiven Torrents',
- 'active-torrents' => 'Aktive Torrents',
- 'active-warning' => 'Aktive Verwarnung',
- 'active-warnings' => 'Aktive Verwarnungen',
- 'add-seedbox' => 'Seedbox hinzufügen',
- 'all-torrents' => 'Alle Torrents',
- 'article-comments' => 'Kommentare zu Artikel geschrieben',
- 'avatar' => 'Avatar',
- 'avg-seedtime' => 'Durchschnittliche Seedzeit',
- 'badges' => 'Abzeichen',
- 'ban' => 'Benutzer Bannen',
- 'ban-log' => 'Ban Log',
- 'become-hidden' => 'Unsichtbar werden',
- 'become-visible' => 'Sichtbar werden',
- 'bon' => 'Bonus',
- 'bon-notification' => 'Bonus Benachrichtigungs-Einstellungen',
- 'bon-notification-gift' => 'Erhalte eine Benachrichtigung, wenn ein Nutzer dir Bonus gibt',
- 'bon-notification-help' => 'Lege fest, welche Benachrichtigungen über Bonus-Transaktionen gesendet werden. Diese Einstellungen werden überschrieben, wenn du die Benachrichtigung aller Gruppen nicht zulässt, oder wenn du Benachrichtigungen deaktivierst',
- 'bookmarks' => 'Lesezeichen',
- 'bounty-given' => 'Bounty gegeben',
- 'bounty-received' => 'Bounty erhalten',
- 'can-chat' => 'Kann Chatten',
- 'can-comment' => 'Kann Kommentieren',
- 'can-download' => 'Kann Herunterladen',
- 'can-invite' => 'Kann Inviten',
- 'can-request' => 'Kann Requesten',
- 'can-upload' => 'Kann Hochladen',
- 'certified-banker' => 'Zertifizierter Punktehoarder',
- 'certified-banker-desc' => 'Hat 50.000 oder mehr Bonuspunkte',
- 'certified-downloader' => 'Zertifizierter Leecher',
- 'certified-downloader-desc' => '100 oder mehr Torrents heruntergeladen!',
- 'certified-seeder' => 'Zertifizierter Seeder',
- 'certified-seeder-desc' => 'Seedet 150 oder mehr Torrents!',
- 'change-email' => 'Ändere die E-Mail-Adresse',
- 'change-email-help' => 'Du musst dein Konto erneut bestätigen, nachdem du deine E-Mail-Adresse geändert hast',
- 'change-password' => 'Ändere das Passwort',
- 'change-password-help' => 'Du musst dich erneut anmelden, nachdem du dein Passwort geändert hast',
- 'client-connectable-state' => '{0}Nein|{1}Ja',
- 'client-list' => 'Clients und IP-Adressen',
- 'client-ip-address' => 'Client-IP-Adresse',
- 'code' => 'Code',
- 'comments' => 'Kommentare',
- 'created' => 'Erstellt',
- 'created-on' => 'Erstellt am',
- 'credited-download' => 'Gutgeschriebener Download',
- 'credited-upload' => 'Gutgeschriebener Upload',
- 'current-password' => 'Aktuelles Passwort',
- 'custom-title' => 'Benutzerdefinierter Titel',
- 'delete' => 'Nutzer löschen',
- 'delete-all' => 'Alles löschen',
- 'deleted-by' => 'Gelöscht von',
- 'deleted-on' => 'Gelöscht am',
- 'disable-notifications' => 'Benachrichtigungen ausschalten',
- 'disclaimer' => 'Disclaimer',
- 'disclaimer-info' => 'Wir protokollieren standardmäßig nicht die IP-Adressen, wie die meisten Tracker. Wenn du unten deine IP-Adresse der Seedbox hinzufügst, gehen wir davon aus, dass dir klar ist, dass die aufgeführten IP-Adressen in unserer Datenbank gespeichert werden, sofern wir die Datensätze nicht löschen.',
- 'disclaimer-info-bordered' => 'Die hinzugefügten Seedbox-IPs triggern ein "Schnelle-Geschwindigkeit-Torrent-Tag", wenn diese aus den unten aufgeführten IPs seeden',
- 'download-bon' => 'Download aus dem Bonus Store entfernt',
- 'download-recorded' => 'Aufgezeichneter Download',
- 'download-true' => 'Echter Download',
- 'downloads' => 'Downloads',
- 'edit' => 'Nutzer bearbeiten',
- 'edit-profile' => 'Profil bearbeiten',
- 'enable-notifications' => 'Benachrichtigungen aktivieren',
- 'expired' => 'Abgelaufen',
- 'expires-on' => 'Abgelaufen am',
- 'extra' => 'Extra',
- 'filled-request' => 'Erfüllte Nutzer Requests',
- 'follow' => 'Folgen',
- 'follow-already' => 'Du folgst bereits diesem Nutzer',
- 'follow-not-to-begin-with' => 'Du folgst diesem Nutzer seit Anfang nicht',
- 'follow-revoked' => 'Du folgst %s nicht mehr',
- 'follow-user' => 'Du folgst jetzt %s',
- 'follow-yourself' => 'Netter Versuch, aber leider kannst du dir selbst nicht folgen.',
- 'follower-privacy' => 'Follower Einstellungen',
- 'follower-privacy-list' => 'Erlaube Nutzern, die Liste deiner Follower anzuzeigen',
- 'follower-help' => 'Kontrolliere die Freigabe bestimmter Follower-bezogener Informationen mit Gruppen, die auf dein Profil zugreifen dürfen. Diese Einstellungen werden überschrieben, wenn du keiner Gruppe den Zugriff auf deine Follower erlaubst oder wenn du privat gehst',
- 'followers' => 'Follower',
- 'following-notification' => 'Einstellungen für Follower Benachrichtigung',
- 'following-notification-upload' => 'Erhalte eine Benachrichtigung, wenn ein nachfolgender Nutzer einen Torrent hochlädt',
- 'following-notification-help' => 'Lege fest, welche Benachrichtigungen über Follower Aktionen gesendet werden. Diese Einstellungen werden überschrieben, wenn du die Benachrichtigung aller Gruppen nicht zulässt, oder wenn du Benachrichtigungen deaktivierst',
- 'formats-are-supported' => ':formats werden unterstützt',
- 'forum-notification' => 'Forum Benachrichtigungs-Einstellungen',
- 'forum-notification-topic' => 'Erhalte eine Benachrichtigung, wenn ein Thema, das du gestartet hast, einen neuen Beitrag erhält',
- 'forum-notification-help' => 'Kontrollieren, welche Benachrichtigungen über Forumaktivitäten gesendet werden. Diese Einstellungen werden überschrieben, wenn du die Benachrichtigung aller Gruppen nicht zulässt, oder wenn du Benachrichtigungen deaktivierst',
- 'forum-privacy' => 'Forum Einstellungen',
- 'forum-privacy-post' => 'Benutzern erlauben, eine Liste der von dir geposteten Forenbeiträge anzuzeigen',
- 'forum-privacy-topic' => 'Erlaube Nutzern, die Liste der Forumsthemen anzuzeigen, die du gestartest hast',
- 'forum-help' => 'Steuer den Austausch bestimmter forumsbezogener Statistiken und Informationen mit Gruppen, die auf dein Profil zugreifen dürfen. Diese Einstellungen werden überschrieben, wenn du keine Gruppe den Zugriff erlaubst oder wenn du privat gehst',
- 'forum-signature' => 'Forum Signatur',
- 'forums' => 'Foren',
- 'general' => 'Allgemein',
- 'general-settings' => 'Allgemeine Einstellungen',
- 'gift-given' => 'Geschenk gegeben',
- 'gift-received' => 'Geschenk erhalten',
- 'go-public' => 'Öffentlich werden',
- 'go-private' => 'Privat werden',
- 'history' => 'Verlauf',
- 'history-table' => 'Meine Verlaufstabelle',
- 'hit-n-runs' => 'Hit and Runs',
- 'hit-n-runs-count' => 'Anzahl Hit and Runs (aller Zeiten)',
- 'hit-n-runs-history' => 'Torrent Hit and Runs Verlauf',
- 'id-permissions' => 'ID & Rechte',
- 'image' => 'Bild',
- 'important' => 'Wichtig',
- 'important-info' => 'Wichtige Info',
- 'information' => 'Information',
- 'invited-by' => 'Invited von',
- 'invite-already-sent' => 'Die E-Mail-Adresse hat bereits einen Invite erhalten.',
- 'invite-already-used' => 'Der Invite, den du erneut senden möchtest, wurde bereits verwendet.',
- 'invite-friend' => 'Lade deinen Freund ein (E-Mail + Nachricht erforderlich)',
- 'invite-resent-success' => 'Der Invite wurde erfolgreich erneut versandt!',
- 'invite-sent-success' => 'Der Invite wurde erfolgreich versandt!',
- 'invite-tree' => 'Invite Hierarchie',
- 'invites' => 'Invites',
- 'invites-banned' => 'Fehler: Ihre Invite-Rechte wurden deaktiviert',
- 'invites-banned-desc' => 'Wenn du das Gefühl hast, dass dies fehlerhaft ist, wenden dich bitte an das Team!',
- 'invites-count' => 'Du hast :count Invite Token',
- 'invites-disabled' => 'Achtung: Invites sind aufgrund der offenen Registrierung deaktiviert!',
- 'invites-disabled-desc' => 'Bitte schaue bald wieder vorbei!',
- 'invites-rules' => '- Lade nur Personen ein, die du kennst und denen du vertraust.
- Du wirst für die von dir eingeladenen Personen verantwortlich gemacht.
- Du darfst dich nicht selber einladen, wir prüfen jeden eingeladenen Nutzer.
- Handel oder verkaufe keine Invites.
- Wenn eine Person, die du eingeladen hast, beim Cheaten, beim Handeln von Accounts oder beim Verkauf / Handel von Invites erwischt wird, wirst du verwarnt.
',
- 'invites-disabled-group' => 'Invites sind derzeit für deine Gruppe deaktiviert.',
- 'invites-send' => 'Invite verschickt',
- 'judge' => 'Richter',
- 'last-login' => 'Letzte Anmeldung',
- 'locked' => 'Gesperrt',
- 'locked-achievements' => 'Erzielte Errungenschaften',
- 'member-since' => 'Mitglied seit',
- 'members-desc' => 'Liste der registrierten Benutzer auf :title in allen Gruppen. Finde jetzt einen Nutzer.',
- 'mention-notification' => '@Erwähnung Benachrichtigungs Einstellungen',
+ 'about' => 'Über',
+ 'about-me' => 'Über mich',
+ 'accepted-at' => 'Akzeptiert um',
+ 'accepted-by' => 'Akzeptiert von',
+ 'account-notification' => 'Konto-Benachrichtigungs-Einstellungen',
+ 'account-notification-follow' => 'Erhalte eine Benachrichtigung, wenn ein Nutzer dir folgt',
+ 'account-notification-unfollow' => 'Erhalte eine Benachrichtigung, wenn ein Nutzer dir entfolgt',
+ 'account-notification-help' => 'Lege fest, welche Benachrichtigungen deinem Konto betreffend gesendet werden. Diese Einstellungen werden überschrieben, wenn du die Benachrichtigung aller Gruppen nicht zulässt, oder wenn du Benachrichtigungen deaktivierst',
+ 'account-settings' => 'Konto Einstellungen',
+ 'achievement-privacy' => 'Achievement-Einstellungen',
+ 'achievement-privacy-list' => 'Erlaube es Nutzern, deine Achievements anzusehen',
+ 'achievement-help' => 'Lege das Teilen bestimmter Achievements mit Gruppen fest, welche Zugriff auf dein Profil haben. Diese Einstellungen werden überschrieben, wenn du den Benachrichtigung aller Gruppen nicht zulässt oder wenn du privat gehst',
+ 'achievements' => 'Achievements',
+ 'active' => 'Aktiv',
+ 'active-table' => 'Meine aktiven Torrents',
+ 'active-torrents' => 'Aktive Torrents',
+ 'active-warning' => 'Aktive Verwarnung',
+ 'active-warnings' => 'Aktive Verwarnungen',
+ 'add-seedbox' => 'Seedbox hinzufügen',
+ 'all-torrents' => 'Alle Torrents',
+ 'article-comments' => 'Kommentare zu Artikel geschrieben',
+ 'avatar' => 'Avatar',
+ 'avg-seedtime' => 'Durchschnittliche Seedzeit',
+ 'badges' => 'Abzeichen',
+ 'ban' => 'Benutzer Bannen',
+ 'ban-log' => 'Ban Log',
+ 'become-hidden' => 'Unsichtbar werden',
+ 'become-visible' => 'Sichtbar werden',
+ 'bon' => 'Bonus',
+ 'bon-notification' => 'Bonus Benachrichtigungs-Einstellungen',
+ 'bon-notification-gift' => 'Erhalte eine Benachrichtigung, wenn ein Nutzer dir Bonus gibt',
+ 'bon-notification-help' => 'Lege fest, welche Benachrichtigungen über Bonus-Transaktionen gesendet werden. Diese Einstellungen werden überschrieben, wenn du die Benachrichtigung aller Gruppen nicht zulässt, oder wenn du Benachrichtigungen deaktivierst',
+ 'bookmarks' => 'Lesezeichen',
+ 'bounty-given' => 'Bounty gegeben',
+ 'bounty-received' => 'Bounty erhalten',
+ 'can-chat' => 'Kann Chatten',
+ 'can-comment' => 'Kann Kommentieren',
+ 'can-download' => 'Kann Herunterladen',
+ 'can-invite' => 'Kann Inviten',
+ 'can-request' => 'Kann Requesten',
+ 'can-upload' => 'Kann Hochladen',
+ 'certified-banker' => 'Zertifizierter Punktehoarder',
+ 'certified-banker-desc' => 'Hat 50.000 oder mehr Bonuspunkte',
+ 'certified-downloader' => 'Zertifizierter Leecher',
+ 'certified-downloader-desc' => '100 oder mehr Torrents heruntergeladen!',
+ 'certified-seeder' => 'Zertifizierter Seeder',
+ 'certified-seeder-desc' => 'Seedet 150 oder mehr Torrents!',
+ 'change-email' => 'Ändere die E-Mail-Adresse',
+ 'change-email-help' => 'Du musst dein Konto erneut bestätigen, nachdem du deine E-Mail-Adresse geändert hast',
+ 'change-password' => 'Ändere das Passwort',
+ 'change-password-help' => 'Du musst dich erneut anmelden, nachdem du dein Passwort geändert hast',
+ 'client-connectable-state' => '{0}Nein|{1}Ja',
+ 'client-list' => 'Clients und IP-Adressen',
+ 'client-ip-address' => 'Client-IP-Adresse',
+ 'code' => 'Code',
+ 'comments' => 'Kommentare',
+ 'created' => 'Erstellt',
+ 'created-on' => 'Erstellt am',
+ 'credited-download' => 'Gutgeschriebener Download',
+ 'credited-upload' => 'Gutgeschriebener Upload',
+ 'current-password' => 'Aktuelles Passwort',
+ 'custom-title' => 'Benutzerdefinierter Titel',
+ 'delete' => 'Nutzer löschen',
+ 'delete-all' => 'Alles löschen',
+ 'deleted-by' => 'Gelöscht von',
+ 'deleted-on' => 'Gelöscht am',
+ 'disable-notifications' => 'Benachrichtigungen ausschalten',
+ 'disclaimer' => 'Disclaimer',
+ 'disclaimer-info' => 'Wir protokollieren standardmäßig nicht die IP-Adressen, wie die meisten Tracker. Wenn du unten deine IP-Adresse der Seedbox hinzufügst, gehen wir davon aus, dass dir klar ist, dass die aufgeführten IP-Adressen in unserer Datenbank gespeichert werden, sofern wir die Datensätze nicht löschen.',
+ 'disclaimer-info-bordered' => 'Die hinzugefügten Seedbox-IPs triggern ein "Schnelle-Geschwindigkeit-Torrent-Tag", wenn diese aus den unten aufgeführten IPs seeden',
+ 'download-bon' => 'Download aus dem Bonus Store entfernt',
+ 'download-recorded' => 'Aufgezeichneter Download',
+ 'download-true' => 'Echter Download',
+ 'downloads' => 'Downloads',
+ 'edit' => 'Nutzer bearbeiten',
+ 'edit-profile' => 'Profil bearbeiten',
+ 'enable-notifications' => 'Benachrichtigungen aktivieren',
+ 'expired' => 'Abgelaufen',
+ 'expires-on' => 'Abgelaufen am',
+ 'extra' => 'Extra',
+ 'filled-request' => 'Erfüllte Nutzer Requests',
+ 'follow' => 'Folgen',
+ 'follow-already' => 'Du folgst bereits diesem Nutzer',
+ 'follow-not-to-begin-with' => 'Du folgst diesem Nutzer seit Anfang nicht',
+ 'follow-revoked' => 'Du folgst %s nicht mehr',
+ 'follow-user' => 'Du folgst jetzt %s',
+ 'follow-yourself' => 'Netter Versuch, aber leider kannst du dir selbst nicht folgen.',
+ 'follower-privacy' => 'Follower Einstellungen',
+ 'follower-privacy-list' => 'Erlaube Nutzern, die Liste deiner Follower anzuzeigen',
+ 'follower-help' => 'Kontrolliere die Freigabe bestimmter Follower-bezogener Informationen mit Gruppen, die auf dein Profil zugreifen dürfen. Diese Einstellungen werden überschrieben, wenn du keiner Gruppe den Zugriff auf deine Follower erlaubst oder wenn du privat gehst',
+ 'followers' => 'Follower',
+ 'following-notification' => 'Einstellungen für Follower Benachrichtigung',
+ 'following-notification-upload' => 'Erhalte eine Benachrichtigung, wenn ein nachfolgender Nutzer einen Torrent hochlädt',
+ 'following-notification-help' => 'Lege fest, welche Benachrichtigungen über Follower Aktionen gesendet werden. Diese Einstellungen werden überschrieben, wenn du die Benachrichtigung aller Gruppen nicht zulässt, oder wenn du Benachrichtigungen deaktivierst',
+ 'formats-are-supported' => ':formats werden unterstützt',
+ 'forum-notification' => 'Forum Benachrichtigungs-Einstellungen',
+ 'forum-notification-topic' => 'Erhalte eine Benachrichtigung, wenn ein Thema, das du gestartet hast, einen neuen Beitrag erhält',
+ 'forum-notification-help' => 'Kontrollieren, welche Benachrichtigungen über Forumaktivitäten gesendet werden. Diese Einstellungen werden überschrieben, wenn du die Benachrichtigung aller Gruppen nicht zulässt, oder wenn du Benachrichtigungen deaktivierst',
+ 'forum-privacy' => 'Forum Einstellungen',
+ 'forum-privacy-post' => 'Benutzern erlauben, eine Liste der von dir geposteten Forenbeiträge anzuzeigen',
+ 'forum-privacy-topic' => 'Erlaube Nutzern, die Liste der Forumsthemen anzuzeigen, die du gestartest hast',
+ 'forum-help' => 'Steuer den Austausch bestimmter forumsbezogener Statistiken und Informationen mit Gruppen, die auf dein Profil zugreifen dürfen. Diese Einstellungen werden überschrieben, wenn du keine Gruppe den Zugriff erlaubst oder wenn du privat gehst',
+ 'forum-signature' => 'Forum Signatur',
+ 'forums' => 'Foren',
+ 'general' => 'Allgemein',
+ 'general-settings' => 'Allgemeine Einstellungen',
+ 'gift-given' => 'Geschenk gegeben',
+ 'gift-received' => 'Geschenk erhalten',
+ 'go-public' => 'Öffentlich werden',
+ 'go-private' => 'Privat werden',
+ 'history' => 'Verlauf',
+ 'history-table' => 'Meine Verlaufstabelle',
+ 'hit-n-runs' => 'Hit and Runs',
+ 'hit-n-runs-count' => 'Anzahl Hit and Runs (aller Zeiten)',
+ 'hit-n-runs-history' => 'Torrent Hit and Runs Verlauf',
+ 'id-permissions' => 'ID & Rechte',
+ 'image' => 'Bild',
+ 'important' => 'Wichtig',
+ 'important-info' => 'Wichtige Info',
+ 'information' => 'Information',
+ 'invited-by' => 'Invited von',
+ 'invite-already-sent' => 'Die E-Mail-Adresse hat bereits einen Invite erhalten.',
+ 'invite-already-used' => 'Der Invite, den du erneut senden möchtest, wurde bereits verwendet.',
+ 'invite-friend' => 'Lade deinen Freund ein (E-Mail + Nachricht erforderlich)',
+ 'invite-resent-success' => 'Der Invite wurde erfolgreich erneut versandt!',
+ 'invite-sent-success' => 'Der Invite wurde erfolgreich versandt!',
+ 'invite-tree' => 'Invite Hierarchie',
+ 'invites' => 'Invites',
+ 'invites-banned' => 'Fehler: Ihre Invite-Rechte wurden deaktiviert',
+ 'invites-banned-desc' => 'Wenn du das Gefühl hast, dass dies fehlerhaft ist, wenden dich bitte an das Team!',
+ 'invites-count' => 'Du hast :count Invite Token',
+ 'invites-disabled' => 'Achtung: Invites sind aufgrund der offenen Registrierung deaktiviert!',
+ 'invites-disabled-desc' => 'Bitte schaue bald wieder vorbei!',
+ 'invites-rules' => '- Lade nur Personen ein, die du kennst und denen du vertraust.
- Du wirst für die von dir eingeladenen Personen verantwortlich gemacht.
- Du darfst dich nicht selber einladen, wir prüfen jeden eingeladenen Nutzer.
- Handel oder verkaufe keine Invites.
- Wenn eine Person, die du eingeladen hast, beim Cheaten, beim Handeln von Accounts oder beim Verkauf / Handel von Invites erwischt wird, wirst du verwarnt.
',
+ 'invites-disabled-group' => 'Invites sind derzeit für deine Gruppe deaktiviert.',
+ 'invites-send' => 'Invite verschickt',
+ 'judge' => 'Richter',
+ 'last-login' => 'Letzte Anmeldung',
+ 'locked' => 'Gesperrt',
+ 'locked-achievements' => 'Erzielte Errungenschaften',
+ 'member-since' => 'Mitglied seit',
+ 'members-desc' => 'Liste der registrierten Benutzer auf :title in allen Gruppen. Finde jetzt einen Nutzer.',
+ 'mention-notification' => '@Erwähnung Benachrichtigungs Einstellungen',
'mention-notification-article-comment' => 'Erhalte eine Benachrichtigung, wenn du in einem Artikelkommentar @erwähnt werden',
'mention-notification-torrent-comment' => 'Erhalte eine Benachrichtigung, wenn du in einem Torrent-Kommentar @erwähnt werden',
'mention-notification-request-comment' => 'Erhalte eine Benachrichtigung, wenn du in einem Request @erwähnt wirst',
- 'mention-notification-forum-post' => 'Erhalte eine Benachrichtigung, wenn du in einem Forenbeitrag @erwähnt wirst',
- 'mention-notification-help' => 'Lege fest, welche Benachrichtigungen gesendet werden, wenn ein Nutzer dich benachrichtigt. Diese Einstellungen werden außer Kraft gesetzt, wenn du alle Gruppen Benachrichtigungen deaktiviert sind, wenn ein Nutzer dich @erwähnt oder Benachrichtigungen deaktiviert ist',
- 'moderated-by' => 'Moderiert von :mod auf',
- 'my-bonus-points' => 'Meine Bonuspunkte',
- 'my-bookmarks' => 'Meine Lesezeichen',
- 'my-fl-tokens' => 'Meine FL-Token',
- 'my-general-settings' => 'Meine Allgemeinen Einstellungen',
- 'my-notification' => 'Meine Benachrichtigung',
- 'my-notification-settings' => 'Meine Benachrichtigungs-Einstellungen',
- 'my-privacy' => 'Meine Privatsphäre',
- 'my-privacy-settings' => 'Meine Datenschutz-Einstellungen',
- 'my-profile' => 'Mein Profil',
- 'my-requested' => 'Meine Requests',
- 'my-security' => 'Meine Sicherheit',
- 'my-security-settings' => 'Meine Sicherheitseinstellungen',
- 'my-seedboxes' => 'Meine Seedboxen',
- 'my-settings' => 'Meine Einstellungen',
- 'my-uploads' => 'Meine Uploads',
- 'my-wishlist' => 'Meine Wunschliste',
- 'no-logs' => 'Für diesen Nutzer gibt es keine Invite Logs in der Datenbank!',
- 'no-seedboxes' => 'Keine Seedboxen 😔',
- 'not-authorized' => 'Du bist nicht berechtigt, diese Seite aufzurufen. Dieses Mitglied zieht es vor ein Ninja zu sein!',
- 'not-enough-invites' => 'Du hast nicht genug Invites!',
- 'note' => 'Hinweis',
- 'notification' => 'Benachrichtigung',
- 'notification-settings' => 'Benachrichtigungs-Einstellungen',
- 'notification-from-account' => 'Erhalte Kontobenachrichtigungen von',
- 'notification-from-account-help' => 'Du erhältst nur Kontobenachrichtigungen vom System, Team und den folgenden Gruppen. Diese Einstellungen werden überschrieben, wenn du Benachrichtigungen deaktivierst',
- 'notification-from-bon' => 'Erhalte Bonus-Benachrichtigungen von',
- 'notification-from-bon-help' => 'Du erhältst nur Bonus-Benachrichtigungen vom System, Team und den folgenden Gruppen. Diese Einstellungen werden überschrieben, wenn du Benachrichtigungen deaktivierst',
- 'notification-from-following' => 'Erhalte Benachrichtigungen über gefolgten Nutzern von',
- 'notification-from-following-help' => 'Du erhältst nur folgende Benutzerbenachrichtigungen aus den folgenden Gruppen. Diese Einstellungen werden überschrieben, wenn du Benachrichtigungen deaktivierst',
- 'notification-from-forum' => 'Erhalte Forumbenachrichtigungen von',
- 'notification-from-forum-help' => 'Du erhältst nur Forumbenachrichtigungen vom System, Team und den folgenden Gruppen. Diese Einstellungen werden überschrieben, wenn du Benachrichtigungen deaktivierst',
- 'notification-from-subscription' => 'Abonnementbenachrichtigungen erhalten von',
- 'notification-from-subscription-help' => 'Du erhältst nur Forumbenachrichtigungen vom System, Team und den folgenden Gruppen. Diese Einstellungen werden überschrieben, wenn du Benachrichtigungen deaktivierst',
- 'notification-from-torrent' => 'Erhalte Torrent-Benachrichtigungen von',
- 'notification-from-torrent-help' => 'Du erhältst nur Torrent-Benachrichtigungen vom System, Team und den folgenden Gruppen. Diese Einstellungen werden überschrieben, wenn du Benachrichtigungen deaktivierst',
- 'notification-from-mention' => 'Erhalte @Erwähnung-Benachrichtigungen von',
- 'notification-from-mention-help' => 'Du erhältst nur @Erwähnung-Benachrichtigungen vom System, Team und den folgenden Gruppen. Diese Einstellungen werden überschrieben, wenn du Benachrichtigungen deaktivierst',
- 'notification-from-request' => 'Erhalte Request-Benachrichtigungen von',
- 'notification-from-request-help' => 'Du erhältst nur Request-Benachrichtigungen vom System, Team und den folgenden Gruppen. Diese Einstellungen werden überschrieben, wenn du Benachrichtigungen deaktivierst',
- 'notifications' => 'Benachrichtigungen',
- 'offline' => 'Nutzer ist offline!',
- 'online' => 'Nutzer ist online!',
- 'options' => 'Optionen',
- 'other-help' => 'Steuere die Freigabe anderer Statistiken und Informationen mit Gruppen, die auf dein Profil zugreifen dürfen. Diese Einstellungen werden überschrieben, wenn du keiner Gruppe den Zugriff gestattest oder wenn du privat gehst',
- 'other-privacy' => 'Andere Einstellungen',
- 'other-privacy-online' => 'Erlaube Nutzern, dich auf der Startseite im "Benutzer online" Abschnitt zu sehen',
- 'passkey' => 'PID',
- 'passkey-warning' => 'PID ist wie dein Passwort, du musst es sicher aufbewahren!',
- 'pending-achievements' => 'Ausstehende Archivements',
- 'per-torrent' => 'Pro Torrent',
- 'posts' => 'Beiträge',
- 'posts-posted' => 'Forum Beiträge gepostet',
- 'privacy' => 'Privatsphäre',
- 'privacy-settings' => 'Privatsphäre-Einstellungen',
- 'private-info' => 'Private Info',
- 'private-forum-profile' => 'Achtung: Der Verlauf wurden auf PRIVAT gesetzt!',
- 'private-profile' => 'Achtung: Dieses Profil wurde auf PRIVAT gesetzt!',
- 'profile' => 'Profil',
- 'profile-desc' => 'Nutzer :user registriert auf :title',
- 'profile-privacy' => 'Profil-Einstellungen',
- 'profile-privacy-torrent-count' => 'Teile deine Gesamtzahl an Downloads, Uploads, Seeds und Leechs',
- 'profile-privacy-torrent-ratio' => 'Teile deinen Upload-/Download-Traffic zusammen mit der Ratio',
- 'profile-privacy-torrent-seed' => 'Teile deine Seedzeit',
- 'profile-privacy-title' => 'Teile deine persönlichen Titel',
- 'profile-privacy-about' => 'Teile deine persönlichen Informationen',
- 'profile-privacy-bon-extra' => 'Teile deine Bonus-Statistiken',
- 'profile-privacy-comment-extra' => 'Teile deine Kommentar-Statistiken',
- 'profile-privacy-forum-extra' => 'Teile deine Foren-Statistiken',
- 'profile-privacy-request-extra' => 'Teile deine Request-Statistik',
- 'profile-privacy-torrent-extra' => 'Teile deine Torrent-Statistiken',
- 'profile-privacy-badge' => 'Teile deine verdienten Abzeichen',
- 'profile-privacy-achievement' => 'Teile deine jüngsten Archivements',
- 'profile-privacy-follower' => 'Teile deine letzten Follower',
- 'profile-privacy-warning' => 'Teile deine H&R-Warnungen',
- 'profile-privacy-help' => 'Lege fest, welche Statistiken und Informationen in deinem Profil angezeigt werden. Diese Einstellungen werden überschrieben, wenn keiner Gruppe den Zugriff aktiviert sind oder wenn du privat gehst',
- 'public-info' => 'Öffentliche Info',
- 'recent-achievements' => 'Neueste Archivements',
- 'recent-followers' => 'Neueste Follower',
- 'registration-date' => 'Registrierungsdatum',
- 'report' => 'Melden',
- 'report-sent' => 'Deine Meldung wurde erfolgreich gesendet',
- 'request-help' => 'Steuere den Austausch bestimmter Request-bezogener Statistiken und Informationen mit Gruppen, die auf dein Profil zugreifen dürfen. Diese Einstellungen werden überschrieben, wenn keine der unten aufgeführten Gruppen aktiviert ist oder wenn du privat gehst',
- 'request' => 'Request',
- 'requested' => 'Requestes',
- 'requests' => 'Requests',
- 'request-comments' => 'Request Kommentare',
- 'request-notification' => 'Request Benachrichtigungseinstellungen',
- 'request-notification-bounty' => 'Erhalte eine Benachrichtigung, wenn ein Request einen neuen Bounty erhält',
- 'request-notification-comment' => 'Erhalte eine Benachrichtigung, wenn ein Request einen neuen Kommentar erhält',
- 'request-notification-fill' => 'Erhalte eine Benachrichtigung, wenn ein Request erfüllt wurde',
- 'request-notification-fill-approve' => 'Erhalte eine Benachrichtigung, wenn ein Request genehmigt wurde',
- 'request-notification-fill-reject' => 'Erhalte eine Benachrichtigung, wenn ein Request abgelehnt wurde',
- 'request-notification-claim' => 'Erhalte eine Benachrichtigung, wenn ein Request geclaimed wurde',
- 'request-notification-unclaim' => 'Erhalte eine Benachrichtigung, wenn ein Request un-geclaimed wurde',
- 'request-notification-help' => 'Lege fest, welche Benachrichtigungen bezüglich Requests gesendet werden. Diese Einstellungen werden überschrieben, wenn keine der unten aufgeführten Gruppen aktiviert ist oder du Benachrichtigungen deaktivierst',
- 'request-privacy' => 'Request Einstellungen',
- 'request-privacy-requested' => 'Erlaube Nutzern, deine Request Liste anzuzeigen',
- 'reset-passkey' => 'Pass Key (PID) zurücksetzen',
- 'reset-passkey-help' => 'Nach dem Zurücksetzen der PID musst du alle aktiven Torrents erneut herunterladen bzw. erneut hochladen',
- 'reset-rss' => 'RSS-Schlüssel (RID) zurücksetzen',
- 'reset-rss-help' => 'Nach dem Zurücksetzen des RID musst du alle aktiven RSS-Feeds erneut laden',
- 'resurrections' => 'Wiederbelebt',
- 'search' => 'Schnelle Suche nach Nutzername',
- 'security' => 'Sicherheit',
- 'security-settings' => 'Sicherheits-Einstellungen',
- 'seedbox-added-success' => 'Seedbox wurde erfolgreich hinzugefügt!',
- 'seedbox-deleted-success' => 'Seedbox wurde erfolgreich gelöscht',
- 'seedboxes' => 'Seedboxen',
- 'seeding-size' => 'Seed Größe',
- 'seeds' => 'Seeds',
- 'send-invite' => 'Sende Invite',
- 'sender' => 'Absender',
- 'settings' => 'Einstellungen',
- 'show-passkey' => 'PID anzeigen',
- 'soft-deleted-warnings' => 'Soft Gelöschte Verwarnungen',
- 'staff-noted' => 'Team Notiertes Konto',
- 'statistics' => 'Statistiken',
- 'subscription-notification' => 'Abonnement-Benachrichtigungs-Einstellungen',
- 'subscription-notification-forum' => 'Erhalten Sie eine Benachrichtigung, wenn ein abonniertes Forum ein neues Thema erhält',
- 'subscription-notification-topic' => 'Erhalten Sie eine Benachrichtigung, wenn ein abonniertes Thema einen neuen Beitrag erhält',
- 'subscription-notification-help' => 'Lege fest, welche Benachrichtigungen zu deinen Abonnements gesendet werden. Diese Einstellungen werden überschrieben, wenn keine der unten aufgeführten Gruppen aktiviert ist, oder wenn du Benachrichtigungen deaktivierst',
- 'thanks-given' => 'Bedankt',
- 'thanks-received' => 'Danke erhalten',
- 'tips-given' => 'Trinkgeld gegeben',
- 'tips-received' => 'Trinkgeld erhalten',
- 'title' => 'Titel',
- 'top-bankers' => 'Top Punkte',
- 'top-downloaders-data' => 'Top Downloader (Traffic)',
- 'top-leechers' => 'Top Leecher',
- 'top-leechers-count' => 'Top Leecher (Anzahl)',
- 'top-seeders' => 'Top Seeder',
- 'top-seeders-count' => 'Top Seeder (Anzahl)',
- 'top-seeding-size' => 'Top Seeding (Größe)',
- 'top-seedtime' => 'Top Seedzeit',
- 'top-uploaders-data' => 'Top Uploader (Traffic)',
- 'top-uploaders-count' => 'Top Uploader',
- 'topics' => 'Themen',
- 'topics-started' => 'Forumsthemen gestartet',
- 'torrent-comments' => 'Torrent-Kommentare',
- 'torrent-help' => 'Steuere die Freigabe bestimmter Statistiken und Informationen zum Torrent mit Gruppen, die auf dein Profil zugreifen dürfen. Diese Einstellungen werden überschrieben, wenn keine Gruppe Zugriff auf deine Torrent-Statistiken und -Informationen hat oder wenn du privat gehst',
- 'torrent-notification' => 'Torrent-Benachrichtigungseinstellungen',
- 'torrent-notification-comment' => 'Erhalte eine Benachrichtigung, wenn ein hochgeladener Torrent einen neuen Kommentar erhält',
- 'torrent-notification-thank' => 'Erhalte eine Benachrichtigung, wenn ein hochgeladener Torrent ein Dankeschön erhält',
- 'torrent-notification-tip' => 'Erhalte eine Benachrichtigung, wenn ein hochgeladener Torrent Trinkgeld erhält',
- 'torrent-notification-help' => 'Kontrolliere, welche Benachrichtigungen du über Torrent-Aktivitäten bekommst. Diese Einstellungen werden überschrieben, wenn der Zugriff aller Gruppen deaktiviert ist, oder wenn du Benachrichtigungen deaktivierst',
- 'torrent-privacy' => 'Torrent-Einstellungen',
- 'torrent-privacy-download' => 'Nutzern erlauben, deine Liste der heruntergeladenen Torrents anzuzeigen',
- 'torrent-privacy-upload' => 'Nutzern erlauben, deine Liste der hochgeladenen Torrents anzuzeigen',
- 'torrent-privacy-peer' => 'Erlaube es anderen Nutzern, dich in der Peer-Liste zu sehen',
- 'torrents' => 'Torrents',
- 'torrents-history' => 'Torrent Verlauf',
- 'total-download' => 'Download insgesamt',
- 'total-downloads' => 'Downloads insgesamt',
- 'total-leeching' => 'Aktuell im Leech',
- 'total-seeding' => 'Aktuell im Seed',
- 'total-seedtime' => 'Gesamt Seedzeit',
- 'total-upload' => 'Upload insgesamt',
- 'total-uploads' => 'Uploads insgesamt',
- 'unban' => 'Nutzer entbannen',
- 'unfollow' => 'Entfolgen',
- 'unlocked' => 'Freigeschaltet',
- 'unlocked-achievements' => 'Freigeschaltete Erfolge',
- 'unsatisfieds' => 'Unerfüllt',
- 'upload-bon' => 'Upload hinzugefügt vom Bonus Store',
- 'upload-recorded' => 'Aufgezeichneter Upload',
- 'upload-true' => 'Echter Upload',
- 'uploads' => 'Uploads',
- 'uploads-table' => 'Upload Tabelle',
- 'user' => 'Nutzer',
- 'user-id' => 'Nutzer ID',
- 'username-seedbox' => 'Nutzername Seedbox',
- 'visible-to-achievement' => 'Archivements sichtbar für',
- 'visible-to-achievement-help' => 'Deine Leistungen sind nur für Teammitglieder und die folgenden Gruppen sichtbar. Diese Einstellungen werden überschrieben, wenn du privat gehst',
- 'visible-to-follower' => 'Followers sichtbar für',
- 'visible-to-follower-help' => 'Deine Follower sind nur für Teammitglieder und die folgenden Gruppen sichtbar. Diese Einstellungen werden überschrieben, wenn du privat gehst',
- 'visible-to-forum' => 'Forum-Informationen sichtbar für',
- 'visible-to-forum-help' => 'Deine Foruminformationen sind nur für Teammitglieder und die folgenden Gruppen sichtbar. Diese Einstellungen werden überschrieben, wenn du privat gehst',
- 'visible-to-other' => 'Sichtbar für Andere',
- 'visible-to-other-help' => 'Andere Informationen zu deinem Konto sind nur für Teammitglieder und die folgenden Gruppen sichtbar. Diese Einstellungen werden überschrieben, wenn du privat gehst oder verborgen bist',
- 'visible-to-profile' => 'Profil sichtbar für',
- 'visible-to-profile-help' => 'Dein Profil ist nur für Mitarbeiter und die folgenden Gruppen sichtbar. Diese Einstellungen werden überschrieben, wenn du privat gehst',
- 'visible-to-request' => 'Informationen anfordern, die für sichtbar sind',
- 'visible-to-request-help' => 'Deine Anforderungsinformationen sind nur für Teammitglieder und die folgenden Gruppen sichtbar. Diese Einstellungen werden überschrieben, wenn du privat gehst',
- 'visible-to-torrent' => 'Torrent-Informationen sichtbar für',
- 'visible-to-torrent-help' => 'Deine Torrent-Informationen sind nur für Teammitglieder und die folgenden Gruppen sichtbar. Diese Einstellungen werden überschrieben, wenn du privat gehst oder verborgen bist.',
- 'warned-by' => 'Verwarnt von',
- 'warned-on' => 'Verwarnt am',
- 'warning' => 'Verwarnung',
- 'warning-log' => 'Verwarnungs Log',
- 'wishlist' => 'Wunschzettel',
+ 'mention-notification-forum-post' => 'Erhalte eine Benachrichtigung, wenn du in einem Forenbeitrag @erwähnt wirst',
+ 'mention-notification-help' => 'Lege fest, welche Benachrichtigungen gesendet werden, wenn ein Nutzer dich benachrichtigt. Diese Einstellungen werden außer Kraft gesetzt, wenn du alle Gruppen Benachrichtigungen deaktiviert sind, wenn ein Nutzer dich @erwähnt oder Benachrichtigungen deaktiviert ist',
+ 'moderated-by' => 'Moderiert von :mod auf',
+ 'my-bonus-points' => 'Meine Bonuspunkte',
+ 'my-bookmarks' => 'Meine Lesezeichen',
+ 'my-fl-tokens' => 'Meine FL-Token',
+ 'my-general-settings' => 'Meine Allgemeinen Einstellungen',
+ 'my-notification' => 'Meine Benachrichtigung',
+ 'my-notification-settings' => 'Meine Benachrichtigungs-Einstellungen',
+ 'my-privacy' => 'Meine Privatsphäre',
+ 'my-privacy-settings' => 'Meine Datenschutz-Einstellungen',
+ 'my-profile' => 'Mein Profil',
+ 'my-requested' => 'Meine Requests',
+ 'my-security' => 'Meine Sicherheit',
+ 'my-security-settings' => 'Meine Sicherheitseinstellungen',
+ 'my-seedboxes' => 'Meine Seedboxen',
+ 'my-settings' => 'Meine Einstellungen',
+ 'my-uploads' => 'Meine Uploads',
+ 'my-wishlist' => 'Meine Wunschliste',
+ 'no-logs' => 'Für diesen Nutzer gibt es keine Invite Logs in der Datenbank!',
+ 'no-seedboxes' => 'Keine Seedboxen 😔',
+ 'not-authorized' => 'Du bist nicht berechtigt, diese Seite aufzurufen. Dieses Mitglied zieht es vor ein Ninja zu sein!',
+ 'not-enough-invites' => 'Du hast nicht genug Invites!',
+ 'note' => 'Hinweis',
+ 'notification' => 'Benachrichtigung',
+ 'notification-settings' => 'Benachrichtigungs-Einstellungen',
+ 'notification-from-account' => 'Erhalte Kontobenachrichtigungen von',
+ 'notification-from-account-help' => 'Du erhältst nur Kontobenachrichtigungen vom System, Team und den folgenden Gruppen. Diese Einstellungen werden überschrieben, wenn du Benachrichtigungen deaktivierst',
+ 'notification-from-bon' => 'Erhalte Bonus-Benachrichtigungen von',
+ 'notification-from-bon-help' => 'Du erhältst nur Bonus-Benachrichtigungen vom System, Team und den folgenden Gruppen. Diese Einstellungen werden überschrieben, wenn du Benachrichtigungen deaktivierst',
+ 'notification-from-following' => 'Erhalte Benachrichtigungen über gefolgten Nutzern von',
+ 'notification-from-following-help' => 'Du erhältst nur folgende Benutzerbenachrichtigungen aus den folgenden Gruppen. Diese Einstellungen werden überschrieben, wenn du Benachrichtigungen deaktivierst',
+ 'notification-from-forum' => 'Erhalte Forumbenachrichtigungen von',
+ 'notification-from-forum-help' => 'Du erhältst nur Forumbenachrichtigungen vom System, Team und den folgenden Gruppen. Diese Einstellungen werden überschrieben, wenn du Benachrichtigungen deaktivierst',
+ 'notification-from-subscription' => 'Abonnementbenachrichtigungen erhalten von',
+ 'notification-from-subscription-help' => 'Du erhältst nur Forumbenachrichtigungen vom System, Team und den folgenden Gruppen. Diese Einstellungen werden überschrieben, wenn du Benachrichtigungen deaktivierst',
+ 'notification-from-torrent' => 'Erhalte Torrent-Benachrichtigungen von',
+ 'notification-from-torrent-help' => 'Du erhältst nur Torrent-Benachrichtigungen vom System, Team und den folgenden Gruppen. Diese Einstellungen werden überschrieben, wenn du Benachrichtigungen deaktivierst',
+ 'notification-from-mention' => 'Erhalte @Erwähnung-Benachrichtigungen von',
+ 'notification-from-mention-help' => 'Du erhältst nur @Erwähnung-Benachrichtigungen vom System, Team und den folgenden Gruppen. Diese Einstellungen werden überschrieben, wenn du Benachrichtigungen deaktivierst',
+ 'notification-from-request' => 'Erhalte Request-Benachrichtigungen von',
+ 'notification-from-request-help' => 'Du erhältst nur Request-Benachrichtigungen vom System, Team und den folgenden Gruppen. Diese Einstellungen werden überschrieben, wenn du Benachrichtigungen deaktivierst',
+ 'notifications' => 'Benachrichtigungen',
+ 'offline' => 'Nutzer ist offline!',
+ 'online' => 'Nutzer ist online!',
+ 'options' => 'Optionen',
+ 'other-help' => 'Steuere die Freigabe anderer Statistiken und Informationen mit Gruppen, die auf dein Profil zugreifen dürfen. Diese Einstellungen werden überschrieben, wenn du keiner Gruppe den Zugriff gestattest oder wenn du privat gehst',
+ 'other-privacy' => 'Andere Einstellungen',
+ 'other-privacy-online' => 'Erlaube Nutzern, dich auf der Startseite im "Benutzer online" Abschnitt zu sehen',
+ 'passkey' => 'PID',
+ 'passkey-warning' => 'PID ist wie dein Passwort, du musst es sicher aufbewahren!',
+ 'pending-achievements' => 'Ausstehende Archivements',
+ 'per-torrent' => 'Pro Torrent',
+ 'posts' => 'Beiträge',
+ 'posts-posted' => 'Forum Beiträge gepostet',
+ 'privacy' => 'Privatsphäre',
+ 'privacy-settings' => 'Privatsphäre-Einstellungen',
+ 'private-info' => 'Private Info',
+ 'private-forum-profile' => 'Achtung: Der Verlauf wurden auf PRIVAT gesetzt!',
+ 'private-profile' => 'Achtung: Dieses Profil wurde auf PRIVAT gesetzt!',
+ 'profile' => 'Profil',
+ 'profile-desc' => 'Nutzer :user registriert auf :title',
+ 'profile-privacy' => 'Profil-Einstellungen',
+ 'profile-privacy-torrent-count' => 'Teile deine Gesamtzahl an Downloads, Uploads, Seeds und Leechs',
+ 'profile-privacy-torrent-ratio' => 'Teile deinen Upload-/Download-Traffic zusammen mit der Ratio',
+ 'profile-privacy-torrent-seed' => 'Teile deine Seedzeit',
+ 'profile-privacy-title' => 'Teile deine persönlichen Titel',
+ 'profile-privacy-about' => 'Teile deine persönlichen Informationen',
+ 'profile-privacy-bon-extra' => 'Teile deine Bonus-Statistiken',
+ 'profile-privacy-comment-extra' => 'Teile deine Kommentar-Statistiken',
+ 'profile-privacy-forum-extra' => 'Teile deine Foren-Statistiken',
+ 'profile-privacy-request-extra' => 'Teile deine Request-Statistik',
+ 'profile-privacy-torrent-extra' => 'Teile deine Torrent-Statistiken',
+ 'profile-privacy-badge' => 'Teile deine verdienten Abzeichen',
+ 'profile-privacy-achievement' => 'Teile deine jüngsten Archivements',
+ 'profile-privacy-follower' => 'Teile deine letzten Follower',
+ 'profile-privacy-warning' => 'Teile deine H&R-Warnungen',
+ 'profile-privacy-help' => 'Lege fest, welche Statistiken und Informationen in deinem Profil angezeigt werden. Diese Einstellungen werden überschrieben, wenn keiner Gruppe den Zugriff aktiviert sind oder wenn du privat gehst',
+ 'public-info' => 'Öffentliche Info',
+ 'recent-achievements' => 'Neueste Archivements',
+ 'recent-followers' => 'Neueste Follower',
+ 'registration-date' => 'Registrierungsdatum',
+ 'report' => 'Melden',
+ 'report-sent' => 'Deine Meldung wurde erfolgreich gesendet',
+ 'request-help' => 'Steuere den Austausch bestimmter Request-bezogener Statistiken und Informationen mit Gruppen, die auf dein Profil zugreifen dürfen. Diese Einstellungen werden überschrieben, wenn keine der unten aufgeführten Gruppen aktiviert ist oder wenn du privat gehst',
+ 'request' => 'Request',
+ 'requested' => 'Requestes',
+ 'requests' => 'Requests',
+ 'request-comments' => 'Request Kommentare',
+ 'request-notification' => 'Request Benachrichtigungseinstellungen',
+ 'request-notification-bounty' => 'Erhalte eine Benachrichtigung, wenn ein Request einen neuen Bounty erhält',
+ 'request-notification-comment' => 'Erhalte eine Benachrichtigung, wenn ein Request einen neuen Kommentar erhält',
+ 'request-notification-fill' => 'Erhalte eine Benachrichtigung, wenn ein Request erfüllt wurde',
+ 'request-notification-fill-approve' => 'Erhalte eine Benachrichtigung, wenn ein Request genehmigt wurde',
+ 'request-notification-fill-reject' => 'Erhalte eine Benachrichtigung, wenn ein Request abgelehnt wurde',
+ 'request-notification-claim' => 'Erhalte eine Benachrichtigung, wenn ein Request geclaimed wurde',
+ 'request-notification-unclaim' => 'Erhalte eine Benachrichtigung, wenn ein Request un-geclaimed wurde',
+ 'request-notification-help' => 'Lege fest, welche Benachrichtigungen bezüglich Requests gesendet werden. Diese Einstellungen werden überschrieben, wenn keine der unten aufgeführten Gruppen aktiviert ist oder du Benachrichtigungen deaktivierst',
+ 'request-privacy' => 'Request Einstellungen',
+ 'request-privacy-requested' => 'Erlaube Nutzern, deine Request Liste anzuzeigen',
+ 'reset-passkey' => 'Pass Key (PID) zurücksetzen',
+ 'reset-passkey-help' => 'Nach dem Zurücksetzen der PID musst du alle aktiven Torrents erneut herunterladen bzw. erneut hochladen',
+ 'reset-rss' => 'RSS-Schlüssel (RID) zurücksetzen',
+ 'reset-rss-help' => 'Nach dem Zurücksetzen des RID musst du alle aktiven RSS-Feeds erneut laden',
+ 'resurrections' => 'Wiederbelebt',
+ 'search' => 'Schnelle Suche nach Nutzername',
+ 'security' => 'Sicherheit',
+ 'security-settings' => 'Sicherheits-Einstellungen',
+ 'seedbox-added-success' => 'Seedbox wurde erfolgreich hinzugefügt!',
+ 'seedbox-deleted-success' => 'Seedbox wurde erfolgreich gelöscht',
+ 'seedboxes' => 'Seedboxen',
+ 'seeding-size' => 'Seed Größe',
+ 'seeds' => 'Seeds',
+ 'send-invite' => 'Sende Invite',
+ 'sender' => 'Absender',
+ 'settings' => 'Einstellungen',
+ 'show-passkey' => 'PID anzeigen',
+ 'soft-deleted-warnings' => 'Soft Gelöschte Verwarnungen',
+ 'staff-noted' => 'Team Notiertes Konto',
+ 'statistics' => 'Statistiken',
+ 'subscription-notification' => 'Abonnement-Benachrichtigungs-Einstellungen',
+ 'subscription-notification-forum' => 'Erhalten Sie eine Benachrichtigung, wenn ein abonniertes Forum ein neues Thema erhält',
+ 'subscription-notification-topic' => 'Erhalten Sie eine Benachrichtigung, wenn ein abonniertes Thema einen neuen Beitrag erhält',
+ 'subscription-notification-help' => 'Lege fest, welche Benachrichtigungen zu deinen Abonnements gesendet werden. Diese Einstellungen werden überschrieben, wenn keine der unten aufgeführten Gruppen aktiviert ist, oder wenn du Benachrichtigungen deaktivierst',
+ 'thanks-given' => 'Bedankt',
+ 'thanks-received' => 'Danke erhalten',
+ 'tips-given' => 'Trinkgeld gegeben',
+ 'tips-received' => 'Trinkgeld erhalten',
+ 'title' => 'Titel',
+ 'top-bankers' => 'Top Punkte',
+ 'top-downloaders-data' => 'Top Downloader (Traffic)',
+ 'top-leechers' => 'Top Leecher',
+ 'top-leechers-count' => 'Top Leecher (Anzahl)',
+ 'top-seeders' => 'Top Seeder',
+ 'top-seeders-count' => 'Top Seeder (Anzahl)',
+ 'top-seeding-size' => 'Top Seeding (Größe)',
+ 'top-seedtime' => 'Top Seedzeit',
+ 'top-uploaders-data' => 'Top Uploader (Traffic)',
+ 'top-uploaders-count' => 'Top Uploader',
+ 'topics' => 'Themen',
+ 'topics-started' => 'Forumsthemen gestartet',
+ 'torrent-comments' => 'Torrent-Kommentare',
+ 'torrent-help' => 'Steuere die Freigabe bestimmter Statistiken und Informationen zum Torrent mit Gruppen, die auf dein Profil zugreifen dürfen. Diese Einstellungen werden überschrieben, wenn keine Gruppe Zugriff auf deine Torrent-Statistiken und -Informationen hat oder wenn du privat gehst',
+ 'torrent-notification' => 'Torrent-Benachrichtigungseinstellungen',
+ 'torrent-notification-comment' => 'Erhalte eine Benachrichtigung, wenn ein hochgeladener Torrent einen neuen Kommentar erhält',
+ 'torrent-notification-thank' => 'Erhalte eine Benachrichtigung, wenn ein hochgeladener Torrent ein Dankeschön erhält',
+ 'torrent-notification-tip' => 'Erhalte eine Benachrichtigung, wenn ein hochgeladener Torrent Trinkgeld erhält',
+ 'torrent-notification-help' => 'Kontrolliere, welche Benachrichtigungen du über Torrent-Aktivitäten bekommst. Diese Einstellungen werden überschrieben, wenn der Zugriff aller Gruppen deaktiviert ist, oder wenn du Benachrichtigungen deaktivierst',
+ 'torrent-privacy' => 'Torrent-Einstellungen',
+ 'torrent-privacy-download' => 'Nutzern erlauben, deine Liste der heruntergeladenen Torrents anzuzeigen',
+ 'torrent-privacy-upload' => 'Nutzern erlauben, deine Liste der hochgeladenen Torrents anzuzeigen',
+ 'torrent-privacy-peer' => 'Erlaube es anderen Nutzern, dich in der Peer-Liste zu sehen',
+ 'torrents' => 'Torrents',
+ 'torrents-history' => 'Torrent Verlauf',
+ 'total-download' => 'Download insgesamt',
+ 'total-downloads' => 'Downloads insgesamt',
+ 'total-leeching' => 'Aktuell im Leech',
+ 'total-seeding' => 'Aktuell im Seed',
+ 'total-seedtime' => 'Gesamt Seedzeit',
+ 'total-upload' => 'Upload insgesamt',
+ 'total-uploads' => 'Uploads insgesamt',
+ 'unban' => 'Nutzer entbannen',
+ 'unfollow' => 'Entfolgen',
+ 'unlocked' => 'Freigeschaltet',
+ 'unlocked-achievements' => 'Freigeschaltete Erfolge',
+ 'unsatisfieds' => 'Unerfüllt',
+ 'upload-bon' => 'Upload hinzugefügt vom Bonus Store',
+ 'upload-recorded' => 'Aufgezeichneter Upload',
+ 'upload-true' => 'Echter Upload',
+ 'uploads' => 'Uploads',
+ 'uploads-table' => 'Upload Tabelle',
+ 'user' => 'Nutzer',
+ 'user-id' => 'Nutzer ID',
+ 'username-seedbox' => 'Nutzername Seedbox',
+ 'visible-to-achievement' => 'Archivements sichtbar für',
+ 'visible-to-achievement-help' => 'Deine Leistungen sind nur für Teammitglieder und die folgenden Gruppen sichtbar. Diese Einstellungen werden überschrieben, wenn du privat gehst',
+ 'visible-to-follower' => 'Followers sichtbar für',
+ 'visible-to-follower-help' => 'Deine Follower sind nur für Teammitglieder und die folgenden Gruppen sichtbar. Diese Einstellungen werden überschrieben, wenn du privat gehst',
+ 'visible-to-forum' => 'Forum-Informationen sichtbar für',
+ 'visible-to-forum-help' => 'Deine Foruminformationen sind nur für Teammitglieder und die folgenden Gruppen sichtbar. Diese Einstellungen werden überschrieben, wenn du privat gehst',
+ 'visible-to-other' => 'Sichtbar für Andere',
+ 'visible-to-other-help' => 'Andere Informationen zu deinem Konto sind nur für Teammitglieder und die folgenden Gruppen sichtbar. Diese Einstellungen werden überschrieben, wenn du privat gehst oder verborgen bist',
+ 'visible-to-profile' => 'Profil sichtbar für',
+ 'visible-to-profile-help' => 'Dein Profil ist nur für Mitarbeiter und die folgenden Gruppen sichtbar. Diese Einstellungen werden überschrieben, wenn du privat gehst',
+ 'visible-to-request' => 'Informationen anfordern, die für sichtbar sind',
+ 'visible-to-request-help' => 'Deine Anforderungsinformationen sind nur für Teammitglieder und die folgenden Gruppen sichtbar. Diese Einstellungen werden überschrieben, wenn du privat gehst',
+ 'visible-to-torrent' => 'Torrent-Informationen sichtbar für',
+ 'visible-to-torrent-help' => 'Deine Torrent-Informationen sind nur für Teammitglieder und die folgenden Gruppen sichtbar. Diese Einstellungen werden überschrieben, wenn du privat gehst oder verborgen bist.',
+ 'warned-by' => 'Verwarnt von',
+ 'warned-on' => 'Verwarnt am',
+ 'warning' => 'Verwarnung',
+ 'warning-log' => 'Verwarnungs Log',
+ 'wishlist' => 'Wunschzettel',
];
diff --git a/lang/de/validation.php b/lang/de/validation.php
index 284caaa39..97c570c92 100644
--- a/lang/de/validation.php
+++ b/lang/de/validation.php
@@ -23,108 +23,108 @@ return [
|
*/
- 'accepted' => ':attribute muss akzeptiert werden.',
- 'active_url' => ':attribute ist keine gültige URL.',
- 'after' => ':attribute muss ein Datum nach dem :date sein.',
- 'after_or_equal' => ':attribute muss ein Datum nach dem :date oder gleich dem :date sein.',
- 'alpha' => ':attribute darf nur aus Buchstaben bestehen.',
- 'alpha_dash' => ':attribute darf nur aus Buchstaben, Zahlen, Binde- und Unterstrichen bestehen.',
- 'alpha_num' => ':attribute darf nur aus Buchstaben und Zahlen bestehen.',
- 'array' => ':attribute muss ein Array sein.',
- 'before' => ':attribute muss ein Datum vor dem :date sein.',
- 'before_or_equal' => ':attribute muss ein Datum vor dem :date oder gleich dem :date sein.',
- 'between' => [
+ 'accepted' => ':attribute muss akzeptiert werden.',
+ 'active_url' => ':attribute ist keine gültige URL.',
+ 'after' => ':attribute muss ein Datum nach dem :date sein.',
+ 'after_or_equal' => ':attribute muss ein Datum nach dem :date oder gleich dem :date sein.',
+ 'alpha' => ':attribute darf nur aus Buchstaben bestehen.',
+ 'alpha_dash' => ':attribute darf nur aus Buchstaben, Zahlen, Binde- und Unterstrichen bestehen.',
+ 'alpha_num' => ':attribute darf nur aus Buchstaben und Zahlen bestehen.',
+ 'array' => ':attribute muss ein Array sein.',
+ 'before' => ':attribute muss ein Datum vor dem :date sein.',
+ 'before_or_equal' => ':attribute muss ein Datum vor dem :date oder gleich dem :date sein.',
+ 'between' => [
'numeric' => ':attribute muss zwischen :min & :max liegen.',
- 'file' => ':attribute muss zwischen :min & :max Kilobytes groß sein.',
- 'string' => ':attribute muss zwischen :min & :max Zeichen lang sein.',
- 'array' => ':attribute muss zwischen :min & :max Elemente haben.',
+ 'file' => ':attribute muss zwischen :min & :max Kilobytes groß sein.',
+ 'string' => ':attribute muss zwischen :min & :max Zeichen lang sein.',
+ 'array' => ':attribute muss zwischen :min & :max Elemente haben.',
],
- 'boolean' => ":attribute muss entweder 'true' oder 'false' sein.",
- 'confirmed' => ':attribute stimmt nicht mit der Bestätigung überein.',
- 'date' => ':attribute muss ein gültiges Datum sein.',
- 'date_equals' => 'The :attribute must be a date equal to :date.',
- 'date_format' => ':attribute entspricht nicht dem gültigen Format für :format.',
- 'different' => ':attribute und :other müssen sich unterscheiden.',
- 'digits' => ':attribute muss :digits Stellen haben.',
- 'digits_between' => ':attribute muss zwischen :min und :max Stellen haben.',
- 'dimensions' => ':attribute hat ungültige Bildabmessungen.',
- 'distinct' => ':attribute beinhaltet einen bereits vorhandenen Wert.',
- 'email' => ':attribute muss eine gültige E-Mail-Adresse sein.',
- 'exists' => 'Der gewählte Wert für :attribute ist ungültig.',
- 'file' => ':attribute muss eine Datei sein.',
- 'filled' => ':attribute muss ausgefüllt sein.',
- 'gt' => [
+ 'boolean' => ":attribute muss entweder 'true' oder 'false' sein.",
+ 'confirmed' => ':attribute stimmt nicht mit der Bestätigung überein.',
+ 'date' => ':attribute muss ein gültiges Datum sein.',
+ 'date_equals' => 'The :attribute must be a date equal to :date.',
+ 'date_format' => ':attribute entspricht nicht dem gültigen Format für :format.',
+ 'different' => ':attribute und :other müssen sich unterscheiden.',
+ 'digits' => ':attribute muss :digits Stellen haben.',
+ 'digits_between' => ':attribute muss zwischen :min und :max Stellen haben.',
+ 'dimensions' => ':attribute hat ungültige Bildabmessungen.',
+ 'distinct' => ':attribute beinhaltet einen bereits vorhandenen Wert.',
+ 'email' => ':attribute muss eine gültige E-Mail-Adresse sein.',
+ 'exists' => 'Der gewählte Wert für :attribute ist ungültig.',
+ 'file' => ':attribute muss eine Datei sein.',
+ 'filled' => ':attribute muss ausgefüllt sein.',
+ 'gt' => [
'numeric' => ':attribute muss mindestens :value sein.',
- 'file' => ':attribute muss mindestens :value Kilobytes groß sein.',
- 'string' => ':attribute muss mindestens :value Zeichen lang sein.',
- 'array' => ':attribute muss mindestens :value Elemente haben.',
+ 'file' => ':attribute muss mindestens :value Kilobytes groß sein.',
+ 'string' => ':attribute muss mindestens :value Zeichen lang sein.',
+ 'array' => ':attribute muss mindestens :value Elemente haben.',
],
- 'gte' => [
+ 'gte' => [
'numeric' => ':attribute muss größer oder gleich :value sein.',
- 'file' => ':attribute muss größer oder gleich :value Kilobytes sein.',
- 'string' => ':attribute muss größer oder gleich :value Zeichen lang sein.',
- 'array' => ':attribute muss größer oder gleich :value Elemente haben.',
+ 'file' => ':attribute muss größer oder gleich :value Kilobytes sein.',
+ 'string' => ':attribute muss größer oder gleich :value Zeichen lang sein.',
+ 'array' => ':attribute muss größer oder gleich :value Elemente haben.',
],
- 'image' => ':attribute muss ein Bild sein.',
- 'in' => 'Der gewählte Wert für :attribute ist ungültig.',
- 'in_array' => 'Der gewählte Wert für :attribute kommt nicht in :other vor.',
- 'integer' => ':attribute muss eine ganze Zahl sein.',
- 'ip' => ':attribute muss eine gültige IP-Adresse sein.',
- 'ipv4' => ':attribute muss eine gültige IPv4-Adresse sein.',
- 'ipv6' => ':attribute muss eine gültige IPv6-Adresse sein.',
- 'json' => ':attribute muss ein gültiger JSON-String sein.',
- 'lt' => [
+ 'image' => ':attribute muss ein Bild sein.',
+ 'in' => 'Der gewählte Wert für :attribute ist ungültig.',
+ 'in_array' => 'Der gewählte Wert für :attribute kommt nicht in :other vor.',
+ 'integer' => ':attribute muss eine ganze Zahl sein.',
+ 'ip' => ':attribute muss eine gültige IP-Adresse sein.',
+ 'ipv4' => ':attribute muss eine gültige IPv4-Adresse sein.',
+ 'ipv6' => ':attribute muss eine gültige IPv6-Adresse sein.',
+ 'json' => ':attribute muss ein gültiger JSON-String sein.',
+ 'lt' => [
'numeric' => ':attribute muss kleiner :value sein.',
- 'file' => ':attribute muss kleiner :value Kilobytes groß sein.',
- 'string' => ':attribute muss kleiner :value Zeichen lang sein.',
- 'array' => ':attribute muss kleiner :value Elemente haben.',
+ 'file' => ':attribute muss kleiner :value Kilobytes groß sein.',
+ 'string' => ':attribute muss kleiner :value Zeichen lang sein.',
+ 'array' => ':attribute muss kleiner :value Elemente haben.',
],
- 'lte' => [
+ 'lte' => [
'numeric' => ':attribute muss kleiner oder gleich :value sein.',
- 'file' => ':attribute muss kleiner oder gleich :value Kilobytes sein.',
- 'string' => ':attribute muss kleiner oder gleich :value Zeichen lang sein.',
- 'array' => ':attribute muss kleiner oder gleich :value Elemente haben.',
+ 'file' => ':attribute muss kleiner oder gleich :value Kilobytes sein.',
+ 'string' => ':attribute muss kleiner oder gleich :value Zeichen lang sein.',
+ 'array' => ':attribute muss kleiner oder gleich :value Elemente haben.',
],
- 'max' => [
+ 'max' => [
'numeric' => ':attribute darf maximal :max sein.',
- 'file' => ':attribute darf maximal :max Kilobytes groß sein.',
- 'string' => ':attribute darf maximal :max Zeichen haben.',
- 'array' => ':attribute darf nicht mehr als :max Elemente haben.',
+ 'file' => ':attribute darf maximal :max Kilobytes groß sein.',
+ 'string' => ':attribute darf maximal :max Zeichen haben.',
+ 'array' => ':attribute darf nicht mehr als :max Elemente haben.',
],
- 'mimes' => ':attribute muss den Dateityp :values haben.',
- 'mimetypes' => ':attribute muss den Dateityp :values haben.',
- 'min' => [
+ 'mimes' => ':attribute muss den Dateityp :values haben.',
+ 'mimetypes' => ':attribute muss den Dateityp :values haben.',
+ 'min' => [
'numeric' => ':attribute muss mindestens :min sein.',
- 'file' => ':attribute muss mindestens :min Kilobytes groß sein.',
- 'string' => ':attribute muss mindestens :min Zeichen lang sein.',
- 'array' => ':attribute muss mindestens :min Elemente haben.',
+ 'file' => ':attribute muss mindestens :min Kilobytes groß sein.',
+ 'string' => ':attribute muss mindestens :min Zeichen lang sein.',
+ 'array' => ':attribute muss mindestens :min Elemente haben.',
],
- 'not_in' => 'Der gewählte Wert für :attribute ist ungültig.',
- 'not_regex' => ':attribute hat ein ungültiges Format.',
- 'numeric' => ':attribute muss eine Zahl sein.',
- 'present' => ':attribute muss vorhanden sein.',
- 'regex' => ':attribute Format ist ungültig.',
- 'required' => ':attribute muss ausgefüllt sein.',
- 'required_if' => ':attribute muss ausgefüllt sein, wenn :other :value ist.',
- 'required_unless' => ':attribute muss ausgefüllt sein, wenn :other nicht :values ist.',
- 'required_with' => ':attribute muss angegeben werden, wenn :values ausgefüllt wurde.',
- 'required_with_all' => ':attribute muss angegeben werden, wenn :values ausgefüllt wurde.',
- 'required_without' => ':attribute muss angegeben werden, wenn :values nicht ausgefüllt wurde.',
+ 'not_in' => 'Der gewählte Wert für :attribute ist ungültig.',
+ 'not_regex' => ':attribute hat ein ungültiges Format.',
+ 'numeric' => ':attribute muss eine Zahl sein.',
+ 'present' => ':attribute muss vorhanden sein.',
+ 'regex' => ':attribute Format ist ungültig.',
+ 'required' => ':attribute muss ausgefüllt sein.',
+ 'required_if' => ':attribute muss ausgefüllt sein, wenn :other :value ist.',
+ 'required_unless' => ':attribute muss ausgefüllt sein, wenn :other nicht :values ist.',
+ 'required_with' => ':attribute muss angegeben werden, wenn :values ausgefüllt wurde.',
+ 'required_with_all' => ':attribute muss angegeben werden, wenn :values ausgefüllt wurde.',
+ 'required_without' => ':attribute muss angegeben werden, wenn :values nicht ausgefüllt wurde.',
'required_without_all' => ':attribute muss angegeben werden, wenn keines der Felder :values ausgefüllt wurde.',
- 'same' => ':attribute und :other müssen übereinstimmen.',
- 'size' => [
+ 'same' => ':attribute und :other müssen übereinstimmen.',
+ 'size' => [
'numeric' => ':attribute muss gleich :size sein.',
- 'file' => ':attribute muss :size Kilobyte groß sein.',
- 'string' => ':attribute muss :size Zeichen lang sein.',
- 'array' => ':attribute muss genau :size Elemente haben.',
+ 'file' => ':attribute muss :size Kilobyte groß sein.',
+ 'string' => ':attribute muss :size Zeichen lang sein.',
+ 'array' => ':attribute muss genau :size Elemente haben.',
],
- 'starts_with' => 'The :attribute must start with one of the following: :values',
- 'string' => ':attribute muss ein String sein.',
- 'timezone' => ':attribute muss eine gültige Zeitzone sein.',
- 'unique' => ':attribute ist schon vergeben.',
- 'uploaded' => ':attribute konnte nicht hochgeladen werden.',
- 'url' => ':attribute muss eine URL sein.',
- 'uuid' => ':attribute muss ein UUID sein.',
+ 'starts_with' => 'The :attribute must start with one of the following: :values',
+ 'string' => ':attribute muss ein String sein.',
+ 'timezone' => ':attribute muss eine gültige Zeitzone sein.',
+ 'unique' => ':attribute ist schon vergeben.',
+ 'uploaded' => ':attribute konnte nicht hochgeladen werden.',
+ 'url' => ':attribute muss eine URL sein.',
+ 'uuid' => ':attribute muss ein UUID sein.',
/*
|--------------------------------------------------------------------------
@@ -138,7 +138,7 @@ return [
*/
'email_list' => 'Es tut uns leid, diese E-Mail-Provider darf auf dieser Website nicht verwendet werden. Bitte sehe dir die E-Mail-Whitelist der Webseite an.',
- 'recaptcha' => 'Bitte absolvieren den ReCaptcha.',
+ 'recaptcha' => 'Bitte absolvieren den ReCaptcha.',
'custom' => [
'attribute-name' => [
@@ -158,34 +158,34 @@ return [
*/
'attributes' => [
- 'name' => 'Name',
- 'username' => 'Benutzername',
- 'email' => 'E-Mail-Adresse',
- 'first_name' => 'Vorname',
- 'last_name' => 'Nachname',
- 'password' => 'Passwort',
+ 'name' => 'Name',
+ 'username' => 'Benutzername',
+ 'email' => 'E-Mail-Adresse',
+ 'first_name' => 'Vorname',
+ 'last_name' => 'Nachname',
+ 'password' => 'Passwort',
'password_confirmation' => 'Passwort-Bestätigung',
- 'city' => 'Stadt',
- 'country' => 'Land',
- 'address' => 'Adresse',
- 'phone' => 'Telefonnummer',
- 'mobile' => 'Handynummer',
- 'age' => 'Alter',
- 'sex' => 'Geschlecht',
- 'gender' => 'Geschlecht',
- 'day' => 'Tag',
- 'month' => 'Monat',
- 'year' => 'Jahr',
- 'hour' => 'Stunde',
- 'minute' => 'Minute',
- 'second' => 'Sekunde',
- 'title' => 'Titel',
- 'content' => 'Inhalt',
- 'description' => 'Beschreibung',
- 'excerpt' => 'Auszug',
- 'date' => 'Datum',
- 'time' => 'Uhrzeit',
- 'available' => 'verfügbar',
- 'size' => 'Größe',
+ 'city' => 'Stadt',
+ 'country' => 'Land',
+ 'address' => 'Adresse',
+ 'phone' => 'Telefonnummer',
+ 'mobile' => 'Handynummer',
+ 'age' => 'Alter',
+ 'sex' => 'Geschlecht',
+ 'gender' => 'Geschlecht',
+ 'day' => 'Tag',
+ 'month' => 'Monat',
+ 'year' => 'Jahr',
+ 'hour' => 'Stunde',
+ 'minute' => 'Minute',
+ 'second' => 'Sekunde',
+ 'title' => 'Titel',
+ 'content' => 'Inhalt',
+ 'description' => 'Beschreibung',
+ 'excerpt' => 'Auszug',
+ 'date' => 'Datum',
+ 'time' => 'Uhrzeit',
+ 'available' => 'verfügbar',
+ 'size' => 'Größe',
],
];
diff --git a/lang/el/articles.php b/lang/el/articles.php
index 38974f1cb..0b6341a13 100644
--- a/lang/el/articles.php
+++ b/lang/el/articles.php
@@ -12,8 +12,8 @@
*/
return [
- 'articles' => 'Άρθρα',
+ 'articles' => 'Άρθρα',
'meta-articles' => 'Άρθρα και ειδήσεις για τον ιχνηλάτη και την κοινότητα',
- 'published-at' => 'Δημοσιεύθηκε στις',
- 'read-more' => 'Διαβάστε περισσότερα',
+ 'published-at' => 'Δημοσιεύθηκε στις',
+ 'read-more' => 'Διαβάστε περισσότερα',
];
diff --git a/lang/el/auth.php b/lang/el/auth.php
index 176aa2169..cd78b0355 100644
--- a/lang/el/auth.php
+++ b/lang/el/auth.php
@@ -17,91 +17,91 @@ return [
| Default Authentication Language Lines
|--------------------------------------------------------------------------
*/
- 'activation-error' => 'Λάθος συνδεσμος, ή λογαριασμός ηδη επιβεβαιωμένος!',
- 'activation-success' => 'Ο Λογαριασμός επιβεβαιώθηκε. Μπορείτε να εισέλθετε!',
- 'add-image' => 'Προσθηκη συνδέσμου φωτογραφιας',
- 'add-profile' => 'Προσθηκη συνδέσμου Profile',
- 'allow-invite-appl' => 'Οι εγγραφές ειναι προς το παρόν κλειστές.! Πρέπει να έχετε πρόσκληση για να μπορέσετε να εγγραφείτε.! Είναι ανοικτές όμως οι αιτήσεις.. Σας μεταφέρουμε στη σελίδα των αιτήσεων!',
- 'allow-invite' => 'Οι εγγραφές ειναι προς το παρόν κλειστές.! Πρέπει να έχετε πρόσκληση για να μπορέσετε να εγγραφείτε.! Σας μεταφέρουμε στη σελίδα εισόδου!',
- 'are-you' => 'Are You:',
- 'application' => 'Αίτηση',
- 'appl-closed' => 'Οι αιτήσεις είναι κλειστές',
- 'appl-intro' => 'είναι μια κλειστή κοινότητα.. Πρέπει να έχετε πρόσκληση για να μπορέσετε να εγγραφείτε.!. Αν δε μπορείτε να βρείτε πρόσκληση, μπορείτε να κάνετε αίτηση για εγγραφή.',
- 'appl-reason' => 'Πως μάθατε για το ":sitename" και γιατί θα πρεπει να σας δεχτούμε? ',
- 'application-submitted' => 'Η αίτηση σας καταχωρήθηκε. Θα λάβετε email συντομα!',
- 'banned' => 'Αυός ο λογαριασμός έχει γινει BAN!',
- 'check-later' => 'Ελέγξτε πάλι αργότερα!',
- 'delete-image' => 'Διαγραφή τελευταίου συνδέσμου φωτογραφιας',
- 'delete-profile' => 'Διαγραφή τελευταίου συνδέσμου προφίλ',
- 'email' => 'E-mail',
- 'failed' => 'Αυτά τα στοιχεία δεν αντιστοιχούν με τα δικά μας.',
- 'invalid-key' => 'Λανθασμένη ή Ληγμένη προσκληση!',
- 'login' => 'Login',
- 'login-now-on' => 'Login now on',
- 'logout' => 'Logout',
- 'lost-password' => 'Ξέχασες τον κωδικό σου?',
- 'lost-username' => 'Ξέχασες το ονομα χρήστη?',
- 'need-invite' => 'Οι εγγραφές ειναι προς το παρόν κλειστές. Πρέπει να έχετε πρόσκληση για να μπορέσετε να εγγραφείτε.!!',
- 'newbie' => 'Νέος στο χώρο',
- 'not-a-member' => 'Ακόμη να γίνεις μέλος? Κάνε εγγραφή Ντελόγω.',
- 'not-activated' => 'Αυτος ο Λογαριασμος δεν εχει επικυρωθει / επιβεβαιωθει και βρίσκεται ακόμα στο γκρουπ validating. Ελέγξτε το email σας για το σύνδεσμο ενεργοποίησης. Αν δεν έχετε λαβει τον κωδικο ενεργοποισης , παρακαλώ κάντε click "forgot password" και ακολουθήστε τα βήματα.',
- 'password' => 'Κωδικός',
- 'proof-image' => 'Proof Image URL',
- 'proof-image-title' => 'Links to profile screenshots',
- 'proof-profile' => 'Profile Link URL',
- 'proof-profile-title' => 'Links to your profiles',
- 'proof-min' => '(Minimum 2, Recommended 3)',
- 'recover-my-password' => 'Ανάκτηση Κωδικού',
- 'register-thanks' => 'Ευχαριτούμε για την εγγραφή! Ελέγξτε το email σας για να ενεργοποιήσετε το λογαριασμό σας',
- 'remember-me' => 'Να με θυμάσαι',
- 'require-rules' => 'Παρακαλούμε διαβάστε και αποδεχτείτε τους κανόνες λειτουργίας κατεβαίνοντας ως το τέλος της σελίδας.',
- 'signup' => 'Εγγραφή',
- 'throttle' => 'Πολλες Προσπάθειες σύνδεσης. Παρακαλώ δοκιμάστε ξανα σε :seconds δευτερόλεπτα.',
- 'unlock' => 'Unlock',
- 'user-icon' => 'User Icon',
- 'username' => 'Ονομα χρηστη',
- 'veteran' => 'Έμπειρος χρήστης σε ιδιωτικούς Trackers',
- 'welcome' => 'Καλως ήρθες πάλι!',
- 'welcome-restore' => 'Καλως ήρθες πάλι! Ο Λογαριασμός σου , δεν είναι πλέον ανενεργός',
+ 'activation-error' => 'Λάθος συνδεσμος, ή λογαριασμός ηδη επιβεβαιωμένος!',
+ 'activation-success' => 'Ο Λογαριασμός επιβεβαιώθηκε. Μπορείτε να εισέλθετε!',
+ 'add-image' => 'Προσθηκη συνδέσμου φωτογραφιας',
+ 'add-profile' => 'Προσθηκη συνδέσμου Profile',
+ 'allow-invite-appl' => 'Οι εγγραφές ειναι προς το παρόν κλειστές.! Πρέπει να έχετε πρόσκληση για να μπορέσετε να εγγραφείτε.! Είναι ανοικτές όμως οι αιτήσεις.. Σας μεταφέρουμε στη σελίδα των αιτήσεων!',
+ 'allow-invite' => 'Οι εγγραφές ειναι προς το παρόν κλειστές.! Πρέπει να έχετε πρόσκληση για να μπορέσετε να εγγραφείτε.! Σας μεταφέρουμε στη σελίδα εισόδου!',
+ 'are-you' => 'Are You:',
+ 'application' => 'Αίτηση',
+ 'appl-closed' => 'Οι αιτήσεις είναι κλειστές',
+ 'appl-intro' => 'είναι μια κλειστή κοινότητα.. Πρέπει να έχετε πρόσκληση για να μπορέσετε να εγγραφείτε.!. Αν δε μπορείτε να βρείτε πρόσκληση, μπορείτε να κάνετε αίτηση για εγγραφή.',
+ 'appl-reason' => 'Πως μάθατε για το ":sitename" και γιατί θα πρεπει να σας δεχτούμε? ',
+ 'application-submitted' => 'Η αίτηση σας καταχωρήθηκε. Θα λάβετε email συντομα!',
+ 'banned' => 'Αυός ο λογαριασμός έχει γινει BAN!',
+ 'check-later' => 'Ελέγξτε πάλι αργότερα!',
+ 'delete-image' => 'Διαγραφή τελευταίου συνδέσμου φωτογραφιας',
+ 'delete-profile' => 'Διαγραφή τελευταίου συνδέσμου προφίλ',
+ 'email' => 'E-mail',
+ 'failed' => 'Αυτά τα στοιχεία δεν αντιστοιχούν με τα δικά μας.',
+ 'invalid-key' => 'Λανθασμένη ή Ληγμένη προσκληση!',
+ 'login' => 'Login',
+ 'login-now-on' => 'Login now on',
+ 'logout' => 'Logout',
+ 'lost-password' => 'Ξέχασες τον κωδικό σου?',
+ 'lost-username' => 'Ξέχασες το ονομα χρήστη?',
+ 'need-invite' => 'Οι εγγραφές ειναι προς το παρόν κλειστές. Πρέπει να έχετε πρόσκληση για να μπορέσετε να εγγραφείτε.!!',
+ 'newbie' => 'Νέος στο χώρο',
+ 'not-a-member' => 'Ακόμη να γίνεις μέλος? Κάνε εγγραφή Ντελόγω.',
+ 'not-activated' => 'Αυτος ο Λογαριασμος δεν εχει επικυρωθει / επιβεβαιωθει και βρίσκεται ακόμα στο γκρουπ validating. Ελέγξτε το email σας για το σύνδεσμο ενεργοποίησης. Αν δεν έχετε λαβει τον κωδικο ενεργοποισης , παρακαλώ κάντε click "forgot password" και ακολουθήστε τα βήματα.',
+ 'password' => 'Κωδικός',
+ 'proof-image' => 'Proof Image URL',
+ 'proof-image-title' => 'Links to profile screenshots',
+ 'proof-profile' => 'Profile Link URL',
+ 'proof-profile-title' => 'Links to your profiles',
+ 'proof-min' => '(Minimum 2, Recommended 3)',
+ 'recover-my-password' => 'Ανάκτηση Κωδικού',
+ 'register-thanks' => 'Ευχαριτούμε για την εγγραφή! Ελέγξτε το email σας για να ενεργοποιήσετε το λογαριασμό σας',
+ 'remember-me' => 'Να με θυμάσαι',
+ 'require-rules' => 'Παρακαλούμε διαβάστε και αποδεχτείτε τους κανόνες λειτουργίας κατεβαίνοντας ως το τέλος της σελίδας.',
+ 'signup' => 'Εγγραφή',
+ 'throttle' => 'Πολλες Προσπάθειες σύνδεσης. Παρακαλώ δοκιμάστε ξανα σε :seconds δευτερόλεπτα.',
+ 'unlock' => 'Unlock',
+ 'user-icon' => 'User Icon',
+ 'username' => 'Ονομα χρηστη',
+ 'veteran' => 'Έμπειρος χρήστης σε ιδιωτικούς Trackers',
+ 'welcome' => 'Καλως ήρθες πάλι!',
+ 'welcome-restore' => 'Καλως ήρθες πάλι! Ο Λογαριασμός σου , δεν είναι πλέον ανενεργός',
/*
|--------------------------------------------------------------------------
| Two Step Authentication Language Lines
|--------------------------------------------------------------------------
*/
- 'subtitle' => 'Απαιτείται Επιβεβαίωση',
- 'title' => '2-Step Verification',
- 'titleFailed' => 'η Επιβεβαίωση απέτυχε',
- 'titlePassed' => 'Good News Everyone!',
+ 'subtitle' => 'Απαιτείται Επιβεβαίωση',
+ 'title' => '2-Step Verification',
+ 'titleFailed' => 'η Επιβεβαίωση απέτυχε',
+ 'titlePassed' => 'Good News Everyone!',
- 'inputAlt1' => 'Code Input 1',
- 'inputAlt2' => 'Code Input 2',
- 'inputAlt3' => 'Code Input 3',
- 'inputAlt4' => 'Code Input 4',
+ 'inputAlt1' => 'Code Input 1',
+ 'inputAlt2' => 'Code Input 2',
+ 'inputAlt3' => 'Code Input 3',
+ 'inputAlt4' => 'Code Input 4',
- 'attemptsRemaining' => 'Attempt Remaining|Attempts Remaining',
- 'missingCode' => 'Δεν έλαβες το κωδικό επιβεβαίωσης?',
- 'verifyButton' => 'Επιβεβαίωση',
+ 'attemptsRemaining' => 'Attempt Remaining|Attempts Remaining',
+ 'missingCode' => 'Δεν έλαβες το κωδικό επιβεβαίωσης?',
+ 'verifyButton' => 'Επιβεβαίωση',
- 'exceededTitle' => 'Verification Attempts Exceeded',
- 'lockedUntil' => 'Ο λογαριασμός είναι κλειδωμένος μέχρι :',
- 'returnButton' => 'Return Home',
- 'tryAgainIn' => 'Δοκίμασε ξανά σε ',
+ 'exceededTitle' => 'Verification Attempts Exceeded',
+ 'lockedUntil' => 'Ο λογαριασμός είναι κλειδωμένος μέχρι :',
+ 'returnButton' => 'Return Home',
+ 'tryAgainIn' => 'Δοκίμασε ξανά σε ',
- 'verificationEmailButton' => 'Verify Now',
- 'verificationEmailGreeting' => 'Γειά σου :username',
- 'verificationEmailMessage' => 'Your account 2-step verification code is:',
- 'verificationEmailSubject' => 'Verification Required',
+ 'verificationEmailButton' => 'Verify Now',
+ 'verificationEmailGreeting' => 'Γειά σου :username',
+ 'verificationEmailMessage' => 'Your account 2-step verification code is:',
+ 'verificationEmailSubject' => 'Verification Required',
- 'verificationEmailSentMsg' => 'Verification Email Sent!',
- 'verificationEmailSuccess' => 'Success!',
+ 'verificationEmailSentMsg' => 'Verification Email Sent!',
+ 'verificationEmailSuccess' => 'Success!',
- 'verificationWarningMessage' => 'This is your last attempt before your account locks for :hours hours.',
- 'verificationWarningTitle' => 'Warning!',
+ 'verificationWarningMessage' => 'This is your last attempt before your account locks for :hours hours.',
+ 'verificationWarningTitle' => 'Warning!',
- 'verificationLockedMessage' => 'Account Locked!',
- 'verificationLockedTitle' => 'Doh!',
+ 'verificationLockedMessage' => 'Account Locked!',
+ 'verificationLockedTitle' => 'Doh!',
- 'verificationModalConfBtn' => 'Ok',
+ 'verificationModalConfBtn' => 'Ok',
];
diff --git a/lang/el/backup.php b/lang/el/backup.php
index 117179a6f..f59217d60 100644
--- a/lang/el/backup.php
+++ b/lang/el/backup.php
@@ -12,32 +12,32 @@
*/
return [
- 'actions' => 'Ενέργειες',
- 'backup' => 'Αντίγραφα ασφαλείας',
- 'backup_doesnt_exist' => 'Το αρχείο αντιγράφου ασφαλείας δεν υπάρχει.',
- 'create_a_new_backup' => 'Δημιουργία πλήρους αντιγράφου ασφαλείας',
- 'create_a_new_files_backup' => 'Δημιουργία αντιγράφων ασφαλείας αρχείων',
- 'create_a_new_db_backup' => 'Δημιουργία αντιγράφων ασφαλείας βάσεων δεδομένων',
- 'create_confirmation_message' => 'Επαναφορτώστε τη σελίδα σε 3 δευτερόλεπτα.',
- 'create_confirmation_title' => 'Η δημιουργία αντιγράφων ασφαλείας ολοκληρώθηκε',
- 'create_error_message' => 'Το αρχείο αντιγράφου ασφαλείας ΔΕΝ μπορεί να δημιουργηθεί.',
- 'create_error_title' => 'Εφεδρικό σφάλμα',
- 'create_warning_message' => 'Το αντίγραφο ασφαλείας σας ΔΕΝ μπορεί να δημιουργηθεί. Ελέγξτε τα αρχεία καταγραφής για λεπτομέρειες.',
- 'create_warning_title' => 'Αγνωστο σφάλμα',
- 'date' => 'Ημερομηνία',
- 'delete' => 'Διαγραφή',
- 'delete_cancel_message' => 'Το αρχείο αντιγράφου ασφαλείας ΔΕΝ έχει διαγραφεί.',
- 'delete_cancel_title' => 'Είναι εντάξει',
- 'delete_confirm' => 'Σίγουρα θέλετε να διαγράψετε αυτό το αρχείο αντιγράφων ασφαλείας;',
- 'delete_confirmation_message' => 'Το αρχείο αντιγράφου ασφαλείας διαγράφηκε.',
- 'delete_confirmation_title' => 'Εγινε',
- 'delete_error_message' => 'Το αρχείο αντιγράφου ασφαλείας ΔΕΝ έχει διαγραφtεί.',
- 'delete_error_title' => 'Λάθος',
- 'download' => 'Κατεβάστε',
- 'existing_backups' => 'Υπάρχοντα αντίγραφα ασφαλείας',
- 'file_size' => 'Μέγεθος αρχείου',
- 'location' => 'Τοποθεσία',
- 'manager' => 'Κέντρο Ελέγχου',
- 'no_disks_configured' => 'Δεν υπάρχουν διαμορφωμένοι δίσκοι δημιουργίας αντιγράφων στο config / backup.php',
+ 'actions' => 'Ενέργειες',
+ 'backup' => 'Αντίγραφα ασφαλείας',
+ 'backup_doesnt_exist' => 'Το αρχείο αντιγράφου ασφαλείας δεν υπάρχει.',
+ 'create_a_new_backup' => 'Δημιουργία πλήρους αντιγράφου ασφαλείας',
+ 'create_a_new_files_backup' => 'Δημιουργία αντιγράφων ασφαλείας αρχείων',
+ 'create_a_new_db_backup' => 'Δημιουργία αντιγράφων ασφαλείας βάσεων δεδομένων',
+ 'create_confirmation_message' => 'Επαναφορτώστε τη σελίδα σε 3 δευτερόλεπτα.',
+ 'create_confirmation_title' => 'Η δημιουργία αντιγράφων ασφαλείας ολοκληρώθηκε',
+ 'create_error_message' => 'Το αρχείο αντιγράφου ασφαλείας ΔΕΝ μπορεί να δημιουργηθεί.',
+ 'create_error_title' => 'Εφεδρικό σφάλμα',
+ 'create_warning_message' => 'Το αντίγραφο ασφαλείας σας ΔΕΝ μπορεί να δημιουργηθεί. Ελέγξτε τα αρχεία καταγραφής για λεπτομέρειες.',
+ 'create_warning_title' => 'Αγνωστο σφάλμα',
+ 'date' => 'Ημερομηνία',
+ 'delete' => 'Διαγραφή',
+ 'delete_cancel_message' => 'Το αρχείο αντιγράφου ασφαλείας ΔΕΝ έχει διαγραφεί.',
+ 'delete_cancel_title' => 'Είναι εντάξει',
+ 'delete_confirm' => 'Σίγουρα θέλετε να διαγράψετε αυτό το αρχείο αντιγράφων ασφαλείας;',
+ 'delete_confirmation_message' => 'Το αρχείο αντιγράφου ασφαλείας διαγράφηκε.',
+ 'delete_confirmation_title' => 'Εγινε',
+ 'delete_error_message' => 'Το αρχείο αντιγράφου ασφαλείας ΔΕΝ έχει διαγραφtεί.',
+ 'delete_error_title' => 'Λάθος',
+ 'download' => 'Κατεβάστε',
+ 'existing_backups' => 'Υπάρχοντα αντίγραφα ασφαλείας',
+ 'file_size' => 'Μέγεθος αρχείου',
+ 'location' => 'Τοποθεσία',
+ 'manager' => 'Κέντρο Ελέγχου',
+ 'no_disks_configured' => 'Δεν υπάρχουν διαμορφωμένοι δίσκοι δημιουργίας αντιγράφων στο config / backup.php',
'only_local_downloads_supported' => 'Λαμβάνονται μόνο λήψεις από το Τοπικό σύστημα αρχείων.',
];
diff --git a/lang/el/blocks.php b/lang/el/blocks.php
index c4d6f8daa..36548bd14 100644
--- a/lang/el/blocks.php
+++ b/lang/el/blocks.php
@@ -12,19 +12,19 @@
*/
return [
- 'chatbox' => 'Κουτί συνομιλίας',
- 'click' => 'Κάντε κλικ',
- 'to-enable-editor' => 'για να ενεργοποιήσετε τon επεξεργαστή κειμένου',
- 'featured-by' => 'Προτεινόμενα από',
- 'featured-torrents' => 'Προτεινόμενα Torrents',
+ 'chatbox' => 'Κουτί συνομιλίας',
+ 'click' => 'Κάντε κλικ',
+ 'to-enable-editor' => 'για να ενεργοποιήσετε τon επεξεργαστή κειμένου',
+ 'featured-by' => 'Προτεινόμενα από',
+ 'featured-torrents' => 'Προτεινόμενα Torrents',
'featured-torrents-intro' => 'Κατεβάστε τα, όσο προλαβαίνετε!',
- 'featured-until' => 'Αυτό το torrent εμφανίζεται προτεινόμενο μέχρι',
- 'top-torrents' => 'Κορυφάια Torrents',
- 'latest-posts' => 'Tελευταίες δημοσιεύσεις',
- 'latest-topics' => 'Τελευταία θέματα',
- 'active-in-last' => 'Ενεργός τελευταίος',
- 'users-online' => 'Χρήστες Online',
- 'check-news' => 'Νέα (ελέγξτε καθημερινά)',
- 'new-news' => 'Καινούρια νέα',
- 'new-torrents' => 'Νέα torrents',
+ 'featured-until' => 'Αυτό το torrent εμφανίζεται προτεινόμενο μέχρι',
+ 'top-torrents' => 'Κορυφάια Torrents',
+ 'latest-posts' => 'Tελευταίες δημοσιεύσεις',
+ 'latest-topics' => 'Τελευταία θέματα',
+ 'active-in-last' => 'Ενεργός τελευταίος',
+ 'users-online' => 'Χρήστες Online',
+ 'check-news' => 'Νέα (ελέγξτε καθημερινά)',
+ 'new-news' => 'Καινούρια νέα',
+ 'new-torrents' => 'Νέα torrents',
];
diff --git a/lang/el/bon.php b/lang/el/bon.php
index ca7cf51cb..6b1f3552e 100644
--- a/lang/el/bon.php
+++ b/lang/el/bon.php
@@ -12,44 +12,44 @@
*/
return [
- 'activated' => 'Ενεργοποιήθηκε',
- 'active' => 'Ενεργό!',
- 'amount' => 'Ποσό',
- 'bon' => 'Πονταλάκια',
- 'bonus' => 'Δώρο',
- 'date' => 'Ημερομηνία',
- 'earning' => 'Κερδίστε',
- 'earning-rate' => 'Με αυτό το ποσοστό κερδών θα κερδίζετε τα ακόλουθα ανά χρονικό πλαίσιο ..',
- 'earnings' => 'Κέρδη',
- 'exchange' => 'Ανταλλαγή',
- 'exchange-warning' => 'Οι ανταλλαγές είναι τελικές, παρακαλώ ελέγξτε τις επιλογές σας πριν πραγματοποιήσετε ανταλλαγή.',
- 'extended-stats' => 'Εκτεταμένα Στατιστικά',
- 'gift' => 'Δώρο',
- 'gift-bonus' => 'Πόντοι δώρα',
- 'gift-to' => 'Δωρο πόντοι προς',
- 'gifts' => 'Έχω Δωρίσει',
- 'item' => 'Είδος',
- 'no-refund' => 'ΟΧΙ ΕΠΙΣΤΡΟΦΕΣ!',
- 'per-day' => 'Πονταλάκια ανά ημέρα',
- 'per-hour' => 'Πονταλάκια ανά ώρα',
- 'per-minute' => 'Πονταλάκια ανά λεπτό',
- 'per-month' => 'Πονταλάκια ανά μήνα',
- 'per-second' => 'Πονταλάκια ανά δευτερόλεπτο',
- 'per-week' => 'Πονταλάκια ανά εβδομάδα',
- 'per-year' => 'Πονταλάκια ανά έτος',
- 'points' => 'Πονταλάκια',
- 'receiver' => 'Αποδέκτης',
- 'review-seeds' => 'Επανεξέταση όλων των Torrents που διαμοιράζω',
- 'send-gift' => 'Στείλε δώρο',
- 'sender' => 'Αποστολέας',
- 'store' => 'Κατάστημα',
- 'tips' => 'Έχω Φιλοδωρήσει',
- 'total' => 'συνολικες αποδοχες',
- 'total-gifts' => 'Συνολικά δωρισμένα ',
- 'total-tips' => 'Συνολικα κερασμένα',
+ 'activated' => 'Ενεργοποιήθηκε',
+ 'active' => 'Ενεργό!',
+ 'amount' => 'Ποσό',
+ 'bon' => 'Πονταλάκια',
+ 'bonus' => 'Δώρο',
+ 'date' => 'Ημερομηνία',
+ 'earning' => 'Κερδίστε',
+ 'earning-rate' => 'Με αυτό το ποσοστό κερδών θα κερδίζετε τα ακόλουθα ανά χρονικό πλαίσιο ..',
+ 'earnings' => 'Κέρδη',
+ 'exchange' => 'Ανταλλαγή',
+ 'exchange-warning' => 'Οι ανταλλαγές είναι τελικές, παρακαλώ ελέγξτε τις επιλογές σας πριν πραγματοποιήσετε ανταλλαγή.',
+ 'extended-stats' => 'Εκτεταμένα Στατιστικά',
+ 'gift' => 'Δώρο',
+ 'gift-bonus' => 'Πόντοι δώρα',
+ 'gift-to' => 'Δωρο πόντοι προς',
+ 'gifts' => 'Έχω Δωρίσει',
+ 'item' => 'Είδος',
+ 'no-refund' => 'ΟΧΙ ΕΠΙΣΤΡΟΦΕΣ!',
+ 'per-day' => 'Πονταλάκια ανά ημέρα',
+ 'per-hour' => 'Πονταλάκια ανά ώρα',
+ 'per-minute' => 'Πονταλάκια ανά λεπτό',
+ 'per-month' => 'Πονταλάκια ανά μήνα',
+ 'per-second' => 'Πονταλάκια ανά δευτερόλεπτο',
+ 'per-week' => 'Πονταλάκια ανά εβδομάδα',
+ 'per-year' => 'Πονταλάκια ανά έτος',
+ 'points' => 'Πονταλάκια',
+ 'receiver' => 'Αποδέκτης',
+ 'review-seeds' => 'Επανεξέταση όλων των Torrents που διαμοιράζω',
+ 'send-gift' => 'Στείλε δώρο',
+ 'sender' => 'Αποστολέας',
+ 'store' => 'Κατάστημα',
+ 'tips' => 'Έχω Φιλοδωρήσει',
+ 'total' => 'συνολικες αποδοχες',
+ 'total-gifts' => 'Συνολικά δωρισμένα ',
+ 'total-tips' => 'Συνολικα κερασμένα',
'you-have-received-gifts' => 'Εχεις λάβει δωρα',
- 'you-have-sent-gifts' => 'Εχεις στείλει δωρα',
- 'you-have-received-tips' => 'Εχεις λάβει κεράσματα',
- 'you-have-sent-tips' => 'Εχεις στείλει κεράσματα',
- 'your-points' => 'Τα Πονταλάκια σας',
+ 'you-have-sent-gifts' => 'Εχεις στείλει δωρα',
+ 'you-have-received-tips' => 'Εχεις λάβει κεράσματα',
+ 'you-have-sent-tips' => 'Εχεις στείλει κεράσματα',
+ 'your-points' => 'Τα Πονταλάκια σας',
];
diff --git a/lang/el/bot.php b/lang/el/bot.php
index fc61931c2..f201bc920 100644
--- a/lang/el/bot.php
+++ b/lang/el/bot.php
@@ -12,15 +12,15 @@
*/
return [
- 'about' => 'Σχετικά με',
- 'bot' => 'Bot',
- 'bots' => 'Μπότς',
- 'color' => 'Χρώμα',
- 'command' => 'Εντολή',
- 'edit-bot' => 'Επεξεργασία Bot',
+ 'about' => 'Σχετικά με',
+ 'bot' => 'Bot',
+ 'bots' => 'Μπότς',
+ 'color' => 'Χρώμα',
+ 'command' => 'Εντολή',
+ 'edit-bot' => 'Επεξεργασία Bot',
'emoji-code' => 'Κωδικός Emoji',
- 'help' => 'Βοήθεια',
- 'icon' => 'Εικονίδιο',
- 'info' => 'Πληροφορίες',
- 'name' => 'Ονομα',
+ 'help' => 'Βοήθεια',
+ 'icon' => 'Εικονίδιο',
+ 'info' => 'Πληροφορίες',
+ 'name' => 'Ονομα',
];
diff --git a/lang/el/bug.php b/lang/el/bug.php
index eaac8aee7..2c994dcb7 100644
--- a/lang/el/bug.php
+++ b/lang/el/bug.php
@@ -12,15 +12,15 @@
*/
return [
- 'bug-report' => 'Έκθεση σφαλμάτων',
+ 'bug-report' => 'Έκθεση σφαλμάτων',
'bug-report-description' => 'Αναφέρετε ένα σφάλμα ιστοσελίδας',
- 'enter-description' => 'Περιγράψτε το πρόβλημα όσο το δυνατόν καλύτερα',
- 'enter-email' => 'Παρακαλώ εισάγετε το e-mail σας',
- 'enter-title' => 'Επιλέξτε έναν σωστό τίτλο',
- 'enter-username' => 'Εισάγετε το όνομα χρήστη σας',
- 'high' => 'Υψηλή προτεριαότητα',
- 'low' => 'Χαμηλή προτεταιότητα',
- 'priority' => 'Προτεραιότητα',
- 'priority-description' => 'Επιλέξτε πολύ υψηλό αν το σφάλμα είναι πραγματικά πρόβλημα για τη χρήση του ιστότοπου.',
- 'very-high' => 'Πολύ ψηλά',
+ 'enter-description' => 'Περιγράψτε το πρόβλημα όσο το δυνατόν καλύτερα',
+ 'enter-email' => 'Παρακαλώ εισάγετε το e-mail σας',
+ 'enter-title' => 'Επιλέξτε έναν σωστό τίτλο',
+ 'enter-username' => 'Εισάγετε το όνομα χρήστη σας',
+ 'high' => 'Υψηλή προτεριαότητα',
+ 'low' => 'Χαμηλή προτεταιότητα',
+ 'priority' => 'Προτεραιότητα',
+ 'priority-description' => 'Επιλέξτε πολύ υψηλό αν το σφάλμα είναι πραγματικά πρόβλημα για τη χρήση του ιστότοπου.',
+ 'very-high' => 'Πολύ ψηλά',
];
diff --git a/lang/el/common.php b/lang/el/common.php
index 5da038ab8..c652e1a1d 100644
--- a/lang/el/common.php
+++ b/lang/el/common.php
@@ -12,213 +12,213 @@
*/
return [
- 'a-an-art' => '{0}a|[1,*]an',
- 'abbrev-days' => 'Η ',
- 'abbrev-hours' => 'Ω ',
- 'abbrev-minutes' => 'Λ ',
- 'abbrev-months' => 'M ',
- 'abbrev-seconds' => 'δ',
- 'abbrev-weeks' => 'Β ',
- 'abbrev-years' => 'Χ ',
- 'about' => 'Σχετικά με μάς',
- 'account' => 'Λογαριασμός',
- 'achievement-title' => 'Φοβερός',
+ 'a-an-art' => '{0}a|[1,*]an',
+ 'abbrev-days' => 'Η ',
+ 'abbrev-hours' => 'Ω ',
+ 'abbrev-minutes' => 'Λ ',
+ 'abbrev-months' => 'M ',
+ 'abbrev-seconds' => 'δ',
+ 'abbrev-weeks' => 'Β ',
+ 'abbrev-years' => 'Χ ',
+ 'about' => 'Σχετικά με μάς',
+ 'account' => 'Λογαριασμός',
+ 'achievement-title' => 'Φοβερός',
'achievement-unlocked' => 'Ξεκλειδώσατε το επίτευγμα ',
- 'active' => 'Ενεργός',
- 'active-warning' => 'Ενεργή προειδοποίηση',
- 'add' => 'Προσθέτω',
- 'added' => 'Προστέθηκε',
- 'amount' => 'Ποσό',
- 'anonymous' => 'Ανώνυμος',
- 'article' => 'Άρθρο',
- 'author' => 'Συντάκτης',
- 'ascending' => 'Αυξουσα',
- 'balance' => 'Ισορροπία',
- 'blacklist' => 'Μαύρη λίστα πελάτη',
- 'buffer' => 'Ρυθμιστής',
- 'bug' => 'Αναφορά σφάλματος',
- 'but' => 'Αλλα',
- 'cancel' => 'Ματαίωση',
- 'category' => 'Κατηγορία',
- 'categories' => 'Κατηγορίες',
- 'chat' => 'Συνομιλία',
- 'chat-room' => 'Δωμάτιο συνομιλίας',
- 'chat-rooms' => 'Δωμάτια συνομιλίας',
- 'close' => 'Κλεισε',
- 'code' => 'Κώδικας',
- 'color' => 'Χρώμα',
- 'command' => 'Εντολή',
- 'comment' => 'Σχόλιο',
- 'comments' => 'Σχόλια',
- 'community' => 'Κοινότητα',
- 'content' => 'Περιέχόμενο',
- 'connected' => 'Συνδεμένο',
- 'contact' => 'Επικοινωνία',
- 'contact-desc' => 'Αυτή η αίτηση επικοινωνίας θα αποσταλεί στον κάτοχο και θα σας επιστρέψει το συντομότερο δυνατό',
- 'contact-header' => 'Γειά σας',
- 'create' => 'Δημιουργία',
- 'created_at' => 'Δημιουργήθηκε στο',
- 'date' => 'Ημερομηνία',
- 'day' => 'Ημέρα',
- 'delete' => 'Διαγραφή',
- 'delete-your-comment' => 'Διαγράψτε το σχόλιό σας',
- 'description' => 'Περιγραφή',
- 'descending' => 'Φθίνουσα',
- 'direction' => 'Ταξινόμηση',
- 'disable' => 'Απενεργοποίηση',
- 'doubleup_activated' => 'Η λειτουργία διπλής φόρτωσης είναι ενεργοποιημένη',
- 'download' => 'Κατέβασμα',
- 'magnet' => 'Magnet',
- 'edit' => 'Επεξεργασία',
- 'edit-your-comment' => 'Επεξεργασία του σχολίου σας',
- 'email' => 'ΗΛΕΚΤΡΟΝΙΚΗ ΔΙΕΥΘΥΝΣΗ',
- 'email-blacklist' => 'Email Blacklist',
- 'email-whitelist' => 'Whitelist ηλεκτρονικού ταχυδρομείου',
+ 'active' => 'Ενεργός',
+ 'active-warning' => 'Ενεργή προειδοποίηση',
+ 'add' => 'Προσθέτω',
+ 'added' => 'Προστέθηκε',
+ 'amount' => 'Ποσό',
+ 'anonymous' => 'Ανώνυμος',
+ 'article' => 'Άρθρο',
+ 'author' => 'Συντάκτης',
+ 'ascending' => 'Αυξουσα',
+ 'balance' => 'Ισορροπία',
+ 'blacklist' => 'Μαύρη λίστα πελάτη',
+ 'buffer' => 'Ρυθμιστής',
+ 'bug' => 'Αναφορά σφάλματος',
+ 'but' => 'Αλλα',
+ 'cancel' => 'Ματαίωση',
+ 'category' => 'Κατηγορία',
+ 'categories' => 'Κατηγορίες',
+ 'chat' => 'Συνομιλία',
+ 'chat-room' => 'Δωμάτιο συνομιλίας',
+ 'chat-rooms' => 'Δωμάτια συνομιλίας',
+ 'close' => 'Κλεισε',
+ 'code' => 'Κώδικας',
+ 'color' => 'Χρώμα',
+ 'command' => 'Εντολή',
+ 'comment' => 'Σχόλιο',
+ 'comments' => 'Σχόλια',
+ 'community' => 'Κοινότητα',
+ 'content' => 'Περιέχόμενο',
+ 'connected' => 'Συνδεμένο',
+ 'contact' => 'Επικοινωνία',
+ 'contact-desc' => 'Αυτή η αίτηση επικοινωνίας θα αποσταλεί στον κάτοχο και θα σας επιστρέψει το συντομότερο δυνατό',
+ 'contact-header' => 'Γειά σας',
+ 'create' => 'Δημιουργία',
+ 'created_at' => 'Δημιουργήθηκε στο',
+ 'date' => 'Ημερομηνία',
+ 'day' => 'Ημέρα',
+ 'delete' => 'Διαγραφή',
+ 'delete-your-comment' => 'Διαγράψτε το σχόλιό σας',
+ 'description' => 'Περιγραφή',
+ 'descending' => 'Φθίνουσα',
+ 'direction' => 'Ταξινόμηση',
+ 'disable' => 'Απενεργοποίηση',
+ 'doubleup_activated' => 'Η λειτουργία διπλής φόρτωσης είναι ενεργοποιημένη',
+ 'download' => 'Κατέβασμα',
+ 'magnet' => 'Magnet',
+ 'edit' => 'Επεξεργασία',
+ 'edit-your-comment' => 'Επεξεργασία του σχολίου σας',
+ 'email' => 'ΗΛΕΚΤΡΟΝΙΚΗ ΔΙΕΥΘΥΝΣΗ',
+ 'email-blacklist' => 'Email Blacklist',
+ 'email-whitelist' => 'Whitelist ηλεκτρονικού ταχυδρομείου',
'email-list-notactive' => 'Το σύστημα Whitelist / μαύρης λίστας ηλεκτρονικού ταχυδρομείου δεν είναι ενεργοποιημένο',
- 'enable' => 'Ενεργοποίηση',
- 'enter' => 'Εισαγωγή',
- 'error' => 'Λάθος',
- 'everyday' => 'Κάθημερινά',
- 'expired' => 'έχει λήξει',
- 'extra' => 'Επιπλέον',
- 'extra-stats' => 'Extra-Στατιστικά',
- 'faq' => 'Συχνές ερωτήσεις',
- 'files' => 'Αρχεία',
- 'fl_token' => 'Μάρκα Freeleech',
- 'fl_tokens' => 'Μάρκες Freeleech',
- 'for' => 'για',
- 'forum' => 'Δημοσια Συζήτηση',
- 'free' => 'Ελεύθερο',
- 'freeleech_activated' => 'Η λειτουργία Global Freeleech είναι ενεργοποιημένη',
- 'global' => 'Παγκόσμια',
- 'group' => 'Ομάδα',
- 'groups' => 'Ομάδες',
- 'hidden' => 'Κρυμμένος',
- 'high-speeds' => 'Υψηλές ταχύτητες',
- 'home' => 'Αρχή',
- 'hot' => 'Καυτό!',
- 'hour' => 'Ωρα',
- 'huge' => 'Τεράστιο',
- 'icon' => 'Εικονιδιο',
- 'image' => 'Φωτογραφία',
- 'info' => 'Πληροφορίες',
- 'internal' => 'Εσωτερικό',
- 'ip' => 'IP',
- 'is-allowed' => 'επιτρέπεται',
- 'language' => 'Γλώσσα',
- 'languages' => 'Γλώσσες',
- 'large' => 'Μεγάλο',
- 'latest' => 'Αργότερο',
- 'latest-posts' => 'Τελευταίες δημοσιεύσεις',
- 'latest-topics' => 'Τελευταία θέματα',
- 'legal' => 'Νομικά',
- 'legend' => 'Επεξήγηση εικονιδίων',
- 'lists' => 'Λίστες',
- 'lock-account' => 'Κλειδωμα Λογαριασμού',
- 'logout' => 'Αποσυνδέση',
- 'media-language' => 'Γλώσσα μέσου',
- 'media-languages' => 'Γλώσσες μέσου',
- 'members' => 'Μέλη',
- 'message' => 'Μήνυμα',
- 'minute' => 'Λεπτό',
- 'moderated-by' => 'Συντονισμένο από',
- 'moderation' => 'Συντονισμός',
- 'moderation-approve' => 'Έγκριση',
- 'moderation-postpone' => 'Αναβολή',
- 'moderation-reject' => 'Απόρριψη',
- 'month' => 'Μήνας',
- 'months' => 'Μήνες',
- 'my' => 'Μου',
- 'name' => 'Ονομα',
- 'navigation' => 'Πλοήγηση',
- 'new' => 'Νέος!',
- 'new-adj' => 'Νέο',
- 'news' => 'Ειδήσεις',
- 'next' => 'Επόμενο',
- 'no' => 'Οχι',
- 'no-comments' => 'Δεν υπάρχει Κανένα σχόλιο ακόμα',
- 'no-result' => 'Δεν υπάρχει αποτέλεσμα στη βάση δεδομένων για το ερώτημα',
- 'notifications' => 'Ειδοποιήσεις',
- 'older-than' => 'Παλαιότερο από',
- 'oldest' => 'Το Παλαιότερο',
- 'openreg_activated' => 'Οι Εγγραφές είναι Ανοικτές',
- 'order-by' => 'Ταξινόμηση κατά',
- 'other' => 'Άλλα',
- 'overview' => 'Επισκόπηση',
- 'pages' => 'Σελίδες',
- 'password' => 'Κωδικός πρόσβασης',
- 'patron' => 'Γίνετε Υποστηρικτής',
- 'pending-torrents' => 'Εκκρεμή Torrent',
- 'personal' => 'Προσωπικό',
- 'plural-suffix' => '',
- 'port' => 'Πόρτα',
- 'position' => 'Θέση',
- 'posts' => 'Δημοσιεύσεις',
- 'powered-by' => 'Powered by Τα Κοπέλια',
- 'preview' => 'Προεπισκόπηση',
- 'previous' => 'Προηγούμενο',
- 'progress' => 'Πρόοδος',
- 'publish' => 'Δημοσίευση',
- 'quantity' => 'Ποσότητα',
- 'quick-search' => 'Γρήγορη αναζήτηση',
- 'ratio' => 'Αναλογία',
- 'reason' => 'Λόγος',
- 'remove' => 'Αφαιρώ',
- 'report' => 'Κάνε ΑΝΑΦΟΡΑ',
- 'resend' => 'Επαναλάβετε την αποστολή',
- 'resolution' => 'Επίλυση',
- 'resolutions' => 'Επιλυσεις',
- 'reporter' => 'Υποβαλλων την αναφορά',
- 'required' => 'Απαιτείται',
- 'results' => 'Αποτελέσματα',
- 'rss-system' => 'Σύστημα RSS',
- 'rules' => 'Κανόνες',
- 'save' => 'Αποθήκευση',
- 'search' => 'Αναζήτηση',
- 'search-results' => 'Αποτελέσματα αναζήτησης',
- 'search-results-desc' => 'Δείτε τα αποτελέσματά σας παρακάτω',
- 'second' => 'Δεύτερος',
- 'select' => 'Επιλογή',
- 'sort' => 'Ταξινόμηση',
- 'special' => 'Ειδικό',
- 'sponsor' => 'Γίνε Sponsor',
- 'staff' => 'Προσωπικό',
- 'staff-tools' => 'Εργαλεία προσωπικού',
- 'stats' => 'Στατιστικά στοιχεία',
- 'status' => 'Κατάσταση',
- 'sticked' => 'Κολλημένο - Sticky',
- 'submit' => 'Υποβολή',
- 'subscriptions' => 'Συνδρομές',
- 'subtitle' => 'Υπότιτλος',
- 'subtitles' => 'Υπότιτλοι',
- 'teams' => 'Της ομάδας',
- 'terms' => 'Οροι χρήσης',
- 'the' => 'the',
- 'this' => 'αυτο',
- 'times' => 'Φορές',
- 'title' => 'Τίτλος',
- 'top-bountied' => 'Top Bountied',
- 'topics' => 'Θέματα',
- 'tracker-codes' => 'Κωδικοί παρακολούθησης',
- 'type' => 'Τύπος',
- 'type-verb' => 'Τύπος',
- 'types' => 'Τύποι',
- 'genre' => 'Είδος',
- 'genres' => 'Είδη',
- 'action' => 'Ενέργεια',
- 'actions' => 'Ενέργειες',
- 'unknown' => 'Αγνωστος',
+ 'enable' => 'Ενεργοποίηση',
+ 'enter' => 'Εισαγωγή',
+ 'error' => 'Λάθος',
+ 'everyday' => 'Κάθημερινά',
+ 'expired' => 'έχει λήξει',
+ 'extra' => 'Επιπλέον',
+ 'extra-stats' => 'Extra-Στατιστικά',
+ 'faq' => 'Συχνές ερωτήσεις',
+ 'files' => 'Αρχεία',
+ 'fl_token' => 'Μάρκα Freeleech',
+ 'fl_tokens' => 'Μάρκες Freeleech',
+ 'for' => 'για',
+ 'forum' => 'Δημοσια Συζήτηση',
+ 'free' => 'Ελεύθερο',
+ 'freeleech_activated' => 'Η λειτουργία Global Freeleech είναι ενεργοποιημένη',
+ 'global' => 'Παγκόσμια',
+ 'group' => 'Ομάδα',
+ 'groups' => 'Ομάδες',
+ 'hidden' => 'Κρυμμένος',
+ 'high-speeds' => 'Υψηλές ταχύτητες',
+ 'home' => 'Αρχή',
+ 'hot' => 'Καυτό!',
+ 'hour' => 'Ωρα',
+ 'huge' => 'Τεράστιο',
+ 'icon' => 'Εικονιδιο',
+ 'image' => 'Φωτογραφία',
+ 'info' => 'Πληροφορίες',
+ 'internal' => 'Εσωτερικό',
+ 'ip' => 'IP',
+ 'is-allowed' => 'επιτρέπεται',
+ 'language' => 'Γλώσσα',
+ 'languages' => 'Γλώσσες',
+ 'large' => 'Μεγάλο',
+ 'latest' => 'Αργότερο',
+ 'latest-posts' => 'Τελευταίες δημοσιεύσεις',
+ 'latest-topics' => 'Τελευταία θέματα',
+ 'legal' => 'Νομικά',
+ 'legend' => 'Επεξήγηση εικονιδίων',
+ 'lists' => 'Λίστες',
+ 'lock-account' => 'Κλειδωμα Λογαριασμού',
+ 'logout' => 'Αποσυνδέση',
+ 'media-language' => 'Γλώσσα μέσου',
+ 'media-languages' => 'Γλώσσες μέσου',
+ 'members' => 'Μέλη',
+ 'message' => 'Μήνυμα',
+ 'minute' => 'Λεπτό',
+ 'moderated-by' => 'Συντονισμένο από',
+ 'moderation' => 'Συντονισμός',
+ 'moderation-approve' => 'Έγκριση',
+ 'moderation-postpone' => 'Αναβολή',
+ 'moderation-reject' => 'Απόρριψη',
+ 'month' => 'Μήνας',
+ 'months' => 'Μήνες',
+ 'my' => 'Μου',
+ 'name' => 'Ονομα',
+ 'navigation' => 'Πλοήγηση',
+ 'new' => 'Νέος!',
+ 'new-adj' => 'Νέο',
+ 'news' => 'Ειδήσεις',
+ 'next' => 'Επόμενο',
+ 'no' => 'Οχι',
+ 'no-comments' => 'Δεν υπάρχει Κανένα σχόλιο ακόμα',
+ 'no-result' => 'Δεν υπάρχει αποτέλεσμα στη βάση δεδομένων για το ερώτημα',
+ 'notifications' => 'Ειδοποιήσεις',
+ 'older-than' => 'Παλαιότερο από',
+ 'oldest' => 'Το Παλαιότερο',
+ 'openreg_activated' => 'Οι Εγγραφές είναι Ανοικτές',
+ 'order-by' => 'Ταξινόμηση κατά',
+ 'other' => 'Άλλα',
+ 'overview' => 'Επισκόπηση',
+ 'pages' => 'Σελίδες',
+ 'password' => 'Κωδικός πρόσβασης',
+ 'patron' => 'Γίνετε Υποστηρικτής',
+ 'pending-torrents' => 'Εκκρεμή Torrent',
+ 'personal' => 'Προσωπικό',
+ 'plural-suffix' => '',
+ 'port' => 'Πόρτα',
+ 'position' => 'Θέση',
+ 'posts' => 'Δημοσιεύσεις',
+ 'powered-by' => 'Powered by Τα Κοπέλια',
+ 'preview' => 'Προεπισκόπηση',
+ 'previous' => 'Προηγούμενο',
+ 'progress' => 'Πρόοδος',
+ 'publish' => 'Δημοσίευση',
+ 'quantity' => 'Ποσότητα',
+ 'quick-search' => 'Γρήγορη αναζήτηση',
+ 'ratio' => 'Αναλογία',
+ 'reason' => 'Λόγος',
+ 'remove' => 'Αφαιρώ',
+ 'report' => 'Κάνε ΑΝΑΦΟΡΑ',
+ 'resend' => 'Επαναλάβετε την αποστολή',
+ 'resolution' => 'Επίλυση',
+ 'resolutions' => 'Επιλυσεις',
+ 'reporter' => 'Υποβαλλων την αναφορά',
+ 'required' => 'Απαιτείται',
+ 'results' => 'Αποτελέσματα',
+ 'rss-system' => 'Σύστημα RSS',
+ 'rules' => 'Κανόνες',
+ 'save' => 'Αποθήκευση',
+ 'search' => 'Αναζήτηση',
+ 'search-results' => 'Αποτελέσματα αναζήτησης',
+ 'search-results-desc' => 'Δείτε τα αποτελέσματά σας παρακάτω',
+ 'second' => 'Δεύτερος',
+ 'select' => 'Επιλογή',
+ 'sort' => 'Ταξινόμηση',
+ 'special' => 'Ειδικό',
+ 'sponsor' => 'Γίνε Sponsor',
+ 'staff' => 'Προσωπικό',
+ 'staff-tools' => 'Εργαλεία προσωπικού',
+ 'stats' => 'Στατιστικά στοιχεία',
+ 'status' => 'Κατάσταση',
+ 'sticked' => 'Κολλημένο - Sticky',
+ 'submit' => 'Υποβολή',
+ 'subscriptions' => 'Συνδρομές',
+ 'subtitle' => 'Υπότιτλος',
+ 'subtitles' => 'Υπότιτλοι',
+ 'teams' => 'Της ομάδας',
+ 'terms' => 'Οροι χρήσης',
+ 'the' => 'the',
+ 'this' => 'αυτο',
+ 'times' => 'Φορές',
+ 'title' => 'Τίτλος',
+ 'top-bountied' => 'Top Bountied',
+ 'topics' => 'Θέματα',
+ 'tracker-codes' => 'Κωδικοί παρακολούθησης',
+ 'type' => 'Τύπος',
+ 'type-verb' => 'Τύπος',
+ 'types' => 'Τύποι',
+ 'genre' => 'Είδος',
+ 'genres' => 'Είδη',
+ 'action' => 'Ενέργεια',
+ 'actions' => 'Ενέργειες',
+ 'unknown' => 'Αγνωστος',
'unlocked-achievement' => 'Ξεκλειδώσατε το επίτευγμα :achievement',
- 'upload' => 'Ανέβασμα',
- 'upload-guide' => 'Οδηγός μεταφόρτωσης',
- 'user' => 'Χρήστης',
- 'username' => 'Όνομα χρήστη',
- 'users' => 'Χρήστες',
- 'view' => 'Προβολή',
- 'view-all' => 'Προβολή όλων',
- 'warnings' => 'Προειδοποιήσεις',
- 'year' => 'Ετος',
- 'yes' => 'Ναί',
- 'your' => 'Τα δικα σου',
- 'your-comment' => 'Το σχόλιό σου',
+ 'upload' => 'Ανέβασμα',
+ 'upload-guide' => 'Οδηγός μεταφόρτωσης',
+ 'user' => 'Χρήστης',
+ 'username' => 'Όνομα χρήστη',
+ 'users' => 'Χρήστες',
+ 'view' => 'Προβολή',
+ 'view-all' => 'Προβολή όλων',
+ 'warnings' => 'Προειδοποιήσεις',
+ 'year' => 'Ετος',
+ 'yes' => 'Ναί',
+ 'your' => 'Τα δικα σου',
+ 'your-comment' => 'Το σχόλιό σου',
];
diff --git a/lang/el/email.php b/lang/el/email.php
index 54cafdb98..b45f6b8d7 100644
--- a/lang/el/email.php
+++ b/lang/el/email.php
@@ -12,46 +12,46 @@
*/
return [
- 'activate-account' => 'Ενεργοποίηση λογαριασμού',
- 'ban-reason' => 'Λόγος αποκλεισμού',
- 'banned-footer' => 'Αυτός είναι ο λόγος που αποκλείεστε. Επειδή δεν ακολουθείτε τους κανόνες',
- 'banned-header' => 'Έχετε απαγορευτεί',
- 'bug-description' => 'Πρόβλημα',
- 'bug-footer' => 'Διορθώστε αυτό το πρόβλημα',
- 'bug-header' => 'Νέα αναφορά σφάλματος από',
- 'bug-priority' => 'Προτεραιότητα',
- 'bug-title' => 'Ο τίτλος σφάλματος',
- 'contact-header' => 'Νέα αλληλογραφία επαφών από',
- 'contact-message' => 'Μήνυμα',
- 'contact-name' => 'Ονομα',
+ 'activate-account' => 'Ενεργοποίηση λογαριασμού',
+ 'ban-reason' => 'Λόγος αποκλεισμού',
+ 'banned-footer' => 'Αυτός είναι ο λόγος που αποκλείεστε. Επειδή δεν ακολουθείτε τους κανόνες',
+ 'banned-header' => 'Έχετε απαγορευτεί',
+ 'bug-description' => 'Πρόβλημα',
+ 'bug-footer' => 'Διορθώστε αυτό το πρόβλημα',
+ 'bug-header' => 'Νέα αναφορά σφάλματος από',
+ 'bug-priority' => 'Προτεραιότητα',
+ 'bug-title' => 'Ο τίτλος σφάλματος',
+ 'contact-header' => 'Νέα αλληλογραφία επαφών από',
+ 'contact-message' => 'Μήνυμα',
+ 'contact-name' => 'Ονομα',
'fail-login-greeting' => 'Η σύνδεση του λογαριασμού απέτυχε!',
- 'fail-login-line1' => 'Καταγράφηκε μια αποτυχημένη σύνδεση για το λογαριασμό σας.',
- 'fail-login-line2' => 'Αυτό το αίτημα προέρχεται από :ip (:host) στις :time',
- 'fail-login-subject' => 'Αποτυχημένη ειδοποίηση σύνδεσης',
- 'footer-link' => 'Αν αντιμετωπίζετε προβλήματα κάντε κλικ στο :actionText , αντιγράψτε και επικολλήστε την παρακάτω διεύθυνση URL στο πρόγραμμα περιήγησης ιστού:',
- 'invite-header' => 'Πρόσκληση σε',
- 'invite-invited' => 'Έχετε λάβει πρόσκληση',
- 'invite-message' => 'Μήνυμα',
- 'invite-signup' => 'Εγγραφείτε τώρα',
- 'newreply-header' => 'Υπάρχει νέα απάντηση στο θέμα σας',
- 'newreply-message' => 'Μήνυμα',
- 'newreply-replied' => 'Έχει απαντηθεί το θέμα σας',
- 'newreply-view' => 'Προβολή τώρα',
- 'no-email-found' => 'Δεν μπορούσαμε να βρούμε αυτό το μήνυμα ηλεκτρονικού ταχυδρομείου στο σύστημά μας!',
- 'register-code' => 'Για να ολοκληρώσετε την ενεργοποίηση του λογαριασμού σας, κάντε κλικ στο παρακάτω κουμπί',
- 'register-footer' => 'Εάν το παραπάνω κουμπί δεν λειτουργεί, αντιγράψτε και επικολλήστε τη διεύθυνση URL στη γραμμή διευθύνσεων του προγράμματος περιήγησης',
- 'register-header' => 'Γεια! Σας ευχαριστούμε για την εγγραφή σας',
- 'report-comment' => 'Σχόλιο',
- 'report-email' => 'ΗΛΕΚΤΡΟΝΙΚΗ ΔΙΕΥΘΥΝΣΗ',
- 'report-header' => 'Γεια σου Admin, Έχει αναφερθεί ένας σύνδεσμος',
- 'report-link' => 'Σύνδεσμος',
- 'report-link-hash' => 'Πραγματικός σύνδεσμος',
- 'thanks' => 'Σας ευχαριστούμε για τη χρήση',
- 'unban-footer' => 'Καλως ορισες πισω!',
- 'unban-header' => 'Έχετε απαγορευτεί',
- 'unban-reason' => 'Λόγος',
- 'username-reminder' => 'Πρόσφατα μας στείλατε αίτηση για το όνομα χρήστη σας στην εφαρμογή μας. Το όνομα χρήστη σας είναι',
- 'username-sent' => 'Το όνομα χρήστη σας έχει σταλεί στη διεύθυνση ηλεκτρονικού ταχυδρομείου σας!',
- 'disabled-header' => 'Ο λογαριασμός σας έχει απενεργοποιηθεί',
- 'pruned-header' => 'Ο λογαριασμός σας έχει διαγραφεί',
+ 'fail-login-line1' => 'Καταγράφηκε μια αποτυχημένη σύνδεση για το λογαριασμό σας.',
+ 'fail-login-line2' => 'Αυτό το αίτημα προέρχεται από :ip (:host) στις :time',
+ 'fail-login-subject' => 'Αποτυχημένη ειδοποίηση σύνδεσης',
+ 'footer-link' => 'Αν αντιμετωπίζετε προβλήματα κάντε κλικ στο :actionText , αντιγράψτε και επικολλήστε την παρακάτω διεύθυνση URL στο πρόγραμμα περιήγησης ιστού:',
+ 'invite-header' => 'Πρόσκληση σε',
+ 'invite-invited' => 'Έχετε λάβει πρόσκληση',
+ 'invite-message' => 'Μήνυμα',
+ 'invite-signup' => 'Εγγραφείτε τώρα',
+ 'newreply-header' => 'Υπάρχει νέα απάντηση στο θέμα σας',
+ 'newreply-message' => 'Μήνυμα',
+ 'newreply-replied' => 'Έχει απαντηθεί το θέμα σας',
+ 'newreply-view' => 'Προβολή τώρα',
+ 'no-email-found' => 'Δεν μπορούσαμε να βρούμε αυτό το μήνυμα ηλεκτρονικού ταχυδρομείου στο σύστημά μας!',
+ 'register-code' => 'Για να ολοκληρώσετε την ενεργοποίηση του λογαριασμού σας, κάντε κλικ στο παρακάτω κουμπί',
+ 'register-footer' => 'Εάν το παραπάνω κουμπί δεν λειτουργεί, αντιγράψτε και επικολλήστε τη διεύθυνση URL στη γραμμή διευθύνσεων του προγράμματος περιήγησης',
+ 'register-header' => 'Γεια! Σας ευχαριστούμε για την εγγραφή σας',
+ 'report-comment' => 'Σχόλιο',
+ 'report-email' => 'ΗΛΕΚΤΡΟΝΙΚΗ ΔΙΕΥΘΥΝΣΗ',
+ 'report-header' => 'Γεια σου Admin, Έχει αναφερθεί ένας σύνδεσμος',
+ 'report-link' => 'Σύνδεσμος',
+ 'report-link-hash' => 'Πραγματικός σύνδεσμος',
+ 'thanks' => 'Σας ευχαριστούμε για τη χρήση',
+ 'unban-footer' => 'Καλως ορισες πισω!',
+ 'unban-header' => 'Έχετε απαγορευτεί',
+ 'unban-reason' => 'Λόγος',
+ 'username-reminder' => 'Πρόσφατα μας στείλατε αίτηση για το όνομα χρήστη σας στην εφαρμογή μας. Το όνομα χρήστη σας είναι',
+ 'username-sent' => 'Το όνομα χρήστη σας έχει σταλεί στη διεύθυνση ηλεκτρονικού ταχυδρομείου σας!',
+ 'disabled-header' => 'Ο λογαριασμός σας έχει απενεργοποιηθεί',
+ 'pruned-header' => 'Ο λογαριασμός σας έχει διαγραφεί',
];
diff --git a/lang/el/forum.php b/lang/el/forum.php
index 4be9ae18d..9a6e996e7 100644
--- a/lang/el/forum.php
+++ b/lang/el/forum.php
@@ -12,65 +12,65 @@
*/
return [
- 'action' => 'Ενέργεια',
- 'activity' => 'Δραστηριότητα',
- 'approved' => 'Εγκρίθηκε',
- 'author' => 'Συντάκτης',
- 'bug' => 'σφάλμα',
- 'category-quick-search' => 'Γρήγορη αναζήτηση ονόματος θέματος (εντός της κατηγορίας)',
- 'close-topic' => 'Κλείδωμα θέματος',
- 'closed' => 'Κλειστό',
- 'create-new-topic' => 'Δημιουργία νέου θέματος',
- 'created' => 'Δημιουργήθηκε',
- 'current' => 'Τρέχων',
- 'delete-topic' => 'Διαγραφή αυτού του θέματος',
- 'denied' => 'Αρνήθηκε',
- 'dislike-post' => 'Αυτή η ανάρτηση δεν μου αρέσει',
- 'display-forum' => 'Εμφάνιση θεμάτων σε',
- 'edit-post' => 'Επεξεργασία ανάρτησης',
- 'edit-topic' => 'Επεξεργασία θέματος',
- 'forum' => 'Δημόσια Συζήτηση',
- 'forums' => 'Δημόσιες Συζητήσεις',
- 'implemented' => 'Εφαρμογή',
- 'in' => 'Σε',
- 'invalid' => 'Μη έγκυρο',
- 'label' => 'Ετικέτα',
- 'label-system' => 'Σύστημα ετικετών',
- 'last-message' => 'Τελευταίο Μήνυμα',
- 'last-post-info' => 'Πληροφορίες τελευταίας δημοσίευσης',
- 'latest' => 'Τελευταίο',
- 'like-post' => 'Όπως αυτή η δημοσίευση',
- 'meta-category' => 'Κατάλογος των φόρουμ στην κατηγορία',
- 'moderation' => 'Συντονισμός',
- 'name' => 'Ονομα',
- 'not-connected' => 'Πρέπει να είστε συνδεδεμένοι',
- 'not-subscribed' => 'Δεν έχετε εγγραφεί',
- 'open' => 'Ανοιξε',
- 'open-topic' => 'Ανοίξτε αυτό το θέμα',
- 'permalink' => 'Μόνιμος Συνδεσμος',
- 'pin' => 'Καρφίτσωσε',
- 'post' => 'Θέση',
- 'post-quick-search' => 'Δημοσιεύστε γρήγορη αναζήτηση σώματος',
- 'posts' => 'Δημοσιεύσεις',
- 'quote' => 'Παραθέτω, αναφορά',
- 'read-topic' => 'Διαβάστε το θέμα',
- 'replies' => 'Απαντήσεις',
- 'send-new-topic' => 'Αποθήκευση αυτού του θέματος',
- 'solved' => 'Εχει Επιλυθεί',
- 'state' => 'κατάσταση',
- 'stats' => 'Στατιστικά στοιχεία',
- 'subscribed' => 'Εγγεγραμμένος',
+ 'action' => 'Ενέργεια',
+ 'activity' => 'Δραστηριότητα',
+ 'approved' => 'Εγκρίθηκε',
+ 'author' => 'Συντάκτης',
+ 'bug' => 'σφάλμα',
+ 'category-quick-search' => 'Γρήγορη αναζήτηση ονόματος θέματος (εντός της κατηγορίας)',
+ 'close-topic' => 'Κλείδωμα θέματος',
+ 'closed' => 'Κλειστό',
+ 'create-new-topic' => 'Δημιουργία νέου θέματος',
+ 'created' => 'Δημιουργήθηκε',
+ 'current' => 'Τρέχων',
+ 'delete-topic' => 'Διαγραφή αυτού του θέματος',
+ 'denied' => 'Αρνήθηκε',
+ 'dislike-post' => 'Αυτή η ανάρτηση δεν μου αρέσει',
+ 'display-forum' => 'Εμφάνιση θεμάτων σε',
+ 'edit-post' => 'Επεξεργασία ανάρτησης',
+ 'edit-topic' => 'Επεξεργασία θέματος',
+ 'forum' => 'Δημόσια Συζήτηση',
+ 'forums' => 'Δημόσιες Συζητήσεις',
+ 'implemented' => 'Εφαρμογή',
+ 'in' => 'Σε',
+ 'invalid' => 'Μη έγκυρο',
+ 'label' => 'Ετικέτα',
+ 'label-system' => 'Σύστημα ετικετών',
+ 'last-message' => 'Τελευταίο Μήνυμα',
+ 'last-post-info' => 'Πληροφορίες τελευταίας δημοσίευσης',
+ 'latest' => 'Τελευταίο',
+ 'like-post' => 'Όπως αυτή η δημοσίευση',
+ 'meta-category' => 'Κατάλογος των φόρουμ στην κατηγορία',
+ 'moderation' => 'Συντονισμός',
+ 'name' => 'Ονομα',
+ 'not-connected' => 'Πρέπει να είστε συνδεδεμένοι',
+ 'not-subscribed' => 'Δεν έχετε εγγραφεί',
+ 'open' => 'Ανοιξε',
+ 'open-topic' => 'Ανοίξτε αυτό το θέμα',
+ 'permalink' => 'Μόνιμος Συνδεσμος',
+ 'pin' => 'Καρφίτσωσε',
+ 'post' => 'Θέση',
+ 'post-quick-search' => 'Δημοσιεύστε γρήγορη αναζήτηση σώματος',
+ 'posts' => 'Δημοσιεύσεις',
+ 'quote' => 'Παραθέτω, αναφορά',
+ 'read-topic' => 'Διαβάστε το θέμα',
+ 'replies' => 'Απαντήσεις',
+ 'send-new-topic' => 'Αποθήκευση αυτού του θέματος',
+ 'solved' => 'Εχει Επιλυθεί',
+ 'state' => 'κατάσταση',
+ 'stats' => 'Στατιστικά στοιχεία',
+ 'subscribed' => 'Εγγεγραμμένος',
'subscription-quick-search' => 'Όνομα σύντομης αναζήτησης (εντός συνδρομών)',
- 'suggestion' => 'Πρόταση',
- 'tip-post-total' => 'Αυτό το θέμα έχει λάβει τιπς',
- 'tip-this-post' => 'Φιλοδώρησε τον συντάκτη',
- 'topic' => 'Θέμα',
- 'topic-closed' => 'Αυτό το θέμα είναι κλειστό',
- 'topic-name' => 'Όνομα θεματος',
- 'topic-quick-search' => 'Όνομα θεματικής γρήγορης αναζήτησης',
- 'topic-title' => 'Τίτλος αυτού του θέματος',
- 'topics' => 'Θέματα',
- 'unpin' => 'Ξεκαρφίτσωσε',
- 'view-all' => 'Προβολή όλων των θεμάτων',
- 'views' => 'Προβολές',
+ 'suggestion' => 'Πρόταση',
+ 'tip-post-total' => 'Αυτό το θέμα έχει λάβει τιπς',
+ 'tip-this-post' => 'Φιλοδώρησε τον συντάκτη',
+ 'topic' => 'Θέμα',
+ 'topic-closed' => 'Αυτό το θέμα είναι κλειστό',
+ 'topic-name' => 'Όνομα θεματος',
+ 'topic-quick-search' => 'Όνομα θεματικής γρήγορης αναζήτησης',
+ 'topic-title' => 'Τίτλος αυτού του θέματος',
+ 'topics' => 'Θέματα',
+ 'unpin' => 'Ξεκαρφίτσωσε',
+ 'view-all' => 'Προβολή όλων των θεμάτων',
+ 'views' => 'Προβολές',
];
diff --git a/lang/el/graveyard.php b/lang/el/graveyard.php
index 6498bf782..f591131db 100644
--- a/lang/el/graveyard.php
+++ b/lang/el/graveyard.php
@@ -12,20 +12,20 @@
*/
return [
- 'current-seedtime' => 'Current Seedtime',
- 'dead' => 'Νεκρά',
- 'graveyard' => 'Νεκροταφείο',
- 'guidelines' => 'Κατευθυντήριες γραμμές',
+ 'current-seedtime' => 'Current Seedtime',
+ 'dead' => 'Νεκρά',
+ 'graveyard' => 'Νεκροταφείο',
+ 'guidelines' => 'Κατευθυντήριες γραμμές',
'guidelines-content' => '1) Δεν μπορείτε να αναστήσετε τα δικά σας torrent.
2) Μην αναστήσετε κάτι για το οποίο δεν μπορείτε να δεσμευτείτε πάρα πολύ.',
- 'howto' => 'Ετσι θα πρέπει να το κάνετε..',
- 'howto-desc1' => 'Πρέπει να seed- άρετε το :name για τουλάχιστον 15 ημέρες για μια επιτυχημένη ανάσταση του Torrent. Σε κάθε περίπτωση, όταν ο σημερινός σας χρόνος διαμοιρασμού',
- 'howto-desc2' => 'Θα ανταμειφθείτε',
- 'howto-hits' => 'Hits',
- 'not-rewarded' => 'Οχι Rewarded',
- 'pending' => 'εκκρεμής',
- 'resurrect' => 'Ανάστησε',
- 'resurrect-date' => 'Ημερομηνία ανάστασης',
- 'reward' => 'Ετικέτες Freeleech',
- 'rewarded' => 'Ναι Rewarded',
- 'seedtime-goal' => 'Στόχος χρόνου διαμοιρασμού',
+ 'howto' => 'Ετσι θα πρέπει να το κάνετε..',
+ 'howto-desc1' => 'Πρέπει να seed- άρετε το :name για τουλάχιστον 15 ημέρες για μια επιτυχημένη ανάσταση του Torrent. Σε κάθε περίπτωση, όταν ο σημερινός σας χρόνος διαμοιρασμού',
+ 'howto-desc2' => 'Θα ανταμειφθείτε',
+ 'howto-hits' => 'Hits',
+ 'not-rewarded' => 'Οχι Rewarded',
+ 'pending' => 'εκκρεμής',
+ 'resurrect' => 'Ανάστησε',
+ 'resurrect-date' => 'Ημερομηνία ανάστασης',
+ 'reward' => 'Ετικέτες Freeleech',
+ 'rewarded' => 'Ναι Rewarded',
+ 'seedtime-goal' => 'Στόχος χρόνου διαμοιρασμού',
];
diff --git a/lang/el/notification.php b/lang/el/notification.php
index 975d8ea9f..43b1b1a90 100644
--- a/lang/el/notification.php
+++ b/lang/el/notification.php
@@ -12,27 +12,27 @@
*/
return [
- 'bon-gifts' => 'Δώρα Πονταλάκια',
- 'comment-tags' => 'Σχόλια Tags',
- 'date' => 'Ημερομηνία',
- 'delete' => 'Διαγραφή',
- 'delete-all' => 'Διαγράψτε όλες τις ειδοποιήσεις',
- 'filter-by-type' => 'Φιλτρο ανα τύπο ειδοποίησης',
- 'mark-all-read' => 'Σημειώστε όλα αυτά ως αναγνωσμένα',
- 'mark-read' => 'Σημείωσε ως διαβασμένο',
- 'message' => 'Μήνυμα',
- 'no-notifications' => 'Δεν υπάρχουν ανακοινώσεις',
- 'notifications' => 'Ειδοποιήσεις',
- 'post-tags' => 'Post Tags',
- 'post-tips' => 'Post Tips',
- 'read' => 'Ανάγνωση',
- 'request-approvals' => 'Request Approvals',
- 'request-bounties' => 'Request Bounties',
- 'request-claims' => 'Request Claim',
- 'request-fills' => 'Request Fills',
+ 'bon-gifts' => 'Δώρα Πονταλάκια',
+ 'comment-tags' => 'Σχόλια Tags',
+ 'date' => 'Ημερομηνία',
+ 'delete' => 'Διαγραφή',
+ 'delete-all' => 'Διαγράψτε όλες τις ειδοποιήσεις',
+ 'filter-by-type' => 'Φιλτρο ανα τύπο ειδοποίησης',
+ 'mark-all-read' => 'Σημειώστε όλα αυτά ως αναγνωσμένα',
+ 'mark-read' => 'Σημείωσε ως διαβασμένο',
+ 'message' => 'Μήνυμα',
+ 'no-notifications' => 'Δεν υπάρχουν ανακοινώσεις',
+ 'notifications' => 'Ειδοποιήσεις',
+ 'post-tags' => 'Post Tags',
+ 'post-tips' => 'Post Tips',
+ 'read' => 'Ανάγνωση',
+ 'request-approvals' => 'Request Approvals',
+ 'request-bounties' => 'Request Bounties',
+ 'request-claims' => 'Request Claim',
+ 'request-fills' => 'Request Fills',
'request-rejections' => 'Request Rejections',
- 'request-unclaims' => 'Request Unclaims',
- 'reseed-requests' => 'Reseed Request',
- 'title' => 'Τίτλος',
- 'unfollows' => 'Ξε- ακολούθησε',
+ 'request-unclaims' => 'Request Unclaims',
+ 'reseed-requests' => 'Reseed Request',
+ 'title' => 'Τίτλος',
+ 'unfollows' => 'Ξε- ακολούθησε',
];
diff --git a/lang/el/page.php b/lang/el/page.php
index 9c8ae0645..b4d0196e1 100644
--- a/lang/el/page.php
+++ b/lang/el/page.php
@@ -12,28 +12,28 @@
*/
return [
- 'aboutus-advantage' => 'Το πλεονέκτημα',
- 'aboutus-advantage1' => 'Έχουμε έμπειρα μέλη και προσωπικό με γνώση στον κόσμο του HD video / audio και τεχνικής υποστήριξης.',
- 'aboutus-advantage2' => 'Μαζί με το μεγάλο πάθος μας για ταινίες και τηλεοπτικές εκπομπές, προσφέρουμε επίσης και κάτι που οι περισσότεροι δε μπορούν. Ασφαλεια των δεδομένων σας, ανιδιοτέλεια και αγάπη για τα Torrents! ΕΝΑ ΜΕΓΑΛΟ ΕΥΧΑΡΙΣΤΩ σε όλους για το περιεχόμενο που συνεισφέρετε.',
- 'aboutus-advantage3' => 'Παρόλο που δεν δεχόμαστε δωρεές για να διατηρήσουμε τον ιστότοπο σε λειτουργία, δεν θα υπάρξουν ούτε κακόβουλες διαφημίσεις ή banner στη σελίδα. Δεν κερδίζουμε κάτι.',
- 'aboutus-advantage4' => 'Η κοινότητά μας είναι μια από τις πρώτες που εμφανίστηκαν στη χώρα μας. Μεταξύ του προσωπικού μας και της βάσης χρηστών, είμαστε πάντα εδώ για να βοηθήσουμε. Και είμαστε παθιασμένοι για να εξασφαλίσουμε ότι η εμπειρία σας στο :title δεν είναι παρά Μοναδική!.',
- 'aboutus-advantage5' => 'Η υπηρεσία μας χρησιμοποιείται καθημερινά από πολλούς ανθρώπους σε όλο τον κόσμο. Έχουμε αποδείξει μεσα στα χρόνια ότι μας ενδιαφέρει η λειτουργικότητα και η ασφάλεια του κώδικά μας μας και ότι μπορείτε να μας εμπιστευτείτε!. Οι προγραμματιστές μας εργάζονται καθημερινά για να σας παράσχουν έναν κώδικα προηγμένης ασφάλειας και τεχνολογίας .',
- 'aboutus-header' => 'Γεια σου,',
- 'aboutus-rules' => 'Τι χρειαζόμαστε από εσένα',
- 'aboutus-rules1' => 'Να είσαι ενεργό μέλος της κοινότητας! Αυτό σημαίνει να συμμετέχεις παραγωγικά σε συνομιλίες, να προσθέτεις εγκεκριμένο περιεχόμενο και να βοηθάς άλλους χρήστες, αν είσαι σε θέση να το κάνεις.',
- 'aboutus-rules2' => 'Παρακαλούμε να διαβάσεις τους κανόνες πλήρως και παρακαλώ τους σέβεσαι καθ όλη τη παραμονή σου στο :title !',
- 'aboutus-rules3' => 'Κάνε προτάσεις! Προσπαθούμε να κάνουμε το :title καλύτερo μερα με τη μέρα. Δεν λέμε ότι κάθε πρόταση θα υλοποιηθεί, αλλά ποτέ δεν βλάπτει να ακούμε νέες ιδέες.',
- 'aboutus-welcome' => 'Ας μιλήσουμε σχετικά...',
- 'aboutus-welcome-desc' => 'το :title είναι μια κοινοτική βάση δεδομένων για Ταινίες / Τηλεόραση / Software. Κάθε κομμάτι έχει προστεθεί από την καταπληκτική κοινότητα μας. Στο :title δίνουμε ιδιαίτερη έμφαση στο περιεχόμενο HD, σε νέες κυκλοφορίες, σε μια φοβερή / ασφαλή βάση κώδικα και σε μια φιλική ομάδα προσωπικού.',
- 'blacklist-browsers' => 'Φυλλομετρητές',
- 'blacklist-btclient' => 'BitTorrent Client',
- 'blacklist-clients' => 'Πελάτες',
- 'blacklist-desc' => 'Τα παρακάτω προγράμματα περιήγησης και οι χρήστες Bittorrent είναι αποκλεισμένοι / απαγορευμένοι στο :title',
- 'blacklist-webbrowser' => 'Φυλλομετρητής',
+ 'aboutus-advantage' => 'Το πλεονέκτημα',
+ 'aboutus-advantage1' => 'Έχουμε έμπειρα μέλη και προσωπικό με γνώση στον κόσμο του HD video / audio και τεχνικής υποστήριξης.',
+ 'aboutus-advantage2' => 'Μαζί με το μεγάλο πάθος μας για ταινίες και τηλεοπτικές εκπομπές, προσφέρουμε επίσης και κάτι που οι περισσότεροι δε μπορούν. Ασφαλεια των δεδομένων σας, ανιδιοτέλεια και αγάπη για τα Torrents! ΕΝΑ ΜΕΓΑΛΟ ΕΥΧΑΡΙΣΤΩ σε όλους για το περιεχόμενο που συνεισφέρετε.',
+ 'aboutus-advantage3' => 'Παρόλο που δεν δεχόμαστε δωρεές για να διατηρήσουμε τον ιστότοπο σε λειτουργία, δεν θα υπάρξουν ούτε κακόβουλες διαφημίσεις ή banner στη σελίδα. Δεν κερδίζουμε κάτι.',
+ 'aboutus-advantage4' => 'Η κοινότητά μας είναι μια από τις πρώτες που εμφανίστηκαν στη χώρα μας. Μεταξύ του προσωπικού μας και της βάσης χρηστών, είμαστε πάντα εδώ για να βοηθήσουμε. Και είμαστε παθιασμένοι για να εξασφαλίσουμε ότι η εμπειρία σας στο :title δεν είναι παρά Μοναδική!.',
+ 'aboutus-advantage5' => 'Η υπηρεσία μας χρησιμοποιείται καθημερινά από πολλούς ανθρώπους σε όλο τον κόσμο. Έχουμε αποδείξει μεσα στα χρόνια ότι μας ενδιαφέρει η λειτουργικότητα και η ασφάλεια του κώδικά μας μας και ότι μπορείτε να μας εμπιστευτείτε!. Οι προγραμματιστές μας εργάζονται καθημερινά για να σας παράσχουν έναν κώδικα προηγμένης ασφάλειας και τεχνολογίας .',
+ 'aboutus-header' => 'Γεια σου,',
+ 'aboutus-rules' => 'Τι χρειαζόμαστε από εσένα',
+ 'aboutus-rules1' => 'Να είσαι ενεργό μέλος της κοινότητας! Αυτό σημαίνει να συμμετέχεις παραγωγικά σε συνομιλίες, να προσθέτεις εγκεκριμένο περιεχόμενο και να βοηθάς άλλους χρήστες, αν είσαι σε θέση να το κάνεις.',
+ 'aboutus-rules2' => 'Παρακαλούμε να διαβάσεις τους κανόνες πλήρως και παρακαλώ τους σέβεσαι καθ όλη τη παραμονή σου στο :title !',
+ 'aboutus-rules3' => 'Κάνε προτάσεις! Προσπαθούμε να κάνουμε το :title καλύτερo μερα με τη μέρα. Δεν λέμε ότι κάθε πρόταση θα υλοποιηθεί, αλλά ποτέ δεν βλάπτει να ακούμε νέες ιδέες.',
+ 'aboutus-welcome' => 'Ας μιλήσουμε σχετικά...',
+ 'aboutus-welcome-desc' => 'το :title είναι μια κοινοτική βάση δεδομένων για Ταινίες / Τηλεόραση / Software. Κάθε κομμάτι έχει προστεθεί από την καταπληκτική κοινότητα μας. Στο :title δίνουμε ιδιαίτερη έμφαση στο περιεχόμενο HD, σε νέες κυκλοφορίες, σε μια φοβερή / ασφαλή βάση κώδικα και σε μια φιλική ομάδα προσωπικού.',
+ 'blacklist-browsers' => 'Φυλλομετρητές',
+ 'blacklist-btclient' => 'BitTorrent Client',
+ 'blacklist-clients' => 'Πελάτες',
+ 'blacklist-desc' => 'Τα παρακάτω προγράμματα περιήγησης και οι χρήστες Bittorrent είναι αποκλεισμένοι / απαγορευμένοι στο :title',
+ 'blacklist-webbrowser' => 'Φυλλομετρητής',
'blacklist-emaildomain' => 'Αποκλεισμένος τομέας Ηλεκτρονικού Ταχυδρομείου',
- 'email-blacklist-desc' => 'Οι ακόλουθοι τομείς ηλεκτρονικού ταχυδρομείου αποκλείονται από τη χρήση. Δεν μπορείτε να εγγραφείτε ή να αποστείλετε μια πρόσκληση για τα ακόλουθα.',
- 'email-whitelist-desc' => 'Οι ακόλουθοι τομείς ηλεκτρονικού ταχυδρομείου είναι οι μόνοι τομείς ηλεκτρονικού ταχυδρομείου που επιτρέπεται να χρησιμοποιηθούν. Μπορείτε να εγγραφείτε ή να στείλετε μια πρόσκληση χρησιμοποιώντας τα παρακάτω.',
- 'staff-group' => 'Ομάδα',
- 'staff-title' => 'Τίτλος',
+ 'email-blacklist-desc' => 'Οι ακόλουθοι τομείς ηλεκτρονικού ταχυδρομείου αποκλείονται από τη χρήση. Δεν μπορείτε να εγγραφείτε ή να αποστείλετε μια πρόσκληση για τα ακόλουθα.',
+ 'email-whitelist-desc' => 'Οι ακόλουθοι τομείς ηλεκτρονικού ταχυδρομείου είναι οι μόνοι τομείς ηλεκτρονικού ταχυδρομείου που επιτρέπεται να χρησιμοποιηθούν. Μπορείτε να εγγραφείτε ή να στείλετε μια πρόσκληση χρησιμοποιώντας τα παρακάτω.',
+ 'staff-group' => 'Ομάδα',
+ 'staff-title' => 'Τίτλος',
'whitelist-emaildomain' => 'Έμπιστος τομέας Ηλεκτρονικού Ταχυδρομείου',
];
diff --git a/lang/el/pagination.php b/lang/el/pagination.php
index 38e566a24..13439ccc7 100644
--- a/lang/el/pagination.php
+++ b/lang/el/pagination.php
@@ -24,5 +24,5 @@ return [
*/
'previous' => '« Προηγούμενο',
- 'next' => 'Επόμενο »',
+ 'next' => 'Επόμενο »',
];
diff --git a/lang/el/passwords.php b/lang/el/passwords.php
index 9013689a7..e9feb7352 100644
--- a/lang/el/passwords.php
+++ b/lang/el/passwords.php
@@ -24,8 +24,8 @@ return [
*/
'password' => 'Ο κωδικός πρέπει να έχει τουλάχιστον έξι χαρακτήρες και να ταιριάζει με την επαλήθευση.',
- 'reset' => 'Έχει γίνει επαναφορά του συνθηματικού! Ελέγξτε το email σας - Κοιτάξτε και το φάκελο με τα ανεπιθύμητα / SPAM',
- 'sent' => 'Η υπενθύμιση του συνθηματικού εστάλη! Ελέγξτε το email σας - Κοιτάξτε και το φάκελο με τα ανεπιθύμητα / SPAM',
- 'token' => 'Το κλειδί αρχικοποίησης του συνθηματικού δεν είναι έγκυρο.',
- 'user' => 'Δεν βρέθηκε χρήστης με το συγκεκριμένο email.',
+ 'reset' => 'Έχει γίνει επαναφορά του συνθηματικού! Ελέγξτε το email σας - Κοιτάξτε και το φάκελο με τα ανεπιθύμητα / SPAM',
+ 'sent' => 'Η υπενθύμιση του συνθηματικού εστάλη! Ελέγξτε το email σας - Κοιτάξτε και το φάκελο με τα ανεπιθύμητα / SPAM',
+ 'token' => 'Το κλειδί αρχικοποίησης του συνθηματικού δεν είναι έγκυρο.',
+ 'user' => 'Δεν βρέθηκε χρήστης με το συγκεκριμένο email.',
];
diff --git a/lang/el/playlist.php b/lang/el/playlist.php
index 96f9f591d..3fca9f036 100644
--- a/lang/el/playlist.php
+++ b/lang/el/playlist.php
@@ -12,20 +12,20 @@
*/
return [
- 'about' => 'Εδώ θα βρείτε λίστες από χρήστες που περίεχουν torrent που τους αρέσουν!',
- 'add-torrent' => 'Προσθήκη Torrent',
- 'added-by' => 'Από:',
- 'cover' => 'Επιλογή φωτογραφιας εξωφύλλου',
- 'create' => 'Δημιουργία νεας λιστας',
+ 'about' => 'Εδώ θα βρείτε λίστες από χρήστες που περίεχουν torrent που τους αρέσουν!',
+ 'add-torrent' => 'Προσθήκη Torrent',
+ 'added-by' => 'Από:',
+ 'cover' => 'Επιλογή φωτογραφιας εξωφύλλου',
+ 'create' => 'Δημιουργία νεας λιστας',
'delete-playlist' => 'Διαγραφή λίστας',
- 'desc' => 'Περιγραφή Λίστας',
- 'download-all' => 'Κατεβάστε όλα τα Torrents της λίστας',
- 'edit-playlist' => 'Επεξεργασία λίστας',
- 'list-by' => 'Μια λίστα από:',
- 'list-about' => 'Μια λίστα σχετικά με:',
- 'is-private' => 'Ιδιωτική Λίστα?',
- 'playlist' => 'Λίστα',
- 'playlists' => 'Λίστες',
- 'title' => 'Τίτλος',
- 'titles' => 'Τίτλοι',
+ 'desc' => 'Περιγραφή Λίστας',
+ 'download-all' => 'Κατεβάστε όλα τα Torrents της λίστας',
+ 'edit-playlist' => 'Επεξεργασία λίστας',
+ 'list-by' => 'Μια λίστα από:',
+ 'list-about' => 'Μια λίστα σχετικά με:',
+ 'is-private' => 'Ιδιωτική Λίστα?',
+ 'playlist' => 'Λίστα',
+ 'playlists' => 'Λίστες',
+ 'title' => 'Τίτλος',
+ 'titles' => 'Τίτλοι',
];
diff --git a/lang/el/pm.php b/lang/el/pm.php
index 7af139433..beca5d0ee 100644
--- a/lang/el/pm.php
+++ b/lang/el/pm.php
@@ -12,29 +12,29 @@
*/
return [
- 'create' => 'Δημιουργία',
- 'delete' => 'Διαγραφή',
+ 'create' => 'Δημιουργία',
+ 'delete' => 'Διαγραφή',
'enter-subject' => 'Εισάγετε θέμα',
- 'from' => 'Από',
- 'inbox' => 'Εισερχόμενα',
+ 'from' => 'Από',
+ 'inbox' => 'Εισερχόμενα',
'mark-all-read' => 'Σημειώστε όλα τα μηνύματα ως αναγνωσμένα',
- 'message' => 'Μήνυμα',
- 'messages' => 'Μηνύματα',
- 'new' => 'Νέο μήνυμα',
- 'outbox' => 'Εξερχόμενα',
- 'private' => 'Ιδιωτικά',
- 'read' => 'Ανάγνωση',
- 'received-at' => 'Λήψη',
- 'refresh' => 'Ανανέωση',
- 'reply' => 'Απάντηση',
- 'search' => 'Αναζήτηση ανά θέμα',
- 'select' => 'Επιλέξτε έναν χρήστη',
- 'send' => 'Στείλτε PM',
- 'send-to' => 'Στείλτε το PM στο',
- 'sent' => 'Απεσταλμένα',
- 'sent-at' => 'Αποστολή σε',
- 'subject' => 'Θέμα',
- 'to' => 'Προς',
- 'unread' => 'Αδιάβαστο',
- 'empty-inbox' => 'Άδειασμα όλων των εισερχομένων',
+ 'message' => 'Μήνυμα',
+ 'messages' => 'Μηνύματα',
+ 'new' => 'Νέο μήνυμα',
+ 'outbox' => 'Εξερχόμενα',
+ 'private' => 'Ιδιωτικά',
+ 'read' => 'Ανάγνωση',
+ 'received-at' => 'Λήψη',
+ 'refresh' => 'Ανανέωση',
+ 'reply' => 'Απάντηση',
+ 'search' => 'Αναζήτηση ανά θέμα',
+ 'select' => 'Επιλέξτε έναν χρήστη',
+ 'send' => 'Στείλτε PM',
+ 'send-to' => 'Στείλτε το PM στο',
+ 'sent' => 'Απεσταλμένα',
+ 'sent-at' => 'Αποστολή σε',
+ 'subject' => 'Θέμα',
+ 'to' => 'Προς',
+ 'unread' => 'Αδιάβαστο',
+ 'empty-inbox' => 'Άδειασμα όλων των εισερχομένων',
];
diff --git a/lang/el/poll.php b/lang/el/poll.php
index 33c6e729e..37a81aba7 100644
--- a/lang/el/poll.php
+++ b/lang/el/poll.php
@@ -12,19 +12,19 @@
*/
return [
- 'add-option' => 'Προσθήκη επιλογής',
- 'create-poll' => 'Δημιουργία δημοσκόπησης',
- 'current' => 'Τρέχουσα δημοσκόπηση',
- 'delete-option' => 'Διαγραφή επιλογής',
- 'edit-poll' => 'Επεξεργασία Δημοσκόπησης',
+ 'add-option' => 'Προσθήκη επιλογής',
+ 'create-poll' => 'Δημιουργία δημοσκόπησης',
+ 'current' => 'Τρέχουσα δημοσκόπηση',
+ 'delete-option' => 'Διαγραφή επιλογής',
+ 'edit-poll' => 'Επεξεργασία Δημοσκόπησης',
'multiple-choice' => 'Αυτή είναι μια δημοσκόπηση πολλαπλών επιλογών. Επιλέγετε όσες απαντήσεις θέλετε.',
- 'option' => 'Επιλογή',
- 'poll' => 'Ψηφοφορία',
- 'polls' => 'Δημοσκοπήσεις',
- 'results' => 'Αποτελέσματα δημοσκόπησης',
- 'title' => 'Τίτλος',
- 'total' => 'Σύνολο ψήφων',
- 'vote' => 'Ψήφος',
- 'vote-now' => 'Ψηφίστε τώρα!',
- 'votes' => 'Ψηφοι',
+ 'option' => 'Επιλογή',
+ 'poll' => 'Ψηφοφορία',
+ 'polls' => 'Δημοσκοπήσεις',
+ 'results' => 'Αποτελέσματα δημοσκόπησης',
+ 'title' => 'Τίτλος',
+ 'total' => 'Σύνολο ψήφων',
+ 'vote' => 'Ψήφος',
+ 'vote-now' => 'Ψηφίστε τώρα!',
+ 'votes' => 'Ψηφοι',
];
diff --git a/lang/el/request.php b/lang/el/request.php
index f579016e5..bb23495ef 100644
--- a/lang/el/request.php
+++ b/lang/el/request.php
@@ -12,72 +12,72 @@
*/
return [
- 'add-request' => 'Προσθήκη αιτήματος',
- 'age' => 'Ηλικία',
- 'all-requests' => 'Όλα τα αιτήματα',
- 'approve' => 'Εγκρίνω',
- 'bounty' => 'Αμοιβή',
- 'bounty-claimed' => 'η Αμοιβή έχει ληφθεί',
- 'bounty-unclaimed' => 'Η αμοιβή δεν αποδόθηκε',
- 'category' => 'Κατηγορία',
- 'claim' => 'Απαίτηση',
- 'claim-anon-choose' => 'Παρακαλούμε επιλέξτε με σύνεση',
- 'claim-as-anon' => 'Θα θέλατε να το διεκδικήσετε αυτό ανωνύμως',
- 'claim-now' => 'Διεκδικήστε τώρα',
- 'claimed' => 'Διεκδικήθηκε',
- 'current' => 'τρέχων',
- 'delete' => 'Διαγράψτε αυτό το αίτημα',
+ 'add-request' => 'Προσθήκη αιτήματος',
+ 'age' => 'Ηλικία',
+ 'all-requests' => 'Όλα τα αιτήματα',
+ 'approve' => 'Εγκρίνω',
+ 'bounty' => 'Αμοιβή',
+ 'bounty-claimed' => 'η Αμοιβή έχει ληφθεί',
+ 'bounty-unclaimed' => 'Η αμοιβή δεν αποδόθηκε',
+ 'category' => 'Κατηγορία',
+ 'claim' => 'Απαίτηση',
+ 'claim-anon-choose' => 'Παρακαλούμε επιλέξτε με σύνεση',
+ 'claim-as-anon' => 'Θα θέλατε να το διεκδικήσετε αυτό ανωνύμως',
+ 'claim-now' => 'Διεκδικήστε τώρα',
+ 'claimed' => 'Διεκδικήθηκε',
+ 'current' => 'τρέχων',
+ 'delete' => 'Διαγράψτε αυτό το αίτημα',
'delete-confirmation' => 'Είστε βέβαιοι ότι θέλετε να διαγράψετε αυτό το αίτημα',
- 'delete-filled' => 'Αυτό το αίτημα μπορεί να διαγραφεί μόνο αν δεν έχει πληρωθεί',
- 'description' => 'Περιγραφή',
- 'dont-have-bps' => 'Δεν έχετε αρκετά πονταλάκια',
- 'edit-request' => 'Επεξεργασία αιτήματος',
- 'enter-bp' => 'Πληκτρολογήστε πόσα πονταλάκια προσφέρετε (τουλάχιστον 100)',
- 'enter-hash' => 'Εισαγάγετε το Πληροφοριακό Σημείωμα - hash - του φορτωμένου Torrent',
- 'fill' => 'Εκπληρωση',
- 'fill-request' => 'Εκπληρωστε αυτό το αίτημα',
- 'filled' => 'Εκπληρωμένο',
- 'filled-by' => 'Εκπληρωμένο από',
- 'for' => 'Για',
- 'fulfill' => 'Εκπληρώ',
- 'last-vote' => 'Τελευταία ψηφος',
- 'my-requests' => 'Τα αιτήματά μου',
- 'my-filled' => 'Τα εκπληρωμένα μου',
- 'my-claims' => 'Έχω διεκδικήσει',
- 'my-voted' => 'Εχω ψηφίσει ',
- 'no' => 'Οχι,',
- 'no-imdb-id' => 'Όλα τα αιτήματα πρέπει να περιέχουν έναν αριθμό IMDB ή TMDB',
- 'no-privileges' => 'Σφάλμα: Τα δικαιώματα αιτησης σας έχουν απενεργοποιηθεί',
- 'no-privileges-desc' => 'Εάν θεωρείτε ότι υπάρχει λάθος, επικοινωνήστε με το προσωπικό',
- 'no-refunds' => 'Οι ανταλλαγές πόντων σχετικά με τη δημιουργία, την εκπλήρωση και τα χρηματικά ποσά είναι τελικά!
ΔΕΝ ΓΙΝΟΝΤΑΙ ΕΠΙΣΤΡΟΦΕΣ!',
- 'pending' => 'Eκκρεμής',
- 'reason' => 'Λόγος',
- 'reject' => 'Απορρίπτω',
- 'report' => 'Αναφορά αίτησης',
- 'request' => 'Αίτηση',
- 'request-details' => 'Λεπτομέρειες αιτήματος',
- 'requested-by' => 'Ζητήθηκε από',
- 'requests' => 'Αιτήσεις',
- 'required' => 'Απαιτείται',
- 'reset' => 'Επαναφορά',
- 'reset-confirmation' => 'Είστε βέβαιοι ότι θέλετε να επαναφέρετε αυτή την αίτηση',
- 'reset-request' => 'Επαναφέρετε αυτήν την Αίτηση',
- 'resolution' => 'Επίλυση',
- 'resolutions' => 'Επιλυσεις',
- 'reward' => 'Ανταμοιβή',
- 'reward-desc' => 'Με πόσα πονταλάκια θα θέλατε να ανταμείψετε; Ελάχιστο 100 πονταλάκια',
- 'reward-from' => 'Από',
- 'title' => 'Τίτλος',
- 'torrent-hash' => 'Torrent Hash',
- 'total-bounty' => 'Συνολική αμοιβή',
- 'type' => 'Τύπος',
- 'unclaim' => 'Ακύρωση αυτού του αιτήματος',
- 'unfilled' => 'Ανεπλήρωτο',
- 'view-filled' => 'Ππροβολή εκπληρωμένων',
- 'view-unfilled' => 'Προβολή ανεκπλήρωτων',
- 'vote' => 'Ψήφος',
- 'vote-that' => 'Ψηφίστε αυτό το αίτημα',
- 'voters' => 'Οι ψηφοφόροι',
- 'votes' => 'Ψηφοφορίες',
- 'yes' => 'Ναί',
+ 'delete-filled' => 'Αυτό το αίτημα μπορεί να διαγραφεί μόνο αν δεν έχει πληρωθεί',
+ 'description' => 'Περιγραφή',
+ 'dont-have-bps' => 'Δεν έχετε αρκετά πονταλάκια',
+ 'edit-request' => 'Επεξεργασία αιτήματος',
+ 'enter-bp' => 'Πληκτρολογήστε πόσα πονταλάκια προσφέρετε (τουλάχιστον 100)',
+ 'enter-hash' => 'Εισαγάγετε το Πληροφοριακό Σημείωμα - hash - του φορτωμένου Torrent',
+ 'fill' => 'Εκπληρωση',
+ 'fill-request' => 'Εκπληρωστε αυτό το αίτημα',
+ 'filled' => 'Εκπληρωμένο',
+ 'filled-by' => 'Εκπληρωμένο από',
+ 'for' => 'Για',
+ 'fulfill' => 'Εκπληρώ',
+ 'last-vote' => 'Τελευταία ψηφος',
+ 'my-requests' => 'Τα αιτήματά μου',
+ 'my-filled' => 'Τα εκπληρωμένα μου',
+ 'my-claims' => 'Έχω διεκδικήσει',
+ 'my-voted' => 'Εχω ψηφίσει ',
+ 'no' => 'Οχι,',
+ 'no-imdb-id' => 'Όλα τα αιτήματα πρέπει να περιέχουν έναν αριθμό IMDB ή TMDB',
+ 'no-privileges' => 'Σφάλμα: Τα δικαιώματα αιτησης σας έχουν απενεργοποιηθεί',
+ 'no-privileges-desc' => 'Εάν θεωρείτε ότι υπάρχει λάθος, επικοινωνήστε με το προσωπικό',
+ 'no-refunds' => 'Οι ανταλλαγές πόντων σχετικά με τη δημιουργία, την εκπλήρωση και τα χρηματικά ποσά είναι τελικά!
ΔΕΝ ΓΙΝΟΝΤΑΙ ΕΠΙΣΤΡΟΦΕΣ!',
+ 'pending' => 'Eκκρεμής',
+ 'reason' => 'Λόγος',
+ 'reject' => 'Απορρίπτω',
+ 'report' => 'Αναφορά αίτησης',
+ 'request' => 'Αίτηση',
+ 'request-details' => 'Λεπτομέρειες αιτήματος',
+ 'requested-by' => 'Ζητήθηκε από',
+ 'requests' => 'Αιτήσεις',
+ 'required' => 'Απαιτείται',
+ 'reset' => 'Επαναφορά',
+ 'reset-confirmation' => 'Είστε βέβαιοι ότι θέλετε να επαναφέρετε αυτή την αίτηση',
+ 'reset-request' => 'Επαναφέρετε αυτήν την Αίτηση',
+ 'resolution' => 'Επίλυση',
+ 'resolutions' => 'Επιλυσεις',
+ 'reward' => 'Ανταμοιβή',
+ 'reward-desc' => 'Με πόσα πονταλάκια θα θέλατε να ανταμείψετε; Ελάχιστο 100 πονταλάκια',
+ 'reward-from' => 'Από',
+ 'title' => 'Τίτλος',
+ 'torrent-hash' => 'Torrent Hash',
+ 'total-bounty' => 'Συνολική αμοιβή',
+ 'type' => 'Τύπος',
+ 'unclaim' => 'Ακύρωση αυτού του αιτήματος',
+ 'unfilled' => 'Ανεπλήρωτο',
+ 'view-filled' => 'Ππροβολή εκπληρωμένων',
+ 'view-unfilled' => 'Προβολή ανεκπλήρωτων',
+ 'vote' => 'Ψήφος',
+ 'vote-that' => 'Ψηφίστε αυτό το αίτημα',
+ 'voters' => 'Οι ψηφοφόροι',
+ 'votes' => 'Ψηφοφορίες',
+ 'yes' => 'Ναί',
];
diff --git a/lang/el/rss.php b/lang/el/rss.php
index 945d7aeac..ddb5a21f6 100644
--- a/lang/el/rss.php
+++ b/lang/el/rss.php
@@ -12,19 +12,19 @@
*/
return [
- 'create' => 'Δημιουργία',
+ 'create' => 'Δημιουργία',
'create-private-feed' => 'Δημιουργία ιδιωτικής ροής RSS',
- 'create-public-feed' => 'Δημιουργία κοινής ροής RSS',
- 'delete' => 'Διαγραφή',
- 'edit' => 'Επεξεργασία',
- 'edit-private-feed' => 'Επεξεργασία ιδιωτικής ροής RSS',
- 'edit-public-feed' => 'Επεξεργασία δημόσιας ροής RSS',
- 'feed' => 'Δίνω',
- 'feeds' => 'Τροφοδοσίες',
- 'name' => 'Ονομα',
- 'public' => 'Δημόσια',
- 'private' => 'Ιδιωτική',
- 'rss' => 'RSS',
- 'rss-feed' => 'Ροή RSS',
- 'type' => 'Τύπος',
+ 'create-public-feed' => 'Δημιουργία κοινής ροής RSS',
+ 'delete' => 'Διαγραφή',
+ 'edit' => 'Επεξεργασία',
+ 'edit-private-feed' => 'Επεξεργασία ιδιωτικής ροής RSS',
+ 'edit-public-feed' => 'Επεξεργασία δημόσιας ροής RSS',
+ 'feed' => 'Δίνω',
+ 'feeds' => 'Τροφοδοσίες',
+ 'name' => 'Ονομα',
+ 'public' => 'Δημόσια',
+ 'private' => 'Ιδιωτική',
+ 'rss' => 'RSS',
+ 'rss-feed' => 'Ροή RSS',
+ 'type' => 'Τύπος',
];
diff --git a/lang/el/staff.php b/lang/el/staff.php
index aa2c2eb0c..3fbc3e296 100644
--- a/lang/el/staff.php
+++ b/lang/el/staff.php
@@ -12,61 +12,61 @@
*/
return [
- 'audit-log' => 'Αρχείο καταγραφής δραστηριότητας',
- 'articles' => 'Άρθρα',
- 'application' => 'Αιτηση',
- 'applicationσ' => 'Αιτησεις',
- 'application-type' => 'Τύπος αίτησης',
+ 'audit-log' => 'Αρχείο καταγραφής δραστηριότητας',
+ 'articles' => 'Άρθρα',
+ 'application' => 'Αιτηση',
+ 'applicationσ' => 'Αιτησεις',
+ 'application-type' => 'Τύπος αίτησης',
'application-image-proofs' => 'Image Proofs',
- 'application-referrer' => 'Referrer',
- 'article-content' => 'Content',
- 'applications' => 'Αιτήσεις',
- 'bans-log' => 'Απαγόρευση σύνδεσης',
- 'blocks' => 'Αποκλεισμένοι',
- 'bot' => 'Bot',
- 'bots' => 'Μποτς',
- 'chat' => 'Συνομιλία',
- 'config-manager' => 'Διαχειριστής ρυθμίσεων',
- 'dashboard' => 'Ταμπλό',
- 'failed-login-log' => 'Αρχείο καταγραφής αποτυχημένης σύνδεσης',
- 'flush-ghost-peers' => 'Καθαρισμός ψεύτικων Peers',
- 'forums' => 'Φόρουμ',
- 'frontend' => 'Προβολή Σελίδας',
- 'general-tools' => 'Γενικά εργαλεία',
- 'groups' => 'Ομάδες',
- 'invites-log' => 'Αρχείο καταγραφής Προσκλήσεων ',
- 'laravel-log' => 'Laravel Log',
- 'link' => 'Συνδεσμος',
- 'links' => 'Σύνδεσμοι',
- 'logs' => 'Αρχεία καταγραφής',
- 'mass-pm' => 'Μαζικό PM',
- 'mass-validate-users' => 'Μαζική ενεργοποίηση Χρηστών',
- 'moderation' => 'Συντονισμός',
- 'moderation-since' => 'Συντονίστηκε στις',
- 'page' => 'Page',
- 'pages' => 'Σελίδες',
- 'please-moderate' => 'Παρακαλώ ελέγξτε αυτό το torrent!',
- 'polls' => 'Δημοσκοπήσεις',
- 'reports-log' => 'Μητρώο αναφορών',
- 'rooms' => 'Δωμάτια',
- 'rss' => 'Ροές RSS',
- 'staff-dashboard' => 'Πίνακας προσωπικού',
- 'status' => 'Κατάσταση',
- 'statuses' => 'Καταστάσεις',
- 'torrent-categories' => 'Κατηγορίες Torrent',
- 'torrent-moderation' => 'Torrent Moderation',
- 'torrent-tools' => 'Εργαλεία Torrent',
- 'torrent-types' => 'Τύποι Torrent',
- 'torrent-resolutions' => 'Αναλύσεις Torrent ',
- 'torrents' => 'Torrents',
- 'user-gifting' => 'Δωρα σε χρήστες',
- 'user-notes' => 'Εγγραφή σημειώσεων χρηστών',
- 'user-search' => 'Αναζήτηση χρηστών',
- 'user-tools' => 'Εργαλεία χρηστών',
- 'warnings-log' => 'Log προειδοποιήσεων',
- 'you-have' => 'Εχεις',
- 'possible-leech-cheaters' => 'Πιθανόν Cheaters',
- 'chat-tools' => 'Εργαλεία συζήτησης',
- 'flush-chat' => 'Άδειασμα Chatbox',
- 'seedboxes' => 'Εγγεγραμμένα Seedboxes',
+ 'application-referrer' => 'Referrer',
+ 'article-content' => 'Content',
+ 'applications' => 'Αιτήσεις',
+ 'bans-log' => 'Απαγόρευση σύνδεσης',
+ 'blocks' => 'Αποκλεισμένοι',
+ 'bot' => 'Bot',
+ 'bots' => 'Μποτς',
+ 'chat' => 'Συνομιλία',
+ 'config-manager' => 'Διαχειριστής ρυθμίσεων',
+ 'dashboard' => 'Ταμπλό',
+ 'failed-login-log' => 'Αρχείο καταγραφής αποτυχημένης σύνδεσης',
+ 'flush-ghost-peers' => 'Καθαρισμός ψεύτικων Peers',
+ 'forums' => 'Φόρουμ',
+ 'frontend' => 'Προβολή Σελίδας',
+ 'general-tools' => 'Γενικά εργαλεία',
+ 'groups' => 'Ομάδες',
+ 'invites-log' => 'Αρχείο καταγραφής Προσκλήσεων ',
+ 'laravel-log' => 'Laravel Log',
+ 'link' => 'Συνδεσμος',
+ 'links' => 'Σύνδεσμοι',
+ 'logs' => 'Αρχεία καταγραφής',
+ 'mass-pm' => 'Μαζικό PM',
+ 'mass-validate-users' => 'Μαζική ενεργοποίηση Χρηστών',
+ 'moderation' => 'Συντονισμός',
+ 'moderation-since' => 'Συντονίστηκε στις',
+ 'page' => 'Page',
+ 'pages' => 'Σελίδες',
+ 'please-moderate' => 'Παρακαλώ ελέγξτε αυτό το torrent!',
+ 'polls' => 'Δημοσκοπήσεις',
+ 'reports-log' => 'Μητρώο αναφορών',
+ 'rooms' => 'Δωμάτια',
+ 'rss' => 'Ροές RSS',
+ 'staff-dashboard' => 'Πίνακας προσωπικού',
+ 'status' => 'Κατάσταση',
+ 'statuses' => 'Καταστάσεις',
+ 'torrent-categories' => 'Κατηγορίες Torrent',
+ 'torrent-moderation' => 'Torrent Moderation',
+ 'torrent-tools' => 'Εργαλεία Torrent',
+ 'torrent-types' => 'Τύποι Torrent',
+ 'torrent-resolutions' => 'Αναλύσεις Torrent ',
+ 'torrents' => 'Torrents',
+ 'user-gifting' => 'Δωρα σε χρήστες',
+ 'user-notes' => 'Εγγραφή σημειώσεων χρηστών',
+ 'user-search' => 'Αναζήτηση χρηστών',
+ 'user-tools' => 'Εργαλεία χρηστών',
+ 'warnings-log' => 'Log προειδοποιήσεων',
+ 'you-have' => 'Εχεις',
+ 'possible-leech-cheaters' => 'Πιθανόν Cheaters',
+ 'chat-tools' => 'Εργαλεία συζήτησης',
+ 'flush-chat' => 'Άδειασμα Chatbox',
+ 'seedboxes' => 'Εγγεγραμμένα Seedboxes',
];
diff --git a/lang/el/stat.php b/lang/el/stat.php
index dfb938031..52d6ed1f4 100644
--- a/lang/el/stat.php
+++ b/lang/el/stat.php
@@ -12,44 +12,44 @@
*/
return [
- 'all-time' => 'Όλος ο Χρόνος',
- 'by-count' => 'Ανά καταμέτρηση',
- 'by-data' => 'Ανά Δεδομένα',
- 'by-volume' => 'Ανά όγκο',
- 'group' => 'Ομάδα',
- 'groups' => 'Ομάδες',
- 'last30days' => 'Last 30 Days',
- 'nerd-stats' => 'Στατιστικά για καμμένους..',
- 'nerd-stats-desc' => 'Όλοι αγαπάμε τα στατιστικά. Εδώ είναι μερικά που θεωρούμε σημαντικά',
- 'languages' => 'Γλώσσες',
- 'place' => 'τόπος',
- 'registration-date' => 'Ημερομηνία Εγγραφής',
- 'request-fulfilled' => 'Εκπληρωμένες Αιτήσεις',
- 'request-not-fulfilled' => 'Αιτήσεις που δεν εκπληρώθηκαν',
+ 'all-time' => 'Όλος ο Χρόνος',
+ 'by-count' => 'Ανά καταμέτρηση',
+ 'by-data' => 'Ανά Δεδομένα',
+ 'by-volume' => 'Ανά όγκο',
+ 'group' => 'Ομάδα',
+ 'groups' => 'Ομάδες',
+ 'last30days' => 'Last 30 Days',
+ 'nerd-stats' => 'Στατιστικά για καμμένους..',
+ 'nerd-stats-desc' => 'Όλοι αγαπάμε τα στατιστικά. Εδώ είναι μερικά που θεωρούμε σημαντικά',
+ 'languages' => 'Γλώσσες',
+ 'place' => 'τόπος',
+ 'registration-date' => 'Ημερομηνία Εγγραφής',
+ 'request-fulfilled' => 'Εκπληρωμένες Αιτήσεις',
+ 'request-not-fulfilled' => 'Αιτήσεις που δεν εκπληρώθηκαν',
'request-pending-aproval' => 'Ζητήστε έγκριση σε εκκρεμότητα',
- 'select-category' => 'Επιλέξτε μια κατηγορία παρακάτω',
- 'site-stats' => 'Στατιστικά ιστοσελίδας',
- 'stats' => 'Στατιστικά στοιχεία',
- 'stats-format' => 'Όλα τα στατιστικά δείχνουν τα κορυφαια 100',
- 'top-bankers' => 'Top Τραπεζίτες',
- 'top-bountied' => 'Top Πληρωμένοι',
- 'top-completed' => 'Top Ολοκληρώσεις',
- 'top-dead' => 'Top Dead',
- 'top-downloaded' => 'Κορυφαία Λήψη Torrents',
- 'top-downloaders' => 'Κορυφαίες λήψεις',
- 'top-dying' => 'Top Dying',
- 'top-leeched' => 'Κορυφή',
- 'top-leechers' => 'Κορυφαίοι Leechers',
- 'top-seeded' => 'Top Seeded',
- 'top-seeding' => 'Κορυφαία σπορά',
- 'top-seeders' => 'Κορυφαίοι διαμοιραστες',
- 'top-seedsize' => 'Κορυφαίος διαμοιρασμός',
- 'top-seedtime' => 'Κορυφαία ώρα διαμοιρασμού',
- 'top-uploaders' => 'Κορυφαίοι Uploaders',
- 'total-download' => 'Συνολική λήψη',
- 'total-torrents' => 'Σύνολο Torrents',
- 'total-traffic' => 'Συνολική κίνηση',
- 'total-upload' => 'Συνολικα Upload',
- 'users-in-group' => 'Χρήστες στην ομάδα',
- 'users-per-group' => 'Χρήστες ανά ομάδα',
+ 'select-category' => 'Επιλέξτε μια κατηγορία παρακάτω',
+ 'site-stats' => 'Στατιστικά ιστοσελίδας',
+ 'stats' => 'Στατιστικά στοιχεία',
+ 'stats-format' => 'Όλα τα στατιστικά δείχνουν τα κορυφαια 100',
+ 'top-bankers' => 'Top Τραπεζίτες',
+ 'top-bountied' => 'Top Πληρωμένοι',
+ 'top-completed' => 'Top Ολοκληρώσεις',
+ 'top-dead' => 'Top Dead',
+ 'top-downloaded' => 'Κορυφαία Λήψη Torrents',
+ 'top-downloaders' => 'Κορυφαίες λήψεις',
+ 'top-dying' => 'Top Dying',
+ 'top-leeched' => 'Κορυφή',
+ 'top-leechers' => 'Κορυφαίοι Leechers',
+ 'top-seeded' => 'Top Seeded',
+ 'top-seeding' => 'Κορυφαία σπορά',
+ 'top-seeders' => 'Κορυφαίοι διαμοιραστες',
+ 'top-seedsize' => 'Κορυφαίος διαμοιρασμός',
+ 'top-seedtime' => 'Κορυφαία ώρα διαμοιρασμού',
+ 'top-uploaders' => 'Κορυφαίοι Uploaders',
+ 'total-download' => 'Συνολική λήψη',
+ 'total-torrents' => 'Σύνολο Torrents',
+ 'total-traffic' => 'Συνολική κίνηση',
+ 'total-upload' => 'Συνολικα Upload',
+ 'users-in-group' => 'Χρήστες στην ομάδα',
+ 'users-per-group' => 'Χρήστες ανά ομάδα',
];
diff --git a/lang/el/subtitle.php b/lang/el/subtitle.php
index ab3101623..556e00002 100644
--- a/lang/el/subtitle.php
+++ b/lang/el/subtitle.php
@@ -12,13 +12,13 @@
*/
return [
- 'downloads' => 'Μεταφορτώσεις',
- 'extension' => 'Επέκταση',
- 'delete-confirm' => 'Σίγουρα θέλετε να διαγράψετε τον υπότιτλο?',
- 'note' => 'Σημείωση',
- 'note-help' => 'Extra πληροφορίες για τον υπότιτλο',
- 'rules-title' => 'Κανόνες Υποτίτλων!',
- 'rules' => '
+ 'downloads' => 'Μεταφορτώσεις',
+ 'extension' => 'Επέκταση',
+ 'delete-confirm' => 'Σίγουρα θέλετε να διαγράψετε τον υπότιτλο?',
+ 'note' => 'Σημείωση',
+ 'note-help' => 'Extra πληροφορίες για τον υπότιτλο',
+ 'rules-title' => 'Κανόνες Υποτίτλων!',
+ 'rules' => '
- Only proper subtitles are allowed to be uploaded (Correct frame rate. translation, spelling, timing).
- No google translated / machine translated / incorrect subtitles allowed.
- Subtitle must be in sync with the video.
@@ -27,9 +27,9 @@ return [
- Keep the note of the subtitle short. NO urls/links are allowed.
- All Subtitles must be confirmed, verified, timed correctly for the specific Torrent/Video.
',
- 'size' => 'Μέγεθος',
- 'subtitle-file' => 'Αρχείο',
- 'subtitle-file-types' => 'Απδεκτοί τυποι υποτίτλων: ICO, SRT, SUP, ASS and ZIP',
- 'uploaded' => 'Ανέβηκε',
- 'uploader' => 'Uploader',
+ 'size' => 'Μέγεθος',
+ 'subtitle-file' => 'Αρχείο',
+ 'subtitle-file-types' => 'Απδεκτοί τυποι υποτίτλων: ICO, SRT, SUP, ASS and ZIP',
+ 'uploaded' => 'Ανέβηκε',
+ 'uploader' => 'Uploader',
];
diff --git a/lang/el/torrent.php b/lang/el/torrent.php
index 2524a2640..f33d5b8ce 100644
--- a/lang/el/torrent.php
+++ b/lang/el/torrent.php
@@ -12,222 +12,222 @@
*/
return [
- 'activity' => 'Δραστηριότητα',
- 'age' => 'Ηλικία',
- 'agent' => 'Μέσο',
- 'alive' => 'Ζωντανό',
- 'announce-url' => 'Ανακοίνωση διεύθυνσης URL',
- 'announce-url-desc' => 'Χρησιμοποιήστε την προαναφερθείσα διεύθυνση URL κατά τη δημιουργία ενός νέου torrent.
Εάν θέλετε να χρησιμοποιήσετε το torrent χωρίς να το κατεβάσετε από τον ιστότοπο, πρέπει να ορίσετε την ιδιωτική σημαία και την πηγή σε :source',
- 'announce-url-desc-url' => 'Αντιμετωπίζετε προβλήματα με το Upload ; Δείτε τον οδηγό μας ΕΔΩ',
- 'announce-url-desc2' => 'Το πεδίο TMDB και IMDB απαιτείται για όλες τις μεταφορτώσεις! Χρησιμοποιείται για να αρπάξει Αφίσες / Backdrops και ExtraInfo',
- 'approved' => 'Εγκρίθηκε',
- 'audio' => 'Ήχος',
- 'bon-tipped' => 'Εχει λάβει φιλοδώρημα',
- 'bookmark' => 'Σελιδοδείκτης',
- 'bookmarks' => 'Σελιδοδείκτες',
- 'bump' => 'Στην Κορυφή',
- 'cant-upload' => 'Σφάλμα: Τα δικαιώματα μεταφόρτωσης είναι απενεργοποιημένα',
- 'cant-upload-desc' => 'Εάν αισθάνεστε ότι υπάρχει λάθος, επικοινωνήστε με το προσωπικό',
- 'cards' => 'Καρτέλλες',
- 'cards-view' => 'Προβολή σαν Καρτες',
- 'categories' => 'Κατηγορίες',
- 'category' => 'Κατηγορία',
- 'client' => 'Πελάτης',
- 'commited' => 'Δεσμευμένος',
- 'completed' => 'Ολοκληρώθηκε',
- 'completed_at' => 'Ολοκληρώθηκε',
- 'completed-not-seeding' => 'Ολοκληρώσατε αυτήν τη λήψη, αλλά δεν το διαμοιράζετε πια',
- 'completed-times' => 'Κατέβηκε φορές',
- 'created_at' => 'Δημιουργήθηκε',
- 'credited' => 'Πιστοποιήθηκε',
- 'current' => 'τρέχων',
- 'current-filters' => 'Τρέχοντα φίλτρα',
- 'currently-leeching' => 'Τώρα κατεβάζει',
- 'currently-seeding' => 'Τώρα διαμοιράζει',
- 'date' => 'Ημερομηνία',
- 'dead-torrent' => 'Νεκρό Torrent',
- 'dead-torrents' => 'Νεκρά Torrents',
- 'define-tip-amount' => 'Δώσε ποσό φιλοδωρήματος',
- 'delete-bookmark' => 'Διαγραφή αυτού του σελιδοδείκτη',
- 'description' => 'Περιγραφή',
- 'discounts' => 'Εκπτώσεις',
- 'double-upload' => 'Διπλή μεταφόρτωση',
- 'download-all' => 'Κατέβασέ τα όλα',
- 'download-check' => 'Έλεγχος λήψης',
- 'download-rights-active' => 'Δικαιώματα λήψης ενεργά',
- 'downloaded' => 'Λήψη',
- 'dying-torrent' => 'Torrent που πεθαίνει',
- 'dying-torrents' => 'Torrents που πεθαίνουν',
- 'encode-settings' => 'Ρυθμίσεις κωδικοποίησης',
- 'end-year' => 'Ετος Τέλος',
- 'episode-number' => 'Αριθμός επεισοδιου',
- 'estimated-ratio' => 'Εκτιμώμενη αναλογία μετά την λήψη',
- 'failed' => 'Απέτυχε',
- 'feature' => 'χαρακτηριστικό',
- 'featured' => 'Προτεινόμενα',
- 'featured-desc' => 'Προτεινόμενα torrents είναι 100% δωρεάν και Διπλή μεταφόρτωση!',
- 'featured-until' => 'Αυτό είναι ένα Προτεινόμενο Torrent Μέχρι',
- 'file' => 'Αρχείο',
- 'filters' => 'Φίλτρα',
- 'fl-tokens-left' => 'Εχεις :tokens μάρκες Freeleech υπόλοιπο',
- 'freeleech' => 'Freeleech',
- 'freeleech-token' => 'Μάρκα Freeleech',
- 'general' => 'Γενικα',
- 'genre' => 'Είδος',
- 'genre-tags' => 'Tags Είδους',
- 'global-double-upload' => 'Συνολική διπλή μεταφόρτωση',
- 'global-freeleech' => 'Global Freeleech',
- 'grant' => 'Χορήγηση',
- 'greater-than' => 'Μεγαλύτερος από',
- 'grouping' => 'Ομαδοποίηση',
- 'groupings' => 'Ομαδοποιήσεις',
- 'grouping-categories' => 'Ομαδοποίηση κατηγοριών',
+ 'activity' => 'Δραστηριότητα',
+ 'age' => 'Ηλικία',
+ 'agent' => 'Μέσο',
+ 'alive' => 'Ζωντανό',
+ 'announce-url' => 'Ανακοίνωση διεύθυνσης URL',
+ 'announce-url-desc' => 'Χρησιμοποιήστε την προαναφερθείσα διεύθυνση URL κατά τη δημιουργία ενός νέου torrent.
Εάν θέλετε να χρησιμοποιήσετε το torrent χωρίς να το κατεβάσετε από τον ιστότοπο, πρέπει να ορίσετε την ιδιωτική σημαία και την πηγή σε :source',
+ 'announce-url-desc-url' => 'Αντιμετωπίζετε προβλήματα με το Upload ; Δείτε τον οδηγό μας ΕΔΩ',
+ 'announce-url-desc2' => 'Το πεδίο TMDB και IMDB απαιτείται για όλες τις μεταφορτώσεις! Χρησιμοποιείται για να αρπάξει Αφίσες / Backdrops και ExtraInfo',
+ 'approved' => 'Εγκρίθηκε',
+ 'audio' => 'Ήχος',
+ 'bon-tipped' => 'Εχει λάβει φιλοδώρημα',
+ 'bookmark' => 'Σελιδοδείκτης',
+ 'bookmarks' => 'Σελιδοδείκτες',
+ 'bump' => 'Στην Κορυφή',
+ 'cant-upload' => 'Σφάλμα: Τα δικαιώματα μεταφόρτωσης είναι απενεργοποιημένα',
+ 'cant-upload-desc' => 'Εάν αισθάνεστε ότι υπάρχει λάθος, επικοινωνήστε με το προσωπικό',
+ 'cards' => 'Καρτέλλες',
+ 'cards-view' => 'Προβολή σαν Καρτες',
+ 'categories' => 'Κατηγορίες',
+ 'category' => 'Κατηγορία',
+ 'client' => 'Πελάτης',
+ 'commited' => 'Δεσμευμένος',
+ 'completed' => 'Ολοκληρώθηκε',
+ 'completed_at' => 'Ολοκληρώθηκε',
+ 'completed-not-seeding' => 'Ολοκληρώσατε αυτήν τη λήψη, αλλά δεν το διαμοιράζετε πια',
+ 'completed-times' => 'Κατέβηκε φορές',
+ 'created_at' => 'Δημιουργήθηκε',
+ 'credited' => 'Πιστοποιήθηκε',
+ 'current' => 'τρέχων',
+ 'current-filters' => 'Τρέχοντα φίλτρα',
+ 'currently-leeching' => 'Τώρα κατεβάζει',
+ 'currently-seeding' => 'Τώρα διαμοιράζει',
+ 'date' => 'Ημερομηνία',
+ 'dead-torrent' => 'Νεκρό Torrent',
+ 'dead-torrents' => 'Νεκρά Torrents',
+ 'define-tip-amount' => 'Δώσε ποσό φιλοδωρήματος',
+ 'delete-bookmark' => 'Διαγραφή αυτού του σελιδοδείκτη',
+ 'description' => 'Περιγραφή',
+ 'discounts' => 'Εκπτώσεις',
+ 'double-upload' => 'Διπλή μεταφόρτωση',
+ 'download-all' => 'Κατέβασέ τα όλα',
+ 'download-check' => 'Έλεγχος λήψης',
+ 'download-rights-active' => 'Δικαιώματα λήψης ενεργά',
+ 'downloaded' => 'Λήψη',
+ 'dying-torrent' => 'Torrent που πεθαίνει',
+ 'dying-torrents' => 'Torrents που πεθαίνουν',
+ 'encode-settings' => 'Ρυθμίσεις κωδικοποίησης',
+ 'end-year' => 'Ετος Τέλος',
+ 'episode-number' => 'Αριθμός επεισοδιου',
+ 'estimated-ratio' => 'Εκτιμώμενη αναλογία μετά την λήψη',
+ 'failed' => 'Απέτυχε',
+ 'feature' => 'χαρακτηριστικό',
+ 'featured' => 'Προτεινόμενα',
+ 'featured-desc' => 'Προτεινόμενα torrents είναι 100% δωρεάν και Διπλή μεταφόρτωση!',
+ 'featured-until' => 'Αυτό είναι ένα Προτεινόμενο Torrent Μέχρι',
+ 'file' => 'Αρχείο',
+ 'filters' => 'Φίλτρα',
+ 'fl-tokens-left' => 'Εχεις :tokens μάρκες Freeleech υπόλοιπο',
+ 'freeleech' => 'Freeleech',
+ 'freeleech-token' => 'Μάρκα Freeleech',
+ 'general' => 'Γενικα',
+ 'genre' => 'Είδος',
+ 'genre-tags' => 'Tags Είδους',
+ 'global-double-upload' => 'Συνολική διπλή μεταφόρτωση',
+ 'global-freeleech' => 'Global Freeleech',
+ 'grant' => 'Χορήγηση',
+ 'greater-than' => 'Μεγαλύτερος από',
+ 'grouping' => 'Ομαδοποίηση',
+ 'groupings' => 'Ομαδοποιήσεις',
+ 'grouping-categories' => 'Ομαδοποίηση κατηγοριών',
'grouping-categories-desc' => 'Ποια κατηγορία θέλετε να ομαδοποιήσετε;',
- 'grouping-results' => 'Ομαδοποίηση αποτελεσμάτων',
- 'groupings-view' => 'Προβολή Ομαδοποίησης',
- 'have-completed' => 'Ολοκληρώθηκε',
- 'have-downloaded' => 'Λήψη',
- 'have-not-completed' => 'Μη ολοκληρωμένο',
- 'have-not-downloaded' => 'Δεν κατέβηκε',
- 'health' => 'Υγεία',
- 'history' => 'Ιστορία',
- 'hitrun' => 'H & R;',
- 'hit-and-runs' => 'Τα αποτελέσματα Hit και Run',
- 'immune' => 'Απρόσβλητο?',
- 'info' => 'Πληροφορίες',
- 'info-hash' => 'Πληροφορίες Hash',
- 'internal' => 'Εσωτερικό',
- 'internal-release' => 'Εσωτερικό release',
- 'keywords' => 'Λέξεις Κλειδιά',
- 'keywords-example' => 'Παράδειγμα: superhero, dc comics, marvel, κωμωδία, ρομαντικό κτλ',
- 'last-seed-activity' => 'Τελευταία δραστηριότητα σπόρου',
- 'last-seeder' => 'Είστε ο τελευταίος εναπομείναν διαμοιραστής! (έχει κατεβεί τουλάχιστον 3 φορές)',
- 'last-update' => 'Τελευταία ενημέρωση',
- 'leave-tip' => 'Αφήστε φιλοδώρημα',
- 'leecher' => 'Leecher',
- 'leechers' => 'Leechers',
- 'leeching' => 'Κατεβάζω',
- 'left' => 'Αριστερά',
- 'legendary-seeder' => 'Ο θρυλικός seeder',
- 'legendary-torrent' => 'Το θρυλικό torrent',
- 'list' => 'Λίστα',
- 'me' => 'Μου',
- 'media-info' => 'MediaInfo',
- 'media-info-parser' => 'MediaInfo Parser',
- 'media-info-paste' => 'Επικολλήστε εδώ το αρχείο MediaInfo',
- 'meta-desc' => 'Λήψη :name με τη μέγιστη ταχύτητα',
- 'moderation' => 'Moderation',
- 'movies' => 'Κινηματογράφος',
- 'mvp' => 'MVP',
- 'my-active-torrents' => 'Τα ενεργά μου torrents',
- 'name' => 'Ονομα Torrent',
- 'no-bookmarks' => 'Δεν βρέθηκαν σελιδοδείκτες.',
- 'no-discounts' => 'Επί του παρόντος δεν υπάρχουν εκπτώσεις',
- 'no-meta' => 'Δεν βρέθηκαν μεταδεδομένα',
- 'no-privileges' => 'Δεν μπορείτε να κάνετε λήψη αυτού του αρχείου - ελέγξτε παρακάτω για περισσότερες πληροφορίες',
- 'no-privileges-desc' => 'Επιλύστε τα αποτυχημένα αποτελέσματα παραπάνω για να εμφανιστεί το κουμπί λήψης',
- 'not-completed' => 'Ξεκίνησε η λήψη αλλά δεν ολοκληρώθηκε ποτέ',
- 'not-seeding' => 'Δεν διαμοιράζει',
- 'not-downloaded' => 'Δεν κατέβηκε',
- 'old-torrent' => 'Παλιό torrent',
- 'optional' => 'Προαιρετικό',
- 'original-output' => 'Εμφάνιση / Απόκρυψη αρχικού κειμένου',
- 'participant' => 'Συμμέτοχος',
- 'passed' => 'Περάσαμε!',
- 'peers' => 'Peers',
- 'pending' => 'εκκρεμής',
- 'personal-freeleech' => 'Προσωπικά Freeleech',
- 'poster' => 'Πόστερ',
- 'poster-view' => 'Προβολή πόστερ',
- 'posters' => 'Πόστερς',
- 'postponed-torrents' => 'Torrents σε αναμονή',
- 'prewarn' => 'Πρόειδοποίηση;',
- 'progress' => 'Πρόοδος',
- 'publish-time' => 'Χρόνος δημοσίευσης',
- 'quick-comment' => 'Γρήγορο σχόλιο',
- 'quick-tip' => 'Γρήγορο φιλοδώρημα',
- 'rated' => 'Βαθμολογήθηκε',
- 'rating' => 'Βαθμολογία',
- 'ready' => 'Αυτό το αρχείο είναι έτοιμο για λήψη',
- 'recommendations' => 'Συστάσεις',
- 'rejected' => 'Απορρίφθηκε',
- 'released' => 'Κυκλοφόρησε',
- 'remaining' => 'Παραμένει',
- 'request-reseed' => 'Αίτημα Re-SEED',
- 'required-anime' => 'Απαιτείται για Anime',
- 'required-games' => 'Απαιτείται για Games',
- 'requires-reseed' => 'Απαιτείται επαναφορά',
- 'resolution' => 'Ανάλυση',
- 'resolutions' => 'Αναλύσεις',
- 'resurrections' => 'Αναστασεις Torrent',
- 'revoke' => 'Ανακαλώ',
- 'revokefeatured' => 'Ανάκληση Χαρακτηριστικού Torrent',
- 'rss' => 'RSS',
- 'runtime' => 'Χρόνος εκτέλεσης',
- 'satisfied_in' => 'Ικανοποιημένος σε',
- 'say-thanks' => 'Θυμηθείτε να πείτε ευχαριστώ στον Uploader και να διαμοιράζετε για όσο διάστημα μπορείτε',
- 'sd-content' => 'Περιεχόμενο SD',
- 'search' => 'Αναζήτηση',
- 'season-number' => 'Αριθμός σαιζόν',
- 'seed-time' => 'Χρόνος διαμοιρασμού',
- 'seeder' => 'Seeder',
- 'seeders' => 'Seeders',
- 'seeding' => 'Διαμοιράζω',
- 'seedsize' => 'Μέγεθος διαμοιρασμού',
- 'seedtime' => 'Χρόνος Διαμοιρασμού',
- 'short-completed' => 'Λήψεις',
- 'short-leechs' => 'Κατεβάζουν',
- 'short-seeds' => 'Διαμοιράζουν',
- 'show-files' => 'Εμφάνιση αρχείων',
- 'similar' => 'Παρόμοια Torrents',
- 'size' => 'Μέγεθος',
- 'special' => 'Ειδικό',
- 'special-double_upload' => 'Ειδικό Double Upload',
- 'special-freeleech' => 'Ειδικά Freeleech',
- 'staff-tools' => 'Εργαλεία Προσωπικού',
- 'start-year' => 'Χρονος έναρξης',
- 'started' => 'Ξεκίνησε',
- 'status' => 'Κατάσταση',
- 'statistics' => 'Statistics',
- 'stats' => 'Στατιστικά στοιχεία',
- 'sticky' => 'Κολλημένο',
- 'stream-optimized' => 'Η ροή βελτιστοποιήθηκε',
- 'subtitle' => 'Υπότιτλος',
- 'team-player' => 'Ομαδικός παίχτης',
- 'thank' => 'Ευχαριστώ',
- 'thanked' => 'Ευχαριστώ',
- 'thanks' => 'Ευχαριστώ',
- 'thanks-given' => 'Ευχαρίστησε',
- 'times' => 'Φορές',
- 'tip-jar' => 'Δοχείο φιλοδωρήματος',
- 'title' => 'Τίτλος',
- 'titles' => 'Τίτλοι',
- 'top-completed' => 'Κορυφαίες λήψεις',
- 'top-dead' => 'Top νεκρά',
- 'top-dying' => 'Top πεθαίνουν',
- 'top-leeched' => 'Top κατεβασμένα',
- 'top-seeded' => 'Top Διαμοιρασμένα',
- 'torrent' => 'Torrent',
- 'torrent-request' => 'Αίτηση Torrent',
- 'torrent-tips' => 'Από το Σύνολο :total πόντων που έχουνε χαριστεί στον χρήστη που ανέβασε το Torrent, :user είναι από εσάς',
- 'torrent-tips-desc' => 'Αυτό θα αφαιρεθεί από τα διαθέσιμa πονταλάκια σας',
- 'torrents' => 'Torrents',
- 'trailer' => 'Δείτε τρέιλερ',
- 'type' => 'Τύπος',
- 'types' => 'Τύποι',
- 'unbookmark' => 'Αποδέσμευση αρχείου',
- 'unsatisfieds' => 'Μη ικανοποιημένα',
- 'unsticky' => 'Ξεκόλλημα',
- 'updated' => 'ΕΠΙΚΑΙΡΟΠΟΙΗΜΕΝΟ',
- 'updated_at' => 'Ενημερώθηκε',
- 'uploaded' => 'Ανέβηκε',
- 'uploaded-by' => 'Ανέβηκε από',
- 'uploader' => 'Uploader',
- 'use-fl-token' => 'Χρησιμοποιήστε μια μάρκα Freeleech',
- 'video' => 'Βίντεο',
- 'view-more' => 'Δείτε περισσότερα',
- 'view-trailer' => 'Δείτε τρέιλερ',
- 'votes' => 'Ψηφοφορίες',
- 'year-range' => 'Διάρκεια ετών',
+ 'grouping-results' => 'Ομαδοποίηση αποτελεσμάτων',
+ 'groupings-view' => 'Προβολή Ομαδοποίησης',
+ 'have-completed' => 'Ολοκληρώθηκε',
+ 'have-downloaded' => 'Λήψη',
+ 'have-not-completed' => 'Μη ολοκληρωμένο',
+ 'have-not-downloaded' => 'Δεν κατέβηκε',
+ 'health' => 'Υγεία',
+ 'history' => 'Ιστορία',
+ 'hitrun' => 'H & R;',
+ 'hit-and-runs' => 'Τα αποτελέσματα Hit και Run',
+ 'immune' => 'Απρόσβλητο?',
+ 'info' => 'Πληροφορίες',
+ 'info-hash' => 'Πληροφορίες Hash',
+ 'internal' => 'Εσωτερικό',
+ 'internal-release' => 'Εσωτερικό release',
+ 'keywords' => 'Λέξεις Κλειδιά',
+ 'keywords-example' => 'Παράδειγμα: superhero, dc comics, marvel, κωμωδία, ρομαντικό κτλ',
+ 'last-seed-activity' => 'Τελευταία δραστηριότητα σπόρου',
+ 'last-seeder' => 'Είστε ο τελευταίος εναπομείναν διαμοιραστής! (έχει κατεβεί τουλάχιστον 3 φορές)',
+ 'last-update' => 'Τελευταία ενημέρωση',
+ 'leave-tip' => 'Αφήστε φιλοδώρημα',
+ 'leecher' => 'Leecher',
+ 'leechers' => 'Leechers',
+ 'leeching' => 'Κατεβάζω',
+ 'left' => 'Αριστερά',
+ 'legendary-seeder' => 'Ο θρυλικός seeder',
+ 'legendary-torrent' => 'Το θρυλικό torrent',
+ 'list' => 'Λίστα',
+ 'me' => 'Μου',
+ 'media-info' => 'MediaInfo',
+ 'media-info-parser' => 'MediaInfo Parser',
+ 'media-info-paste' => 'Επικολλήστε εδώ το αρχείο MediaInfo',
+ 'meta-desc' => 'Λήψη :name με τη μέγιστη ταχύτητα',
+ 'moderation' => 'Moderation',
+ 'movies' => 'Κινηματογράφος',
+ 'mvp' => 'MVP',
+ 'my-active-torrents' => 'Τα ενεργά μου torrents',
+ 'name' => 'Ονομα Torrent',
+ 'no-bookmarks' => 'Δεν βρέθηκαν σελιδοδείκτες.',
+ 'no-discounts' => 'Επί του παρόντος δεν υπάρχουν εκπτώσεις',
+ 'no-meta' => 'Δεν βρέθηκαν μεταδεδομένα',
+ 'no-privileges' => 'Δεν μπορείτε να κάνετε λήψη αυτού του αρχείου - ελέγξτε παρακάτω για περισσότερες πληροφορίες',
+ 'no-privileges-desc' => 'Επιλύστε τα αποτυχημένα αποτελέσματα παραπάνω για να εμφανιστεί το κουμπί λήψης',
+ 'not-completed' => 'Ξεκίνησε η λήψη αλλά δεν ολοκληρώθηκε ποτέ',
+ 'not-seeding' => 'Δεν διαμοιράζει',
+ 'not-downloaded' => 'Δεν κατέβηκε',
+ 'old-torrent' => 'Παλιό torrent',
+ 'optional' => 'Προαιρετικό',
+ 'original-output' => 'Εμφάνιση / Απόκρυψη αρχικού κειμένου',
+ 'participant' => 'Συμμέτοχος',
+ 'passed' => 'Περάσαμε!',
+ 'peers' => 'Peers',
+ 'pending' => 'εκκρεμής',
+ 'personal-freeleech' => 'Προσωπικά Freeleech',
+ 'poster' => 'Πόστερ',
+ 'poster-view' => 'Προβολή πόστερ',
+ 'posters' => 'Πόστερς',
+ 'postponed-torrents' => 'Torrents σε αναμονή',
+ 'prewarn' => 'Πρόειδοποίηση;',
+ 'progress' => 'Πρόοδος',
+ 'publish-time' => 'Χρόνος δημοσίευσης',
+ 'quick-comment' => 'Γρήγορο σχόλιο',
+ 'quick-tip' => 'Γρήγορο φιλοδώρημα',
+ 'rated' => 'Βαθμολογήθηκε',
+ 'rating' => 'Βαθμολογία',
+ 'ready' => 'Αυτό το αρχείο είναι έτοιμο για λήψη',
+ 'recommendations' => 'Συστάσεις',
+ 'rejected' => 'Απορρίφθηκε',
+ 'released' => 'Κυκλοφόρησε',
+ 'remaining' => 'Παραμένει',
+ 'request-reseed' => 'Αίτημα Re-SEED',
+ 'required-anime' => 'Απαιτείται για Anime',
+ 'required-games' => 'Απαιτείται για Games',
+ 'requires-reseed' => 'Απαιτείται επαναφορά',
+ 'resolution' => 'Ανάλυση',
+ 'resolutions' => 'Αναλύσεις',
+ 'resurrections' => 'Αναστασεις Torrent',
+ 'revoke' => 'Ανακαλώ',
+ 'revokefeatured' => 'Ανάκληση Χαρακτηριστικού Torrent',
+ 'rss' => 'RSS',
+ 'runtime' => 'Χρόνος εκτέλεσης',
+ 'satisfied_in' => 'Ικανοποιημένος σε',
+ 'say-thanks' => 'Θυμηθείτε να πείτε ευχαριστώ στον Uploader και να διαμοιράζετε για όσο διάστημα μπορείτε',
+ 'sd-content' => 'Περιεχόμενο SD',
+ 'search' => 'Αναζήτηση',
+ 'season-number' => 'Αριθμός σαιζόν',
+ 'seed-time' => 'Χρόνος διαμοιρασμού',
+ 'seeder' => 'Seeder',
+ 'seeders' => 'Seeders',
+ 'seeding' => 'Διαμοιράζω',
+ 'seedsize' => 'Μέγεθος διαμοιρασμού',
+ 'seedtime' => 'Χρόνος Διαμοιρασμού',
+ 'short-completed' => 'Λήψεις',
+ 'short-leechs' => 'Κατεβάζουν',
+ 'short-seeds' => 'Διαμοιράζουν',
+ 'show-files' => 'Εμφάνιση αρχείων',
+ 'similar' => 'Παρόμοια Torrents',
+ 'size' => 'Μέγεθος',
+ 'special' => 'Ειδικό',
+ 'special-double_upload' => 'Ειδικό Double Upload',
+ 'special-freeleech' => 'Ειδικά Freeleech',
+ 'staff-tools' => 'Εργαλεία Προσωπικού',
+ 'start-year' => 'Χρονος έναρξης',
+ 'started' => 'Ξεκίνησε',
+ 'status' => 'Κατάσταση',
+ 'statistics' => 'Statistics',
+ 'stats' => 'Στατιστικά στοιχεία',
+ 'sticky' => 'Κολλημένο',
+ 'stream-optimized' => 'Η ροή βελτιστοποιήθηκε',
+ 'subtitle' => 'Υπότιτλος',
+ 'team-player' => 'Ομαδικός παίχτης',
+ 'thank' => 'Ευχαριστώ',
+ 'thanked' => 'Ευχαριστώ',
+ 'thanks' => 'Ευχαριστώ',
+ 'thanks-given' => 'Ευχαρίστησε',
+ 'times' => 'Φορές',
+ 'tip-jar' => 'Δοχείο φιλοδωρήματος',
+ 'title' => 'Τίτλος',
+ 'titles' => 'Τίτλοι',
+ 'top-completed' => 'Κορυφαίες λήψεις',
+ 'top-dead' => 'Top νεκρά',
+ 'top-dying' => 'Top πεθαίνουν',
+ 'top-leeched' => 'Top κατεβασμένα',
+ 'top-seeded' => 'Top Διαμοιρασμένα',
+ 'torrent' => 'Torrent',
+ 'torrent-request' => 'Αίτηση Torrent',
+ 'torrent-tips' => 'Από το Σύνολο :total πόντων που έχουνε χαριστεί στον χρήστη που ανέβασε το Torrent, :user είναι από εσάς',
+ 'torrent-tips-desc' => 'Αυτό θα αφαιρεθεί από τα διαθέσιμa πονταλάκια σας',
+ 'torrents' => 'Torrents',
+ 'trailer' => 'Δείτε τρέιλερ',
+ 'type' => 'Τύπος',
+ 'types' => 'Τύποι',
+ 'unbookmark' => 'Αποδέσμευση αρχείου',
+ 'unsatisfieds' => 'Μη ικανοποιημένα',
+ 'unsticky' => 'Ξεκόλλημα',
+ 'updated' => 'ΕΠΙΚΑΙΡΟΠΟΙΗΜΕΝΟ',
+ 'updated_at' => 'Ενημερώθηκε',
+ 'uploaded' => 'Ανέβηκε',
+ 'uploaded-by' => 'Ανέβηκε από',
+ 'uploader' => 'Uploader',
+ 'use-fl-token' => 'Χρησιμοποιήστε μια μάρκα Freeleech',
+ 'video' => 'Βίντεο',
+ 'view-more' => 'Δείτε περισσότερα',
+ 'view-trailer' => 'Δείτε τρέιλερ',
+ 'votes' => 'Ψηφοφορίες',
+ 'year-range' => 'Διάρκεια ετών',
];
diff --git a/lang/el/user.php b/lang/el/user.php
index 3a29e7140..c327651a1 100644
--- a/lang/el/user.php
+++ b/lang/el/user.php
@@ -12,343 +12,343 @@
*/
return [
- 'about' => 'Σχετικά με',
- 'about-me' => 'Σχετικά με μένα',
- 'accepted-at' => 'Αποδεκτό στο',
- 'accepted-by' => 'Αποδεκτό από',
- 'account-notification' => 'Ρυθμίσεις ειδοποιήσεων λογαριασμού',
- 'account-notification-follow' => 'Λάβετε μια ειδοποίηση όταν ένας χρήστης ακολουθεί το λογαριασμό σας',
- 'account-notification-unfollow' => 'Λάβετε μια ειδοποίηση όταν ένας χρήστης διακόψει την παρακολούθηση του λογαριασμού σας',
- 'account-notification-help' => 'Ελέγξτε τις ειδοποιήσεις που αποστέλλονται σχετικά με το λογαριασμό σας. Αυτές οι ρυθμίσεις παραβλέπονται αν δεν επιτρέπετε σε ομάδες να αποστέλλουν ειδοποιήσεις σχετικά με το λογαριασμό σας ή εάν απενεργοποιείτε τις ειδοποιήσεις',
- 'account-settings' => 'Ρυθμίσεις λογαριασμού',
- 'achievement-privacy' => 'Ρυθμίσεις επίτευξης',
- 'achievement-privacy-list' => 'Επιτρέψτε στους χρήστες να δουν μια λίστα με τα επιτεύγματά σας',
- 'achievement-help' => 'Ελέγξτε την κοινή χρήση συγκεκριμένων πληροφοριών σχετικών με το επίτευγμα με ομάδες στις οποίες επιτρέπεται η πρόσβαση στο προφίλ σας. Αυτές οι ρυθμίσεις παραβλέπονται αν δεν επιτρέπετε σε καμία ομάδα να αποκτήσει πρόσβαση στα επιτεύγματά σας ή εάν μεταβείτε ιδιωτικά',
- 'achievements' => 'Επιτεύγματα',
- 'active' => 'Ενεργά',
- 'active-table' => 'Ενεργός Πίνακας μου',
- 'active-torrents' => 'Ενεργά torrents',
- 'active-warning' => 'Ενεργή προειδοποίηση',
- 'active-warnings' => 'Ενεργές προειδοποιήσεις',
- 'add-seedbox' => 'Προσθήκη Seedbox',
- 'all-torrents' => 'Όλα τα Torrents',
- 'article-comments' => 'Έχω κάνει παρατηρήσεις σε Άρθρα',
- 'avatar' => 'Avatar',
- 'avg-seedtime' => 'Μέσος χρόνος Διαμοιρασμού',
- 'badges' => 'Σήματα',
- 'ban' => 'Απαγόρευση χρήστη',
- 'bans' => 'Απαγoρευσεις χρηστων',
- 'ban-log' => 'Log Απαγόρευση καταγραφής',
- 'become-hidden' => 'Κρυφό προφίλ',
- 'become-visible' => 'Ορατό Προφίλ',
- 'bon' => 'Πονταλάκια',
- 'bon-notification' => 'Ρυθμίσεις ειδοποίησης Πόντων',
- 'bon-notification-gift' => 'Λάβετε μια ειδοποίηση όταν ένας χρήστης σας δίνει δώρο',
- 'bon-notification-help' => 'Ελέγξτε τις αποστολές κοινοποιήσεων σχετικά με τις συναλλαγές πόντων. Αυτές οι ρυθμίσεις παραβλέπονται αν δεν επιτρέπετε σε καμία ομάδα να στείλει ειδοποιήσεις σχετικά με τα πονταλάκια ή εάν απενεργοποιήσετε τις ειδοποιήσεις',
- 'bookmarks' => 'Σελιδοδείκτες',
- 'bounty-given' => 'Έδωσα αμοιβή',
- 'bounty-received' => 'Έλαβα αμοιβή',
- 'can-chat' => 'Μπορεί να συνομιλήσει',
- 'can-comment' => 'Μπορεί να σχολιάσει',
- 'can-download' => 'Μπορεί να κατεβάσει',
- 'can-invite' => 'Μπορεί να προσκαλέσει',
- 'can-request' => 'Μπορεί να ζητήσει',
- 'can-upload' => 'Μπορεί να ανεβάσει',
- 'certified-banker' => 'Πιστοποιημένος Τραπεζίτης',
- 'certified-banker-desc' => 'Έχει 50.000 ή περισσότερα πονταλάκια στην τράπεζα',
- 'certified-downloader' => 'Πιστοποιημένος λήπτης',
- 'certified-downloader-desc' => 'Έχει κάνει λήψη 100 ή περισσότερων torrents!',
- 'certified-seeder' => 'Πιστοποιημένος διαμοιραστής',
- 'certified-seeder-desc' => 'Διαμοιράζει 150 ή περισσότερα torrents!',
- 'change-email' => 'Αλλαγή διευθυνσης ηλεκτρονικού ταχυδρομείου',
- 'change-email-help' => 'Θα πρέπει να επιβεβαιώσετε εκ νέου τον λογαριασμό σας, αφού αλλάξετε το email σας',
- 'change-password' => 'Άλλαγή κωδικού',
- 'change-password-help' => 'Θα πρέπει να συνδεθείτε ξανά, αφού αλλάξετε τον κωδικό πρόσβασής σας',
- 'client-ip-address' => 'Διεύθυνση IP πελάτη',
- 'code' => 'Κώδικας',
- 'comments' => 'Σχόλια',
- 'created' => 'Δημιουργήθηκε',
- 'created-on' => 'Δημιουργήθηκε στις',
- 'credited-download' => 'Χρεωμένη λήψη',
- 'credited-upload' => 'Χρεωμένος διαμοιρασμός',
- 'current-password' => 'Τρέχων κωδικός πρόσβασης',
- 'custom-title' => 'Προσαρμοσμένος τίτλος',
- 'deactivate' => 'Απενεργοποίηση',
- 'deactivate-all' => 'Απενεργοποίηση Ολων',
- 'delete' => 'Διαγραφή',
- 'delete-all' => 'Διαγραφή Ολων',
- 'deleted-by' => 'Διαγράφηκε από',
- 'deleted-on' => 'Διαγράφηκε στις',
- 'disable-notifications' => 'Απενεργοποίηση ειδοποιήσεων',
- 'disclaimer' => 'Αποποίηση ευθυνών',
- 'disclaimer-info' => 'Από προεπιλογή δεν καταγράφονται οι διευθύνσεις IP των χρηστών όπως οι περισσότεροι ιχνηλάτες. Με την προσθήκη της αρχικής σας IP προελεύσεως αναμένεται ότι γνωρίζετε ότι οι IP διευθύνσεις που αναφέρονται παρακάτω αποθηκεύονται στη βάση δεδομένων μας, εκτός εάν διαγράψετε τις εγγραφές.',
- 'disclaimer-info-bordered' => 'Τα Seedbox IPs που προστέθηκαν στη συνέχεια θα ενεργοποιήσουν την ετικέτα torrent υψηλής ταχύτητας σε torrents που προέρχονται από τα IP που αναφέρονται παρακάτω',
- 'download-bon' => 'Αφαιρέθηκε η λήψη από το κατάστημα πόντων',
- 'download-recorded' => 'Εγγραφή λήψης',
- 'download-true' => 'Πραγματική λήψη',
- 'downloads' => 'Έχω κατεβάσει',
- 'edit' => 'Επεξεργασία χρήστη',
- 'edit-profile' => 'Επεξεργασία προφίλ',
- 'enable-notifications' => 'Ενεργοποίηση ειδοποιήσεων',
- 'expired' => 'έληξε',
- 'expires-on' => 'Λήγει στις',
- 'extra' => 'Επιπλέον',
- 'filled-request' => 'Έχω Συμπληρώσει αιτήματα μελών',
- 'follow' => 'Ακολουθηστε',
- 'follower-privacy' => 'Ρυθμίσεις ακολουθίας',
- 'follower-privacy-list' => 'Να επιτρέπεται στους χρήστες να βλέπουν μια λίστα με τους οπαδούς σας',
- 'follower-help' => 'Ελέγξτε την κοινή χρήση συγκεκριμένων σχετικών πληροφοριών του ακόλουθου με ομάδες που επιτρέπεται να έχουν πρόσβαση στο προφίλ σας.
+ 'about' => 'Σχετικά με',
+ 'about-me' => 'Σχετικά με μένα',
+ 'accepted-at' => 'Αποδεκτό στο',
+ 'accepted-by' => 'Αποδεκτό από',
+ 'account-notification' => 'Ρυθμίσεις ειδοποιήσεων λογαριασμού',
+ 'account-notification-follow' => 'Λάβετε μια ειδοποίηση όταν ένας χρήστης ακολουθεί το λογαριασμό σας',
+ 'account-notification-unfollow' => 'Λάβετε μια ειδοποίηση όταν ένας χρήστης διακόψει την παρακολούθηση του λογαριασμού σας',
+ 'account-notification-help' => 'Ελέγξτε τις ειδοποιήσεις που αποστέλλονται σχετικά με το λογαριασμό σας. Αυτές οι ρυθμίσεις παραβλέπονται αν δεν επιτρέπετε σε ομάδες να αποστέλλουν ειδοποιήσεις σχετικά με το λογαριασμό σας ή εάν απενεργοποιείτε τις ειδοποιήσεις',
+ 'account-settings' => 'Ρυθμίσεις λογαριασμού',
+ 'achievement-privacy' => 'Ρυθμίσεις επίτευξης',
+ 'achievement-privacy-list' => 'Επιτρέψτε στους χρήστες να δουν μια λίστα με τα επιτεύγματά σας',
+ 'achievement-help' => 'Ελέγξτε την κοινή χρήση συγκεκριμένων πληροφοριών σχετικών με το επίτευγμα με ομάδες στις οποίες επιτρέπεται η πρόσβαση στο προφίλ σας. Αυτές οι ρυθμίσεις παραβλέπονται αν δεν επιτρέπετε σε καμία ομάδα να αποκτήσει πρόσβαση στα επιτεύγματά σας ή εάν μεταβείτε ιδιωτικά',
+ 'achievements' => 'Επιτεύγματα',
+ 'active' => 'Ενεργά',
+ 'active-table' => 'Ενεργός Πίνακας μου',
+ 'active-torrents' => 'Ενεργά torrents',
+ 'active-warning' => 'Ενεργή προειδοποίηση',
+ 'active-warnings' => 'Ενεργές προειδοποιήσεις',
+ 'add-seedbox' => 'Προσθήκη Seedbox',
+ 'all-torrents' => 'Όλα τα Torrents',
+ 'article-comments' => 'Έχω κάνει παρατηρήσεις σε Άρθρα',
+ 'avatar' => 'Avatar',
+ 'avg-seedtime' => 'Μέσος χρόνος Διαμοιρασμού',
+ 'badges' => 'Σήματα',
+ 'ban' => 'Απαγόρευση χρήστη',
+ 'bans' => 'Απαγoρευσεις χρηστων',
+ 'ban-log' => 'Log Απαγόρευση καταγραφής',
+ 'become-hidden' => 'Κρυφό προφίλ',
+ 'become-visible' => 'Ορατό Προφίλ',
+ 'bon' => 'Πονταλάκια',
+ 'bon-notification' => 'Ρυθμίσεις ειδοποίησης Πόντων',
+ 'bon-notification-gift' => 'Λάβετε μια ειδοποίηση όταν ένας χρήστης σας δίνει δώρο',
+ 'bon-notification-help' => 'Ελέγξτε τις αποστολές κοινοποιήσεων σχετικά με τις συναλλαγές πόντων. Αυτές οι ρυθμίσεις παραβλέπονται αν δεν επιτρέπετε σε καμία ομάδα να στείλει ειδοποιήσεις σχετικά με τα πονταλάκια ή εάν απενεργοποιήσετε τις ειδοποιήσεις',
+ 'bookmarks' => 'Σελιδοδείκτες',
+ 'bounty-given' => 'Έδωσα αμοιβή',
+ 'bounty-received' => 'Έλαβα αμοιβή',
+ 'can-chat' => 'Μπορεί να συνομιλήσει',
+ 'can-comment' => 'Μπορεί να σχολιάσει',
+ 'can-download' => 'Μπορεί να κατεβάσει',
+ 'can-invite' => 'Μπορεί να προσκαλέσει',
+ 'can-request' => 'Μπορεί να ζητήσει',
+ 'can-upload' => 'Μπορεί να ανεβάσει',
+ 'certified-banker' => 'Πιστοποιημένος Τραπεζίτης',
+ 'certified-banker-desc' => 'Έχει 50.000 ή περισσότερα πονταλάκια στην τράπεζα',
+ 'certified-downloader' => 'Πιστοποιημένος λήπτης',
+ 'certified-downloader-desc' => 'Έχει κάνει λήψη 100 ή περισσότερων torrents!',
+ 'certified-seeder' => 'Πιστοποιημένος διαμοιραστής',
+ 'certified-seeder-desc' => 'Διαμοιράζει 150 ή περισσότερα torrents!',
+ 'change-email' => 'Αλλαγή διευθυνσης ηλεκτρονικού ταχυδρομείου',
+ 'change-email-help' => 'Θα πρέπει να επιβεβαιώσετε εκ νέου τον λογαριασμό σας, αφού αλλάξετε το email σας',
+ 'change-password' => 'Άλλαγή κωδικού',
+ 'change-password-help' => 'Θα πρέπει να συνδεθείτε ξανά, αφού αλλάξετε τον κωδικό πρόσβασής σας',
+ 'client-ip-address' => 'Διεύθυνση IP πελάτη',
+ 'code' => 'Κώδικας',
+ 'comments' => 'Σχόλια',
+ 'created' => 'Δημιουργήθηκε',
+ 'created-on' => 'Δημιουργήθηκε στις',
+ 'credited-download' => 'Χρεωμένη λήψη',
+ 'credited-upload' => 'Χρεωμένος διαμοιρασμός',
+ 'current-password' => 'Τρέχων κωδικός πρόσβασης',
+ 'custom-title' => 'Προσαρμοσμένος τίτλος',
+ 'deactivate' => 'Απενεργοποίηση',
+ 'deactivate-all' => 'Απενεργοποίηση Ολων',
+ 'delete' => 'Διαγραφή',
+ 'delete-all' => 'Διαγραφή Ολων',
+ 'deleted-by' => 'Διαγράφηκε από',
+ 'deleted-on' => 'Διαγράφηκε στις',
+ 'disable-notifications' => 'Απενεργοποίηση ειδοποιήσεων',
+ 'disclaimer' => 'Αποποίηση ευθυνών',
+ 'disclaimer-info' => 'Από προεπιλογή δεν καταγράφονται οι διευθύνσεις IP των χρηστών όπως οι περισσότεροι ιχνηλάτες. Με την προσθήκη της αρχικής σας IP προελεύσεως αναμένεται ότι γνωρίζετε ότι οι IP διευθύνσεις που αναφέρονται παρακάτω αποθηκεύονται στη βάση δεδομένων μας, εκτός εάν διαγράψετε τις εγγραφές.',
+ 'disclaimer-info-bordered' => 'Τα Seedbox IPs που προστέθηκαν στη συνέχεια θα ενεργοποιήσουν την ετικέτα torrent υψηλής ταχύτητας σε torrents που προέρχονται από τα IP που αναφέρονται παρακάτω',
+ 'download-bon' => 'Αφαιρέθηκε η λήψη από το κατάστημα πόντων',
+ 'download-recorded' => 'Εγγραφή λήψης',
+ 'download-true' => 'Πραγματική λήψη',
+ 'downloads' => 'Έχω κατεβάσει',
+ 'edit' => 'Επεξεργασία χρήστη',
+ 'edit-profile' => 'Επεξεργασία προφίλ',
+ 'enable-notifications' => 'Ενεργοποίηση ειδοποιήσεων',
+ 'expired' => 'έληξε',
+ 'expires-on' => 'Λήγει στις',
+ 'extra' => 'Επιπλέον',
+ 'filled-request' => 'Έχω Συμπληρώσει αιτήματα μελών',
+ 'follow' => 'Ακολουθηστε',
+ 'follower-privacy' => 'Ρυθμίσεις ακολουθίας',
+ 'follower-privacy-list' => 'Να επιτρέπεται στους χρήστες να βλέπουν μια λίστα με τους οπαδούς σας',
+ 'follower-help' => 'Ελέγξτε την κοινή χρήση συγκεκριμένων σχετικών πληροφοριών του ακόλουθου με ομάδες που επιτρέπεται να έχουν πρόσβαση στο προφίλ σας.
Αυτές οι ρυθμίσεις παραβλέπονται αν δεν επιτρέπετε σε καμία ομάδα να έχει πρόσβαση στους οπαδούς σας ή αν Κρύψεις το προφίλ σου',
- 'followers' => 'Ποιοί με ακολουθουν',
- 'following-notification' => 'Ρυθμίσεις ειδοποίησης Ακολουθούμενων χρηστων',
- 'following-notification-upload' => 'Λάβετε μια ειδοποίηση όταν ένας επόμενος χρήστης μεταφορτώσει ένα torrent',
- 'following-notification-help' => 'Ελέγξτε ποιες ειδοποιήσεις αποστέλλονται σχετικά με τις ενέργειες που ακολουθούν οι χρήστες του ιστότοπου Αυτές οι ρυθμίσεις παραβλέπονται αν δεν επιτρέπετε σε ομάδες να αποστέλλουν ειδοποιήσεις σχετικά με τους χρήστες που ακολουθούν ή εάν απενεργοποιείτε τις ειδοποιήσεις',
- 'formats-are-supported' => ':formats που υποστηρίζονται',
- 'forum-notification' => 'Ρυθμίσεις ειδοποίησης φόρουμ',
- 'forum-notification-topic' => 'Λάβετε μια ειδοποίηση όταν ένα θέμα που ξεκινήσατε λαμβάνει μια νέα ανάρτηση',
- 'forum-notification-help' => 'Ελέγχει ποιες ειδοποιήσεις αποστέλλονται σχετικά με τις δραστηριότητες φόρουμ. Αυτές οι ρυθμίσεις παραβλέπονται αν δεν επιτρέπετε σε ομάδες να αποστέλλουν ειδοποιήσεις σχετικά με δραστηριότητες φόρουμ ή εάν απενεργοποιείτε τις ειδοποιήσεις',
- 'forum-privacy' => 'Ρυθμίσεις φόρουμ',
- 'forum-privacy-post' => 'Να επιτρέπεται στους χρήστες να βλέπουν μια λίστα με αναρτήσεις φόρουμ που έχετε δημοσιεύσει',
- 'forum-privacy-topic' => 'Να επιτρέπεται στους χρήστες να βλέπουν μια λίστα θεμάτων φόρουμ που έχετε ξεκινήσει',
- 'forum-help' => 'Ελέγξτε την κοινή χρήση συγκεκριμένων στατιστικών και πληροφοριών σχετικά με το φόρουμ με ομάδες στις οποίες επιτρέπεται η πρόσβαση στο προφίλ σας. Αυτές οι ρυθμίσεις παραβλέπονται αν δεν επιτρέπετε σε καμία ομάδα να έχει πρόσβαση στα στατιστικά στοιχεία και τις πληροφορίες που σχετίζονται με το φόρουμ σας ή εάν έχετε μεταβεί ιδιωτικά',
- 'forum-signature' => 'Υπογραφή Φόρουμ',
- 'forums' => 'Φόρουμ',
- 'general' => 'Γενικά',
- 'general-settings' => 'Γενικές Ρυθμίσεις',
- 'gift-given' => 'Δώρισμένα',
- 'gift-received' => 'Δώρα που λήφθησαν',
- 'go-public' => 'Δημόσιο Προφίλ',
- 'go-private' => 'Ιδιωτικό Προφίλ',
- 'history' => 'Ιστορίκο',
- 'history-table' => 'Πίνακας ιστορικού',
- 'hit-n-runs' => 'Hit και Run',
- 'hit-n-runs-count' => 'Αριθμός Hit και Run (Σύνολο)',
- 'hit-n-runs-history' => 'Ιστορικό Hit και Run',
- 'id-permissions' => 'ID & Δικαιώματα',
- 'image' => 'Εικόνα',
- 'important' => 'Σπουδαίο',
- 'important-info' => 'Σημαντικές πληροφορίες',
- 'information' => 'Πληροφορίες',
- 'invited-by' => 'Προσκλήθηκε από',
- 'invite-friend' => 'Προσκαλέστε ένα φίλο σας (Email + Μήνυμα που απαιτείται)',
- 'invite-tree' => 'Δέντρο Προσκήσεων',
- 'invites' => 'Προσκλήσεις',
- 'invites-banned' => 'Σφάλμα: Τα δικαιώματα πρόσκλησής σας έχουν απενεργοποιηθεί',
- 'invites-banned-desc' => 'Εάν αισθάνεστε ότι υπάρχει λάθος, επικοινωνήστε με το προσωπικό!',
- 'invites-count' => 'Έχετε :count Προσκλήσεις υπόλοιπο',
- 'invites-disabled' => 'Προσοχή: Οι προσκλήσεις είναι απενεργοποιημένες λόγω ανοικτής εγγραφής!',
- 'invites-disabled-desc' => 'Παρακαλώ Ελέγξτε ξανά σύντομα!',
- 'invites-rules' => '- Προσκαλέστε μόνο άτομα που γνωρίζετε και εμπιστεύεστε.
- Θα είστε προσωπικά υπεύθυνοι για αυτούς που προσκαλείτε.
- Μην προσκαλέσετε τον εαυτό σας, ελέγχουμε κάθε προσκεκλημένο χρήστη.
- Μην κάνετε εμπόριο ή πωλήσεις προσκλήσεων.
- Αν κάποιος που προσκάλεσε έχει συλληφθεί με εξαπάτηση, λογαριασμό διαπραγμάτευσης ή προσφορές / συναλλαγές, θα ειδοποιηθείτε.
',
- 'invites-send' => 'Αποστολή πρόσκλησης',
- 'judge' => 'Κριτής',
- 'last-login' => 'Τελευταία είσοδος',
- 'locked' => 'Κλειδωμένο',
- 'locked-achievements' => 'Κλειδωμένα επιτεύγματα',
- 'member-since' => 'Μέλος από',
- 'members-desc' => 'Κατάλογος εγγεγραμμένων χρηστών του :title με όλες τις ομάδες. Βρείτε έναν χρήστη τώρα.',
- 'mention-notification' => '@Mention Ρυθμίσεις ειδοποίησης',
- 'mention-notification-article-comment' => 'Λάβετε μια ειδοποίηση όταν είστε @mentioned αναφερθέντα σε ένα σχόλιο άρθρου',
- 'mention-notification-torrent-comment' => 'Λάβετε μια ειδοποίηση όταν είστε @mentioned αναφέρεται σε ένα σχόλιο torrent',
- 'mention-notification-request-comment' => 'Λάβετε μια ειδοποίηση όταν είστε @mentioned αναφερθέντα σε ένα σχόλιο αίτησης',
- 'mention-notification-forum-post' => 'Λάβετε μια ειδοποίηση όταν είστε @mentioned αναφερθέντα σε μια ανάρτηση σε φόρουμ',
- 'mention-notification-help' => 'Ελέγξτε τις ειδοποιήσεις που αποστέλλονται όταν ένας χρήστης @mentions σας ειδοποιεί. Αυτές οι ρυθμίσεις παραβλέπονται αν δεν επιτρέπετε σε καμία ομάδα να στείλει ειδοποιήσεις αν ένας χρήστης @mentions σας ειδοποιεί ή εάν απενεργοποιείτε τις ειδοποιήσεις',
- 'moderated-by' => 'Συντονίστηκε από :mod στις',
- 'my-bonus-points' => 'Τα πονταλάκια μου',
- 'my-bookmarks' => 'Οι σελιδοδείκτες μου',
- 'my-fl-tokens' => 'Οι μάρκες FreeLeech μου',
- 'my-general-settings' => 'Οι Γενικές Ρυθμίσεις μου',
- 'my-notification' => 'Η ειδοποιηση μου',
- 'my-notification-settings' => 'Ρυθμίσεις ειδοποίησης μου',
- 'my-privacy' => 'Το απόρρητο μου',
- 'my-privacy-settings' => 'Ρυθμίσεις απορρήτου μου',
- 'my-profile' => 'Το ΠΡΟΦΙΛ μου',
- 'my-requested' => 'Τα αίτημάτά μου',
- 'my-security' => 'Η Ασφάλεια μου',
- 'my-security-settings' => 'Ρυθμίσεις ασφαλείας μου',
- 'my-seedboxes' => 'Τα Seedbox μου',
- 'my-settings' => 'Οι ρυθμίσεις μου',
- 'my-uploads' => 'Έχω ανεβάσει',
- 'my-wishlist' => 'Η λίστα επιθυμιών μου',
- 'no-ban' => 'Δεν υπάρχουνε απαγορεύσεις για αυτό το χρήστη!',
- 'no-logs' => 'Δεν υπάρχουν log πρόσκλησης στη βάση δεδομένων για αυτόν τον χρήστη!',
- 'no-seedboxes' => 'Δεν υπάρχουν Seedboxes 😔',
- 'no-soft-warning' => 'Δεν υπάρχουν διαγραμμένες προειδοποιήσεις γι αυτο το χρήστη!',
- 'no-warning' => 'Δεν υπάρχουν προειδοποιήσεις γι αυτο το χρήστη!!',
- 'not-authorized' => 'Δεν έχετε εξουσιοδότηση για να δείτε αυτή τη σελίδα. Αυτό το μέλος προτιμά να είναι κρυμμένο σαν τον άρκαλο!',
- 'not-satisfied-not-immune' => 'Μη Ικανοποιημένο / Οχι απρόσβλητο',
- 'note' => 'Σημείωση',
- 'notification' => 'Ειδοποίηση',
- 'notification-settings' => 'Ρυθμίσεις ειδοποιήσεων',
- 'notification-from-account' => 'Λήψη ειδοποιήσεων λογαριασμού από το',
- 'notification-from-account-help' => 'Θα λάβετε ειδοποιήσεις λογαριασμού μόνο από το σύστημα, το προσωπικό και τις ακόλουθες ομάδες. Αυτές οι ρυθμίσεις παραβλέπονται αν απενεργοποιήσετε τις ειδοποιήσεις',
- 'notification-from-bon' => 'Λήψη ειδοποιήσεων πόντων από το',
- 'notification-from-bon-help' => 'Θα λάβετε ειδοποιήσεις για πόντους μόνο από το σύστημα, το προσωπικό και τις ακόλουθες ομάδες. Αυτές οι ρυθμίσεις παραβλέπονται αν απενεργοποιήσετε τις ειδοποιήσεις',
- 'notification-from-following' => 'Λήψη Ειδοποιήσεων Επόμενου Χρήστη από το',
- 'notification-from-following-help' => 'Θα λάβετε ειδοποιήσεις από τους ακόλουθους χρήστες μόνο από τις ακόλουθες ομάδες. Αυτές οι ρυθμίσεις παραβλέπονται αν απενεργοποιήσετε τις ειδοποιήσεις',
- 'notification-from-forum' => 'Λήψη ειδοποιήσεων φόρουμ από το',
- 'notification-from-forum-help' => 'Θα λαμβάνετε ειδοποιήσεις στο φόρουμ από το σύστημα, το προσωπικό και τις ακόλουθες ομάδες. Αυτές οι ρυθμίσεις παραβλέπονται αν απενεργοποιήσετε τις ειδοποιήσεις',
- 'notification-from-subscription' => 'Λήψη ειδοποιήσεων εγγραφής από το',
- 'notification-from-subscription-help' => 'Θα λαμβάνετε ειδοποιήσεις στο φόρουμ από το σύστημα, το προσωπικό και τις ακόλουθες ομάδες. Αυτές οι ρυθμίσεις παραβλέπονται αν απενεργοποιήσετε τις ειδοποιήσεις',
- 'notification-from-torrent' => 'Λήψη ειδοποιήσεων Torrent από',
- 'notification-from-torrent-help' => 'Θα λαμβάνετε ειδοποιήσεις torrent μόνο από το σύστημα, το προσωπικό και τις ακόλουθες ομάδες. Αυτές οι ρυθμίσεις παραβλέπονται αν απενεργοποιήσετε τις ειδοποιήσεις',
- 'notification-from-mention' => 'Λήψη ειδοποιήσεων @Mention από',
- 'notification-from-mention-help' => 'Θα λάβετε ειδοποιήσεις @mention μόνο από το σύστημα, το προσωπικό και τις ακόλουθες ομάδες. Αυτές οι ρυθμίσεις παραβλέπονται αν απενεργοποιήσετε τις ειδοποιήσεις',
- 'notification-from-request' => 'Λήψη Ειδοποιήσεων Αίτησης από το',
- 'notification-from-request-help' => 'Θα λάβετε ειδοποιήσεις αιτήσεων μόνο από το σύστημα, το προσωπικό και τις ακόλουθες ομάδες. Αυτές οι ρυθμίσεις παραβλέπονται αν απενεργοποιήσετε τις ειδοποιήσεις',
- 'notifications' => 'Ειδοποιήσεις',
- 'offline' => 'Ο χρήστης είναι εκτός σύνδεσης!',
- 'online' => 'Ο χρήστης είναι συνδεδεμένος!',
- 'open-registration' => 'Από Ανοιχτές Εγγραφές',
- 'options' => 'Επιλογές',
- 'other-help' => 'Ελέγξτε την κοινή χρήση άλλων στατιστικών στοιχείων και πληροφοριών με τις ομάδες στις οποίες επιτρέπεται η πρόσβαση στο προφίλ σας. Αυτές οι ρυθμίσεις παραβλέπονται αν δεν επιτρέπετε σε καμία ομάδα να έχει πρόσβαση στα άλλα σας στατιστικά στοιχεία και πληροφορίες ή εάν μεταβείτε σε ιδιωτικό',
- 'other-privacy' => 'Αλλες ρυθμίσεις ιδιωτικότητας',
- 'other-privacy-online' => 'Επιτρέψτε στους χρήστες να σας δουν στο μπλοκ ηλεκτρονικών χρηστών',
- 'passkey' => 'Passkey',
- 'passkey-warning' => 'Το Passkey είναι σαν τον κωδικό πρόσβασής σας, πρέπει να το κρατάτε ασφαλές!',
- 'pending-achievements' => 'Κλειδωμένα επιτεύγματα',
- 'per-torrent' => 'Ανά Torrent',
- 'posts' => 'Δημοσιεύσεις',
- 'posts-posted' => 'Εχω κάνει Δημοσιεύσεις Forum',
- 'privacy' => 'Ιδιωτικότητα',
- 'privacy-settings' => 'Ρυθμίσεις απορρήτου',
- 'private-info' => 'Ιδιωτικές πληροφορίες',
- 'private-forum-profile' => 'Προσοχή: Αυτό το Θέμα και το Ιστορικό των Μελών έχει οριστεί σε ΙΔΙΩΤΙΚΟ!',
- 'private-profile' => 'Προσοχή: Αυτό το προφίλ έχει οριστεί σε ΙΔΙΩΤΙΚΟ!',
- 'profile' => 'Προφίλ',
- 'profile-desc' => 'Χρήστης :user προφίλ χρήστη εγγεγραμμένο στο :title',
- 'profile-privacy' => 'Ρυθμίσεις προφίλ',
- 'profile-privacy-torrent-count' => 'Μοιραστείτε τον συνολικό αριθμό των λήψεων, των μεταφορτώσεων, των σπόρων και των ληπτών',
- 'profile-privacy-torrent-ratio' => 'Μοιραστείτε τα συνολικά δεδομένα μεταφόρτωσης / λήψης μαζί με την αναλογία εγγραφών',
- 'profile-privacy-torrent-seed' => 'Μοιραστείτε το συνολικό χρόνο σποράς και το μέσο όρο',
- 'profile-privacy-title' => 'Μοιραστείτε τις προσωπικές πληροφορίες τίτλου',
- 'profile-privacy-about' => 'Μοιραστείτε τις προσωπικές πληροφορίες σχετικά με μένα',
- 'profile-privacy-bon-extra' => 'Μοιραστείτε τα στατιστικά στοιχεία πόντων',
- 'profile-privacy-comment-extra' => 'Μοιραστείτε τα στατιστικά σχόλια σας',
- 'profile-privacy-forum-extra' => 'Μοιραστείτε τα στατιστικά του φόρουμ',
- 'profile-privacy-request-extra' => 'Μοιραστείτε τα στατιστικά στοιχεία αιτημάτων',
- 'profile-privacy-torrent-extra' => 'Μοιραστείτε τα στατιστικά torrent σας',
- 'profile-privacy-badge' => 'Μοιραστείτε τις κερδισμένες κονκάρδες σας',
- 'profile-privacy-achievement' => 'Μοιραστείτε τα πρόσφατα σας επιτεύγματα',
- 'profile-privacy-follower' => 'Μοιραστείτε τους πρόσφατους οπαδούς σας',
- 'profile-privacy-warning' => 'Μοιραστείτε τις προειδοποιήσεις H & R',
- 'profile-privacy-help' => 'Ελέγξτε ποια στατιστικά στοιχεία και στοιχεία εμφανίζονται στο προφίλ σας. Αυτές οι ρυθμίσεις παραβλέπονται αν δεν επιτρέπετε σε καμία ομάδα να αποκτήσει πρόσβαση στο προφίλ σας ή εάν μεταβείτε σε Ιδιωτικό',
- 'public-info' => 'Δημόσιες πληροφορίες',
- 'reason-ban' => 'Λόγος για απαγόρευση',
- 'reason-unban' => 'Λόγος για αναίρεση απαγόρευσης',
- 'recent-achievements' => 'Πρόσφατα Επιτεύγματα',
- 'recent-followers' => 'Πρόσφατα άτομα που ακολουθούν',
- 'registration-date' => 'Ημερομηνία Εγγραφής',
- 'removed' => 'Αφαιρέθηκε',
- 'report' => 'ΑΝΑΦΟΡΑ',
- 'request-help' => 'Ελέγξτε την κοινή χρήση συγκεκριμένων στατιστικών στοιχείων και πληροφοριών σχετικά με τις αιτήσεις με ομάδες που επιτρέπεται να έχουν πρόσβαση στο προφίλ σας. Αυτές οι ρυθμίσεις παραβλέπονται αν δεν επιτρέπετε σε καμία ομάδα να έχει πρόσβαση στα απαιτούμενα σχετικά στατιστικά στοιχεία και πληροφορίες ή εάν μεταβείτε ιδιωτικά',
- 'request' => 'Αίτηση',
- 'requested' => 'Εχω ζητήσει',
- 'requests' => 'Αιτήσεις',
- 'request-comments' => 'Αίτηση Σχολίων',
- 'request-notification' => 'Ρυθμίσεις ειδοποίησης Αίτησης',
- 'request-notification-bounty' => 'Λάβετε μια ειδοποίηση όταν ένα torrent που ζητάτε παίρνει μια νέα αμοιβή',
- 'request-notification-comment' => 'Λάβετε μια ειδοποίηση όταν ένα torrent που ζητήθηκε παίρνει ένα νέο σχόλιο',
- 'request-notification-fill' => 'Λάβετε μια ειδοποίηση όταν γεμίσει ένας απαιτούμενος χείμαρρος',
- 'request-notification-fill-approve' => 'Λάβετε μια ειδοποίηση όταν εγκριθεί ένα φορτίο torrent που ζητήσατε',
- 'request-notification-fill-reject' => 'Λάβετε μια ειδοποίηση όταν απορρίπτεται μια αίτηση συμπλήρωσης torrent',
- 'request-notification-claim' => 'Λήψη ειδοποίησης όταν ζητηθεί αξίωση για torrent',
- 'request-notification-unclaim' => 'Λάβετε μια ειδοποίηση όταν ζητηθεί ένας torrent που δεν έχει ζητηθεί',
- 'request-notification-help' => 'Ελέγχει ποιες ειδοποιήσεις αποστέλλονται σχετικά με τις δραστηριότητες αιτήσεων. Αυτές οι ρυθμίσεις παραβλέπονται αν δεν επιτρέπετε σε ομάδες να αποστέλλουν ειδοποιήσεις σχετικά με δραστηριότητες αιτήσεων ή εάν απενεργοποιείτε τις ειδοποιήσεις',
- 'request-privacy' => 'Ρυθμίσεις αιτήματος',
- 'request-privacy-requested' => 'Να επιτρέπεται στους χρήστες να βλέπουν μια λίστα με αιτήματα που έχετε κάνει',
- 'reset-api-token' => 'Επαναφορά API Token',
- 'reset-api-help' => 'Θα πρέπει να ενημερώσετε τις εφαρμογες που χρησιμοποιουν το API token, μετά την επαναφορά',
- 'reset-passkey' => 'Επαναφορά πλήκτρου Pass (PID)',
- 'reset-passkey-help' => 'Θα χρειαστεί να ξαναβάλετε / επανεγκαταστήσετε όλα τα ενεργά torrents σας, αφού επαναφέρετε το PID',
- 'reset-rss' => 'Επαναφορά κλειδιού RSS (RID)',
- 'reset-rss-help' => 'Θα πρέπει να επαναφορτώσετε όλες τις ενεργές ροές RSS, αφού επαναφέρετε το RID',
- 'resurrections' => 'Ανάσταση Torrent',
- 'restore' => 'Επαναφορά',
- 'satisfied-immune' => 'Ικανοποιημένο / Απρόσβλητο',
- 'search' => 'Γρήγορη αναζήτηση με όνομα χρήστη',
- 'security' => 'Ασφάλεια',
- 'security-settings' => 'Ρυθμίσεις ασφαλείας',
- 'seedboxes' => 'Seedboxes',
- 'seeding-size' => 'Μέγεθος Διαμοιρασμού',
- 'seeds' => 'Διαμοιρασμοί',
- 'send-invite' => 'Στείλε πρόσκληση',
- 'sender' => 'Αποστολέας',
- 'settings' => 'Ρυθμίσεις',
- 'show-passkey' => 'Εμφάνιση PID (PASSKEY)',
- 'soft-deleted-warnings' => 'Διαγραμμενες Προειδοποιήσεις',
- 'staff-noted' => 'Προσωπικό Λογαριασμός',
- 'statistics' => 'Στατιστικά',
- 'subscription-notification' => 'Ρυθμίσεις ειδοποίησης συνδρομής',
- 'subscription-notification-forum' => 'Λάβετε ειδοποίηση όταν ένα εγγεγραμμένο φόρουμ αποκτά ένα νέο θέμα',
- 'subscription-notification-topic' => 'Λάβετε μια ειδοποίηση όταν ένα εγγεγραμμένο θέμα λάβει μια νέα ανάρτηση',
- 'subscription-notification-help' => 'Ελέγξτε τις ειδοποιήσεις που αποστέλλονται σχετικά με τις συνδρομές σας. Αυτές οι ρυθμίσεις παραβλέπονται αν δεν επιτρέπετε σε ομάδες να αποστέλλουν ειδοποιήσεις σχετικά με τις συνδρομές σας ή εάν απενεργοποιείτε τις ειδοποιήσεις',
- 'thanks-given' => 'Έχω Ευχαριστήσει',
- 'thanks-received' => 'Με ευχαρίστησαν',
- 'tips-given' => 'Φιλοδώρισα',
- 'tips-received' => 'Με Φιλοδώρησαν',
- 'title' => 'Τίτλος',
- 'top-bankers' => 'Top Τράπεζιτες',
- 'top-downloaders-data' => 'Κορυφαίοι λήπτες (δεδομένα)',
- 'top-leechers' => 'Κορυφαίοι λήπτες ',
- 'top-leechers-count' => 'Κορυφαίοι λήπτες (Count)',
- 'top-seeders' => 'Κορυφαίοι διαμοιραστές',
- 'top-seeders-count' => 'Κορυφαίοι διαμοιραστές (Count)',
- 'top-seeding-size' => 'Κορυφαίος διαμοιρασμός (μέγεθος)',
- 'top-seedtime' => 'Κορυφαία με χρόνο διαμοιρασμου',
- 'top-uploaders-data' => 'Κορυφαίοι διαμοιραστές (δεδομένα)',
- 'top-uploaders-count' => 'Κορυφαίοι διαμοιραστές (Count)',
- 'topics' => 'Θέματα',
- 'topics-started' => 'Έχω ξεκινήσει Θέματα φόρουμ',
- 'torrent-comments' => 'Εχω κάνει Σχόλια Torrent',
- 'torrent-help' => 'Ελέγξτε την κοινή χρήση συγκεκριμένων στατιστικών στοιχείων και πληροφοριών σχετικά με το torrent με ομάδες που επιτρέπεται να έχουν πρόσβαση στο προφίλ σας. Αυτές οι ρυθμίσεις παραβλέπονται αν δεν επιτρέπετε στις ομάδες να έχουν πρόσβαση στα σχετικά με το torrent στατιστικά στοιχεία και πληροφορίες ή εάν μεταβείτε σε Ιδιωτικό',
- 'torrent-notification' => 'Ρυθμίσεις ειδοποίησης Torrent',
- 'torrent-notification-comment' => 'Λήψη ειδοποίησης όταν ένα φορτωμένο torrent λάβει ένα νέο σχόλιο',
- 'torrent-notification-thank' => 'Λάβετε μια ειδοποίηση όταν ένα μεταφορτωμένο torrent παίρνει ενα νέο ευχαριστώ',
- 'torrent-notification-tip' => 'Λάβετε μια ειδοποίηση όταν ένα μεταφορτωμένο torrent παίρνει ενα νέο φιλοδώρημα',
- 'torrent-notification-help' => 'Ελέγξτε τις ειδοποιήσεις που αποστέλλονται σχετικά με τις δραστηριότητες torrent. Αυτές οι ρυθμίσεις παραβλέπονται αν δεν επιτρέπετε σε ομάδες να αποστέλλουν ειδοποιήσεις σχετικά με δραστηριότητες torrent ή εάν απενεργοποιείτε τις ειδοποιήσεις',
- 'torrent-privacy' => 'Ρυθμίσεις Ιδιωτικότητας Torrent',
- 'torrent-privacy-download' => 'Να επιτρέπεται στους χρήστες να βλέπουν μια λίστα με torrents που έχετε κατεβάσει',
- 'torrent-privacy-upload' => 'Να επιτρέπεται στους χρήστες να βλέπουν μια λίστα με torrents που έχετε μεταφορτώσει',
- 'torrent-privacy-peer' => 'Επιτρέψτε στους χρήστες να σας δουν στον πίνακα peers',
- 'torrents' => 'Torrents',
- 'torrents-history' => 'Ιστορικό του Torrent',
- 'total-download' => 'Συνολική λήψη',
- 'total-downloads' => 'Συνολικές λήψεις',
- 'total-leeching' => 'Σύνολο Leeching',
- 'total-seeding' => 'Σύνολο διαμοιρασμού',
- 'total-seedtime' => 'Συνολικός χρόνος διαμοιρασμού',
- 'total-upload' => 'Συνολική μεταφόρτωση',
- 'total-uploads' => 'Σύνολο μεταφορτώσεων',
- 'unban' => 'Απενεργοποίηση χρήστη',
- 'unfollow' => 'Μην Ακολουθείς',
- 'unlocked' => 'Έχει Ξεκλειδώσει',
- 'unlocked-achievements' => 'Ξεκλειδωμένα επιτεύγματα',
- 'unsatisfieds' => 'Μη βεβαιωμένοι',
- 'upload-bon' => 'Μεταφόρτωση προστέθηκε από το κατάστημα πόντων',
- 'upload-recorded' => 'Εγγραφή Ανέβασμα',
- 'upload-true' => 'True Upload',
- 'uploads' => 'Έχω ανεβάσει',
- 'uploads-table' => 'Πίνακας μεταφορτώσεων',
- 'user' => 'User',
- 'user-id' => 'Ταυτότητα χρήστη',
- 'username-seedbox' => 'Όνομα χρήστη Seedbox',
- 'visible-to-achievement' => 'Επιτεύγματα ορατά στο',
- 'visible-to-achievement-help' => 'Τα επιτεύγματά σας θα είναι ορατά μόνο για το προσωπικό και τις ακόλουθες ομάδες. Αυτές οι ρυθμίσεις παραβλέπονται εάν μεταβείτε στο Ιδιωτικό',
- 'visible-to-follower' => 'Οι ακόλουθοι που είναι ορατοί στο',
- 'visible-to-follower-help' => 'Οι οπαδοί σας θα είναι ορατοί μόνο για το προσωπικό και τις ακόλουθες ομάδες. Αυτές οι ρυθμίσεις παραβλέπονται εάν μεταβείτε στο Ιδιωτικό',
- 'visible-to-forum' => 'Πληροφορίες Φόρουμ Ορατό σε',
- 'visible-to-forum-help' => 'Οι πληροφορίες του φόρουμ σας θα είναι ορατές μόνο από το προσωπικό και τις ακόλουθες ομάδες. Αυτές οι ρυθμίσεις παραβλέπονται εάν μεταβείτε στο Ιδιωτικό',
- 'visible-to-other' => 'Άλλα ορατά σε',
- 'visible-to-other-help' => 'Άλλες πληροφορίες σχετικά με το λογαριασμό σας θα είναι ορατές μόνο από το προσωπικό και τις ακόλουθες ομάδες. Αυτές οι ρυθμίσεις παραβλέπονται εάν μεταβείτε σε ιδιωτικό ή αν πάτε κρυφό',
- 'visible-to-profile' => 'Το προφίλ είναι ορατό στο',
- 'visible-to-profile-help' => 'Το προφίλ σας θα είναι ορατό μόνο για το προσωπικό και τις ακόλουθες ομάδες. Αυτές οι ρυθμίσεις παραβλέπονται εάν μεταβείτε στο Ιδιωτικό',
- 'visible-to-request' => 'Αίτηση πληροφοριών Visible To',
- 'visible-to-request-help' => 'Οι πληροφορίες αίτησής σας θα είναι ορατές μόνο από το προσωπικό και τις ακόλουθες ομάδες. Αυτές οι ρυθμίσεις παραβλέπονται εάν μεταβείτε στο Ιδιωτικό',
- 'visible-to-torrent' => 'Torrent Πληροφορίες Ορατό σε',
- 'visible-to-torrent-help' => 'Οι πληροφορίες για το χείμαρρο θα είναι ορατές μόνο για το προσωπικό και τις ακόλουθες ομάδες. Αυτές οι ρυθμίσεις παραβλέπονται εάν μεταβείτε σε ιδιωτικό ή αν πάτε κρυφό',
- 'warned-by' => 'Προειδοποιήθηκε από',
- 'warned-on' => 'Προειδοποίηση για',
- 'warning' => 'Προειδοποίηση',
- 'warning-log' => 'Εγγραφή προειδοποίησης',
- 'wishlist' => 'Λίστα επιθυμιών',
+ 'followers' => 'Ποιοί με ακολουθουν',
+ 'following-notification' => 'Ρυθμίσεις ειδοποίησης Ακολουθούμενων χρηστων',
+ 'following-notification-upload' => 'Λάβετε μια ειδοποίηση όταν ένας επόμενος χρήστης μεταφορτώσει ένα torrent',
+ 'following-notification-help' => 'Ελέγξτε ποιες ειδοποιήσεις αποστέλλονται σχετικά με τις ενέργειες που ακολουθούν οι χρήστες του ιστότοπου Αυτές οι ρυθμίσεις παραβλέπονται αν δεν επιτρέπετε σε ομάδες να αποστέλλουν ειδοποιήσεις σχετικά με τους χρήστες που ακολουθούν ή εάν απενεργοποιείτε τις ειδοποιήσεις',
+ 'formats-are-supported' => ':formats που υποστηρίζονται',
+ 'forum-notification' => 'Ρυθμίσεις ειδοποίησης φόρουμ',
+ 'forum-notification-topic' => 'Λάβετε μια ειδοποίηση όταν ένα θέμα που ξεκινήσατε λαμβάνει μια νέα ανάρτηση',
+ 'forum-notification-help' => 'Ελέγχει ποιες ειδοποιήσεις αποστέλλονται σχετικά με τις δραστηριότητες φόρουμ. Αυτές οι ρυθμίσεις παραβλέπονται αν δεν επιτρέπετε σε ομάδες να αποστέλλουν ειδοποιήσεις σχετικά με δραστηριότητες φόρουμ ή εάν απενεργοποιείτε τις ειδοποιήσεις',
+ 'forum-privacy' => 'Ρυθμίσεις φόρουμ',
+ 'forum-privacy-post' => 'Να επιτρέπεται στους χρήστες να βλέπουν μια λίστα με αναρτήσεις φόρουμ που έχετε δημοσιεύσει',
+ 'forum-privacy-topic' => 'Να επιτρέπεται στους χρήστες να βλέπουν μια λίστα θεμάτων φόρουμ που έχετε ξεκινήσει',
+ 'forum-help' => 'Ελέγξτε την κοινή χρήση συγκεκριμένων στατιστικών και πληροφοριών σχετικά με το φόρουμ με ομάδες στις οποίες επιτρέπεται η πρόσβαση στο προφίλ σας. Αυτές οι ρυθμίσεις παραβλέπονται αν δεν επιτρέπετε σε καμία ομάδα να έχει πρόσβαση στα στατιστικά στοιχεία και τις πληροφορίες που σχετίζονται με το φόρουμ σας ή εάν έχετε μεταβεί ιδιωτικά',
+ 'forum-signature' => 'Υπογραφή Φόρουμ',
+ 'forums' => 'Φόρουμ',
+ 'general' => 'Γενικά',
+ 'general-settings' => 'Γενικές Ρυθμίσεις',
+ 'gift-given' => 'Δώρισμένα',
+ 'gift-received' => 'Δώρα που λήφθησαν',
+ 'go-public' => 'Δημόσιο Προφίλ',
+ 'go-private' => 'Ιδιωτικό Προφίλ',
+ 'history' => 'Ιστορίκο',
+ 'history-table' => 'Πίνακας ιστορικού',
+ 'hit-n-runs' => 'Hit και Run',
+ 'hit-n-runs-count' => 'Αριθμός Hit και Run (Σύνολο)',
+ 'hit-n-runs-history' => 'Ιστορικό Hit και Run',
+ 'id-permissions' => 'ID & Δικαιώματα',
+ 'image' => 'Εικόνα',
+ 'important' => 'Σπουδαίο',
+ 'important-info' => 'Σημαντικές πληροφορίες',
+ 'information' => 'Πληροφορίες',
+ 'invited-by' => 'Προσκλήθηκε από',
+ 'invite-friend' => 'Προσκαλέστε ένα φίλο σας (Email + Μήνυμα που απαιτείται)',
+ 'invite-tree' => 'Δέντρο Προσκήσεων',
+ 'invites' => 'Προσκλήσεις',
+ 'invites-banned' => 'Σφάλμα: Τα δικαιώματα πρόσκλησής σας έχουν απενεργοποιηθεί',
+ 'invites-banned-desc' => 'Εάν αισθάνεστε ότι υπάρχει λάθος, επικοινωνήστε με το προσωπικό!',
+ 'invites-count' => 'Έχετε :count Προσκλήσεις υπόλοιπο',
+ 'invites-disabled' => 'Προσοχή: Οι προσκλήσεις είναι απενεργοποιημένες λόγω ανοικτής εγγραφής!',
+ 'invites-disabled-desc' => 'Παρακαλώ Ελέγξτε ξανά σύντομα!',
+ 'invites-rules' => '- Προσκαλέστε μόνο άτομα που γνωρίζετε και εμπιστεύεστε.
- Θα είστε προσωπικά υπεύθυνοι για αυτούς που προσκαλείτε.
- Μην προσκαλέσετε τον εαυτό σας, ελέγχουμε κάθε προσκεκλημένο χρήστη.
- Μην κάνετε εμπόριο ή πωλήσεις προσκλήσεων.
- Αν κάποιος που προσκάλεσε έχει συλληφθεί με εξαπάτηση, λογαριασμό διαπραγμάτευσης ή προσφορές / συναλλαγές, θα ειδοποιηθείτε.
',
+ 'invites-send' => 'Αποστολή πρόσκλησης',
+ 'judge' => 'Κριτής',
+ 'last-login' => 'Τελευταία είσοδος',
+ 'locked' => 'Κλειδωμένο',
+ 'locked-achievements' => 'Κλειδωμένα επιτεύγματα',
+ 'member-since' => 'Μέλος από',
+ 'members-desc' => 'Κατάλογος εγγεγραμμένων χρηστών του :title με όλες τις ομάδες. Βρείτε έναν χρήστη τώρα.',
+ 'mention-notification' => '@Mention Ρυθμίσεις ειδοποίησης',
+ 'mention-notification-article-comment' => 'Λάβετε μια ειδοποίηση όταν είστε @mentioned αναφερθέντα σε ένα σχόλιο άρθρου',
+ 'mention-notification-torrent-comment' => 'Λάβετε μια ειδοποίηση όταν είστε @mentioned αναφέρεται σε ένα σχόλιο torrent',
+ 'mention-notification-request-comment' => 'Λάβετε μια ειδοποίηση όταν είστε @mentioned αναφερθέντα σε ένα σχόλιο αίτησης',
+ 'mention-notification-forum-post' => 'Λάβετε μια ειδοποίηση όταν είστε @mentioned αναφερθέντα σε μια ανάρτηση σε φόρουμ',
+ 'mention-notification-help' => 'Ελέγξτε τις ειδοποιήσεις που αποστέλλονται όταν ένας χρήστης @mentions σας ειδοποιεί. Αυτές οι ρυθμίσεις παραβλέπονται αν δεν επιτρέπετε σε καμία ομάδα να στείλει ειδοποιήσεις αν ένας χρήστης @mentions σας ειδοποιεί ή εάν απενεργοποιείτε τις ειδοποιήσεις',
+ 'moderated-by' => 'Συντονίστηκε από :mod στις',
+ 'my-bonus-points' => 'Τα πονταλάκια μου',
+ 'my-bookmarks' => 'Οι σελιδοδείκτες μου',
+ 'my-fl-tokens' => 'Οι μάρκες FreeLeech μου',
+ 'my-general-settings' => 'Οι Γενικές Ρυθμίσεις μου',
+ 'my-notification' => 'Η ειδοποιηση μου',
+ 'my-notification-settings' => 'Ρυθμίσεις ειδοποίησης μου',
+ 'my-privacy' => 'Το απόρρητο μου',
+ 'my-privacy-settings' => 'Ρυθμίσεις απορρήτου μου',
+ 'my-profile' => 'Το ΠΡΟΦΙΛ μου',
+ 'my-requested' => 'Τα αίτημάτά μου',
+ 'my-security' => 'Η Ασφάλεια μου',
+ 'my-security-settings' => 'Ρυθμίσεις ασφαλείας μου',
+ 'my-seedboxes' => 'Τα Seedbox μου',
+ 'my-settings' => 'Οι ρυθμίσεις μου',
+ 'my-uploads' => 'Έχω ανεβάσει',
+ 'my-wishlist' => 'Η λίστα επιθυμιών μου',
+ 'no-ban' => 'Δεν υπάρχουνε απαγορεύσεις για αυτό το χρήστη!',
+ 'no-logs' => 'Δεν υπάρχουν log πρόσκλησης στη βάση δεδομένων για αυτόν τον χρήστη!',
+ 'no-seedboxes' => 'Δεν υπάρχουν Seedboxes 😔',
+ 'no-soft-warning' => 'Δεν υπάρχουν διαγραμμένες προειδοποιήσεις γι αυτο το χρήστη!',
+ 'no-warning' => 'Δεν υπάρχουν προειδοποιήσεις γι αυτο το χρήστη!!',
+ 'not-authorized' => 'Δεν έχετε εξουσιοδότηση για να δείτε αυτή τη σελίδα. Αυτό το μέλος προτιμά να είναι κρυμμένο σαν τον άρκαλο!',
+ 'not-satisfied-not-immune' => 'Μη Ικανοποιημένο / Οχι απρόσβλητο',
+ 'note' => 'Σημείωση',
+ 'notification' => 'Ειδοποίηση',
+ 'notification-settings' => 'Ρυθμίσεις ειδοποιήσεων',
+ 'notification-from-account' => 'Λήψη ειδοποιήσεων λογαριασμού από το',
+ 'notification-from-account-help' => 'Θα λάβετε ειδοποιήσεις λογαριασμού μόνο από το σύστημα, το προσωπικό και τις ακόλουθες ομάδες. Αυτές οι ρυθμίσεις παραβλέπονται αν απενεργοποιήσετε τις ειδοποιήσεις',
+ 'notification-from-bon' => 'Λήψη ειδοποιήσεων πόντων από το',
+ 'notification-from-bon-help' => 'Θα λάβετε ειδοποιήσεις για πόντους μόνο από το σύστημα, το προσωπικό και τις ακόλουθες ομάδες. Αυτές οι ρυθμίσεις παραβλέπονται αν απενεργοποιήσετε τις ειδοποιήσεις',
+ 'notification-from-following' => 'Λήψη Ειδοποιήσεων Επόμενου Χρήστη από το',
+ 'notification-from-following-help' => 'Θα λάβετε ειδοποιήσεις από τους ακόλουθους χρήστες μόνο από τις ακόλουθες ομάδες. Αυτές οι ρυθμίσεις παραβλέπονται αν απενεργοποιήσετε τις ειδοποιήσεις',
+ 'notification-from-forum' => 'Λήψη ειδοποιήσεων φόρουμ από το',
+ 'notification-from-forum-help' => 'Θα λαμβάνετε ειδοποιήσεις στο φόρουμ από το σύστημα, το προσωπικό και τις ακόλουθες ομάδες. Αυτές οι ρυθμίσεις παραβλέπονται αν απενεργοποιήσετε τις ειδοποιήσεις',
+ 'notification-from-subscription' => 'Λήψη ειδοποιήσεων εγγραφής από το',
+ 'notification-from-subscription-help' => 'Θα λαμβάνετε ειδοποιήσεις στο φόρουμ από το σύστημα, το προσωπικό και τις ακόλουθες ομάδες. Αυτές οι ρυθμίσεις παραβλέπονται αν απενεργοποιήσετε τις ειδοποιήσεις',
+ 'notification-from-torrent' => 'Λήψη ειδοποιήσεων Torrent από',
+ 'notification-from-torrent-help' => 'Θα λαμβάνετε ειδοποιήσεις torrent μόνο από το σύστημα, το προσωπικό και τις ακόλουθες ομάδες. Αυτές οι ρυθμίσεις παραβλέπονται αν απενεργοποιήσετε τις ειδοποιήσεις',
+ 'notification-from-mention' => 'Λήψη ειδοποιήσεων @Mention από',
+ 'notification-from-mention-help' => 'Θα λάβετε ειδοποιήσεις @mention μόνο από το σύστημα, το προσωπικό και τις ακόλουθες ομάδες. Αυτές οι ρυθμίσεις παραβλέπονται αν απενεργοποιήσετε τις ειδοποιήσεις',
+ 'notification-from-request' => 'Λήψη Ειδοποιήσεων Αίτησης από το',
+ 'notification-from-request-help' => 'Θα λάβετε ειδοποιήσεις αιτήσεων μόνο από το σύστημα, το προσωπικό και τις ακόλουθες ομάδες. Αυτές οι ρυθμίσεις παραβλέπονται αν απενεργοποιήσετε τις ειδοποιήσεις',
+ 'notifications' => 'Ειδοποιήσεις',
+ 'offline' => 'Ο χρήστης είναι εκτός σύνδεσης!',
+ 'online' => 'Ο χρήστης είναι συνδεδεμένος!',
+ 'open-registration' => 'Από Ανοιχτές Εγγραφές',
+ 'options' => 'Επιλογές',
+ 'other-help' => 'Ελέγξτε την κοινή χρήση άλλων στατιστικών στοιχείων και πληροφοριών με τις ομάδες στις οποίες επιτρέπεται η πρόσβαση στο προφίλ σας. Αυτές οι ρυθμίσεις παραβλέπονται αν δεν επιτρέπετε σε καμία ομάδα να έχει πρόσβαση στα άλλα σας στατιστικά στοιχεία και πληροφορίες ή εάν μεταβείτε σε ιδιωτικό',
+ 'other-privacy' => 'Αλλες ρυθμίσεις ιδιωτικότητας',
+ 'other-privacy-online' => 'Επιτρέψτε στους χρήστες να σας δουν στο μπλοκ ηλεκτρονικών χρηστών',
+ 'passkey' => 'Passkey',
+ 'passkey-warning' => 'Το Passkey είναι σαν τον κωδικό πρόσβασής σας, πρέπει να το κρατάτε ασφαλές!',
+ 'pending-achievements' => 'Κλειδωμένα επιτεύγματα',
+ 'per-torrent' => 'Ανά Torrent',
+ 'posts' => 'Δημοσιεύσεις',
+ 'posts-posted' => 'Εχω κάνει Δημοσιεύσεις Forum',
+ 'privacy' => 'Ιδιωτικότητα',
+ 'privacy-settings' => 'Ρυθμίσεις απορρήτου',
+ 'private-info' => 'Ιδιωτικές πληροφορίες',
+ 'private-forum-profile' => 'Προσοχή: Αυτό το Θέμα και το Ιστορικό των Μελών έχει οριστεί σε ΙΔΙΩΤΙΚΟ!',
+ 'private-profile' => 'Προσοχή: Αυτό το προφίλ έχει οριστεί σε ΙΔΙΩΤΙΚΟ!',
+ 'profile' => 'Προφίλ',
+ 'profile-desc' => 'Χρήστης :user προφίλ χρήστη εγγεγραμμένο στο :title',
+ 'profile-privacy' => 'Ρυθμίσεις προφίλ',
+ 'profile-privacy-torrent-count' => 'Μοιραστείτε τον συνολικό αριθμό των λήψεων, των μεταφορτώσεων, των σπόρων και των ληπτών',
+ 'profile-privacy-torrent-ratio' => 'Μοιραστείτε τα συνολικά δεδομένα μεταφόρτωσης / λήψης μαζί με την αναλογία εγγραφών',
+ 'profile-privacy-torrent-seed' => 'Μοιραστείτε το συνολικό χρόνο σποράς και το μέσο όρο',
+ 'profile-privacy-title' => 'Μοιραστείτε τις προσωπικές πληροφορίες τίτλου',
+ 'profile-privacy-about' => 'Μοιραστείτε τις προσωπικές πληροφορίες σχετικά με μένα',
+ 'profile-privacy-bon-extra' => 'Μοιραστείτε τα στατιστικά στοιχεία πόντων',
+ 'profile-privacy-comment-extra' => 'Μοιραστείτε τα στατιστικά σχόλια σας',
+ 'profile-privacy-forum-extra' => 'Μοιραστείτε τα στατιστικά του φόρουμ',
+ 'profile-privacy-request-extra' => 'Μοιραστείτε τα στατιστικά στοιχεία αιτημάτων',
+ 'profile-privacy-torrent-extra' => 'Μοιραστείτε τα στατιστικά torrent σας',
+ 'profile-privacy-badge' => 'Μοιραστείτε τις κερδισμένες κονκάρδες σας',
+ 'profile-privacy-achievement' => 'Μοιραστείτε τα πρόσφατα σας επιτεύγματα',
+ 'profile-privacy-follower' => 'Μοιραστείτε τους πρόσφατους οπαδούς σας',
+ 'profile-privacy-warning' => 'Μοιραστείτε τις προειδοποιήσεις H & R',
+ 'profile-privacy-help' => 'Ελέγξτε ποια στατιστικά στοιχεία και στοιχεία εμφανίζονται στο προφίλ σας. Αυτές οι ρυθμίσεις παραβλέπονται αν δεν επιτρέπετε σε καμία ομάδα να αποκτήσει πρόσβαση στο προφίλ σας ή εάν μεταβείτε σε Ιδιωτικό',
+ 'public-info' => 'Δημόσιες πληροφορίες',
+ 'reason-ban' => 'Λόγος για απαγόρευση',
+ 'reason-unban' => 'Λόγος για αναίρεση απαγόρευσης',
+ 'recent-achievements' => 'Πρόσφατα Επιτεύγματα',
+ 'recent-followers' => 'Πρόσφατα άτομα που ακολουθούν',
+ 'registration-date' => 'Ημερομηνία Εγγραφής',
+ 'removed' => 'Αφαιρέθηκε',
+ 'report' => 'ΑΝΑΦΟΡΑ',
+ 'request-help' => 'Ελέγξτε την κοινή χρήση συγκεκριμένων στατιστικών στοιχείων και πληροφοριών σχετικά με τις αιτήσεις με ομάδες που επιτρέπεται να έχουν πρόσβαση στο προφίλ σας. Αυτές οι ρυθμίσεις παραβλέπονται αν δεν επιτρέπετε σε καμία ομάδα να έχει πρόσβαση στα απαιτούμενα σχετικά στατιστικά στοιχεία και πληροφορίες ή εάν μεταβείτε ιδιωτικά',
+ 'request' => 'Αίτηση',
+ 'requested' => 'Εχω ζητήσει',
+ 'requests' => 'Αιτήσεις',
+ 'request-comments' => 'Αίτηση Σχολίων',
+ 'request-notification' => 'Ρυθμίσεις ειδοποίησης Αίτησης',
+ 'request-notification-bounty' => 'Λάβετε μια ειδοποίηση όταν ένα torrent που ζητάτε παίρνει μια νέα αμοιβή',
+ 'request-notification-comment' => 'Λάβετε μια ειδοποίηση όταν ένα torrent που ζητήθηκε παίρνει ένα νέο σχόλιο',
+ 'request-notification-fill' => 'Λάβετε μια ειδοποίηση όταν γεμίσει ένας απαιτούμενος χείμαρρος',
+ 'request-notification-fill-approve' => 'Λάβετε μια ειδοποίηση όταν εγκριθεί ένα φορτίο torrent που ζητήσατε',
+ 'request-notification-fill-reject' => 'Λάβετε μια ειδοποίηση όταν απορρίπτεται μια αίτηση συμπλήρωσης torrent',
+ 'request-notification-claim' => 'Λήψη ειδοποίησης όταν ζητηθεί αξίωση για torrent',
+ 'request-notification-unclaim' => 'Λάβετε μια ειδοποίηση όταν ζητηθεί ένας torrent που δεν έχει ζητηθεί',
+ 'request-notification-help' => 'Ελέγχει ποιες ειδοποιήσεις αποστέλλονται σχετικά με τις δραστηριότητες αιτήσεων. Αυτές οι ρυθμίσεις παραβλέπονται αν δεν επιτρέπετε σε ομάδες να αποστέλλουν ειδοποιήσεις σχετικά με δραστηριότητες αιτήσεων ή εάν απενεργοποιείτε τις ειδοποιήσεις',
+ 'request-privacy' => 'Ρυθμίσεις αιτήματος',
+ 'request-privacy-requested' => 'Να επιτρέπεται στους χρήστες να βλέπουν μια λίστα με αιτήματα που έχετε κάνει',
+ 'reset-api-token' => 'Επαναφορά API Token',
+ 'reset-api-help' => 'Θα πρέπει να ενημερώσετε τις εφαρμογες που χρησιμοποιουν το API token, μετά την επαναφορά',
+ 'reset-passkey' => 'Επαναφορά πλήκτρου Pass (PID)',
+ 'reset-passkey-help' => 'Θα χρειαστεί να ξαναβάλετε / επανεγκαταστήσετε όλα τα ενεργά torrents σας, αφού επαναφέρετε το PID',
+ 'reset-rss' => 'Επαναφορά κλειδιού RSS (RID)',
+ 'reset-rss-help' => 'Θα πρέπει να επαναφορτώσετε όλες τις ενεργές ροές RSS, αφού επαναφέρετε το RID',
+ 'resurrections' => 'Ανάσταση Torrent',
+ 'restore' => 'Επαναφορά',
+ 'satisfied-immune' => 'Ικανοποιημένο / Απρόσβλητο',
+ 'search' => 'Γρήγορη αναζήτηση με όνομα χρήστη',
+ 'security' => 'Ασφάλεια',
+ 'security-settings' => 'Ρυθμίσεις ασφαλείας',
+ 'seedboxes' => 'Seedboxes',
+ 'seeding-size' => 'Μέγεθος Διαμοιρασμού',
+ 'seeds' => 'Διαμοιρασμοί',
+ 'send-invite' => 'Στείλε πρόσκληση',
+ 'sender' => 'Αποστολέας',
+ 'settings' => 'Ρυθμίσεις',
+ 'show-passkey' => 'Εμφάνιση PID (PASSKEY)',
+ 'soft-deleted-warnings' => 'Διαγραμμενες Προειδοποιήσεις',
+ 'staff-noted' => 'Προσωπικό Λογαριασμός',
+ 'statistics' => 'Στατιστικά',
+ 'subscription-notification' => 'Ρυθμίσεις ειδοποίησης συνδρομής',
+ 'subscription-notification-forum' => 'Λάβετε ειδοποίηση όταν ένα εγγεγραμμένο φόρουμ αποκτά ένα νέο θέμα',
+ 'subscription-notification-topic' => 'Λάβετε μια ειδοποίηση όταν ένα εγγεγραμμένο θέμα λάβει μια νέα ανάρτηση',
+ 'subscription-notification-help' => 'Ελέγξτε τις ειδοποιήσεις που αποστέλλονται σχετικά με τις συνδρομές σας. Αυτές οι ρυθμίσεις παραβλέπονται αν δεν επιτρέπετε σε ομάδες να αποστέλλουν ειδοποιήσεις σχετικά με τις συνδρομές σας ή εάν απενεργοποιείτε τις ειδοποιήσεις',
+ 'thanks-given' => 'Έχω Ευχαριστήσει',
+ 'thanks-received' => 'Με ευχαρίστησαν',
+ 'tips-given' => 'Φιλοδώρισα',
+ 'tips-received' => 'Με Φιλοδώρησαν',
+ 'title' => 'Τίτλος',
+ 'top-bankers' => 'Top Τράπεζιτες',
+ 'top-downloaders-data' => 'Κορυφαίοι λήπτες (δεδομένα)',
+ 'top-leechers' => 'Κορυφαίοι λήπτες ',
+ 'top-leechers-count' => 'Κορυφαίοι λήπτες (Count)',
+ 'top-seeders' => 'Κορυφαίοι διαμοιραστές',
+ 'top-seeders-count' => 'Κορυφαίοι διαμοιραστές (Count)',
+ 'top-seeding-size' => 'Κορυφαίος διαμοιρασμός (μέγεθος)',
+ 'top-seedtime' => 'Κορυφαία με χρόνο διαμοιρασμου',
+ 'top-uploaders-data' => 'Κορυφαίοι διαμοιραστές (δεδομένα)',
+ 'top-uploaders-count' => 'Κορυφαίοι διαμοιραστές (Count)',
+ 'topics' => 'Θέματα',
+ 'topics-started' => 'Έχω ξεκινήσει Θέματα φόρουμ',
+ 'torrent-comments' => 'Εχω κάνει Σχόλια Torrent',
+ 'torrent-help' => 'Ελέγξτε την κοινή χρήση συγκεκριμένων στατιστικών στοιχείων και πληροφοριών σχετικά με το torrent με ομάδες που επιτρέπεται να έχουν πρόσβαση στο προφίλ σας. Αυτές οι ρυθμίσεις παραβλέπονται αν δεν επιτρέπετε στις ομάδες να έχουν πρόσβαση στα σχετικά με το torrent στατιστικά στοιχεία και πληροφορίες ή εάν μεταβείτε σε Ιδιωτικό',
+ 'torrent-notification' => 'Ρυθμίσεις ειδοποίησης Torrent',
+ 'torrent-notification-comment' => 'Λήψη ειδοποίησης όταν ένα φορτωμένο torrent λάβει ένα νέο σχόλιο',
+ 'torrent-notification-thank' => 'Λάβετε μια ειδοποίηση όταν ένα μεταφορτωμένο torrent παίρνει ενα νέο ευχαριστώ',
+ 'torrent-notification-tip' => 'Λάβετε μια ειδοποίηση όταν ένα μεταφορτωμένο torrent παίρνει ενα νέο φιλοδώρημα',
+ 'torrent-notification-help' => 'Ελέγξτε τις ειδοποιήσεις που αποστέλλονται σχετικά με τις δραστηριότητες torrent. Αυτές οι ρυθμίσεις παραβλέπονται αν δεν επιτρέπετε σε ομάδες να αποστέλλουν ειδοποιήσεις σχετικά με δραστηριότητες torrent ή εάν απενεργοποιείτε τις ειδοποιήσεις',
+ 'torrent-privacy' => 'Ρυθμίσεις Ιδιωτικότητας Torrent',
+ 'torrent-privacy-download' => 'Να επιτρέπεται στους χρήστες να βλέπουν μια λίστα με torrents που έχετε κατεβάσει',
+ 'torrent-privacy-upload' => 'Να επιτρέπεται στους χρήστες να βλέπουν μια λίστα με torrents που έχετε μεταφορτώσει',
+ 'torrent-privacy-peer' => 'Επιτρέψτε στους χρήστες να σας δουν στον πίνακα peers',
+ 'torrents' => 'Torrents',
+ 'torrents-history' => 'Ιστορικό του Torrent',
+ 'total-download' => 'Συνολική λήψη',
+ 'total-downloads' => 'Συνολικές λήψεις',
+ 'total-leeching' => 'Σύνολο Leeching',
+ 'total-seeding' => 'Σύνολο διαμοιρασμού',
+ 'total-seedtime' => 'Συνολικός χρόνος διαμοιρασμού',
+ 'total-upload' => 'Συνολική μεταφόρτωση',
+ 'total-uploads' => 'Σύνολο μεταφορτώσεων',
+ 'unban' => 'Απενεργοποίηση χρήστη',
+ 'unfollow' => 'Μην Ακολουθείς',
+ 'unlocked' => 'Έχει Ξεκλειδώσει',
+ 'unlocked-achievements' => 'Ξεκλειδωμένα επιτεύγματα',
+ 'unsatisfieds' => 'Μη βεβαιωμένοι',
+ 'upload-bon' => 'Μεταφόρτωση προστέθηκε από το κατάστημα πόντων',
+ 'upload-recorded' => 'Εγγραφή Ανέβασμα',
+ 'upload-true' => 'True Upload',
+ 'uploads' => 'Έχω ανεβάσει',
+ 'uploads-table' => 'Πίνακας μεταφορτώσεων',
+ 'user' => 'User',
+ 'user-id' => 'Ταυτότητα χρήστη',
+ 'username-seedbox' => 'Όνομα χρήστη Seedbox',
+ 'visible-to-achievement' => 'Επιτεύγματα ορατά στο',
+ 'visible-to-achievement-help' => 'Τα επιτεύγματά σας θα είναι ορατά μόνο για το προσωπικό και τις ακόλουθες ομάδες. Αυτές οι ρυθμίσεις παραβλέπονται εάν μεταβείτε στο Ιδιωτικό',
+ 'visible-to-follower' => 'Οι ακόλουθοι που είναι ορατοί στο',
+ 'visible-to-follower-help' => 'Οι οπαδοί σας θα είναι ορατοί μόνο για το προσωπικό και τις ακόλουθες ομάδες. Αυτές οι ρυθμίσεις παραβλέπονται εάν μεταβείτε στο Ιδιωτικό',
+ 'visible-to-forum' => 'Πληροφορίες Φόρουμ Ορατό σε',
+ 'visible-to-forum-help' => 'Οι πληροφορίες του φόρουμ σας θα είναι ορατές μόνο από το προσωπικό και τις ακόλουθες ομάδες. Αυτές οι ρυθμίσεις παραβλέπονται εάν μεταβείτε στο Ιδιωτικό',
+ 'visible-to-other' => 'Άλλα ορατά σε',
+ 'visible-to-other-help' => 'Άλλες πληροφορίες σχετικά με το λογαριασμό σας θα είναι ορατές μόνο από το προσωπικό και τις ακόλουθες ομάδες. Αυτές οι ρυθμίσεις παραβλέπονται εάν μεταβείτε σε ιδιωτικό ή αν πάτε κρυφό',
+ 'visible-to-profile' => 'Το προφίλ είναι ορατό στο',
+ 'visible-to-profile-help' => 'Το προφίλ σας θα είναι ορατό μόνο για το προσωπικό και τις ακόλουθες ομάδες. Αυτές οι ρυθμίσεις παραβλέπονται εάν μεταβείτε στο Ιδιωτικό',
+ 'visible-to-request' => 'Αίτηση πληροφοριών Visible To',
+ 'visible-to-request-help' => 'Οι πληροφορίες αίτησής σας θα είναι ορατές μόνο από το προσωπικό και τις ακόλουθες ομάδες. Αυτές οι ρυθμίσεις παραβλέπονται εάν μεταβείτε στο Ιδιωτικό',
+ 'visible-to-torrent' => 'Torrent Πληροφορίες Ορατό σε',
+ 'visible-to-torrent-help' => 'Οι πληροφορίες για το χείμαρρο θα είναι ορατές μόνο για το προσωπικό και τις ακόλουθες ομάδες. Αυτές οι ρυθμίσεις παραβλέπονται εάν μεταβείτε σε ιδιωτικό ή αν πάτε κρυφό',
+ 'warned-by' => 'Προειδοποιήθηκε από',
+ 'warned-on' => 'Προειδοποίηση για',
+ 'warning' => 'Προειδοποίηση',
+ 'warning-log' => 'Εγγραφή προειδοποίησης',
+ 'wishlist' => 'Λίστα επιθυμιών',
];
diff --git a/lang/el/validation.php b/lang/el/validation.php
index 19ddf4e74..76ce9db22 100644
--- a/lang/el/validation.php
+++ b/lang/el/validation.php
@@ -23,108 +23,108 @@ return [
|
*/
- 'accepted' => 'Το πεδίο :attribute πρέπει να γίνει αποδεκτό.',
- 'active_url' => 'Το πεδίο :attribute δεν είναι αποδεκτή διεύθυνση URL.',
- 'after' => 'Το πεδίο :attribute πρέπει να είναι μία ημερομηνία μετά από :date.',
- 'after_or_equal' => 'Το πεδίο :attribute πρέπει να είναι μία ημερομηνία ίδια ή μετά από :date.',
- 'alpha' => 'Το πεδίο :attribute μπορεί να περιέχει μόνο γράμματα.',
- 'alpha_dash' => 'Το πεδίο :attribute μπορεί να περιέχει μόνο γράμματα, αριθμούς, και παύλες.',
- 'alpha_num' => 'Το πεδίο :attribute μπορεί να περιέχει μόνο γράμματα και αριθμούς.',
- 'array' => 'Το πεδίο :attribute πρέπει να είναι ένας πίνακας.',
- 'before' => 'Το πεδίο :attribute πρέπει να είναι μία ημερομηνία πριν από :date.',
- 'before_or_equal' => 'Το πεδίο :attribute πρέπει να είναι μία ημερομηνία ίδια ή πριν από :date.',
- 'between' => [
+ 'accepted' => 'Το πεδίο :attribute πρέπει να γίνει αποδεκτό.',
+ 'active_url' => 'Το πεδίο :attribute δεν είναι αποδεκτή διεύθυνση URL.',
+ 'after' => 'Το πεδίο :attribute πρέπει να είναι μία ημερομηνία μετά από :date.',
+ 'after_or_equal' => 'Το πεδίο :attribute πρέπει να είναι μία ημερομηνία ίδια ή μετά από :date.',
+ 'alpha' => 'Το πεδίο :attribute μπορεί να περιέχει μόνο γράμματα.',
+ 'alpha_dash' => 'Το πεδίο :attribute μπορεί να περιέχει μόνο γράμματα, αριθμούς, και παύλες.',
+ 'alpha_num' => 'Το πεδίο :attribute μπορεί να περιέχει μόνο γράμματα και αριθμούς.',
+ 'array' => 'Το πεδίο :attribute πρέπει να είναι ένας πίνακας.',
+ 'before' => 'Το πεδίο :attribute πρέπει να είναι μία ημερομηνία πριν από :date.',
+ 'before_or_equal' => 'Το πεδίο :attribute πρέπει να είναι μία ημερομηνία ίδια ή πριν από :date.',
+ 'between' => [
'numeric' => 'Το πεδίο :attribute πρέπει να είναι μεταξύ :min - :max.',
- 'file' => 'Το πεδίο :attribute πρέπει να είναι μεταξύ :min - :max kilobytes.',
- 'string' => 'Το πεδίο :attribute πρέπει να είναι μεταξύ :min - :max χαρακτήρες.',
- 'array' => 'Το πεδίο :attribute πρέπει να έχει μεταξύ :min - :max αντικείμενα.',
+ 'file' => 'Το πεδίο :attribute πρέπει να είναι μεταξύ :min - :max kilobytes.',
+ 'string' => 'Το πεδίο :attribute πρέπει να είναι μεταξύ :min - :max χαρακτήρες.',
+ 'array' => 'Το πεδίο :attribute πρέπει να έχει μεταξύ :min - :max αντικείμενα.',
],
- 'boolean' => 'Το πεδίο :attribute πρέπει να είναι true ή false.',
- 'confirmed' => 'Η επιβεβαίωση του :attribute δεν ταιριάζει.',
- 'date' => 'Το πεδίο :attribute δεν είναι έγκυρη ημερομηνία.',
- 'date_equals' => 'The :attribute must be a date equal to :date.',
- 'date_format' => 'Το πεδίο :attribute δεν είναι της μορφής :format.',
- 'different' => 'Το πεδίο :attribute και :other πρέπει να είναι διαφορετικά.',
- 'digits' => 'Το πεδίο :attribute πρέπει να είναι :digits ψηφία.',
- 'digits_between' => 'Το πεδίο :attribute πρέπει να είναι μεταξύ :min και :max ψηφία.',
- 'dimensions' => 'Το πεδίο :attribute περιέχει μη έγκυρες διαστάσεις εικόνας.',
- 'distinct' => 'Το πεδίο :attribute περιέχει δύο φορές την ίδια τιμή.',
- 'email' => 'Το πεδίο :attribute πρέπει να είναι μία έγκυρη διεύθυνση email.',
- 'file' => 'Το πεδίο :attribute πρέπει να είναι αρχείο.',
- 'filled' => 'To πεδίο :attribute είναι απαραίτητο.',
- 'exists' => 'Το επιλεγμένο :attribute δεν είναι έγκυρο.',
- 'gt' => [
+ 'boolean' => 'Το πεδίο :attribute πρέπει να είναι true ή false.',
+ 'confirmed' => 'Η επιβεβαίωση του :attribute δεν ταιριάζει.',
+ 'date' => 'Το πεδίο :attribute δεν είναι έγκυρη ημερομηνία.',
+ 'date_equals' => 'The :attribute must be a date equal to :date.',
+ 'date_format' => 'Το πεδίο :attribute δεν είναι της μορφής :format.',
+ 'different' => 'Το πεδίο :attribute και :other πρέπει να είναι διαφορετικά.',
+ 'digits' => 'Το πεδίο :attribute πρέπει να είναι :digits ψηφία.',
+ 'digits_between' => 'Το πεδίο :attribute πρέπει να είναι μεταξύ :min και :max ψηφία.',
+ 'dimensions' => 'Το πεδίο :attribute περιέχει μη έγκυρες διαστάσεις εικόνας.',
+ 'distinct' => 'Το πεδίο :attribute περιέχει δύο φορές την ίδια τιμή.',
+ 'email' => 'Το πεδίο :attribute πρέπει να είναι μία έγκυρη διεύθυνση email.',
+ 'file' => 'Το πεδίο :attribute πρέπει να είναι αρχείο.',
+ 'filled' => 'To πεδίο :attribute είναι απαραίτητο.',
+ 'exists' => 'Το επιλεγμένο :attribute δεν είναι έγκυρο.',
+ 'gt' => [
'numeric' => 'To πεδίο :attribute πρέπει να είναι μεγαλύτερο από :value.',
- 'file' => 'To πεδίο :attribute πρέπει να είναι μεγαλύτερο από :value kilobytes.',
- 'string' => 'To πεδίο :attribute πρέπει να είναι μεγαλύτερο από :value χαρακτήρες.',
- 'array' => 'To πεδίο :attribute πρέπει να έχει περισσότερα από :value αντικείμενα.',
+ 'file' => 'To πεδίο :attribute πρέπει να είναι μεγαλύτερο από :value kilobytes.',
+ 'string' => 'To πεδίο :attribute πρέπει να είναι μεγαλύτερο από :value χαρακτήρες.',
+ 'array' => 'To πεδίο :attribute πρέπει να έχει περισσότερα από :value αντικείμενα.',
],
- 'gte' => [
+ 'gte' => [
'numeric' => 'To πεδίο :attribute πρέπει να είναι μεγαλύτερο ή ίσο από :value.',
- 'file' => 'To πεδίο :attribute πρέπει να είναι μεγαλύτερο ή ίσο από :value kilobytes.',
- 'string' => 'To πεδίο :attribute πρέπει να είναι μεγαλύτερο ή ίσο από :value χαρακτήρες.',
- 'array' => 'To πεδίο :attribute πρέπει να έχει :value αντικείμενα ή περισσότερα.',
+ 'file' => 'To πεδίο :attribute πρέπει να είναι μεγαλύτερο ή ίσο από :value kilobytes.',
+ 'string' => 'To πεδίο :attribute πρέπει να είναι μεγαλύτερο ή ίσο από :value χαρακτήρες.',
+ 'array' => 'To πεδίο :attribute πρέπει να έχει :value αντικείμενα ή περισσότερα.',
],
- 'image' => 'Το πεδίο :attribute πρέπει να είναι εικόνα.',
- 'in' => 'Το επιλεγμένο :attribute δεν είναι έγκυρο.',
- 'in_array' => 'Το πεδίο :attribute δεν υπάρχει σε :other.',
- 'integer' => 'Το πεδίο :attribute πρέπει να είναι ακέραιος.',
- 'ip' => 'Το πεδίο :attribute πρέπει να είναι μία έγκυρη διεύθυνση IP.',
- 'ipv4' => 'Το πεδίο :attribute πρέπει να είναι μία έγκυρη διεύθυνση IPv4.',
- 'ipv6' => 'Το πεδίο :attribute πρέπει να είναι μία έγκυρη διεύθυνση IPv6.',
- 'json' => 'Το πεδίο :attribute πρέπει να είναι μία έγκυρη συμβολοσειρά JSON.',
- 'lt' => [
+ 'image' => 'Το πεδίο :attribute πρέπει να είναι εικόνα.',
+ 'in' => 'Το επιλεγμένο :attribute δεν είναι έγκυρο.',
+ 'in_array' => 'Το πεδίο :attribute δεν υπάρχει σε :other.',
+ 'integer' => 'Το πεδίο :attribute πρέπει να είναι ακέραιος.',
+ 'ip' => 'Το πεδίο :attribute πρέπει να είναι μία έγκυρη διεύθυνση IP.',
+ 'ipv4' => 'Το πεδίο :attribute πρέπει να είναι μία έγκυρη διεύθυνση IPv4.',
+ 'ipv6' => 'Το πεδίο :attribute πρέπει να είναι μία έγκυρη διεύθυνση IPv6.',
+ 'json' => 'Το πεδίο :attribute πρέπει να είναι μία έγκυρη συμβολοσειρά JSON.',
+ 'lt' => [
'numeric' => 'To πεδίο :attribute πρέπει να είναι μικρότερo από :value.',
- 'file' => 'To πεδίο :attribute πρέπει να είναι μικρότερo από :value kilobytes.',
- 'string' => 'To πεδίο :attribute πρέπει να είναι μικρότερo από :value χαρακτήρες.',
- 'array' => 'To πεδίο :attribute πρέπει να έχει λιγότερα από :value αντικείμενα.',
+ 'file' => 'To πεδίο :attribute πρέπει να είναι μικρότερo από :value kilobytes.',
+ 'string' => 'To πεδίο :attribute πρέπει να είναι μικρότερo από :value χαρακτήρες.',
+ 'array' => 'To πεδίο :attribute πρέπει να έχει λιγότερα από :value αντικείμενα.',
],
- 'lte' => [
+ 'lte' => [
'numeric' => 'To πεδίο :attribute πρέπει να είναι μικρότερo ή ίσο από :value.',
- 'file' => 'To πεδίο :attribute πρέπει να είναι μικρότερo ή ίσο από :value kilobytes.',
- 'string' => 'To πεδίο :attribute πρέπει να είναι μικρότερo ή ίσο από :value χαρακτήρες.',
- 'array' => 'To πεδίο :attribute δεν πρέπει να υπερβαίνει τα :value αντικείμενα.',
+ 'file' => 'To πεδίο :attribute πρέπει να είναι μικρότερo ή ίσο από :value kilobytes.',
+ 'string' => 'To πεδίο :attribute πρέπει να είναι μικρότερo ή ίσο από :value χαρακτήρες.',
+ 'array' => 'To πεδίο :attribute δεν πρέπει να υπερβαίνει τα :value αντικείμενα.',
],
- 'max' => [
+ 'max' => [
'numeric' => 'Το πεδίο :attribute δεν μπορεί να είναι μεγαλύτερο από :max.',
- 'file' => 'Το πεδίο :attribute δεν μπορεί να είναι μεγαλύτερό :max kilobytes.',
- 'string' => 'Το πεδίο :attribute δεν μπορεί να έχει περισσότερους από :max χαρακτήρες.',
- 'array' => 'Το πεδίο :attribute δεν μπορεί να έχει περισσότερα από :max αντικείμενα.',
+ 'file' => 'Το πεδίο :attribute δεν μπορεί να είναι μεγαλύτερό :max kilobytes.',
+ 'string' => 'Το πεδίο :attribute δεν μπορεί να έχει περισσότερους από :max χαρακτήρες.',
+ 'array' => 'Το πεδίο :attribute δεν μπορεί να έχει περισσότερα από :max αντικείμενα.',
],
- 'mimes' => 'Το πεδίο :attribute πρέπει να είναι αρχείο τύπου: :values.',
- 'mimetypes' => 'Το πεδίο :attribute πρέπει να είναι αρχείο τύπου: :values.',
- 'min' => [
+ 'mimes' => 'Το πεδίο :attribute πρέπει να είναι αρχείο τύπου: :values.',
+ 'mimetypes' => 'Το πεδίο :attribute πρέπει να είναι αρχείο τύπου: :values.',
+ 'min' => [
'numeric' => 'Το πεδίο :attribute πρέπει να είναι τουλάχιστον :min.',
- 'file' => 'Το πεδίο :attribute πρέπει να είναι τουλάχιστον :min kilobytes.',
- 'string' => 'Το πεδίο :attribute πρέπει να έχει τουλάχιστον :min χαρακτήρες.',
- 'array' => 'Το πεδίο :attribute πρέπει να έχει τουλάχιστον :min αντικείμενα.',
+ 'file' => 'Το πεδίο :attribute πρέπει να είναι τουλάχιστον :min kilobytes.',
+ 'string' => 'Το πεδίο :attribute πρέπει να έχει τουλάχιστον :min χαρακτήρες.',
+ 'array' => 'Το πεδίο :attribute πρέπει να έχει τουλάχιστον :min αντικείμενα.',
],
- 'not_in' => 'Το επιλεγμένο :attribute δεν είναι αποδεκτό.',
- 'not_regex' => 'Η μορφή του πεδίου :attribute δεν είναι αποδεκτή.',
- 'numeric' => 'Το πεδίο :attribute πρέπει να είναι αριθμός.',
- 'present' => 'Το πεδίο :attribute πρέπει να υπάρχει.',
- 'regex' => 'Η μορφή του πεδίου :attribute δεν είναι αποδεκτή.',
- 'required' => 'Το πεδίο :attribute είναι απαραίτητο.',
- 'required_if' => 'Το πεδίο :attribute είναι απαραίτητο όταν το πεδίο :other είναι :value.',
- 'required_unless' => 'Το πεδίο :attribute είναι απαραίτητο εκτός αν το πεδίο :other εμπεριέχει :values.',
- 'required_with' => 'Το πεδίο :attribute είναι απαραίτητο όταν υπάρχει :values.',
- 'required_with_all' => 'Το πεδίο :attribute είναι απαραίτητο όταν υπάρχουν :values.',
- 'required_without' => 'Το πεδίο :attribute είναι απαραίτητο όταν δεν υπάρχει :values.',
+ 'not_in' => 'Το επιλεγμένο :attribute δεν είναι αποδεκτό.',
+ 'not_regex' => 'Η μορφή του πεδίου :attribute δεν είναι αποδεκτή.',
+ 'numeric' => 'Το πεδίο :attribute πρέπει να είναι αριθμός.',
+ 'present' => 'Το πεδίο :attribute πρέπει να υπάρχει.',
+ 'regex' => 'Η μορφή του πεδίου :attribute δεν είναι αποδεκτή.',
+ 'required' => 'Το πεδίο :attribute είναι απαραίτητο.',
+ 'required_if' => 'Το πεδίο :attribute είναι απαραίτητο όταν το πεδίο :other είναι :value.',
+ 'required_unless' => 'Το πεδίο :attribute είναι απαραίτητο εκτός αν το πεδίο :other εμπεριέχει :values.',
+ 'required_with' => 'Το πεδίο :attribute είναι απαραίτητο όταν υπάρχει :values.',
+ 'required_with_all' => 'Το πεδίο :attribute είναι απαραίτητο όταν υπάρχουν :values.',
+ 'required_without' => 'Το πεδίο :attribute είναι απαραίτητο όταν δεν υπάρχει :values.',
'required_without_all' => 'Το πεδίο :attribute είναι απαραίτητο όταν δεν υπάρχει κανένα από :values.',
- 'same' => 'Τα πεδία :attribute και :other πρέπει να είναι ίδια.',
- 'size' => [
+ 'same' => 'Τα πεδία :attribute και :other πρέπει να είναι ίδια.',
+ 'size' => [
'numeric' => 'Το πεδίο :attribute πρέπει να είναι :size.',
- 'file' => 'Το πεδίο :attribute πρέπει να είναι :size kilobytes.',
- 'string' => 'Το πεδίο :attribute πρέπει να είναι :size χαρακτήρες.',
- 'array' => 'Το πεδίο :attribute πρέπει να περιέχει :size αντικείμενα.',
+ 'file' => 'Το πεδίο :attribute πρέπει να είναι :size kilobytes.',
+ 'string' => 'Το πεδίο :attribute πρέπει να είναι :size χαρακτήρες.',
+ 'array' => 'Το πεδίο :attribute πρέπει να περιέχει :size αντικείμενα.',
],
- 'starts_with' => 'The :attribute must start with one of the following: :values',
- 'string' => 'Το πεδίο :attribute πρέπει να είναι αλφαριθμητικό.',
- 'timezone' => 'Το πεδίο :attribute πρέπει να είναι μία έγκυρη ζώνη ώρας.',
- 'unique' => 'Το πεδίο :attribute έχει ήδη εκχωρηθεί.',
- 'uploaded' => 'Η μεταφόρτωση του πεδίου :attribute απέτυχε.',
- 'url' => 'Το πεδίο :attribute δεν είναι έγκυρη διεύθυνση URL.',
- 'uuid' => 'Το πεδίο :attribute πρέπει να είναι έγκυρο UUID.',
+ 'starts_with' => 'The :attribute must start with one of the following: :values',
+ 'string' => 'Το πεδίο :attribute πρέπει να είναι αλφαριθμητικό.',
+ 'timezone' => 'Το πεδίο :attribute πρέπει να είναι μία έγκυρη ζώνη ώρας.',
+ 'unique' => 'Το πεδίο :attribute έχει ήδη εκχωρηθεί.',
+ 'uploaded' => 'Η μεταφόρτωση του πεδίου :attribute απέτυχε.',
+ 'url' => 'Το πεδίο :attribute δεν είναι έγκυρη διεύθυνση URL.',
+ 'uuid' => 'Το πεδίο :attribute πρέπει να είναι έγκυρο UUID.',
/*
|--------------------------------------------------------------------------
@@ -138,7 +138,7 @@ return [
*/
'email_list' => 'Sorry, this email domain is not allowed to be used on this site. Please see sites email whitelist.',
- 'recaptcha' => 'Please Complete The ReCaptcha.',
+ 'recaptcha' => 'Please Complete The ReCaptcha.',
'custom' => [
'attribute-name' => [
diff --git a/lang/en/articles.php b/lang/en/articles.php
index dd6e210e1..570f75165 100644
--- a/lang/en/articles.php
+++ b/lang/en/articles.php
@@ -12,8 +12,8 @@
*/
return [
- 'articles' => 'Articles',
+ 'articles' => 'Articles',
'meta-articles' => 'Articles and News on the tracker and the community',
- 'published-at' => 'Published On ',
- 'read-more' => 'Read More',
+ 'published-at' => 'Published On ',
+ 'read-more' => 'Read More',
];
diff --git a/lang/en/auth.php b/lang/en/auth.php
index df5666263..8b3e8f601 100644
--- a/lang/en/auth.php
+++ b/lang/en/auth.php
@@ -17,91 +17,91 @@ return [
| Default Authentication Language Lines
|--------------------------------------------------------------------------
*/
- 'activation-error' => 'Banned or Invalid Token Or Account Already Confirmed!',
- 'activation-success' => 'Account Confirmed! You May Now Login!',
- 'add-image' => 'Add Another Image Link',
- 'add-profile' => 'Add Another Profile Link',
- 'allow-invite-appl' => 'Open Registration is Closed! Must Be Invited To Register! However application signups are open. You Have Been Redirected To The Application Page!',
- 'allow-invite' => 'Open Registration is Closed! You Must Be Invited To Register! You Have Been Redirected To Login Page!',
- 'are-you' => 'Are You:',
- 'application' => 'Application',
- 'appl-closed' => 'Applications Are Closed',
- 'appl-intro' => 'is a closed community. You must have an invitation link to register. If you cannot get a invitation you may fill out the following application for membership.',
- 'appl-reason' => 'How Did You Hear About ":sitename" And Why Do You Want In? ',
- 'application-submitted' => 'Your Application Has Been Submitted. You will receive a email soon!',
- 'banned' => 'This Account is Banned!',
- 'check-later' => 'Check Back Later!',
- 'delete-image' => 'Delete Last Image Link',
- 'delete-profile' => 'Delete Last Profile Link',
- 'email' => 'E-mail',
- 'failed' => 'These credentials do not match our records.',
- 'invalid-key' => 'Invalid or Expired Invite Key!',
- 'login' => 'Login',
- 'login-now-on' => 'Login now on',
- 'logout' => 'Logout',
- 'lost-password' => 'Forgot Your Password?',
- 'lost-username' => 'Forgot Your Username?',
- 'need-invite' => 'Open Registration Is Disabled and You Will Need A Invite To Gain Access!',
- 'newbie' => 'New To The Game',
- 'not-a-member' => 'Not yet a member ? Signup in less than 30s.',
- 'not-activated' => 'This account has not been activated and is still in validating group. Please check your email for activation link. If you did not receive the activation code, please click "forgot password" and complete the steps.',
- 'password' => 'Password',
- 'proof-image' => 'Proof Image URL',
- 'proof-image-title' => 'Links to profile screenshots',
- 'proof-profile' => 'Profile Link URL',
- 'proof-profile-title' => 'Links to your profiles',
- 'proof-min' => '(Minimum 2, Recommended 3)',
- 'recover-my-password' => 'Recover My Password',
- 'register-thanks' => 'Thanks for signing up! Please check your email to Validate your account',
- 'remember-me' => 'Remember Me',
- 'require-rules' => 'Please Read And Accept Our Rules By Scrolling To Bottom Of Page.',
- 'signup' => 'Signup',
- 'throttle' => 'Too many login attempts. Please try again in :seconds seconds.',
- 'unlock' => 'Unlock',
- 'user-icon' => 'User Icon',
- 'username' => 'Username',
- 'veteran' => 'Experienced With Private Trackers',
- 'welcome' => 'Welcome Back!',
- 'welcome-restore' => 'Welcome Back! Your Account Is No Longer Disabled!',
+ 'activation-error' => 'Banned or Invalid Token Or Account Already Confirmed!',
+ 'activation-success' => 'Account Confirmed! You May Now Login!',
+ 'add-image' => 'Add Another Image Link',
+ 'add-profile' => 'Add Another Profile Link',
+ 'allow-invite-appl' => 'Open Registration is Closed! Must Be Invited To Register! However application signups are open. You Have Been Redirected To The Application Page!',
+ 'allow-invite' => 'Open Registration is Closed! You Must Be Invited To Register! You Have Been Redirected To Login Page!',
+ 'are-you' => 'Are You:',
+ 'application' => 'Application',
+ 'appl-closed' => 'Applications Are Closed',
+ 'appl-intro' => 'is a closed community. You must have an invitation link to register. If you cannot get a invitation you may fill out the following application for membership.',
+ 'appl-reason' => 'How Did You Hear About ":sitename" And Why Do You Want In? ',
+ 'application-submitted' => 'Your Application Has Been Submitted. You will receive a email soon!',
+ 'banned' => 'This Account is Banned!',
+ 'check-later' => 'Check Back Later!',
+ 'delete-image' => 'Delete Last Image Link',
+ 'delete-profile' => 'Delete Last Profile Link',
+ 'email' => 'E-mail',
+ 'failed' => 'These credentials do not match our records.',
+ 'invalid-key' => 'Invalid or Expired Invite Key!',
+ 'login' => 'Login',
+ 'login-now-on' => 'Login now on',
+ 'logout' => 'Logout',
+ 'lost-password' => 'Forgot Your Password?',
+ 'lost-username' => 'Forgot Your Username?',
+ 'need-invite' => 'Open Registration Is Disabled and You Will Need A Invite To Gain Access!',
+ 'newbie' => 'New To The Game',
+ 'not-a-member' => 'Not yet a member ? Signup in less than 30s.',
+ 'not-activated' => 'This account has not been activated and is still in validating group. Please check your email for activation link. If you did not receive the activation code, please click "forgot password" and complete the steps.',
+ 'password' => 'Password',
+ 'proof-image' => 'Proof Image URL',
+ 'proof-image-title' => 'Links to profile screenshots',
+ 'proof-profile' => 'Profile Link URL',
+ 'proof-profile-title' => 'Links to your profiles',
+ 'proof-min' => '(Minimum 2, Recommended 3)',
+ 'recover-my-password' => 'Recover My Password',
+ 'register-thanks' => 'Thanks for signing up! Please check your email to Validate your account',
+ 'remember-me' => 'Remember Me',
+ 'require-rules' => 'Please Read And Accept Our Rules By Scrolling To Bottom Of Page.',
+ 'signup' => 'Signup',
+ 'throttle' => 'Too many login attempts. Please try again in :seconds seconds.',
+ 'unlock' => 'Unlock',
+ 'user-icon' => 'User Icon',
+ 'username' => 'Username',
+ 'veteran' => 'Experienced With Private Trackers',
+ 'welcome' => 'Welcome Back!',
+ 'welcome-restore' => 'Welcome Back! Your Account Is No Longer Disabled!',
/*
|--------------------------------------------------------------------------
| Two Step Authentication Language Lines
|--------------------------------------------------------------------------
*/
- 'subtitle' => 'Verification Required',
- 'title' => '2-Step Verification',
- 'titleFailed' => 'Verification Failed',
- 'titlePassed' => 'Good News Everyone!',
+ 'subtitle' => 'Verification Required',
+ 'title' => '2-Step Verification',
+ 'titleFailed' => 'Verification Failed',
+ 'titlePassed' => 'Good News Everyone!',
- 'inputAlt1' => 'Code Input 1',
- 'inputAlt2' => 'Code Input 2',
- 'inputAlt3' => 'Code Input 3',
- 'inputAlt4' => 'Code Input 4',
+ 'inputAlt1' => 'Code Input 1',
+ 'inputAlt2' => 'Code Input 2',
+ 'inputAlt3' => 'Code Input 3',
+ 'inputAlt4' => 'Code Input 4',
- 'attemptsRemaining' => 'Attempt Remaining|Attempts Remaining',
- 'missingCode' => 'Didn\'t receive verification code?',
- 'verifyButton' => 'Verify',
+ 'attemptsRemaining' => 'Attempt Remaining|Attempts Remaining',
+ 'missingCode' => 'Didn\'t receive verification code?',
+ 'verifyButton' => 'Verify',
- 'exceededTitle' => 'Verification Attempts Exceeded',
- 'lockedUntil' => 'Account Locked Until:',
- 'returnButton' => 'Return Home',
- 'tryAgainIn' => 'Try again in',
+ 'exceededTitle' => 'Verification Attempts Exceeded',
+ 'lockedUntil' => 'Account Locked Until:',
+ 'returnButton' => 'Return Home',
+ 'tryAgainIn' => 'Try again in',
- 'verificationEmailButton' => 'Verify Now',
- 'verificationEmailGreeting' => 'Hello :username',
- 'verificationEmailMessage' => 'Your account 2-step verification code is:',
- 'verificationEmailSubject' => 'Verification Required',
+ 'verificationEmailButton' => 'Verify Now',
+ 'verificationEmailGreeting' => 'Hello :username',
+ 'verificationEmailMessage' => 'Your account 2-step verification code is:',
+ 'verificationEmailSubject' => 'Verification Required',
- 'verificationEmailSentMsg' => 'Verification Email Sent!',
- 'verificationEmailSuccess' => 'Success!',
+ 'verificationEmailSentMsg' => 'Verification Email Sent!',
+ 'verificationEmailSuccess' => 'Success!',
- 'verificationWarningMessage' => 'This is your last attempt before your account locks for :hours hours.',
- 'verificationWarningTitle' => 'Warning!',
+ 'verificationWarningMessage' => 'This is your last attempt before your account locks for :hours hours.',
+ 'verificationWarningTitle' => 'Warning!',
- 'verificationLockedMessage' => 'Account Locked!',
- 'verificationLockedTitle' => 'Doh!',
+ 'verificationLockedMessage' => 'Account Locked!',
+ 'verificationLockedTitle' => 'Doh!',
- 'verificationModalConfBtn' => 'Ok',
+ 'verificationModalConfBtn' => 'Ok',
];
diff --git a/lang/en/backup.php b/lang/en/backup.php
index 6ec827cac..0fa04c78d 100644
--- a/lang/en/backup.php
+++ b/lang/en/backup.php
@@ -23,33 +23,33 @@ return [
|
*/
- 'backup' => 'Backup',
- 'backup_process_started' => 'New Backup Process Started',
- 'create_a_new_backup' => 'Create Full Backup',
- 'create_a_new_files_backup' => 'Create Files Backup',
- 'create_a_new_db_backup' => 'Create Database Backup',
- 'existing_backups' => 'Existing backups',
- 'date' => 'Date',
- 'file_size' => 'File size',
- 'actions' => 'Actions',
- 'download' => 'Download',
- 'delete' => 'Delete',
- 'delete_confirm' => 'Are your sure you want to delete this backup file?',
- 'delete_confirmation_title' => 'Done',
- 'delete_confirmation_message' => 'The backup file was deleted.',
- 'delete_error_title' => 'Error',
- 'delete_error_message' => 'The backup file has NOT been deleted.',
- 'delete_cancel_title' => "It's ok",
- 'delete_cancel_message' => 'The backup file has NOT been deleted.',
- 'create_confirmation_title' => 'Backup process started',
- 'create_confirmation_message' => 'Please wait a few minutes for it to complete, then refresh the page.',
- 'create_error_title' => 'Backup error',
- 'create_error_message' => 'The backup file could NOT be created.',
- 'create_warning_title' => 'Unknown error',
- 'create_warning_message' => 'Your backup may NOT have been created. Please check log files for details.',
- 'location' => 'Location',
- 'manager' => 'Manager',
- 'no_disks_configured' => 'No backup disks configured in config/backup.php',
- 'backup_doesnt_exist' => "The backup file doesn't exist.",
+ 'backup' => 'Backup',
+ 'backup_process_started' => 'New Backup Process Started',
+ 'create_a_new_backup' => 'Create Full Backup',
+ 'create_a_new_files_backup' => 'Create Files Backup',
+ 'create_a_new_db_backup' => 'Create Database Backup',
+ 'existing_backups' => 'Existing backups',
+ 'date' => 'Date',
+ 'file_size' => 'File size',
+ 'actions' => 'Actions',
+ 'download' => 'Download',
+ 'delete' => 'Delete',
+ 'delete_confirm' => 'Are your sure you want to delete this backup file?',
+ 'delete_confirmation_title' => 'Done',
+ 'delete_confirmation_message' => 'The backup file was deleted.',
+ 'delete_error_title' => 'Error',
+ 'delete_error_message' => 'The backup file has NOT been deleted.',
+ 'delete_cancel_title' => "It's ok",
+ 'delete_cancel_message' => 'The backup file has NOT been deleted.',
+ 'create_confirmation_title' => 'Backup process started',
+ 'create_confirmation_message' => 'Please wait a few minutes for it to complete, then refresh the page.',
+ 'create_error_title' => 'Backup error',
+ 'create_error_message' => 'The backup file could NOT be created.',
+ 'create_warning_title' => 'Unknown error',
+ 'create_warning_message' => 'Your backup may NOT have been created. Please check log files for details.',
+ 'location' => 'Location',
+ 'manager' => 'Manager',
+ 'no_disks_configured' => 'No backup disks configured in config/backup.php',
+ 'backup_doesnt_exist' => "The backup file doesn't exist.",
'only_local_downloads_supported' => 'Only downloads from the Local filesystem are supported.',
];
diff --git a/lang/en/blocks.php b/lang/en/blocks.php
index 8a3fd5dd2..e0686c3fe 100644
--- a/lang/en/blocks.php
+++ b/lang/en/blocks.php
@@ -13,15 +13,15 @@
return [
// Chat
- 'chatbox' => 'Chat Box',
- 'click' => 'Click',
+ 'chatbox' => 'Chat Box',
+ 'click' => 'Click',
'to-enable-editor' => 'to enable editor',
// Featured Torrents
- 'featured-by' => 'Featured by',
- 'featured-torrents' => 'Featured Torrents',
+ 'featured-by' => 'Featured by',
+ 'featured-torrents' => 'Featured Torrents',
'featured-torrents-intro' => 'Get Them While You Can!',
- 'featured-until' => 'This is a featured torrent until',
+ 'featured-until' => 'This is a featured torrent until',
// Latest Torrents
'top-torrents' => 'Top Torrents',
@@ -34,11 +34,11 @@ return [
// Users Online
'active-in-last' => 'Active in last',
- 'users-online' => 'Users Online',
+ 'users-online' => 'Users Online',
// News/Articles
'check-news' => 'Latest News',
- 'new-news' => 'New News',
+ 'new-news' => 'New News',
// Top Torrents
'new-torrents' => 'New Torrents',
diff --git a/lang/en/bon.php b/lang/en/bon.php
index fa606f72b..88f43c130 100644
--- a/lang/en/bon.php
+++ b/lang/en/bon.php
@@ -12,56 +12,56 @@
*/
return [
- 'activated' => 'Activated',
- 'active' => 'Activated!',
- 'amount' => 'Amount',
- 'bon' => 'BON',
- 'bonus' => 'Bonus',
- 'date' => 'Date',
- 'earning' => 'Earning',
- 'earning-rate' => 'At this rate of earning you will earn the following per timeframe..',
- 'earnings' => 'Earnings',
- 'exchange' => 'Exchange',
- 'exchange-warning' => 'Exchanges are final, Please double check your choices before making an exchange.',
- 'extended-stats' => 'Extended Stats',
- 'failed' => 'Bonus Exchange Failed!',
- 'failed-amount-message' => 'You Must Enter An Amount And Message!',
- 'failed-funds-poster' => 'You Are To Broke To Tip The Poster!',
- 'failed-funds-uploader' => 'Your To Broke To Tip The Uploader!',
- 'failed-negative' => 'You Cannot Tip A Negative Amount!',
- 'failed-user-not-found' => 'Unable to find specified user',
- 'failed-yourself' => 'You Cannot Tip Yourself!',
- 'gift' => 'Gift',
- 'gift-bonus' => 'Gift Bonus Points',
- 'gift-sent' => 'Gift Sent',
- 'gift-to' => 'Gift Bonus Points To',
- 'gifts' => 'Gifts',
- 'item' => 'Item',
- 'no-refund' => 'NO REFUNDS!',
- 'per-day' => 'Points Per Day',
- 'per-hour' => 'Points Per Hour',
- 'per-minute' => 'Points Per Minute',
- 'per-month' => 'Points Per Month',
- 'per-second' => 'Points Per Second',
- 'per-week' => 'Points Per Week',
- 'per-year' => 'Points Per Year',
- 'pm-subject' => 'Personal 24 Hour Freeleech Activated',
- 'pm-message' => 'Your [b]Personal 24 Hour Freeleech[/b] session has started! It will expire on %s [b]',
- 'points' => 'Points',
- 'receiver' => 'Receiver',
- 'review-seeds' => 'Review All Seeded Torrents',
- 'send-gift' => 'Send Gift',
- 'sender' => 'Sender',
- 'store' => 'Store',
- 'success' => 'Bonus Exchange Successful',
- 'success-tip' => 'Your Tip Was Successfully Applied!',
- 'tips' => 'Tips',
- 'total' => 'Total Earnings',
- 'total-gifts' => 'In Total BON Gifts',
- 'total-tips' => 'In Total BON Tips',
+ 'activated' => 'Activated',
+ 'active' => 'Activated!',
+ 'amount' => 'Amount',
+ 'bon' => 'BON',
+ 'bonus' => 'Bonus',
+ 'date' => 'Date',
+ 'earning' => 'Earning',
+ 'earning-rate' => 'At this rate of earning you will earn the following per timeframe..',
+ 'earnings' => 'Earnings',
+ 'exchange' => 'Exchange',
+ 'exchange-warning' => 'Exchanges are final, Please double check your choices before making an exchange.',
+ 'extended-stats' => 'Extended Stats',
+ 'failed' => 'Bonus Exchange Failed!',
+ 'failed-amount-message' => 'You Must Enter An Amount And Message!',
+ 'failed-funds-poster' => 'You Are To Broke To Tip The Poster!',
+ 'failed-funds-uploader' => 'Your To Broke To Tip The Uploader!',
+ 'failed-negative' => 'You Cannot Tip A Negative Amount!',
+ 'failed-user-not-found' => 'Unable to find specified user',
+ 'failed-yourself' => 'You Cannot Tip Yourself!',
+ 'gift' => 'Gift',
+ 'gift-bonus' => 'Gift Bonus Points',
+ 'gift-sent' => 'Gift Sent',
+ 'gift-to' => 'Gift Bonus Points To',
+ 'gifts' => 'Gifts',
+ 'item' => 'Item',
+ 'no-refund' => 'NO REFUNDS!',
+ 'per-day' => 'Points Per Day',
+ 'per-hour' => 'Points Per Hour',
+ 'per-minute' => 'Points Per Minute',
+ 'per-month' => 'Points Per Month',
+ 'per-second' => 'Points Per Second',
+ 'per-week' => 'Points Per Week',
+ 'per-year' => 'Points Per Year',
+ 'pm-subject' => 'Personal 24 Hour Freeleech Activated',
+ 'pm-message' => 'Your [b]Personal 24 Hour Freeleech[/b] session has started! It will expire on %s [b]',
+ 'points' => 'Points',
+ 'receiver' => 'Receiver',
+ 'review-seeds' => 'Review All Seeded Torrents',
+ 'send-gift' => 'Send Gift',
+ 'sender' => 'Sender',
+ 'store' => 'Store',
+ 'success' => 'Bonus Exchange Successful',
+ 'success-tip' => 'Your Tip Was Successfully Applied!',
+ 'tips' => 'Tips',
+ 'total' => 'Total Earnings',
+ 'total-gifts' => 'In Total BON Gifts',
+ 'total-tips' => 'In Total BON Tips',
'you-have-received-gifts' => 'You Have Received',
- 'you-have-sent-gifts' => 'You Have Sent',
- 'you-have-received-tips' => 'You Have Received',
- 'you-have-sent-tips' => 'You Have Sent',
- 'your-points' => 'Your Points',
+ 'you-have-sent-gifts' => 'You Have Sent',
+ 'you-have-received-tips' => 'You Have Received',
+ 'you-have-sent-tips' => 'You Have Sent',
+ 'your-points' => 'Your Points',
];
diff --git a/lang/en/bot.php b/lang/en/bot.php
index edd146d37..3b8bd77bf 100644
--- a/lang/en/bot.php
+++ b/lang/en/bot.php
@@ -12,15 +12,15 @@
*/
return [
- 'about' => 'About',
- 'bot' => 'Bot',
- 'bots' => 'Bots',
- 'color' => 'Color',
- 'command' => 'Command',
- 'edit-bot' => 'Edit Bot',
- 'emoji-code' => 'Emoji Code',
- 'help' => 'Help',
- 'icon' => 'Icon',
- 'info' => 'Info',
- 'name' => 'Name',
+ 'about' => 'About',
+ 'bot' => 'Bot',
+ 'bots' => 'Bots',
+ 'color' => 'Color',
+ 'command' => 'Command',
+ 'edit-bot' => 'Edit Bot',
+ 'emoji-code' => 'Emoji Code',
+ 'help' => 'Help',
+ 'icon' => 'Icon',
+ 'info' => 'Info',
+ 'name' => 'Name',
];
diff --git a/lang/en/bug.php b/lang/en/bug.php
index 147d3789d..cf55545ae 100644
--- a/lang/en/bug.php
+++ b/lang/en/bug.php
@@ -12,15 +12,15 @@
*/
return [
- 'bug-report' => 'Bug Report',
+ 'bug-report' => 'Bug Report',
'bug-report-description' => 'Report a Site Bug',
- 'enter-description' => 'Describe the problem as best as possible',
- 'enter-email' => 'Please enter your e-mail',
- 'enter-title' => 'Please choose a proper title',
- 'enter-username' => 'Please enter your username',
- 'high' => 'High',
- 'low' => 'Low',
- 'priority' => 'Priority',
- 'priority-description' => 'Choose only very high if the bug really is a problem for using the site.',
- 'very-high' => 'Very High',
+ 'enter-description' => 'Describe the problem as best as possible',
+ 'enter-email' => 'Please enter your e-mail',
+ 'enter-title' => 'Please choose a proper title',
+ 'enter-username' => 'Please enter your username',
+ 'high' => 'High',
+ 'low' => 'Low',
+ 'priority' => 'Priority',
+ 'priority-description' => 'Choose only very high if the bug really is a problem for using the site.',
+ 'very-high' => 'Very High',
];
diff --git a/lang/en/comment.php b/lang/en/comment.php
index 3853f9824..dc16bc609 100644
--- a/lang/en/comment.php
+++ b/lang/en/comment.php
@@ -12,9 +12,9 @@
*/
return [
- 'added' => 'Your Comment Has Been Added!',
- 'deleted' => 'Comment Has Been Deleted.',
- 'edited' => 'Comment Has Been Edited.',
- 'rights-revoked' => 'Your Comment Rights Have Been Revoked!',
- 'slow-down' => 'Slow Down - Too Many Comments!',
+ 'added' => 'Your Comment Has Been Added!',
+ 'deleted' => 'Comment Has Been Deleted.',
+ 'edited' => 'Comment Has Been Edited.',
+ 'rights-revoked' => 'Your Comment Rights Have Been Revoked!',
+ 'slow-down' => 'Slow Down - Too Many Comments!',
];
diff --git a/lang/en/common.php b/lang/en/common.php
index 824b8fd91..12d4910d4 100644
--- a/lang/en/common.php
+++ b/lang/en/common.php
@@ -12,219 +12,219 @@
*/
return [
- 'a-an-art' => '{0}a|[1,*]an',
- 'abbrev-days' => 'D ',
- 'abbrev-hours' => 'h ',
- 'abbrev-minutes' => 'm ',
- 'abbrev-months' => 'M ',
- 'abbrev-seconds' => 's',
- 'abbrev-weeks' => 'W ',
- 'abbrev-years' => 'Y ',
- 'about' => 'About Us',
- 'account' => 'Account',
- 'achievement-title' => 'Awesome',
+ 'a-an-art' => '{0}a|[1,*]an',
+ 'abbrev-days' => 'D ',
+ 'abbrev-hours' => 'h ',
+ 'abbrev-minutes' => 'm ',
+ 'abbrev-months' => 'M ',
+ 'abbrev-seconds' => 's',
+ 'abbrev-weeks' => 'W ',
+ 'abbrev-years' => 'Y ',
+ 'about' => 'About Us',
+ 'account' => 'Account',
+ 'achievement-title' => 'Awesome',
'achievement-unlocked' => 'You unlocked achievement',
- 'active' => 'Active',
- 'active-warning' => 'Active Warning',
- 'add' => 'Add',
- 'added' => 'Added',
- 'amount' => 'Amount',
- 'anonymous' => 'Anonymous',
- 'article' => 'Article',
- 'ascending' => 'Ascending',
- 'author' => 'Author',
- 'balance' => 'Balance',
- 'blacklist' => 'Client Blacklist',
- 'buffer' => 'Buffer',
- 'bug' => 'Report a Bug',
- 'but' => 'But',
- 'cancel' => 'Cancel',
- 'category' => 'Category',
- 'categories' => 'Categories',
- 'chat' => 'Chat',
- 'chat-room' => 'Chatroom',
- 'chat-rooms' => 'Chatrooms',
- 'close' => 'Close',
- 'code' => 'Code',
- 'color' => 'Color',
- 'command' => 'Command',
- 'comment' => 'Comment',
- 'comments' => 'Comments',
- 'community' => 'Community',
- 'content' => 'Content',
- 'connected' => 'Connected',
- 'contact' => 'Contact',
- 'contact-desc' => 'This contact request will be sent to the owner and will get back to you as soon as possible',
- 'contact-header' => 'Hello',
- 'create' => 'Create',
- 'created_at' => 'Created at',
- 'date' => 'Date',
- 'day' => 'Day',
- 'delete' => 'Delete',
- 'delete-your-comment' => 'Delete your Comment',
- 'description' => 'Description',
- 'descending' => 'Descending',
- 'direction' => 'Direction',
- 'disable' => 'Disable',
- 'doubleup_activated' => 'Global Double Upload Mode Activated',
- 'download' => 'Download',
- 'magnet' => 'Magnet',
- 'edit' => 'Edit',
- 'edit-your-comment' => 'Edit your Comment',
- 'email' => 'E-mail',
- 'email-blacklist' => 'Email Blacklist',
- 'email-whitelist' => 'Email Whitelist',
+ 'active' => 'Active',
+ 'active-warning' => 'Active Warning',
+ 'add' => 'Add',
+ 'added' => 'Added',
+ 'amount' => 'Amount',
+ 'anonymous' => 'Anonymous',
+ 'article' => 'Article',
+ 'ascending' => 'Ascending',
+ 'author' => 'Author',
+ 'balance' => 'Balance',
+ 'blacklist' => 'Client Blacklist',
+ 'buffer' => 'Buffer',
+ 'bug' => 'Report a Bug',
+ 'but' => 'But',
+ 'cancel' => 'Cancel',
+ 'category' => 'Category',
+ 'categories' => 'Categories',
+ 'chat' => 'Chat',
+ 'chat-room' => 'Chatroom',
+ 'chat-rooms' => 'Chatrooms',
+ 'close' => 'Close',
+ 'code' => 'Code',
+ 'color' => 'Color',
+ 'command' => 'Command',
+ 'comment' => 'Comment',
+ 'comments' => 'Comments',
+ 'community' => 'Community',
+ 'content' => 'Content',
+ 'connected' => 'Connected',
+ 'contact' => 'Contact',
+ 'contact-desc' => 'This contact request will be sent to the owner and will get back to you as soon as possible',
+ 'contact-header' => 'Hello',
+ 'create' => 'Create',
+ 'created_at' => 'Created at',
+ 'date' => 'Date',
+ 'day' => 'Day',
+ 'delete' => 'Delete',
+ 'delete-your-comment' => 'Delete your Comment',
+ 'description' => 'Description',
+ 'descending' => 'Descending',
+ 'direction' => 'Direction',
+ 'disable' => 'Disable',
+ 'doubleup_activated' => 'Global Double Upload Mode Activated',
+ 'download' => 'Download',
+ 'magnet' => 'Magnet',
+ 'edit' => 'Edit',
+ 'edit-your-comment' => 'Edit your Comment',
+ 'email' => 'E-mail',
+ 'email-blacklist' => 'Email Blacklist',
+ 'email-whitelist' => 'Email Whitelist',
'email-list-notactive' => 'Email Whitelist / Blacklist System Is Not Activated',
- 'enable' => 'Enable',
- 'enter' => 'Enter',
- 'error' => 'Error',
- 'everyday' => 'Everyday',
- 'expired' => 'Expired',
- 'extra' => 'Extra',
- 'extra-stats' => 'Extra-Stats',
- 'faq' => 'FAQ',
- 'files' => 'Files',
- 'fl_token' => 'Freeleech Token',
- 'fl_tokens' => 'Freeleech Tokens',
- 'for' => 'for',
- 'forum' => 'Forum',
- 'free' => 'Free',
- 'freeleech_activated' => 'Global Freeleech Mode Activated',
- 'given' => 'Given',
- 'global' => 'Global',
- 'group' => 'Group',
- 'groups' => 'Groups',
- 'hidden' => 'Hidden',
- 'high-speeds' => 'High Speeds',
- 'home' => 'Home',
- 'hot' => 'Hot!',
- 'hour' => 'Hour',
- 'huge' => 'Huge',
- 'icon' => 'Icon',
- 'image' => 'Image',
- 'info' => 'Info',
- 'internal' => 'Internal',
- 'ip' => 'IP',
- 'is-allowed' => 'is allowed',
- 'language' => 'Language',
- 'languages' => 'Languages',
- 'large' => 'Large',
- 'latest' => 'Latest',
- 'latest-posts' => 'Latest Posts',
- 'latest-topics' => 'Latest Topics',
- 'legal' => 'Legal',
- 'legend' => 'Legend',
- 'lists' => 'Lists',
- 'lock-account' => 'Lock Account',
- 'logout' => 'Logout',
- 'media-language' => 'Media Language',
- 'media-languages' => 'Media Languages',
- 'members' => 'Members',
- 'message' => 'Message',
- 'minute' => 'Minute',
- 'moderated-by' => 'Moderated by',
- 'moderation' => 'Moderation',
- 'moderation-approve' => 'Approve',
- 'moderation-postpone' => 'Postpone',
- 'moderation-reject' => 'Reject',
- 'month' => 'Month',
- 'months' => 'Months',
- 'my' => 'My',
- 'name' => 'Name',
- 'navigation' => 'Navigation',
- 'new' => 'New!',
- 'new-adj' => 'New',
- 'news' => 'News',
- 'next' => 'Next',
- 'no' => 'No',
- 'no-comments' => 'No Comments Yet',
- 'no-result' => 'There is no result in database for query',
- 'notifications' => 'Notifications',
- 'older-than' => 'Older than',
- 'oldest' => 'Oldest',
- 'openreg_activated' => 'Open Registration Activated',
- 'order-by' => 'Order by',
- 'other' => 'Other',
- 'overview' => 'Overview',
- 'pages' => 'Pages',
- 'password' => 'Password',
- 'patron' => 'Become a Patron',
- 'pending-torrents' => 'Pending Torrents',
- 'personal' => 'Personal',
- 'plural-suffix' => 's',
- 'port' => 'Port',
- 'position' => 'Position',
- 'posts' => 'Posts',
- 'powered-by' => 'Powered by UNIT3D',
- 'preview' => 'Preview',
- 'previous' => 'Previous',
- 'progress' => 'Progress',
- 'publish' => 'Publish',
- 'quantity' => 'Quantity',
- 'quick-search' => 'Quick Search',
- 'ratio' => 'Ratio',
- 'reason' => 'Reason',
- 'remove' => 'Remove',
- 'report' => 'Report',
- 'resend' => 'Resend',
- 'resolution' => 'Resolution',
- 'resolutions' => 'Resolutions',
- 'reporter' => 'Reporter',
- 'required' => 'Required',
- 'results' => 'Results',
- 'rss-system' => 'RSS System',
- 'rules' => 'Rules',
- 'save' => 'Save',
- 'search' => 'Search',
- 'search-advanced' => 'Advanced Search',
- 'search-hide' => 'Hide Advanced Search',
- 'search-results' => 'Search Results',
- 'search-results-desc' => 'Please see your results below',
- 'second' => 'Second',
- 'select' => 'Select',
- 'similar' => 'Similar',
+ 'enable' => 'Enable',
+ 'enter' => 'Enter',
+ 'error' => 'Error',
+ 'everyday' => 'Everyday',
+ 'expired' => 'Expired',
+ 'extra' => 'Extra',
+ 'extra-stats' => 'Extra-Stats',
+ 'faq' => 'FAQ',
+ 'files' => 'Files',
+ 'fl_token' => 'Freeleech Token',
+ 'fl_tokens' => 'Freeleech Tokens',
+ 'for' => 'for',
+ 'forum' => 'Forum',
+ 'free' => 'Free',
+ 'freeleech_activated' => 'Global Freeleech Mode Activated',
+ 'given' => 'Given',
+ 'global' => 'Global',
+ 'group' => 'Group',
+ 'groups' => 'Groups',
+ 'hidden' => 'Hidden',
+ 'high-speeds' => 'High Speeds',
+ 'home' => 'Home',
+ 'hot' => 'Hot!',
+ 'hour' => 'Hour',
+ 'huge' => 'Huge',
+ 'icon' => 'Icon',
+ 'image' => 'Image',
+ 'info' => 'Info',
+ 'internal' => 'Internal',
+ 'ip' => 'IP',
+ 'is-allowed' => 'is allowed',
+ 'language' => 'Language',
+ 'languages' => 'Languages',
+ 'large' => 'Large',
+ 'latest' => 'Latest',
+ 'latest-posts' => 'Latest Posts',
+ 'latest-topics' => 'Latest Topics',
+ 'legal' => 'Legal',
+ 'legend' => 'Legend',
+ 'lists' => 'Lists',
+ 'lock-account' => 'Lock Account',
+ 'logout' => 'Logout',
+ 'media-language' => 'Media Language',
+ 'media-languages' => 'Media Languages',
+ 'members' => 'Members',
+ 'message' => 'Message',
+ 'minute' => 'Minute',
+ 'moderated-by' => 'Moderated by',
+ 'moderation' => 'Moderation',
+ 'moderation-approve' => 'Approve',
+ 'moderation-postpone' => 'Postpone',
+ 'moderation-reject' => 'Reject',
+ 'month' => 'Month',
+ 'months' => 'Months',
+ 'my' => 'My',
+ 'name' => 'Name',
+ 'navigation' => 'Navigation',
+ 'new' => 'New!',
+ 'new-adj' => 'New',
+ 'news' => 'News',
+ 'next' => 'Next',
+ 'no' => 'No',
+ 'no-comments' => 'No Comments Yet',
+ 'no-result' => 'There is no result in database for query',
+ 'notifications' => 'Notifications',
+ 'older-than' => 'Older than',
+ 'oldest' => 'Oldest',
+ 'openreg_activated' => 'Open Registration Activated',
+ 'order-by' => 'Order by',
+ 'other' => 'Other',
+ 'overview' => 'Overview',
+ 'pages' => 'Pages',
+ 'password' => 'Password',
+ 'patron' => 'Become a Patron',
+ 'pending-torrents' => 'Pending Torrents',
+ 'personal' => 'Personal',
+ 'plural-suffix' => 's',
+ 'port' => 'Port',
+ 'position' => 'Position',
+ 'posts' => 'Posts',
+ 'powered-by' => 'Powered by UNIT3D',
+ 'preview' => 'Preview',
+ 'previous' => 'Previous',
+ 'progress' => 'Progress',
+ 'publish' => 'Publish',
+ 'quantity' => 'Quantity',
+ 'quick-search' => 'Quick Search',
+ 'ratio' => 'Ratio',
+ 'reason' => 'Reason',
+ 'remove' => 'Remove',
+ 'report' => 'Report',
+ 'resend' => 'Resend',
+ 'resolution' => 'Resolution',
+ 'resolutions' => 'Resolutions',
+ 'reporter' => 'Reporter',
+ 'required' => 'Required',
+ 'results' => 'Results',
+ 'rss-system' => 'RSS System',
+ 'rules' => 'Rules',
+ 'save' => 'Save',
+ 'search' => 'Search',
+ 'search-advanced' => 'Advanced Search',
+ 'search-hide' => 'Hide Advanced Search',
+ 'search-results' => 'Search Results',
+ 'search-results-desc' => 'Please see your results below',
+ 'second' => 'Second',
+ 'select' => 'Select',
+ 'similar' => 'Similar',
'something-went-wrong' => 'Something Went Wrong!',
- 'sort' => 'Sort',
- 'special' => 'Special',
- 'sponsor' => 'Become a Sponsor',
- 'staff' => 'Staff',
- 'staff-tools' => 'Staff Tools',
- 'stats' => 'Stats',
- 'status' => 'Status',
- 'sticked' => 'Sticked',
- 'submit' => 'Submit',
- 'subscriptions' => 'Subscriptions',
- 'subtitle' => 'Subtitle',
- 'subtitles' => 'Subtitles',
- 'system-message' => 'THIS IS AN AUTOMATED SYSTEM MESSAGE, PLEASE DO NOT REPLY!',
- 'teams' => 'Teams',
- 'terms' => 'Terms of Use',
- 'the' => 'the',
- 'this' => 'this',
- 'times' => 'Times',
- 'title' => 'Title',
- 'top-bountied' => 'Top Bountied',
- 'topics' => 'Topics',
- 'tracker-codes' => 'Tracker Codes',
- 'type' => 'Type',
- 'type-verb' => 'Type',
- 'types' => 'Types',
- 'genre' => 'Genre',
- 'genres' => 'Genres',
- 'action' => 'Action',
- 'actions' => 'Actions',
- 'unknown' => 'Unknown',
+ 'sort' => 'Sort',
+ 'special' => 'Special',
+ 'sponsor' => 'Become a Sponsor',
+ 'staff' => 'Staff',
+ 'staff-tools' => 'Staff Tools',
+ 'stats' => 'Stats',
+ 'status' => 'Status',
+ 'sticked' => 'Sticked',
+ 'submit' => 'Submit',
+ 'subscriptions' => 'Subscriptions',
+ 'subtitle' => 'Subtitle',
+ 'subtitles' => 'Subtitles',
+ 'system-message' => 'THIS IS AN AUTOMATED SYSTEM MESSAGE, PLEASE DO NOT REPLY!',
+ 'teams' => 'Teams',
+ 'terms' => 'Terms of Use',
+ 'the' => 'the',
+ 'this' => 'this',
+ 'times' => 'Times',
+ 'title' => 'Title',
+ 'top-bountied' => 'Top Bountied',
+ 'topics' => 'Topics',
+ 'tracker-codes' => 'Tracker Codes',
+ 'type' => 'Type',
+ 'type-verb' => 'Type',
+ 'types' => 'Types',
+ 'genre' => 'Genre',
+ 'genres' => 'Genres',
+ 'action' => 'Action',
+ 'actions' => 'Actions',
+ 'unknown' => 'Unknown',
'unlocked-achievement' => 'You Unlocked :achievement Achievement',
- 'upload' => 'Upload',
- 'upload-guide' => 'Upload Guide',
- 'user' => 'User',
- 'username' => 'Username',
- 'users' => 'Users',
- 'view' => 'View',
- 'view-all' => 'View All',
- 'warnings' => 'Warnings',
- 'year' => 'Year',
- 'yes' => 'Yes',
- 'your' => 'Your',
- 'your-comment' => 'Your comment',
+ 'upload' => 'Upload',
+ 'upload-guide' => 'Upload Guide',
+ 'user' => 'User',
+ 'username' => 'Username',
+ 'users' => 'Users',
+ 'view' => 'View',
+ 'view-all' => 'View All',
+ 'warnings' => 'Warnings',
+ 'year' => 'Year',
+ 'yes' => 'Yes',
+ 'your' => 'Your',
+ 'your-comment' => 'Your comment',
];
diff --git a/lang/en/email.php b/lang/en/email.php
index 0726b2062..b8264f96e 100644
--- a/lang/en/email.php
+++ b/lang/en/email.php
@@ -12,46 +12,46 @@
*/
return [
- 'activate-account' => 'Activate Account',
- 'ban-reason' => 'Reason',
- 'banned-footer' => 'That\'s what you get for NOT following the rules',
- 'banned-header' => 'You Have Been Banned',
- 'bug-description' => 'Problem',
- 'bug-footer' => 'Fix That Shit!',
- 'bug-header' => 'New Bug Report from',
- 'bug-priority' => 'Priority',
- 'bug-title' => 'Bug Title',
- 'contact-header' => 'New Contact Mail from',
- 'contact-message' => 'Message',
- 'contact-name' => 'Name',
+ 'activate-account' => 'Activate Account',
+ 'ban-reason' => 'Reason',
+ 'banned-footer' => 'That\'s what you get for NOT following the rules',
+ 'banned-header' => 'You Have Been Banned',
+ 'bug-description' => 'Problem',
+ 'bug-footer' => 'Fix That Shit!',
+ 'bug-header' => 'New Bug Report from',
+ 'bug-priority' => 'Priority',
+ 'bug-title' => 'Bug Title',
+ 'contact-header' => 'New Contact Mail from',
+ 'contact-message' => 'Message',
+ 'contact-name' => 'Name',
'fail-login-greeting' => 'Account Login Failed!',
- 'fail-login-line1' => 'A failed login was detected for your account.',
- 'fail-login-line2' => 'This request originated from :ip ( :host ) at :time',
- 'fail-login-subject' => 'Failed Login Notification',
- 'footer-link' => 'If you are having trouble clicking the :actionText button, copy and paste the URL below into your web browser:',
- 'invite-header' => 'Invitation to',
- 'invite-invited' => 'You have been invited to',
- 'invite-message' => 'Message',
- 'invite-signup' => 'Sign up now',
- 'newreply-header' => 'There is new reply in your topic',
- 'newreply-message' => 'Message',
- 'newreply-replied' => 'Has replied to your topic',
- 'newreply-view' => 'View it Now',
- 'no-email-found' => 'We could not find this email in our system!',
- 'register-code' => 'To complete your account activation click the button below',
- 'register-footer' => 'If the button above does not work, copy and paste the URL into your browsers address bar',
- 'register-header' => 'Hi! Thank You for signing up on',
- 'report-comment' => 'Comment',
- 'report-email' => 'E-mail',
- 'report-header' => 'Hi Admin, A link has been reported on',
- 'report-link' => 'Link',
- 'report-link-hash' => 'Actual Link',
- 'thanks' => 'Thank You for using',
- 'unban-footer' => 'Welcome Back!',
- 'unban-header' => 'You Have Been Unbanned',
- 'unban-reason' => 'Reason',
- 'username-reminder' => 'You recently sent us a request for your username on our app. Your username is',
- 'username-sent' => 'Your username has been sent to your email address!',
- 'disabled-header' => 'Your Account Has Been Disabled',
- 'pruned-header' => 'Your Account Has Been Pruned',
+ 'fail-login-line1' => 'A failed login was detected for your account.',
+ 'fail-login-line2' => 'This request originated from :ip ( :host ) at :time',
+ 'fail-login-subject' => 'Failed Login Notification',
+ 'footer-link' => 'If you are having trouble clicking the :actionText button, copy and paste the URL below into your web browser:',
+ 'invite-header' => 'Invitation to',
+ 'invite-invited' => 'You have been invited to',
+ 'invite-message' => 'Message',
+ 'invite-signup' => 'Sign up now',
+ 'newreply-header' => 'There is new reply in your topic',
+ 'newreply-message' => 'Message',
+ 'newreply-replied' => 'Has replied to your topic',
+ 'newreply-view' => 'View it Now',
+ 'no-email-found' => 'We could not find this email in our system!',
+ 'register-code' => 'To complete your account activation click the button below',
+ 'register-footer' => 'If the button above does not work, copy and paste the URL into your browsers address bar',
+ 'register-header' => 'Hi! Thank You for signing up on',
+ 'report-comment' => 'Comment',
+ 'report-email' => 'E-mail',
+ 'report-header' => 'Hi Admin, A link has been reported on',
+ 'report-link' => 'Link',
+ 'report-link-hash' => 'Actual Link',
+ 'thanks' => 'Thank You for using',
+ 'unban-footer' => 'Welcome Back!',
+ 'unban-header' => 'You Have Been Unbanned',
+ 'unban-reason' => 'Reason',
+ 'username-reminder' => 'You recently sent us a request for your username on our app. Your username is',
+ 'username-sent' => 'Your username has been sent to your email address!',
+ 'disabled-header' => 'Your Account Has Been Disabled',
+ 'pruned-header' => 'Your Account Has Been Pruned',
];
diff --git a/lang/en/forum.php b/lang/en/forum.php
index 0828ece53..95c751359 100644
--- a/lang/en/forum.php
+++ b/lang/en/forum.php
@@ -12,76 +12,76 @@
*/
return [
- 'action' => 'Action',
- 'activity' => 'Activity',
- 'approved' => 'Approved',
- 'author' => 'Author',
- 'bug' => 'Bug',
- 'category-quick-search' => 'Topic Name Quick Search (within category)',
- 'close-topic' => 'Lock Topic',
- 'closed' => 'Closed',
- 'create-new-topic' => 'Create New Topic',
- 'created' => 'Created',
- 'created-at' => 'Created At',
- 'current' => 'Current',
- 'delete-topic' => 'Delete This Topic',
- 'delete-post-success' => 'This Post Is Now Deleted!',
- 'denied' => 'Denied',
- 'dislike-post' => 'Dislike This Post',
- 'display-forum' => 'Show topics in ',
- 'edit-post' => 'Edit Post',
- 'edit-post-success' => 'Post Successfully Edited!',
- 'edit-topic' => 'Edit Topic',
- 'forum' => 'Forum',
- 'forums' => 'Forums',
- 'forums-post-search' => 'Post Search',
- 'forums-topic-search' => 'Topic Search',
- 'implemented' => 'Implemented',
- 'in' => 'In',
- 'invalid' => 'Invalid',
- 'label' => 'Label',
- 'label-system' => 'Label System',
- 'last-message' => 'Last Message',
- 'last-post-info' => 'Last Post Info',
- 'latest' => 'Latest',
- 'like-post' => 'Like This Post',
- 'meta-category' => 'List of forums in the category',
- 'moderation' => 'Moderation',
- 'name' => 'Name',
- 'not-connected' => 'You must be connected',
- 'not-subscribed' => 'Not Subscribed',
- 'open' => 'Open',
- 'open-topic' => 'Open This Topic',
- 'permalink' => 'Permalink',
- 'pin' => 'Pin',
- 'post' => 'Post',
- 'post-quick-search' => 'Post Body Quick Search',
- 'posts' => 'Posts',
- 'quote' => 'Quote',
- 'read-topic' => 'Read The Topic',
- 'replies' => 'Replies',
- 'reply-topic-error' => 'You Cannot Reply To This Topic!',
- 'reply-topic-success' => 'Post Successfully Posted',
- 'send-new-topic' => 'Save This Topic',
- 'solved' => 'Solved',
- 'state' => 'State',
- 'stats' => 'Stats',
- 'select-all-forum' => 'All Categories/Forums',
- 'subscribe' => 'Subscribe',
- 'subscribed' => 'Subscribed',
+ 'action' => 'Action',
+ 'activity' => 'Activity',
+ 'approved' => 'Approved',
+ 'author' => 'Author',
+ 'bug' => 'Bug',
+ 'category-quick-search' => 'Topic Name Quick Search (within category)',
+ 'close-topic' => 'Lock Topic',
+ 'closed' => 'Closed',
+ 'create-new-topic' => 'Create New Topic',
+ 'created' => 'Created',
+ 'created-at' => 'Created At',
+ 'current' => 'Current',
+ 'delete-topic' => 'Delete This Topic',
+ 'delete-post-success' => 'This Post Is Now Deleted!',
+ 'denied' => 'Denied',
+ 'dislike-post' => 'Dislike This Post',
+ 'display-forum' => 'Show topics in ',
+ 'edit-post' => 'Edit Post',
+ 'edit-post-success' => 'Post Successfully Edited!',
+ 'edit-topic' => 'Edit Topic',
+ 'forum' => 'Forum',
+ 'forums' => 'Forums',
+ 'forums-post-search' => 'Post Search',
+ 'forums-topic-search' => 'Topic Search',
+ 'implemented' => 'Implemented',
+ 'in' => 'In',
+ 'invalid' => 'Invalid',
+ 'label' => 'Label',
+ 'label-system' => 'Label System',
+ 'last-message' => 'Last Message',
+ 'last-post-info' => 'Last Post Info',
+ 'latest' => 'Latest',
+ 'like-post' => 'Like This Post',
+ 'meta-category' => 'List of forums in the category',
+ 'moderation' => 'Moderation',
+ 'name' => 'Name',
+ 'not-connected' => 'You must be connected',
+ 'not-subscribed' => 'Not Subscribed',
+ 'open' => 'Open',
+ 'open-topic' => 'Open This Topic',
+ 'permalink' => 'Permalink',
+ 'pin' => 'Pin',
+ 'post' => 'Post',
+ 'post-quick-search' => 'Post Body Quick Search',
+ 'posts' => 'Posts',
+ 'quote' => 'Quote',
+ 'read-topic' => 'Read The Topic',
+ 'replies' => 'Replies',
+ 'reply-topic-error' => 'You Cannot Reply To This Topic!',
+ 'reply-topic-success' => 'Post Successfully Posted',
+ 'send-new-topic' => 'Save This Topic',
+ 'solved' => 'Solved',
+ 'state' => 'State',
+ 'stats' => 'Stats',
+ 'select-all-forum' => 'All Categories/Forums',
+ 'subscribe' => 'Subscribe',
+ 'subscribed' => 'Subscribed',
'subscription-quick-search' => 'Topic Name Quick Search (within subscriptions)',
- 'suggestion' => 'Suggestion',
- 'tip-post-total' => 'This Post Has Been Tipped A Total Of',
- 'tip-this-post' => 'Tip This Poster',
- 'topic' => 'Topic',
- 'topic-closed' => 'This Topic is Closed',
- 'topic-name' => 'Topic Name',
- 'topic-quick-search' => 'Topic Name Quick Search',
- 'topic-title' => 'Title of This Topic',
- 'topics' => 'Topics',
- 'unpin' => 'Unpin',
- 'updated-at' => 'Updated At',
- 'unsubscribe' => 'Unsubscribe',
- 'view-all' => 'View All Topics',
- 'views' => 'Views',
+ 'suggestion' => 'Suggestion',
+ 'tip-post-total' => 'This Post Has Been Tipped A Total Of',
+ 'tip-this-post' => 'Tip This Poster',
+ 'topic' => 'Topic',
+ 'topic-closed' => 'This Topic is Closed',
+ 'topic-name' => 'Topic Name',
+ 'topic-quick-search' => 'Topic Name Quick Search',
+ 'topic-title' => 'Title of This Topic',
+ 'topics' => 'Topics',
+ 'unpin' => 'Unpin',
+ 'updated-at' => 'Updated At',
+ 'unsubscribe' => 'Unsubscribe',
+ 'view-all' => 'View All Topics',
+ 'views' => 'Views',
];
diff --git a/lang/en/graveyard.php b/lang/en/graveyard.php
index c722cc384..5ec569bfc 100644
--- a/lang/en/graveyard.php
+++ b/lang/en/graveyard.php
@@ -12,24 +12,24 @@
*/
return [
- 'current-seedtime' => 'Current Seedtime',
- 'dead' => 'Dead',
- 'graveyard' => 'Graveyard',
- 'guidelines' => 'Guidelines',
- 'guidelines-content' => '1) You can not resurrect your own upload.
2) Don\'t resurrect something you can not commit to.',
- 'howto' => 'Heres The Rule',
- 'howto-desc1' => 'You must seed :name for 30 days for a succesful ressurection. In which case when your current seedtime of',
- 'howto-desc2' => 'You will be rewarded',
- 'howto-hits' => 'Hits',
- 'not-rewarded' => 'Not Rewarded',
- 'pending' => 'Pending',
- 'resurrect' => 'Resurrect',
- 'resurrect-canceled' => 'Resurrection Successfully Canceled!',
- 'resurrect-complete' => 'Torrent Resurrection Complete! You will be rewarded automatically once seedtime requirements are met.',
- 'resurrect-date' => 'Resurrect Date',
- 'resurrect-failed-own' => 'Torrent Resurrection Failed! You cannot resurrect your own uploads.',
- 'resurrect-failed-pending' => 'Torrent Resurrection Failed! This torrent is already pending a resurrection.',
- 'reward' => 'Freeleech tokens',
- 'rewarded' => 'Rewarded',
- 'seedtime-goal' => 'Seedtime Goal',
+ 'current-seedtime' => 'Current Seedtime',
+ 'dead' => 'Dead',
+ 'graveyard' => 'Graveyard',
+ 'guidelines' => 'Guidelines',
+ 'guidelines-content' => '1) You can not resurrect your own upload.
2) Don\'t resurrect something you can not commit to.',
+ 'howto' => 'Heres The Rule',
+ 'howto-desc1' => 'You must seed :name for 30 days for a succesful ressurection. In which case when your current seedtime of',
+ 'howto-desc2' => 'You will be rewarded',
+ 'howto-hits' => 'Hits',
+ 'not-rewarded' => 'Not Rewarded',
+ 'pending' => 'Pending',
+ 'resurrect' => 'Resurrect',
+ 'resurrect-canceled' => 'Resurrection Successfully Canceled!',
+ 'resurrect-complete' => 'Torrent Resurrection Complete! You will be rewarded automatically once seedtime requirements are met.',
+ 'resurrect-date' => 'Resurrect Date',
+ 'resurrect-failed-own' => 'Torrent Resurrection Failed! You cannot resurrect your own uploads.',
+ 'resurrect-failed-pending' => 'Torrent Resurrection Failed! This torrent is already pending a resurrection.',
+ 'reward' => 'Freeleech tokens',
+ 'rewarded' => 'Rewarded',
+ 'seedtime-goal' => 'Seedtime Goal',
];
diff --git a/lang/en/mediahub.php b/lang/en/mediahub.php
index 0bfda3893..71f43798d 100644
--- a/lang/en/mediahub.php
+++ b/lang/en/mediahub.php
@@ -12,29 +12,29 @@
*/
return [
- 'born' => 'Born:',
- 'collections' => 'Collections',
- 'companies' => 'Companies',
- 'disclaimer' => 'This product uses the TMDb API but is not endorsed or certified by TMDb.',
- 'episodes' => 'Episodes',
- 'first-seen' => 'First Appeared:',
- 'genres' => 'Genres',
- 'includes' => 'Includes:',
- 'latest-project' => 'Latest Project:',
- 'networks' => 'Networks',
- 'no-data' => 'No Data Found!',
- 'movie' => 'Movie',
- 'movies' => 'Movies',
- 'movie-credits' => 'Movie Credits:',
- 'persons' => 'Persons',
- 'plot' => 'Plot:',
- 'release-date' => 'Release date:',
- 'seasons' => 'Seasons',
- 'select-hub' => 'Please Select A Hub',
- 'show' => 'TV Show',
- 'shows' => 'TV Shows',
- 'title' => 'MediaHub',
- 'tv-credits' => 'TV Credits:',
- 'view-collection' => 'View The Collection',
- 'wiki-read' => 'Read Full Bio On Wikipedia:',
+ 'born' => 'Born:',
+ 'collections' => 'Collections',
+ 'companies' => 'Companies',
+ 'disclaimer' => 'This product uses the TMDb API but is not endorsed or certified by TMDb.',
+ 'episodes' => 'Episodes',
+ 'first-seen' => 'First Appeared:',
+ 'genres' => 'Genres',
+ 'includes' => 'Includes:',
+ 'latest-project' => 'Latest Project:',
+ 'networks' => 'Networks',
+ 'no-data' => 'No Data Found!',
+ 'movie' => 'Movie',
+ 'movies' => 'Movies',
+ 'movie-credits' => 'Movie Credits:',
+ 'persons' => 'Persons',
+ 'plot' => 'Plot:',
+ 'release-date' => 'Release date:',
+ 'seasons' => 'Seasons',
+ 'select-hub' => 'Please Select A Hub',
+ 'show' => 'TV Show',
+ 'shows' => 'TV Shows',
+ 'title' => 'MediaHub',
+ 'tv-credits' => 'TV Credits:',
+ 'view-collection' => 'View The Collection',
+ 'wiki-read' => 'Read Full Bio On Wikipedia:',
];
diff --git a/lang/en/notification.php b/lang/en/notification.php
index bf14ff44a..296075e8b 100644
--- a/lang/en/notification.php
+++ b/lang/en/notification.php
@@ -13,32 +13,32 @@
return [
'already-marked-read' => 'Notification Already Marked As Read!',
- 'all-deleted' => 'All Notifications Deleted!',
- 'all-marked-read' => 'All Notifications Marked As Read!',
- 'bon-gifts' => 'Bon Gifts',
- 'comment-tags' => 'Comment Tags',
- 'date' => 'Date',
- 'delete' => 'Delete',
- 'delete-all' => 'Delete All Notifications',
- 'deleted' => 'Notification Deleted!',
- 'filter-by-type' => 'Filter By Notification Type',
- 'mark-all-read' => 'Mark All as Read',
- 'mark-read' => 'Mark as Read',
- 'marked-read' => 'Notification Marked As Read!',
- 'message' => 'Message',
- 'no-notifications' => 'There are no notifications found',
- 'not-existent' => 'Notification Does Not Exist!',
- 'notifications' => 'Notifications',
- 'post-tags' => 'Post Tags',
- 'post-tips' => 'Post Tips',
- 'read' => 'Read',
- 'request-approvals' => 'Request Approvals',
- 'request-bounties' => 'Request Bounties',
- 'request-claims' => 'Request Claim',
- 'request-fills' => 'Request Fills',
- 'request-rejections' => 'Request Rejections',
- 'request-unclaims' => 'Request Unclaims',
- 'reseed-requests' => 'Reseed Request',
- 'title' => 'Title',
- 'unfollows' => 'Unfollows',
+ 'all-deleted' => 'All Notifications Deleted!',
+ 'all-marked-read' => 'All Notifications Marked As Read!',
+ 'bon-gifts' => 'Bon Gifts',
+ 'comment-tags' => 'Comment Tags',
+ 'date' => 'Date',
+ 'delete' => 'Delete',
+ 'delete-all' => 'Delete All Notifications',
+ 'deleted' => 'Notification Deleted!',
+ 'filter-by-type' => 'Filter By Notification Type',
+ 'mark-all-read' => 'Mark All as Read',
+ 'mark-read' => 'Mark as Read',
+ 'marked-read' => 'Notification Marked As Read!',
+ 'message' => 'Message',
+ 'no-notifications' => 'There are no notifications found',
+ 'not-existent' => 'Notification Does Not Exist!',
+ 'notifications' => 'Notifications',
+ 'post-tags' => 'Post Tags',
+ 'post-tips' => 'Post Tips',
+ 'read' => 'Read',
+ 'request-approvals' => 'Request Approvals',
+ 'request-bounties' => 'Request Bounties',
+ 'request-claims' => 'Request Claim',
+ 'request-fills' => 'Request Fills',
+ 'request-rejections' => 'Request Rejections',
+ 'request-unclaims' => 'Request Unclaims',
+ 'reseed-requests' => 'Reseed Request',
+ 'title' => 'Title',
+ 'unfollows' => 'Unfollows',
];
diff --git a/lang/en/page.php b/lang/en/page.php
index fcd40fe1c..912c6276e 100644
--- a/lang/en/page.php
+++ b/lang/en/page.php
@@ -12,26 +12,26 @@
*/
return [
- 'aboutus-advantage' => 'The Advantage',
- 'aboutus-advantage1' => 'We have experienced members and staff that are well versed in the world of HD video / audio and technical support.',
- 'aboutus-advantage2' => 'Along with our extensive passion for movies and TV shows, we also offer one of the best selections of something that most don\'t - FANRES! A BIG THANK YOU to our content providers.',
- 'aboutus-advantage3' => 'While we do accept donations to keep the site up and running there will be no pestering PMs or banners on site. No begging from us.',
- 'aboutus-advantage4' => 'Our community is second to none for its early age. Between our staff and userbase, we\'re always here to help. We\'re passionate about making sure your experience on :title is nothing short of amazing.',
- 'aboutus-advantage5' => 'Our service is used daily by many people across the globe. We\'ve proven that we care about the functionality and security of our codebase and it can be trusted and relied on. Our developers work daily to provide a truly nex-gen codebase.',
- 'aboutus-header' => 'Hi there',
- 'aboutus-rules' => 'What we need from you',
- 'aboutus-rules1' => 'To be an active member of the community! This means to join in the conversations productively, add approved content and help other users if you are able.',
- 'aboutus-rules2' => 'To read the rules in full and please respect them!',
- 'aboutus-rules3' => 'Make suggestions! We are striving to make :title better each day. We aren\'t saying that every suggestion will be used, but it never hurts to see new ideas.',
- 'aboutus-welcome' => 'Lets talk about',
- 'aboutus-welcome-desc' => ':title is a community-built Movie/TV/FANRES database. Every piece of data has been added by our amazing members. :titles strong focus is on HD content, a proactive userbase, an awesome/secure codebase and a helpful and friendly Staff Team.',
- 'blacklist-btclient' => 'BitTorrent Client',
- 'blacklist-clients' => 'Clients',
- 'blacklist-desc' => 'The Following Bittorrent Clients Are Blacklisted/Forbidden From Annoucing To :title',
+ 'aboutus-advantage' => 'The Advantage',
+ 'aboutus-advantage1' => 'We have experienced members and staff that are well versed in the world of HD video / audio and technical support.',
+ 'aboutus-advantage2' => 'Along with our extensive passion for movies and TV shows, we also offer one of the best selections of something that most don\'t - FANRES! A BIG THANK YOU to our content providers.',
+ 'aboutus-advantage3' => 'While we do accept donations to keep the site up and running there will be no pestering PMs or banners on site. No begging from us.',
+ 'aboutus-advantage4' => 'Our community is second to none for its early age. Between our staff and userbase, we\'re always here to help. We\'re passionate about making sure your experience on :title is nothing short of amazing.',
+ 'aboutus-advantage5' => 'Our service is used daily by many people across the globe. We\'ve proven that we care about the functionality and security of our codebase and it can be trusted and relied on. Our developers work daily to provide a truly nex-gen codebase.',
+ 'aboutus-header' => 'Hi there',
+ 'aboutus-rules' => 'What we need from you',
+ 'aboutus-rules1' => 'To be an active member of the community! This means to join in the conversations productively, add approved content and help other users if you are able.',
+ 'aboutus-rules2' => 'To read the rules in full and please respect them!',
+ 'aboutus-rules3' => 'Make suggestions! We are striving to make :title better each day. We aren\'t saying that every suggestion will be used, but it never hurts to see new ideas.',
+ 'aboutus-welcome' => 'Lets talk about',
+ 'aboutus-welcome-desc' => ':title is a community-built Movie/TV/FANRES database. Every piece of data has been added by our amazing members. :titles strong focus is on HD content, a proactive userbase, an awesome/secure codebase and a helpful and friendly Staff Team.',
+ 'blacklist-btclient' => 'BitTorrent Client',
+ 'blacklist-clients' => 'Clients',
+ 'blacklist-desc' => 'The Following Bittorrent Clients Are Blacklisted/Forbidden From Annoucing To :title',
'blacklist-emaildomain' => 'Blocked Domain',
- 'email-blacklist-desc' => 'The Following Email Domains Are Blocked From Being Used. You Cannot Register Or Send A Invite To The Following.',
- 'email-whitelist-desc' => 'The Following Email Domains Are The Only Email Domains Allowed To Be Used. You May Only Register Or Send A Invite Using The Following.',
- 'staff-group' => 'Group',
- 'staff-title' => 'Title',
+ 'email-blacklist-desc' => 'The Following Email Domains Are Blocked From Being Used. You Cannot Register Or Send A Invite To The Following.',
+ 'email-whitelist-desc' => 'The Following Email Domains Are The Only Email Domains Allowed To Be Used. You May Only Register Or Send A Invite Using The Following.',
+ 'staff-group' => 'Group',
+ 'staff-title' => 'Title',
'whitelist-emaildomain' => 'Trusted Domain',
];
diff --git a/lang/en/pagination.php b/lang/en/pagination.php
index 33f9560e0..ffe8cf311 100644
--- a/lang/en/pagination.php
+++ b/lang/en/pagination.php
@@ -24,5 +24,5 @@ return [
*/
'previous' => '« Previous',
- 'next' => 'Next »',
+ 'next' => 'Next »',
];
diff --git a/lang/en/passwords.php b/lang/en/passwords.php
index f37972f70..8e8471548 100644
--- a/lang/en/passwords.php
+++ b/lang/en/passwords.php
@@ -24,8 +24,8 @@ return [
*/
'password' => 'Passwords must be at least six characters and match the confirmation.',
- 'reset' => 'Your password has been reset!',
- 'sent' => 'We have e-mailed your password reset link!',
- 'token' => 'This password reset token is invalid.',
- 'user' => 'We can\'t find a user with that e-mail address.',
+ 'reset' => 'Your password has been reset!',
+ 'sent' => 'We have e-mailed your password reset link!',
+ 'token' => 'This password reset token is invalid.',
+ 'user' => 'We can\'t find a user with that e-mail address.',
];
diff --git a/lang/en/playlist.php b/lang/en/playlist.php
index 43f6a6b8e..f82a94edb 100644
--- a/lang/en/playlist.php
+++ b/lang/en/playlist.php
@@ -12,26 +12,26 @@
*/
return [
- 'about' => 'Here you will find user compiled playlists that contain titles to their liking!',
- 'attached-success' => 'Torrent Has Successfully Been Attached To Your Playlist.',
- 'add-to-playlist' => 'Add Torrent To Playlist',
- 'add-torrent' => 'Add Torrent',
- 'added-by' => 'By:',
- 'cover' => 'Select A Cover Image',
- 'create' => 'Create New Playlist',
- 'delete-playlist' => 'Delete Playlist',
- 'deleted' => 'Playlist Deleted!',
- 'detached-success' => 'Torrent Has Successfully Been Detached From Your Playlist.',
- 'desc' => 'Playlist Description',
- 'download-all' => 'Download All Playlist Torrents',
- 'edit-playlist' => 'Edit Playlist',
- 'list-by' => 'A list made by:',
- 'list-about' => 'A list about:',
- 'is-private' => 'Private Playlist?',
- 'playlists' => 'Playlists',
- 'private-error' => 'This is a private playlist! You do not have access to other users\' private playlists!',
+ 'about' => 'Here you will find user compiled playlists that contain titles to their liking!',
+ 'attached-success' => 'Torrent Has Successfully Been Attached To Your Playlist.',
+ 'add-to-playlist' => 'Add Torrent To Playlist',
+ 'add-torrent' => 'Add Torrent',
+ 'added-by' => 'By:',
+ 'cover' => 'Select A Cover Image',
+ 'create' => 'Create New Playlist',
+ 'delete-playlist' => 'Delete Playlist',
+ 'deleted' => 'Playlist Deleted!',
+ 'detached-success' => 'Torrent Has Successfully Been Detached From Your Playlist.',
+ 'desc' => 'Playlist Description',
+ 'download-all' => 'Download All Playlist Torrents',
+ 'edit-playlist' => 'Edit Playlist',
+ 'list-by' => 'A list made by:',
+ 'list-about' => 'A list about:',
+ 'is-private' => 'Private Playlist?',
+ 'playlists' => 'Playlists',
+ 'private-error' => 'This is a private playlist! You do not have access to other users\' private playlists!',
'published-success' => 'Your Playlist Was Created Successfully!',
- 'title' => 'Title',
- 'titles' => 'Titles',
- 'update-success' => 'Your Playlist Has Successfully Been Updated!',
+ 'title' => 'Title',
+ 'titles' => 'Titles',
+ 'update-success' => 'Your Playlist Has Successfully Been Updated!',
];
diff --git a/lang/en/pm.php b/lang/en/pm.php
index 6c19fa3de..20bc0146c 100644
--- a/lang/en/pm.php
+++ b/lang/en/pm.php
@@ -13,32 +13,32 @@
return [
'all-marked-read' => 'Your Messages Have All Been Marked As Read!',
- 'create' => 'Create',
- 'delete' => 'Delete',
- 'delete-success' => 'PM Was Deleted Successfully!',
- 'enter-subject' => 'Enter Subject',
- 'error' => 'What Are You Trying To Do Here!',
- 'from' => 'From',
- 'inbox' => 'Inbox',
- 'mark-all-read' => 'Mark All Messages as Read',
- 'message' => 'Message',
- 'messages' => 'Messages',
- 'new' => 'New Message',
- 'outbox' => 'Outbox',
- 'private' => 'Private',
- 'read' => 'Read',
- 'received-at' => 'Received At',
- 'refresh' => 'Refresh',
- 'reply' => 'Reply',
- 'search' => 'Search by Subject',
- 'select' => 'Select a User',
- 'send' => 'Send PM',
- 'send-to' => 'Send PM To',
- 'sent' => 'Sent',
- 'sent-at' => 'Sent At',
- 'sent-success' => 'Your PM Was Sent Successfully!',
- 'subject' => 'Subject',
- 'to' => 'To',
- 'unread' => 'Unread',
- 'empty-inbox' => 'Empty Inbox',
+ 'create' => 'Create',
+ 'delete' => 'Delete',
+ 'delete-success' => 'PM Was Deleted Successfully!',
+ 'enter-subject' => 'Enter Subject',
+ 'error' => 'What Are You Trying To Do Here!',
+ 'from' => 'From',
+ 'inbox' => 'Inbox',
+ 'mark-all-read' => 'Mark All Messages as Read',
+ 'message' => 'Message',
+ 'messages' => 'Messages',
+ 'new' => 'New Message',
+ 'outbox' => 'Outbox',
+ 'private' => 'Private',
+ 'read' => 'Read',
+ 'received-at' => 'Received At',
+ 'refresh' => 'Refresh',
+ 'reply' => 'Reply',
+ 'search' => 'Search by Subject',
+ 'select' => 'Select a User',
+ 'send' => 'Send PM',
+ 'send-to' => 'Send PM To',
+ 'sent' => 'Sent',
+ 'sent-at' => 'Sent At',
+ 'sent-success' => 'Your PM Was Sent Successfully!',
+ 'subject' => 'Subject',
+ 'to' => 'To',
+ 'unread' => 'Unread',
+ 'empty-inbox' => 'Empty Inbox',
];
diff --git a/lang/en/poll.php b/lang/en/poll.php
index eb9583983..aba9518bb 100644
--- a/lang/en/poll.php
+++ b/lang/en/poll.php
@@ -12,22 +12,22 @@
*/
return [
- 'add-option' => 'Add Option',
- 'already-voted-error' => 'Bro have already vote on this poll. Your vote has not been counted.',
+ 'add-option' => 'Add Option',
+ 'already-voted-error' => 'Bro have already vote on this poll. Your vote has not been counted.',
'already-voted-result' => 'You have already vote on this poll. Here are the results.',
- 'create-poll' => 'Create Poll',
- 'current' => 'Current Poll(s)',
- 'delete-option' => 'Delete Option',
- 'edit-poll' => 'Edit Poll',
- 'multiple-choice' => 'This is a multiple choice poll. Select as many answers as you like.',
- 'option' => 'Option',
- 'poll' => 'Poll',
- 'polls' => 'Polls',
- 'results' => 'Poll Results',
- 'title' => 'Title',
- 'total' => 'Total Votes Ever',
- 'vote' => 'Vote',
- 'vote-counted' => 'Your vote has been counted.',
- 'vote-now' => 'Get Your Vote In Now!',
- 'votes' => 'Votes',
+ 'create-poll' => 'Create Poll',
+ 'current' => 'Current Poll(s)',
+ 'delete-option' => 'Delete Option',
+ 'edit-poll' => 'Edit Poll',
+ 'multiple-choice' => 'This is a multiple choice poll. Select as many answers as you like.',
+ 'option' => 'Option',
+ 'poll' => 'Poll',
+ 'polls' => 'Polls',
+ 'results' => 'Poll Results',
+ 'title' => 'Title',
+ 'total' => 'Total Votes Ever',
+ 'vote' => 'Vote',
+ 'vote-counted' => 'Your vote has been counted.',
+ 'vote-now' => 'Get Your Vote In Now!',
+ 'votes' => 'Votes',
];
diff --git a/lang/en/request.php b/lang/en/request.php
index 1bda41bd8..743ddaf73 100644
--- a/lang/en/request.php
+++ b/lang/en/request.php
@@ -12,89 +12,89 @@
*/
return [
- 'access-error' => 'You don\'t have access to approve this request.',
+ 'access-error' => 'You don\'t have access to approve this request.',
'access-delete-error' => 'You don\'t have access to delete this request.',
- 'add-request' => 'Add Request',
- 'added-bonus' => 'Your bonus has been successfully added.',
- 'added-request' => 'Request Added.',
- 'age' => 'Age',
- 'all-requests' => 'All Requests',
- 'already-approved' => 'Seems this request was already approved',
- 'already-claimed' => 'Someone else has already claimed this request buddy.',
- 'already-rejected' => 'Seems this request was already rejected',
- 'approve' => 'Approve',
- 'approved-anon' => 'You have approved %s and the bounty has been awarded to a anonymous user',
- 'approved-user' => 'You have approved %s and the bounty has been awarded to %s',
- 'bounty' => 'Bounty',
- 'bounty-claimed' => 'Bounty Claimed',
- 'bounty-unclaimed' => 'Bounty Unclaimed',
- 'category' => 'Category',
- 'claim' => 'Claim',
- 'claim-anon-choose' => 'Please Choose Wisely',
- 'claim-as-anon' => 'Would You Like To Claim This Anonomously?',
- 'claim-now' => 'Claim Now',
- 'claimed' => 'Claimed',
- 'claimed-success' => 'Request Successfully Claimed',
- 'current' => 'Current',
- 'delete' => 'Delete this Request',
+ 'add-request' => 'Add Request',
+ 'added-bonus' => 'Your bonus has been successfully added.',
+ 'added-request' => 'Request Added.',
+ 'age' => 'Age',
+ 'all-requests' => 'All Requests',
+ 'already-approved' => 'Seems this request was already approved',
+ 'already-claimed' => 'Someone else has already claimed this request buddy.',
+ 'already-rejected' => 'Seems this request was already rejected',
+ 'approve' => 'Approve',
+ 'approved-anon' => 'You have approved %s and the bounty has been awarded to a anonymous user',
+ 'approved-user' => 'You have approved %s and the bounty has been awarded to %s',
+ 'bounty' => 'Bounty',
+ 'bounty-claimed' => 'Bounty Claimed',
+ 'bounty-unclaimed' => 'Bounty Unclaimed',
+ 'category' => 'Category',
+ 'claim' => 'Claim',
+ 'claim-anon-choose' => 'Please Choose Wisely',
+ 'claim-as-anon' => 'Would You Like To Claim This Anonomously?',
+ 'claim-now' => 'Claim Now',
+ 'claimed' => 'Claimed',
+ 'claimed-success' => 'Request Successfully Claimed',
+ 'current' => 'Current',
+ 'delete' => 'Delete this Request',
'delete-confirmation' => 'Are you sure you want to delete this Request',
- 'delete-filled' => 'This request can only be deleted if it has not been filled',
- 'deleted' => 'You have deleted %s',
- 'description' => 'Description',
- 'dont-have-bps' => 'You don\'t have enough Bonus',
- 'edit-request' => 'Edit Request',
- 'edited-request' => 'Request Edited Successfully.',
- 'enter-bp' => 'Enter Bonus Points (minimum 100)',
- 'enter-hash' => 'Enter the Info Hash of the uploaded Torrent',
- 'fill' => 'Fill',
- 'fill-request' => 'Fill this Request',
- 'filled' => 'Filled',
- 'filled-by' => 'Filled by',
- 'for' => 'for',
- 'fulfill' => 'Fulfill',
- 'last-vote' => 'Last Vote',
- 'my-requests' => 'My Requests',
- 'my-filled' => 'My filled',
- 'my-claims' => 'My claims',
- 'my-voted' => 'My voted',
- 'no' => 'No,',
- 'no-imdb-id' => 'All Movie/TV Requests Must Contain a TMDB/IMDB Number',
- 'no-privileges' => 'Error: Your Request Rights have been Disabled',
- 'no-privileges-desc' => 'If you feel this is in error, please contact Staff',
- 'no-refunds' => 'BON exchanges on creating, filling and bounties are final!
NO REFUNDS!',
- 'pending' => 'Pending',
- 'pending-approval' => 'Your request fill is pending approval by the Requester.',
- 'pending-moderation' => 'The torrent info_hash you are trying to use is valid in our database but is still pending moderation. Please wait for your torrent to be approved and then try again.',
- 'reason' => 'Reason',
- 'reject' => 'Reject',
- 'report' => 'Report Request',
- 'request' => 'Request',
- 'request-details' => 'Request Details',
- 'request-reset' => 'This request has been reset.',
- 'requested-by' => 'Requested by',
- 'requests' => 'Requests',
- 'required' => 'Required',
- 'reset' => 'Reset',
- 'reset-confirmation' => 'Are you sure you want to reset this Request',
- 'reset-request' => 'Reset this Request',
- 'resolution' => 'Resolution',
- 'resolutions' => 'Resolutions',
- 'reward' => 'Reward',
- 'reward-desc' => 'How many Bonus Points would you like to reward? Minimum 100 BP',
- 'reward-from' => 'From',
- 'title' => 'Title',
- 'torrent-hash' => 'Torrent Hash',
- 'total-bounty' => 'Total Bounty',
- 'type' => 'Type',
- 'unclaim' => 'Unclaim this Request',
- 'unclaim-error' => 'Nothing To Unclaim.',
- 'unclaimed-success' => 'Request Successfully Un-Claimed',
- 'unfilled' => 'Unfilled',
- 'view-filled' => 'View Filled',
- 'view-unfilled' => 'View Unfilled',
- 'vote' => 'Vote',
- 'vote-that' => 'Vote this Request',
- 'voters' => 'Voters',
- 'votes' => 'Votes',
- 'yes' => 'Yes',
+ 'delete-filled' => 'This request can only be deleted if it has not been filled',
+ 'deleted' => 'You have deleted %s',
+ 'description' => 'Description',
+ 'dont-have-bps' => 'You don\'t have enough Bonus',
+ 'edit-request' => 'Edit Request',
+ 'edited-request' => 'Request Edited Successfully.',
+ 'enter-bp' => 'Enter Bonus Points (minimum 100)',
+ 'enter-hash' => 'Enter the Info Hash of the uploaded Torrent',
+ 'fill' => 'Fill',
+ 'fill-request' => 'Fill this Request',
+ 'filled' => 'Filled',
+ 'filled-by' => 'Filled by',
+ 'for' => 'for',
+ 'fulfill' => 'Fulfill',
+ 'last-vote' => 'Last Vote',
+ 'my-requests' => 'My Requests',
+ 'my-filled' => 'My filled',
+ 'my-claims' => 'My claims',
+ 'my-voted' => 'My voted',
+ 'no' => 'No,',
+ 'no-imdb-id' => 'All Movie/TV Requests Must Contain a TMDB/IMDB Number',
+ 'no-privileges' => 'Error: Your Request Rights have been Disabled',
+ 'no-privileges-desc' => 'If you feel this is in error, please contact Staff',
+ 'no-refunds' => 'BON exchanges on creating, filling and bounties are final!
NO REFUNDS!',
+ 'pending' => 'Pending',
+ 'pending-approval' => 'Your request fill is pending approval by the Requester.',
+ 'pending-moderation' => 'The torrent info_hash you are trying to use is valid in our database but is still pending moderation. Please wait for your torrent to be approved and then try again.',
+ 'reason' => 'Reason',
+ 'reject' => 'Reject',
+ 'report' => 'Report Request',
+ 'request' => 'Request',
+ 'request-details' => 'Request Details',
+ 'request-reset' => 'This request has been reset.',
+ 'requested-by' => 'Requested by',
+ 'requests' => 'Requests',
+ 'required' => 'Required',
+ 'reset' => 'Reset',
+ 'reset-confirmation' => 'Are you sure you want to reset this Request',
+ 'reset-request' => 'Reset this Request',
+ 'resolution' => 'Resolution',
+ 'resolutions' => 'Resolutions',
+ 'reward' => 'Reward',
+ 'reward-desc' => 'How many Bonus Points would you like to reward? Minimum 100 BP',
+ 'reward-from' => 'From',
+ 'title' => 'Title',
+ 'torrent-hash' => 'Torrent Hash',
+ 'total-bounty' => 'Total Bounty',
+ 'type' => 'Type',
+ 'unclaim' => 'Unclaim this Request',
+ 'unclaim-error' => 'Nothing To Unclaim.',
+ 'unclaimed-success' => 'Request Successfully Un-Claimed',
+ 'unfilled' => 'Unfilled',
+ 'view-filled' => 'View Filled',
+ 'view-unfilled' => 'View Unfilled',
+ 'vote' => 'Vote',
+ 'vote-that' => 'Vote this Request',
+ 'voters' => 'Voters',
+ 'votes' => 'Votes',
+ 'yes' => 'Yes',
];
diff --git a/lang/en/rss.php b/lang/en/rss.php
index c05ad206a..90f8cc014 100644
--- a/lang/en/rss.php
+++ b/lang/en/rss.php
@@ -12,23 +12,23 @@
*/
return [
- 'create' => 'Create',
- 'create-private-feed' => 'Create Private RSS Feed',
- 'create-public-feed' => 'Create Public RSS Feed',
- 'created' => 'Private RSS Feed Created',
- 'delete' => 'Delete',
- 'deleted' => 'RSS Feed Deleted!',
- 'edit' => 'Edit',
- 'edit-private-feed' => 'Edit Private RSS Feed',
- 'edit-public-feed' => 'Edit Public RSS Feed',
- 'error' => 'Unable To Process Request',
- 'feed' => 'Feed',
- 'feeds' => 'Feeds',
- 'name' => 'Name',
- 'public' => 'Public',
- 'private' => 'Private',
- 'rss' => 'RSS',
- 'rss-feed' => 'RSS Feed',
- 'type' => 'Type',
- 'updated' => 'Private RSS Feed Updated',
+ 'create' => 'Create',
+ 'create-private-feed' => 'Create Private RSS Feed',
+ 'create-public-feed' => 'Create Public RSS Feed',
+ 'created' => 'Private RSS Feed Created',
+ 'delete' => 'Delete',
+ 'deleted' => 'RSS Feed Deleted!',
+ 'edit' => 'Edit',
+ 'edit-private-feed' => 'Edit Private RSS Feed',
+ 'edit-public-feed' => 'Edit Public RSS Feed',
+ 'error' => 'Unable To Process Request',
+ 'feed' => 'Feed',
+ 'feeds' => 'Feeds',
+ 'name' => 'Name',
+ 'public' => 'Public',
+ 'private' => 'Private',
+ 'rss' => 'RSS',
+ 'rss-feed' => 'RSS Feed',
+ 'type' => 'Type',
+ 'updated' => 'Private RSS Feed Updated',
];
diff --git a/lang/en/staff.php b/lang/en/staff.php
index 214a98769..d14b4d84a 100644
--- a/lang/en/staff.php
+++ b/lang/en/staff.php
@@ -12,62 +12,62 @@
*/
return [
- 'audit-log' => 'Audit Log',
- 'articles' => 'Articles',
- 'application' => 'Application',
- 'applications' => 'Applications',
- 'application-type' => 'Type',
- 'application-image-proofs'=> 'Image Proofs',
- 'application-referrer' => 'Referrer',
- 'article-content' => 'Content',
- 'bans-log' => 'Bans Log',
- 'blocks' => 'Blocks',
- 'bon-exchange' => 'BON Exchange',
- 'bot' => 'Bot',
- 'bots' => 'Bots',
- 'chat' => 'Chat',
- 'config-manager' => 'Config Manager',
- 'dashboard' => 'Dashboard',
- 'failed-login-log' => 'Failed Login Log',
- 'flush-ghost-peers' => 'Flush Ghost Peers',
- 'forums' => 'Forums',
- 'frontend' => 'Frontend',
- 'general-tools' => 'General Tools',
- 'groups' => 'Groups',
- 'invites-log' => 'Invites Log',
- 'laravel-log' => 'Laravel Log',
- 'link' => 'Link',
- 'links' => 'Links',
- 'logs' => 'Logs',
- 'mass-pm' => 'Mass PM',
- 'mass-validate-users' => 'Mass Validate Users',
- 'media-languages-desc' => '(Languages Used To Populate Language Dropdowns For Subtitles / Audios / Etc.)',
- 'moderation' => 'Moderation',
- 'moderation-since' => 'Moderated at',
- 'page' => 'Page',
- 'pages' => 'Pages',
- 'please-moderate' => 'Please Moderate This Torrent!',
- 'polls' => 'Polls',
- 'reports-log' => 'Reports Log',
- 'rooms' => 'Rooms',
- 'rss' => 'RSS',
- 'staff-dashboard' => 'Staff Dashboard',
- 'status' => 'Status',
- 'statuses' => 'Statuses',
- 'torrent-categories' => 'Torrent Categories',
- 'torrent-moderation' => 'Torrent Moderation',
- 'torrent-tools' => 'Torrent Tools',
- 'torrent-types' => 'Torrent Types',
- 'torrent-resolutions' => 'Torrent Resolutions',
- 'torrents' => 'Torrents',
- 'user-gifting' => 'User Gifting',
- 'user-notes' => 'User Notes Log',
- 'user-search' => 'User Search',
- 'user-tools' => 'User Tools',
- 'warnings-log' => 'Warnings Log',
- 'you-have' => 'You Have',
+ 'audit-log' => 'Audit Log',
+ 'articles' => 'Articles',
+ 'application' => 'Application',
+ 'applications' => 'Applications',
+ 'application-type' => 'Type',
+ 'application-image-proofs' => 'Image Proofs',
+ 'application-referrer' => 'Referrer',
+ 'article-content' => 'Content',
+ 'bans-log' => 'Bans Log',
+ 'blocks' => 'Blocks',
+ 'bon-exchange' => 'BON Exchange',
+ 'bot' => 'Bot',
+ 'bots' => 'Bots',
+ 'chat' => 'Chat',
+ 'config-manager' => 'Config Manager',
+ 'dashboard' => 'Dashboard',
+ 'failed-login-log' => 'Failed Login Log',
+ 'flush-ghost-peers' => 'Flush Ghost Peers',
+ 'forums' => 'Forums',
+ 'frontend' => 'Frontend',
+ 'general-tools' => 'General Tools',
+ 'groups' => 'Groups',
+ 'invites-log' => 'Invites Log',
+ 'laravel-log' => 'Laravel Log',
+ 'link' => 'Link',
+ 'links' => 'Links',
+ 'logs' => 'Logs',
+ 'mass-pm' => 'Mass PM',
+ 'mass-validate-users' => 'Mass Validate Users',
+ 'media-languages-desc' => '(Languages Used To Populate Language Dropdowns For Subtitles / Audios / Etc.)',
+ 'moderation' => 'Moderation',
+ 'moderation-since' => 'Moderated at',
+ 'page' => 'Page',
+ 'pages' => 'Pages',
+ 'please-moderate' => 'Please Moderate This Torrent!',
+ 'polls' => 'Polls',
+ 'reports-log' => 'Reports Log',
+ 'rooms' => 'Rooms',
+ 'rss' => 'RSS',
+ 'staff-dashboard' => 'Staff Dashboard',
+ 'status' => 'Status',
+ 'statuses' => 'Statuses',
+ 'torrent-categories' => 'Torrent Categories',
+ 'torrent-moderation' => 'Torrent Moderation',
+ 'torrent-tools' => 'Torrent Tools',
+ 'torrent-types' => 'Torrent Types',
+ 'torrent-resolutions' => 'Torrent Resolutions',
+ 'torrents' => 'Torrents',
+ 'user-gifting' => 'User Gifting',
+ 'user-notes' => 'User Notes Log',
+ 'user-search' => 'User Search',
+ 'user-tools' => 'User Tools',
+ 'warnings-log' => 'Warnings Log',
+ 'you-have' => 'You Have',
'possible-leech-cheaters' => 'Possible Cheaters',
- 'chat-tools' => 'Chat Tools',
- 'flush-chat' => 'Flush Chatbox',
- 'seedboxes' => 'Registered Seedboxes',
+ 'chat-tools' => 'Chat Tools',
+ 'flush-chat' => 'Flush Chatbox',
+ 'seedboxes' => 'Registered Seedboxes',
];
diff --git a/lang/en/stat.php b/lang/en/stat.php
index c0543cb4d..58c6ec1ed 100644
--- a/lang/en/stat.php
+++ b/lang/en/stat.php
@@ -12,53 +12,53 @@
*/
return [
- 'active' => 'Active',
- 'all' => 'All',
- 'all-time' => 'All Time',
- 'banned' => 'Banned',
- 'by-count' => 'By Count',
- 'by-data' => 'By Data',
- 'by-volume' => 'By Volume',
- 'credited' => 'Credited',
- 'disabled' => 'Disabled',
- 'group' => 'Group',
- 'groups' => 'Groups',
- 'last30days' => 'Last 30 Days',
- 'nerd-stats' => 'Nerd Stats',
- 'nerd-stats-desc' => 'We all love stats. Here are a few that we find important',
- 'languages' => 'Languages',
- 'place' => 'Place',
- 'pruned' => 'Pruned',
- 'real' => 'Real',
- 'registration-date' => 'Registration Date',
- 'request-fulfilled' => 'Request Fulfilled',
- 'request-not-fulfilled' => 'Request not Fulfilled',
+ 'active' => 'Active',
+ 'all' => 'All',
+ 'all-time' => 'All Time',
+ 'banned' => 'Banned',
+ 'by-count' => 'By Count',
+ 'by-data' => 'By Data',
+ 'by-volume' => 'By Volume',
+ 'credited' => 'Credited',
+ 'disabled' => 'Disabled',
+ 'group' => 'Group',
+ 'groups' => 'Groups',
+ 'last30days' => 'Last 30 Days',
+ 'nerd-stats' => 'Nerd Stats',
+ 'nerd-stats-desc' => 'We all love stats. Here are a few that we find important',
+ 'languages' => 'Languages',
+ 'place' => 'Place',
+ 'pruned' => 'Pruned',
+ 'real' => 'Real',
+ 'registration-date' => 'Registration Date',
+ 'request-fulfilled' => 'Request Fulfilled',
+ 'request-not-fulfilled' => 'Request not Fulfilled',
'request-pending-aproval' => 'Request Pending Approval',
- 'select-category' => 'Please select a category below',
- 'site-stats' => 'Site Stats',
- 'stats' => 'Stats',
- 'stats-format' => 'All Stats Displayed In Top 100 Format',
- 'top-bankers' => 'Top Bankers',
- 'top-bountied' => 'Top Bountied',
- 'top-completed' => 'Top Completed',
- 'top-dead' => 'Top Dead',
- 'top-downloaded' => 'Top Downloaded Torrents',
- 'top-downloaders' => 'Top Downloaders',
- 'top-dying' => 'Top Dying',
- 'top-leeched' => 'Top Leeched',
- 'top-leechers' => 'Top Leechers',
- 'top-seeded' => 'Top Seeded',
- 'top-seeding' => 'Top Seeding',
- 'top-seeders' => 'Top Seeders',
- 'top-seedsize' => 'Top Seedsize',
- 'top-seedtime' => 'Top Seedtime',
- 'top-uploaders' => 'Top Uploaders',
- 'total-download' => 'Total Download',
- 'total-torrents' => 'Total Torrents',
- 'total-traffic' => 'Total Traffic',
- 'total-upload' => 'Total Upload',
- 'updated' => '(Updated Every 10 Minutes!)',
- 'users-in-group' => 'Users In Group',
- 'users-per-group' => 'Users Per Group',
+ 'select-category' => 'Please select a category below',
+ 'site-stats' => 'Site Stats',
+ 'stats' => 'Stats',
+ 'stats-format' => 'All Stats Displayed In Top 100 Format',
+ 'top-bankers' => 'Top Bankers',
+ 'top-bountied' => 'Top Bountied',
+ 'top-completed' => 'Top Completed',
+ 'top-dead' => 'Top Dead',
+ 'top-downloaded' => 'Top Downloaded Torrents',
+ 'top-downloaders' => 'Top Downloaders',
+ 'top-dying' => 'Top Dying',
+ 'top-leeched' => 'Top Leeched',
+ 'top-leechers' => 'Top Leechers',
+ 'top-seeded' => 'Top Seeded',
+ 'top-seeding' => 'Top Seeding',
+ 'top-seeders' => 'Top Seeders',
+ 'top-seedsize' => 'Top Seedsize',
+ 'top-seedtime' => 'Top Seedtime',
+ 'top-uploaders' => 'Top Uploaders',
+ 'total-download' => 'Total Download',
+ 'total-torrents' => 'Total Torrents',
+ 'total-traffic' => 'Total Traffic',
+ 'total-upload' => 'Total Upload',
+ 'updated' => '(Updated Every 10 Minutes!)',
+ 'users-in-group' => 'Users In Group',
+ 'users-per-group' => 'Users Per Group',
];
diff --git a/lang/en/subtitle.php b/lang/en/subtitle.php
index e3fbf1895..66c908fd9 100644
--- a/lang/en/subtitle.php
+++ b/lang/en/subtitle.php
@@ -12,13 +12,13 @@
*/
return [
- 'downloads' => 'Downloads',
- 'extension' => 'Extension',
- 'delete-confirm' => 'Are You Sure You Want To Delete This?',
- 'note' => 'Note',
- 'note-help' => 'Extra Info for this subtitle',
- 'rules-title' => 'Subtitle Rules',
- 'rules' => '
+ 'downloads' => 'Downloads',
+ 'extension' => 'Extension',
+ 'delete-confirm' => 'Are You Sure You Want To Delete This?',
+ 'note' => 'Note',
+ 'note-help' => 'Extra Info for this subtitle',
+ 'rules-title' => 'Subtitle Rules',
+ 'rules' => '
- Only proper subtitles are allowed (correct frame rate, translation, spelling, timing)
- No Google-translated, machine-translated and incorrect subtitles
- Subtitles must be in sync with the video
@@ -26,9 +26,9 @@ return [
- Repeated uploads of junk subs will constitute a violation and subject to a disciplinary action
- Keep the Note of the subtitle short, NO urls/links are allowed
',
- 'size' => 'Size',
- 'subtitle-file' => 'Subtitle File',
- 'subtitle-file-types' => 'Accepted files are SRT, ASS, SUP and ZIP',
- 'uploaded' => 'Uploaded',
- 'uploader' => 'Uploader',
+ 'size' => 'Size',
+ 'subtitle-file' => 'Subtitle File',
+ 'subtitle-file-types' => 'Accepted files are SRT, ASS, SUP and ZIP',
+ 'uploaded' => 'Uploaded',
+ 'uploader' => 'Uploader',
];
diff --git a/lang/en/ticket.php b/lang/en/ticket.php
index 8e5c05798..fd325933d 100644
--- a/lang/en/ticket.php
+++ b/lang/en/ticket.php
@@ -12,35 +12,35 @@
*/
return [
- 'assign' => 'Assign',
- 'assigned-staff' => 'Assigned Staff',
- 'assigned-success' => 'Helpdesk Ticket Was Assigned Successfully!',
- 'attachments' => 'Attachments',
- 'attachments-save' => 'Save Attachments',
- 'body' => 'Body',
- 'body-enter' => 'Enter body here...',
- 'category' => 'Category',
- 'close' => 'Close',
- 'closed' => 'Closed',
- 'closed-success' => 'Helpdesk Ticket Was Closed Successfully!',
- 'create-ticket' => 'Create Ticket',
- 'created' => 'Created',
- 'created-success' => 'Your Helpdesk Ticket Was Created Successfully!',
- 'delete' => 'Delete',
- 'deleted-success' => 'Your Helpdesk Ticket Was Deleted Successfully!',
- 'description' => 'Description',
- 'download' => 'Download',
- 'fix-errors' => 'Please fix the following error(s) and try again:',
- 'helpdesk' => 'Helpdesk',
- 'no-attach' => 'No attachments found',
- 'priority' => 'Priority',
- 'opened-by' => 'Opened By:',
- 'reset' => 'Reset',
- 'subject' => 'Subject',
- 'subject-enter' => 'Enter subject here...',
- 'submit-ticket' => 'Submit Ticket',
- 'ticket' => 'Ticket',
- 'unassign' => 'Unassign',
+ 'assign' => 'Assign',
+ 'assigned-staff' => 'Assigned Staff',
+ 'assigned-success' => 'Helpdesk Ticket Was Assigned Successfully!',
+ 'attachments' => 'Attachments',
+ 'attachments-save' => 'Save Attachments',
+ 'body' => 'Body',
+ 'body-enter' => 'Enter body here...',
+ 'category' => 'Category',
+ 'close' => 'Close',
+ 'closed' => 'Closed',
+ 'closed-success' => 'Helpdesk Ticket Was Closed Successfully!',
+ 'create-ticket' => 'Create Ticket',
+ 'created' => 'Created',
+ 'created-success' => 'Your Helpdesk Ticket Was Created Successfully!',
+ 'delete' => 'Delete',
+ 'deleted-success' => 'Your Helpdesk Ticket Was Deleted Successfully!',
+ 'description' => 'Description',
+ 'download' => 'Download',
+ 'fix-errors' => 'Please fix the following error(s) and try again:',
+ 'helpdesk' => 'Helpdesk',
+ 'no-attach' => 'No attachments found',
+ 'priority' => 'Priority',
+ 'opened-by' => 'Opened By:',
+ 'reset' => 'Reset',
+ 'subject' => 'Subject',
+ 'subject-enter' => 'Enter subject here...',
+ 'submit-ticket' => 'Submit Ticket',
+ 'ticket' => 'Ticket',
+ 'unassign' => 'Unassign',
'unassigned-success' => 'Helpdesk Ticket Was Unassigned Successfully!',
- 'updated-success' => 'Your Helpdesk Ticket Was Updated Successfully!',
+ 'updated-success' => 'Your Helpdesk Ticket Was Updated Successfully!',
];
diff --git a/lang/en/torrent.php b/lang/en/torrent.php
index c9a3f6b36..8dbca7224 100644
--- a/lang/en/torrent.php
+++ b/lang/en/torrent.php
@@ -12,230 +12,230 @@
*/
return [
- 'activity' => 'Activity',
- 'add-to-playlist' => 'Add To Playlist',
- 'age' => 'Age',
- 'agent' => 'Agent',
- 'alive' => 'Alive',
- 'announce-url' => 'Announce URL',
- 'announce-url-desc' => 'Please use the announce URL above when creating a new torrent. If you want to use your torrent without downloading it from the site you need to set the private flag and the source to :source',
- 'announce-url-desc-url' => 'Having Trouble? See Our Guide HERE',
- 'announce-url-desc2' => 'TMDB and IMDB is required for all Movie/TV uploads! It is used to grab Posters/Backdrops and ExtraInfo',
- 'approved' => 'Approved',
- 'audio' => 'Audio',
- 'bon-tipped' => 'BON Tipped',
- 'bookmark' => 'Bookmark',
- 'bookmarks' => 'Bookmarks',
- 'bump' => 'Bump',
- 'cant-upload' => 'Error: Your Upload Rights Are Disabled',
- 'cant-upload-desc' => 'If You Feel This Is In Error, Please Contact Staff',
- 'cards' => 'Cards',
- 'cards-view' => 'Torrent Cards View',
- 'categories' => 'Categories',
- 'category' => 'Category',
- 'client' => 'Client',
- 'commited' => 'Commited',
- 'completed' => 'Completed',
- 'completed_at' => 'Completed at',
- 'completed-not-seeding' => 'You Completed This Download But Are No Longer Seeding It',
- 'completed-times' => 'Times Completed',
- 'created_at' => 'Created at',
- 'credited' => 'Credited',
- 'current' => 'Current',
- 'current-filters' => 'Current Filters',
- 'currently-leeching' => 'Currently Leeching',
- 'currently-seeding' => 'Currently Seeding',
- 'date' => 'Date',
- 'dead-torrent' => 'Dead Torrent',
- 'dead-torrents' => 'Dead Torrents',
- 'define-tip-amount' => 'Define A Tip Amount',
- 'delete-bookmark' => 'Delete This Bookmark',
- 'description' => 'Description',
- 'discounts' => 'Discounts',
- 'distributor' => 'Distributor',
- 'double-upload' => 'Double Upload',
- 'download-all' => 'Download All',
- 'download-check' => 'Download Check',
- 'download-rights-active' => 'Download Rights Active',
- 'downloaded' => 'Downloaded',
- 'dying-torrent' => 'Dying Torrent',
- 'dying-torrents' => 'Dying Torrents',
- 'encode-settings' => 'Encode Settings',
- 'end-year' => 'Year End',
- 'episode-number' => 'Episode Number',
- 'estimated-ratio' => 'Estimated Ratio after Download',
- 'failed' => 'Failed',
- 'feature' => 'Feature',
- 'featured' => 'Featured',
- 'featured-desc' => 'Featured torrents are 100% Free and Double Upload!',
- 'featured-until' => 'This is a Featured Torrent Until',
- 'file' => 'File',
- 'filters' => 'Filters',
- 'fl-tokens-left' => 'You have :tokens left',
- 'freeleech' => 'Freeleech',
- 'freeleech-token' => 'Freeleech Token',
- 'general' => 'General',
- 'genre' => 'Genre',
- 'genre-tags' => 'Genre Tags',
- 'global-double-upload' => 'Global Double Upload',
- 'global-freeleech' => 'Global Freeleech',
- 'grant' => 'Grant',
- 'greater-than' => 'Greater than',
- 'grouping' => 'Grouping',
- 'groupings' => 'Groupings',
- 'grouping-categories' => 'Grouping Categories',
+ 'activity' => 'Activity',
+ 'add-to-playlist' => 'Add To Playlist',
+ 'age' => 'Age',
+ 'agent' => 'Agent',
+ 'alive' => 'Alive',
+ 'announce-url' => 'Announce URL',
+ 'announce-url-desc' => 'Please use the announce URL above when creating a new torrent. If you want to use your torrent without downloading it from the site you need to set the private flag and the source to :source',
+ 'announce-url-desc-url' => 'Having Trouble? See Our Guide HERE',
+ 'announce-url-desc2' => 'TMDB and IMDB is required for all Movie/TV uploads! It is used to grab Posters/Backdrops and ExtraInfo',
+ 'approved' => 'Approved',
+ 'audio' => 'Audio',
+ 'bon-tipped' => 'BON Tipped',
+ 'bookmark' => 'Bookmark',
+ 'bookmarks' => 'Bookmarks',
+ 'bump' => 'Bump',
+ 'cant-upload' => 'Error: Your Upload Rights Are Disabled',
+ 'cant-upload-desc' => 'If You Feel This Is In Error, Please Contact Staff',
+ 'cards' => 'Cards',
+ 'cards-view' => 'Torrent Cards View',
+ 'categories' => 'Categories',
+ 'category' => 'Category',
+ 'client' => 'Client',
+ 'commited' => 'Commited',
+ 'completed' => 'Completed',
+ 'completed_at' => 'Completed at',
+ 'completed-not-seeding' => 'You Completed This Download But Are No Longer Seeding It',
+ 'completed-times' => 'Times Completed',
+ 'created_at' => 'Created at',
+ 'credited' => 'Credited',
+ 'current' => 'Current',
+ 'current-filters' => 'Current Filters',
+ 'currently-leeching' => 'Currently Leeching',
+ 'currently-seeding' => 'Currently Seeding',
+ 'date' => 'Date',
+ 'dead-torrent' => 'Dead Torrent',
+ 'dead-torrents' => 'Dead Torrents',
+ 'define-tip-amount' => 'Define A Tip Amount',
+ 'delete-bookmark' => 'Delete This Bookmark',
+ 'description' => 'Description',
+ 'discounts' => 'Discounts',
+ 'distributor' => 'Distributor',
+ 'double-upload' => 'Double Upload',
+ 'download-all' => 'Download All',
+ 'download-check' => 'Download Check',
+ 'download-rights-active' => 'Download Rights Active',
+ 'downloaded' => 'Downloaded',
+ 'dying-torrent' => 'Dying Torrent',
+ 'dying-torrents' => 'Dying Torrents',
+ 'encode-settings' => 'Encode Settings',
+ 'end-year' => 'Year End',
+ 'episode-number' => 'Episode Number',
+ 'estimated-ratio' => 'Estimated Ratio after Download',
+ 'failed' => 'Failed',
+ 'feature' => 'Feature',
+ 'featured' => 'Featured',
+ 'featured-desc' => 'Featured torrents are 100% Free and Double Upload!',
+ 'featured-until' => 'This is a Featured Torrent Until',
+ 'file' => 'File',
+ 'filters' => 'Filters',
+ 'fl-tokens-left' => 'You have :tokens left',
+ 'freeleech' => 'Freeleech',
+ 'freeleech-token' => 'Freeleech Token',
+ 'general' => 'General',
+ 'genre' => 'Genre',
+ 'genre-tags' => 'Genre Tags',
+ 'global-double-upload' => 'Global Double Upload',
+ 'global-freeleech' => 'Global Freeleech',
+ 'grant' => 'Grant',
+ 'greater-than' => 'Greater than',
+ 'grouping' => 'Grouping',
+ 'groupings' => 'Groupings',
+ 'grouping-categories' => 'Grouping Categories',
'grouping-categories-desc' => 'What category would you like to group?',
- 'grouping-results' => 'Grouping Results',
- 'groupings-view' => 'Groupings View',
- 'have-completed' => 'Completed',
- 'have-downloaded' => 'Downloaded',
- 'have-not-completed' => 'Not Completed',
- 'have-not-downloaded' => 'Not Downloaded',
- 'health' => 'Health',
- 'history' => 'History',
- 'hitrun' => 'H&R?',
- 'hit-and-runs' => 'Hit and Run Counts',
- 'immune' => 'Immune?',
- 'info' => 'Info',
- 'info-hash' => 'Info Hash',
- 'internal' => 'Internal',
- 'internal-release' => 'Internal Release',
- 'keywords' => 'Keywords',
- 'keywords-example' => 'Example: superhero, dc comics, marvel',
- 'last-seed-activity' => 'Last Seed Activity',
- 'last-seeder' => 'You are the Last Remaining Seeder! (has been downloaded at least 3 times)',
- 'last-update' => 'Last Update',
- 'leave-tip' => 'Leave Tip',
- 'leecher' => 'Leecher',
- 'leechers' => 'Leechers',
- 'leeching' => 'Leeching',
- 'left' => 'Left',
- 'legendary-seeder' => 'Legendary Seeder',
- 'legendary-torrent' => 'Legendary Torrent',
- 'list' => 'List',
- 'me' => 'Me',
- 'media-info' => 'MediaInfo',
- 'media-info-parser' => 'MediaInfo Parser',
- 'media-info-paste' => 'Paste MediaInfo Dump Here',
- 'meta-desc' => 'Download :name at maximum speed',
- 'moderation' => 'Moderation',
- 'movies' => 'Movies',
- 'mvp' => 'MVP',
- 'my-active-torrents' => 'My Active Torrents',
- 'name' => 'Name',
- 'no-bookmarks' => 'There are no Bookmarks found.',
- 'no-discounts' => 'Currently no Discounts',
- 'no-meta' => 'No Metadata Found',
- 'no-privileges' => 'You are not able to download this file - Please check below for more info',
- 'no-privileges-desc' => 'Please solve the failed results above for download button to appear',
- 'not-completed' => 'Started Downloading But Never Completed',
- 'not-downloaded' => 'Not Downloaded',
- 'not-seeding' => 'Not Seeding',
- 'old-torrent' => 'Old Torrent',
- 'optional' => 'Optional',
- 'original-output' => 'Show / Hide Original Output',
- 'participant' => 'Participant',
- 'passed' => 'Passed',
- 'peers' => 'Peers',
- 'pending' => 'Pending',
- 'personal-freeleech' => 'Personal Freeleech',
- 'personal-release' => 'Personal Release',
- 'poster' => 'Poster',
- 'poster-view' => 'Poster View',
- 'posters' => 'Posters',
- 'postponed-torrents' => 'Postponed Torrents',
- 'prewarn' => 'Prewarned?',
- 'progress' => 'Progress',
- 'publish-time' => 'Publish Time',
- 'quick-comment' => 'Quick Comment',
- 'quick-tip' => 'Quick Tip Amounts',
- 'rated' => 'Rated',
- 'rating' => 'Rating',
- 'ready' => 'This file is ready for download',
- 'recent-bumped' => 'Recently Bumped',
- 'recommendations' => 'Recommendations',
- 'rejected' => 'Rejected',
- 'region' => 'Region',
- 'released' => 'Released',
- 'remaining' => 'Remaining',
- 'request-reseed' => 'Request Reseed',
- 'required-anime' => 'Required For Anime',
- 'required-games' => 'Required For Games',
- 'requires-reseed' => 'Requires Reseed',
- 'resolution' => 'Resolution',
- 'resolutions' => 'Resolutions',
- 'resurrections' => 'Resurrections',
- 'revoke' => 'Revoke',
- 'revokefeatured' => 'Revoke Featured',
- 'rss' => 'RSS',
- 'runtime' => 'Runtime',
- 'satisfied_in' => 'Satisfied in',
- 'say-thanks' => 'Please remember to say thanks and seed for as long as you can',
- 'sd-content' => 'SD Content',
- 'search' => 'Search',
- 'search-by-name' => 'Search By Name',
- 'season-number' => 'Season Number',
- 'seed-time' => 'Seed Time',
- 'seeder' => 'Seeder',
- 'seeders' => 'Seeders',
- 'seeding' => 'Seeding',
- 'seedsize' => 'Seedsize',
- 'seedtime' => 'Seedtime',
- 'short-completed' => 'C',
- 'short-leechs' => 'L',
- 'short-seeds' => 'S',
- 'show-files' => 'Show Files',
- 'similar' => 'Similar Torrents',
- 'size' => 'Size',
- 'special' => 'Special',
- 'special-double_upload' => 'Special Double Upload',
- 'special-freeleech' => 'Special Freeleech',
- 'staff-tools' => 'Staff Tools',
- 'start-year' => 'Start Year',
- 'started' => 'Started',
- 'status' => 'Status',
- 'statistics' => 'Statistics',
- 'stats' => 'Stats',
- 'sticky' => 'Sticky',
- 'stream-optimized' => 'Stream Optimized',
- 'subtitle' => 'Subtitle',
- 'subtitle-included' => 'This torrent already includes the following subtitles muxed in:',
- 'team-player' => 'Team Player',
- 'thank' => 'Thank',
- 'thanked' => 'Thanked',
- 'thanks' => 'Thanks',
- 'thanks-given' => 'Thanks Given',
- 'times' => 'Times',
- 'tip-jar' => 'Tip Jar',
- 'title' => 'Title',
- 'titles' => 'Titles',
- 'top-completed' => 'Top Completed',
- 'top-dead' => 'Top Dead',
- 'top-dying' => 'Top Dying',
- 'top-leeched' => 'Top Leeched',
- 'top-seeded' => 'Top Seeded',
- 'torrent' => 'Torrent',
- 'torrent-request' => 'Torrent Request',
- 'torrent-tips' => 'In Total :total BON has been tipped to the uploader, of which :user are from you',
- 'torrent-tips-desc' => 'This will be deducted from your available bonus points',
- 'torrents' => 'Torrents',
- 'torrents-matched' => 'Torrents Matched',
- 'trailer' => 'View Trailer',
- 'type' => 'Type',
- 'types' => 'Types',
- 'unbookmark' => 'Unbookmark',
- 'unsatisfieds' => 'Unsatisfieds',
- 'unsticky' => 'Unsticky',
- 'updated' => 'Updated',
- 'updated_at' => 'Updated at',
- 'uploaded' => 'Uploaded',
- 'uploaded-by' => 'Uploaded By',
- 'uploader' => 'Uploader',
- 'use-fl-token' => 'Use a Freeleech Token',
- 'video' => 'Video',
- 'view-more' => 'View More',
- 'view-trailer' => 'View Trailer',
- 'votes' => 'Votes',
- 'year-range' => 'Year Range',
+ 'grouping-results' => 'Grouping Results',
+ 'groupings-view' => 'Groupings View',
+ 'have-completed' => 'Completed',
+ 'have-downloaded' => 'Downloaded',
+ 'have-not-completed' => 'Not Completed',
+ 'have-not-downloaded' => 'Not Downloaded',
+ 'health' => 'Health',
+ 'history' => 'History',
+ 'hitrun' => 'H&R?',
+ 'hit-and-runs' => 'Hit and Run Counts',
+ 'immune' => 'Immune?',
+ 'info' => 'Info',
+ 'info-hash' => 'Info Hash',
+ 'internal' => 'Internal',
+ 'internal-release' => 'Internal Release',
+ 'keywords' => 'Keywords',
+ 'keywords-example' => 'Example: superhero, dc comics, marvel',
+ 'last-seed-activity' => 'Last Seed Activity',
+ 'last-seeder' => 'You are the Last Remaining Seeder! (has been downloaded at least 3 times)',
+ 'last-update' => 'Last Update',
+ 'leave-tip' => 'Leave Tip',
+ 'leecher' => 'Leecher',
+ 'leechers' => 'Leechers',
+ 'leeching' => 'Leeching',
+ 'left' => 'Left',
+ 'legendary-seeder' => 'Legendary Seeder',
+ 'legendary-torrent' => 'Legendary Torrent',
+ 'list' => 'List',
+ 'me' => 'Me',
+ 'media-info' => 'MediaInfo',
+ 'media-info-parser' => 'MediaInfo Parser',
+ 'media-info-paste' => 'Paste MediaInfo Dump Here',
+ 'meta-desc' => 'Download :name at maximum speed',
+ 'moderation' => 'Moderation',
+ 'movies' => 'Movies',
+ 'mvp' => 'MVP',
+ 'my-active-torrents' => 'My Active Torrents',
+ 'name' => 'Name',
+ 'no-bookmarks' => 'There are no Bookmarks found.',
+ 'no-discounts' => 'Currently no Discounts',
+ 'no-meta' => 'No Metadata Found',
+ 'no-privileges' => 'You are not able to download this file - Please check below for more info',
+ 'no-privileges-desc' => 'Please solve the failed results above for download button to appear',
+ 'not-completed' => 'Started Downloading But Never Completed',
+ 'not-downloaded' => 'Not Downloaded',
+ 'not-seeding' => 'Not Seeding',
+ 'old-torrent' => 'Old Torrent',
+ 'optional' => 'Optional',
+ 'original-output' => 'Show / Hide Original Output',
+ 'participant' => 'Participant',
+ 'passed' => 'Passed',
+ 'peers' => 'Peers',
+ 'pending' => 'Pending',
+ 'personal-freeleech' => 'Personal Freeleech',
+ 'personal-release' => 'Personal Release',
+ 'poster' => 'Poster',
+ 'poster-view' => 'Poster View',
+ 'posters' => 'Posters',
+ 'postponed-torrents' => 'Postponed Torrents',
+ 'prewarn' => 'Prewarned?',
+ 'progress' => 'Progress',
+ 'publish-time' => 'Publish Time',
+ 'quick-comment' => 'Quick Comment',
+ 'quick-tip' => 'Quick Tip Amounts',
+ 'rated' => 'Rated',
+ 'rating' => 'Rating',
+ 'ready' => 'This file is ready for download',
+ 'recent-bumped' => 'Recently Bumped',
+ 'recommendations' => 'Recommendations',
+ 'rejected' => 'Rejected',
+ 'region' => 'Region',
+ 'released' => 'Released',
+ 'remaining' => 'Remaining',
+ 'request-reseed' => 'Request Reseed',
+ 'required-anime' => 'Required For Anime',
+ 'required-games' => 'Required For Games',
+ 'requires-reseed' => 'Requires Reseed',
+ 'resolution' => 'Resolution',
+ 'resolutions' => 'Resolutions',
+ 'resurrections' => 'Resurrections',
+ 'revoke' => 'Revoke',
+ 'revokefeatured' => 'Revoke Featured',
+ 'rss' => 'RSS',
+ 'runtime' => 'Runtime',
+ 'satisfied_in' => 'Satisfied in',
+ 'say-thanks' => 'Please remember to say thanks and seed for as long as you can',
+ 'sd-content' => 'SD Content',
+ 'search' => 'Search',
+ 'search-by-name' => 'Search By Name',
+ 'season-number' => 'Season Number',
+ 'seed-time' => 'Seed Time',
+ 'seeder' => 'Seeder',
+ 'seeders' => 'Seeders',
+ 'seeding' => 'Seeding',
+ 'seedsize' => 'Seedsize',
+ 'seedtime' => 'Seedtime',
+ 'short-completed' => 'C',
+ 'short-leechs' => 'L',
+ 'short-seeds' => 'S',
+ 'show-files' => 'Show Files',
+ 'similar' => 'Similar Torrents',
+ 'size' => 'Size',
+ 'special' => 'Special',
+ 'special-double_upload' => 'Special Double Upload',
+ 'special-freeleech' => 'Special Freeleech',
+ 'staff-tools' => 'Staff Tools',
+ 'start-year' => 'Start Year',
+ 'started' => 'Started',
+ 'status' => 'Status',
+ 'statistics' => 'Statistics',
+ 'stats' => 'Stats',
+ 'sticky' => 'Sticky',
+ 'stream-optimized' => 'Stream Optimized',
+ 'subtitle' => 'Subtitle',
+ 'subtitle-included' => 'This torrent already includes the following subtitles muxed in:',
+ 'team-player' => 'Team Player',
+ 'thank' => 'Thank',
+ 'thanked' => 'Thanked',
+ 'thanks' => 'Thanks',
+ 'thanks-given' => 'Thanks Given',
+ 'times' => 'Times',
+ 'tip-jar' => 'Tip Jar',
+ 'title' => 'Title',
+ 'titles' => 'Titles',
+ 'top-completed' => 'Top Completed',
+ 'top-dead' => 'Top Dead',
+ 'top-dying' => 'Top Dying',
+ 'top-leeched' => 'Top Leeched',
+ 'top-seeded' => 'Top Seeded',
+ 'torrent' => 'Torrent',
+ 'torrent-request' => 'Torrent Request',
+ 'torrent-tips' => 'In Total :total BON has been tipped to the uploader, of which :user are from you',
+ 'torrent-tips-desc' => 'This will be deducted from your available bonus points',
+ 'torrents' => 'Torrents',
+ 'torrents-matched' => 'Torrents Matched',
+ 'trailer' => 'View Trailer',
+ 'type' => 'Type',
+ 'types' => 'Types',
+ 'unbookmark' => 'Unbookmark',
+ 'unsatisfieds' => 'Unsatisfieds',
+ 'unsticky' => 'Unsticky',
+ 'updated' => 'Updated',
+ 'updated_at' => 'Updated at',
+ 'uploaded' => 'Uploaded',
+ 'uploaded-by' => 'Uploaded By',
+ 'uploader' => 'Uploader',
+ 'use-fl-token' => 'Use a Freeleech Token',
+ 'video' => 'Video',
+ 'view-more' => 'View More',
+ 'view-trailer' => 'View Trailer',
+ 'votes' => 'Votes',
+ 'year-range' => 'Year Range',
];
diff --git a/lang/en/user.php b/lang/en/user.php
index 1ed765267..3ed6f17a4 100644
--- a/lang/en/user.php
+++ b/lang/en/user.php
@@ -12,395 +12,395 @@
*/
return [
- 'about' => 'About',
- 'about-me' => 'About Me',
- 'accepted-at' => 'Accepted at',
- 'accepted-by' => 'Accepted by',
- 'account-notification' => 'Account Notification Settings',
- 'account-notification-follow' => 'Receive a notification when a user follows your account',
- 'account-notification-unfollow' => 'Receive a notification when a user unfollows your account',
- 'account-notification-help' => 'Control which notifications are sent concerning your account.
+ 'about' => 'About',
+ 'about-me' => 'About Me',
+ 'accepted-at' => 'Accepted at',
+ 'accepted-by' => 'Accepted by',
+ 'account-notification' => 'Account Notification Settings',
+ 'account-notification-follow' => 'Receive a notification when a user follows your account',
+ 'account-notification-unfollow' => 'Receive a notification when a user unfollows your account',
+ 'account-notification-help' => 'Control which notifications are sent concerning your account.
These settings are overridden if you do not allow any groups to send notifications concerning your account or if you Disable Notifications',
- 'account-settings' => 'Account Settings',
- 'achievement-privacy' => 'Achievement Settings',
- 'achievement-privacy-list' => 'Allow users to view a list of your achievements',
- 'achievement-help' => 'Control the sharing of specific achievement related information with groups that are allowed to access to your profile.
+ 'account-settings' => 'Account Settings',
+ 'achievement-privacy' => 'Achievement Settings',
+ 'achievement-privacy-list' => 'Allow users to view a list of your achievements',
+ 'achievement-help' => 'Control the sharing of specific achievement related information with groups that are allowed to access to your profile.
These settings are overridden if you do not allow any groups to access your achievements or if you Go Private',
- 'achievements' => 'Achievements',
- 'active' => 'Active',
- 'active-table' => 'My Active Table',
- 'active-torrents' => 'Active Torrents',
- 'active-warning' => 'Active Warning',
- 'active-warnings' => 'Active Warnings',
- 'add-seedbox' => 'Add Seedbox',
- 'all-torrents' => 'All Torrents',
- 'article-comments' => 'Article Comments Made',
- 'avatar' => 'Avatar',
- 'avg-seedtime' => 'Average Seedtime',
- 'badges' => 'Badges',
- 'ban' => 'Ban User',
- 'bans' => 'Bans',
- 'ban-log' => 'Ban Log',
- 'become-hidden' => 'Become Hidden',
- 'become-visible' => 'Become Visible',
- 'bon' => 'BON',
- 'bon-notification' => 'BON Notification Settings',
- 'bon-notification-gift' => 'Receive a notification when a user gifts you bon',
- 'bon-notification-help' => 'Control which notifications are sent concerning BON transactions.
+ 'achievements' => 'Achievements',
+ 'active' => 'Active',
+ 'active-table' => 'My Active Table',
+ 'active-torrents' => 'Active Torrents',
+ 'active-warning' => 'Active Warning',
+ 'active-warnings' => 'Active Warnings',
+ 'add-seedbox' => 'Add Seedbox',
+ 'all-torrents' => 'All Torrents',
+ 'article-comments' => 'Article Comments Made',
+ 'avatar' => 'Avatar',
+ 'avg-seedtime' => 'Average Seedtime',
+ 'badges' => 'Badges',
+ 'ban' => 'Ban User',
+ 'bans' => 'Bans',
+ 'ban-log' => 'Ban Log',
+ 'become-hidden' => 'Become Hidden',
+ 'become-visible' => 'Become Visible',
+ 'bon' => 'BON',
+ 'bon-notification' => 'BON Notification Settings',
+ 'bon-notification-gift' => 'Receive a notification when a user gifts you bon',
+ 'bon-notification-help' => 'Control which notifications are sent concerning BON transactions.
These settings are overridden if you do not allow any groups to send notifications concerning BON or if you Disable Notifications',
- 'bookmarks' => 'Bookmarks',
- 'bounty-given' => 'Bounty Given',
- 'bounty-received' => 'Bounty Received',
- 'can-chat' => 'Can Chat',
- 'can-comment' => 'Can Comment',
- 'can-download' => 'Can Download',
- 'can-invite' => 'Can Invite',
- 'can-request' => 'Can Request',
- 'can-upload' => 'Can Upload',
- 'certified-banker' => 'Certified Banker',
- 'certified-banker-desc' => 'Has 50,000 Or More BON In Bank',
- 'certified-downloader' => 'Certified Downloader',
- 'certified-downloader-desc' => 'Downloaded 100 or More Torrents!',
- 'certified-seeder' => 'Certified Seeder',
- 'certified-seeder-desc' => 'Seeding 150 or More Torrents!',
- 'change-email' => 'Change Email',
- 'change-email-help' => 'You will have to re-confirm your account, after you change your email',
- 'change-password' => 'Change Password',
- 'change-password-help' => 'You will have to login again, after you change your password',
- 'client-connectable-state' => '{0}No|{1}Yes',
- 'client-list' => 'Clients and IP-Addresses',
- 'client-ip-address' => 'Client IP Address',
- 'code' => 'Code',
- 'comments' => 'Comments',
- 'created' => 'Created',
- 'created-on' => 'Created on',
- 'credited-download' => 'Credited Download',
- 'credited-upload' => 'Credited Upload',
- 'current-password' => 'Current Password',
- 'custom-title' => 'Custom Title',
- 'deactivate' => 'Deactivate',
- 'deactivate-all' => 'Deactivate All',
- 'delete' => 'Delete User',
- 'delete-all' => 'Delete All',
- 'deleted-by' => 'Deleted By',
- 'deleted-on' => 'Deleted On',
- 'disable-notifications' => 'Disable Notifications',
- 'disclaimer' => 'Disclaimer',
- 'disclaimer-info' => 'We by default do not log users IP addresses like most trackers. By adding your seedbox IP below it is expected that you know your IPs listed below are now stored in our database unless you delete the records.',
- 'disclaimer-info-bordered' => 'Seedbox IPs added will then trigger high speed torrent tag on torrents seeded from IPs listed below',
- 'download-bon' => 'Download Removed from BON Store',
- 'download-recorded' => 'Recorded Download',
- 'download-true' => 'True Download',
- 'downloads' => 'Downloads',
- 'edit' => 'Edit User',
- 'edit-profile' => 'Edit Profile',
- 'enable-notifications' => 'Enable Notifications',
- 'expired' => 'Expired',
- 'expires-on' => 'Expires On',
- 'extra' => 'Extra',
- 'filled-request' => 'Filled Members Requests',
- 'follow' => 'Follow',
- 'follow-already' => 'You are already following this user',
- 'follow-not-to-begin-with' => 'You are not following this user to begin with',
- 'follow-revoked' => 'You are no longer following %s',
- 'follow-user' => 'You are now following %s',
- 'follow-yourself' => 'Nice try, but sadly you can not follow yourself.',
- 'follower-privacy' => 'Follower Settings',
- 'follower-privacy-list' => 'Allow users to view a list of your followers',
- 'follower-help' => 'Control the sharing of specific follower related information with groups that are allowed to access to your profile.
+ 'bookmarks' => 'Bookmarks',
+ 'bounty-given' => 'Bounty Given',
+ 'bounty-received' => 'Bounty Received',
+ 'can-chat' => 'Can Chat',
+ 'can-comment' => 'Can Comment',
+ 'can-download' => 'Can Download',
+ 'can-invite' => 'Can Invite',
+ 'can-request' => 'Can Request',
+ 'can-upload' => 'Can Upload',
+ 'certified-banker' => 'Certified Banker',
+ 'certified-banker-desc' => 'Has 50,000 Or More BON In Bank',
+ 'certified-downloader' => 'Certified Downloader',
+ 'certified-downloader-desc' => 'Downloaded 100 or More Torrents!',
+ 'certified-seeder' => 'Certified Seeder',
+ 'certified-seeder-desc' => 'Seeding 150 or More Torrents!',
+ 'change-email' => 'Change Email',
+ 'change-email-help' => 'You will have to re-confirm your account, after you change your email',
+ 'change-password' => 'Change Password',
+ 'change-password-help' => 'You will have to login again, after you change your password',
+ 'client-connectable-state' => '{0}No|{1}Yes',
+ 'client-list' => 'Clients and IP-Addresses',
+ 'client-ip-address' => 'Client IP Address',
+ 'code' => 'Code',
+ 'comments' => 'Comments',
+ 'created' => 'Created',
+ 'created-on' => 'Created on',
+ 'credited-download' => 'Credited Download',
+ 'credited-upload' => 'Credited Upload',
+ 'current-password' => 'Current Password',
+ 'custom-title' => 'Custom Title',
+ 'deactivate' => 'Deactivate',
+ 'deactivate-all' => 'Deactivate All',
+ 'delete' => 'Delete User',
+ 'delete-all' => 'Delete All',
+ 'deleted-by' => 'Deleted By',
+ 'deleted-on' => 'Deleted On',
+ 'disable-notifications' => 'Disable Notifications',
+ 'disclaimer' => 'Disclaimer',
+ 'disclaimer-info' => 'We by default do not log users IP addresses like most trackers. By adding your seedbox IP below it is expected that you know your IPs listed below are now stored in our database unless you delete the records.',
+ 'disclaimer-info-bordered' => 'Seedbox IPs added will then trigger high speed torrent tag on torrents seeded from IPs listed below',
+ 'download-bon' => 'Download Removed from BON Store',
+ 'download-recorded' => 'Recorded Download',
+ 'download-true' => 'True Download',
+ 'downloads' => 'Downloads',
+ 'edit' => 'Edit User',
+ 'edit-profile' => 'Edit Profile',
+ 'enable-notifications' => 'Enable Notifications',
+ 'expired' => 'Expired',
+ 'expires-on' => 'Expires On',
+ 'extra' => 'Extra',
+ 'filled-request' => 'Filled Members Requests',
+ 'follow' => 'Follow',
+ 'follow-already' => 'You are already following this user',
+ 'follow-not-to-begin-with' => 'You are not following this user to begin with',
+ 'follow-revoked' => 'You are no longer following %s',
+ 'follow-user' => 'You are now following %s',
+ 'follow-yourself' => 'Nice try, but sadly you can not follow yourself.',
+ 'follower-privacy' => 'Follower Settings',
+ 'follower-privacy-list' => 'Allow users to view a list of your followers',
+ 'follower-help' => 'Control the sharing of specific follower related information with groups that are allowed to access to your profile.
These settings are overridden if you do not allow any groups to access your followers or if you Go Private',
- 'followers' => 'Followers',
- 'following-notification' => 'Followed User Notification Settings',
- 'following-notification-upload' => 'Receive a notification when a followed user uploads a torrent',
- 'following-notification-help' => 'Control which notifications are sent concerning followed user site actions.
+ 'followers' => 'Followers',
+ 'following-notification' => 'Followed User Notification Settings',
+ 'following-notification-upload' => 'Receive a notification when a followed user uploads a torrent',
+ 'following-notification-help' => 'Control which notifications are sent concerning followed user site actions.
These settings are overridden if you do not allow any groups to send notifications concerning followed users or if you Disable Notifications',
- 'formats-are-supported' => ':formats are supported',
- 'forum-notification' => 'Forum Notification Settings',
- 'forum-notification-topic' => 'Receive a notification when a topic that you started gets a new post',
- 'forum-notification-help' => 'Control which notifications are sent concerning forum activities.
+ 'formats-are-supported' => ':formats are supported',
+ 'forum-notification' => 'Forum Notification Settings',
+ 'forum-notification-topic' => 'Receive a notification when a topic that you started gets a new post',
+ 'forum-notification-help' => 'Control which notifications are sent concerning forum activities.
These settings are overridden if you do not allow any groups to send notifications concerning forum activities or if you Disable Notifications',
- 'forum-privacy' => 'Forum Settings',
- 'forum-privacy-post' => 'Allow users to view a list of forum posts that you have posted',
- 'forum-privacy-topic' => 'Allow users to view a list of forum topics that you have started',
- 'forum-help' => 'Control the sharing of specific forum related statistics and information with groups that are allowed to access to your profile.
+ 'forum-privacy' => 'Forum Settings',
+ 'forum-privacy-post' => 'Allow users to view a list of forum posts that you have posted',
+ 'forum-privacy-topic' => 'Allow users to view a list of forum topics that you have started',
+ 'forum-help' => 'Control the sharing of specific forum related statistics and information with groups that are allowed to access to your profile.
These settings are overridden if you do not allow any groups to access your forum related statistics and information or if you Go Private',
- 'forum-signature' => 'Forum Signature',
- 'forums' => 'Forums',
- 'general' => 'General',
- 'general-settings' => 'General Settings',
- 'gift-given' => 'Gift Given',
- 'gift-received' => 'Gift Received',
- 'go-public' => 'Go Public',
- 'go-private' => 'Go Private',
- 'history' => 'History',
- 'history-table' => 'My History Table',
- 'hit-n-runs' => 'Hit and Runs',
- 'hit-n-runs-count' => 'Hit and Run Count (All Time)',
- 'hit-n-runs-history' => 'Torrent Hit and Runs History',
- 'id-permissions' => 'ID & Permissions',
- 'image' => 'Image',
- 'important' => 'Important',
- 'important-info' => 'Important Info',
- 'information' => 'Information',
- 'invited-by' => 'Invited By',
- 'invite-already-sent' => 'The email address your trying to send a invite to has already been sent one.',
- 'invite-already-used' => 'The invite you are trying to resend has already been used.',
- 'invite-friend' => 'Invite your friend (Email + Message Required)',
- 'invite-resent-success' => 'Invite was resent successfully!',
- 'invite-sent-success' => 'Invite was sent successfully!',
- 'invite-tree' => 'Invite Tree',
- 'invites' => 'Invites',
- 'invites-banned' => 'Error: Your Invite Rights Have Been Disabled',
- 'invites-banned-desc' => 'If You Feel This Is In Error, Please Contact Staff!',
- 'invites-count' => 'You Have :count Invite Tokens',
- 'invites-disabled' => 'Attention: Invites Are Disabled Due To Open Registration!',
- 'invites-disabled-desc' => 'Please Check Back Soon!',
- 'invites-disabled-group' => 'Invites are currently disabled for your group.',
- 'invites-rules' => '- Only invite people you know and trust.
- You will be held personally responsible for those you invite.
- Dont invite yourself, we check every invited user.
- Dont trade or sell Invites.
- If a person you invited is caught cheating, trading account or selling/trading invites, you will be warned.
',
- 'invites-send' => 'Invites Send',
- 'judge' => 'Judge',
- 'last-login' => 'Last Login',
- 'locked' => 'Locked',
- 'locked-achievements' => 'Locked Achievements',
- 'member-since' => 'Member Since',
- 'members-desc' => 'List of users registered on :title in all groups. Find a user now.',
- 'mention-notification' => '@Mention Notification Settings',
+ 'forum-signature' => 'Forum Signature',
+ 'forums' => 'Forums',
+ 'general' => 'General',
+ 'general-settings' => 'General Settings',
+ 'gift-given' => 'Gift Given',
+ 'gift-received' => 'Gift Received',
+ 'go-public' => 'Go Public',
+ 'go-private' => 'Go Private',
+ 'history' => 'History',
+ 'history-table' => 'My History Table',
+ 'hit-n-runs' => 'Hit and Runs',
+ 'hit-n-runs-count' => 'Hit and Run Count (All Time)',
+ 'hit-n-runs-history' => 'Torrent Hit and Runs History',
+ 'id-permissions' => 'ID & Permissions',
+ 'image' => 'Image',
+ 'important' => 'Important',
+ 'important-info' => 'Important Info',
+ 'information' => 'Information',
+ 'invited-by' => 'Invited By',
+ 'invite-already-sent' => 'The email address your trying to send a invite to has already been sent one.',
+ 'invite-already-used' => 'The invite you are trying to resend has already been used.',
+ 'invite-friend' => 'Invite your friend (Email + Message Required)',
+ 'invite-resent-success' => 'Invite was resent successfully!',
+ 'invite-sent-success' => 'Invite was sent successfully!',
+ 'invite-tree' => 'Invite Tree',
+ 'invites' => 'Invites',
+ 'invites-banned' => 'Error: Your Invite Rights Have Been Disabled',
+ 'invites-banned-desc' => 'If You Feel This Is In Error, Please Contact Staff!',
+ 'invites-count' => 'You Have :count Invite Tokens',
+ 'invites-disabled' => 'Attention: Invites Are Disabled Due To Open Registration!',
+ 'invites-disabled-desc' => 'Please Check Back Soon!',
+ 'invites-disabled-group' => 'Invites are currently disabled for your group.',
+ 'invites-rules' => '- Only invite people you know and trust.
- You will be held personally responsible for those you invite.
- Dont invite yourself, we check every invited user.
- Dont trade or sell Invites.
- If a person you invited is caught cheating, trading account or selling/trading invites, you will be warned.
',
+ 'invites-send' => 'Invites Send',
+ 'judge' => 'Judge',
+ 'last-login' => 'Last Login',
+ 'locked' => 'Locked',
+ 'locked-achievements' => 'Locked Achievements',
+ 'member-since' => 'Member Since',
+ 'members-desc' => 'List of users registered on :title in all groups. Find a user now.',
+ 'mention-notification' => '@Mention Notification Settings',
'mention-notification-article-comment' => 'Receive a notification when you are @mentioned in an article comment',
'mention-notification-torrent-comment' => 'Receive a notification when you are @mentioned in a torrent comment',
'mention-notification-request-comment' => 'Receive a notification when you are @mentioned in a request comment',
- 'mention-notification-forum-post' => 'Receive a notification when you are @mentioned in a forum post',
- 'mention-notification-help' => 'Control which notifications are sent when a user @mentions you.
+ 'mention-notification-forum-post' => 'Receive a notification when you are @mentioned in a forum post',
+ 'mention-notification-help' => 'Control which notifications are sent when a user @mentions you.
These settings are overridden if you do not allow any groups to send notifications if a user @mentions you or if you Disable Notifications',
- 'moderated-by' => 'Moderated by :mod on',
- 'my-bonus-points' => 'My Bonus Points',
- 'my-bookmarks' => 'My Bookmarks',
- 'my-fl-tokens' => 'My FL tokens',
- 'my-general-settings' => 'My General Settings',
- 'my-notification' => 'My Notification',
- 'my-notification-settings' => 'My Notification Settings',
- 'my-privacy' => 'My Privacy',
- 'my-privacy-settings' => 'My Privacy Settings',
- 'my-profile' => 'My Profile',
- 'my-requested' => 'My Requested',
- 'my-security' => 'My Security',
- 'my-security-settings' => 'My Security Settings',
- 'my-seedboxes' => 'My Seedboxes',
- 'my-settings' => 'My Settings',
- 'my-uploads' => 'My Uploads',
- 'my-wishlist' => 'My Wishlist',
- 'no-ban' => 'The are no bans in the database for this user!',
- 'no-logs' => 'The are no invite logs in the database for this user!',
- 'no-seedboxes' => 'No Seedboxes 😔',
- 'no-soft-warning' => 'There are no soft deleted warnings in the database for this user!',
- 'no-warning' => 'The are no warnings in the database for this user!',
- 'not-authorized' => 'You are not authorized to view this page. This member prefers to be hidden like a ninja!',
- 'not-enough-invites' => 'You do not have enough invites!',
- 'not-satisfied-not-immune' => 'Not Satisfied / Not Immune',
- 'note' => 'Note',
- 'notification' => 'Notification',
- 'notification-settings' => 'Notification Settings',
- 'notification-from-account' => 'Receive Account Notifications From',
- 'notification-from-account-help' => 'You will only receive account notifications from the system, staff and the following groups.
+ 'moderated-by' => 'Moderated by :mod on',
+ 'my-bonus-points' => 'My Bonus Points',
+ 'my-bookmarks' => 'My Bookmarks',
+ 'my-fl-tokens' => 'My FL tokens',
+ 'my-general-settings' => 'My General Settings',
+ 'my-notification' => 'My Notification',
+ 'my-notification-settings' => 'My Notification Settings',
+ 'my-privacy' => 'My Privacy',
+ 'my-privacy-settings' => 'My Privacy Settings',
+ 'my-profile' => 'My Profile',
+ 'my-requested' => 'My Requested',
+ 'my-security' => 'My Security',
+ 'my-security-settings' => 'My Security Settings',
+ 'my-seedboxes' => 'My Seedboxes',
+ 'my-settings' => 'My Settings',
+ 'my-uploads' => 'My Uploads',
+ 'my-wishlist' => 'My Wishlist',
+ 'no-ban' => 'The are no bans in the database for this user!',
+ 'no-logs' => 'The are no invite logs in the database for this user!',
+ 'no-seedboxes' => 'No Seedboxes 😔',
+ 'no-soft-warning' => 'There are no soft deleted warnings in the database for this user!',
+ 'no-warning' => 'The are no warnings in the database for this user!',
+ 'not-authorized' => 'You are not authorized to view this page. This member prefers to be hidden like a ninja!',
+ 'not-enough-invites' => 'You do not have enough invites!',
+ 'not-satisfied-not-immune' => 'Not Satisfied / Not Immune',
+ 'note' => 'Note',
+ 'notification' => 'Notification',
+ 'notification-settings' => 'Notification Settings',
+ 'notification-from-account' => 'Receive Account Notifications From',
+ 'notification-from-account-help' => 'You will only receive account notifications from the system, staff and the following groups.
These settings are overridden if you Disable Notifications',
- 'notification-from-bon' => 'Receive BON Notifications From',
- 'notification-from-bon-help' => 'You will only receive BON notifications from the system, staff and the following groups.
+ 'notification-from-bon' => 'Receive BON Notifications From',
+ 'notification-from-bon-help' => 'You will only receive BON notifications from the system, staff and the following groups.
These settings are overridden if you Disable Notifications',
- 'notification-from-following' => 'Receive Followed User Notifications From',
- 'notification-from-following-help' => 'You will only receive followed user notifications from the following groups.
+ 'notification-from-following' => 'Receive Followed User Notifications From',
+ 'notification-from-following-help' => 'You will only receive followed user notifications from the following groups.
These settings are overridden if you Disable Notifications',
- 'notification-from-forum' => 'Receive Forum Notifications From',
- 'notification-from-forum-help' => 'You will only receive forum notifications from the system, staff and the following groups.
+ 'notification-from-forum' => 'Receive Forum Notifications From',
+ 'notification-from-forum-help' => 'You will only receive forum notifications from the system, staff and the following groups.
These settings are overridden if you Disable Notifications',
- 'notification-from-subscription' => 'Receive Subscription Notifications From',
- 'notification-from-subscription-help' => 'You will only receive forum notifications from the system, staff and the following groups.
+ 'notification-from-subscription' => 'Receive Subscription Notifications From',
+ 'notification-from-subscription-help' => 'You will only receive forum notifications from the system, staff and the following groups.
These settings are overridden if you Disable Notifications',
- 'notification-from-torrent' => 'Receive Torrent Notifications From',
- 'notification-from-torrent-help' => 'You will only receive torrent notifications from the system, staff and the following groups.
+ 'notification-from-torrent' => 'Receive Torrent Notifications From',
+ 'notification-from-torrent-help' => 'You will only receive torrent notifications from the system, staff and the following groups.
These settings are overridden if you Disable Notifications',
- 'notification-from-mention' => 'Receive @Mention Notifications From',
- 'notification-from-mention-help' => 'You will only receive @mention notifications from the system, staff and the following groups.
+ 'notification-from-mention' => 'Receive @Mention Notifications From',
+ 'notification-from-mention-help' => 'You will only receive @mention notifications from the system, staff and the following groups.
These settings are overridden if you Disable Notifications',
- 'notification-from-request' => 'Receive Request Notifications From',
- 'notification-from-request-help' => 'You will only receive request notifications from the system, staff and the following groups.
+ 'notification-from-request' => 'Receive Request Notifications From',
+ 'notification-from-request-help' => 'You will only receive request notifications from the system, staff and the following groups.
These settings are overridden if you Disable Notifications',
- 'notifications' => 'Notifications',
- 'offline' => 'User is Offline!',
- 'online' => 'User is Online!',
- 'open-registration' => 'Open Registration',
- 'options' => 'Options',
- 'other-help' => 'Control the sharing of other statistics and information with groups that are allowed to access to your profile.
+ 'notifications' => 'Notifications',
+ 'offline' => 'User is Offline!',
+ 'online' => 'User is Online!',
+ 'open-registration' => 'Open Registration',
+ 'options' => 'Options',
+ 'other-help' => 'Control the sharing of other statistics and information with groups that are allowed to access to your profile.
These settings are overridden if you do not allow any groups to access your other statistics and information or if you Go Private',
- 'other-privacy' => 'Other Settings',
- 'other-privacy-online' => 'Allow users to see you in the online users block',
- 'passkey' => 'PID',
- 'passkey-warning' => 'PID is like your password, you must keep it safe!',
- 'pending-achievements' => 'Pending Achievements',
- 'per-torrent' => 'Per Torrent',
- 'posts' => 'Posts',
- 'posts-posted' => 'Forum Posts Posted',
- 'privacy' => 'Privacy',
- 'privacy-settings' => 'Privacy Settings',
- 'private-info' => 'Private Info',
- 'private-forum-profile' => 'Attention: This Member\'s Topic & Post History Has Been Set To PRIVATE!',
- 'private-profile' => 'Attention: This Profile Has Been Set To PRIVATE!',
- 'profile' => 'Profile',
- 'profile-desc' => 'User :user profile registered on :title',
- 'profile-privacy' => 'Profile Settings',
- 'profile-privacy-torrent-count' => 'Share your total number of downloads, uploads, seeds and leeches',
- 'profile-privacy-torrent-ratio' => 'Share your total upload/download data along with recorded ratio',
- 'profile-privacy-torrent-seed' => 'Share your total seeding time and average',
- 'profile-privacy-title' => 'Share your personal title information',
- 'profile-privacy-about' => 'Share your personal about me information',
- 'profile-privacy-bon-extra' => 'Share your BON statistics',
- 'profile-privacy-comment-extra' => 'Share your comment statistics',
- 'profile-privacy-forum-extra' => 'Share your forum statistics',
- 'profile-privacy-request-extra' => 'Share your request statistics',
- 'profile-privacy-torrent-extra' => 'Share your torrent statistics',
- 'profile-privacy-badge' => 'Share your earned badges',
- 'profile-privacy-achievement' => 'Share your recent achievements',
- 'profile-privacy-follower' => 'Share your recent followers',
- 'profile-privacy-warning' => 'Share your H&R warnings',
- 'profile-privacy-help' => 'Control which statistics and pieces of information appear on your profile.
+ 'other-privacy' => 'Other Settings',
+ 'other-privacy-online' => 'Allow users to see you in the online users block',
+ 'passkey' => 'PID',
+ 'passkey-warning' => 'PID is like your password, you must keep it safe!',
+ 'pending-achievements' => 'Pending Achievements',
+ 'per-torrent' => 'Per Torrent',
+ 'posts' => 'Posts',
+ 'posts-posted' => 'Forum Posts Posted',
+ 'privacy' => 'Privacy',
+ 'privacy-settings' => 'Privacy Settings',
+ 'private-info' => 'Private Info',
+ 'private-forum-profile' => 'Attention: This Member\'s Topic & Post History Has Been Set To PRIVATE!',
+ 'private-profile' => 'Attention: This Profile Has Been Set To PRIVATE!',
+ 'profile' => 'Profile',
+ 'profile-desc' => 'User :user profile registered on :title',
+ 'profile-privacy' => 'Profile Settings',
+ 'profile-privacy-torrent-count' => 'Share your total number of downloads, uploads, seeds and leeches',
+ 'profile-privacy-torrent-ratio' => 'Share your total upload/download data along with recorded ratio',
+ 'profile-privacy-torrent-seed' => 'Share your total seeding time and average',
+ 'profile-privacy-title' => 'Share your personal title information',
+ 'profile-privacy-about' => 'Share your personal about me information',
+ 'profile-privacy-bon-extra' => 'Share your BON statistics',
+ 'profile-privacy-comment-extra' => 'Share your comment statistics',
+ 'profile-privacy-forum-extra' => 'Share your forum statistics',
+ 'profile-privacy-request-extra' => 'Share your request statistics',
+ 'profile-privacy-torrent-extra' => 'Share your torrent statistics',
+ 'profile-privacy-badge' => 'Share your earned badges',
+ 'profile-privacy-achievement' => 'Share your recent achievements',
+ 'profile-privacy-follower' => 'Share your recent followers',
+ 'profile-privacy-warning' => 'Share your H&R warnings',
+ 'profile-privacy-help' => 'Control which statistics and pieces of information appear on your profile.
These settings are overridden if you do not allow any groups to access your profile or if you Go Private',
- 'public-info' => 'Public Info',
- 'reason-ban' => 'Ban Reason',
- 'reason-unban' => 'Unban Reason',
- 'recent-achievements' => 'Recent Achievements',
- 'recent-followers' => 'Recent Followers',
- 'registration-date' => 'Registration date',
- 'removed' => 'Removed',
- 'report' => 'Report',
- 'report-sent' => 'Your report has been successfully sent',
- 'request-help' => 'Control the sharing of specific request related statistics and information with groups that are allowed to access to your profile.
+ 'public-info' => 'Public Info',
+ 'reason-ban' => 'Ban Reason',
+ 'reason-unban' => 'Unban Reason',
+ 'recent-achievements' => 'Recent Achievements',
+ 'recent-followers' => 'Recent Followers',
+ 'registration-date' => 'Registration date',
+ 'removed' => 'Removed',
+ 'report' => 'Report',
+ 'report-sent' => 'Your report has been successfully sent',
+ 'request-help' => 'Control the sharing of specific request related statistics and information with groups that are allowed to access to your profile.
These settings are overridden if you do not allow any groups to access your requested related statistics and information or if you Go Private',
- 'request' => 'Request',
- 'requested' => 'Requested',
- 'requests' => 'Requests',
- 'request-comments' => 'Request Comments Made',
- 'request-notification' => 'Request Notification Settings',
- 'request-notification-bounty' => 'Receive a notification when a requested torrent gets a new bounty',
- 'request-notification-comment' => 'Receive a notification when a requested torrent gets a new comment',
- 'request-notification-fill' => 'Receive a notification when a requested torrent gets filled',
- 'request-notification-fill-approve' => 'Receive a notification when a requested torrent fill gets approved',
- 'request-notification-fill-reject' => 'Receive a notification when a requested torrent fill gets rejected',
- 'request-notification-claim' => 'Receive a notification when a requested torrent gets claimed',
- 'request-notification-unclaim' => 'Receive a notification when a requested torrent gets unclaimed',
- 'request-notification-help' => 'Control which notifications are sent concerning request activities.
+ 'request' => 'Request',
+ 'requested' => 'Requested',
+ 'requests' => 'Requests',
+ 'request-comments' => 'Request Comments Made',
+ 'request-notification' => 'Request Notification Settings',
+ 'request-notification-bounty' => 'Receive a notification when a requested torrent gets a new bounty',
+ 'request-notification-comment' => 'Receive a notification when a requested torrent gets a new comment',
+ 'request-notification-fill' => 'Receive a notification when a requested torrent gets filled',
+ 'request-notification-fill-approve' => 'Receive a notification when a requested torrent fill gets approved',
+ 'request-notification-fill-reject' => 'Receive a notification when a requested torrent fill gets rejected',
+ 'request-notification-claim' => 'Receive a notification when a requested torrent gets claimed',
+ 'request-notification-unclaim' => 'Receive a notification when a requested torrent gets unclaimed',
+ 'request-notification-help' => 'Control which notifications are sent concerning request activities.
These settings are overridden if you do not allow any groups to send notifications concerning request activities or if you Disable Notifications',
- 'request-privacy' => 'Request Settings',
- 'request-privacy-requested' => 'Allow users to view a list of requests that you have made',
- 'reset-api-token' => 'Reset API Token',
- 'reset-api-help' => 'You will have to update any scripts or applications you are using with your new token, after resetting the API Token',
- 'reset-passkey' => 'Reset Pass Key (PID)',
- 'reset-passkey-help' => 'You will have to re-download/re-upload all of your active torrents, after resetting the PID',
- 'reset-rss' => 'Reset RSS Key (RID)',
- 'reset-rss-help' => 'You will have to re-load all of your active RSS feeds, after resetting the RID',
- 'resurrections' => 'Resurrections',
- 'restore' => 'Restore',
- 'satisfied-immune' => 'Satisfied / Immune',
- 'search' => 'Quick Search by Username/Email',
- 'security' => 'Security',
- 'security-settings' => 'Security Settings',
- 'seedbox-added-success' => 'Seedbox Has Been Successfully Added!',
- 'seedbox-deleted-success' => 'Seedbox Has Been Successfully Deleted',
- 'seedboxes' => 'Seedboxes',
- 'seeding-size' => 'Seeding Size',
- 'seeds' => 'Seeds',
- 'send-invite' => 'Send Invite',
- 'sender' => 'Sender',
- 'settings' => 'Settings',
- 'show-passkey' => 'Show PID',
- 'soft-deleted-warnings' => 'Soft Deleted Warnings',
- 'staff-noted' => 'Staff Noted Account',
- 'statistics' => 'Statistics',
- 'subscription-notification' => 'Subscription Notification Settings',
- 'subscription-notification-forum' => 'Receive a notification when a subscribed forum gets a new topic',
- 'subscription-notification-topic' => 'Receive a notification when a subscribed topic gets a new post',
- 'subscription-notification-help' => 'Control which notifications are sent concerning your subscriptions.
+ 'request-privacy' => 'Request Settings',
+ 'request-privacy-requested' => 'Allow users to view a list of requests that you have made',
+ 'reset-api-token' => 'Reset API Token',
+ 'reset-api-help' => 'You will have to update any scripts or applications you are using with your new token, after resetting the API Token',
+ 'reset-passkey' => 'Reset Pass Key (PID)',
+ 'reset-passkey-help' => 'You will have to re-download/re-upload all of your active torrents, after resetting the PID',
+ 'reset-rss' => 'Reset RSS Key (RID)',
+ 'reset-rss-help' => 'You will have to re-load all of your active RSS feeds, after resetting the RID',
+ 'resurrections' => 'Resurrections',
+ 'restore' => 'Restore',
+ 'satisfied-immune' => 'Satisfied / Immune',
+ 'search' => 'Quick Search by Username/Email',
+ 'security' => 'Security',
+ 'security-settings' => 'Security Settings',
+ 'seedbox-added-success' => 'Seedbox Has Been Successfully Added!',
+ 'seedbox-deleted-success' => 'Seedbox Has Been Successfully Deleted',
+ 'seedboxes' => 'Seedboxes',
+ 'seeding-size' => 'Seeding Size',
+ 'seeds' => 'Seeds',
+ 'send-invite' => 'Send Invite',
+ 'sender' => 'Sender',
+ 'settings' => 'Settings',
+ 'show-passkey' => 'Show PID',
+ 'soft-deleted-warnings' => 'Soft Deleted Warnings',
+ 'staff-noted' => 'Staff Noted Account',
+ 'statistics' => 'Statistics',
+ 'subscription-notification' => 'Subscription Notification Settings',
+ 'subscription-notification-forum' => 'Receive a notification when a subscribed forum gets a new topic',
+ 'subscription-notification-topic' => 'Receive a notification when a subscribed topic gets a new post',
+ 'subscription-notification-help' => 'Control which notifications are sent concerning your subscriptions.
These settings are overridden if you do not allow any groups to send notifications concerning your subscriptions or if you Disable Notifications',
- 'thanks-given' => 'Thanks Given',
- 'thanks-received' => 'Thanks Received',
- 'tips-given' => 'Tips Given',
- 'tips-received' => 'Tips Received',
- 'title' => 'Title',
- 'top-bankers' => 'Top Bankers',
- 'top-bountied' => 'Top Bountied',
- 'top-completed' => 'Top Completed',
- 'top-downloaders-data' => 'Top Downloaders (Data)',
- 'top-dead' => 'Top Dead',
- 'top-dying' => 'Top Dying',
- 'top-leeched' => 'Top Leeched',
- 'top-leechers' => 'Top Leechers',
- 'top-leechers-count' => 'Top Leechers (Count)',
- 'top-seeded' => 'Top Seeded',
- 'top-seeders' => 'Top Seeders',
- 'top-seeders-count' => 'Top Seeders (Count)',
- 'top-seeding-size' => 'Top Seeding (Size)',
- 'top-seedtime' => 'Top Seedtime',
- 'top-uploaders-data' => 'Top Uploaders (Data)',
- 'top-uploaders-count' => 'Top Uploaders (Count)',
- 'topics' => 'Topics',
- 'topics-started' => 'Forum Topics Started',
- 'torrent-comments' => 'Torrent Comments Made',
- 'torrent-help' => 'Control the sharing of specific torrent related statistics and information with groups that are allowed to access to your profile.
+ 'thanks-given' => 'Thanks Given',
+ 'thanks-received' => 'Thanks Received',
+ 'tips-given' => 'Tips Given',
+ 'tips-received' => 'Tips Received',
+ 'title' => 'Title',
+ 'top-bankers' => 'Top Bankers',
+ 'top-bountied' => 'Top Bountied',
+ 'top-completed' => 'Top Completed',
+ 'top-downloaders-data' => 'Top Downloaders (Data)',
+ 'top-dead' => 'Top Dead',
+ 'top-dying' => 'Top Dying',
+ 'top-leeched' => 'Top Leeched',
+ 'top-leechers' => 'Top Leechers',
+ 'top-leechers-count' => 'Top Leechers (Count)',
+ 'top-seeded' => 'Top Seeded',
+ 'top-seeders' => 'Top Seeders',
+ 'top-seeders-count' => 'Top Seeders (Count)',
+ 'top-seeding-size' => 'Top Seeding (Size)',
+ 'top-seedtime' => 'Top Seedtime',
+ 'top-uploaders-data' => 'Top Uploaders (Data)',
+ 'top-uploaders-count' => 'Top Uploaders (Count)',
+ 'topics' => 'Topics',
+ 'topics-started' => 'Forum Topics Started',
+ 'torrent-comments' => 'Torrent Comments Made',
+ 'torrent-help' => 'Control the sharing of specific torrent related statistics and information with groups that are allowed to access to your profile.
These settings are overridden if you do not allow any groups to access your torrent related statistics and information or if you Go Private',
- 'torrent-notification' => 'Torrent Notification Settings',
- 'torrent-notification-comment' => 'Receive a notification when an uploaded torrent gets a new comment',
- 'torrent-notification-thank' => 'Receive a notification when an uploaded torrent gets a new thank',
- 'torrent-notification-tip' => 'Receive a notification when an uploaded torrent gets a new tip',
- 'torrent-notification-help' => 'Control which notifications are sent concerning torrent activities.
+ 'torrent-notification' => 'Torrent Notification Settings',
+ 'torrent-notification-comment' => 'Receive a notification when an uploaded torrent gets a new comment',
+ 'torrent-notification-thank' => 'Receive a notification when an uploaded torrent gets a new thank',
+ 'torrent-notification-tip' => 'Receive a notification when an uploaded torrent gets a new tip',
+ 'torrent-notification-help' => 'Control which notifications are sent concerning torrent activities.
These settings are overridden if you do not allow any groups to send notifications concerning torrent activities or if you Disable Notifications',
- 'torrent-privacy' => 'Torrent Settings',
- 'torrent-privacy-download' => 'Allow users to view a list of torrents that you have downloaded',
- 'torrent-privacy-upload' => 'Allow users to view a list of torrents that you have uploaded',
- 'torrent-privacy-peer' => 'Allow users to see you in the torrent peer history table',
- 'torrents' => 'Torrents',
- 'torrents-history' => 'Torrents History',
- 'total-download' => 'Total Download',
- 'total-downloads' => 'Total Downloads',
- 'total-leeching' => 'Total Leeching',
- 'total-seeding' => 'Total Seeding',
- 'total-seedtime' => 'Total Seedtime',
- 'total-upload' => 'Total Upload',
- 'total-uploads' => 'Total Uploads',
- 'unban' => 'Unban User',
- 'unfollow' => 'Unfollow',
- 'unlocked' => 'Unlocked',
- 'unlocked-achievements' => 'Unlocked Achievements',
- 'unsatisfieds' => 'Unsatisfieds',
- 'upload-bon' => 'Upload Added from BON Store',
- 'upload-recorded' => 'Recorded Upload',
- 'upload-true' => 'True Upload',
- 'uploads' => 'Uploads',
- 'uploads-table' => 'Uploads Table',
- 'user' => 'User',
- 'user-id' => 'User ID',
- 'username-seedbox' => 'Username Seedbox',
- 'visible-to-achievement' => 'Achievements Visible To',
- 'visible-to-achievement-help' => 'Your achievements will only be visible to staff and the following groups.
+ 'torrent-privacy' => 'Torrent Settings',
+ 'torrent-privacy-download' => 'Allow users to view a list of torrents that you have downloaded',
+ 'torrent-privacy-upload' => 'Allow users to view a list of torrents that you have uploaded',
+ 'torrent-privacy-peer' => 'Allow users to see you in the torrent peer history table',
+ 'torrents' => 'Torrents',
+ 'torrents-history' => 'Torrents History',
+ 'total-download' => 'Total Download',
+ 'total-downloads' => 'Total Downloads',
+ 'total-leeching' => 'Total Leeching',
+ 'total-seeding' => 'Total Seeding',
+ 'total-seedtime' => 'Total Seedtime',
+ 'total-upload' => 'Total Upload',
+ 'total-uploads' => 'Total Uploads',
+ 'unban' => 'Unban User',
+ 'unfollow' => 'Unfollow',
+ 'unlocked' => 'Unlocked',
+ 'unlocked-achievements' => 'Unlocked Achievements',
+ 'unsatisfieds' => 'Unsatisfieds',
+ 'upload-bon' => 'Upload Added from BON Store',
+ 'upload-recorded' => 'Recorded Upload',
+ 'upload-true' => 'True Upload',
+ 'uploads' => 'Uploads',
+ 'uploads-table' => 'Uploads Table',
+ 'user' => 'User',
+ 'user-id' => 'User ID',
+ 'username-seedbox' => 'Username Seedbox',
+ 'visible-to-achievement' => 'Achievements Visible To',
+ 'visible-to-achievement-help' => 'Your achievements will only be visible to staff and the following groups.
These settings are overridden if you Go Private',
- 'visible-to-follower' => 'Followers Visible To',
- 'visible-to-follower-help' => 'Your followers will only be visible to staff and the following groups.
+ 'visible-to-follower' => 'Followers Visible To',
+ 'visible-to-follower-help' => 'Your followers will only be visible to staff and the following groups.
These settings are overridden if you Go Private',
- 'visible-to-forum' => 'Forum Information Visible To',
- 'visible-to-forum-help' => 'Your forum information will only be visible to staff and the following groups.
+ 'visible-to-forum' => 'Forum Information Visible To',
+ 'visible-to-forum-help' => 'Your forum information will only be visible to staff and the following groups.
These settings are overridden if you Go Private',
- 'visible-to-other' => 'Other Visible To',
- 'visible-to-other-help' => 'Other information concerning your account will only be visible to staff and the following groups.
+ 'visible-to-other' => 'Other Visible To',
+ 'visible-to-other-help' => 'Other information concerning your account will only be visible to staff and the following groups.
These settings are overridden if you Go Private or if you Go Hidden',
- 'visible-to-profile' => 'Profile Visible To',
- 'visible-to-profile-help' => 'Your profile will only be visible to staff and the following groups.
+ 'visible-to-profile' => 'Profile Visible To',
+ 'visible-to-profile-help' => 'Your profile will only be visible to staff and the following groups.
These settings are overridden if you Go Private',
- 'visible-to-request' => 'Request Information Visible To',
- 'visible-to-request-help' => 'Your request information will only be visible to staff and the following groups.
+ 'visible-to-request' => 'Request Information Visible To',
+ 'visible-to-request-help' => 'Your request information will only be visible to staff and the following groups.
These settings are overridden if you Go Private',
- 'visible-to-torrent' => 'Torrent Information Visible To',
- 'visible-to-torrent-help' => 'Your torrent information will only be visible to staff and the following groups.
+ 'visible-to-torrent' => 'Torrent Information Visible To',
+ 'visible-to-torrent-help' => 'Your torrent information will only be visible to staff and the following groups.
These settings are overridden if you Go Private or if you Go Hidden',
- 'warned-by' => 'Warned By',
- 'warned-on' => 'Warned On',
- 'warning' => 'Warning',
- 'warnings' => 'Warnings',
- 'warning-log' => 'Warning Log',
- 'wishlist' => 'Wishlist',
+ 'warned-by' => 'Warned By',
+ 'warned-on' => 'Warned On',
+ 'warning' => 'Warning',
+ 'warnings' => 'Warnings',
+ 'warning-log' => 'Warning Log',
+ 'wishlist' => 'Wishlist',
];
diff --git a/lang/en/validation.php b/lang/en/validation.php
index 06957164a..3172220b3 100644
--- a/lang/en/validation.php
+++ b/lang/en/validation.php
@@ -23,121 +23,121 @@ return [
|
*/
- 'accepted' => 'The :attribute must be accepted.',
- 'accepted_if' => 'The :attribute must be accepted when :other is :value.',
- 'active_url' => 'The :attribute is not a valid URL.',
- 'after' => 'The :attribute must be a date after :date.',
- 'after_or_equal' => 'The :attribute must be a date after or equal to :date.',
- 'alpha' => 'The :attribute must only contain letters.',
- 'alpha_dash' => 'The :attribute must only contain letters, numbers, dashes and underscores.',
- 'alpha_num' => 'The :attribute must only contain letters and numbers.',
- 'array' => 'The :attribute must be an array.',
- 'before' => 'The :attribute must be a date before :date.',
+ 'accepted' => 'The :attribute must be accepted.',
+ 'accepted_if' => 'The :attribute must be accepted when :other is :value.',
+ 'active_url' => 'The :attribute is not a valid URL.',
+ 'after' => 'The :attribute must be a date after :date.',
+ 'after_or_equal' => 'The :attribute must be a date after or equal to :date.',
+ 'alpha' => 'The :attribute must only contain letters.',
+ 'alpha_dash' => 'The :attribute must only contain letters, numbers, dashes and underscores.',
+ 'alpha_num' => 'The :attribute must only contain letters and numbers.',
+ 'array' => 'The :attribute must be an array.',
+ 'before' => 'The :attribute must be a date before :date.',
'before_or_equal' => 'The :attribute must be a date before or equal to :date.',
- 'between' => [
+ 'between' => [
'numeric' => 'The :attribute must be between :min and :max.',
- 'file' => 'The :attribute must be between :min and :max kilobytes.',
- 'string' => 'The :attribute must be between :min and :max characters.',
- 'array' => 'The :attribute must have between :min and :max items.',
+ 'file' => 'The :attribute must be between :min and :max kilobytes.',
+ 'string' => 'The :attribute must be between :min and :max characters.',
+ 'array' => 'The :attribute must have between :min and :max items.',
],
- 'boolean' => 'The :attribute field must be true or false.',
- 'confirmed' => 'The :attribute confirmation does not match.',
+ 'boolean' => 'The :attribute field must be true or false.',
+ 'confirmed' => 'The :attribute confirmation does not match.',
'current_password' => 'The password is incorrect.',
- 'date' => 'The :attribute is not a valid date.',
- 'date_equals' => 'The :attribute must be a date equal to :date.',
- 'date_format' => 'The :attribute does not match the format :format.',
- 'declined' => 'The :attribute must be declined.',
- 'declined_if' => 'The :attribute must be declined when :other is :value.',
- 'different' => 'The :attribute and :other must be different.',
- 'digits' => 'The :attribute must be :digits digits.',
- 'digits_between' => 'The :attribute must be between :min and :max digits.',
- 'dimensions' => 'The :attribute has invalid image dimensions.',
- 'distinct' => 'The :attribute field has a duplicate value.',
- 'email' => 'The :attribute must be a valid email address.',
- 'ends_with' => 'The :attribute must end with one of the following: :values.',
- 'enum' => 'The selected :attribute is invalid.',
- 'exists' => 'The selected :attribute is invalid.',
- 'file' => 'The :attribute must be a file.',
- 'filled' => 'The :attribute field must have a value.',
- 'gt' => [
+ 'date' => 'The :attribute is not a valid date.',
+ 'date_equals' => 'The :attribute must be a date equal to :date.',
+ 'date_format' => 'The :attribute does not match the format :format.',
+ 'declined' => 'The :attribute must be declined.',
+ 'declined_if' => 'The :attribute must be declined when :other is :value.',
+ 'different' => 'The :attribute and :other must be different.',
+ 'digits' => 'The :attribute must be :digits digits.',
+ 'digits_between' => 'The :attribute must be between :min and :max digits.',
+ 'dimensions' => 'The :attribute has invalid image dimensions.',
+ 'distinct' => 'The :attribute field has a duplicate value.',
+ 'email' => 'The :attribute must be a valid email address.',
+ 'ends_with' => 'The :attribute must end with one of the following: :values.',
+ 'enum' => 'The selected :attribute is invalid.',
+ 'exists' => 'The selected :attribute is invalid.',
+ 'file' => 'The :attribute must be a file.',
+ 'filled' => 'The :attribute field must have a value.',
+ 'gt' => [
'numeric' => 'The :attribute must be greater than :value.',
- 'file' => 'The :attribute must be greater than :value kilobytes.',
- 'string' => 'The :attribute must be greater than :value characters.',
- 'array' => 'The :attribute must have more than :value items.',
+ 'file' => 'The :attribute must be greater than :value kilobytes.',
+ 'string' => 'The :attribute must be greater than :value characters.',
+ 'array' => 'The :attribute must have more than :value items.',
],
'gte' => [
'numeric' => 'The :attribute must be greater than or equal to :value.',
- 'file' => 'The :attribute must be greater than or equal to :value kilobytes.',
- 'string' => 'The :attribute must be greater than or equal to :value characters.',
- 'array' => 'The :attribute must have :value items or more.',
+ 'file' => 'The :attribute must be greater than or equal to :value kilobytes.',
+ 'string' => 'The :attribute must be greater than or equal to :value characters.',
+ 'array' => 'The :attribute must have :value items or more.',
],
- 'image' => 'The :attribute must be an image.',
- 'in' => 'The selected :attribute is invalid.',
- 'in_array' => 'The :attribute field does not exist in :other.',
- 'integer' => 'The :attribute must be an integer.',
- 'ip' => 'The :attribute must be a valid IP address.',
- 'ipv4' => 'The :attribute must be a valid IPv4 address.',
- 'ipv6' => 'The :attribute must be a valid IPv6 address.',
+ 'image' => 'The :attribute must be an image.',
+ 'in' => 'The selected :attribute is invalid.',
+ 'in_array' => 'The :attribute field does not exist in :other.',
+ 'integer' => 'The :attribute must be an integer.',
+ 'ip' => 'The :attribute must be a valid IP address.',
+ 'ipv4' => 'The :attribute must be a valid IPv4 address.',
+ 'ipv6' => 'The :attribute must be a valid IPv6 address.',
'mac_address' => 'The :attribute must be a valid MAC address.',
- 'json' => 'The :attribute must be a valid JSON string.',
- 'lt' => [
+ 'json' => 'The :attribute must be a valid JSON string.',
+ 'lt' => [
'numeric' => 'The :attribute must be less than :value.',
- 'file' => 'The :attribute must be less than :value kilobytes.',
- 'string' => 'The :attribute must be less than :value characters.',
- 'array' => 'The :attribute must have less than :value items.',
+ 'file' => 'The :attribute must be less than :value kilobytes.',
+ 'string' => 'The :attribute must be less than :value characters.',
+ 'array' => 'The :attribute must have less than :value items.',
],
'lte' => [
'numeric' => 'The :attribute must be less than or equal to :value.',
- 'file' => 'The :attribute must be less than or equal to :value kilobytes.',
- 'string' => 'The :attribute must be less than or equal to :value characters.',
- 'array' => 'The :attribute must not have more than :value items.',
+ 'file' => 'The :attribute must be less than or equal to :value kilobytes.',
+ 'string' => 'The :attribute must be less than or equal to :value characters.',
+ 'array' => 'The :attribute must not have more than :value items.',
],
'max' => [
'numeric' => 'The :attribute must not be greater than :max.',
- 'file' => 'The :attribute must not be greater than :max kilobytes.',
- 'string' => 'The :attribute must not be greater than :max characters.',
- 'array' => 'The :attribute must not have more than :max items.',
+ 'file' => 'The :attribute must not be greater than :max kilobytes.',
+ 'string' => 'The :attribute must not be greater than :max characters.',
+ 'array' => 'The :attribute must not have more than :max items.',
],
- 'mimes' => 'The :attribute must be a file of type: :values.',
+ 'mimes' => 'The :attribute must be a file of type: :values.',
'mimetypes' => 'The :attribute must be a file of type: :values.',
- 'min' => [
+ 'min' => [
'numeric' => 'The :attribute must be at least :min.',
- 'file' => 'The :attribute must be at least :min kilobytes.',
- 'string' => 'The :attribute must be at least :min characters.',
- 'array' => 'The :attribute must have at least :min items.',
+ 'file' => 'The :attribute must be at least :min kilobytes.',
+ 'string' => 'The :attribute must be at least :min characters.',
+ 'array' => 'The :attribute must have at least :min items.',
],
- 'multiple_of' => 'The :attribute must be a multiple of :value.',
- 'not_in' => 'The selected :attribute is invalid.',
- 'not_regex' => 'The :attribute format is invalid.',
- 'numeric' => 'The :attribute must be a number.',
- 'password' => 'The password is incorrect.',
- 'present' => 'The :attribute field must be present.',
- 'prohibited' => 'The :attribute field is prohibited.',
- 'prohibited_if' => 'The :attribute field is prohibited when :other is :value.',
- 'prohibited_unless' => 'The :attribute field is prohibited unless :other is in :values.',
- 'prohibits' => 'The :attribute field prohibits :other from being present.',
- 'regex' => 'The :attribute format is invalid.',
- 'required' => 'The :attribute field is required.',
- 'required_if' => 'The :attribute field is required when :other is :value.',
- 'required_unless' => 'The :attribute field is required unless :other is in :values.',
- 'required_with' => 'The :attribute field is required when :values is present.',
- 'required_with_all' => 'The :attribute field is required when :values are present.',
- 'required_without' => 'The :attribute field is required when :values is not present.',
+ 'multiple_of' => 'The :attribute must be a multiple of :value.',
+ 'not_in' => 'The selected :attribute is invalid.',
+ 'not_regex' => 'The :attribute format is invalid.',
+ 'numeric' => 'The :attribute must be a number.',
+ 'password' => 'The password is incorrect.',
+ 'present' => 'The :attribute field must be present.',
+ 'prohibited' => 'The :attribute field is prohibited.',
+ 'prohibited_if' => 'The :attribute field is prohibited when :other is :value.',
+ 'prohibited_unless' => 'The :attribute field is prohibited unless :other is in :values.',
+ 'prohibits' => 'The :attribute field prohibits :other from being present.',
+ 'regex' => 'The :attribute format is invalid.',
+ 'required' => 'The :attribute field is required.',
+ 'required_if' => 'The :attribute field is required when :other is :value.',
+ 'required_unless' => 'The :attribute field is required unless :other is in :values.',
+ 'required_with' => 'The :attribute field is required when :values is present.',
+ 'required_with_all' => 'The :attribute field is required when :values are present.',
+ 'required_without' => 'The :attribute field is required when :values is not present.',
'required_without_all' => 'The :attribute field is required when none of :values are present.',
- 'same' => 'The :attribute and :other must match.',
- 'size' => [
+ 'same' => 'The :attribute and :other must match.',
+ 'size' => [
'numeric' => 'The :attribute must be :size.',
- 'file' => 'The :attribute must be :size kilobytes.',
- 'string' => 'The :attribute must be :size characters.',
- 'array' => 'The :attribute must contain :size items.',
+ 'file' => 'The :attribute must be :size kilobytes.',
+ 'string' => 'The :attribute must be :size characters.',
+ 'array' => 'The :attribute must contain :size items.',
],
'starts_with' => 'The :attribute must start with one of the following: :values.',
- 'string' => 'The :attribute must be a string.',
- 'timezone' => 'The :attribute must be a valid timezone.',
- 'unique' => 'The :attribute has already been taken.',
- 'uploaded' => 'The :attribute failed to upload.',
- 'url' => 'The :attribute must be a valid URL.',
- 'uuid' => 'The :attribute must be a valid UUID.',
+ 'string' => 'The :attribute must be a string.',
+ 'timezone' => 'The :attribute must be a valid timezone.',
+ 'unique' => 'The :attribute has already been taken.',
+ 'uploaded' => 'The :attribute failed to upload.',
+ 'url' => 'The :attribute must be a valid URL.',
+ 'uuid' => 'The :attribute must be a valid UUID.',
/*
|--------------------------------------------------------------------------
@@ -151,7 +151,7 @@ return [
*/
'email_list' => 'Sorry, this email domain is not allowed to be used on this site. Please see sites email whitelist.',
- 'recaptcha' => 'Please Complete The ReCaptcha.',
+ 'recaptcha' => 'Please Complete The ReCaptcha.',
'custom' => [
'attribute-name' => [
diff --git a/lang/es/articles.php b/lang/es/articles.php
index 59a63fe03..44e7167cc 100644
--- a/lang/es/articles.php
+++ b/lang/es/articles.php
@@ -12,8 +12,8 @@
*/
return [
- 'articles' => 'Anuncios',
+ 'articles' => 'Anuncios',
'meta-articles' => 'Anuncios y noticias sobre el tracker y la comunidad.',
- 'published-at' => 'Publicado el',
- 'read-more' => 'Leer más',
+ 'published-at' => 'Publicado el',
+ 'read-more' => 'Leer más',
];
diff --git a/lang/es/auth.php b/lang/es/auth.php
index 1d02ae227..56481ce02 100644
--- a/lang/es/auth.php
+++ b/lang/es/auth.php
@@ -17,91 +17,91 @@ return [
| Default Authentication Language Lines
|--------------------------------------------------------------------------
*/
- 'activation-error' => '¡Token inválido, bloqueado o ya confirmado!',
- 'activation-success' => '¡Cuenta confirmada! Ya puedes iniciar sesión',
- 'add-image' => 'Añadir otra imagen',
- 'add-profile' => 'Añadir otro perfil',
- 'allow-invite-appl' => 'Registro libre cerrado. Se necesita una invitación para entrar. Sin embargo, puedes pedir permiso a continuacion.',
- 'allow-invite' => 'Registro libre cerrado. Se necesita una invitación para entrar. Has sido devuelto a la página inicial.',
- 'are-you' => 'Eres...?:',
- 'application' => 'Registro',
- 'appl-closed' => 'No se aceptan nuevos usuarios.',
- 'appl-intro' => 'es una comunidad privada. Necesitas que alguien te envie una invitación para entrar. Si no, puedes pedir permiso enviando el siguiente formulario.',
- 'appl-reason' => 'Como te enteraste de ":sitename" y por qué quieres unirte?',
- 'application-submitted' => '¡Petición enviada! Pronto recibiras un correo electrónico.',
- 'banned' => '¡Esta cuenta esta bloqueada por el administrador!',
- 'check-later' => 'Vuelve más tarde.',
- 'delete-image' => 'Borrar imagen',
- 'delete-profile' => 'Borrar perfil',
- 'email' => 'E-mail',
- 'failed' => 'No se han podido validar estas credenciales.',
- 'invalid-key' => '¡Invitación inválida o caducada!',
- 'login' => 'Iniciar sesión',
- 'login-now-on' => 'Iniciar sesión en',
- 'logout' => 'Cerrar sesión',
- 'lost-password' => '¿Olvidaste tu contraseña?',
- 'lost-username' => '¿Olvidaste tu usuario?',
- 'need-invite' => 'Registro libre cerrado. Se necesita una invitación para entrar.',
- 'newbie' => 'Nuevo en la comunidad',
- 'not-a-member' => '¿Aún no eres miembro? Sólo llevará 30 segundos.',
- 'not-activated' => 'Cuenta pendiente de validación. Por favor valida tu e-mail con el link en el correo. Si no recibiste ningún correo, utiliza el menú de Olvidé mi contraseña.',
- 'password' => 'Contraseña',
- 'proof-image' => 'Link a la imágen',
- 'proof-image-title' => 'Links de tus imágenes con las pruebas',
- 'proof-profile' => 'Link al perfil',
- 'proof-profile-title' => 'Links de tus perfiles',
- 'proof-min' => '(Mínimo 2, recomendado 3)',
- 'recover-my-password' => 'Recuperar constraseña',
- 'register-thanks' => '¡Registro realizado! Pronto recibiras un correo electrónico para validar tu cuenta.',
- 'remember-me' => 'Recordar usuario',
- 'require-rules' => 'Para continuiar, debes leer y acepta nuestras condiciones al final de la página.',
- 'signup' => 'Registrarse',
- 'throttle' => 'Demasiados intentos. Vuelve a intentarlo en :seconds segundos.',
- 'unlock' => 'Desbloquear',
- 'user-icon' => 'Icono de usuario',
- 'username' => 'Usuario',
- 'veteran' => 'Veterano en Trackers privados',
- 'welcome' => '¡Bienvenido!',
- 'welcome-restore' => '¡Te echábamos de menos! Tu cuenta se ha desbloqueado correctamente.',
+ 'activation-error' => '¡Token inválido, bloqueado o ya confirmado!',
+ 'activation-success' => '¡Cuenta confirmada! Ya puedes iniciar sesión',
+ 'add-image' => 'Añadir otra imagen',
+ 'add-profile' => 'Añadir otro perfil',
+ 'allow-invite-appl' => 'Registro libre cerrado. Se necesita una invitación para entrar. Sin embargo, puedes pedir permiso a continuacion.',
+ 'allow-invite' => 'Registro libre cerrado. Se necesita una invitación para entrar. Has sido devuelto a la página inicial.',
+ 'are-you' => 'Eres...?:',
+ 'application' => 'Registro',
+ 'appl-closed' => 'No se aceptan nuevos usuarios.',
+ 'appl-intro' => 'es una comunidad privada. Necesitas que alguien te envie una invitación para entrar. Si no, puedes pedir permiso enviando el siguiente formulario.',
+ 'appl-reason' => 'Como te enteraste de ":sitename" y por qué quieres unirte?',
+ 'application-submitted' => '¡Petición enviada! Pronto recibiras un correo electrónico.',
+ 'banned' => '¡Esta cuenta esta bloqueada por el administrador!',
+ 'check-later' => 'Vuelve más tarde.',
+ 'delete-image' => 'Borrar imagen',
+ 'delete-profile' => 'Borrar perfil',
+ 'email' => 'E-mail',
+ 'failed' => 'No se han podido validar estas credenciales.',
+ 'invalid-key' => '¡Invitación inválida o caducada!',
+ 'login' => 'Iniciar sesión',
+ 'login-now-on' => 'Iniciar sesión en',
+ 'logout' => 'Cerrar sesión',
+ 'lost-password' => '¿Olvidaste tu contraseña?',
+ 'lost-username' => '¿Olvidaste tu usuario?',
+ 'need-invite' => 'Registro libre cerrado. Se necesita una invitación para entrar.',
+ 'newbie' => 'Nuevo en la comunidad',
+ 'not-a-member' => '¿Aún no eres miembro? Sólo llevará 30 segundos.',
+ 'not-activated' => 'Cuenta pendiente de validación. Por favor valida tu e-mail con el link en el correo. Si no recibiste ningún correo, utiliza el menú de Olvidé mi contraseña.',
+ 'password' => 'Contraseña',
+ 'proof-image' => 'Link a la imágen',
+ 'proof-image-title' => 'Links de tus imágenes con las pruebas',
+ 'proof-profile' => 'Link al perfil',
+ 'proof-profile-title' => 'Links de tus perfiles',
+ 'proof-min' => '(Mínimo 2, recomendado 3)',
+ 'recover-my-password' => 'Recuperar constraseña',
+ 'register-thanks' => '¡Registro realizado! Pronto recibiras un correo electrónico para validar tu cuenta.',
+ 'remember-me' => 'Recordar usuario',
+ 'require-rules' => 'Para continuiar, debes leer y acepta nuestras condiciones al final de la página.',
+ 'signup' => 'Registrarse',
+ 'throttle' => 'Demasiados intentos. Vuelve a intentarlo en :seconds segundos.',
+ 'unlock' => 'Desbloquear',
+ 'user-icon' => 'Icono de usuario',
+ 'username' => 'Usuario',
+ 'veteran' => 'Veterano en Trackers privados',
+ 'welcome' => '¡Bienvenido!',
+ 'welcome-restore' => '¡Te echábamos de menos! Tu cuenta se ha desbloqueado correctamente.',
/*
|--------------------------------------------------------------------------
| Two Step Authentication Language Lines
|--------------------------------------------------------------------------
*/
- 'subtitle' => 'Validación requerida',
- 'title' => 'Autenticación de 2 pasos (2FA)',
- 'titleFailed' => 'Validación erronea',
- 'titlePassed' => 'Validación correcta',
+ 'subtitle' => 'Validación requerida',
+ 'title' => 'Autenticación de 2 pasos (2FA)',
+ 'titleFailed' => 'Validación erronea',
+ 'titlePassed' => 'Validación correcta',
- 'inputAlt1' => 'Input Código 1',
- 'inputAlt2' => 'Input Código 2',
- 'inputAlt3' => 'Input Código 3',
- 'inputAlt4' => 'Input Código 4',
+ 'inputAlt1' => 'Input Código 1',
+ 'inputAlt2' => 'Input Código 2',
+ 'inputAlt3' => 'Input Código 3',
+ 'inputAlt4' => 'Input Código 4',
- 'attemptsRemaining' => 'Intento(s) restante(s): ',
- 'missingCode' => '¿No has recibido el código?',
- 'verifyButton' => 'Verificar',
+ 'attemptsRemaining' => 'Intento(s) restante(s): ',
+ 'missingCode' => '¿No has recibido el código?',
+ 'verifyButton' => 'Verificar',
- 'exceededTitle' => 'Verification Attempts Exceeded',
- 'lockedUntil' => 'Account Locked Until:',
- 'returnButton' => 'Return Home',
- 'tryAgainIn' => 'Try again in',
+ 'exceededTitle' => 'Verification Attempts Exceeded',
+ 'lockedUntil' => 'Account Locked Until:',
+ 'returnButton' => 'Return Home',
+ 'tryAgainIn' => 'Try again in',
- 'verificationEmailButton' => 'Validar usuario',
- 'verificationEmailGreeting' => 'Hola :username',
- 'verificationEmailMessage' => 'Para iniciar sesión en tu cuenta de la comunidad privada, introduce el siguiente código 2FA:',
- 'verificationEmailSubject' => 'Código de 2 pasos para iniciar sesión',
+ 'verificationEmailButton' => 'Validar usuario',
+ 'verificationEmailGreeting' => 'Hola :username',
+ 'verificationEmailMessage' => 'Para iniciar sesión en tu cuenta de la comunidad privada, introduce el siguiente código 2FA:',
+ 'verificationEmailSubject' => 'Código de 2 pasos para iniciar sesión',
- 'verificationEmailSentMsg' => 'Se te ha enviado un Email para verificar que eres tú.',
- 'verificationEmailSuccess' => '¡Enviado!',
+ 'verificationEmailSentMsg' => 'Se te ha enviado un Email para verificar que eres tú.',
+ 'verificationEmailSuccess' => '¡Enviado!',
- 'verificationWarningMessage' => 'Si vuelves a fallar, tu cuenta se bloqueará durante :hours horas.',
- 'verificationWarningTitle' => '¡Último intento!',
+ 'verificationWarningMessage' => 'Si vuelves a fallar, tu cuenta se bloqueará durante :hours horas.',
+ 'verificationWarningTitle' => '¡Último intento!',
- 'verificationLockedMessage' => '¡Cuenta bloqueada por 2FA fallidos!',
- 'verificationLockedTitle' => '¡Bloqueado!',
+ 'verificationLockedMessage' => '¡Cuenta bloqueada por 2FA fallidos!',
+ 'verificationLockedTitle' => '¡Bloqueado!',
- 'verificationModalConfBtn' => 'Ok',
+ 'verificationModalConfBtn' => 'Ok',
];
diff --git a/lang/es/backup.php b/lang/es/backup.php
index 87846dca7..1ea3a792f 100644
--- a/lang/es/backup.php
+++ b/lang/es/backup.php
@@ -23,31 +23,31 @@ return [
|
*/
- 'backup' => 'Copia de seguridad',
- 'create_a_new_backup' => 'Crear una copia de seguridad',
- 'create_a_new_files_backup' => 'Crear copia de seguridad de archivos',
- 'create_a_new_db_backup' => 'Crear una copia de seguridad de la base de datos',
- 'existing_backups' => 'Copias de seguridad existentes',
- 'date' => 'Fecha',
- 'file_size' => 'Tamaño del fichero',
- 'actions' => 'Acciones',
- 'download' => 'Descargar',
- 'delete' => 'Eliminar',
- 'delete_confirm' => '¿Estás seguro que quieres borrar esta copia de seguridad?',
- 'delete_confirmation_title' => 'Confirmado',
- 'delete_confirmation_message' => 'La copia de seguridad fue eliminada.',
- 'delete_error_title' => 'Ups, ha ocurrido un error',
- 'delete_error_message' => 'La copia de seguridad NO se pudo eliminar.',
- 'delete_cancel_title' => 'La operación ha sido cancelada',
- 'delete_cancel_message' => 'La copia de seguridad NO se pudo eliminar.',
- 'create_confirmation_title' => 'Se ha completado la copia de seguridad',
- 'create_confirmation_message' => 'Recargando la página en 3 segundos.',
- 'create_error_title' => 'Error al realizar la copia de seguridad',
- 'create_error_message' => 'La copia de seguridad NO se pudo crear.',
- 'create_warning_title' => 'Estamos presentando problemas',
- 'create_warning_message' => 'La copia de seguridad puede que no se haya realizado. Por favor verifica los logs para más detalles.',
- 'location' => 'Ubicación',
- 'no_disks_configured' => 'No existe ningún disco configurado config/backup.php',
- 'backup_doesnt_exist' => 'La copia de seguridad no existe.',
+ 'backup' => 'Copia de seguridad',
+ 'create_a_new_backup' => 'Crear una copia de seguridad',
+ 'create_a_new_files_backup' => 'Crear copia de seguridad de archivos',
+ 'create_a_new_db_backup' => 'Crear una copia de seguridad de la base de datos',
+ 'existing_backups' => 'Copias de seguridad existentes',
+ 'date' => 'Fecha',
+ 'file_size' => 'Tamaño del fichero',
+ 'actions' => 'Acciones',
+ 'download' => 'Descargar',
+ 'delete' => 'Eliminar',
+ 'delete_confirm' => '¿Estás seguro que quieres borrar esta copia de seguridad?',
+ 'delete_confirmation_title' => 'Confirmado',
+ 'delete_confirmation_message' => 'La copia de seguridad fue eliminada.',
+ 'delete_error_title' => 'Ups, ha ocurrido un error',
+ 'delete_error_message' => 'La copia de seguridad NO se pudo eliminar.',
+ 'delete_cancel_title' => 'La operación ha sido cancelada',
+ 'delete_cancel_message' => 'La copia de seguridad NO se pudo eliminar.',
+ 'create_confirmation_title' => 'Se ha completado la copia de seguridad',
+ 'create_confirmation_message' => 'Recargando la página en 3 segundos.',
+ 'create_error_title' => 'Error al realizar la copia de seguridad',
+ 'create_error_message' => 'La copia de seguridad NO se pudo crear.',
+ 'create_warning_title' => 'Estamos presentando problemas',
+ 'create_warning_message' => 'La copia de seguridad puede que no se haya realizado. Por favor verifica los logs para más detalles.',
+ 'location' => 'Ubicación',
+ 'no_disks_configured' => 'No existe ningún disco configurado config/backup.php',
+ 'backup_doesnt_exist' => 'La copia de seguridad no existe.',
'only_local_downloads_supported' => 'Solo se permiten descargas del sistema de archivos local.',
];
diff --git a/lang/es/blocks.php b/lang/es/blocks.php
index 7b8a5cbe4..e12e41f20 100644
--- a/lang/es/blocks.php
+++ b/lang/es/blocks.php
@@ -13,15 +13,15 @@
return [
// Chat
- 'chatbox' => 'Ventana de chat',
- 'click' => 'Hacer clic',
+ 'chatbox' => 'Ventana de chat',
+ 'click' => 'Hacer clic',
'to-enable-editor' => 'Habilitar editor',
// Featured Torrents
- 'featured-by' => 'Destacado por',
- 'featured-torrents' => 'Torrents destacados',
+ 'featured-by' => 'Destacado por',
+ 'featured-torrents' => 'Torrents destacados',
'featured-torrents-intro' => '¡Consíguelos mientras puedas!',
- 'featured-until' => 'Torrent destacado hasta el',
+ 'featured-until' => 'Torrent destacado hasta el',
// Latest Torrents
'top-torrents' => 'Mejores torrents',
@@ -34,11 +34,11 @@ return [
// Users Online
'active-in-last' => 'Activo en el último',
- 'users-online' => 'Usuarios en línea',
+ 'users-online' => 'Usuarios en línea',
// News/Articles
'check-news' => 'Noticias (Click para leer)',
- 'new-news' => 'Nuevas noticias',
+ 'new-news' => 'Nuevas noticias',
// Top Torrents
'new-torrents' => 'Nuevos torrents',
diff --git a/lang/es/bon.php b/lang/es/bon.php
index bb0612c53..8fc0b4e2a 100644
--- a/lang/es/bon.php
+++ b/lang/es/bon.php
@@ -12,44 +12,44 @@
*/
return [
- 'activated' => 'Activado',
- 'active' => '¡Activo!',
- 'amount' => 'Cantidad',
- 'bon' => 'BON',
- 'bonus' => 'Bonus',
- 'date' => 'Fecha',
- 'earning' => 'Generando',
- 'earning-rate' => 'A este ritmo, ganarás los siguientes BON por período de tiempo:',
- 'earnings' => 'Ganancias',
- 'exchange' => 'Compras',
- 'exchange-warning' => 'Las compras son definitivas. Por favor, estate seguro antes de realizar una compra.',
- 'extended-stats' => 'Estadísticas detalladas',
- 'gift' => 'Regalo',
- 'gift-bonus' => 'Puntos de bonificación de regalo',
- 'gift-to' => 'Destinarario de los puntos de regalo',
- 'gifts' => 'Regalos',
- 'item' => 'ítem',
- 'no-refund' => '¡NO SE REALIZAN REEMBOLSOS!',
- 'per-day' => 'Puntos al día',
- 'per-hour' => 'Puntos al hora',
- 'per-minute' => 'Puntos al minuto',
- 'per-month' => 'Puntos al mes',
- 'per-second' => 'Puntos al segundo',
- 'per-week' => 'Puntos al semana',
- 'per-year' => 'Puntos al año',
- 'points' => 'Puntos',
- 'receiver' => 'Destinatario',
- 'review-seeds' => 'Revisión de todos los torrents que compartes',
- 'send-gift' => 'Enviar regalo',
- 'sender' => 'Remitente',
- 'store' => 'Tienda',
- 'tips' => 'Consejos',
- 'total' => 'Ganancias Totales',
- 'total-gifts' => 'Total BON Regalados',
- 'total-tips' => 'Total BON Propinas',
+ 'activated' => 'Activado',
+ 'active' => '¡Activo!',
+ 'amount' => 'Cantidad',
+ 'bon' => 'BON',
+ 'bonus' => 'Bonus',
+ 'date' => 'Fecha',
+ 'earning' => 'Generando',
+ 'earning-rate' => 'A este ritmo, ganarás los siguientes BON por período de tiempo:',
+ 'earnings' => 'Ganancias',
+ 'exchange' => 'Compras',
+ 'exchange-warning' => 'Las compras son definitivas. Por favor, estate seguro antes de realizar una compra.',
+ 'extended-stats' => 'Estadísticas detalladas',
+ 'gift' => 'Regalo',
+ 'gift-bonus' => 'Puntos de bonificación de regalo',
+ 'gift-to' => 'Destinarario de los puntos de regalo',
+ 'gifts' => 'Regalos',
+ 'item' => 'ítem',
+ 'no-refund' => '¡NO SE REALIZAN REEMBOLSOS!',
+ 'per-day' => 'Puntos al día',
+ 'per-hour' => 'Puntos al hora',
+ 'per-minute' => 'Puntos al minuto',
+ 'per-month' => 'Puntos al mes',
+ 'per-second' => 'Puntos al segundo',
+ 'per-week' => 'Puntos al semana',
+ 'per-year' => 'Puntos al año',
+ 'points' => 'Puntos',
+ 'receiver' => 'Destinatario',
+ 'review-seeds' => 'Revisión de todos los torrents que compartes',
+ 'send-gift' => 'Enviar regalo',
+ 'sender' => 'Remitente',
+ 'store' => 'Tienda',
+ 'tips' => 'Consejos',
+ 'total' => 'Ganancias Totales',
+ 'total-gifts' => 'Total BON Regalados',
+ 'total-tips' => 'Total BON Propinas',
'you-have-received-gifts' => 'Has recibido',
- 'you-have-sent-gifts' => 'Has enviado',
- 'you-have-received-tips' => 'Has recibido',
- 'you-have-sent-tips' => 'Has enviado',
- 'your-points' => 'Tus puntos',
+ 'you-have-sent-gifts' => 'Has enviado',
+ 'you-have-received-tips' => 'Has recibido',
+ 'you-have-sent-tips' => 'Has enviado',
+ 'your-points' => 'Tus puntos',
];
diff --git a/lang/es/bot.php b/lang/es/bot.php
index 4bc8bd1bb..7d1c218e8 100644
--- a/lang/es/bot.php
+++ b/lang/es/bot.php
@@ -12,15 +12,15 @@
*/
return [
- 'about' => 'Acerca de',
- 'bot' => 'Robot',
- 'bots' => 'Robots',
- 'color' => 'Color',
- 'command' => 'Orden',
- 'edit-bot' => 'Editar Robot',
+ 'about' => 'Acerca de',
+ 'bot' => 'Robot',
+ 'bots' => 'Robots',
+ 'color' => 'Color',
+ 'command' => 'Orden',
+ 'edit-bot' => 'Editar Robot',
'emoji-code' => 'Código emoji',
- 'help' => 'Ayuda',
- 'icon' => 'Icono',
- 'info' => 'Información',
- 'name' => 'Nombre',
+ 'help' => 'Ayuda',
+ 'icon' => 'Icono',
+ 'info' => 'Información',
+ 'name' => 'Nombre',
];
diff --git a/lang/es/bug.php b/lang/es/bug.php
index 61e118cab..276ffb69a 100644
--- a/lang/es/bug.php
+++ b/lang/es/bug.php
@@ -12,15 +12,15 @@
*/
return [
- 'bug-report' => 'Informe de error',
+ 'bug-report' => 'Informe de error',
'bug-report-description' => 'Reportar un error en el sitio',
- 'enter-description' => 'Describa el problema lo mejor posible',
- 'enter-email' => 'Por favor introduzca su correo electrónico',
- 'enter-title' => 'Por favor, elija un título adecuado',
- 'enter-username' => 'Por favor, ingrese su nombre de usuario',
- 'high' => 'Alto',
- 'low' => 'Bajo',
- 'priority' => 'Prioridad',
- 'priority-description' => 'Elija solo muy alto si el error realmente es un problema para usar el sitio.',
- 'very-high' => 'Muy alto',
+ 'enter-description' => 'Describa el problema lo mejor posible',
+ 'enter-email' => 'Por favor introduzca su correo electrónico',
+ 'enter-title' => 'Por favor, elija un título adecuado',
+ 'enter-username' => 'Por favor, ingrese su nombre de usuario',
+ 'high' => 'Alto',
+ 'low' => 'Bajo',
+ 'priority' => 'Prioridad',
+ 'priority-description' => 'Elija solo muy alto si el error realmente es un problema para usar el sitio.',
+ 'very-high' => 'Muy alto',
];
diff --git a/lang/es/common.php b/lang/es/common.php
index aa47a1ebc..42a5e2482 100644
--- a/lang/es/common.php
+++ b/lang/es/common.php
@@ -12,198 +12,198 @@
*/
return [
- 'a-an-art' => '{0}a|[1,*]an',
- 'abbrev-days' => 'D ',
- 'abbrev-hours' => 'h ',
- 'abbrev-minutes' => 'm ',
- 'abbrev-months' => 'M ',
- 'abbrev-seconds' => 's',
- 'abbrev-weeks' => 'S ',
- 'abbrev-years' => 'A ',
- 'about' => 'Acerca de',
- 'account' => 'Cuenta',
- 'achievement-title' => 'Increíble',
+ 'a-an-art' => '{0}a|[1,*]an',
+ 'abbrev-days' => 'D ',
+ 'abbrev-hours' => 'h ',
+ 'abbrev-minutes' => 'm ',
+ 'abbrev-months' => 'M ',
+ 'abbrev-seconds' => 's',
+ 'abbrev-weeks' => 'S ',
+ 'abbrev-years' => 'A ',
+ 'about' => 'Acerca de',
+ 'account' => 'Cuenta',
+ 'achievement-title' => 'Increíble',
'achievement-unlocked' => 'Has desbloqueado el logro ":name',
- 'active' => 'Activo',
- 'active-warning' => 'Advertencia activa',
- 'add' => 'Añadir',
- 'added' => 'Añadido',
- 'amount' => 'Cantidad',
- 'anonymous' => 'Anónimo',
- 'ascending' => 'Ascendente',
- 'author' => 'Autor',
- 'balance' => 'Balance',
- 'blacklist' => 'Lista negra',
- 'buffer' => 'Buffer',
- 'bug' => 'Reportar un error',
- 'but' => 'Pero',
- 'cancel' => 'Cancelar',
- 'category' => 'Categoría',
- 'categories' => 'Categorías',
- 'chat' => 'Chat',
- 'chat-room' => 'Sala de chat',
- 'chat-rooms' => 'Salas de chat',
- 'close' => 'Cerrar',
- 'comment' => 'Comentario',
- 'comments' => 'Comentarios',
- 'community' => 'Comunidad',
- 'contact' => 'Contacto',
- 'contact-desc' => 'Este mensaje se enviará al propietario de la comunidad y se pondra en contacto con usted lo antes posible.',
- 'contact-header' => 'Hola',
- 'create' => 'Crear',
- 'created_at' => 'Creado el',
- 'day' => 'Día',
- 'delete' => 'Borrar',
- 'delete-your-comment' => 'Borra tu comentario',
- 'description' => 'Descripción',
- 'direction' => 'Dirección',
- 'descending' => 'Descendente',
- 'disable' => 'Inhabilitar',
- 'doubleup_activated' => 'Modo de carga doble global activado',
- 'download' => 'Descargar',
- 'edit' => 'Editar',
- 'edit-your-comment' => 'Edita tu comentario',
- 'email' => 'Email',
- 'email-blacklist' => 'Lista negra de Correos electrónicos',
- 'email-whitelist' => 'Lista blanca de Correos electrónico',
+ 'active' => 'Activo',
+ 'active-warning' => 'Advertencia activa',
+ 'add' => 'Añadir',
+ 'added' => 'Añadido',
+ 'amount' => 'Cantidad',
+ 'anonymous' => 'Anónimo',
+ 'ascending' => 'Ascendente',
+ 'author' => 'Autor',
+ 'balance' => 'Balance',
+ 'blacklist' => 'Lista negra',
+ 'buffer' => 'Buffer',
+ 'bug' => 'Reportar un error',
+ 'but' => 'Pero',
+ 'cancel' => 'Cancelar',
+ 'category' => 'Categoría',
+ 'categories' => 'Categorías',
+ 'chat' => 'Chat',
+ 'chat-room' => 'Sala de chat',
+ 'chat-rooms' => 'Salas de chat',
+ 'close' => 'Cerrar',
+ 'comment' => 'Comentario',
+ 'comments' => 'Comentarios',
+ 'community' => 'Comunidad',
+ 'contact' => 'Contacto',
+ 'contact-desc' => 'Este mensaje se enviará al propietario de la comunidad y se pondra en contacto con usted lo antes posible.',
+ 'contact-header' => 'Hola',
+ 'create' => 'Crear',
+ 'created_at' => 'Creado el',
+ 'day' => 'Día',
+ 'delete' => 'Borrar',
+ 'delete-your-comment' => 'Borra tu comentario',
+ 'description' => 'Descripción',
+ 'direction' => 'Dirección',
+ 'descending' => 'Descendente',
+ 'disable' => 'Inhabilitar',
+ 'doubleup_activated' => 'Modo de carga doble global activado',
+ 'download' => 'Descargar',
+ 'edit' => 'Editar',
+ 'edit-your-comment' => 'Edita tu comentario',
+ 'email' => 'Email',
+ 'email-blacklist' => 'Lista negra de Correos electrónicos',
+ 'email-whitelist' => 'Lista blanca de Correos electrónico',
'email-list-notactive' => 'El sistema de listas blancas/negras de correos no está activado',
- 'enable' => 'Habilitar',
- 'enter' => 'Entrar',
- 'error' => 'Error',
- 'everyday' => 'Todos los días',
- 'expired' => 'Agotado',
- 'extra' => 'Extra',
- 'extra-stats' => 'Estadísticas detalladas',
- 'faq' => 'Preguntas frecuentes',
- 'files' => 'Archivos',
- 'fl_token' => 'Cupón para Freeleech',
- 'fl_tokens' => 'Cupones para Freeleech',
- 'for' => 'para',
- 'forum' => 'Foro',
- 'free' => 'Gratis',
- 'freeleech_activated' => 'Modo global de Freeleech activado',
- 'global' => 'Global',
- 'group' => 'Grupo',
- 'groups' => 'Grupos',
- 'hidden' => 'Oculto',
- 'high-speeds' => 'Altas velocidades',
- 'home' => 'Página Principal',
- 'hot' => '¡Caliente!',
- 'hour' => 'Hora',
- 'huge' => 'Enorme',
- 'icon' => 'Icono',
- 'image' => 'Imagen',
- 'info' => 'Información',
- 'internal' => 'Interno',
- 'ip' => 'IP',
- 'is-allowed' => 'Está permitido',
- 'languages' => 'Idiomas',
- 'large' => 'Grande',
- 'latest' => 'Último',
- 'latest-posts' => 'Últimas publicaciones',
- 'latest-topics' => 'Temas más recientes',
- 'legal' => 'Legal',
- 'legend' => 'Leyenda',
- 'lists' => 'Listas',
- 'lock-account' => 'Bloquear cuenta',
- 'logout' => 'Cerrar sesión',
- 'members' => 'Miembros',
- 'message' => 'Mensaje',
- 'minute' => 'Minuto',
- 'moderated-by' => 'Moderado por',
- 'moderation' => 'Moderación',
- 'moderation-approve' => 'Aprobar',
- 'moderation-postpone' => 'Posponer',
- 'moderation-reject' => 'Rechazar',
- 'month' => 'Mes',
- 'months' => 'Meses',
- 'my' => 'Mi',
- 'name' => 'Nombre',
- 'navigation' => 'Navegación',
- 'new' => '¡Nuevo!',
- 'new-adj' => 'nuevo',
- 'news' => 'Noticias',
- 'next' => 'Siguiente',
- 'no' => 'No',
- 'no-comments' => 'Sin comentarios aún',
- 'no-result' => 'No se han encontrado resultados en la base de datos.',
- 'notifications' => 'Notificaciones',
- 'older-than' => 'Más antiguo que',
- 'oldest' => 'Más antiguo',
- 'openreg_activated' => 'Registro libre activado',
- 'order-by' => 'Ordenar por',
- 'other' => 'Otro',
- 'overview' => 'Vista general',
- 'pages' => 'Páginas',
- 'password' => 'Contraseña',
- 'patron' => 'Convertirse en un mecenas',
- 'pending-torrents' => 'Torrents pendientes',
- 'personal' => 'Personal',
- 'plural-suffix' => 's',
- 'port' => 'Puerto',
- 'position' => 'Posición',
- 'posts' => 'Mensajes',
- 'powered-by' => 'Desarrollado por UNIT3D',
- 'preview' => 'Vista previa',
- 'previous' => 'Anterior',
- 'progress' => 'Progreso',
- 'publish' => 'Publicar',
- 'quantity' => 'Cantidad',
- 'quick-search' => 'Búsqueda rápida',
- 'ratio' => 'Proporción',
- 'reason' => 'Razón',
- 'remove' => 'Quitar',
- 'report' => 'Informe',
- 'resend' => 'Reenviar',
- 'reporter' => 'Reportero',
- 'required' => 'Necesario',
- 'results' => 'Resultados',
- 'rss-system' => 'Sistema RSS',
- 'rules' => 'Reglas',
- 'save' => 'Guardar',
- 'search' => 'Buscar',
- 'search-results' => 'Resultados de la búsqueda',
- 'search-results-desc' => 'Vea sus resultados a continuación.',
- 'second' => 'Segundo',
- 'select' => 'Seleccionar',
- 'sort' => 'Ordenar',
- 'special' => 'Especial',
- 'sponsor' => 'Sea un Sponsor',
- 'staff' => 'Gestores',
- 'staff-tools' => 'Herramientas para los gestores',
- 'stats' => 'Estadísticas',
- 'status' => 'Estado',
- 'sticked' => 'Fijado',
- 'submit' => 'Enviar',
- 'subscriptions' => 'Suscripciones',
- 'teams' => 'Equipos',
- 'terms' => 'Términos de Uso',
- 'the' => 'el',
- 'this' => 'este',
- 'times' => 'Veces',
- 'title' => 'Título',
- 'top-bountied' => 'Mayor botín',
- 'topics' => 'Temas',
- 'tracker-codes' => 'Códigos de seguimiento',
- 'type' => 'Tipo',
- 'type-verb' => 'Tipo',
- 'types' => 'Tipos',
- 'genre' => 'Género',
- 'genres' => 'Géneros',
- 'action' => 'Acción',
- 'actions' => 'Acciones',
- 'unknown' => 'Desconocido',
+ 'enable' => 'Habilitar',
+ 'enter' => 'Entrar',
+ 'error' => 'Error',
+ 'everyday' => 'Todos los días',
+ 'expired' => 'Agotado',
+ 'extra' => 'Extra',
+ 'extra-stats' => 'Estadísticas detalladas',
+ 'faq' => 'Preguntas frecuentes',
+ 'files' => 'Archivos',
+ 'fl_token' => 'Cupón para Freeleech',
+ 'fl_tokens' => 'Cupones para Freeleech',
+ 'for' => 'para',
+ 'forum' => 'Foro',
+ 'free' => 'Gratis',
+ 'freeleech_activated' => 'Modo global de Freeleech activado',
+ 'global' => 'Global',
+ 'group' => 'Grupo',
+ 'groups' => 'Grupos',
+ 'hidden' => 'Oculto',
+ 'high-speeds' => 'Altas velocidades',
+ 'home' => 'Página Principal',
+ 'hot' => '¡Caliente!',
+ 'hour' => 'Hora',
+ 'huge' => 'Enorme',
+ 'icon' => 'Icono',
+ 'image' => 'Imagen',
+ 'info' => 'Información',
+ 'internal' => 'Interno',
+ 'ip' => 'IP',
+ 'is-allowed' => 'Está permitido',
+ 'languages' => 'Idiomas',
+ 'large' => 'Grande',
+ 'latest' => 'Último',
+ 'latest-posts' => 'Últimas publicaciones',
+ 'latest-topics' => 'Temas más recientes',
+ 'legal' => 'Legal',
+ 'legend' => 'Leyenda',
+ 'lists' => 'Listas',
+ 'lock-account' => 'Bloquear cuenta',
+ 'logout' => 'Cerrar sesión',
+ 'members' => 'Miembros',
+ 'message' => 'Mensaje',
+ 'minute' => 'Minuto',
+ 'moderated-by' => 'Moderado por',
+ 'moderation' => 'Moderación',
+ 'moderation-approve' => 'Aprobar',
+ 'moderation-postpone' => 'Posponer',
+ 'moderation-reject' => 'Rechazar',
+ 'month' => 'Mes',
+ 'months' => 'Meses',
+ 'my' => 'Mi',
+ 'name' => 'Nombre',
+ 'navigation' => 'Navegación',
+ 'new' => '¡Nuevo!',
+ 'new-adj' => 'nuevo',
+ 'news' => 'Noticias',
+ 'next' => 'Siguiente',
+ 'no' => 'No',
+ 'no-comments' => 'Sin comentarios aún',
+ 'no-result' => 'No se han encontrado resultados en la base de datos.',
+ 'notifications' => 'Notificaciones',
+ 'older-than' => 'Más antiguo que',
+ 'oldest' => 'Más antiguo',
+ 'openreg_activated' => 'Registro libre activado',
+ 'order-by' => 'Ordenar por',
+ 'other' => 'Otro',
+ 'overview' => 'Vista general',
+ 'pages' => 'Páginas',
+ 'password' => 'Contraseña',
+ 'patron' => 'Convertirse en un mecenas',
+ 'pending-torrents' => 'Torrents pendientes',
+ 'personal' => 'Personal',
+ 'plural-suffix' => 's',
+ 'port' => 'Puerto',
+ 'position' => 'Posición',
+ 'posts' => 'Mensajes',
+ 'powered-by' => 'Desarrollado por UNIT3D',
+ 'preview' => 'Vista previa',
+ 'previous' => 'Anterior',
+ 'progress' => 'Progreso',
+ 'publish' => 'Publicar',
+ 'quantity' => 'Cantidad',
+ 'quick-search' => 'Búsqueda rápida',
+ 'ratio' => 'Proporción',
+ 'reason' => 'Razón',
+ 'remove' => 'Quitar',
+ 'report' => 'Informe',
+ 'resend' => 'Reenviar',
+ 'reporter' => 'Reportero',
+ 'required' => 'Necesario',
+ 'results' => 'Resultados',
+ 'rss-system' => 'Sistema RSS',
+ 'rules' => 'Reglas',
+ 'save' => 'Guardar',
+ 'search' => 'Buscar',
+ 'search-results' => 'Resultados de la búsqueda',
+ 'search-results-desc' => 'Vea sus resultados a continuación.',
+ 'second' => 'Segundo',
+ 'select' => 'Seleccionar',
+ 'sort' => 'Ordenar',
+ 'special' => 'Especial',
+ 'sponsor' => 'Sea un Sponsor',
+ 'staff' => 'Gestores',
+ 'staff-tools' => 'Herramientas para los gestores',
+ 'stats' => 'Estadísticas',
+ 'status' => 'Estado',
+ 'sticked' => 'Fijado',
+ 'submit' => 'Enviar',
+ 'subscriptions' => 'Suscripciones',
+ 'teams' => 'Equipos',
+ 'terms' => 'Términos de Uso',
+ 'the' => 'el',
+ 'this' => 'este',
+ 'times' => 'Veces',
+ 'title' => 'Título',
+ 'top-bountied' => 'Mayor botín',
+ 'topics' => 'Temas',
+ 'tracker-codes' => 'Códigos de seguimiento',
+ 'type' => 'Tipo',
+ 'type-verb' => 'Tipo',
+ 'types' => 'Tipos',
+ 'genre' => 'Género',
+ 'genres' => 'Géneros',
+ 'action' => 'Acción',
+ 'actions' => 'Acciones',
+ 'unknown' => 'Desconocido',
'unlocked-achievement' => 'Logro desbloqueado :achievement .',
- 'upload' => 'Subir',
- 'upload-guide' => 'Guía de carga',
- 'user' => 'Usuario',
- 'username' => 'Nombre de usuario',
- 'users' => 'Usuarios',
- 'view' => 'Ver',
- 'view-all' => 'Ver todo',
- 'warnings' => 'Advertencias',
- 'year' => 'Año',
- 'yes' => 'Sí',
- 'your' => 'Tu',
- 'your-comment' => 'Tu comentario',
+ 'upload' => 'Subir',
+ 'upload-guide' => 'Guía de carga',
+ 'user' => 'Usuario',
+ 'username' => 'Nombre de usuario',
+ 'users' => 'Usuarios',
+ 'view' => 'Ver',
+ 'view-all' => 'Ver todo',
+ 'warnings' => 'Advertencias',
+ 'year' => 'Año',
+ 'yes' => 'Sí',
+ 'your' => 'Tu',
+ 'your-comment' => 'Tu comentario',
];
diff --git a/lang/es/email.php b/lang/es/email.php
index bd36ee398..df5683146 100644
--- a/lang/es/email.php
+++ b/lang/es/email.php
@@ -12,46 +12,46 @@
*/
return [
- 'activate-account' => 'Activar la cuenta',
- 'ban-reason' => 'Razón',
- 'banned-footer' => 'Eso te pasa por no seguir las reglas',
- 'banned-header' => 'Has sido baneado',
- 'bug-description' => 'Error',
- 'bug-footer' => 'Arreglar esa mierda',
- 'bug-header' => 'Nuevo informe de error de',
- 'bug-priority' => 'Prioridad',
- 'bug-title' => 'Título de error',
- 'contact-header' => 'Nuevo correo de contacto de',
- 'contact-message' => 'Mensaje',
- 'contact-name' => 'Nombre',
+ 'activate-account' => 'Activar la cuenta',
+ 'ban-reason' => 'Razón',
+ 'banned-footer' => 'Eso te pasa por no seguir las reglas',
+ 'banned-header' => 'Has sido baneado',
+ 'bug-description' => 'Error',
+ 'bug-footer' => 'Arreglar esa mierda',
+ 'bug-header' => 'Nuevo informe de error de',
+ 'bug-priority' => 'Prioridad',
+ 'bug-title' => 'Título de error',
+ 'contact-header' => 'Nuevo correo de contacto de',
+ 'contact-message' => 'Mensaje',
+ 'contact-name' => 'Nombre',
'fail-login-greeting' => 'Error de inicio de sesión de cuenta!',
- 'fail-login-line1' => 'Se detectó un inicio de sesión fallido para su cuenta.',
- 'fail-login-line2' => 'Esta solicitud se originó desde: ip ( :host ) en :time',
- 'fail-login-subject' => 'Notificación de inicio de sesión fallida',
- 'footer-link' => 'Si tiene problemas para hacer clic en el botón: actionText, copie y pegue la URL a continuación en su navegador web:',
- 'invite-header' => 'Invitación a',
- 'invite-invited' => 'Has sido invitado a',
- 'invite-message' => 'Mensaje',
- 'invite-signup' => 'Regístrate ahora',
- 'newreply-header' => 'Hay una nueva respuesta en tu tema',
- 'newreply-message' => 'Mensaje',
- 'newreply-replied' => 'Ha respondido a tu tema',
- 'newreply-view' => 'Verlo ahora',
- 'no-email-found' => 'No pudimos encontrar este correo en nuestro sistema!',
- 'register-code' => 'Para completar la activación de su cuenta, haga clic en el botón de abajo',
- 'register-footer' => 'Si el botón de arriba no funciona, copie y pegue la URL en la barra de direcciones de su navegador',
- 'register-header' => '¡Hola! Gracias por registrarte en',
- 'report-comment' => 'Comentario',
- 'report-email' => 'Email',
- 'report-header' => 'Hola administrador, se ha informado de un enlace en',
- 'report-link' => 'Enlazar',
- 'report-link-hash' => 'Enlace actual',
- 'thanks' => 'Gracias por usar',
- 'unban-footer' => '¡Recibe una buena acogida!',
- 'unban-header' => 'Has sido desbloqueado',
- 'unban-reason' => 'Razón',
- 'username-reminder' => 'Recientemente nos envió una solicitud para su nombre de usuario en nuestra aplicación. Tu nombre de usuario es',
- 'username-sent' => 'Su nombre de usuario ha sido enviado a su dirección de correo electrónico!',
- 'disabled-header' => 'Su cuenta ha sido desactivada',
- 'pruned-header' => 'Su cuenta ha sido borrada por inactividad',
+ 'fail-login-line1' => 'Se detectó un inicio de sesión fallido para su cuenta.',
+ 'fail-login-line2' => 'Esta solicitud se originó desde: ip ( :host ) en :time',
+ 'fail-login-subject' => 'Notificación de inicio de sesión fallida',
+ 'footer-link' => 'Si tiene problemas para hacer clic en el botón: actionText, copie y pegue la URL a continuación en su navegador web:',
+ 'invite-header' => 'Invitación a',
+ 'invite-invited' => 'Has sido invitado a',
+ 'invite-message' => 'Mensaje',
+ 'invite-signup' => 'Regístrate ahora',
+ 'newreply-header' => 'Hay una nueva respuesta en tu tema',
+ 'newreply-message' => 'Mensaje',
+ 'newreply-replied' => 'Ha respondido a tu tema',
+ 'newreply-view' => 'Verlo ahora',
+ 'no-email-found' => 'No pudimos encontrar este correo en nuestro sistema!',
+ 'register-code' => 'Para completar la activación de su cuenta, haga clic en el botón de abajo',
+ 'register-footer' => 'Si el botón de arriba no funciona, copie y pegue la URL en la barra de direcciones de su navegador',
+ 'register-header' => '¡Hola! Gracias por registrarte en',
+ 'report-comment' => 'Comentario',
+ 'report-email' => 'Email',
+ 'report-header' => 'Hola administrador, se ha informado de un enlace en',
+ 'report-link' => 'Enlazar',
+ 'report-link-hash' => 'Enlace actual',
+ 'thanks' => 'Gracias por usar',
+ 'unban-footer' => '¡Recibe una buena acogida!',
+ 'unban-header' => 'Has sido desbloqueado',
+ 'unban-reason' => 'Razón',
+ 'username-reminder' => 'Recientemente nos envió una solicitud para su nombre de usuario en nuestra aplicación. Tu nombre de usuario es',
+ 'username-sent' => 'Su nombre de usuario ha sido enviado a su dirección de correo electrónico!',
+ 'disabled-header' => 'Su cuenta ha sido desactivada',
+ 'pruned-header' => 'Su cuenta ha sido borrada por inactividad',
];
diff --git a/lang/es/forum.php b/lang/es/forum.php
index f0411de49..c7a6c2cbf 100644
--- a/lang/es/forum.php
+++ b/lang/es/forum.php
@@ -12,65 +12,65 @@
*/
return [
- 'action' => 'Acción',
- 'activity' => 'Actividad',
- 'approved' => 'Aprobado',
- 'author' => 'Autor',
- 'bug' => 'Error',
- 'category-quick-search' => 'Búsqueda rápida del nombre del hilo (dentro de la categoría)',
- 'close-topic' => 'Cerrar hilo',
- 'closed' => 'Cerrado',
- 'create-new-topic' => 'Crear nuevo hilo',
- 'created' => 'Creado',
- 'current' => 'Actual',
- 'delete-topic' => 'Eliminar este hilo',
- 'denied' => 'Denegado',
- 'dislike-post' => 'No me gusta esta publicación',
- 'display-forum' => 'Mostrar hilos en',
- 'edit-post' => 'Editar publicación',
- 'edit-topic' => 'Editar hilo',
- 'forum' => 'Foro',
- 'forums' => 'Foros',
- 'implemented' => 'Implementado',
- 'in' => 'En',
- 'invalid' => 'Inválido',
- 'label' => 'Etiqueta',
- 'label-system' => 'Sistema de etiquetas',
- 'last-message' => 'Último mensaje',
- 'last-post-info' => 'Información de la última publicación',
- 'latest' => 'Último',
- 'like-post' => 'Me gusta esta publicación',
- 'meta-category' => 'Lista de foros en la categoría',
- 'moderation' => 'Moderación',
- 'name' => 'Nombre',
- 'not-connected' => 'Debes estar conectado',
- 'not-subscribed' => 'No suscrito',
- 'open' => 'Abierto',
- 'open-topic' => 'Abrir este hilo',
- 'permalink' => 'Enlace permanente',
- 'pin' => 'Fijar',
- 'post' => 'Enviar',
- 'post-quick-search' => 'Búsqueda rápida del cuerpo de la publicación',
- 'posts' => 'Publicaciones',
- 'quote' => 'Citar',
- 'read-topic' => 'Leer el hilo',
- 'replies' => 'Respuestas',
- 'send-new-topic' => 'Publicar este hilo',
- 'solved' => 'Resuelto',
- 'state' => 'Estado',
- 'stats' => 'Estadísticas',
- 'subscribed' => 'Suscrito',
+ 'action' => 'Acción',
+ 'activity' => 'Actividad',
+ 'approved' => 'Aprobado',
+ 'author' => 'Autor',
+ 'bug' => 'Error',
+ 'category-quick-search' => 'Búsqueda rápida del nombre del hilo (dentro de la categoría)',
+ 'close-topic' => 'Cerrar hilo',
+ 'closed' => 'Cerrado',
+ 'create-new-topic' => 'Crear nuevo hilo',
+ 'created' => 'Creado',
+ 'current' => 'Actual',
+ 'delete-topic' => 'Eliminar este hilo',
+ 'denied' => 'Denegado',
+ 'dislike-post' => 'No me gusta esta publicación',
+ 'display-forum' => 'Mostrar hilos en',
+ 'edit-post' => 'Editar publicación',
+ 'edit-topic' => 'Editar hilo',
+ 'forum' => 'Foro',
+ 'forums' => 'Foros',
+ 'implemented' => 'Implementado',
+ 'in' => 'En',
+ 'invalid' => 'Inválido',
+ 'label' => 'Etiqueta',
+ 'label-system' => 'Sistema de etiquetas',
+ 'last-message' => 'Último mensaje',
+ 'last-post-info' => 'Información de la última publicación',
+ 'latest' => 'Último',
+ 'like-post' => 'Me gusta esta publicación',
+ 'meta-category' => 'Lista de foros en la categoría',
+ 'moderation' => 'Moderación',
+ 'name' => 'Nombre',
+ 'not-connected' => 'Debes estar conectado',
+ 'not-subscribed' => 'No suscrito',
+ 'open' => 'Abierto',
+ 'open-topic' => 'Abrir este hilo',
+ 'permalink' => 'Enlace permanente',
+ 'pin' => 'Fijar',
+ 'post' => 'Enviar',
+ 'post-quick-search' => 'Búsqueda rápida del cuerpo de la publicación',
+ 'posts' => 'Publicaciones',
+ 'quote' => 'Citar',
+ 'read-topic' => 'Leer el hilo',
+ 'replies' => 'Respuestas',
+ 'send-new-topic' => 'Publicar este hilo',
+ 'solved' => 'Resuelto',
+ 'state' => 'Estado',
+ 'stats' => 'Estadísticas',
+ 'subscribed' => 'Suscrito',
'subscription-quick-search' => 'Búsqueda rápida del nombre del hilo (dentro de las suscripciones)',
- 'suggestion' => 'Sugerencia',
- 'tip-post-total' => 'Este post ha recibido de propina: ',
- 'tip-this-post' => 'Dale una propina a este autor',
- 'topic' => 'Hilo',
- 'topic-closed' => 'Este hilo está cerrado',
- 'topic-name' => 'Nombre del hilo',
- 'topic-quick-search' => 'Búsqueda rápida del nombre del hilo',
- 'topic-title' => 'Título de este hilo',
- 'topics' => 'Hilos',
- 'unpin' => 'Desmarcar',
- 'view-all' => 'Ver todos los hilos',
- 'views' => 'Vistas',
+ 'suggestion' => 'Sugerencia',
+ 'tip-post-total' => 'Este post ha recibido de propina: ',
+ 'tip-this-post' => 'Dale una propina a este autor',
+ 'topic' => 'Hilo',
+ 'topic-closed' => 'Este hilo está cerrado',
+ 'topic-name' => 'Nombre del hilo',
+ 'topic-quick-search' => 'Búsqueda rápida del nombre del hilo',
+ 'topic-title' => 'Título de este hilo',
+ 'topics' => 'Hilos',
+ 'unpin' => 'Desmarcar',
+ 'view-all' => 'Ver todos los hilos',
+ 'views' => 'Vistas',
];
diff --git a/lang/es/graveyard.php b/lang/es/graveyard.php
index d5cb764c5..b50c2c69e 100644
--- a/lang/es/graveyard.php
+++ b/lang/es/graveyard.php
@@ -12,20 +12,20 @@
*/
return [
- 'current-seedtime' => 'Tiempo compartido',
- 'dead' => 'Muerto',
- 'graveyard' => 'Cementerio',
- 'guidelines' => 'Pautas',
+ 'current-seedtime' => 'Tiempo compartido',
+ 'dead' => 'Muerto',
+ 'graveyard' => 'Cementerio',
+ 'guidelines' => 'Pautas',
'guidelines-content' => '1) No puedes resucitar tus propias subidas.
2) No resucites algo que no puedas compartir tú también.',
- 'howto' => 'Esta es la regla:',
- 'howto-desc1' => 'Debe compartir :name un mínimo de 30 días para una resurrección exitosa. Cuando tu tiempo compartiendo (actualmente: ',
- 'howto-desc2' => 'serás recompensado con:',
- 'howto-hits' => ') llegue a ',
- 'not-rewarded' => 'Sin recompensa',
- 'pending' => 'Pendiente',
- 'resurrect' => 'Resucitar',
- 'resurrect-date' => 'Fecha resucitado',
- 'reward' => 'Cupones de Freeleech',
- 'rewarded' => 'Recompensado',
- 'seedtime-goal' => 'Mínimo tiempo compartido',
+ 'howto' => 'Esta es la regla:',
+ 'howto-desc1' => 'Debe compartir :name un mínimo de 30 días para una resurrección exitosa. Cuando tu tiempo compartiendo (actualmente: ',
+ 'howto-desc2' => 'serás recompensado con:',
+ 'howto-hits' => ') llegue a ',
+ 'not-rewarded' => 'Sin recompensa',
+ 'pending' => 'Pendiente',
+ 'resurrect' => 'Resucitar',
+ 'resurrect-date' => 'Fecha resucitado',
+ 'reward' => 'Cupones de Freeleech',
+ 'rewarded' => 'Recompensado',
+ 'seedtime-goal' => 'Mínimo tiempo compartido',
];
diff --git a/lang/es/notification.php b/lang/es/notification.php
index f87cb2e46..6084427e6 100644
--- a/lang/es/notification.php
+++ b/lang/es/notification.php
@@ -12,26 +12,26 @@
*/
return [
- 'bon-gifts' => 'Regalo de BONs',
- 'comment-tags' => 'Etiquetas del comentario',
- 'date' => 'Fecha',
- 'delete' => 'Borrar',
- 'delete-all' => 'Borrar todas las notificaciones',
- 'mark-all-read' => 'Marcar todo como leido',
- 'mark-read' => 'Marcar como leído',
- 'message' => 'Mensaje',
- 'no-notifications' => 'No se han encontrado notificaciones.',
- 'notifications' => 'Notificaciones',
- 'post-tags' => 'Etiquetas del post',
- 'post-tips' => 'Consejos del post',
- 'read' => 'Leer',
- 'request-approvals' => 'Petición de autorización',
- 'request-bounties' => 'Petición de recompensa',
- 'request-claims' => 'Recompensa reclamada',
- 'request-fills' => 'Petición de solicitud completada',
+ 'bon-gifts' => 'Regalo de BONs',
+ 'comment-tags' => 'Etiquetas del comentario',
+ 'date' => 'Fecha',
+ 'delete' => 'Borrar',
+ 'delete-all' => 'Borrar todas las notificaciones',
+ 'mark-all-read' => 'Marcar todo como leido',
+ 'mark-read' => 'Marcar como leído',
+ 'message' => 'Mensaje',
+ 'no-notifications' => 'No se han encontrado notificaciones.',
+ 'notifications' => 'Notificaciones',
+ 'post-tags' => 'Etiquetas del post',
+ 'post-tips' => 'Consejos del post',
+ 'read' => 'Leer',
+ 'request-approvals' => 'Petición de autorización',
+ 'request-bounties' => 'Petición de recompensa',
+ 'request-claims' => 'Recompensa reclamada',
+ 'request-fills' => 'Petición de solicitud completada',
'request-rejections' => 'Petición de rechazo',
- 'request-unclaims' => 'Petición de dejar de completarlo',
- 'reseed-requests' => 'Petición de volver a compartir',
- 'title' => 'Título',
- 'unfollows' => 'Dejar de seguir',
+ 'request-unclaims' => 'Petición de dejar de completarlo',
+ 'reseed-requests' => 'Petición de volver a compartir',
+ 'title' => 'Título',
+ 'unfollows' => 'Dejar de seguir',
];
diff --git a/lang/es/page.php b/lang/es/page.php
index 4ac58517f..ae06c696f 100644
--- a/lang/es/page.php
+++ b/lang/es/page.php
@@ -12,28 +12,28 @@
*/
return [
- 'aboutus-advantage' => 'Lo mejor de',
- 'aboutus-advantage1' => 'Tenemos miembros y personal con experiencia que están bien versados en el mundo del video / audio HD y soporte técnico.',
- 'aboutus-advantage2' => 'Junto con nuestra gran pasión por las películas y los programas de televisión, también ofrecemos una de las mejores selecciones de algo que la mayoría no hace: ¡FANRES! MUCHAS GRACIAS a nuestros proveedores de contenido.',
- 'aboutus-advantage3' => 'Si bien aceptamos donaciones para mantener el sitio en funcionamiento, no habrá mensajes publicitarios ni carteles en el sitio. No te lo rogaremos.',
- 'aboutus-advantage4' => 'Nuestra comunidad es insuperable para su edad temprana. Entre nuestro personal y la base de usuarios, siempre estuvimos aquí para ayudar. Nos apasionó asegurarnos de que tu experiencia en: el título es algo increíble.',
- 'aboutus-advantage5' => 'Nuestro servicio es utilizado diariamente por muchas personas en todo el mundo. Hemos demostrado que nos importa la funcionalidad y la seguridad de nuestra base de código y podemos confiar y confiar en ella. Nuestros desarrolladores trabajan diariamente para proporcionar una base de código verdaderamente nex-gen.',
- 'aboutus-header' => 'Hola',
- 'aboutus-rules' => 'Qué necesitamos de ti',
- 'aboutus-rules1' => '¡Ser un miembro activo de la comunidad! Esto significa unirse a las conversaciones de manera productiva, agregar contenido aprobado y ayudar a otros usuarios si puedes.',
- 'aboutus-rules2' => '¡Leer las reglas en su totalidad y, por favor, respétalas!',
- 'aboutus-rules3' => '¡Hacer sugerencias! Nos estamos esforzando para hacer :title mejor cada día. No estamos diciendo que se utilizarán todas las sugerencias, pero nunca está de más ver nuevas ideas.',
- 'aboutus-welcome' => 'Unas palabras sobre',
- 'aboutus-welcome-desc' => ':title es una base de datos de Películas/Series/FanRes. Todos los datos han sido agregados por nuestra increíble comunidad desde 2017. Los :titles se centran principalmente en el contenido en HD, una base de usuarios proactiva, una plataforma asombrosa / segura y un equipo de personal amable y servicial.',
- 'blacklist-browsers' => 'Navegadores',
- 'blacklist-btclient' => 'Cliente BitTorrent',
- 'blacklist-clients' => 'Clientes',
- 'blacklist-desc' => 'Los siguientes navegadores y clientes de Bittorrent están en la lista negra / Prohibido conectarlos a :title',
- 'blacklist-webbrowser' => 'Navegador web',
+ 'aboutus-advantage' => 'Lo mejor de',
+ 'aboutus-advantage1' => 'Tenemos miembros y personal con experiencia que están bien versados en el mundo del video / audio HD y soporte técnico.',
+ 'aboutus-advantage2' => 'Junto con nuestra gran pasión por las películas y los programas de televisión, también ofrecemos una de las mejores selecciones de algo que la mayoría no hace: ¡FANRES! MUCHAS GRACIAS a nuestros proveedores de contenido.',
+ 'aboutus-advantage3' => 'Si bien aceptamos donaciones para mantener el sitio en funcionamiento, no habrá mensajes publicitarios ni carteles en el sitio. No te lo rogaremos.',
+ 'aboutus-advantage4' => 'Nuestra comunidad es insuperable para su edad temprana. Entre nuestro personal y la base de usuarios, siempre estuvimos aquí para ayudar. Nos apasionó asegurarnos de que tu experiencia en: el título es algo increíble.',
+ 'aboutus-advantage5' => 'Nuestro servicio es utilizado diariamente por muchas personas en todo el mundo. Hemos demostrado que nos importa la funcionalidad y la seguridad de nuestra base de código y podemos confiar y confiar en ella. Nuestros desarrolladores trabajan diariamente para proporcionar una base de código verdaderamente nex-gen.',
+ 'aboutus-header' => 'Hola',
+ 'aboutus-rules' => 'Qué necesitamos de ti',
+ 'aboutus-rules1' => '¡Ser un miembro activo de la comunidad! Esto significa unirse a las conversaciones de manera productiva, agregar contenido aprobado y ayudar a otros usuarios si puedes.',
+ 'aboutus-rules2' => '¡Leer las reglas en su totalidad y, por favor, respétalas!',
+ 'aboutus-rules3' => '¡Hacer sugerencias! Nos estamos esforzando para hacer :title mejor cada día. No estamos diciendo que se utilizarán todas las sugerencias, pero nunca está de más ver nuevas ideas.',
+ 'aboutus-welcome' => 'Unas palabras sobre',
+ 'aboutus-welcome-desc' => ':title es una base de datos de Películas/Series/FanRes. Todos los datos han sido agregados por nuestra increíble comunidad desde 2017. Los :titles se centran principalmente en el contenido en HD, una base de usuarios proactiva, una plataforma asombrosa / segura y un equipo de personal amable y servicial.',
+ 'blacklist-browsers' => 'Navegadores',
+ 'blacklist-btclient' => 'Cliente BitTorrent',
+ 'blacklist-clients' => 'Clientes',
+ 'blacklist-desc' => 'Los siguientes navegadores y clientes de Bittorrent están en la lista negra / Prohibido conectarlos a :title',
+ 'blacklist-webbrowser' => 'Navegador web',
'blacklist-emaildomain' => 'Dominio bloqueado',
- 'email-blacklist-desc' => 'Los siguientes dominios de correo electrónico están bloqueados para evitar su uso. No puede registrarse o enviar una invitación de los siguientes.',
- 'email-whitelist-desc' => 'Los siguientes dominios de correo electrónico son los únicos dominios de correo electrónico que pueden usarse. Solo puede registrarse o enviar una invitación utilizando los siguientes.',
- 'staff-group' => 'Equipo de Gestores',
- 'staff-title' => 'Gestores',
+ 'email-blacklist-desc' => 'Los siguientes dominios de correo electrónico están bloqueados para evitar su uso. No puede registrarse o enviar una invitación de los siguientes.',
+ 'email-whitelist-desc' => 'Los siguientes dominios de correo electrónico son los únicos dominios de correo electrónico que pueden usarse. Solo puede registrarse o enviar una invitación utilizando los siguientes.',
+ 'staff-group' => 'Equipo de Gestores',
+ 'staff-title' => 'Gestores',
'whitelist-emaildomain' => 'Dominio de confianza',
];
diff --git a/lang/es/pagination.php b/lang/es/pagination.php
index 1c8f98623..7dad54556 100644
--- a/lang/es/pagination.php
+++ b/lang/es/pagination.php
@@ -24,5 +24,5 @@ return [
*/
'previous' => '« Anterior',
- 'next' => 'Siguiente »',
+ 'next' => 'Siguiente »',
];
diff --git a/lang/es/passwords.php b/lang/es/passwords.php
index 1b26fec26..6788f5480 100644
--- a/lang/es/passwords.php
+++ b/lang/es/passwords.php
@@ -24,8 +24,8 @@ return [
*/
'password' => 'Las contraseñas deben coincidir y contener al menos 6 caracteres',
- 'reset' => '¡Tu contraseña ha sido restablecida!',
- 'sent' => '¡Te hemos enviado por correo el enlace para restablecer tu contraseña!',
- 'token' => 'El token de recuperación de contraseña es inválido.',
- 'user' => 'No podemos encontrar ningún usuario con ese correo electrónico.',
+ 'reset' => '¡Tu contraseña ha sido restablecida!',
+ 'sent' => '¡Te hemos enviado por correo el enlace para restablecer tu contraseña!',
+ 'token' => 'El token de recuperación de contraseña es inválido.',
+ 'user' => 'No podemos encontrar ningún usuario con ese correo electrónico.',
];
diff --git a/lang/es/pm.php b/lang/es/pm.php
index 3da004f6b..ae6e4d8f2 100644
--- a/lang/es/pm.php
+++ b/lang/es/pm.php
@@ -12,29 +12,29 @@
*/
return [
- 'create' => 'Crear',
- 'delete' => 'Borrar',
+ 'create' => 'Crear',
+ 'delete' => 'Borrar',
'enter-subject' => 'Ingrese asunto',
- 'from' => 'De',
- 'inbox' => 'Bandeja de entrada',
+ 'from' => 'De',
+ 'inbox' => 'Bandeja de entrada',
'mark-all-read' => 'Marcar todos los mensajes como leídos',
- 'message' => 'Mensaje',
- 'messages' => 'Mensajes',
- 'new' => 'Nuevo mensaje',
- 'outbox' => 'Bandeja de salida',
- 'private' => 'Privado',
- 'read' => 'Leer',
- 'received-at' => 'Recibido el',
- 'refresh' => 'Actualizar',
- 'reply' => 'Responder',
- 'search' => 'Búsqueda por asunto',
- 'select' => 'Seleccione un usuario',
- 'send' => 'Enviar PM',
- 'send-to' => 'Enviar PM a',
- 'sent' => 'Enviado',
- 'sent-at' => 'Enviado a',
- 'subject' => 'Asunto',
- 'to' => 'A',
- 'unread' => 'No leído',
- 'empty-inbox' => 'Bandeja de entrada vacía',
+ 'message' => 'Mensaje',
+ 'messages' => 'Mensajes',
+ 'new' => 'Nuevo mensaje',
+ 'outbox' => 'Bandeja de salida',
+ 'private' => 'Privado',
+ 'read' => 'Leer',
+ 'received-at' => 'Recibido el',
+ 'refresh' => 'Actualizar',
+ 'reply' => 'Responder',
+ 'search' => 'Búsqueda por asunto',
+ 'select' => 'Seleccione un usuario',
+ 'send' => 'Enviar PM',
+ 'send-to' => 'Enviar PM a',
+ 'sent' => 'Enviado',
+ 'sent-at' => 'Enviado a',
+ 'subject' => 'Asunto',
+ 'to' => 'A',
+ 'unread' => 'No leído',
+ 'empty-inbox' => 'Bandeja de entrada vacía',
];
diff --git a/lang/es/poll.php b/lang/es/poll.php
index 0dc0dcfe3..0ebbdf20f 100644
--- a/lang/es/poll.php
+++ b/lang/es/poll.php
@@ -12,19 +12,19 @@
*/
return [
- 'add-option' => 'Añadir opción',
- 'create-poll' => 'Crear encuesta',
- 'current' => 'Encuesta(s) actual(es)',
- 'delete-option' => 'Opción de eliminar',
- 'edit-poll' => 'Editar encuesta',
- 'multiple-choice' => 'Esta es una encuesta de opción múltiple. Selecciona tantas respuestas como quieras.',
- 'option' => 'Opción',
- 'poll' => 'Encuesta',
- 'polls' => 'Encuestas',
- 'results' => 'Resultados de la Encuesta',
- 'title' => 'Título',
- 'total' => 'Votos totales',
- 'vote' => 'Votar',
- 'vote-now' => 'Vote ahora!',
- 'votes' => 'Votos',
+ 'add-option' => 'Añadir opción',
+ 'create-poll' => 'Crear encuesta',
+ 'current' => 'Encuesta(s) actual(es)',
+ 'delete-option' => 'Opción de eliminar',
+ 'edit-poll' => 'Editar encuesta',
+ 'multiple-choice' => 'Esta es una encuesta de opción múltiple. Selecciona tantas respuestas como quieras.',
+ 'option' => 'Opción',
+ 'poll' => 'Encuesta',
+ 'polls' => 'Encuestas',
+ 'results' => 'Resultados de la Encuesta',
+ 'title' => 'Título',
+ 'total' => 'Votos totales',
+ 'vote' => 'Votar',
+ 'vote-now' => 'Vote ahora!',
+ 'votes' => 'Votos',
];
diff --git a/lang/es/request.php b/lang/es/request.php
index 30af32328..6c1659100 100644
--- a/lang/es/request.php
+++ b/lang/es/request.php
@@ -12,67 +12,67 @@
*/
return [
- 'add-request' => 'Añadir solicitud',
- 'age' => 'Antigüedad',
- 'all-requests' => 'Todas las solicitudes',
- 'approve' => 'Aprobar',
- 'bounty' => 'Recompensa',
- 'bounty-claimed' => 'Recompensa reclamada',
- 'bounty-unclaimed' => 'Recompensa no reclamada',
- 'category' => 'Categoría',
- 'claim' => 'Reclamar recompensa',
- 'claim-anon-choose' => 'Por favor, elija sabiamente',
- 'claim-as-anon' => '¿Te gustaría reclamar esto de forma anónima?',
- 'claim-now' => 'Reclama ahora',
- 'claimed' => 'Reclamado',
- 'current' => 'Actual',
- 'delete' => 'Eliminar esta solicitud',
+ 'add-request' => 'Añadir solicitud',
+ 'age' => 'Antigüedad',
+ 'all-requests' => 'Todas las solicitudes',
+ 'approve' => 'Aprobar',
+ 'bounty' => 'Recompensa',
+ 'bounty-claimed' => 'Recompensa reclamada',
+ 'bounty-unclaimed' => 'Recompensa no reclamada',
+ 'category' => 'Categoría',
+ 'claim' => 'Reclamar recompensa',
+ 'claim-anon-choose' => 'Por favor, elija sabiamente',
+ 'claim-as-anon' => '¿Te gustaría reclamar esto de forma anónima?',
+ 'claim-now' => 'Reclama ahora',
+ 'claimed' => 'Reclamado',
+ 'current' => 'Actual',
+ 'delete' => 'Eliminar esta solicitud',
'delete-confirmation' => '¿Estás seguro de que deseas eliminar esta solicitud?',
- 'delete-filled' => 'Esta solicitud solo se puede eliminar si no se ha completado',
- 'description' => 'Descripción',
- 'dont-have-bps' => 'No tienes suficiente Bonus',
- 'edit-request' => 'Editar solicitud',
- 'enter-bp' => 'Introduzca puntos de bonificación (mínimo 100)',
- 'enter-hash' => 'Ingrese el Info Hash del Torrent cargado',
- 'fill' => 'Llenar',
- 'fill-request' => 'Llenar esta solicitud',
- 'filled' => 'Lleno',
- 'filled-by' => 'Llenado por',
- 'for' => 'para',
- 'fulfill' => 'Llenar',
- 'last-vote' => 'Último voto',
- 'my-requests' => 'Mis solicitudes',
- 'no' => 'No,',
- 'no-imdb-id' => 'Todas las solicitudes deben contener un número de IMDB',
- 'no-privileges' => 'Error: Sus derechos de solicitud han sido deshabilitados.',
- 'no-privileges-desc' => 'Si cree que esto es un error, póngase en contacto con el personal',
- 'no-refunds' => '¡Los intercambios de BON en la creación, el llenado y las recompensas son finales!
¡SIN REEMBOLSOS!',
- 'pending' => 'Pendiente',
- 'reason' => 'Razón',
- 'reject' => 'Rechazar',
- 'report' => 'Informar a moderación',
- 'request' => 'Solicitud',
- 'request-details' => 'Detalles de la solicitud',
- 'requested-by' => 'Solicitado por',
- 'requests' => 'Solicitudes',
- 'required' => 'Necesario',
- 'reset' => 'Reiniciar',
- 'reset-confirmation' => '¿Estás seguro de que deseas restablecer esta solicitud?',
- 'reset-request' => 'Restablecer esta solicitud',
- 'reward' => 'Recompensa',
- 'reward-desc' => '¿Cuántos puntos de bonificación te gustaría recompensar? Mínimo 100 BP',
- 'reward-from' => 'De',
- 'title' => 'Título',
- 'torrent-hash' => 'Torrent Hash',
- 'total-bounty' => 'Recompensa total',
- 'type' => 'Tipo',
- 'unclaim' => 'Rechazar esta solicitud',
- 'unfilled' => 'Sin llenar',
- 'view-filled' => 'Ver completados',
- 'view-unfilled' => 'Ver sin completar',
- 'vote' => 'Votar',
- 'vote-that' => 'Vota esta solicitud',
- 'voters' => 'Votantes',
- 'votes' => 'Votos',
- 'yes' => 'Sí',
+ 'delete-filled' => 'Esta solicitud solo se puede eliminar si no se ha completado',
+ 'description' => 'Descripción',
+ 'dont-have-bps' => 'No tienes suficiente Bonus',
+ 'edit-request' => 'Editar solicitud',
+ 'enter-bp' => 'Introduzca puntos de bonificación (mínimo 100)',
+ 'enter-hash' => 'Ingrese el Info Hash del Torrent cargado',
+ 'fill' => 'Llenar',
+ 'fill-request' => 'Llenar esta solicitud',
+ 'filled' => 'Lleno',
+ 'filled-by' => 'Llenado por',
+ 'for' => 'para',
+ 'fulfill' => 'Llenar',
+ 'last-vote' => 'Último voto',
+ 'my-requests' => 'Mis solicitudes',
+ 'no' => 'No,',
+ 'no-imdb-id' => 'Todas las solicitudes deben contener un número de IMDB',
+ 'no-privileges' => 'Error: Sus derechos de solicitud han sido deshabilitados.',
+ 'no-privileges-desc' => 'Si cree que esto es un error, póngase en contacto con el personal',
+ 'no-refunds' => '¡Los intercambios de BON en la creación, el llenado y las recompensas son finales!
¡SIN REEMBOLSOS!',
+ 'pending' => 'Pendiente',
+ 'reason' => 'Razón',
+ 'reject' => 'Rechazar',
+ 'report' => 'Informar a moderación',
+ 'request' => 'Solicitud',
+ 'request-details' => 'Detalles de la solicitud',
+ 'requested-by' => 'Solicitado por',
+ 'requests' => 'Solicitudes',
+ 'required' => 'Necesario',
+ 'reset' => 'Reiniciar',
+ 'reset-confirmation' => '¿Estás seguro de que deseas restablecer esta solicitud?',
+ 'reset-request' => 'Restablecer esta solicitud',
+ 'reward' => 'Recompensa',
+ 'reward-desc' => '¿Cuántos puntos de bonificación te gustaría recompensar? Mínimo 100 BP',
+ 'reward-from' => 'De',
+ 'title' => 'Título',
+ 'torrent-hash' => 'Torrent Hash',
+ 'total-bounty' => 'Recompensa total',
+ 'type' => 'Tipo',
+ 'unclaim' => 'Rechazar esta solicitud',
+ 'unfilled' => 'Sin llenar',
+ 'view-filled' => 'Ver completados',
+ 'view-unfilled' => 'Ver sin completar',
+ 'vote' => 'Votar',
+ 'vote-that' => 'Vota esta solicitud',
+ 'voters' => 'Votantes',
+ 'votes' => 'Votos',
+ 'yes' => 'Sí',
];
diff --git a/lang/es/rss.php b/lang/es/rss.php
index 62b27ee3c..b1a7f004f 100644
--- a/lang/es/rss.php
+++ b/lang/es/rss.php
@@ -12,19 +12,19 @@
*/
return [
- 'create' => 'Crear',
+ 'create' => 'Crear',
'create-private-feed' => 'Crear un feed RSS privado',
- 'create-public-feed' => 'Crear RSS público',
- 'delete' => 'Borrar',
- 'edit' => 'Editar',
- 'edit-private-feed' => 'Editar RSS privado',
- 'edit-public-feed' => 'Editar RSS Public Feed',
- 'feed' => 'Suscripción',
- 'feeds' => 'Suscripción',
- 'name' => 'Nombre',
- 'public' => 'Público',
- 'private' => 'Privado',
- 'rss' => 'RSS',
- 'rss-feed' => 'Feed RSS',
- 'type' => 'Tipo',
+ 'create-public-feed' => 'Crear RSS público',
+ 'delete' => 'Borrar',
+ 'edit' => 'Editar',
+ 'edit-private-feed' => 'Editar RSS privado',
+ 'edit-public-feed' => 'Editar RSS Public Feed',
+ 'feed' => 'Suscripción',
+ 'feeds' => 'Suscripción',
+ 'name' => 'Nombre',
+ 'public' => 'Público',
+ 'private' => 'Privado',
+ 'rss' => 'RSS',
+ 'rss-feed' => 'Feed RSS',
+ 'type' => 'Tipo',
];
diff --git a/lang/es/staff.php b/lang/es/staff.php
index 5bec052e6..726f86d04 100644
--- a/lang/es/staff.php
+++ b/lang/es/staff.php
@@ -12,58 +12,58 @@
*/
return [
- 'audit-log' => 'Registro de actividades',
- 'articles' => 'Artículos',
- 'application' => 'Solicitud',
- 'applications' => 'Solicitudes',
- 'application-type' => 'Tipo',
- 'application-image-proofs'=> 'Referencias',
- 'application-referrer' => 'Invitado por',
- 'bans-log' => 'Registro de prohibiciones',
- 'blocks' => 'Bloques',
- 'bot' => 'Robot',
- 'bots' => 'Robots',
- 'chat' => 'Chat',
- 'config-manager' => 'Administrador de configuración',
- 'dashboard' => 'Tablero',
- 'failed-login-log' => 'Registro de inicio de sesión fallido',
- 'flush-ghost-peers' => 'Vaciar pares fantasma',
- 'forums' => 'Foros',
- 'frontend' => 'Interfaz',
- 'general-tools' => 'Herramientas generales',
- 'groups' => 'Grupos',
- 'invites-log' => 'Registro de invitaciones',
- 'laravel-log' => 'Registro de Laravel',
- 'link' => 'Enlace',
- 'links' => 'Enlaces',
- 'logs' => 'Registros',
- 'mass-pm' => 'Mensaje a todos',
- 'mass-validate-users' => 'validación masiva de usuarios',
- 'moderation' => 'Moderación',
- 'moderation-since' => 'Moderado el',
- 'page' => 'Paágina',
- 'pages' => 'Páginas',
- 'please-moderate' => 'Por favor, modera este torrent',
- 'polls' => 'Encuestas',
- 'reports-log' => 'Registro de reclamaciones',
- 'rooms' => 'Salas',
- 'rss' => 'RSS',
- 'staff-dashboard' => 'Panel de Personal',
- 'status' => 'Status',
- 'statuses' => 'Status',
- 'torrent-categories' => 'Categorías de torrent',
- 'torrent-moderation' => 'Moderación del torrent',
- 'torrent-tools' => 'Herramientas del torrent',
- 'torrent-types' => 'Tipos de torrent',
- 'torrents' => 'Torrents',
- 'user-gifting' => 'Regalar al usuario',
- 'user-notes' => 'Registro de notas de usuario',
- 'user-search' => 'Búsqueda de usuario',
- 'user-tools' => 'Herramientas de usuario',
- 'warnings-log' => 'Registro de advertencias',
- 'you-have' => 'Tienes',
+ 'audit-log' => 'Registro de actividades',
+ 'articles' => 'Artículos',
+ 'application' => 'Solicitud',
+ 'applications' => 'Solicitudes',
+ 'application-type' => 'Tipo',
+ 'application-image-proofs' => 'Referencias',
+ 'application-referrer' => 'Invitado por',
+ 'bans-log' => 'Registro de prohibiciones',
+ 'blocks' => 'Bloques',
+ 'bot' => 'Robot',
+ 'bots' => 'Robots',
+ 'chat' => 'Chat',
+ 'config-manager' => 'Administrador de configuración',
+ 'dashboard' => 'Tablero',
+ 'failed-login-log' => 'Registro de inicio de sesión fallido',
+ 'flush-ghost-peers' => 'Vaciar pares fantasma',
+ 'forums' => 'Foros',
+ 'frontend' => 'Interfaz',
+ 'general-tools' => 'Herramientas generales',
+ 'groups' => 'Grupos',
+ 'invites-log' => 'Registro de invitaciones',
+ 'laravel-log' => 'Registro de Laravel',
+ 'link' => 'Enlace',
+ 'links' => 'Enlaces',
+ 'logs' => 'Registros',
+ 'mass-pm' => 'Mensaje a todos',
+ 'mass-validate-users' => 'validación masiva de usuarios',
+ 'moderation' => 'Moderación',
+ 'moderation-since' => 'Moderado el',
+ 'page' => 'Paágina',
+ 'pages' => 'Páginas',
+ 'please-moderate' => 'Por favor, modera este torrent',
+ 'polls' => 'Encuestas',
+ 'reports-log' => 'Registro de reclamaciones',
+ 'rooms' => 'Salas',
+ 'rss' => 'RSS',
+ 'staff-dashboard' => 'Panel de Personal',
+ 'status' => 'Status',
+ 'statuses' => 'Status',
+ 'torrent-categories' => 'Categorías de torrent',
+ 'torrent-moderation' => 'Moderación del torrent',
+ 'torrent-tools' => 'Herramientas del torrent',
+ 'torrent-types' => 'Tipos de torrent',
+ 'torrents' => 'Torrents',
+ 'user-gifting' => 'Regalar al usuario',
+ 'user-notes' => 'Registro de notas de usuario',
+ 'user-search' => 'Búsqueda de usuario',
+ 'user-tools' => 'Herramientas de usuario',
+ 'warnings-log' => 'Registro de advertencias',
+ 'you-have' => 'Tienes',
'possible-leech-cheaters' => 'Posibles tramposos',
- 'chat-tools' => 'Herramientas de chat',
- 'flush-chat' => 'Vaciar Chat',
- 'seedboxes' => 'Seedboxes registrados',
+ 'chat-tools' => 'Herramientas de chat',
+ 'flush-chat' => 'Vaciar Chat',
+ 'seedboxes' => 'Seedboxes registrados',
];
diff --git a/lang/es/stat.php b/lang/es/stat.php
index 1e867fc26..ef32392ea 100644
--- a/lang/es/stat.php
+++ b/lang/es/stat.php
@@ -12,44 +12,44 @@
*/
return [
- 'all-time' => 'Desde siempre',
- 'by-count' => 'Por cantidad',
- 'by-data' => 'Por datos',
- 'by-volume' => 'Por volumen',
- 'group' => 'Grupo',
- 'groups' => 'Grupos',
- 'last30days' => 'Últimos 30 días',
- 'nerd-stats' => 'Estadísticas para nerds',
- 'nerd-stats-desc' => 'A todos nos encantan las estadísticas. Aquí hay algunas que nos parecen importantes.',
- 'languages' => 'Idiomas',
- 'place' => 'Lugar',
- 'registration-date' => 'Fecha de Registro',
- 'request-fulfilled' => 'Solicitud completada',
- 'request-not-fulfilled' => 'Solicitud no completada',
+ 'all-time' => 'Desde siempre',
+ 'by-count' => 'Por cantidad',
+ 'by-data' => 'Por datos',
+ 'by-volume' => 'Por volumen',
+ 'group' => 'Grupo',
+ 'groups' => 'Grupos',
+ 'last30days' => 'Últimos 30 días',
+ 'nerd-stats' => 'Estadísticas para nerds',
+ 'nerd-stats-desc' => 'A todos nos encantan las estadísticas. Aquí hay algunas que nos parecen importantes.',
+ 'languages' => 'Idiomas',
+ 'place' => 'Lugar',
+ 'registration-date' => 'Fecha de Registro',
+ 'request-fulfilled' => 'Solicitud completada',
+ 'request-not-fulfilled' => 'Solicitud no completada',
'request-pending-aproval' => 'Solicitud pendiente de aprobación',
- 'select-category' => 'Por favor, seleccione una categoría a continuación',
- 'site-stats' => 'Estadísticas del sitio',
- 'stats' => 'Estadísticas',
- 'stats-format' => 'Todas las estadísticas se muestran en formato Top 100',
- 'top-bankers' => 'Los que más BON tienen',
- 'top-bountied' => 'Top Recompensas',
- 'top-completed' => 'Top Completado',
- 'top-dead' => 'Top Muertos',
- 'top-downloaded' => 'Los torrents más descargados',
- 'top-downloaders' => 'Los más descargadores',
- 'top-dying' => 'A punto de morir',
- 'top-leeched' => 'Los más en descarga',
- 'top-leechers' => 'Los que más están descargando',
- 'top-seeded' => 'Los más compartidos históricamente',
- 'top-seeding' => 'Los más compartidos actualmente',
- 'top-seeders' => 'Los que más comparten',
- 'top-seedsize' => 'Los que comparten más Cantidad',
- 'top-seedtime' => 'Los que comparten más tiempo',
- 'top-uploaders' => 'Los que suben más torrents',
- 'total-download' => 'Descarga total',
- 'total-torrents' => 'Torrents totales',
- 'total-traffic' => 'Tráfico total',
- 'total-upload' => 'Subida Total',
- 'users-in-group' => 'Usuarios en el grupo',
- 'users-per-group' => 'Usuarios por grupo',
+ 'select-category' => 'Por favor, seleccione una categoría a continuación',
+ 'site-stats' => 'Estadísticas del sitio',
+ 'stats' => 'Estadísticas',
+ 'stats-format' => 'Todas las estadísticas se muestran en formato Top 100',
+ 'top-bankers' => 'Los que más BON tienen',
+ 'top-bountied' => 'Top Recompensas',
+ 'top-completed' => 'Top Completado',
+ 'top-dead' => 'Top Muertos',
+ 'top-downloaded' => 'Los torrents más descargados',
+ 'top-downloaders' => 'Los más descargadores',
+ 'top-dying' => 'A punto de morir',
+ 'top-leeched' => 'Los más en descarga',
+ 'top-leechers' => 'Los que más están descargando',
+ 'top-seeded' => 'Los más compartidos históricamente',
+ 'top-seeding' => 'Los más compartidos actualmente',
+ 'top-seeders' => 'Los que más comparten',
+ 'top-seedsize' => 'Los que comparten más Cantidad',
+ 'top-seedtime' => 'Los que comparten más tiempo',
+ 'top-uploaders' => 'Los que suben más torrents',
+ 'total-download' => 'Descarga total',
+ 'total-torrents' => 'Torrents totales',
+ 'total-traffic' => 'Tráfico total',
+ 'total-upload' => 'Subida Total',
+ 'users-in-group' => 'Usuarios en el grupo',
+ 'users-per-group' => 'Usuarios por grupo',
];
diff --git a/lang/es/torrent.php b/lang/es/torrent.php
index 2726e9825..a9edfd723 100644
--- a/lang/es/torrent.php
+++ b/lang/es/torrent.php
@@ -12,210 +12,210 @@
*/
return [
- 'activity' => 'Actividad',
- 'age' => 'Antigüedad',
- 'agent' => 'Agente',
- 'alive' => 'Vivo',
- 'announce-url' => 'URL de anuncio',
- 'announce-url-desc' => 'Utilice la URL de anuncio anterior al crear un nuevo torrent. Si desea usar su torrent sin descargarlo del sitio, debe establecer la marca privada y la fuente en :source',
- 'announce-url-desc-url' => '¿Teniendo problemas? Vea nuestra guía AQUÍ',
- 'announce-url-desc2' => 'Se requiere TMDB e IMDB para todas las subidas! Se utiliza para mostrar Posters / Backdrops y ExtraInfo.',
- 'approved' => 'Aprobado',
- 'audio' => 'Audio',
- 'bon-tipped' => 'BON Regalado',
- 'bookmark' => 'Favorito',
- 'bookmarks' => 'Favoritos',
- 'bump' => 'Empujar arriba',
- 'cant-upload' => 'Error: Sus derechos de carga están deshabilitados',
- 'cant-upload-desc' => 'Si cree que esto es un error, comuníquese con el personal',
- 'cards' => 'Tarjetas',
- 'cards-view' => 'Ver torrents como tarjetas',
- 'categories' => 'Categorías',
- 'category' => 'Categoría',
- 'client' => 'Cliente',
- 'commited' => 'Comprometido',
- 'completed' => 'Terminado',
- 'completed_at' => 'Completado hace',
- 'completed-not-seeding' => 'Has completado esta descarga, pero ya no la estás compartiendo.',
- 'completed-times' => 'Veces completado',
- 'created_at' => 'Creado hace',
- 'credited' => 'Acreditado',
- 'current' => 'Actual',
- 'current-filters' => 'Filtros actuales',
- 'currently-leeching' => 'Actualmente Leeching',
- 'currently-seeding' => 'Compartiendo actualmente',
- 'date' => 'Fecha',
- 'dead-torrent' => 'Torrent muerto',
- 'dead-torrents' => 'Torrents muertos',
- 'delete-bookmark' => 'Quitar favorito',
- 'description' => 'Descripción',
- 'discounts' => 'Descuentos',
- 'double-upload' => 'Doble carga',
- 'download-all' => 'Descargar todo',
- 'download-check' => 'Validar descarga',
- 'download-rights-active' => 'Permiso para descargar',
- 'downloaded' => 'Descargado',
- 'dying-torrent' => 'Torrent muriendo',
- 'dying-torrents' => 'Torrents moribundos',
- 'encode-settings' => 'Configuraciones de codificación',
- 'end-year' => 'Hasta el año',
- 'estimated-ratio' => 'Proporción estimada después de la descarga',
- 'failed' => 'Ha fallado',
- 'feature' => 'Característica',
- 'featured' => 'Destacados',
- 'featured-desc' => 'Los torrents destacados son 100% gratis y Doble carga!',
- 'featured-until' => 'Este es un torrent destacado hasta el',
- 'file' => 'Archivo',
- 'filters' => 'Filtros',
- 'fl-tokens-left' => 'Tienes :tokens cupones disponibles',
- 'freeleech' => 'Freeleech',
- 'freeleech-token' => 'Cupón de Freeleech',
- 'general' => 'General',
- 'genre' => 'Género',
- 'genre-tags' => 'Lista de Géneros',
- 'global-double-upload' => 'Doble carga global',
- 'global-freeleech' => 'Freeleech global',
- 'grant' => 'Conceder',
- 'greater-than' => 'Mas grande que',
- 'grouping' => 'Agrupamiento',
- 'groupings' => 'Agrupaciones',
- 'grouping-categories' => 'Agrupar categorias',
+ 'activity' => 'Actividad',
+ 'age' => 'Antigüedad',
+ 'agent' => 'Agente',
+ 'alive' => 'Vivo',
+ 'announce-url' => 'URL de anuncio',
+ 'announce-url-desc' => 'Utilice la URL de anuncio anterior al crear un nuevo torrent. Si desea usar su torrent sin descargarlo del sitio, debe establecer la marca privada y la fuente en :source',
+ 'announce-url-desc-url' => '¿Teniendo problemas? Vea nuestra guía AQUÍ',
+ 'announce-url-desc2' => 'Se requiere TMDB e IMDB para todas las subidas! Se utiliza para mostrar Posters / Backdrops y ExtraInfo.',
+ 'approved' => 'Aprobado',
+ 'audio' => 'Audio',
+ 'bon-tipped' => 'BON Regalado',
+ 'bookmark' => 'Favorito',
+ 'bookmarks' => 'Favoritos',
+ 'bump' => 'Empujar arriba',
+ 'cant-upload' => 'Error: Sus derechos de carga están deshabilitados',
+ 'cant-upload-desc' => 'Si cree que esto es un error, comuníquese con el personal',
+ 'cards' => 'Tarjetas',
+ 'cards-view' => 'Ver torrents como tarjetas',
+ 'categories' => 'Categorías',
+ 'category' => 'Categoría',
+ 'client' => 'Cliente',
+ 'commited' => 'Comprometido',
+ 'completed' => 'Terminado',
+ 'completed_at' => 'Completado hace',
+ 'completed-not-seeding' => 'Has completado esta descarga, pero ya no la estás compartiendo.',
+ 'completed-times' => 'Veces completado',
+ 'created_at' => 'Creado hace',
+ 'credited' => 'Acreditado',
+ 'current' => 'Actual',
+ 'current-filters' => 'Filtros actuales',
+ 'currently-leeching' => 'Actualmente Leeching',
+ 'currently-seeding' => 'Compartiendo actualmente',
+ 'date' => 'Fecha',
+ 'dead-torrent' => 'Torrent muerto',
+ 'dead-torrents' => 'Torrents muertos',
+ 'delete-bookmark' => 'Quitar favorito',
+ 'description' => 'Descripción',
+ 'discounts' => 'Descuentos',
+ 'double-upload' => 'Doble carga',
+ 'download-all' => 'Descargar todo',
+ 'download-check' => 'Validar descarga',
+ 'download-rights-active' => 'Permiso para descargar',
+ 'downloaded' => 'Descargado',
+ 'dying-torrent' => 'Torrent muriendo',
+ 'dying-torrents' => 'Torrents moribundos',
+ 'encode-settings' => 'Configuraciones de codificación',
+ 'end-year' => 'Hasta el año',
+ 'estimated-ratio' => 'Proporción estimada después de la descarga',
+ 'failed' => 'Ha fallado',
+ 'feature' => 'Característica',
+ 'featured' => 'Destacados',
+ 'featured-desc' => 'Los torrents destacados son 100% gratis y Doble carga!',
+ 'featured-until' => 'Este es un torrent destacado hasta el',
+ 'file' => 'Archivo',
+ 'filters' => 'Filtros',
+ 'fl-tokens-left' => 'Tienes :tokens cupones disponibles',
+ 'freeleech' => 'Freeleech',
+ 'freeleech-token' => 'Cupón de Freeleech',
+ 'general' => 'General',
+ 'genre' => 'Género',
+ 'genre-tags' => 'Lista de Géneros',
+ 'global-double-upload' => 'Doble carga global',
+ 'global-freeleech' => 'Freeleech global',
+ 'grant' => 'Conceder',
+ 'greater-than' => 'Mas grande que',
+ 'grouping' => 'Agrupamiento',
+ 'groupings' => 'Agrupaciones',
+ 'grouping-categories' => 'Agrupar categorias',
'grouping-categories-desc' => '¿Qué categoría te gustaría agrupar?',
- 'grouping-results' => 'Agrupar los resultados',
- 'groupings-view' => 'Vista de agrupaciones',
- 'have-completed' => 'Terminado',
- 'have-downloaded' => 'Descargado',
- 'have-not-completed' => 'Sin completar',
- 'have-not-downloaded' => 'No descargado',
- 'health' => 'Salud',
- 'history' => 'Historia',
- 'hitrun' => 'Multa de descargas no compartidas',
- 'hit-and-runs' => 'Contador de multas de descargas no compartidas.',
- 'immune' => 'Inmune',
- 'info' => 'Información',
- 'info-hash' => 'Hash del archivo',
- 'internal' => 'Interno',
- 'internal-release' => 'Lanzamiento interno',
- 'last-seed-activity' => 'Última actividad de alguien',
- 'last-seeder' => 'Usted es la última persona compartiendo! (ha sido descargado al menos 3 veces)',
- 'last-update' => 'Última actualización',
- 'leave-tip' => 'Dejar propina',
- 'leecher' => 'Descargador',
- 'leechers' => 'Descargadores',
- 'leeching' => 'Descargando',
- 'left' => 'Izquierda',
- 'legendary-seeder' => 'Compartidor legendario',
- 'legendary-torrent' => 'Torrent legendario',
- 'list' => 'Lista',
- 'me' => 'Yo',
- 'media-info' => 'Información de los medios',
- 'media-info-parser' => 'Analizador de mediaInfo',
- 'media-info-paste' => 'Pegar volcado de MediaInfo aquí',
- 'meta-desc' => 'Descargar :name a la máxima velocidad',
- 'moderation' => 'Moderación',
- 'movies' => 'Películas',
- 'mvp' => 'MVP',
- 'my-active-torrents' => 'Mis torrents activos',
- 'name' => 'Nombre',
- 'no-bookmarks' => 'No se han encontrado favoritos.',
- 'no-discounts' => 'Actualmente no hay descuentos.',
- 'no-meta' => 'No se encontraron metadatos',
- 'no-privileges' => 'No puede descargar este archivo. Por favor, pulse a continuación para obtener más información.',
- 'no-privileges-desc' => 'Por favor, resuelva los resultados fallidos de arriba para que aparezca el botón de descarga',
- 'not-completed' => 'Comenzó a descargar pero nunca se completó',
- 'not-downloaded' => 'No descargado',
- 'not-seeding' => 'No compartiendo',
- 'old-torrent' => 'Torrent antiguo',
- 'optional' => 'Opcional',
- 'original-output' => 'Mostrar / Ocultar salida original',
- 'participant' => 'Participante',
- 'passed' => 'Pasado',
- 'peers' => 'Compañeros',
- 'pending' => 'Pendiente',
- 'personal-freeleech' => 'Freeleech personal',
- 'poster' => 'Póster',
- 'poster-view' => 'Vista del cartel',
- 'posters' => 'Carteles',
- 'postponed-torrents' => 'Torrents pospuestos',
- 'prewarn' => 'Pre-advertir',
- 'progress' => 'Progreso',
- 'publish-time' => 'Hora de publicación',
- 'quick-comment' => 'Comentario rápido',
- 'quick-tip' => 'Propina rápida',
- 'rated' => 'Clasificado',
- 'rating' => 'Clasificación',
- 'ready' => 'Este archivo está listo para descargar',
- 'recommendations' => 'Recomendados',
- 'rejected' => 'Rechazado',
- 'released' => 'Publicado',
- 'remaining' => 'Restante',
- 'request-reseed' => 'Solicitud revisada',
- 'requires-reseed' => 'Requiere revisado',
- 'resurrections' => 'Resurrecciones',
- 'revoke' => 'Revocar',
- 'rss' => 'RSS',
- 'runtime' => 'Tiempo de ejecución',
- 'satisfied_in' => 'Satisfecho en',
- 'say-thanks' => 'Por favor, recuerden decir gracias y compartir todo el tiempo que puedan',
- 'sd-content' => 'Contenido SD',
- 'search' => 'Buscar',
- 'seed-time' => 'Tiempo compartiendo',
- 'seeder' => 'Compartidor',
- 'seeders' => 'Compartidores',
- 'seeding' => 'Compartiendo',
- 'seedsize' => 'Tamaño compartido',
- 'seedtime' => 'Tiempo compartido',
- 'short-completed' => 'C',
- 'short-leechs' => 'B',
- 'short-seeds' => 'S',
- 'show-files' => 'Mostrar archivos',
- 'similar' => 'Torrents similares',
- 'size' => 'Tamaño',
- 'special' => 'Especial',
- 'special-freeleech' => 'Freeleech especial',
- 'staff-tools' => 'Herramientas de administración',
- 'start-year' => 'Desde el año',
- 'started' => 'Empezado',
- 'status' => 'Estado',
- 'statistics' => 'Estadística',
- 'stats' => 'Estadísticas',
- 'sticky' => 'Fijado',
- 'stream-optimized' => 'Optimizado para Stream',
- 'subtitle' => 'Subtitulo',
- 'team-player' => 'Jugador en equipo',
- 'thank' => 'Agradecer',
- 'thanked' => 'Agradecido',
- 'thanks' => 'Gracias',
- 'thanks-given' => 'Gracias dadas',
- 'times' => 'Veces',
- 'tip-jar' => 'Bote de propinas',
- 'title' => 'Título',
- 'titles' => 'Títulos',
- 'top-completed' => 'Top Descargados',
- 'top-dead' => 'Top muertos',
- 'top-dying' => 'Top Moribundos',
- 'top-leeched' => 'Top Descargandose',
- 'top-seeded' => 'Top Compartiendo',
- 'torrent' => 'Torrent',
- 'torrent-request' => 'Solicitud de torrent',
- 'torrent-tips' => 'Este torrent ha recibido :total BONs, de los cuales :user son tuyos.',
- 'torrent-tips-desc' => 'Esto se deducirá de sus puntos de bonificación disponibles',
- 'torrents' => 'Torrents',
- 'trailer' => 'Ver trailer',
- 'type' => 'Tipo',
- 'types' => 'Tipos',
- 'unbookmark' => 'Quitar favorito',
- 'unsatisfieds' => 'Insatisfechos',
- 'unsticky' => 'Quitar fijado',
- 'updated' => 'Actualizado',
- 'updated_at' => 'Actualizado hace',
- 'uploaded' => 'Subido',
- 'uploaded-by' => 'Subido por',
- 'uploader' => 'Subidor',
- 'use-fl-token' => 'Usa un cupón de Freeleech',
- 'video' => 'Vídeo',
- 'view-more' => 'Ver más',
- 'view-trailer' => 'Ver trailer',
- 'votes' => 'Votos',
- 'year-range' => 'Rango de años',
+ 'grouping-results' => 'Agrupar los resultados',
+ 'groupings-view' => 'Vista de agrupaciones',
+ 'have-completed' => 'Terminado',
+ 'have-downloaded' => 'Descargado',
+ 'have-not-completed' => 'Sin completar',
+ 'have-not-downloaded' => 'No descargado',
+ 'health' => 'Salud',
+ 'history' => 'Historia',
+ 'hitrun' => 'Multa de descargas no compartidas',
+ 'hit-and-runs' => 'Contador de multas de descargas no compartidas.',
+ 'immune' => 'Inmune',
+ 'info' => 'Información',
+ 'info-hash' => 'Hash del archivo',
+ 'internal' => 'Interno',
+ 'internal-release' => 'Lanzamiento interno',
+ 'last-seed-activity' => 'Última actividad de alguien',
+ 'last-seeder' => 'Usted es la última persona compartiendo! (ha sido descargado al menos 3 veces)',
+ 'last-update' => 'Última actualización',
+ 'leave-tip' => 'Dejar propina',
+ 'leecher' => 'Descargador',
+ 'leechers' => 'Descargadores',
+ 'leeching' => 'Descargando',
+ 'left' => 'Izquierda',
+ 'legendary-seeder' => 'Compartidor legendario',
+ 'legendary-torrent' => 'Torrent legendario',
+ 'list' => 'Lista',
+ 'me' => 'Yo',
+ 'media-info' => 'Información de los medios',
+ 'media-info-parser' => 'Analizador de mediaInfo',
+ 'media-info-paste' => 'Pegar volcado de MediaInfo aquí',
+ 'meta-desc' => 'Descargar :name a la máxima velocidad',
+ 'moderation' => 'Moderación',
+ 'movies' => 'Películas',
+ 'mvp' => 'MVP',
+ 'my-active-torrents' => 'Mis torrents activos',
+ 'name' => 'Nombre',
+ 'no-bookmarks' => 'No se han encontrado favoritos.',
+ 'no-discounts' => 'Actualmente no hay descuentos.',
+ 'no-meta' => 'No se encontraron metadatos',
+ 'no-privileges' => 'No puede descargar este archivo. Por favor, pulse a continuación para obtener más información.',
+ 'no-privileges-desc' => 'Por favor, resuelva los resultados fallidos de arriba para que aparezca el botón de descarga',
+ 'not-completed' => 'Comenzó a descargar pero nunca se completó',
+ 'not-downloaded' => 'No descargado',
+ 'not-seeding' => 'No compartiendo',
+ 'old-torrent' => 'Torrent antiguo',
+ 'optional' => 'Opcional',
+ 'original-output' => 'Mostrar / Ocultar salida original',
+ 'participant' => 'Participante',
+ 'passed' => 'Pasado',
+ 'peers' => 'Compañeros',
+ 'pending' => 'Pendiente',
+ 'personal-freeleech' => 'Freeleech personal',
+ 'poster' => 'Póster',
+ 'poster-view' => 'Vista del cartel',
+ 'posters' => 'Carteles',
+ 'postponed-torrents' => 'Torrents pospuestos',
+ 'prewarn' => 'Pre-advertir',
+ 'progress' => 'Progreso',
+ 'publish-time' => 'Hora de publicación',
+ 'quick-comment' => 'Comentario rápido',
+ 'quick-tip' => 'Propina rápida',
+ 'rated' => 'Clasificado',
+ 'rating' => 'Clasificación',
+ 'ready' => 'Este archivo está listo para descargar',
+ 'recommendations' => 'Recomendados',
+ 'rejected' => 'Rechazado',
+ 'released' => 'Publicado',
+ 'remaining' => 'Restante',
+ 'request-reseed' => 'Solicitud revisada',
+ 'requires-reseed' => 'Requiere revisado',
+ 'resurrections' => 'Resurrecciones',
+ 'revoke' => 'Revocar',
+ 'rss' => 'RSS',
+ 'runtime' => 'Tiempo de ejecución',
+ 'satisfied_in' => 'Satisfecho en',
+ 'say-thanks' => 'Por favor, recuerden decir gracias y compartir todo el tiempo que puedan',
+ 'sd-content' => 'Contenido SD',
+ 'search' => 'Buscar',
+ 'seed-time' => 'Tiempo compartiendo',
+ 'seeder' => 'Compartidor',
+ 'seeders' => 'Compartidores',
+ 'seeding' => 'Compartiendo',
+ 'seedsize' => 'Tamaño compartido',
+ 'seedtime' => 'Tiempo compartido',
+ 'short-completed' => 'C',
+ 'short-leechs' => 'B',
+ 'short-seeds' => 'S',
+ 'show-files' => 'Mostrar archivos',
+ 'similar' => 'Torrents similares',
+ 'size' => 'Tamaño',
+ 'special' => 'Especial',
+ 'special-freeleech' => 'Freeleech especial',
+ 'staff-tools' => 'Herramientas de administración',
+ 'start-year' => 'Desde el año',
+ 'started' => 'Empezado',
+ 'status' => 'Estado',
+ 'statistics' => 'Estadística',
+ 'stats' => 'Estadísticas',
+ 'sticky' => 'Fijado',
+ 'stream-optimized' => 'Optimizado para Stream',
+ 'subtitle' => 'Subtitulo',
+ 'team-player' => 'Jugador en equipo',
+ 'thank' => 'Agradecer',
+ 'thanked' => 'Agradecido',
+ 'thanks' => 'Gracias',
+ 'thanks-given' => 'Gracias dadas',
+ 'times' => 'Veces',
+ 'tip-jar' => 'Bote de propinas',
+ 'title' => 'Título',
+ 'titles' => 'Títulos',
+ 'top-completed' => 'Top Descargados',
+ 'top-dead' => 'Top muertos',
+ 'top-dying' => 'Top Moribundos',
+ 'top-leeched' => 'Top Descargandose',
+ 'top-seeded' => 'Top Compartiendo',
+ 'torrent' => 'Torrent',
+ 'torrent-request' => 'Solicitud de torrent',
+ 'torrent-tips' => 'Este torrent ha recibido :total BONs, de los cuales :user son tuyos.',
+ 'torrent-tips-desc' => 'Esto se deducirá de sus puntos de bonificación disponibles',
+ 'torrents' => 'Torrents',
+ 'trailer' => 'Ver trailer',
+ 'type' => 'Tipo',
+ 'types' => 'Tipos',
+ 'unbookmark' => 'Quitar favorito',
+ 'unsatisfieds' => 'Insatisfechos',
+ 'unsticky' => 'Quitar fijado',
+ 'updated' => 'Actualizado',
+ 'updated_at' => 'Actualizado hace',
+ 'uploaded' => 'Subido',
+ 'uploaded-by' => 'Subido por',
+ 'uploader' => 'Subidor',
+ 'use-fl-token' => 'Usa un cupón de Freeleech',
+ 'video' => 'Vídeo',
+ 'view-more' => 'Ver más',
+ 'view-trailer' => 'Ver trailer',
+ 'votes' => 'Votos',
+ 'year-range' => 'Rango de años',
];
diff --git a/lang/es/user.php b/lang/es/user.php
index 636152543..ff8b456c8 100644
--- a/lang/es/user.php
+++ b/lang/es/user.php
@@ -12,317 +12,317 @@
*/
return [
- 'about' => 'Acerca de',
- 'about-me' => 'Sobre mi',
- 'accepted-at' => 'Aceptado hace',
- 'accepted-by' => 'Aceptado por',
- 'account-notification' => 'Configuración de notificación de cuenta',
- 'account-notification-follow' => 'Recibe una notificación cuando un usuario sigue tu cuenta.',
- 'account-notification-unfollow' => 'Recibe una notificación cuando un usuario deja de seguir tu cuenta.',
- 'account-notification-help' => 'Controla qué notificaciones se envían con respecto a tu cuenta. Esta configuración se invalida si no permite que ningún grupo envíe notificaciones relacionadas con su cuenta o si deshabilita las notificaciones.',
- 'account-settings' => 'Configuraciones de la cuenta',
- 'achievement-privacy' => 'Configuraciones de Logros',
- 'achievement-privacy-list' => 'Permitir a los usuarios ver una lista de sus logros',
- 'achievement-help' => 'Controle el intercambio de información específica relacionada con logros con grupos a los que se les permite acceder a su perfil. Estas configuraciones se anulan si no permite que ningún grupo acceda a sus logros o si se vuelve privado',
- 'achievements' => 'Logros',
- 'active' => 'Estado',
- 'active-table' => 'Mi mesa activa',
- 'active-torrents' => 'Torrents activos',
- 'active-warning' => 'Advertencia activa',
- 'active-warnings' => 'Advertencias activas',
- 'add-seedbox' => 'Añadir Seedbox',
- 'all-torrents' => 'Todos los torrents',
- 'article-comments' => 'Comentarios del artículo realizados',
- 'avatar' => 'Avatar',
- 'avg-seedtime' => 'Tiempo promedio compartiendo',
- 'badges' => 'Insignias',
- 'ban' => 'Bloquear usuario',
- 'ban-log' => 'Registro de Bloqueos',
- 'become-hidden' => 'Hazte oculto',
- 'become-visible' => 'Hazte visible',
- 'bon' => 'BON',
- 'bon-notification' => 'Configuración de notificaciones BON',
- 'bon-notification-gift' => 'Recibe una notificación cuando un usuario te regala BON',
- 'bon-notification-help' => 'Controlar qué notificaciones se envían sobre transacciones BON. Esta configuración se invalida si no permite que ningún grupo envíe notificaciones relacionadas con BON o si deshabilita las notificaciones.',
- 'bookmarks' => 'Favoritos',
- 'bounty-given' => 'Recompensa dada',
- 'bounty-received' => 'Recompensa recibida',
- 'can-chat' => 'Puede chatear',
- 'can-comment' => 'Puede comentar',
- 'can-download' => 'Puede descargar',
- 'can-invite' => 'Puede invitar',
- 'can-request' => 'Puede solicitar',
- 'can-upload' => 'Puede subir',
- 'certified-banker' => 'Banquero Certificado',
- 'certified-banker-desc' => 'Tiene más de 50.000 BON en el banco',
- 'certified-downloader' => 'Descargador certificado',
- 'certified-downloader-desc' => 'Descargado más de 100 torrents!',
- 'certified-seeder' => 'Compartidor Certificado',
- 'certified-seeder-desc' => 'Compartiendo más de 150 torrents!',
- 'change-email' => 'Cambiar correo-e',
- 'change-email-help' => 'Tendrá que volver a confirmar su cuenta, después de cambiar su correo electrónico',
- 'change-password' => 'Cambia la contraseña',
- 'change-password-help' => 'Tendrá que iniciar sesión nuevamente, después de cambiar su contraseña',
- 'client-ip-address' => 'Dirección IP del cliente',
- 'code' => 'Código',
- 'comments' => 'Comentarios',
- 'created-on' => 'Creado hace',
- 'credited-download' => 'Descarga acreditada',
- 'credited-upload' => 'Carga acreditada',
- 'current-password' => 'Contraseña actual',
- 'custom-title' => 'Título Personalizado',
- 'delete' => 'Borrar usuario',
- 'disable-notifications' => 'Desactivar notificaciones',
- 'disclaimer' => 'Renuncia de responsabilidad',
- 'disclaimer-info' => 'Por defecto, no registramos las direcciones IP de los usuarios como la mayoría de los rastreadores. Al agregar la IP de su seedbox a continuación, se espera que sepa que sus IP enumeradas a continuación ahora están almacenadas en nuestra base de datos a menos que elimine los registros.',
- 'disclaimer-info-bordered' => 'Las IP de Seedbox que se agreguen luego activarán la etiqueta de torrent de alta velocidad en los torrent sembrados de las IP enumeradas a continuación',
- 'download-bon' => 'BON de descarga',
- 'download-recorded' => 'Descarga guardada',
- 'download-true' => 'Descarga confirmada',
- 'downloads' => 'Descargas',
- 'edit' => 'Editar usuario',
- 'edit-profile' => 'Editar perfil',
- 'enable-notifications' => 'Permitir notificaciones',
- 'expired' => 'Muerto',
- 'expires-on' => 'Expira en',
- 'extra' => 'Extra',
- 'filled-request' => 'Solicitud completada.',
- 'follow' => 'Seguir',
- 'follower-privacy' => 'Configuraciones de seguimiento',
- 'follower-privacy-list' => 'Permitir a los usuarios ver una lista de tus seguidores',
- 'follower-help' => 'Controle el intercambio de información específica relacionada con seguidores con grupos a los que se les permite acceder a su perfil. Esta configuración se invalida si no permite que ningún grupo acceda a sus seguidores o si se vuelve privado.',
- 'followers' => 'Seguidores',
- 'following-notification' => 'Configuraciones de notificación de usuario seguidas',
- 'following-notification-upload' => 'Recibir una notificación cuando un usuario seguido carga un torrent',
- 'following-notification-help' => 'Controla qué notificaciones se envían en relación con las acciones de sitio de usuario seguidas. Esta configuración se invalida si no permite que ningún grupo envíe notificaciones sobre los usuarios seguidos o si deshabilita las notificaciones.',
- 'formats-are-supported' => ':formats son compatibles',
- 'forum-notification' => 'Configuración de notificaciones del foro',
- 'forum-notification-topic' => 'Recibe una notificación cuando un tema que comenzaste recibe una nueva publicación.',
- 'forum-notification-help' => 'Controlar qué notificaciones se envían sobre las actividades del foro. Esta configuración se invalida si no permite que ningún grupo envíe notificaciones relacionadas con las actividades del foro o si deshabilita las notificaciones',
- 'forum-privacy' => 'Configuraciones del foro',
- 'forum-privacy-post' => 'Permitir que los usuarios vean una lista de publicaciones del foro que has publicado',
- 'forum-privacy-topic' => 'Permitir que los usuarios vean una lista de temas del foro que has iniciado',
- 'forum-help' => 'Controle el intercambio de estadísticas e información relacionadas con foros específicos con grupos a los que se les permite acceder a su perfil. Esta configuración se invalida si no permite que ningún grupo acceda a las estadísticas e información relacionadas con su foro o si se vuelve privado.',
- 'forum-signature' => 'Firma del Foro',
- 'forums' => 'Foros',
- 'general' => 'General',
- 'general-settings' => 'Configuración general',
- 'gift-given' => 'Regalo dado',
- 'gift-received' => 'Regalo recibido',
- 'go-public' => 'Volverse publico',
- 'go-private' => 'Volverse privado',
- 'history' => 'Historia',
- 'history-table' => 'Mi histórico',
- 'hit-n-runs' => 'Multas de descargas no compartidas',
- 'hit-n-runs-count' => 'Contador de Multas de descargas no compartidas (Histórico)',
- 'hit-n-runs-history' => 'Multas de descargas no compartidas (Histórico)',
- 'image' => 'Imagen',
- 'important' => 'Importante',
- 'important-info' => 'Informacion IMPORTANTE',
- 'information' => 'Información',
- 'invite-friend' => 'Invita a tu amigo (correo electrónico + mensaje requerido)',
- 'invite-tree' => 'Árbol de invitaciones',
- 'invites' => 'Invita',
- 'invites-banned' => 'Error: Sus derechos de invitación han sido deshabilitados',
- 'invites-banned-desc' => 'Si cree que esto está en error, contacte al personal!',
- 'invites-count' => 'Tienes :count invitaciones',
- 'invites-disabled' => 'Atención: las invitaciones están deshabilitadas debido a la inscripción abierta!',
- 'invites-disabled-desc' => '¡Por favor, revise luego!',
- 'invites-rules' => '- Solo invite a personas que conozca y en las que confíe.
- Serás personalmente responsable por aquellos a quienes invitas.
- No te invites a ti mismo, verificamos a cada usuario invitado.
- No intercambies ni vendas invitaciones.
- Si una persona a la que invitó es atrapada haciendo trampa, intercambiando cuentas o vendiendo / intercambiando invitaciones, se le avisará.
',
- 'invites-send' => 'Enviar invitación',
- 'last-login' => 'Último acceso',
- 'locked' => 'Bloqueado',
- 'locked-achievements' => 'Logros bloqueados',
- 'member-since' => 'Miembro desde',
- 'members-desc' => 'Lista de usuarios registrados en :title con todos los grupos. Encuentra un usuario ahora.',
- 'mention-notification' => 'Configuración de notificaciones @Mention',
+ 'about' => 'Acerca de',
+ 'about-me' => 'Sobre mi',
+ 'accepted-at' => 'Aceptado hace',
+ 'accepted-by' => 'Aceptado por',
+ 'account-notification' => 'Configuración de notificación de cuenta',
+ 'account-notification-follow' => 'Recibe una notificación cuando un usuario sigue tu cuenta.',
+ 'account-notification-unfollow' => 'Recibe una notificación cuando un usuario deja de seguir tu cuenta.',
+ 'account-notification-help' => 'Controla qué notificaciones se envían con respecto a tu cuenta. Esta configuración se invalida si no permite que ningún grupo envíe notificaciones relacionadas con su cuenta o si deshabilita las notificaciones.',
+ 'account-settings' => 'Configuraciones de la cuenta',
+ 'achievement-privacy' => 'Configuraciones de Logros',
+ 'achievement-privacy-list' => 'Permitir a los usuarios ver una lista de sus logros',
+ 'achievement-help' => 'Controle el intercambio de información específica relacionada con logros con grupos a los que se les permite acceder a su perfil. Estas configuraciones se anulan si no permite que ningún grupo acceda a sus logros o si se vuelve privado',
+ 'achievements' => 'Logros',
+ 'active' => 'Estado',
+ 'active-table' => 'Mi mesa activa',
+ 'active-torrents' => 'Torrents activos',
+ 'active-warning' => 'Advertencia activa',
+ 'active-warnings' => 'Advertencias activas',
+ 'add-seedbox' => 'Añadir Seedbox',
+ 'all-torrents' => 'Todos los torrents',
+ 'article-comments' => 'Comentarios del artículo realizados',
+ 'avatar' => 'Avatar',
+ 'avg-seedtime' => 'Tiempo promedio compartiendo',
+ 'badges' => 'Insignias',
+ 'ban' => 'Bloquear usuario',
+ 'ban-log' => 'Registro de Bloqueos',
+ 'become-hidden' => 'Hazte oculto',
+ 'become-visible' => 'Hazte visible',
+ 'bon' => 'BON',
+ 'bon-notification' => 'Configuración de notificaciones BON',
+ 'bon-notification-gift' => 'Recibe una notificación cuando un usuario te regala BON',
+ 'bon-notification-help' => 'Controlar qué notificaciones se envían sobre transacciones BON. Esta configuración se invalida si no permite que ningún grupo envíe notificaciones relacionadas con BON o si deshabilita las notificaciones.',
+ 'bookmarks' => 'Favoritos',
+ 'bounty-given' => 'Recompensa dada',
+ 'bounty-received' => 'Recompensa recibida',
+ 'can-chat' => 'Puede chatear',
+ 'can-comment' => 'Puede comentar',
+ 'can-download' => 'Puede descargar',
+ 'can-invite' => 'Puede invitar',
+ 'can-request' => 'Puede solicitar',
+ 'can-upload' => 'Puede subir',
+ 'certified-banker' => 'Banquero Certificado',
+ 'certified-banker-desc' => 'Tiene más de 50.000 BON en el banco',
+ 'certified-downloader' => 'Descargador certificado',
+ 'certified-downloader-desc' => 'Descargado más de 100 torrents!',
+ 'certified-seeder' => 'Compartidor Certificado',
+ 'certified-seeder-desc' => 'Compartiendo más de 150 torrents!',
+ 'change-email' => 'Cambiar correo-e',
+ 'change-email-help' => 'Tendrá que volver a confirmar su cuenta, después de cambiar su correo electrónico',
+ 'change-password' => 'Cambia la contraseña',
+ 'change-password-help' => 'Tendrá que iniciar sesión nuevamente, después de cambiar su contraseña',
+ 'client-ip-address' => 'Dirección IP del cliente',
+ 'code' => 'Código',
+ 'comments' => 'Comentarios',
+ 'created-on' => 'Creado hace',
+ 'credited-download' => 'Descarga acreditada',
+ 'credited-upload' => 'Carga acreditada',
+ 'current-password' => 'Contraseña actual',
+ 'custom-title' => 'Título Personalizado',
+ 'delete' => 'Borrar usuario',
+ 'disable-notifications' => 'Desactivar notificaciones',
+ 'disclaimer' => 'Renuncia de responsabilidad',
+ 'disclaimer-info' => 'Por defecto, no registramos las direcciones IP de los usuarios como la mayoría de los rastreadores. Al agregar la IP de su seedbox a continuación, se espera que sepa que sus IP enumeradas a continuación ahora están almacenadas en nuestra base de datos a menos que elimine los registros.',
+ 'disclaimer-info-bordered' => 'Las IP de Seedbox que se agreguen luego activarán la etiqueta de torrent de alta velocidad en los torrent sembrados de las IP enumeradas a continuación',
+ 'download-bon' => 'BON de descarga',
+ 'download-recorded' => 'Descarga guardada',
+ 'download-true' => 'Descarga confirmada',
+ 'downloads' => 'Descargas',
+ 'edit' => 'Editar usuario',
+ 'edit-profile' => 'Editar perfil',
+ 'enable-notifications' => 'Permitir notificaciones',
+ 'expired' => 'Muerto',
+ 'expires-on' => 'Expira en',
+ 'extra' => 'Extra',
+ 'filled-request' => 'Solicitud completada.',
+ 'follow' => 'Seguir',
+ 'follower-privacy' => 'Configuraciones de seguimiento',
+ 'follower-privacy-list' => 'Permitir a los usuarios ver una lista de tus seguidores',
+ 'follower-help' => 'Controle el intercambio de información específica relacionada con seguidores con grupos a los que se les permite acceder a su perfil. Esta configuración se invalida si no permite que ningún grupo acceda a sus seguidores o si se vuelve privado.',
+ 'followers' => 'Seguidores',
+ 'following-notification' => 'Configuraciones de notificación de usuario seguidas',
+ 'following-notification-upload' => 'Recibir una notificación cuando un usuario seguido carga un torrent',
+ 'following-notification-help' => 'Controla qué notificaciones se envían en relación con las acciones de sitio de usuario seguidas. Esta configuración se invalida si no permite que ningún grupo envíe notificaciones sobre los usuarios seguidos o si deshabilita las notificaciones.',
+ 'formats-are-supported' => ':formats son compatibles',
+ 'forum-notification' => 'Configuración de notificaciones del foro',
+ 'forum-notification-topic' => 'Recibe una notificación cuando un tema que comenzaste recibe una nueva publicación.',
+ 'forum-notification-help' => 'Controlar qué notificaciones se envían sobre las actividades del foro. Esta configuración se invalida si no permite que ningún grupo envíe notificaciones relacionadas con las actividades del foro o si deshabilita las notificaciones',
+ 'forum-privacy' => 'Configuraciones del foro',
+ 'forum-privacy-post' => 'Permitir que los usuarios vean una lista de publicaciones del foro que has publicado',
+ 'forum-privacy-topic' => 'Permitir que los usuarios vean una lista de temas del foro que has iniciado',
+ 'forum-help' => 'Controle el intercambio de estadísticas e información relacionadas con foros específicos con grupos a los que se les permite acceder a su perfil. Esta configuración se invalida si no permite que ningún grupo acceda a las estadísticas e información relacionadas con su foro o si se vuelve privado.',
+ 'forum-signature' => 'Firma del Foro',
+ 'forums' => 'Foros',
+ 'general' => 'General',
+ 'general-settings' => 'Configuración general',
+ 'gift-given' => 'Regalo dado',
+ 'gift-received' => 'Regalo recibido',
+ 'go-public' => 'Volverse publico',
+ 'go-private' => 'Volverse privado',
+ 'history' => 'Historia',
+ 'history-table' => 'Mi histórico',
+ 'hit-n-runs' => 'Multas de descargas no compartidas',
+ 'hit-n-runs-count' => 'Contador de Multas de descargas no compartidas (Histórico)',
+ 'hit-n-runs-history' => 'Multas de descargas no compartidas (Histórico)',
+ 'image' => 'Imagen',
+ 'important' => 'Importante',
+ 'important-info' => 'Informacion IMPORTANTE',
+ 'information' => 'Información',
+ 'invite-friend' => 'Invita a tu amigo (correo electrónico + mensaje requerido)',
+ 'invite-tree' => 'Árbol de invitaciones',
+ 'invites' => 'Invita',
+ 'invites-banned' => 'Error: Sus derechos de invitación han sido deshabilitados',
+ 'invites-banned-desc' => 'Si cree que esto está en error, contacte al personal!',
+ 'invites-count' => 'Tienes :count invitaciones',
+ 'invites-disabled' => 'Atención: las invitaciones están deshabilitadas debido a la inscripción abierta!',
+ 'invites-disabled-desc' => '¡Por favor, revise luego!',
+ 'invites-rules' => '- Solo invite a personas que conozca y en las que confíe.
- Serás personalmente responsable por aquellos a quienes invitas.
- No te invites a ti mismo, verificamos a cada usuario invitado.
- No intercambies ni vendas invitaciones.
- Si una persona a la que invitó es atrapada haciendo trampa, intercambiando cuentas o vendiendo / intercambiando invitaciones, se le avisará.
',
+ 'invites-send' => 'Enviar invitación',
+ 'last-login' => 'Último acceso',
+ 'locked' => 'Bloqueado',
+ 'locked-achievements' => 'Logros bloqueados',
+ 'member-since' => 'Miembro desde',
+ 'members-desc' => 'Lista de usuarios registrados en :title con todos los grupos. Encuentra un usuario ahora.',
+ 'mention-notification' => 'Configuración de notificaciones @Mention',
'mention-notification-article-comment' => 'Recibir una notificación cuando se te menciona en un comentario de artículo',
'mention-notification-torrent-comment' => 'Recibir una notificación cuando se te menciona en un comentario de torrent',
'mention-notification-request-comment' => 'Recibe una notificación cuando se te menciona en un comentario de solicitud',
- 'mention-notification-forum-post' => 'Recibir una notificación cuando se te menciona en una publicación del foro',
- 'mention-notification-help' => 'Controla qué notificaciones se envían cuando un usuario te envia. Esta configuración se invalida si no permite que ningún grupo envíe notificaciones si un usuario lo menciona o si deshabilita las notificaciones.',
- 'moderated-by' => 'Moderado por :mod hace',
- 'my-bonus-points' => 'Mis puntos de bonificación',
- 'my-bookmarks' => 'Mis favoritos',
- 'my-fl-tokens' => 'Mis cupones de FL',
- 'my-general-settings' => 'Mis ajustes generales',
- 'my-notification' => 'Mi notificacion',
- 'my-notification-settings' => 'Configuración de notificaciones',
- 'my-privacy' => 'Mi privacidad',
- 'my-privacy-settings' => 'Configuración de privacidad',
- 'my-profile' => 'Mi perfil',
- 'my-requested' => 'Mis solicitudes',
- 'my-security' => 'Mi seguridad',
- 'my-security-settings' => 'Mis configuraciones de seguridad',
- 'my-seedboxes' => 'Mis Seedboxes',
- 'my-settings' => 'Mi configuración',
- 'my-wishlist' => 'Mi lista de deseos',
- 'no-logs' => '¡No hay registros de invitaciones en la base de datos para este usuario!',
- 'no-seedboxes' => 'No hay Seedboxes 😔',
- 'not-authorized' => 'No estás autorizado para ver esta página. ¡Este miembro prefiere estar escondido como un ninja!',
- 'note' => 'Nota',
- 'notification' => 'Notificación',
- 'notification-settings' => 'Configuración de las notificaciones',
- 'notification-from-account' => 'Recibir notificaciones de cuenta de',
- 'notification-from-account-help' => 'Solo recibirá notificaciones de cuenta del sistema, del personal y de los siguientes grupos. Estas configuraciones se anulan si deshabilita las notificaciones',
- 'notification-from-bon' => 'Recibir notificaciones BON desde',
- 'notification-from-bon-help' => 'Solo recibirá notificaciones BON del sistema, el personal y los siguientes grupos. Estas configuraciones se anulan si deshabilita las notificaciones',
- 'notification-from-following' => 'Recibir notificaciones de usuario seguidas de',
- 'notification-from-following-help' => 'Solo recibirá las siguientes notificaciones de usuario de los siguientes grupos. Estas configuraciones se anulan si deshabilita las notificaciones',
- 'notification-from-forum' => 'Recibir notificaciones del foro de',
- 'notification-from-forum-help' => 'Solo recibirá notificaciones del foro del sistema, del personal y de los siguientes grupos. Estas configuraciones se anulan si deshabilita las notificaciones',
- 'notification-from-subscription' => 'Recibir notificaciones de suscripción de',
- 'notification-from-subscription-help' => 'Solo recibirá notificaciones del foro del sistema, del personal y de los siguientes grupos. Estas configuraciones se anulan si deshabilita las notificaciones',
- 'notification-from-torrent' => 'Recibir notificaciones de torrent de',
- 'notification-from-torrent-help' => 'Solo recibirá notificaciones de torrent del sistema, del personal y de los siguientes grupos. Estas configuraciones se anulan si deshabilita las notificaciones',
- 'notification-from-mention' => 'Recibir notificaciones de @Mention de',
- 'notification-from-mention-help' => 'Solo recibirá notificaciones de @mention del sistema, el personal y los siguientes grupos. Estas configuraciones se anulan si deshabilita las notificaciones',
- 'notification-from-request' => 'Recibir solicitudes de notificaciones desde',
- 'notification-from-request-help' => 'Solo recibirá notificaciones de solicitud del sistema, del personal y de los siguientes grupos. Estas configuraciones se anulan si deshabilita las notificaciones',
- 'notifications' => 'Notificaciones',
- 'offline' => '¡El usuario está desconectado!',
- 'online' => '¡El usuario está en línea!',
- 'options' => 'Opciones',
- 'other-help' => 'Controle el intercambio de otras estadísticas e información con grupos a los que se les permite acceder a su perfil. Estas configuraciones se anulan si no permite que ningún grupo acceda a sus otras estadísticas e información o si se vuelve privado.',
- 'other-privacy' => 'Otros ajustes',
- 'other-privacy-online' => 'Permitir que los usuarios te vean en el bloque de usuarios en línea',
- 'passkey' => 'PID',
- 'passkey-warning' => 'PID es como tu contraseña, debes mantenerla segura!',
- 'pending-achievements' => 'Logros pendientes',
- 'per-torrent' => 'Por torrent',
- 'posts' => 'Publicaciones',
- 'posts-posted' => 'Número de publicaciones en el foro',
- 'privacy' => 'Privacidad',
- 'privacy-settings' => 'Configuración de privacidad',
- 'private-info' => 'Información privada',
- 'private-forum-profile' => 'Atención: ¡Este tema de miembros y su historial de publicaciones se ha configurado como PRIVADO!',
- 'private-profile' => 'Atención: ¡Este perfil se ha establecido en PRIVADO!',
- 'profile' => 'Perfil',
- 'profile-desc' => 'Perfil del usuario :user registrado en :title',
- 'profile-privacy' => 'Configuración de perfil',
- 'profile-privacy-torrent-count' => 'Comparte tu número total de descargas, subidas, compartidos y descargas en curso.',
- 'profile-privacy-torrent-ratio' => 'Comparta sus datos totales de carga / descarga junto con la proporción registrada',
- 'profile-privacy-torrent-seed' => 'Comparte tu tiempo total compartiendo y promedio',
- 'profile-privacy-title' => 'Comparte tu información de título personal',
- 'profile-privacy-about' => 'Comparte tu información personal sobre mí',
- 'profile-privacy-bon-extra' => 'Comparte tus estadísticas de BON',
- 'profile-privacy-comment-extra' => 'Comparte tus estadísticas de comentarios',
- 'profile-privacy-forum-extra' => 'Comparte tus estadísticas del foro',
- 'profile-privacy-request-extra' => 'Comparte tus estadísticas de solicitudes',
- 'profile-privacy-torrent-extra' => 'Comparte tus estadísticas de torrent',
- 'profile-privacy-badge' => 'Comparte tus insignias ganadas',
- 'profile-privacy-achievement' => 'Comparte tus logros recientes',
- 'profile-privacy-follower' => 'Comparte tus seguidores recientes',
- 'profile-privacy-warning' => 'Comparte tus advertencias de Multas',
- 'profile-privacy-help' => 'Controla qué estadísticas y datos aparecen en tu perfil. Estas configuraciones se anulan si no permite que ningún grupo acceda a su perfil o si se vuelve privado.',
- 'public-info' => 'Información pública',
- 'recent-achievements' => 'Logros Recientes',
- 'recent-followers' => 'Seguidores recientes',
- 'registration-date' => 'Fecha de Registro',
- 'report' => 'Informe',
- 'request-help' => 'Controle el intercambio de estadísticas e información relacionadas con solicitudes específicas con grupos a los que se les permite acceder a su perfil. Estas configuraciones se anulan si no permite que ningún grupo acceda a las estadísticas e información relacionadas solicitadas o si se vuelve privado',
- 'request' => 'Solicitud',
- 'requested' => 'Solicitado',
- 'requests' => 'Solicitudes',
- 'request-comments' => 'Comentarios de la solicitud',
- 'request-notification' => 'Notificación de la solicitud',
- 'request-notification-bounty' => 'Recibe una notificación cuando un torrent solicitado recibe una nueva recompensa',
- 'request-notification-comment' => 'Recibe una notificación cuando un torrent solicitado recibe un nuevo comentario',
- 'request-notification-fill' => 'Recibir una notificación cuando se llene un torrent solicitado',
- 'request-notification-fill-approve' => 'Recibir una notificación cuando se apruebe un relleno de torrent solicitado',
- 'request-notification-fill-reject' => 'Recibir una notificación cuando un relleno de torrent solicitado sea rechazado',
- 'request-notification-claim' => 'Recibir una notificación cuando se reclama un torrent solicitado',
- 'request-notification-unclaim' => 'Recibir una notificación cuando un torrent solicitado no sea reclamado',
- 'request-notification-help' => 'Controlar qué notificaciones se envían en relación con las actividades de solicitud. Esta configuración se invalida si no permite que ningún grupo envíe notificaciones relacionadas con las actividades de solicitud o si deshabilita las notificaciones',
- 'request-privacy' => 'Configuración de solicitud',
- 'request-privacy-requested' => 'Permitir a los usuarios ver una lista de solicitudes que ha realizado',
- 'reset-passkey' => 'Restablecer clave de acceso (PID)',
- 'reset-passkey-help' => 'Tendrá que volver a descargar / volver a cargar todos sus torrents activos, después de restablecer el PID',
- 'reset-rss' => 'Restablecer la clave RSS (RID)',
- 'reset-rss-help' => 'Tendrá que volver a cargar todos sus canales RSS activos, después de restablecer el RID',
- 'resurrections' => 'Resurrecciones',
- 'search' => 'Búsqueda rápida por nombre de usuario',
- 'security' => 'Seguridad',
- 'security-settings' => 'Configuraciones de seguridad',
- 'seedboxes' => 'Seedboxes',
- 'seeding-size' => 'Tamaño total compartiendo',
- 'seeds' => 'Compartiendo',
- 'send-invite' => 'Enviar invitación',
- 'sender' => 'Remitente',
- 'settings' => 'Ajustes',
- 'show-passkey' => 'Mostrar PID',
- 'staff-noted' => 'Cuenta del personal anotada',
- 'statistics' => 'Estadística',
- 'subscription-notification' => 'Configuración de notificación de suscripción',
- 'subscription-notification-forum' => 'Recibir una notificación cuando un foro suscrito reciba un nuevo tema.',
- 'subscription-notification-topic' => 'Recibir una notificación cuando un tema suscrito reciba una nueva publicación.',
- 'subscription-notification-help' => 'Controla qué notificaciones se envían sobre tus suscripciones. Esta configuración se invalida si no permite que ningún grupo envíe notificaciones relacionadas con sus suscripciones o si deshabilita las notificaciones.',
- 'thanks-given' => 'Gracias dadas',
- 'thanks-received' => 'Gracias recibidas',
- 'tips-given' => 'Consejos dados',
- 'tips-received' => 'Consejos recibidos',
- 'title' => 'Título',
- 'top-bankers' => 'Los más banqueros',
- 'top-downloaders-data' => 'Los más descargadores (datos)',
- 'top-leechers' => 'Los más descargando actualmente',
- 'top-leechers-count' => 'Los más descargando actualmente (Contador)',
- 'top-seeders' => 'Los más compartidores',
- 'top-seeders-count' => 'Los más compartidores (Contador)',
- 'top-seeding-size' => 'Los más compartidores (tamaño)',
- 'top-seedtime' => 'Más tiempo compartiendo',
- 'top-uploaders-data' => 'Los más Subidores (Datos)',
- 'top-uploaders-count' => 'Los más Subidores (Contador)',
- 'topics' => 'Temas',
- 'topics-started' => 'Temas del foro empezados',
- 'torrent-comments' => 'Comentarios de torrent realizados',
- 'torrent-help' => 'Controle el intercambio de estadísticas e información específicas relacionadas con torrent con grupos a los que se les permite acceder a su perfil. Esta configuración se invalida si no permite que ningún grupo acceda a las estadísticas e información relacionadas con su torrent o si se vuelve privado.',
- 'torrent-notification' => 'Configuración de notificación de torrent',
- 'torrent-notification-comment' => 'Recibe una notificación cuando un torrent cargado recibe un nuevo comentario',
- 'torrent-notification-thank' => 'Recibir una notificación cuando un torrent cargado reciba un nuevo agradecimiento.',
- 'torrent-notification-tip' => 'Reciba una notificación cuando un torrent cargado reciba un nuevo consejo.',
- 'torrent-notification-help' => 'Controlar qué notificaciones se envían sobre las actividades de torrent. Estas configuraciones se anulan si no permite que ningún grupo envíe notificaciones relacionadas con actividades de torrent o si deshabilita las notificaciones',
- 'torrent-privacy' => 'Configuraciones Torrent',
- 'torrent-privacy-download' => 'Permitir que los usuarios vean una lista de torrents que ha descargado',
- 'torrent-privacy-upload' => 'Permitir que los usuarios vean una lista de torrents que has cargado',
- 'torrent-privacy-peer' => 'Permitir que los usuarios te vean en la tabla de historial de torrent peer',
- 'torrents' => 'Torrentes',
- 'torrents-history' => 'Historia de los torrentes',
- 'total-download' => 'Descarga total',
- 'total-downloads' => 'Descargas totales',
- 'total-leeching' => 'Descargas en curso totales',
- 'total-seeding' => 'Total compartiendo',
- 'total-seedtime' => 'Tiempo total compartiendo',
- 'total-upload' => 'Subida total',
- 'total-uploads' => 'Subidas totales',
- 'unban' => 'Desbloquear Usuario',
- 'unfollow' => 'Dejar de seguir',
- 'unlocked' => 'Desbloqueado',
- 'unlocked-achievements' => 'Logros desbloqueados',
- 'unsatisfieds' => 'Unsatisfieds',
- 'upload-bon' => 'BON de la subida',
- 'upload-recorded' => 'Subida guardada',
- 'upload-true' => 'Subida certificada',
- 'uploads' => 'Subidas',
- 'uploads-table' => 'Tabla de Subidas',
- 'user' => 'Usuario',
- 'user-id' => 'ID de usuario',
- 'username-seedbox' => 'Nombre de usuario Seedbox',
- 'visible-to-achievement' => 'Logros visibles para',
- 'visible-to-achievement-help' => 'Sus logros solo serán visibles para el personal y los siguientes grupos. Estas configuraciones se anulan si usted va privado',
- 'visible-to-follower' => 'Seguidores visibles para',
- 'visible-to-follower-help' => 'Tus seguidores solo serán visibles para el personal y los siguientes grupos. Estas configuraciones se anulan si usted va privado',
- 'visible-to-forum' => 'Información del foro visible para',
- 'visible-to-forum-help' => 'La información de su foro solo será visible para el personal y los siguientes grupos. Estas configuraciones se anulan si usted va privado',
- 'visible-to-other' => 'Otros visibles para',
- 'visible-to-other-help' => 'Otra información sobre su cuenta solo será visible para el personal y los siguientes grupos. Estas configuraciones se anulan si usted va privado o si va oculto',
- 'visible-to-profile' => 'Perfil visible para',
- 'visible-to-profile-help' => 'Su perfil solo será visible para el personal y los siguientes grupos. Estas configuraciones se anulan si usted va privado',
- 'visible-to-request' => 'Solicitud de información visible para',
- 'visible-to-request-help' => 'La información de su solicitud solo será visible para el personal y los siguientes grupos. Estas configuraciones se anulan si usted va privado',
- 'visible-to-torrent' => 'Información del torrente visible para',
- 'visible-to-torrent-help' => 'Su información de torrent solo será visible para el personal y los siguientes grupos. Estas configuraciones se anulan si usted va privado o si va oculto',
- 'warned-on' => 'Advertido hace',
- 'warning' => 'Advertencia',
- 'warning-log' => 'Registro de advertencias',
- 'wishlist' => 'Lista de deseos',
+ 'mention-notification-forum-post' => 'Recibir una notificación cuando se te menciona en una publicación del foro',
+ 'mention-notification-help' => 'Controla qué notificaciones se envían cuando un usuario te envia. Esta configuración se invalida si no permite que ningún grupo envíe notificaciones si un usuario lo menciona o si deshabilita las notificaciones.',
+ 'moderated-by' => 'Moderado por :mod hace',
+ 'my-bonus-points' => 'Mis puntos de bonificación',
+ 'my-bookmarks' => 'Mis favoritos',
+ 'my-fl-tokens' => 'Mis cupones de FL',
+ 'my-general-settings' => 'Mis ajustes generales',
+ 'my-notification' => 'Mi notificacion',
+ 'my-notification-settings' => 'Configuración de notificaciones',
+ 'my-privacy' => 'Mi privacidad',
+ 'my-privacy-settings' => 'Configuración de privacidad',
+ 'my-profile' => 'Mi perfil',
+ 'my-requested' => 'Mis solicitudes',
+ 'my-security' => 'Mi seguridad',
+ 'my-security-settings' => 'Mis configuraciones de seguridad',
+ 'my-seedboxes' => 'Mis Seedboxes',
+ 'my-settings' => 'Mi configuración',
+ 'my-wishlist' => 'Mi lista de deseos',
+ 'no-logs' => '¡No hay registros de invitaciones en la base de datos para este usuario!',
+ 'no-seedboxes' => 'No hay Seedboxes 😔',
+ 'not-authorized' => 'No estás autorizado para ver esta página. ¡Este miembro prefiere estar escondido como un ninja!',
+ 'note' => 'Nota',
+ 'notification' => 'Notificación',
+ 'notification-settings' => 'Configuración de las notificaciones',
+ 'notification-from-account' => 'Recibir notificaciones de cuenta de',
+ 'notification-from-account-help' => 'Solo recibirá notificaciones de cuenta del sistema, del personal y de los siguientes grupos. Estas configuraciones se anulan si deshabilita las notificaciones',
+ 'notification-from-bon' => 'Recibir notificaciones BON desde',
+ 'notification-from-bon-help' => 'Solo recibirá notificaciones BON del sistema, el personal y los siguientes grupos. Estas configuraciones se anulan si deshabilita las notificaciones',
+ 'notification-from-following' => 'Recibir notificaciones de usuario seguidas de',
+ 'notification-from-following-help' => 'Solo recibirá las siguientes notificaciones de usuario de los siguientes grupos. Estas configuraciones se anulan si deshabilita las notificaciones',
+ 'notification-from-forum' => 'Recibir notificaciones del foro de',
+ 'notification-from-forum-help' => 'Solo recibirá notificaciones del foro del sistema, del personal y de los siguientes grupos. Estas configuraciones se anulan si deshabilita las notificaciones',
+ 'notification-from-subscription' => 'Recibir notificaciones de suscripción de',
+ 'notification-from-subscription-help' => 'Solo recibirá notificaciones del foro del sistema, del personal y de los siguientes grupos. Estas configuraciones se anulan si deshabilita las notificaciones',
+ 'notification-from-torrent' => 'Recibir notificaciones de torrent de',
+ 'notification-from-torrent-help' => 'Solo recibirá notificaciones de torrent del sistema, del personal y de los siguientes grupos. Estas configuraciones se anulan si deshabilita las notificaciones',
+ 'notification-from-mention' => 'Recibir notificaciones de @Mention de',
+ 'notification-from-mention-help' => 'Solo recibirá notificaciones de @mention del sistema, el personal y los siguientes grupos. Estas configuraciones se anulan si deshabilita las notificaciones',
+ 'notification-from-request' => 'Recibir solicitudes de notificaciones desde',
+ 'notification-from-request-help' => 'Solo recibirá notificaciones de solicitud del sistema, del personal y de los siguientes grupos. Estas configuraciones se anulan si deshabilita las notificaciones',
+ 'notifications' => 'Notificaciones',
+ 'offline' => '¡El usuario está desconectado!',
+ 'online' => '¡El usuario está en línea!',
+ 'options' => 'Opciones',
+ 'other-help' => 'Controle el intercambio de otras estadísticas e información con grupos a los que se les permite acceder a su perfil. Estas configuraciones se anulan si no permite que ningún grupo acceda a sus otras estadísticas e información o si se vuelve privado.',
+ 'other-privacy' => 'Otros ajustes',
+ 'other-privacy-online' => 'Permitir que los usuarios te vean en el bloque de usuarios en línea',
+ 'passkey' => 'PID',
+ 'passkey-warning' => 'PID es como tu contraseña, debes mantenerla segura!',
+ 'pending-achievements' => 'Logros pendientes',
+ 'per-torrent' => 'Por torrent',
+ 'posts' => 'Publicaciones',
+ 'posts-posted' => 'Número de publicaciones en el foro',
+ 'privacy' => 'Privacidad',
+ 'privacy-settings' => 'Configuración de privacidad',
+ 'private-info' => 'Información privada',
+ 'private-forum-profile' => 'Atención: ¡Este tema de miembros y su historial de publicaciones se ha configurado como PRIVADO!',
+ 'private-profile' => 'Atención: ¡Este perfil se ha establecido en PRIVADO!',
+ 'profile' => 'Perfil',
+ 'profile-desc' => 'Perfil del usuario :user registrado en :title',
+ 'profile-privacy' => 'Configuración de perfil',
+ 'profile-privacy-torrent-count' => 'Comparte tu número total de descargas, subidas, compartidos y descargas en curso.',
+ 'profile-privacy-torrent-ratio' => 'Comparta sus datos totales de carga / descarga junto con la proporción registrada',
+ 'profile-privacy-torrent-seed' => 'Comparte tu tiempo total compartiendo y promedio',
+ 'profile-privacy-title' => 'Comparte tu información de título personal',
+ 'profile-privacy-about' => 'Comparte tu información personal sobre mí',
+ 'profile-privacy-bon-extra' => 'Comparte tus estadísticas de BON',
+ 'profile-privacy-comment-extra' => 'Comparte tus estadísticas de comentarios',
+ 'profile-privacy-forum-extra' => 'Comparte tus estadísticas del foro',
+ 'profile-privacy-request-extra' => 'Comparte tus estadísticas de solicitudes',
+ 'profile-privacy-torrent-extra' => 'Comparte tus estadísticas de torrent',
+ 'profile-privacy-badge' => 'Comparte tus insignias ganadas',
+ 'profile-privacy-achievement' => 'Comparte tus logros recientes',
+ 'profile-privacy-follower' => 'Comparte tus seguidores recientes',
+ 'profile-privacy-warning' => 'Comparte tus advertencias de Multas',
+ 'profile-privacy-help' => 'Controla qué estadísticas y datos aparecen en tu perfil. Estas configuraciones se anulan si no permite que ningún grupo acceda a su perfil o si se vuelve privado.',
+ 'public-info' => 'Información pública',
+ 'recent-achievements' => 'Logros Recientes',
+ 'recent-followers' => 'Seguidores recientes',
+ 'registration-date' => 'Fecha de Registro',
+ 'report' => 'Informe',
+ 'request-help' => 'Controle el intercambio de estadísticas e información relacionadas con solicitudes específicas con grupos a los que se les permite acceder a su perfil. Estas configuraciones se anulan si no permite que ningún grupo acceda a las estadísticas e información relacionadas solicitadas o si se vuelve privado',
+ 'request' => 'Solicitud',
+ 'requested' => 'Solicitado',
+ 'requests' => 'Solicitudes',
+ 'request-comments' => 'Comentarios de la solicitud',
+ 'request-notification' => 'Notificación de la solicitud',
+ 'request-notification-bounty' => 'Recibe una notificación cuando un torrent solicitado recibe una nueva recompensa',
+ 'request-notification-comment' => 'Recibe una notificación cuando un torrent solicitado recibe un nuevo comentario',
+ 'request-notification-fill' => 'Recibir una notificación cuando se llene un torrent solicitado',
+ 'request-notification-fill-approve' => 'Recibir una notificación cuando se apruebe un relleno de torrent solicitado',
+ 'request-notification-fill-reject' => 'Recibir una notificación cuando un relleno de torrent solicitado sea rechazado',
+ 'request-notification-claim' => 'Recibir una notificación cuando se reclama un torrent solicitado',
+ 'request-notification-unclaim' => 'Recibir una notificación cuando un torrent solicitado no sea reclamado',
+ 'request-notification-help' => 'Controlar qué notificaciones se envían en relación con las actividades de solicitud. Esta configuración se invalida si no permite que ningún grupo envíe notificaciones relacionadas con las actividades de solicitud o si deshabilita las notificaciones',
+ 'request-privacy' => 'Configuración de solicitud',
+ 'request-privacy-requested' => 'Permitir a los usuarios ver una lista de solicitudes que ha realizado',
+ 'reset-passkey' => 'Restablecer clave de acceso (PID)',
+ 'reset-passkey-help' => 'Tendrá que volver a descargar / volver a cargar todos sus torrents activos, después de restablecer el PID',
+ 'reset-rss' => 'Restablecer la clave RSS (RID)',
+ 'reset-rss-help' => 'Tendrá que volver a cargar todos sus canales RSS activos, después de restablecer el RID',
+ 'resurrections' => 'Resurrecciones',
+ 'search' => 'Búsqueda rápida por nombre de usuario',
+ 'security' => 'Seguridad',
+ 'security-settings' => 'Configuraciones de seguridad',
+ 'seedboxes' => 'Seedboxes',
+ 'seeding-size' => 'Tamaño total compartiendo',
+ 'seeds' => 'Compartiendo',
+ 'send-invite' => 'Enviar invitación',
+ 'sender' => 'Remitente',
+ 'settings' => 'Ajustes',
+ 'show-passkey' => 'Mostrar PID',
+ 'staff-noted' => 'Cuenta del personal anotada',
+ 'statistics' => 'Estadística',
+ 'subscription-notification' => 'Configuración de notificación de suscripción',
+ 'subscription-notification-forum' => 'Recibir una notificación cuando un foro suscrito reciba un nuevo tema.',
+ 'subscription-notification-topic' => 'Recibir una notificación cuando un tema suscrito reciba una nueva publicación.',
+ 'subscription-notification-help' => 'Controla qué notificaciones se envían sobre tus suscripciones. Esta configuración se invalida si no permite que ningún grupo envíe notificaciones relacionadas con sus suscripciones o si deshabilita las notificaciones.',
+ 'thanks-given' => 'Gracias dadas',
+ 'thanks-received' => 'Gracias recibidas',
+ 'tips-given' => 'Consejos dados',
+ 'tips-received' => 'Consejos recibidos',
+ 'title' => 'Título',
+ 'top-bankers' => 'Los más banqueros',
+ 'top-downloaders-data' => 'Los más descargadores (datos)',
+ 'top-leechers' => 'Los más descargando actualmente',
+ 'top-leechers-count' => 'Los más descargando actualmente (Contador)',
+ 'top-seeders' => 'Los más compartidores',
+ 'top-seeders-count' => 'Los más compartidores (Contador)',
+ 'top-seeding-size' => 'Los más compartidores (tamaño)',
+ 'top-seedtime' => 'Más tiempo compartiendo',
+ 'top-uploaders-data' => 'Los más Subidores (Datos)',
+ 'top-uploaders-count' => 'Los más Subidores (Contador)',
+ 'topics' => 'Temas',
+ 'topics-started' => 'Temas del foro empezados',
+ 'torrent-comments' => 'Comentarios de torrent realizados',
+ 'torrent-help' => 'Controle el intercambio de estadísticas e información específicas relacionadas con torrent con grupos a los que se les permite acceder a su perfil. Esta configuración se invalida si no permite que ningún grupo acceda a las estadísticas e información relacionadas con su torrent o si se vuelve privado.',
+ 'torrent-notification' => 'Configuración de notificación de torrent',
+ 'torrent-notification-comment' => 'Recibe una notificación cuando un torrent cargado recibe un nuevo comentario',
+ 'torrent-notification-thank' => 'Recibir una notificación cuando un torrent cargado reciba un nuevo agradecimiento.',
+ 'torrent-notification-tip' => 'Reciba una notificación cuando un torrent cargado reciba un nuevo consejo.',
+ 'torrent-notification-help' => 'Controlar qué notificaciones se envían sobre las actividades de torrent. Estas configuraciones se anulan si no permite que ningún grupo envíe notificaciones relacionadas con actividades de torrent o si deshabilita las notificaciones',
+ 'torrent-privacy' => 'Configuraciones Torrent',
+ 'torrent-privacy-download' => 'Permitir que los usuarios vean una lista de torrents que ha descargado',
+ 'torrent-privacy-upload' => 'Permitir que los usuarios vean una lista de torrents que has cargado',
+ 'torrent-privacy-peer' => 'Permitir que los usuarios te vean en la tabla de historial de torrent peer',
+ 'torrents' => 'Torrentes',
+ 'torrents-history' => 'Historia de los torrentes',
+ 'total-download' => 'Descarga total',
+ 'total-downloads' => 'Descargas totales',
+ 'total-leeching' => 'Descargas en curso totales',
+ 'total-seeding' => 'Total compartiendo',
+ 'total-seedtime' => 'Tiempo total compartiendo',
+ 'total-upload' => 'Subida total',
+ 'total-uploads' => 'Subidas totales',
+ 'unban' => 'Desbloquear Usuario',
+ 'unfollow' => 'Dejar de seguir',
+ 'unlocked' => 'Desbloqueado',
+ 'unlocked-achievements' => 'Logros desbloqueados',
+ 'unsatisfieds' => 'Unsatisfieds',
+ 'upload-bon' => 'BON de la subida',
+ 'upload-recorded' => 'Subida guardada',
+ 'upload-true' => 'Subida certificada',
+ 'uploads' => 'Subidas',
+ 'uploads-table' => 'Tabla de Subidas',
+ 'user' => 'Usuario',
+ 'user-id' => 'ID de usuario',
+ 'username-seedbox' => 'Nombre de usuario Seedbox',
+ 'visible-to-achievement' => 'Logros visibles para',
+ 'visible-to-achievement-help' => 'Sus logros solo serán visibles para el personal y los siguientes grupos. Estas configuraciones se anulan si usted va privado',
+ 'visible-to-follower' => 'Seguidores visibles para',
+ 'visible-to-follower-help' => 'Tus seguidores solo serán visibles para el personal y los siguientes grupos. Estas configuraciones se anulan si usted va privado',
+ 'visible-to-forum' => 'Información del foro visible para',
+ 'visible-to-forum-help' => 'La información de su foro solo será visible para el personal y los siguientes grupos. Estas configuraciones se anulan si usted va privado',
+ 'visible-to-other' => 'Otros visibles para',
+ 'visible-to-other-help' => 'Otra información sobre su cuenta solo será visible para el personal y los siguientes grupos. Estas configuraciones se anulan si usted va privado o si va oculto',
+ 'visible-to-profile' => 'Perfil visible para',
+ 'visible-to-profile-help' => 'Su perfil solo será visible para el personal y los siguientes grupos. Estas configuraciones se anulan si usted va privado',
+ 'visible-to-request' => 'Solicitud de información visible para',
+ 'visible-to-request-help' => 'La información de su solicitud solo será visible para el personal y los siguientes grupos. Estas configuraciones se anulan si usted va privado',
+ 'visible-to-torrent' => 'Información del torrente visible para',
+ 'visible-to-torrent-help' => 'Su información de torrent solo será visible para el personal y los siguientes grupos. Estas configuraciones se anulan si usted va privado o si va oculto',
+ 'warned-on' => 'Advertido hace',
+ 'warning' => 'Advertencia',
+ 'warning-log' => 'Registro de advertencias',
+ 'wishlist' => 'Lista de deseos',
];
diff --git a/lang/es/validation.php b/lang/es/validation.php
index 91123edf3..05a717e7a 100644
--- a/lang/es/validation.php
+++ b/lang/es/validation.php
@@ -23,108 +23,108 @@ return [
|
*/
- 'accepted' => ':attribute debe ser aceptado.',
- 'active_url' => ':attribute no es una URL válida.',
- 'after' => ':attribute debe ser una fecha posterior a :date.',
- 'after_or_equal' => ':attribute debe ser una fecha posterior o igual a :date.',
- 'alpha' => ':attribute sólo debe contener letras.',
- 'alpha_dash' => ':attribute sólo debe contener letras, números y guiones.',
- 'alpha_num' => ':attribute sólo debe contener letras y números.',
- 'array' => ':attribute debe ser un conjunto.',
- 'before' => ':attribute debe ser una fecha anterior a :date.',
- 'before_or_equal' => ':attribute debe ser una fecha anterior o igual a :date.',
- 'between' => [
+ 'accepted' => ':attribute debe ser aceptado.',
+ 'active_url' => ':attribute no es una URL válida.',
+ 'after' => ':attribute debe ser una fecha posterior a :date.',
+ 'after_or_equal' => ':attribute debe ser una fecha posterior o igual a :date.',
+ 'alpha' => ':attribute sólo debe contener letras.',
+ 'alpha_dash' => ':attribute sólo debe contener letras, números y guiones.',
+ 'alpha_num' => ':attribute sólo debe contener letras y números.',
+ 'array' => ':attribute debe ser un conjunto.',
+ 'before' => ':attribute debe ser una fecha anterior a :date.',
+ 'before_or_equal' => ':attribute debe ser una fecha anterior o igual a :date.',
+ 'between' => [
'numeric' => ':attribute tiene que estar entre :min - :max.',
- 'file' => ':attribute debe pesar entre :min - :max kilobytes.',
- 'string' => ':attribute tiene que tener entre :min - :max caracteres.',
- 'array' => ':attribute tiene que tener entre :min - :max ítems.',
+ 'file' => ':attribute debe pesar entre :min - :max kilobytes.',
+ 'string' => ':attribute tiene que tener entre :min - :max caracteres.',
+ 'array' => ':attribute tiene que tener entre :min - :max ítems.',
],
- 'boolean' => 'El campo :attribute debe tener un valor verdadero o falso.',
- 'confirmed' => 'La confirmación de :attribute no coincide.',
- 'date' => ':attribute no es una fecha válida.',
- 'date_equals' => ':attribute debe ser una fecha igual a :date.',
- 'date_format' => ':attribute no corresponde al formato :format.',
- 'different' => ':attribute y :other deben ser diferentes.',
- 'digits' => ':attribute debe tener :digits dígitos.',
- 'digits_between' => ':attribute debe tener entre :min y :max dígitos.',
- 'dimensions' => 'Las dimensiones de la imagen :attribute no son válidas.',
- 'distinct' => 'El campo :attribute contiene un valor duplicado.',
- 'email' => ':attribute no es un correo válido',
- 'exists' => ':attribute es inválido.',
- 'file' => 'El campo :attribute debe ser un archivo.',
- 'filled' => 'El campo :attribute es obligatorio.',
- 'gt' => [
+ 'boolean' => 'El campo :attribute debe tener un valor verdadero o falso.',
+ 'confirmed' => 'La confirmación de :attribute no coincide.',
+ 'date' => ':attribute no es una fecha válida.',
+ 'date_equals' => ':attribute debe ser una fecha igual a :date.',
+ 'date_format' => ':attribute no corresponde al formato :format.',
+ 'different' => ':attribute y :other deben ser diferentes.',
+ 'digits' => ':attribute debe tener :digits dígitos.',
+ 'digits_between' => ':attribute debe tener entre :min y :max dígitos.',
+ 'dimensions' => 'Las dimensiones de la imagen :attribute no son válidas.',
+ 'distinct' => 'El campo :attribute contiene un valor duplicado.',
+ 'email' => ':attribute no es un correo válido',
+ 'exists' => ':attribute es inválido.',
+ 'file' => 'El campo :attribute debe ser un archivo.',
+ 'filled' => 'El campo :attribute es obligatorio.',
+ 'gt' => [
'numeric' => 'El campo :attribute debe ser mayor que :value.',
- 'file' => 'El campo :attribute debe tener más de :value kilobytes.',
- 'string' => 'El campo :attribute debe tener más de :value caracteres.',
- 'array' => 'El campo :attribute debe tener más de :value elementos.',
+ 'file' => 'El campo :attribute debe tener más de :value kilobytes.',
+ 'string' => 'El campo :attribute debe tener más de :value caracteres.',
+ 'array' => 'El campo :attribute debe tener más de :value elementos.',
],
- 'gte' => [
+ 'gte' => [
'numeric' => 'El campo :attribute debe ser como mínimo :value.',
- 'file' => 'El campo :attribute debe tener como mínimo :value kilobytes.',
- 'string' => 'El campo :attribute debe tener como mínimo :value caracteres.',
- 'array' => 'El campo :attribute debe tener como mínimo :value elementos.',
+ 'file' => 'El campo :attribute debe tener como mínimo :value kilobytes.',
+ 'string' => 'El campo :attribute debe tener como mínimo :value caracteres.',
+ 'array' => 'El campo :attribute debe tener como mínimo :value elementos.',
],
- 'image' => ':attribute debe ser una imagen.',
- 'in' => ':attribute es inválido.',
- 'in_array' => 'El campo :attribute no existe en :other.',
- 'integer' => ':attribute debe ser un número entero.',
- 'ip' => ':attribute debe ser una dirección IP válida.',
- 'ipv4' => ':attribute debe ser un dirección IPv4 válida',
- 'ipv6' => ':attribute debe ser un dirección IPv6 válida.',
- 'json' => 'El campo :attribute debe tener una cadena JSON válida.',
- 'lt' => [
+ 'image' => ':attribute debe ser una imagen.',
+ 'in' => ':attribute es inválido.',
+ 'in_array' => 'El campo :attribute no existe en :other.',
+ 'integer' => ':attribute debe ser un número entero.',
+ 'ip' => ':attribute debe ser una dirección IP válida.',
+ 'ipv4' => ':attribute debe ser un dirección IPv4 válida',
+ 'ipv6' => ':attribute debe ser un dirección IPv6 válida.',
+ 'json' => 'El campo :attribute debe tener una cadena JSON válida.',
+ 'lt' => [
'numeric' => 'El campo :attribute debe ser menor que :value.',
- 'file' => 'El campo :attribute debe tener menos de :value kilobytes.',
- 'string' => 'El campo :attribute debe tener menos de :value caracteres.',
- 'array' => 'El campo :attribute debe tener menos de :value elementos.',
+ 'file' => 'El campo :attribute debe tener menos de :value kilobytes.',
+ 'string' => 'El campo :attribute debe tener menos de :value caracteres.',
+ 'array' => 'El campo :attribute debe tener menos de :value elementos.',
],
- 'lte' => [
+ 'lte' => [
'numeric' => 'El campo :attribute debe ser como máximo :value.',
- 'file' => 'El campo :attribute debe tener como máximo :value kilobytes.',
- 'string' => 'El campo :attribute debe tener como máximo :value caracteres.',
- 'array' => 'El campo :attribute debe tener como máximo :value elementos.',
+ 'file' => 'El campo :attribute debe tener como máximo :value kilobytes.',
+ 'string' => 'El campo :attribute debe tener como máximo :value caracteres.',
+ 'array' => 'El campo :attribute debe tener como máximo :value elementos.',
],
- 'max' => [
+ 'max' => [
'numeric' => ':attribute no debe ser mayor a :max.',
- 'file' => ':attribute no debe ser mayor que :max kilobytes.',
- 'string' => ':attribute no debe ser mayor que :max caracteres.',
- 'array' => ':attribute no debe tener más de :max elementos.',
+ 'file' => ':attribute no debe ser mayor que :max kilobytes.',
+ 'string' => ':attribute no debe ser mayor que :max caracteres.',
+ 'array' => ':attribute no debe tener más de :max elementos.',
],
- 'mimes' => ':attribute debe ser un archivo con formato: :values.',
- 'mimetypes' => ':attribute debe ser un archivo con formato: :values.',
- 'min' => [
+ 'mimes' => ':attribute debe ser un archivo con formato: :values.',
+ 'mimetypes' => ':attribute debe ser un archivo con formato: :values.',
+ 'min' => [
'numeric' => 'El tamaño de :attribute debe ser de al menos :min.',
- 'file' => 'El tamaño de :attribute debe ser de al menos :min kilobytes.',
- 'string' => ':attribute debe contener al menos :min caracteres.',
- 'array' => ':attribute debe tener al menos :min elementos.',
+ 'file' => 'El tamaño de :attribute debe ser de al menos :min kilobytes.',
+ 'string' => ':attribute debe contener al menos :min caracteres.',
+ 'array' => ':attribute debe tener al menos :min elementos.',
],
- 'not_in' => ':attribute es inválido.',
- 'not_regex' => 'El formato del campo :attribute no es válido.',
- 'numeric' => ':attribute debe ser numérico.',
- 'present' => 'El campo :attribute debe estar presente.',
- 'regex' => 'El formato de :attribute es inválido.',
- 'required' => 'El campo :attribute es obligatorio.',
- 'required_if' => 'El campo :attribute es obligatorio cuando :other es :value.',
- 'required_unless' => 'El campo :attribute es obligatorio a menos que :other esté en :values.',
- 'required_with' => 'El campo :attribute es obligatorio cuando :values está presente.',
- 'required_with_all' => 'El campo :attribute es obligatorio cuando :values está presente.',
- 'required_without' => 'El campo :attribute es obligatorio cuando :values no está presente.',
+ 'not_in' => ':attribute es inválido.',
+ 'not_regex' => 'El formato del campo :attribute no es válido.',
+ 'numeric' => ':attribute debe ser numérico.',
+ 'present' => 'El campo :attribute debe estar presente.',
+ 'regex' => 'El formato de :attribute es inválido.',
+ 'required' => 'El campo :attribute es obligatorio.',
+ 'required_if' => 'El campo :attribute es obligatorio cuando :other es :value.',
+ 'required_unless' => 'El campo :attribute es obligatorio a menos que :other esté en :values.',
+ 'required_with' => 'El campo :attribute es obligatorio cuando :values está presente.',
+ 'required_with_all' => 'El campo :attribute es obligatorio cuando :values está presente.',
+ 'required_without' => 'El campo :attribute es obligatorio cuando :values no está presente.',
'required_without_all' => 'El campo :attribute es obligatorio cuando ninguno de :values estén presentes.',
- 'same' => ':attribute y :other deben coincidir.',
- 'size' => [
+ 'same' => ':attribute y :other deben coincidir.',
+ 'size' => [
'numeric' => 'El tamaño de :attribute debe ser :size.',
- 'file' => 'El tamaño de :attribute debe ser :size kilobytes.',
- 'string' => ':attribute debe contener :size caracteres.',
- 'array' => ':attribute debe contener :size elementos.',
+ 'file' => 'El tamaño de :attribute debe ser :size kilobytes.',
+ 'string' => ':attribute debe contener :size caracteres.',
+ 'array' => ':attribute debe contener :size elementos.',
],
- 'starts_with' => 'El campo :attribute debe comenzar con uno de los siguientes valores: :values',
- 'string' => 'El campo :attribute debe ser una cadena de caracteres.',
- 'timezone' => 'El :attribute debe ser una zona válida.',
- 'unique' => 'El campo :attribute ya ha sido registrado.',
- 'uploaded' => 'Subir :attribute ha fallado.',
- 'url' => 'El formato :attribute es inválido.',
- 'uuid' => 'El campo :attribute debe ser un UUID válido.',
+ 'starts_with' => 'El campo :attribute debe comenzar con uno de los siguientes valores: :values',
+ 'string' => 'El campo :attribute debe ser una cadena de caracteres.',
+ 'timezone' => 'El :attribute debe ser una zona válida.',
+ 'unique' => 'El campo :attribute ya ha sido registrado.',
+ 'uploaded' => 'Subir :attribute ha fallado.',
+ 'url' => 'El formato :attribute es inválido.',
+ 'uuid' => 'El campo :attribute debe ser un UUID válido.',
/*
|--------------------------------------------------------------------------
@@ -138,13 +138,13 @@ return [
*/
'email_list' => 'Lo sentimos, no aceptamos ese dominio de correos eléctronicos. Aceptamos los que publicamos en nuestra lista blanca.',
- 'recaptcha' => 'Verifica que no eres un robot rellenando el Captcha.',
+ 'recaptcha' => 'Verifica que no eres un robot rellenando el Captcha.',
'custom' => [
'password' => [
'min' => 'La :attribute debe contener más de :min caracteres',
],
- 'email' => [
+ 'email' => [
'unique' => 'El :attribute ya existe en nuestra base de datos.',
],
'attribute-name' => [
@@ -164,35 +164,35 @@ return [
*/
'attributes' => [
- 'name' => 'nombre',
- 'username' => 'usuario',
- 'email' => 'correo electrónico',
- 'first_name' => 'nombre',
- 'last_name' => 'apellido',
- 'password' => 'contraseña',
+ 'name' => 'nombre',
+ 'username' => 'usuario',
+ 'email' => 'correo electrónico',
+ 'first_name' => 'nombre',
+ 'last_name' => 'apellido',
+ 'password' => 'contraseña',
'password_confirmation' => 'confirmación de la contraseña',
- 'city' => 'ciudad',
- 'country' => 'país',
- 'address' => 'dirección',
- 'phone' => 'teléfono',
- 'mobile' => 'móvil',
- 'age' => 'edad',
- 'sex' => 'sexo',
- 'gender' => 'género',
- 'year' => 'año',
- 'month' => 'mes',
- 'day' => 'día',
- 'hour' => 'hora',
- 'minute' => 'minuto',
- 'second' => 'segundo',
- 'title' => 'título',
- 'content' => 'contenido',
- 'body' => 'contenido',
- 'description' => 'descripción',
- 'excerpt' => 'extracto',
- 'date' => 'fecha',
- 'time' => 'hora',
- 'subject' => 'asunto',
- 'message' => 'mensaje',
+ 'city' => 'ciudad',
+ 'country' => 'país',
+ 'address' => 'dirección',
+ 'phone' => 'teléfono',
+ 'mobile' => 'móvil',
+ 'age' => 'edad',
+ 'sex' => 'sexo',
+ 'gender' => 'género',
+ 'year' => 'año',
+ 'month' => 'mes',
+ 'day' => 'día',
+ 'hour' => 'hora',
+ 'minute' => 'minuto',
+ 'second' => 'segundo',
+ 'title' => 'título',
+ 'content' => 'contenido',
+ 'body' => 'contenido',
+ 'description' => 'descripción',
+ 'excerpt' => 'extracto',
+ 'date' => 'fecha',
+ 'time' => 'hora',
+ 'subject' => 'asunto',
+ 'message' => 'mensaje',
],
];
diff --git a/lang/et/articles.php b/lang/et/articles.php
index f2e95ba93..e1e70e290 100644
--- a/lang/et/articles.php
+++ b/lang/et/articles.php
@@ -12,8 +12,8 @@
*/
return [
- 'articles' => 'Artiklid',
+ 'articles' => 'Artiklid',
'meta-articles' => 'Artiklid ja uudised jälgija ja kogukonna kohta',
- 'published-at' => 'Avaldatud',
- 'read-more' => 'Loe rohkem',
+ 'published-at' => 'Avaldatud',
+ 'read-more' => 'Loe rohkem',
];
diff --git a/lang/et/auth.php b/lang/et/auth.php
index 151a8f35c..923a6c5ae 100644
--- a/lang/et/auth.php
+++ b/lang/et/auth.php
@@ -23,6 +23,6 @@ return [
|
*/
- 'failed' => 'Need andmed ei klapi meie kirjetega.',
+ 'failed' => 'Need andmed ei klapi meie kirjetega.',
'throttle' => 'Liiga palju sisselogimise katseid. Palun proovi uuesti :seconds sekundi pärast.',
];
diff --git a/lang/et/backup.php b/lang/et/backup.php
index 64184c860..8637bb1b2 100644
--- a/lang/et/backup.php
+++ b/lang/et/backup.php
@@ -12,32 +12,32 @@
*/
return [
- 'actions' => 'Meetmed',
- 'backup' => 'Varundamine',
- 'backup_doesnt_exist' => 'Varukoopiafaili ei ole.',
- 'create_a_new_backup' => 'Loo täielik varukoopia',
- 'create_a_new_files_backup' => 'Loo failide varundamine',
- 'create_a_new_db_backup' => 'Loo andmebaasi varundus',
- 'create_confirmation_message' => 'Lehe uuesti laadimine 3 sekundi pärast.',
- 'create_confirmation_title' => 'Varundamine on lõpetatud',
- 'create_error_message' => 'Varukoopiat ei õnnestunud luua.',
- 'create_error_title' => 'Varundusviga',
- 'create_warning_message' => 'Teie varukoopia EI OLE loodud. Palun kontrollige üksikasjade kohta logifaile.',
- 'create_warning_title' => 'Tundmatu viga',
- 'date' => 'Kuupäev',
- 'delete' => 'Kustuta',
- 'delete_cancel_message' => 'Varukoopia ei ole kustutatud.',
- 'delete_cancel_title' => 'See on ok',
- 'delete_confirm' => 'Kas olete kindel, et soovite selle varufaili kustutada?',
- 'delete_confirmation_message' => 'Varukoopia kustutati.',
- 'delete_confirmation_title' => 'Valmis',
- 'delete_error_message' => 'Varukoopia ei ole kustutatud.',
- 'delete_error_title' => 'Viga',
- 'download' => 'Lae alla',
- 'existing_backups' => 'Olemasolevad varukoopiad',
- 'file_size' => 'Faili suurus',
- 'location' => 'Asukoht',
- 'manager' => 'Manager',
- 'no_disks_configured' => 'Konfiguratsioonis config / backup.php pole konfigureeritud varukoopiaid',
+ 'actions' => 'Meetmed',
+ 'backup' => 'Varundamine',
+ 'backup_doesnt_exist' => 'Varukoopiafaili ei ole.',
+ 'create_a_new_backup' => 'Loo täielik varukoopia',
+ 'create_a_new_files_backup' => 'Loo failide varundamine',
+ 'create_a_new_db_backup' => 'Loo andmebaasi varundus',
+ 'create_confirmation_message' => 'Lehe uuesti laadimine 3 sekundi pärast.',
+ 'create_confirmation_title' => 'Varundamine on lõpetatud',
+ 'create_error_message' => 'Varukoopiat ei õnnestunud luua.',
+ 'create_error_title' => 'Varundusviga',
+ 'create_warning_message' => 'Teie varukoopia EI OLE loodud. Palun kontrollige üksikasjade kohta logifaile.',
+ 'create_warning_title' => 'Tundmatu viga',
+ 'date' => 'Kuupäev',
+ 'delete' => 'Kustuta',
+ 'delete_cancel_message' => 'Varukoopia ei ole kustutatud.',
+ 'delete_cancel_title' => 'See on ok',
+ 'delete_confirm' => 'Kas olete kindel, et soovite selle varufaili kustutada?',
+ 'delete_confirmation_message' => 'Varukoopia kustutati.',
+ 'delete_confirmation_title' => 'Valmis',
+ 'delete_error_message' => 'Varukoopia ei ole kustutatud.',
+ 'delete_error_title' => 'Viga',
+ 'download' => 'Lae alla',
+ 'existing_backups' => 'Olemasolevad varukoopiad',
+ 'file_size' => 'Faili suurus',
+ 'location' => 'Asukoht',
+ 'manager' => 'Manager',
+ 'no_disks_configured' => 'Konfiguratsioonis config / backup.php pole konfigureeritud varukoopiaid',
'only_local_downloads_supported' => 'Toetatakse ainult kohaliku failisüsteemi allalaadimisi.',
];
diff --git a/lang/et/blocks.php b/lang/et/blocks.php
index 9a44bd050..3cccf9bf3 100644
--- a/lang/et/blocks.php
+++ b/lang/et/blocks.php
@@ -12,19 +12,19 @@
*/
return [
- 'chatbox' => 'Vestluskast',
- 'click' => 'Klõpsake nuppu',
- 'to-enable-editor' => 'redaktori lubamiseks',
- 'featured-by' => 'Esile tõstetud',
- 'featured-torrents' => 'Soovitatavad torrentid',
+ 'chatbox' => 'Vestluskast',
+ 'click' => 'Klõpsake nuppu',
+ 'to-enable-editor' => 'redaktori lubamiseks',
+ 'featured-by' => 'Esile tõstetud',
+ 'featured-torrents' => 'Soovitatavad torrentid',
'featured-torrents-intro' => 'Hangi neid, kui saate!',
- 'featured-until' => 'Tegemist on torrentiga kuni',
- 'top-torrents' => 'Top Torrents',
- 'latest-posts' => 'Viimased postitused',
- 'latest-topics' => 'Viimased teemad',
- 'active-in-last' => 'Viimati aktiivne',
- 'users-online' => 'Kasutajad võrgus',
- 'check-news' => 'Uudised (kontrollige iga päev)',
- 'new-news' => 'Uued uudised',
- 'new-torrents' => 'Uued torrentid',
+ 'featured-until' => 'Tegemist on torrentiga kuni',
+ 'top-torrents' => 'Top Torrents',
+ 'latest-posts' => 'Viimased postitused',
+ 'latest-topics' => 'Viimased teemad',
+ 'active-in-last' => 'Viimati aktiivne',
+ 'users-online' => 'Kasutajad võrgus',
+ 'check-news' => 'Uudised (kontrollige iga päev)',
+ 'new-news' => 'Uued uudised',
+ 'new-torrents' => 'Uued torrentid',
];
diff --git a/lang/et/bon.php b/lang/et/bon.php
index e9b8e8a7c..ddf5e3528 100644
--- a/lang/et/bon.php
+++ b/lang/et/bon.php
@@ -12,44 +12,44 @@
*/
return [
- 'activated' => 'Aktiveeritud',
- 'active' => 'Aktiveeritud!',
- 'amount' => 'Summa',
- 'bon' => 'BON',
- 'bonus' => 'Boonus',
- 'date' => 'Kuupäev',
- 'earning' => 'Teenimine',
- 'earning-rate' => 'Sellel teenimise kiirusel teenite ajaperioodi kohta järgmise.',
- 'earnings' => 'Kasum',
- 'exchange' => 'Vahetus',
- 'exchange-warning' => 'Vahetused on lõplikud, kontrollige oma valikuid enne vahetust.',
- 'extended-stats' => 'Laiendatud statistika',
- 'gift' => 'Kingitus',
- 'gift-bonus' => 'Kingitusboonuspunktid',
- 'gift-to' => 'Kingitusboonuspunktid',
- 'gifts' => 'Kingitused',
- 'item' => 'Üksus',
- 'no-refund' => 'MITTE TAGASIMAKSED!',
- 'per-day' => 'Punktid päevas',
- 'per-hour' => 'Punkte tunnis',
- 'per-minute' => 'Punkte minutis',
- 'per-month' => 'Punkte kuus',
- 'per-second' => 'Punktid sekundis',
- 'per-week' => 'Punktid nädalas',
- 'per-year' => 'Punktid aastas',
- 'points' => 'Punktid',
- 'receiver' => 'Vastuvõtja',
- 'review-seeds' => 'Vaadake üle kõik seemned',
- 'send-gift' => 'Saada kingitus',
- 'sender' => 'Saatja',
- 'store' => 'Hoida',
- 'tips' => 'Nõuanded',
- 'total' => 'kogutulu',
- 'total-gifts' => 'Kokku BON kingitustes',
- 'total-tips' => 'Kokku BON nõuanded',
+ 'activated' => 'Aktiveeritud',
+ 'active' => 'Aktiveeritud!',
+ 'amount' => 'Summa',
+ 'bon' => 'BON',
+ 'bonus' => 'Boonus',
+ 'date' => 'Kuupäev',
+ 'earning' => 'Teenimine',
+ 'earning-rate' => 'Sellel teenimise kiirusel teenite ajaperioodi kohta järgmise.',
+ 'earnings' => 'Kasum',
+ 'exchange' => 'Vahetus',
+ 'exchange-warning' => 'Vahetused on lõplikud, kontrollige oma valikuid enne vahetust.',
+ 'extended-stats' => 'Laiendatud statistika',
+ 'gift' => 'Kingitus',
+ 'gift-bonus' => 'Kingitusboonuspunktid',
+ 'gift-to' => 'Kingitusboonuspunktid',
+ 'gifts' => 'Kingitused',
+ 'item' => 'Üksus',
+ 'no-refund' => 'MITTE TAGASIMAKSED!',
+ 'per-day' => 'Punktid päevas',
+ 'per-hour' => 'Punkte tunnis',
+ 'per-minute' => 'Punkte minutis',
+ 'per-month' => 'Punkte kuus',
+ 'per-second' => 'Punktid sekundis',
+ 'per-week' => 'Punktid nädalas',
+ 'per-year' => 'Punktid aastas',
+ 'points' => 'Punktid',
+ 'receiver' => 'Vastuvõtja',
+ 'review-seeds' => 'Vaadake üle kõik seemned',
+ 'send-gift' => 'Saada kingitus',
+ 'sender' => 'Saatja',
+ 'store' => 'Hoida',
+ 'tips' => 'Nõuanded',
+ 'total' => 'kogutulu',
+ 'total-gifts' => 'Kokku BON kingitustes',
+ 'total-tips' => 'Kokku BON nõuanded',
'you-have-received-gifts' => 'Te olete saanud',
- 'you-have-sent-gifts' => 'Sul on saadetud',
- 'you-have-received-tips' => 'Te olete saanud',
- 'you-have-sent-tips' => 'Sul on saadetud',
- 'your-points' => 'Teie punktid',
+ 'you-have-sent-gifts' => 'Sul on saadetud',
+ 'you-have-received-tips' => 'Te olete saanud',
+ 'you-have-sent-tips' => 'Sul on saadetud',
+ 'your-points' => 'Teie punktid',
];
diff --git a/lang/et/bot.php b/lang/et/bot.php
index 684eb23aa..9868dc87d 100644
--- a/lang/et/bot.php
+++ b/lang/et/bot.php
@@ -12,15 +12,15 @@
*/
return [
- 'about' => 'Umbes',
- 'bot' => 'Bot',
- 'bots' => 'Botid',
- 'color' => 'Värv',
- 'command' => 'Käsk',
- 'edit-bot' => 'Edit Bot',
+ 'about' => 'Umbes',
+ 'bot' => 'Bot',
+ 'bots' => 'Botid',
+ 'color' => 'Värv',
+ 'command' => 'Käsk',
+ 'edit-bot' => 'Edit Bot',
'emoji-code' => 'Emoji kood',
- 'help' => 'Abi',
- 'icon' => 'Ikoon',
- 'info' => 'Info',
- 'name' => 'Nimi',
+ 'help' => 'Abi',
+ 'icon' => 'Ikoon',
+ 'info' => 'Info',
+ 'name' => 'Nimi',
];
diff --git a/lang/et/bug.php b/lang/et/bug.php
index 917b324f5..6aee45cd9 100644
--- a/lang/et/bug.php
+++ b/lang/et/bug.php
@@ -12,15 +12,15 @@
*/
return [
- 'bug-report' => 'Veateade',
+ 'bug-report' => 'Veateade',
'bug-report-description' => 'Teata saidi veast',
- 'enter-description' => 'Kirjeldage probleemi võimalikult hästi',
- 'enter-email' => 'Palun sisesta oma e-kiri',
- 'enter-title' => 'Palun vali õige pealkiri',
- 'enter-username' => 'Sisestage oma kasutajanimi',
- 'high' => 'Kõrge',
- 'low' => 'Madal',
- 'priority' => 'Prioriteet',
- 'priority-description' => 'Valige ainult väga kõrge, kui viga tõesti on saidi kasutamise probleem.',
- 'very-high' => 'Väga kõrge',
+ 'enter-description' => 'Kirjeldage probleemi võimalikult hästi',
+ 'enter-email' => 'Palun sisesta oma e-kiri',
+ 'enter-title' => 'Palun vali õige pealkiri',
+ 'enter-username' => 'Sisestage oma kasutajanimi',
+ 'high' => 'Kõrge',
+ 'low' => 'Madal',
+ 'priority' => 'Prioriteet',
+ 'priority-description' => 'Valige ainult väga kõrge, kui viga tõesti on saidi kasutamise probleem.',
+ 'very-high' => 'Väga kõrge',
];
diff --git a/lang/et/common.php b/lang/et/common.php
index 742c40dbb..1f9468055 100644
--- a/lang/et/common.php
+++ b/lang/et/common.php
@@ -12,179 +12,179 @@
*/
return [
- 'a-an-art' => '',
- 'about' => 'Meist',
- 'account' => 'Konto',
- 'achievement-title' => 'Vinge',
+ 'a-an-art' => '',
+ 'about' => 'Meist',
+ 'account' => 'Konto',
+ 'achievement-title' => 'Vinge',
'achievement-unlocked' => 'Sa avasid :name saavutuse',
- 'active' => 'Aktiivne',
- 'active-warning' => 'Aktiivne hoiatus',
- 'add' => 'Lisama',
- 'added' => 'Lisatud',
- 'amount' => 'Summa',
- 'anonymous' => 'Anonüümne',
- 'author' => 'Autor',
- 'balance' => 'Tasakaal',
- 'blacklist' => 'Kliendi must nimekiri',
- 'buffer' => 'Puhver',
- 'bug' => 'Teata veast',
- 'but' => 'Aga',
- 'cancel' => 'Tühista',
- 'category' => 'Kategooria',
- 'categories' => 'Kategooriad',
- 'close' => 'Sulge',
- 'comment' => 'Kommentaar',
- 'comments' => 'Märkused',
- 'community' => 'Ühenduses',
- 'contact' => 'Kontakt',
- 'contact-desc' => 'See kontaktteave saadetakse omanikule ja pöördub teile võimalikult kiiresti tagasi',
- 'contact-header' => 'Tere',
- 'create' => 'Loo',
- 'created_at' => 'Loodud At',
- 'day' => 'Päev',
- 'delete' => 'Kustuta',
- 'delete-your-comment' => 'Kustuta oma kommentaar',
- 'description' => 'Kirjeldus',
- 'direction' => 'Suund',
- 'disable' => 'Keela',
- 'doubleup_activated' => 'Global Double upload mode aktiveeritud',
- 'download' => 'Lae alla',
- 'edit' => 'Muuda',
- 'edit-your-comment' => 'Muuda oma kommentaari',
- 'email' => 'E-post',
- 'email-blacklist' => 'E-posti must nimekiri',
- 'email-whitelist' => 'E-posti valge nimekiri',
+ 'active' => 'Aktiivne',
+ 'active-warning' => 'Aktiivne hoiatus',
+ 'add' => 'Lisama',
+ 'added' => 'Lisatud',
+ 'amount' => 'Summa',
+ 'anonymous' => 'Anonüümne',
+ 'author' => 'Autor',
+ 'balance' => 'Tasakaal',
+ 'blacklist' => 'Kliendi must nimekiri',
+ 'buffer' => 'Puhver',
+ 'bug' => 'Teata veast',
+ 'but' => 'Aga',
+ 'cancel' => 'Tühista',
+ 'category' => 'Kategooria',
+ 'categories' => 'Kategooriad',
+ 'close' => 'Sulge',
+ 'comment' => 'Kommentaar',
+ 'comments' => 'Märkused',
+ 'community' => 'Ühenduses',
+ 'contact' => 'Kontakt',
+ 'contact-desc' => 'See kontaktteave saadetakse omanikule ja pöördub teile võimalikult kiiresti tagasi',
+ 'contact-header' => 'Tere',
+ 'create' => 'Loo',
+ 'created_at' => 'Loodud At',
+ 'day' => 'Päev',
+ 'delete' => 'Kustuta',
+ 'delete-your-comment' => 'Kustuta oma kommentaar',
+ 'description' => 'Kirjeldus',
+ 'direction' => 'Suund',
+ 'disable' => 'Keela',
+ 'doubleup_activated' => 'Global Double upload mode aktiveeritud',
+ 'download' => 'Lae alla',
+ 'edit' => 'Muuda',
+ 'edit-your-comment' => 'Muuda oma kommentaari',
+ 'email' => 'E-post',
+ 'email-blacklist' => 'E-posti must nimekiri',
+ 'email-whitelist' => 'E-posti valge nimekiri',
'email-list-notactive' => 'E-posti valge nimekiri / must nimekiri ei ole aktiveeritud',
- 'enable' => 'Luba',
- 'enter' => 'Sisenema',
- 'error' => 'Viga',
- 'everyday' => 'Iga päev',
- 'expired' => 'Aegunud',
- 'extra' => 'Lisa',
- 'extra-stats' => 'Ekstra statistika',
- 'faq' => 'KKK',
- 'files' => 'Failid',
- 'fl_token' => 'Freeleechi token',
- 'fl_tokens' => 'Freeleechi märgid',
- 'for' => 'jaoks',
- 'forum' => 'Foorum',
- 'free' => 'Tasuta',
- 'freeleech_activated' => 'Globaalne Freeleechi režiim on aktiveeritud',
- 'global' => 'Globaalne',
- 'group' => 'Grupp',
- 'groups' => 'Grupid',
- 'hidden' => 'Varjatud',
- 'high-speeds' => 'Suured kiirused',
- 'home' => 'Kodu',
- 'hot' => 'Kuumad!',
- 'hour' => 'Tund',
- 'huge' => 'Suur',
- 'info' => 'Info',
- 'internal' => 'Sisemine',
- 'ip' => 'IP',
- 'is-allowed' => 'on lubatud',
- 'large' => 'Suur',
- 'latest' => 'Viimati',
- 'latest-posts' => 'Viimased postitused',
- 'latest-topics' => 'Viimased teemad',
- 'legal' => 'Legal',
- 'legend' => 'Legend',
- 'lists' => 'Nimekirjad',
- 'lock-account' => 'Lukusta konto',
- 'logout' => 'Logi välja',
- 'members' => 'Liikmed',
- 'message' => 'Sõnum',
- 'minute' => 'Minutit',
- 'moderated-by' => 'Modereeritud poolt',
- 'moderation' => 'Mõõdukus',
- 'moderation-approve' => 'Kinnita',
- 'moderation-postpone' => 'Edasilükkamine',
- 'moderation-reject' => 'Keeldu',
- 'month' => 'Kuu',
- 'months' => 'Kuud',
- 'my' => 'Minu',
- 'name' => 'Nimi',
- 'navigation' => 'Navigeerimine',
- 'new' => 'Uus!',
- 'new-adj' => 'Uus',
- 'news' => 'Uudised',
- 'next' => 'Järgmine',
- 'no' => 'Ei',
- 'no-comments' => 'Kommentaare pole veel',
- 'no-result' => 'Päringu andmebaasis pole tulemust',
- 'notifications' => 'Teated',
- 'older-than' => 'Vanem kui',
- 'oldest' => 'Vanim',
- 'openreg_activated' => 'Avatud registreerimine on aktiveeritud',
- 'order-by' => 'Telli',
- 'other' => 'Muu',
- 'pages' => 'Leheküljed',
- 'password' => 'Parool',
- 'patron' => 'Hakka patrooniks',
- 'pending-torrents' => 'Ootavad torrentid',
- 'personal' => 'Isiklik',
- 'plural-suffix' => 's',
- 'port' => 'Sadam',
- 'position' => 'Asukoht',
- 'posts' => 'Postitused',
- 'powered-by' => 'Powered by UNIT3D',
- 'preview' => 'Eelvaade',
- 'previous' => 'Eelmine',
- 'progress' => 'Edu',
- 'publish' => 'Avalda',
- 'quantity' => 'Kogus',
- 'quick-search' => 'Kiire otsing',
- 'ratio' => 'Suhe',
- 'reason' => 'Põhjus',
- 'remove' => 'Eemalda',
- 'report' => 'Aruanne',
- 'resend' => 'Saada uuesti',
- 'reporter' => 'Reporter',
- 'required' => 'Nõutud',
- 'results' => 'Tulemused',
- 'rss-system' => 'RSS-süsteem',
- 'rules' => 'Reeglid',
- 'save' => 'Salvesta',
- 'search' => 'Otsing',
- 'search-results' => 'Otsingu tulemused',
- 'search-results-desc' => 'Palun vaadake oma tulemusi allpool',
- 'second' => 'Teiseks',
- 'select' => 'Valige',
- 'sort' => 'Sorteeri',
- 'special' => 'Eriline',
- 'staff' => 'Töötajad',
- 'staff-tools' => 'Töötajate tööriistad',
- 'stats' => 'Statistika',
- 'status' => 'Staatus',
- 'sticked' => 'Kleebitud',
- 'submit' => 'Esita',
- 'subscriptions' => 'Tellimused',
- 'teams' => 'Võistkonnad',
- 'terms' => 'Kasutustingimused',
- 'times' => 'Ajad',
- 'title' => 'Pealkiri',
- 'top-bountied' => 'Üles Bountied',
- 'topics' => 'Teemad',
- 'tracker-codes' => 'Jälgija koodid',
- 'type' => 'Tüüp',
- 'type-verb' => 'Tüüp',
- 'types' => 'Tüübid',
- 'genre' => 'Žanr',
- 'genres' => 'Žanrid',
- 'action' => 'Meede',
- 'actions' => 'Meetmed',
- 'unknown' => 'Tundmatu',
+ 'enable' => 'Luba',
+ 'enter' => 'Sisenema',
+ 'error' => 'Viga',
+ 'everyday' => 'Iga päev',
+ 'expired' => 'Aegunud',
+ 'extra' => 'Lisa',
+ 'extra-stats' => 'Ekstra statistika',
+ 'faq' => 'KKK',
+ 'files' => 'Failid',
+ 'fl_token' => 'Freeleechi token',
+ 'fl_tokens' => 'Freeleechi märgid',
+ 'for' => 'jaoks',
+ 'forum' => 'Foorum',
+ 'free' => 'Tasuta',
+ 'freeleech_activated' => 'Globaalne Freeleechi režiim on aktiveeritud',
+ 'global' => 'Globaalne',
+ 'group' => 'Grupp',
+ 'groups' => 'Grupid',
+ 'hidden' => 'Varjatud',
+ 'high-speeds' => 'Suured kiirused',
+ 'home' => 'Kodu',
+ 'hot' => 'Kuumad!',
+ 'hour' => 'Tund',
+ 'huge' => 'Suur',
+ 'info' => 'Info',
+ 'internal' => 'Sisemine',
+ 'ip' => 'IP',
+ 'is-allowed' => 'on lubatud',
+ 'large' => 'Suur',
+ 'latest' => 'Viimati',
+ 'latest-posts' => 'Viimased postitused',
+ 'latest-topics' => 'Viimased teemad',
+ 'legal' => 'Legal',
+ 'legend' => 'Legend',
+ 'lists' => 'Nimekirjad',
+ 'lock-account' => 'Lukusta konto',
+ 'logout' => 'Logi välja',
+ 'members' => 'Liikmed',
+ 'message' => 'Sõnum',
+ 'minute' => 'Minutit',
+ 'moderated-by' => 'Modereeritud poolt',
+ 'moderation' => 'Mõõdukus',
+ 'moderation-approve' => 'Kinnita',
+ 'moderation-postpone' => 'Edasilükkamine',
+ 'moderation-reject' => 'Keeldu',
+ 'month' => 'Kuu',
+ 'months' => 'Kuud',
+ 'my' => 'Minu',
+ 'name' => 'Nimi',
+ 'navigation' => 'Navigeerimine',
+ 'new' => 'Uus!',
+ 'new-adj' => 'Uus',
+ 'news' => 'Uudised',
+ 'next' => 'Järgmine',
+ 'no' => 'Ei',
+ 'no-comments' => 'Kommentaare pole veel',
+ 'no-result' => 'Päringu andmebaasis pole tulemust',
+ 'notifications' => 'Teated',
+ 'older-than' => 'Vanem kui',
+ 'oldest' => 'Vanim',
+ 'openreg_activated' => 'Avatud registreerimine on aktiveeritud',
+ 'order-by' => 'Telli',
+ 'other' => 'Muu',
+ 'pages' => 'Leheküljed',
+ 'password' => 'Parool',
+ 'patron' => 'Hakka patrooniks',
+ 'pending-torrents' => 'Ootavad torrentid',
+ 'personal' => 'Isiklik',
+ 'plural-suffix' => 's',
+ 'port' => 'Sadam',
+ 'position' => 'Asukoht',
+ 'posts' => 'Postitused',
+ 'powered-by' => 'Powered by UNIT3D',
+ 'preview' => 'Eelvaade',
+ 'previous' => 'Eelmine',
+ 'progress' => 'Edu',
+ 'publish' => 'Avalda',
+ 'quantity' => 'Kogus',
+ 'quick-search' => 'Kiire otsing',
+ 'ratio' => 'Suhe',
+ 'reason' => 'Põhjus',
+ 'remove' => 'Eemalda',
+ 'report' => 'Aruanne',
+ 'resend' => 'Saada uuesti',
+ 'reporter' => 'Reporter',
+ 'required' => 'Nõutud',
+ 'results' => 'Tulemused',
+ 'rss-system' => 'RSS-süsteem',
+ 'rules' => 'Reeglid',
+ 'save' => 'Salvesta',
+ 'search' => 'Otsing',
+ 'search-results' => 'Otsingu tulemused',
+ 'search-results-desc' => 'Palun vaadake oma tulemusi allpool',
+ 'second' => 'Teiseks',
+ 'select' => 'Valige',
+ 'sort' => 'Sorteeri',
+ 'special' => 'Eriline',
+ 'staff' => 'Töötajad',
+ 'staff-tools' => 'Töötajate tööriistad',
+ 'stats' => 'Statistika',
+ 'status' => 'Staatus',
+ 'sticked' => 'Kleebitud',
+ 'submit' => 'Esita',
+ 'subscriptions' => 'Tellimused',
+ 'teams' => 'Võistkonnad',
+ 'terms' => 'Kasutustingimused',
+ 'times' => 'Ajad',
+ 'title' => 'Pealkiri',
+ 'top-bountied' => 'Üles Bountied',
+ 'topics' => 'Teemad',
+ 'tracker-codes' => 'Jälgija koodid',
+ 'type' => 'Tüüp',
+ 'type-verb' => 'Tüüp',
+ 'types' => 'Tüübid',
+ 'genre' => 'Žanr',
+ 'genres' => 'Žanrid',
+ 'action' => 'Meede',
+ 'actions' => 'Meetmed',
+ 'unknown' => 'Tundmatu',
'unlocked-achievement' => 'Te avasite: saavutuse saavutamise',
- 'upload' => 'Laadi üles',
- 'upload-guide' => 'Üleslaadimise juhend',
- 'user' => 'Kasutaja',
- 'username' => 'Kasutajanimi',
- 'users' => 'Kasutajad',
- 'view' => 'Vaade',
- 'view-all' => 'Vaata kõiki',
- 'warnings' => 'Hoiatused',
- 'year' => 'Aasta',
- 'yes' => 'Jah',
- 'your' => 'Teie',
- 'your-comment' => 'Sinu kommentaar',
+ 'upload' => 'Laadi üles',
+ 'upload-guide' => 'Üleslaadimise juhend',
+ 'user' => 'Kasutaja',
+ 'username' => 'Kasutajanimi',
+ 'users' => 'Kasutajad',
+ 'view' => 'Vaade',
+ 'view-all' => 'Vaata kõiki',
+ 'warnings' => 'Hoiatused',
+ 'year' => 'Aasta',
+ 'yes' => 'Jah',
+ 'your' => 'Teie',
+ 'your-comment' => 'Sinu kommentaar',
];
diff --git a/lang/et/email.php b/lang/et/email.php
index 509ca6b74..c88b2cfb9 100644
--- a/lang/et/email.php
+++ b/lang/et/email.php
@@ -12,46 +12,46 @@
*/
return [
- 'activate-account' => 'Aktiveeri konto',
- 'ban-reason' => 'Põhjus',
- 'banned-footer' => 'See, mida sa reeglite mittejärgimise eest saad',
- 'banned-header' => 'Te olete keelatud',
- 'bug-description' => 'Probleem',
- 'bug-footer' => 'Fix see sitt',
- 'bug-header' => 'Uus veateade',
- 'bug-priority' => 'Prioriteet',
- 'bug-title' => 'Vea pealkiri',
- 'contact-header' => 'Uus kontaktisik',
- 'contact-message' => 'Sõnum',
- 'contact-name' => 'Nimi',
+ 'activate-account' => 'Aktiveeri konto',
+ 'ban-reason' => 'Põhjus',
+ 'banned-footer' => 'See, mida sa reeglite mittejärgimise eest saad',
+ 'banned-header' => 'Te olete keelatud',
+ 'bug-description' => 'Probleem',
+ 'bug-footer' => 'Fix see sitt',
+ 'bug-header' => 'Uus veateade',
+ 'bug-priority' => 'Prioriteet',
+ 'bug-title' => 'Vea pealkiri',
+ 'contact-header' => 'Uus kontaktisik',
+ 'contact-message' => 'Sõnum',
+ 'contact-name' => 'Nimi',
'fail-login-greeting' => 'Konto sisselogimine ebaõnnestus!',
- 'fail-login-line1' => 'Teie kontole tuvastati ebaõnnestunud sisselogimine.',
- 'fail-login-line2' => 'See päring pärineb: ip (: host) aadressil: time',
- 'fail-login-subject' => 'Sisselogimise ebaõnnestus',
- 'footer-link' => 'Kui teil on probleeme klõpsuga nupule: actionText, kopeerige ja kleepige allolev URL oma veebibrauserisse:',
- 'invite-header' => 'Kutse',
- 'invite-invited' => 'Teid on kutsutud',
- 'invite-message' => 'Sõnum',
- 'invite-signup' => 'Registreeru nüüd',
- 'newreply-header' => 'Teie teemal on uus vastus',
- 'newreply-message' => 'Sõnum',
- 'newreply-replied' => 'Vastas teie teemale',
- 'newreply-view' => 'Vaata seda nüüd',
- 'no-email-found' => 'Me ei leidnud seda meili meie süsteemis!',
- 'register-code' => 'Konto aktiveerimise lõpetamiseks klõpsake allolevat nuppu',
- 'register-footer' => 'Kui ülaltoodud nupp ei tööta, kopeerige ja kleepige URL oma brauserite aadressiribale',
- 'register-header' => 'Tere! Täname teid sisselogimise eest',
- 'report-comment' => 'Kommentaar',
- 'report-email' => 'E-post',
- 'report-header' => 'Tere Admin, link on teatatud',
- 'report-link' => 'Link',
- 'report-link-hash' => 'Tegelik link',
- 'thanks' => 'Täname, et kasutasite',
- 'unban-footer' => 'Tere tulemast tagasi!',
- 'unban-header' => 'Te olete olnud unbanned',
- 'unban-reason' => 'Põhjus',
- 'username-reminder' => 'Saatsite hiljuti meile oma kasutajanime taotluse meie rakenduses. Teie kasutajanimi on',
- 'username-sent' => 'Teie kasutajanimi on saadetud teie e-posti aadressile!',
- 'disabled-header' => 'Teie konto on keelatud',
- 'pruned-header' => 'Teie konto on kärbitud',
+ 'fail-login-line1' => 'Teie kontole tuvastati ebaõnnestunud sisselogimine.',
+ 'fail-login-line2' => 'See päring pärineb: ip (: host) aadressil: time',
+ 'fail-login-subject' => 'Sisselogimise ebaõnnestus',
+ 'footer-link' => 'Kui teil on probleeme klõpsuga nupule: actionText, kopeerige ja kleepige allolev URL oma veebibrauserisse:',
+ 'invite-header' => 'Kutse',
+ 'invite-invited' => 'Teid on kutsutud',
+ 'invite-message' => 'Sõnum',
+ 'invite-signup' => 'Registreeru nüüd',
+ 'newreply-header' => 'Teie teemal on uus vastus',
+ 'newreply-message' => 'Sõnum',
+ 'newreply-replied' => 'Vastas teie teemale',
+ 'newreply-view' => 'Vaata seda nüüd',
+ 'no-email-found' => 'Me ei leidnud seda meili meie süsteemis!',
+ 'register-code' => 'Konto aktiveerimise lõpetamiseks klõpsake allolevat nuppu',
+ 'register-footer' => 'Kui ülaltoodud nupp ei tööta, kopeerige ja kleepige URL oma brauserite aadressiribale',
+ 'register-header' => 'Tere! Täname teid sisselogimise eest',
+ 'report-comment' => 'Kommentaar',
+ 'report-email' => 'E-post',
+ 'report-header' => 'Tere Admin, link on teatatud',
+ 'report-link' => 'Link',
+ 'report-link-hash' => 'Tegelik link',
+ 'thanks' => 'Täname, et kasutasite',
+ 'unban-footer' => 'Tere tulemast tagasi!',
+ 'unban-header' => 'Te olete olnud unbanned',
+ 'unban-reason' => 'Põhjus',
+ 'username-reminder' => 'Saatsite hiljuti meile oma kasutajanime taotluse meie rakenduses. Teie kasutajanimi on',
+ 'username-sent' => 'Teie kasutajanimi on saadetud teie e-posti aadressile!',
+ 'disabled-header' => 'Teie konto on keelatud',
+ 'pruned-header' => 'Teie konto on kärbitud',
];
diff --git a/lang/et/forum.php b/lang/et/forum.php
index 9116adec0..de2f1b7e6 100644
--- a/lang/et/forum.php
+++ b/lang/et/forum.php
@@ -12,63 +12,63 @@
*/
return [
- 'action' => 'Meede',
- 'activity' => 'Tegevus',
- 'approved' => 'Kinnitatud',
- 'author' => 'Autor',
- 'bug' => 'Viga',
- 'category-quick-search' => 'Teema nime kiirotsing (kategoorias)',
- 'close-topic' => 'Lukusta teema',
- 'closed' => 'Suletud',
- 'create-new-topic' => 'Loo uus teema',
- 'created' => 'Loodud',
- 'current' => 'Praegune',
- 'delete-topic' => 'Kustuta see teema',
- 'denied' => 'Keeldunud',
- 'dislike-post' => 'Ei meeldi see postitus',
- 'display-forum' => 'Kuva teemasid',
- 'edit-post' => 'Redigeeri postitust',
- 'edit-topic' => 'Teema muutmine',
- 'forum' => 'Foorum',
- 'forums' => 'Foorumid',
- 'implemented' => 'Rakendatud',
- 'in' => 'Sisse',
- 'invalid' => 'Kehtetu',
- 'label' => 'Silt',
- 'label-system' => 'Märgistussüsteem',
- 'last-message' => 'Viimane sõnum',
- 'last-post-info' => 'Viimase postituse info',
- 'latest' => 'Viimati',
- 'like-post' => 'Nagu see postitus',
- 'meta-category' => 'Kategoorias olevate foorumite nimekiri',
- 'moderation' => 'Mõõdukus',
- 'name' => 'Nimi',
- 'not-connected' => 'Sa pead olema ühendatud',
- 'not-subscribed' => 'Ei ole tellitud',
- 'open' => 'Ava',
- 'open-topic' => 'Ava see teema',
- 'permalink' => 'Permalink',
- 'pin' => 'Pin',
- 'post' => 'Postitus',
- 'post-quick-search' => 'Asukoha kiire otsing',
- 'posts' => 'Postitused',
- 'quote' => 'Tsitaat',
- 'read-topic' => 'Loe teema',
- 'replies' => 'Vastused',
- 'send-new-topic' => 'Salvesta see teema',
- 'solved' => 'Lahendatud',
- 'state' => 'Riik',
- 'stats' => 'Statistika',
- 'subscribed' => 'Tellitud',
+ 'action' => 'Meede',
+ 'activity' => 'Tegevus',
+ 'approved' => 'Kinnitatud',
+ 'author' => 'Autor',
+ 'bug' => 'Viga',
+ 'category-quick-search' => 'Teema nime kiirotsing (kategoorias)',
+ 'close-topic' => 'Lukusta teema',
+ 'closed' => 'Suletud',
+ 'create-new-topic' => 'Loo uus teema',
+ 'created' => 'Loodud',
+ 'current' => 'Praegune',
+ 'delete-topic' => 'Kustuta see teema',
+ 'denied' => 'Keeldunud',
+ 'dislike-post' => 'Ei meeldi see postitus',
+ 'display-forum' => 'Kuva teemasid',
+ 'edit-post' => 'Redigeeri postitust',
+ 'edit-topic' => 'Teema muutmine',
+ 'forum' => 'Foorum',
+ 'forums' => 'Foorumid',
+ 'implemented' => 'Rakendatud',
+ 'in' => 'Sisse',
+ 'invalid' => 'Kehtetu',
+ 'label' => 'Silt',
+ 'label-system' => 'Märgistussüsteem',
+ 'last-message' => 'Viimane sõnum',
+ 'last-post-info' => 'Viimase postituse info',
+ 'latest' => 'Viimati',
+ 'like-post' => 'Nagu see postitus',
+ 'meta-category' => 'Kategoorias olevate foorumite nimekiri',
+ 'moderation' => 'Mõõdukus',
+ 'name' => 'Nimi',
+ 'not-connected' => 'Sa pead olema ühendatud',
+ 'not-subscribed' => 'Ei ole tellitud',
+ 'open' => 'Ava',
+ 'open-topic' => 'Ava see teema',
+ 'permalink' => 'Permalink',
+ 'pin' => 'Pin',
+ 'post' => 'Postitus',
+ 'post-quick-search' => 'Asukoha kiire otsing',
+ 'posts' => 'Postitused',
+ 'quote' => 'Tsitaat',
+ 'read-topic' => 'Loe teema',
+ 'replies' => 'Vastused',
+ 'send-new-topic' => 'Salvesta see teema',
+ 'solved' => 'Lahendatud',
+ 'state' => 'Riik',
+ 'stats' => 'Statistika',
+ 'subscribed' => 'Tellitud',
'subscription-quick-search' => 'Teema nime kiire otsing (tellimustes)',
- 'suggestion' => 'Ettepanek',
- 'topic' => 'Teema',
- 'topic-closed' => 'See teema on suletud',
- 'topic-name' => 'Teema nimi',
- 'topic-quick-search' => 'Teema nimi kiire otsing',
- 'topic-title' => 'Selle teema pealkiri',
- 'topics' => 'Teemad',
- 'unpin' => 'Katkesta',
- 'view-all' => 'Vaata kõiki teemasid',
- 'views' => 'Vaated',
+ 'suggestion' => 'Ettepanek',
+ 'topic' => 'Teema',
+ 'topic-closed' => 'See teema on suletud',
+ 'topic-name' => 'Teema nimi',
+ 'topic-quick-search' => 'Teema nimi kiire otsing',
+ 'topic-title' => 'Selle teema pealkiri',
+ 'topics' => 'Teemad',
+ 'unpin' => 'Katkesta',
+ 'view-all' => 'Vaata kõiki teemasid',
+ 'views' => 'Vaated',
];
diff --git a/lang/et/graveyard.php b/lang/et/graveyard.php
index 6fff81eb1..d1873f408 100644
--- a/lang/et/graveyard.php
+++ b/lang/et/graveyard.php
@@ -12,15 +12,15 @@
*/
return [
- 'dead' => 'Surnud',
- 'graveyard' => 'Graveyard',
- 'guidelines' => 'Suunised',
+ 'dead' => 'Surnud',
+ 'graveyard' => 'Graveyard',
+ 'guidelines' => 'Suunised',
'guidelines-content' => '1) Te ei saa oma üleslaadimisi üles tõsta.
2) Ära taaskäivita midagi, mida ka ei saa teha.',
- 'howto' => 'Siin on reegel',
- 'howto-desc1' => 'Sa pead külvama : eduka ressursi jaoks 30 päeva . Sel juhul, kui teie praegune seemneaeg on',
- 'howto-desc2' => 'Teid premeeritakse',
- 'howto-hits' => 'Hits',
- 'pending' => 'Ootel',
- 'resurrect' => 'Taastage',
- 'reward' => 'Freeleechi märgid',
+ 'howto' => 'Siin on reegel',
+ 'howto-desc1' => 'Sa pead külvama : eduka ressursi jaoks 30 päeva . Sel juhul, kui teie praegune seemneaeg on',
+ 'howto-desc2' => 'Teid premeeritakse',
+ 'howto-hits' => 'Hits',
+ 'pending' => 'Ootel',
+ 'resurrect' => 'Taastage',
+ 'reward' => 'Freeleechi märgid',
];
diff --git a/lang/et/notification.php b/lang/et/notification.php
index 0a113bc67..95882fe27 100644
--- a/lang/et/notification.php
+++ b/lang/et/notification.php
@@ -12,14 +12,14 @@
*/
return [
- 'date' => 'Kuupäev',
- 'delete' => 'Kustuta',
- 'delete-all' => 'Kustuta kõik teated',
- 'mark-all-read' => 'Märgi kõik loetuks',
- 'mark-read' => 'Märgi loetuks',
- 'message' => 'Sõnum',
+ 'date' => 'Kuupäev',
+ 'delete' => 'Kustuta',
+ 'delete-all' => 'Kustuta kõik teated',
+ 'mark-all-read' => 'Märgi kõik loetuks',
+ 'mark-read' => 'Märgi loetuks',
+ 'message' => 'Sõnum',
'no-notifications' => 'Ei leitud ühtegi teadet',
- 'notifications' => 'Teated',
- 'read' => 'Loe',
- 'title' => 'Pealkiri',
+ 'notifications' => 'Teated',
+ 'read' => 'Loe',
+ 'title' => 'Pealkiri',
];
diff --git a/lang/et/page.php b/lang/et/page.php
index dbfaa6e39..3f1f39538 100644
--- a/lang/et/page.php
+++ b/lang/et/page.php
@@ -12,28 +12,28 @@
*/
return [
- 'aboutus-advantage' => 'Eelis',
- 'aboutus-advantage1' => 'Meil on kogenud liikmeid ja töötajaid, kes on hästi kursis HD-video / audio ja tehnilise toe maailmas.',
- 'aboutus-advantage2' => 'Koos ulatusliku kirega filmide ja telesaadete vastu pakume ka üks parimaid valikuid, mida kõige enam ei kasuta - FANRES! SUUR KÜSIMUS meie sisutootjatele.',
- 'aboutus-advantage3' => 'Kuigi me aktsepteerime annetusi, mis hoiavad saidi töökorras, ei toimu kohapeal ühtegi petturit ega bännerit. Meilt pole kerjamine.',
- 'aboutus-advantage4' => 'Meie kogukond on oma varasest lapsepõlvest teine. Meie töötajate ja kasutajate vahel olid alati abiks. Olid kirglikud, et veenduda, et teie kogemus on: pealkiri pole midagi hämmastavat.',
- 'aboutus-advantage5' => 'Meie teenust kasutab iga päev paljud inimesed üle maailma. Tõestasime, et me hoolime oma koodibaasi funktsionaalsusest ja turvalisusest ning seda saab usaldada ja tugineda. Meie arendajad töötavad iga päev, et pakkuda tõeliselt nex-gen-koodi.',
- 'aboutus-header' => 'Tere',
- 'aboutus-rules' => 'Mida me vajame sinult',
- 'aboutus-rules1' => 'Olla kogukonna aktiivne liige! See tähendab, et liituge vestlustega produktiivselt, lisage kinnitatud sisu ja aidake teistel kasutajatel, kui teil on võimalik.',
- 'aboutus-rules2' => 'Eeskirjade täielik lugemine ja nende austamine!',
- 'aboutus-rules3' => 'Tehke ettepanekuid! Me püüame teha: pealkiri parem iga päev. Me ütleme, et iga ettepanekut kasutatakse, kuid see ei tee kunagi uusi ideid.',
- 'aboutus-welcome' => 'Räägime',
- 'aboutus-welcome-desc' => ': title on kogukonna poolt loodud film / TV / FANRES andmebaas. Iga hämmastav kogukond on lisanud kõik andmed alates 2017. aastast: pealkirjad keskenduvad HD-sisule, proaktiivsele kasutajakonnale, fantastilisele / turvalisele koodijaamale ja abivalmis ja sõbralikule meeskonnale.',
- 'blacklist-browsers' => 'Brauserid',
- 'blacklist-btclient' => 'BitTorrent klient',
- 'blacklist-clients' => 'Kliendid',
- 'blacklist-desc' => 'Järgmised brauserid ja bittorrent-kliendid on mustas nimekirjas / keelatud',
- 'blacklist-webbrowser' => 'Veebibrauseris',
+ 'aboutus-advantage' => 'Eelis',
+ 'aboutus-advantage1' => 'Meil on kogenud liikmeid ja töötajaid, kes on hästi kursis HD-video / audio ja tehnilise toe maailmas.',
+ 'aboutus-advantage2' => 'Koos ulatusliku kirega filmide ja telesaadete vastu pakume ka üks parimaid valikuid, mida kõige enam ei kasuta - FANRES! SUUR KÜSIMUS meie sisutootjatele.',
+ 'aboutus-advantage3' => 'Kuigi me aktsepteerime annetusi, mis hoiavad saidi töökorras, ei toimu kohapeal ühtegi petturit ega bännerit. Meilt pole kerjamine.',
+ 'aboutus-advantage4' => 'Meie kogukond on oma varasest lapsepõlvest teine. Meie töötajate ja kasutajate vahel olid alati abiks. Olid kirglikud, et veenduda, et teie kogemus on: pealkiri pole midagi hämmastavat.',
+ 'aboutus-advantage5' => 'Meie teenust kasutab iga päev paljud inimesed üle maailma. Tõestasime, et me hoolime oma koodibaasi funktsionaalsusest ja turvalisusest ning seda saab usaldada ja tugineda. Meie arendajad töötavad iga päev, et pakkuda tõeliselt nex-gen-koodi.',
+ 'aboutus-header' => 'Tere',
+ 'aboutus-rules' => 'Mida me vajame sinult',
+ 'aboutus-rules1' => 'Olla kogukonna aktiivne liige! See tähendab, et liituge vestlustega produktiivselt, lisage kinnitatud sisu ja aidake teistel kasutajatel, kui teil on võimalik.',
+ 'aboutus-rules2' => 'Eeskirjade täielik lugemine ja nende austamine!',
+ 'aboutus-rules3' => 'Tehke ettepanekuid! Me püüame teha: pealkiri parem iga päev. Me ütleme, et iga ettepanekut kasutatakse, kuid see ei tee kunagi uusi ideid.',
+ 'aboutus-welcome' => 'Räägime',
+ 'aboutus-welcome-desc' => ': title on kogukonna poolt loodud film / TV / FANRES andmebaas. Iga hämmastav kogukond on lisanud kõik andmed alates 2017. aastast: pealkirjad keskenduvad HD-sisule, proaktiivsele kasutajakonnale, fantastilisele / turvalisele koodijaamale ja abivalmis ja sõbralikule meeskonnale.',
+ 'blacklist-browsers' => 'Brauserid',
+ 'blacklist-btclient' => 'BitTorrent klient',
+ 'blacklist-clients' => 'Kliendid',
+ 'blacklist-desc' => 'Järgmised brauserid ja bittorrent-kliendid on mustas nimekirjas / keelatud',
+ 'blacklist-webbrowser' => 'Veebibrauseris',
'blacklist-emaildomain' => 'Blokeeritud domeen',
- 'email-blacklist-desc' => 'Järgmised e-posti domeenid blokeeritakse kasutamisest. Te ei saa registreerida ega saata kutset järgmisele.',
- 'email-whitelist-desc' => 'Järgmised e-posti domeenid on ainsad kasutatavad e-posti domeenid. Sa võid registreerida või saata kutse järgmiste abil.',
- 'staff-group' => 'Grupp',
- 'staff-title' => 'Pealkiri',
+ 'email-blacklist-desc' => 'Järgmised e-posti domeenid blokeeritakse kasutamisest. Te ei saa registreerida ega saata kutset järgmisele.',
+ 'email-whitelist-desc' => 'Järgmised e-posti domeenid on ainsad kasutatavad e-posti domeenid. Sa võid registreerida või saata kutse järgmiste abil.',
+ 'staff-group' => 'Grupp',
+ 'staff-title' => 'Pealkiri',
'whitelist-emaildomain' => 'Usaldusväärne domeen',
];
diff --git a/lang/et/pagination.php b/lang/et/pagination.php
index 345d3ac2a..962699e28 100644
--- a/lang/et/pagination.php
+++ b/lang/et/pagination.php
@@ -24,5 +24,5 @@ return [
*/
'previous' => '« Eelmine',
- 'next' => 'Järgmine »',
+ 'next' => 'Järgmine »',
];
diff --git a/lang/et/passwords.php b/lang/et/passwords.php
index 1f1e76083..c5f6f8ab2 100644
--- a/lang/et/passwords.php
+++ b/lang/et/passwords.php
@@ -24,8 +24,8 @@ return [
*/
'password' => 'Parool peab olema vähemalt 6 tähemärki pikk ja vastama kinnitusele.',
- 'reset' => 'Sinu parool on lähtestatud!',
- 'sent' => 'Oleme saatnud sulle e-postiga parooli lähtestamise lingi!',
- 'token' => 'See parooli lähtestamise tunnus on vigane.',
- 'user' => 'Ei suutnud leida sellise e-posti aadressiga kasutajat.',
+ 'reset' => 'Sinu parool on lähtestatud!',
+ 'sent' => 'Oleme saatnud sulle e-postiga parooli lähtestamise lingi!',
+ 'token' => 'See parooli lähtestamise tunnus on vigane.',
+ 'user' => 'Ei suutnud leida sellise e-posti aadressiga kasutajat.',
];
diff --git a/lang/et/pm.php b/lang/et/pm.php
index 9c2615d29..45b43541d 100644
--- a/lang/et/pm.php
+++ b/lang/et/pm.php
@@ -12,28 +12,28 @@
*/
return [
- 'create' => 'Loo',
- 'delete' => 'Kustuta',
+ 'create' => 'Loo',
+ 'delete' => 'Kustuta',
'enter-subject' => 'Sisestage teema',
- 'from' => 'Alates',
- 'inbox' => 'Saabunud',
+ 'from' => 'Alates',
+ 'inbox' => 'Saabunud',
'mark-all-read' => 'Märkige kõik sõnumid loetuks',
- 'message' => 'Sõnum',
- 'messages' => 'Sõnumid',
- 'new' => 'Uus sõnum',
- 'outbox' => 'Saatmiseks',
- 'private' => 'Eraldi',
- 'read' => 'Loe',
- 'received-at' => 'Saadud At',
- 'refresh' => 'Värskenda',
- 'reply' => 'Vastus',
- 'search' => 'Otsi teema järgi',
- 'select' => 'Valige kasutaja',
- 'send' => 'Saada PM',
- 'send-to' => 'Saada PM',
- 'sent' => 'Saadetud',
- 'sent-at' => 'Saadetud',
- 'subject' => 'Teema',
- 'to' => 'Et',
- 'unread' => 'Lugemata',
+ 'message' => 'Sõnum',
+ 'messages' => 'Sõnumid',
+ 'new' => 'Uus sõnum',
+ 'outbox' => 'Saatmiseks',
+ 'private' => 'Eraldi',
+ 'read' => 'Loe',
+ 'received-at' => 'Saadud At',
+ 'refresh' => 'Värskenda',
+ 'reply' => 'Vastus',
+ 'search' => 'Otsi teema järgi',
+ 'select' => 'Valige kasutaja',
+ 'send' => 'Saada PM',
+ 'send-to' => 'Saada PM',
+ 'sent' => 'Saadetud',
+ 'sent-at' => 'Saadetud',
+ 'subject' => 'Teema',
+ 'to' => 'Et',
+ 'unread' => 'Lugemata',
];
diff --git a/lang/et/poll.php b/lang/et/poll.php
index e1e0a3675..d553c399c 100644
--- a/lang/et/poll.php
+++ b/lang/et/poll.php
@@ -12,18 +12,18 @@
*/
return [
- 'add-option' => 'Lisa valik',
- 'create-poll' => 'Loo küsitlus',
- 'current' => 'Praegune küsitlus',
- 'delete-option' => 'Kustuta valik',
+ 'add-option' => 'Lisa valik',
+ 'create-poll' => 'Loo küsitlus',
+ 'current' => 'Praegune küsitlus',
+ 'delete-option' => 'Kustuta valik',
'multiple-choice' => 'See on mitme valiku küsitlus. Valige nii palju vastuseid kui soovite.',
- 'option' => 'Võimalus',
- 'poll' => 'Küsitlus',
- 'polls' => 'Küsitlused',
- 'results' => 'Küsitluse tulemused',
- 'title' => 'Pealkiri',
- 'total' => 'Hääle kokku',
- 'vote' => 'Hääleta',
- 'vote-now' => 'Hangi oma hääl nüüd!',
- 'votes' => 'Hääled',
+ 'option' => 'Võimalus',
+ 'poll' => 'Küsitlus',
+ 'polls' => 'Küsitlused',
+ 'results' => 'Küsitluse tulemused',
+ 'title' => 'Pealkiri',
+ 'total' => 'Hääle kokku',
+ 'vote' => 'Hääleta',
+ 'vote-now' => 'Hangi oma hääl nüüd!',
+ 'votes' => 'Hääled',
];
diff --git a/lang/et/request.php b/lang/et/request.php
index 22505deaa..83fa5d2df 100644
--- a/lang/et/request.php
+++ b/lang/et/request.php
@@ -12,67 +12,67 @@
*/
return [
- 'add-request' => 'Lisa taotlus',
- 'age' => 'Vanus',
- 'all-requests' => 'Kõik taotlused',
- 'approve' => 'Kinnita',
- 'bounty' => 'Bounty',
- 'bounty-claimed' => 'Bounty väitis',
- 'bounty-unclaimed' => 'Bounty ei palunud',
- 'category' => 'Kategooria',
- 'claim' => 'Nõue',
- 'claim-anon-choose' => 'Palun vali targalt',
- 'claim-as-anon' => 'Kas soovite seda anonüümselt nõuda',
- 'claim-now' => 'Nõue nüüd',
- 'claimed' => 'Nõutud',
- 'current' => 'Praegune',
- 'delete' => 'Kustuta see päring',
+ 'add-request' => 'Lisa taotlus',
+ 'age' => 'Vanus',
+ 'all-requests' => 'Kõik taotlused',
+ 'approve' => 'Kinnita',
+ 'bounty' => 'Bounty',
+ 'bounty-claimed' => 'Bounty väitis',
+ 'bounty-unclaimed' => 'Bounty ei palunud',
+ 'category' => 'Kategooria',
+ 'claim' => 'Nõue',
+ 'claim-anon-choose' => 'Palun vali targalt',
+ 'claim-as-anon' => 'Kas soovite seda anonüümselt nõuda',
+ 'claim-now' => 'Nõue nüüd',
+ 'claimed' => 'Nõutud',
+ 'current' => 'Praegune',
+ 'delete' => 'Kustuta see päring',
'delete-confirmation' => 'Kas soovite kindlasti selle taotluse kustutada',
- 'delete-filled' => 'Seda taotlust saab kustutada ainult siis, kui seda pole täidetud',
- 'description' => 'Kirjeldus',
- 'dont-have-bps' => 'Sul ei ole piisavalt boonust',
- 'edit-request' => 'Muuda taotlust',
- 'enter-bp' => 'Sisestage boonuspunktid (vähemalt 100)',
- 'enter-hash' => 'Sisestage üleslaaditud Torrenti info-info',
- 'fill' => 'Täitke',
- 'fill-request' => 'Täitke see taotlus',
- 'filled' => 'Täidetud',
- 'filled-by' => 'Täidis',
- 'for' => 'jaoks',
- 'fulfill' => 'Täida',
- 'last-vote' => 'Viimane hääletus',
- 'my-requests' => 'Minu taotlused',
- 'no' => 'Ei,',
- 'no-imdb-id' => 'Kõik taotlused peavad sisaldama IMDB numbrit',
- 'no-privileges' => 'Viga: teie päringu õigused on keelatud',
- 'no-privileges-desc' => 'Kui arvate, et see on viga, võtke palun ühendust personaliga',
- 'no-refunds' => 'BONi vahetused loomise, täitmise ja boonuste kohta on lõplikud!
MITTE TAGASIMAKSED!',
- 'pending' => 'Ootel',
- 'reason' => 'Põhjus',
- 'reject' => 'Keeldu',
- 'report' => 'Aruande taotlus',
- 'request' => 'Taotlus',
- 'request-details' => 'Küsi üksikasju',
- 'requested-by' => 'Nõutud',
- 'requests' => 'Taotlused',
- 'required' => 'Nõutud',
- 'reset' => 'Lähtesta',
- 'reset-confirmation' => 'Kas olete kindel, et soovite selle päringu taastada',
- 'reset-request' => 'Taotluse lähtestamine',
- 'reward' => 'Auhind',
- 'reward-desc' => 'Kui palju boonuspunkti soovid premeerida? Vähemalt 100 BP',
- 'reward-from' => 'Alates',
- 'title' => 'Pealkiri',
- 'torrent-hash' => 'Torrent Hash',
- 'total-bounty' => 'Summaarne summa',
- 'type' => 'Tüüp',
- 'unclaim' => 'Taotluse rahuldamata jätmine',
- 'unfilled' => 'Täitmata',
- 'view-filled' => 'Kuva täidetud',
- 'view-unfilled' => 'Vaade on täitmata',
- 'vote' => 'Hääleta',
- 'vote-that' => 'Hääleta see taotlus',
- 'voters' => 'Valijad',
- 'votes' => 'Hääled',
- 'yes' => 'Jah',
+ 'delete-filled' => 'Seda taotlust saab kustutada ainult siis, kui seda pole täidetud',
+ 'description' => 'Kirjeldus',
+ 'dont-have-bps' => 'Sul ei ole piisavalt boonust',
+ 'edit-request' => 'Muuda taotlust',
+ 'enter-bp' => 'Sisestage boonuspunktid (vähemalt 100)',
+ 'enter-hash' => 'Sisestage üleslaaditud Torrenti info-info',
+ 'fill' => 'Täitke',
+ 'fill-request' => 'Täitke see taotlus',
+ 'filled' => 'Täidetud',
+ 'filled-by' => 'Täidis',
+ 'for' => 'jaoks',
+ 'fulfill' => 'Täida',
+ 'last-vote' => 'Viimane hääletus',
+ 'my-requests' => 'Minu taotlused',
+ 'no' => 'Ei,',
+ 'no-imdb-id' => 'Kõik taotlused peavad sisaldama IMDB numbrit',
+ 'no-privileges' => 'Viga: teie päringu õigused on keelatud',
+ 'no-privileges-desc' => 'Kui arvate, et see on viga, võtke palun ühendust personaliga',
+ 'no-refunds' => 'BONi vahetused loomise, täitmise ja boonuste kohta on lõplikud!
MITTE TAGASIMAKSED!',
+ 'pending' => 'Ootel',
+ 'reason' => 'Põhjus',
+ 'reject' => 'Keeldu',
+ 'report' => 'Aruande taotlus',
+ 'request' => 'Taotlus',
+ 'request-details' => 'Küsi üksikasju',
+ 'requested-by' => 'Nõutud',
+ 'requests' => 'Taotlused',
+ 'required' => 'Nõutud',
+ 'reset' => 'Lähtesta',
+ 'reset-confirmation' => 'Kas olete kindel, et soovite selle päringu taastada',
+ 'reset-request' => 'Taotluse lähtestamine',
+ 'reward' => 'Auhind',
+ 'reward-desc' => 'Kui palju boonuspunkti soovid premeerida? Vähemalt 100 BP',
+ 'reward-from' => 'Alates',
+ 'title' => 'Pealkiri',
+ 'torrent-hash' => 'Torrent Hash',
+ 'total-bounty' => 'Summaarne summa',
+ 'type' => 'Tüüp',
+ 'unclaim' => 'Taotluse rahuldamata jätmine',
+ 'unfilled' => 'Täitmata',
+ 'view-filled' => 'Kuva täidetud',
+ 'view-unfilled' => 'Vaade on täitmata',
+ 'vote' => 'Hääleta',
+ 'vote-that' => 'Hääleta see taotlus',
+ 'voters' => 'Valijad',
+ 'votes' => 'Hääled',
+ 'yes' => 'Jah',
];
diff --git a/lang/et/rss.php b/lang/et/rss.php
index 285f9f3f4..bc23fea59 100644
--- a/lang/et/rss.php
+++ b/lang/et/rss.php
@@ -12,19 +12,19 @@
*/
return [
- 'create' => 'Loo',
+ 'create' => 'Loo',
'create-private-feed' => 'Loo privaatne RSS-voog',
- 'create-public-feed' => 'Loo avalik RSS-kanal',
- 'delete' => 'Kustuta',
- 'edit' => 'Muuda',
- 'edit-private-feed' => 'Muuda privaatset RSS-voogu',
- 'edit-public-feed' => 'Avaliku RSS-voo redigeerimine',
- 'feed' => 'Sööt',
- 'feeds' => 'Söödad',
- 'name' => 'Nimi',
- 'public' => 'Avalik',
- 'private' => 'Eraldi',
- 'rss' => 'RSS',
- 'rss-feed' => 'RSS-voog',
- 'type' => 'Tüüp',
+ 'create-public-feed' => 'Loo avalik RSS-kanal',
+ 'delete' => 'Kustuta',
+ 'edit' => 'Muuda',
+ 'edit-private-feed' => 'Muuda privaatset RSS-voogu',
+ 'edit-public-feed' => 'Avaliku RSS-voo redigeerimine',
+ 'feed' => 'Sööt',
+ 'feeds' => 'Söödad',
+ 'name' => 'Nimi',
+ 'public' => 'Avalik',
+ 'private' => 'Eraldi',
+ 'rss' => 'RSS',
+ 'rss-feed' => 'RSS-voog',
+ 'type' => 'Tüüp',
];
diff --git a/lang/et/staff.php b/lang/et/staff.php
index b188e86c8..c3f8df7a0 100644
--- a/lang/et/staff.php
+++ b/lang/et/staff.php
@@ -12,48 +12,48 @@
*/
return [
- 'audit-log' => 'Aktiivsus Logi',
- 'articles' => 'Artiklid',
- 'applications' => 'Rakendused',
- 'bans-log' => 'Keelud',
- 'blocks' => 'Blokid',
- 'bot' => 'Bot',
- 'bots' => 'Botid',
- 'chat' => 'Vestlus',
- 'config-manager' => 'Config Manager',
- 'dashboard' => 'Armatuurlaud',
- 'failed-login-log' => 'Sisselogimise logi ebaõnnestus',
- 'flush-ghost-peers' => 'Pese Ghost Peers',
- 'forums' => 'Foorumid',
- 'frontend' => 'Esiots',
- 'general-tools' => 'Üldised tööriistad',
- 'groups' => 'Grupid',
- 'invites-log' => 'Kutsete logi',
- 'laravel-log' => 'Laravel Logi',
- 'links' => 'Lingid',
- 'logs' => 'Logid',
- 'mass-pm' => 'Mass PM',
- 'mass-validate-users' => 'Massvalideeri kasutajad',
- 'moderation' => 'Mõõdukus',
- 'pages' => 'Leheküljed',
- 'please-moderate' => 'Palun modereeri seda Torrenti!',
- 'polls' => 'Küsitlused',
- 'reports-log' => 'Aruannete logi',
- 'rss' => 'RSS',
- 'staff-dashboard' => 'Töötajate juhtpaneel',
- 'torrent-categories' => 'Torrenti kategooriad',
- 'torrent-moderation' => 'Torrent modereerimine',
- 'torrent-tools' => 'Torrent tööriistad',
- 'torrent-types' => 'Torrentitüübid',
- 'torrents' => 'Torrents',
- 'user-gifting' => 'Kasutaja kingitus',
- 'user-notes' => 'Kasutaja märkuste logi',
- 'user-search' => 'Kasutaja otsing',
- 'user-tools' => 'Kasutaja tööriistad',
- 'warnings-log' => 'Hoiatuste logi',
- 'you-have' => 'Sul on',
+ 'audit-log' => 'Aktiivsus Logi',
+ 'articles' => 'Artiklid',
+ 'applications' => 'Rakendused',
+ 'bans-log' => 'Keelud',
+ 'blocks' => 'Blokid',
+ 'bot' => 'Bot',
+ 'bots' => 'Botid',
+ 'chat' => 'Vestlus',
+ 'config-manager' => 'Config Manager',
+ 'dashboard' => 'Armatuurlaud',
+ 'failed-login-log' => 'Sisselogimise logi ebaõnnestus',
+ 'flush-ghost-peers' => 'Pese Ghost Peers',
+ 'forums' => 'Foorumid',
+ 'frontend' => 'Esiots',
+ 'general-tools' => 'Üldised tööriistad',
+ 'groups' => 'Grupid',
+ 'invites-log' => 'Kutsete logi',
+ 'laravel-log' => 'Laravel Logi',
+ 'links' => 'Lingid',
+ 'logs' => 'Logid',
+ 'mass-pm' => 'Mass PM',
+ 'mass-validate-users' => 'Massvalideeri kasutajad',
+ 'moderation' => 'Mõõdukus',
+ 'pages' => 'Leheküljed',
+ 'please-moderate' => 'Palun modereeri seda Torrenti!',
+ 'polls' => 'Küsitlused',
+ 'reports-log' => 'Aruannete logi',
+ 'rss' => 'RSS',
+ 'staff-dashboard' => 'Töötajate juhtpaneel',
+ 'torrent-categories' => 'Torrenti kategooriad',
+ 'torrent-moderation' => 'Torrent modereerimine',
+ 'torrent-tools' => 'Torrent tööriistad',
+ 'torrent-types' => 'Torrentitüübid',
+ 'torrents' => 'Torrents',
+ 'user-gifting' => 'Kasutaja kingitus',
+ 'user-notes' => 'Kasutaja märkuste logi',
+ 'user-search' => 'Kasutaja otsing',
+ 'user-tools' => 'Kasutaja tööriistad',
+ 'warnings-log' => 'Hoiatuste logi',
+ 'you-have' => 'Sul on',
'possible-leech-cheaters' => 'Võimalikud petturid',
- 'chat-tools' => 'Vestlusvahendid',
- 'flush-chat' => 'Flush Chatbox',
- 'seedboxes' => 'Registreeritud seemnekastid',
+ 'chat-tools' => 'Vestlusvahendid',
+ 'flush-chat' => 'Flush Chatbox',
+ 'seedboxes' => 'Registreeritud seemnekastid',
];
diff --git a/lang/et/stat.php b/lang/et/stat.php
index 957a80929..8af9e3178 100644
--- a/lang/et/stat.php
+++ b/lang/et/stat.php
@@ -12,40 +12,40 @@
*/
return [
- 'by-count' => 'Krahvide järgi',
- 'by-data' => 'Andmete järgi',
- 'by-volume' => 'Mahtude järgi',
- 'group' => 'Grupp',
- 'groups' => 'Grupid',
- 'nerd-stats' => 'Nerd statistika',
- 'nerd-stats-desc' => 'Me kõik armastame statistikat. Siin on mõned, mida me peame oluliseks',
- 'registration-date' => 'Registreerimiskuupäev',
- 'request-fulfilled' => 'Taotlus on täidetud',
- 'request-not-fulfilled' => 'Taotlus ei ole täidetud',
+ 'by-count' => 'Krahvide järgi',
+ 'by-data' => 'Andmete järgi',
+ 'by-volume' => 'Mahtude järgi',
+ 'group' => 'Grupp',
+ 'groups' => 'Grupid',
+ 'nerd-stats' => 'Nerd statistika',
+ 'nerd-stats-desc' => 'Me kõik armastame statistikat. Siin on mõned, mida me peame oluliseks',
+ 'registration-date' => 'Registreerimiskuupäev',
+ 'request-fulfilled' => 'Taotlus on täidetud',
+ 'request-not-fulfilled' => 'Taotlus ei ole täidetud',
'request-pending-aproval' => 'Taotluse ootel kinnitamine',
- 'select-category' => 'Palun valige allpool kategooria',
- 'site-stats' => 'Saidi statistika',
- 'stats' => 'Statistika',
- 'stats-format' => 'Kõik statistikad, mis on kuvatud Top 100 formaadis',
- 'top-bankers' => 'Top Bankers',
- 'top-bountied' => 'Üles Bountied',
- 'top-completed' => 'Üles Lõpetatud',
- 'top-dead' => 'Top Dead',
- 'top-downloaded' => 'Parimad allalaaditud torrentid',
- 'top-downloaders' => 'Parimad allalaadijad',
- 'top-dying' => 'Üles suremas',
- 'top-leeched' => 'Üles Leeched',
- 'top-leechers' => 'Top Leechers',
- 'top-seeded' => 'Top Seeded',
- 'top-seeding' => 'Top külvamine',
- 'top-seeders' => 'Top külvikud',
- 'top-seedsize' => 'Üles Seedsize',
- 'top-seedtime' => 'Top Seedtime',
- 'top-uploaders' => 'Üles Üleslaadijad',
- 'total-download' => 'Allalaadimine kokku',
- 'total-torrents' => 'Kokku torrente',
- 'total-traffic' => 'Kogu liiklus',
- 'total-upload' => 'Üleslaadimine kokku',
- 'users-in-group' => 'Kasutajad grupis',
- 'users-per-group' => 'Kasutajad grupi kohta',
+ 'select-category' => 'Palun valige allpool kategooria',
+ 'site-stats' => 'Saidi statistika',
+ 'stats' => 'Statistika',
+ 'stats-format' => 'Kõik statistikad, mis on kuvatud Top 100 formaadis',
+ 'top-bankers' => 'Top Bankers',
+ 'top-bountied' => 'Üles Bountied',
+ 'top-completed' => 'Üles Lõpetatud',
+ 'top-dead' => 'Top Dead',
+ 'top-downloaded' => 'Parimad allalaaditud torrentid',
+ 'top-downloaders' => 'Parimad allalaadijad',
+ 'top-dying' => 'Üles suremas',
+ 'top-leeched' => 'Üles Leeched',
+ 'top-leechers' => 'Top Leechers',
+ 'top-seeded' => 'Top Seeded',
+ 'top-seeding' => 'Top külvamine',
+ 'top-seeders' => 'Top külvikud',
+ 'top-seedsize' => 'Üles Seedsize',
+ 'top-seedtime' => 'Top Seedtime',
+ 'top-uploaders' => 'Üles Üleslaadijad',
+ 'total-download' => 'Allalaadimine kokku',
+ 'total-torrents' => 'Kokku torrente',
+ 'total-traffic' => 'Kogu liiklus',
+ 'total-upload' => 'Üleslaadimine kokku',
+ 'users-in-group' => 'Kasutajad grupis',
+ 'users-per-group' => 'Kasutajad grupi kohta',
];
diff --git a/lang/et/torrent.php b/lang/et/torrent.php
index e52dcc844..b5a818ec1 100644
--- a/lang/et/torrent.php
+++ b/lang/et/torrent.php
@@ -12,197 +12,197 @@
*/
return [
- 'activity' => 'Tegevus',
- 'age' => 'Vanus',
- 'agent' => 'Agent',
- 'alive' => 'Elus',
- 'announce-url' => 'Teatage URL-i',
- 'announce-url-desc' => 'Uue torrenti loomisel kasutage ülaltoodud teatise URL-i. Kui soovite oma torrentit kasutada ilma seda allalaadimata saidilt, peate määrama privaatse lipu ja allika: source',
- 'announce-url-desc-url' => 'On probleeme? Vaata meie juhendit SIIN',
- 'announce-url-desc2' => 'Kõigi üleslaadimiste jaoks on vaja TMDB ja IMDB! Seda kasutatakse Plakatite / Backdropside ja ExtraInfo haardamiseks',
- 'approved' => 'Kinnitatud',
- 'audio' => 'Heli',
- 'bon-tipped' => 'BON Tipped',
- 'bookmark' => 'Järjehoidja',
- 'bookmarks' => 'Järjehoidjad',
- 'bump' => 'Bump',
- 'cant-upload' => 'Viga: teie üleslaadimise õigused on keelatud',
- 'cant-upload-desc' => 'Kui tunnete, et see on viga, võtke palun ühendust personaliga',
- 'cards' => 'Kaardid',
- 'cards-view' => 'Torrentkaartide vaade',
- 'categories' => 'Kategooriad',
- 'category' => 'Kategooria',
- 'client' => 'Klient',
- 'commited' => 'Sõlmitud',
- 'completed' => 'Lõpetatud',
- 'completed_at' => 'Lõpetatud aadressil',
- 'completed-not-seeding' => 'Te lõpetasite selle allalaadimise, kuid pole enam külvatud',
- 'created_at' => 'Loodud aadressil',
- 'credited' => 'Autoriseeritud',
- 'current' => 'Praegune',
- 'current-filters' => 'Praegused filtrid',
- 'currently-leeching' => 'Praegu Leeching',
- 'currently-seeding' => 'Praegu külvamine',
- 'dead-torrent' => 'Dead Torrent',
- 'dead-torrents' => 'Surnud torrentid',
- 'delete-bookmark' => 'Kustuta see järjehoidja',
- 'description' => 'Kirjeldus',
- 'discounts' => 'Soodustused',
- 'double-upload' => 'Topeltlaadimine',
- 'download-all' => 'Laadi alla kõik',
- 'download-check' => 'Allalaadimise kontroll',
- 'downloaded' => 'Allalaaditud',
- 'dying-torrent' => 'Dying Torrent',
- 'dying-torrents' => 'Surevad torrentsid',
- 'encode-settings' => 'Kodeeri seaded',
- 'estimated-ratio' => 'Hinnanguline suhe pärast allalaadimist',
- 'failed' => 'Ebaõnnestus',
- 'feature' => 'Funktsioon',
- 'featured' => 'Soovitatavad',
- 'featured-desc' => 'Soovitatavad torrentid on 100% tasuta ja Topeltlaadimine!',
- 'featured-until' => 'See on populaarne Torrent Kuni',
- 'file' => 'Fail',
- 'filters' => 'Filtrid',
- 'fl-tokens-left' => 'Sul on : märgid on jäänud',
- 'freeleech' => 'Freeleech',
- 'freeleech-token' => 'Freeleechi token',
- 'general' => 'Üldine',
- 'genre' => 'Žanr',
- 'global-double-upload' => 'Globaalne topeltlaadimine',
- 'global-freeleech' => 'Global Freeleech',
- 'grant' => 'Toetus',
- 'greater-than' => 'Suurem kui',
- 'grouping' => 'Grupeerimine',
- 'groupings' => 'Rühmitused',
- 'grouping-categories' => 'Kategooriate rühmitamine',
+ 'activity' => 'Tegevus',
+ 'age' => 'Vanus',
+ 'agent' => 'Agent',
+ 'alive' => 'Elus',
+ 'announce-url' => 'Teatage URL-i',
+ 'announce-url-desc' => 'Uue torrenti loomisel kasutage ülaltoodud teatise URL-i. Kui soovite oma torrentit kasutada ilma seda allalaadimata saidilt, peate määrama privaatse lipu ja allika: source',
+ 'announce-url-desc-url' => 'On probleeme? Vaata meie juhendit SIIN',
+ 'announce-url-desc2' => 'Kõigi üleslaadimiste jaoks on vaja TMDB ja IMDB! Seda kasutatakse Plakatite / Backdropside ja ExtraInfo haardamiseks',
+ 'approved' => 'Kinnitatud',
+ 'audio' => 'Heli',
+ 'bon-tipped' => 'BON Tipped',
+ 'bookmark' => 'Järjehoidja',
+ 'bookmarks' => 'Järjehoidjad',
+ 'bump' => 'Bump',
+ 'cant-upload' => 'Viga: teie üleslaadimise õigused on keelatud',
+ 'cant-upload-desc' => 'Kui tunnete, et see on viga, võtke palun ühendust personaliga',
+ 'cards' => 'Kaardid',
+ 'cards-view' => 'Torrentkaartide vaade',
+ 'categories' => 'Kategooriad',
+ 'category' => 'Kategooria',
+ 'client' => 'Klient',
+ 'commited' => 'Sõlmitud',
+ 'completed' => 'Lõpetatud',
+ 'completed_at' => 'Lõpetatud aadressil',
+ 'completed-not-seeding' => 'Te lõpetasite selle allalaadimise, kuid pole enam külvatud',
+ 'created_at' => 'Loodud aadressil',
+ 'credited' => 'Autoriseeritud',
+ 'current' => 'Praegune',
+ 'current-filters' => 'Praegused filtrid',
+ 'currently-leeching' => 'Praegu Leeching',
+ 'currently-seeding' => 'Praegu külvamine',
+ 'dead-torrent' => 'Dead Torrent',
+ 'dead-torrents' => 'Surnud torrentid',
+ 'delete-bookmark' => 'Kustuta see järjehoidja',
+ 'description' => 'Kirjeldus',
+ 'discounts' => 'Soodustused',
+ 'double-upload' => 'Topeltlaadimine',
+ 'download-all' => 'Laadi alla kõik',
+ 'download-check' => 'Allalaadimise kontroll',
+ 'downloaded' => 'Allalaaditud',
+ 'dying-torrent' => 'Dying Torrent',
+ 'dying-torrents' => 'Surevad torrentsid',
+ 'encode-settings' => 'Kodeeri seaded',
+ 'estimated-ratio' => 'Hinnanguline suhe pärast allalaadimist',
+ 'failed' => 'Ebaõnnestus',
+ 'feature' => 'Funktsioon',
+ 'featured' => 'Soovitatavad',
+ 'featured-desc' => 'Soovitatavad torrentid on 100% tasuta ja Topeltlaadimine!',
+ 'featured-until' => 'See on populaarne Torrent Kuni',
+ 'file' => 'Fail',
+ 'filters' => 'Filtrid',
+ 'fl-tokens-left' => 'Sul on : märgid on jäänud',
+ 'freeleech' => 'Freeleech',
+ 'freeleech-token' => 'Freeleechi token',
+ 'general' => 'Üldine',
+ 'genre' => 'Žanr',
+ 'global-double-upload' => 'Globaalne topeltlaadimine',
+ 'global-freeleech' => 'Global Freeleech',
+ 'grant' => 'Toetus',
+ 'greater-than' => 'Suurem kui',
+ 'grouping' => 'Grupeerimine',
+ 'groupings' => 'Rühmitused',
+ 'grouping-categories' => 'Kategooriate rühmitamine',
'grouping-categories-desc' => 'Millist kategooriat soovite grupeerida?',
- 'grouping-results' => 'Tulemuste rühmitamine',
- 'groupings-view' => 'Rühmituse vaade',
- 'have-completed' => 'Lõpetatud',
- 'have-downloaded' => 'Allalaaditud',
- 'have-not-completed' => 'Ei ole lõpetatud',
- 'have-not-downloaded' => 'Pole alla laetud',
- 'health' => 'Tervis',
- 'history' => 'Ajalugu',
- 'hitrun' => 'H&R?',
- 'hit-and-runs' => 'Tulemus ja jooks loeb',
- 'immune' => 'Immuunne?',
- 'info' => 'Info',
- 'internal' => 'Sisemine',
- 'internal-release' => 'Sisemine vabastamine',
- 'last-seed-activity' => 'Viimane seemnetegevus',
- 'last-seeder' => 'Sa oled viimane külvik! (on alla laaditud vähemalt 3 korda)',
- 'last-update' => 'Viimane uuendus',
- 'leave-tip' => 'Jäta ots',
- 'leecher' => 'Leecher',
- 'leechers' => 'Leechers',
- 'leeching' => 'Leeching',
- 'left' => 'Vasak',
- 'legendary-seeder' => 'Legendaarne külvik',
- 'legendary-torrent' => 'Legendaarne torrent',
- 'list' => 'Nimekiri',
- 'me' => 'Mina',
- 'media-info' => 'MediaInfo',
- 'media-info-parser' => 'MediaInfo parser',
- 'media-info-paste' => 'Kleepige MediaInfo prügila siia',
- 'meta-desc' => 'Allalaadimine: nimi maksimaalse kiirusega',
- 'moderation' => 'Mõõdukus',
- 'movies' => 'Filmid',
- 'mvp' => 'MVP',
- 'my-active-torrents' => 'Minu aktiivsed torrentid',
- 'name' => 'Nimi',
- 'no-bookmarks' => 'Järjehoidjaid ei leitud.',
- 'no-discounts' => 'Praegu ei ole allahindlusi',
- 'no-meta' => 'Metaandmeid ei leitud',
- 'no-privileges' => 'Te ei saa seda faili alla laadida - lisateabe saamiseks kontrollige allpool',
- 'no-privileges-desc' => 'Lahendamise nupu ilmumiseks lahendage ülaltoodud ebaõnnestunud tulemused',
- 'not-completed' => 'Alustas allalaadimist, kuid mitte kunagi lõpetatud',
- 'not-downloaded' => 'Pole alla laetud',
- 'old-torrent' => 'Vana torrent',
- 'optional' => 'Valikuline',
- 'original-output' => 'Näita / peida algne väljund',
- 'participant' => 'Osaleja',
- 'passed' => 'Vastu võetud',
- 'peers' => 'Peers',
- 'pending' => 'Ootel',
- 'personal-freeleech' => 'Isiklik Freeleech',
- 'poster' => 'Plakat',
- 'poster-view' => 'Plakativaade',
- 'posters' => 'Plakatid',
- 'prewarn' => 'Eelsalvestatud?',
- 'progress' => 'Edu',
- 'quick-comment' => 'Kiire kommentaar',
- 'quick-tip' => 'Kiire otsa summad',
- 'rated' => 'Hinnatud',
- 'rating' => 'Hinnang',
- 'ready' => 'See fail on allalaadimiseks valmis',
- 'rejected' => 'Tagasilükatud',
- 'released' => 'Vabastatud',
- 'remaining' => 'Ülejäänud',
- 'request-reseed' => 'Taotlus Reseed',
- 'requires-reseed' => 'Nõuab Reseed',
- 'resurrections' => 'Ülestõusmine',
- 'revoke' => 'Tühista',
- 'rss' => 'RSS',
- 'runtime' => 'Kestus',
- 'satisfied_in' => 'Rahul on',
- 'say-thanks' => 'Palun ärge unustage öelda tänu ja seemet nii kaua kui võimalik',
- 'sd-content' => 'SD-sisu',
- 'search' => 'Otsing',
- 'seed-time' => 'Seemnete aeg',
- 'seeder' => 'Külvik',
- 'seeders' => 'Külvikud',
- 'seeding' => 'Külvamine',
- 'seedsize' => 'Seedsize',
- 'seedtime' => 'Seedtime',
- 'short-completed' => 'C',
- 'short-leechs' => 'L',
- 'short-seeds' => 'S',
- 'show-files' => 'Näita faile',
- 'similar' => 'Sarnased torrentid',
- 'size' => 'Suurus',
- 'special' => 'Eriline',
- 'special-freeleech' => 'Eriline Freeleech',
- 'started' => 'Alustatud',
- 'status' => 'Staatus',
- 'statistics' => 'Statistika',
- 'stats' => 'Statistika',
- 'sticky' => 'Kleepuv',
- 'stream-optimized' => 'Stream on optimeeritud',
- 'subtitle' => 'Subtiitrid',
- 'team-player' => 'Meeskonnamängija',
- 'thank' => 'Tänan',
- 'thanked' => 'Tänasime',
- 'thanks' => 'Tänan',
- 'thanks-given' => 'Tänu antud',
- 'times' => 'Ajad',
- 'tip-jar' => 'Vihje purk',
- 'title' => 'Pealkiri',
- 'titles' => 'Pealkirjad',
- 'top-completed' => 'Üles täidetud',
- 'top-dead' => 'Üles surnud',
- 'top-dying' => 'Üles suremas',
- 'top-leeched' => 'Üles',
- 'top-seeded' => 'Üles külvatud',
- 'torrent' => 'Torrent',
- 'torrent-request' => 'Torrent päring',
- 'torrent-tips' => 'Kokku : kogu BON on üleslaadijale kallutatud, millest : kasutaja on sinult',
- 'torrent-tips-desc' => 'See arvatakse maha teie olemasolevatest boonuspunktidest',
- 'torrents' => 'Torrents',
- 'trailer' => 'Vaata haagist',
- 'type' => 'Tüüp',
- 'types' => 'Tüübid',
- 'unbookmark' => 'Unbookmark',
- 'unsatisfieds' => 'Rahulolematu',
- 'unsticky' => 'Unsticky',
- 'updated' => 'Uuendatud',
- 'updated_at' => 'Värskendatud kell',
- 'uploaded' => 'Üleslaaditud',
- 'uploaded-by' => 'Üles laaditud',
- 'uploader' => 'Üleslaadija',
- 'use-fl-token' => 'Kasutage Freeleechi tokenit',
- 'video' => 'Video',
- 'view-more' => 'Vaata veel',
- 'view-trailer' => 'Vaata haagist',
- 'votes' => 'Hääled',
+ 'grouping-results' => 'Tulemuste rühmitamine',
+ 'groupings-view' => 'Rühmituse vaade',
+ 'have-completed' => 'Lõpetatud',
+ 'have-downloaded' => 'Allalaaditud',
+ 'have-not-completed' => 'Ei ole lõpetatud',
+ 'have-not-downloaded' => 'Pole alla laetud',
+ 'health' => 'Tervis',
+ 'history' => 'Ajalugu',
+ 'hitrun' => 'H&R?',
+ 'hit-and-runs' => 'Tulemus ja jooks loeb',
+ 'immune' => 'Immuunne?',
+ 'info' => 'Info',
+ 'internal' => 'Sisemine',
+ 'internal-release' => 'Sisemine vabastamine',
+ 'last-seed-activity' => 'Viimane seemnetegevus',
+ 'last-seeder' => 'Sa oled viimane külvik! (on alla laaditud vähemalt 3 korda)',
+ 'last-update' => 'Viimane uuendus',
+ 'leave-tip' => 'Jäta ots',
+ 'leecher' => 'Leecher',
+ 'leechers' => 'Leechers',
+ 'leeching' => 'Leeching',
+ 'left' => 'Vasak',
+ 'legendary-seeder' => 'Legendaarne külvik',
+ 'legendary-torrent' => 'Legendaarne torrent',
+ 'list' => 'Nimekiri',
+ 'me' => 'Mina',
+ 'media-info' => 'MediaInfo',
+ 'media-info-parser' => 'MediaInfo parser',
+ 'media-info-paste' => 'Kleepige MediaInfo prügila siia',
+ 'meta-desc' => 'Allalaadimine: nimi maksimaalse kiirusega',
+ 'moderation' => 'Mõõdukus',
+ 'movies' => 'Filmid',
+ 'mvp' => 'MVP',
+ 'my-active-torrents' => 'Minu aktiivsed torrentid',
+ 'name' => 'Nimi',
+ 'no-bookmarks' => 'Järjehoidjaid ei leitud.',
+ 'no-discounts' => 'Praegu ei ole allahindlusi',
+ 'no-meta' => 'Metaandmeid ei leitud',
+ 'no-privileges' => 'Te ei saa seda faili alla laadida - lisateabe saamiseks kontrollige allpool',
+ 'no-privileges-desc' => 'Lahendamise nupu ilmumiseks lahendage ülaltoodud ebaõnnestunud tulemused',
+ 'not-completed' => 'Alustas allalaadimist, kuid mitte kunagi lõpetatud',
+ 'not-downloaded' => 'Pole alla laetud',
+ 'old-torrent' => 'Vana torrent',
+ 'optional' => 'Valikuline',
+ 'original-output' => 'Näita / peida algne väljund',
+ 'participant' => 'Osaleja',
+ 'passed' => 'Vastu võetud',
+ 'peers' => 'Peers',
+ 'pending' => 'Ootel',
+ 'personal-freeleech' => 'Isiklik Freeleech',
+ 'poster' => 'Plakat',
+ 'poster-view' => 'Plakativaade',
+ 'posters' => 'Plakatid',
+ 'prewarn' => 'Eelsalvestatud?',
+ 'progress' => 'Edu',
+ 'quick-comment' => 'Kiire kommentaar',
+ 'quick-tip' => 'Kiire otsa summad',
+ 'rated' => 'Hinnatud',
+ 'rating' => 'Hinnang',
+ 'ready' => 'See fail on allalaadimiseks valmis',
+ 'rejected' => 'Tagasilükatud',
+ 'released' => 'Vabastatud',
+ 'remaining' => 'Ülejäänud',
+ 'request-reseed' => 'Taotlus Reseed',
+ 'requires-reseed' => 'Nõuab Reseed',
+ 'resurrections' => 'Ülestõusmine',
+ 'revoke' => 'Tühista',
+ 'rss' => 'RSS',
+ 'runtime' => 'Kestus',
+ 'satisfied_in' => 'Rahul on',
+ 'say-thanks' => 'Palun ärge unustage öelda tänu ja seemet nii kaua kui võimalik',
+ 'sd-content' => 'SD-sisu',
+ 'search' => 'Otsing',
+ 'seed-time' => 'Seemnete aeg',
+ 'seeder' => 'Külvik',
+ 'seeders' => 'Külvikud',
+ 'seeding' => 'Külvamine',
+ 'seedsize' => 'Seedsize',
+ 'seedtime' => 'Seedtime',
+ 'short-completed' => 'C',
+ 'short-leechs' => 'L',
+ 'short-seeds' => 'S',
+ 'show-files' => 'Näita faile',
+ 'similar' => 'Sarnased torrentid',
+ 'size' => 'Suurus',
+ 'special' => 'Eriline',
+ 'special-freeleech' => 'Eriline Freeleech',
+ 'started' => 'Alustatud',
+ 'status' => 'Staatus',
+ 'statistics' => 'Statistika',
+ 'stats' => 'Statistika',
+ 'sticky' => 'Kleepuv',
+ 'stream-optimized' => 'Stream on optimeeritud',
+ 'subtitle' => 'Subtiitrid',
+ 'team-player' => 'Meeskonnamängija',
+ 'thank' => 'Tänan',
+ 'thanked' => 'Tänasime',
+ 'thanks' => 'Tänan',
+ 'thanks-given' => 'Tänu antud',
+ 'times' => 'Ajad',
+ 'tip-jar' => 'Vihje purk',
+ 'title' => 'Pealkiri',
+ 'titles' => 'Pealkirjad',
+ 'top-completed' => 'Üles täidetud',
+ 'top-dead' => 'Üles surnud',
+ 'top-dying' => 'Üles suremas',
+ 'top-leeched' => 'Üles',
+ 'top-seeded' => 'Üles külvatud',
+ 'torrent' => 'Torrent',
+ 'torrent-request' => 'Torrent päring',
+ 'torrent-tips' => 'Kokku : kogu BON on üleslaadijale kallutatud, millest : kasutaja on sinult',
+ 'torrent-tips-desc' => 'See arvatakse maha teie olemasolevatest boonuspunktidest',
+ 'torrents' => 'Torrents',
+ 'trailer' => 'Vaata haagist',
+ 'type' => 'Tüüp',
+ 'types' => 'Tüübid',
+ 'unbookmark' => 'Unbookmark',
+ 'unsatisfieds' => 'Rahulolematu',
+ 'unsticky' => 'Unsticky',
+ 'updated' => 'Uuendatud',
+ 'updated_at' => 'Värskendatud kell',
+ 'uploaded' => 'Üleslaaditud',
+ 'uploaded-by' => 'Üles laaditud',
+ 'uploader' => 'Üleslaadija',
+ 'use-fl-token' => 'Kasutage Freeleechi tokenit',
+ 'video' => 'Video',
+ 'view-more' => 'Vaata veel',
+ 'view-trailer' => 'Vaata haagist',
+ 'votes' => 'Hääled',
];
diff --git a/lang/et/user.php b/lang/et/user.php
index a7f3cfe74..876bec196 100644
--- a/lang/et/user.php
+++ b/lang/et/user.php
@@ -12,316 +12,316 @@
*/
return [
- 'about' => 'Umbes',
- 'about-me' => 'Minust',
- 'accepted-at' => 'Vastu võetud',
- 'accepted-by' => 'Vastu võetud',
- 'account-notification' => 'Konto teavitusseaded',
- 'account-notification-follow' => 'Saate teate, kui kasutaja teie kontot järgib',
- 'account-notification-unfollow' => 'Saate teate, kui kasutaja teie konto tühistab',
- 'account-notification-help' => 'Kontrolli, millised teated teie konto kohta on saadetud. Need seaded on tühistatud, kui te ei luba ühelgi grupil teie konto kohta teateid saata või kui keelate teatised',
- 'account-settings' => 'Konto seaded',
- 'achievement-privacy' => 'Saavutuste seaded',
- 'achievement-privacy-list' => 'Luba kasutajatel vaadata teie saavutuste loendit',
- 'achievement-help' => 'Kontrolli konkreetsete saavutustega seotud teabe jagamist gruppidega, kellel on lubatud oma profiilile juurdepääs. Need seaded on tühistatud, kui te ei luba ühelegi grupile juurdepääsu teie saavutustele või kui te lähete privaatseks',
- 'achievements' => 'Saavutused',
- 'active' => 'Aktiivne',
- 'active-table' => 'Minu aktiivne tabel',
- 'active-torrents' => 'Aktiivsed torrentid',
- 'active-warning' => 'Aktiivne hoiatus',
- 'active-warnings' => 'Aktiivsed hoiatused',
- 'add-seedbox' => 'Lisa külvik',
- 'all-torrents' => 'Kõik torrentsid',
- 'article-comments' => 'Artikkel Kommentaarid tehtud',
- 'avatar' => 'Avatar',
- 'avg-seedtime' => 'Keskmine aeg',
- 'badges' => 'Märgid',
- 'ban' => 'Keelake kasutaja',
- 'ban-log' => 'Ban log',
- 'become-hidden' => 'Hakka peidetud',
- 'become-visible' => 'Saa nähtavaks',
- 'bon' => 'BON',
- 'bon-notification' => 'BON-i teavitusseaded',
- 'bon-notification-gift' => 'Saate teate, kui kasutaja teile kingitusi annab',
- 'bon-notification-help' => 'Kontrolli, milliseid teateid BON-tehingute kohta saadetakse. Need seaded tühistatakse, kui te ei luba ühelgi grupil saata BON-i teateid või kui keelate teateid',
- 'bookmarks' => 'Järjehoidjad',
- 'bounty-given' => 'Bounty antud',
- 'bounty-received' => 'Bounty Received',
- 'can-chat' => 'Saab vestelda',
- 'can-comment' => 'Kas kommenteerida',
- 'can-download' => 'Kas alla laadida',
- 'can-invite' => 'Kas kutsuda',
- 'can-request' => 'Võib taotleda',
- 'can-upload' => 'Saab üles laadida',
- 'certified-banker' => 'Sertifitseeritud pankur',
- 'certified-banker-desc' => 'Pangas on 50 000 või rohkem BON',
- 'certified-downloader' => 'Sertifitseeritud allalaadija',
- 'certified-downloader-desc' => 'Allalaaditud 100 või rohkem torrente!',
- 'certified-seeder' => 'Sertifitseeritud külvik',
- 'certified-seeder-desc' => 'Külvamine 150 või rohkem torrente!',
- 'change-email' => 'Muuda meiliaadressi',
- 'change-email-help' => 'Pärast e-posti muutmist peate oma konto uuesti kinnitama',
- 'change-password' => 'Muuda salasõna',
- 'change-password-help' => 'Pärast parooli muutmist peate uuesti sisse logima',
- 'client-ip-address' => 'Kliendi IP-aadress',
- 'code' => 'Kood',
- 'comments' => 'Märkused',
- 'created-on' => 'Loodud',
- 'credited-download' => 'Autoriseeritud allalaadimine',
- 'credited-upload' => 'Autoriseeritud üleslaadimine',
- 'current-password' => 'Praegune salasõna',
- 'custom-title' => 'Kohandatud pealkiri',
- 'delete' => 'Kustuta kasutaja',
- 'disable-notifications' => 'Keela teatised',
- 'disclaimer' => 'Lahtiütlemine',
- 'disclaimer-info' => 'Me vaikimisi ei logi kasutajate IP-aadresse nagu enamik jälgijaid. Kui lisate oma seemnekasti IP allpool, on oodata, et teate, et allpool loetletud IP-d on nüüd meie andmebaasis salvestatud, kui te ei kustuta kirjeid.',
- 'disclaimer-info-bordered' => 'Lisatud Seedbox IP-d käivitavad seejärel suure kiirusega torrent-märgendi allpool loetletud IP-idest pärinevatel torrentitel',
- 'download-bon' => 'Allalaadimine eemaldati BON poest',
- 'download-recorded' => 'Salvestatud allalaadimine',
- 'download-true' => 'Tõeline allalaadimine',
- 'downloads' => 'Allalaadimised',
- 'edit' => 'Kasutaja muutmine',
- 'edit-profile' => 'Muuda profiili',
- 'enable-notifications' => 'Luba teatised',
- 'expired' => 'Aegunud',
- 'expires-on' => 'Aegub',
- 'extra' => 'Lisa',
- 'filled-request' => 'Täidetud liikmete taotlused',
- 'follow' => 'Jälgi',
- 'follower-privacy' => 'Järgija seaded',
- 'follower-privacy-list' => 'Luba kasutajatel vaadata oma järgijate loendit',
- 'follower-help' => 'Kontrollige konkreetse järgijaga seotud teabe jagamist gruppidega, kellel on lubatud juurdepääs teie profiilile. Need seaded on tühistatud, kui te ei luba ühelgi grupil oma järgijatele juurdepääsu või kui lähete privaatseks',
- 'followers' => 'Järgijad',
- 'following-notification' => 'Järgnevad kasutaja teavitamise sätted',
- 'following-notification-upload' => 'Saate teate, kui järgmine kasutaja laadib torrenti üles',
- 'following-notification-help' => 'Kontrolli, milliseid teateid saadetakse järgmiste kasutajate toimingute kohta. Need seaded tühistatakse, kui te ei luba ühelgi grupil saata järgmiste kasutajate kohta teateid või kui keelate teateid',
- 'formats-are-supported' => ': vorminguid toetatakse',
- 'forum-notification' => 'Foorumi teavitusseaded',
- 'forum-notification-topic' => 'Saate teate, kui teie alustatud teema saab uue postituse',
- 'forum-notification-help' => 'Kontrollige, millised teated saadetakse foorumi tegevuse kohta. Need seaded tühistatakse, kui te ei luba ühelgi grupil saata foorumi tegevusi puudutavaid teateid või kui keelate teateid',
- 'forum-privacy' => 'Foorumi seaded',
- 'forum-privacy-post' => 'Luba kasutajatel vaadata foorumi postitusi, mille olete postitanud',
- 'forum-privacy-topic' => 'Luba kasutajatel vaadata foorumi teemade loendit, mida olete alustanud',
- 'forum-help' => 'Kontrollige konkreetsete foorumiga seotud statistiliste andmete ja teabe jagamist gruppidega, kellel on lubatud juurdepääs teie profiilile. Need seaded tühistatakse, kui te ei luba ühelegi grupile juurdepääsu teie foorumiga seotud statistikale ja teabele või kui te lähete privaatseks',
- 'forum-signature' => 'Foorumi allkiri',
- 'forums' => 'Foorumid',
- 'general' => 'Üldine',
- 'general-settings' => 'üldised seaded',
- 'gift-given' => 'Kingitus antud',
- 'gift-received' => 'Saadud kingitus',
- 'go-public' => 'Mine avalikult',
- 'go-private' => 'Mine privaatseks',
- 'history' => 'Ajalugu',
- 'history-table' => 'Minu ajaloo tabel',
- 'hit-n-runs' => 'Tulemus ja jooksud',
- 'hit-n-runs-count' => 'Tulemus ja jooksuaeg (kogu aeg)',
- 'hit-n-runs-history' => 'Torrent Hit ja jookseb ajalugu',
- 'image' => 'Pilt',
- 'important' => 'Oluline',
- 'important-info' => 'Oluline teave',
- 'information' => 'Teave',
- 'invite-friend' => 'Kutsu sõber (e-post + nõutav teade)',
- 'invite-tree' => 'Kutsu puu',
- 'invites' => 'Kutsub',
- 'invites-banned' => 'Viga: teie kutseõigused on keelatud',
- 'invites-banned-desc' => 'Kui tunnete, et see on viga, võtke palun ühendust personaliga!',
- 'invites-count' => 'Teil on: loendage kutsumismärke',
- 'invites-disabled' => 'Tähelepanu! Avatud registreerimise tõttu on kutsed keelatud!',
- 'invites-disabled-desc' => 'Palun kontrollige kohe tagasi!',
- 'invites-rules' => '- Kutsuge ainult inimesi, keda tunned ja usaldad.
- Teid vastutatakse isiklikult teie kutsutud isikute eest.
- Ära kutsu ennast, kontrollime iga kutsutud kasutajat.
- Ärge kutsuge või müüke kutseid.
- Kui teie kutsutud isik on püütud petmisele, kauplemiskontole või müügi / kauplemise kutsetele, hoiatatakse teid.
',
- 'invites-send' => 'Kutsed saata',
- 'last-login' => 'Viimane sisselogimine',
- 'locked' => 'Lukustatud',
- 'locked-achievements' => 'Lukustatud saavutused',
- 'member-since' => 'Liige alates',
- 'members-desc' => 'Registreeritud kasutajate nimekiri: pealkiri kõigi gruppidega. Leia kasutaja nüüd.',
- 'mention-notification' => '@Mensiooni teatamise seaded',
+ 'about' => 'Umbes',
+ 'about-me' => 'Minust',
+ 'accepted-at' => 'Vastu võetud',
+ 'accepted-by' => 'Vastu võetud',
+ 'account-notification' => 'Konto teavitusseaded',
+ 'account-notification-follow' => 'Saate teate, kui kasutaja teie kontot järgib',
+ 'account-notification-unfollow' => 'Saate teate, kui kasutaja teie konto tühistab',
+ 'account-notification-help' => 'Kontrolli, millised teated teie konto kohta on saadetud. Need seaded on tühistatud, kui te ei luba ühelgi grupil teie konto kohta teateid saata või kui keelate teatised',
+ 'account-settings' => 'Konto seaded',
+ 'achievement-privacy' => 'Saavutuste seaded',
+ 'achievement-privacy-list' => 'Luba kasutajatel vaadata teie saavutuste loendit',
+ 'achievement-help' => 'Kontrolli konkreetsete saavutustega seotud teabe jagamist gruppidega, kellel on lubatud oma profiilile juurdepääs. Need seaded on tühistatud, kui te ei luba ühelegi grupile juurdepääsu teie saavutustele või kui te lähete privaatseks',
+ 'achievements' => 'Saavutused',
+ 'active' => 'Aktiivne',
+ 'active-table' => 'Minu aktiivne tabel',
+ 'active-torrents' => 'Aktiivsed torrentid',
+ 'active-warning' => 'Aktiivne hoiatus',
+ 'active-warnings' => 'Aktiivsed hoiatused',
+ 'add-seedbox' => 'Lisa külvik',
+ 'all-torrents' => 'Kõik torrentsid',
+ 'article-comments' => 'Artikkel Kommentaarid tehtud',
+ 'avatar' => 'Avatar',
+ 'avg-seedtime' => 'Keskmine aeg',
+ 'badges' => 'Märgid',
+ 'ban' => 'Keelake kasutaja',
+ 'ban-log' => 'Ban log',
+ 'become-hidden' => 'Hakka peidetud',
+ 'become-visible' => 'Saa nähtavaks',
+ 'bon' => 'BON',
+ 'bon-notification' => 'BON-i teavitusseaded',
+ 'bon-notification-gift' => 'Saate teate, kui kasutaja teile kingitusi annab',
+ 'bon-notification-help' => 'Kontrolli, milliseid teateid BON-tehingute kohta saadetakse. Need seaded tühistatakse, kui te ei luba ühelgi grupil saata BON-i teateid või kui keelate teateid',
+ 'bookmarks' => 'Järjehoidjad',
+ 'bounty-given' => 'Bounty antud',
+ 'bounty-received' => 'Bounty Received',
+ 'can-chat' => 'Saab vestelda',
+ 'can-comment' => 'Kas kommenteerida',
+ 'can-download' => 'Kas alla laadida',
+ 'can-invite' => 'Kas kutsuda',
+ 'can-request' => 'Võib taotleda',
+ 'can-upload' => 'Saab üles laadida',
+ 'certified-banker' => 'Sertifitseeritud pankur',
+ 'certified-banker-desc' => 'Pangas on 50 000 või rohkem BON',
+ 'certified-downloader' => 'Sertifitseeritud allalaadija',
+ 'certified-downloader-desc' => 'Allalaaditud 100 või rohkem torrente!',
+ 'certified-seeder' => 'Sertifitseeritud külvik',
+ 'certified-seeder-desc' => 'Külvamine 150 või rohkem torrente!',
+ 'change-email' => 'Muuda meiliaadressi',
+ 'change-email-help' => 'Pärast e-posti muutmist peate oma konto uuesti kinnitama',
+ 'change-password' => 'Muuda salasõna',
+ 'change-password-help' => 'Pärast parooli muutmist peate uuesti sisse logima',
+ 'client-ip-address' => 'Kliendi IP-aadress',
+ 'code' => 'Kood',
+ 'comments' => 'Märkused',
+ 'created-on' => 'Loodud',
+ 'credited-download' => 'Autoriseeritud allalaadimine',
+ 'credited-upload' => 'Autoriseeritud üleslaadimine',
+ 'current-password' => 'Praegune salasõna',
+ 'custom-title' => 'Kohandatud pealkiri',
+ 'delete' => 'Kustuta kasutaja',
+ 'disable-notifications' => 'Keela teatised',
+ 'disclaimer' => 'Lahtiütlemine',
+ 'disclaimer-info' => 'Me vaikimisi ei logi kasutajate IP-aadresse nagu enamik jälgijaid. Kui lisate oma seemnekasti IP allpool, on oodata, et teate, et allpool loetletud IP-d on nüüd meie andmebaasis salvestatud, kui te ei kustuta kirjeid.',
+ 'disclaimer-info-bordered' => 'Lisatud Seedbox IP-d käivitavad seejärel suure kiirusega torrent-märgendi allpool loetletud IP-idest pärinevatel torrentitel',
+ 'download-bon' => 'Allalaadimine eemaldati BON poest',
+ 'download-recorded' => 'Salvestatud allalaadimine',
+ 'download-true' => 'Tõeline allalaadimine',
+ 'downloads' => 'Allalaadimised',
+ 'edit' => 'Kasutaja muutmine',
+ 'edit-profile' => 'Muuda profiili',
+ 'enable-notifications' => 'Luba teatised',
+ 'expired' => 'Aegunud',
+ 'expires-on' => 'Aegub',
+ 'extra' => 'Lisa',
+ 'filled-request' => 'Täidetud liikmete taotlused',
+ 'follow' => 'Jälgi',
+ 'follower-privacy' => 'Järgija seaded',
+ 'follower-privacy-list' => 'Luba kasutajatel vaadata oma järgijate loendit',
+ 'follower-help' => 'Kontrollige konkreetse järgijaga seotud teabe jagamist gruppidega, kellel on lubatud juurdepääs teie profiilile. Need seaded on tühistatud, kui te ei luba ühelgi grupil oma järgijatele juurdepääsu või kui lähete privaatseks',
+ 'followers' => 'Järgijad',
+ 'following-notification' => 'Järgnevad kasutaja teavitamise sätted',
+ 'following-notification-upload' => 'Saate teate, kui järgmine kasutaja laadib torrenti üles',
+ 'following-notification-help' => 'Kontrolli, milliseid teateid saadetakse järgmiste kasutajate toimingute kohta. Need seaded tühistatakse, kui te ei luba ühelgi grupil saata järgmiste kasutajate kohta teateid või kui keelate teateid',
+ 'formats-are-supported' => ': vorminguid toetatakse',
+ 'forum-notification' => 'Foorumi teavitusseaded',
+ 'forum-notification-topic' => 'Saate teate, kui teie alustatud teema saab uue postituse',
+ 'forum-notification-help' => 'Kontrollige, millised teated saadetakse foorumi tegevuse kohta. Need seaded tühistatakse, kui te ei luba ühelgi grupil saata foorumi tegevusi puudutavaid teateid või kui keelate teateid',
+ 'forum-privacy' => 'Foorumi seaded',
+ 'forum-privacy-post' => 'Luba kasutajatel vaadata foorumi postitusi, mille olete postitanud',
+ 'forum-privacy-topic' => 'Luba kasutajatel vaadata foorumi teemade loendit, mida olete alustanud',
+ 'forum-help' => 'Kontrollige konkreetsete foorumiga seotud statistiliste andmete ja teabe jagamist gruppidega, kellel on lubatud juurdepääs teie profiilile. Need seaded tühistatakse, kui te ei luba ühelegi grupile juurdepääsu teie foorumiga seotud statistikale ja teabele või kui te lähete privaatseks',
+ 'forum-signature' => 'Foorumi allkiri',
+ 'forums' => 'Foorumid',
+ 'general' => 'Üldine',
+ 'general-settings' => 'üldised seaded',
+ 'gift-given' => 'Kingitus antud',
+ 'gift-received' => 'Saadud kingitus',
+ 'go-public' => 'Mine avalikult',
+ 'go-private' => 'Mine privaatseks',
+ 'history' => 'Ajalugu',
+ 'history-table' => 'Minu ajaloo tabel',
+ 'hit-n-runs' => 'Tulemus ja jooksud',
+ 'hit-n-runs-count' => 'Tulemus ja jooksuaeg (kogu aeg)',
+ 'hit-n-runs-history' => 'Torrent Hit ja jookseb ajalugu',
+ 'image' => 'Pilt',
+ 'important' => 'Oluline',
+ 'important-info' => 'Oluline teave',
+ 'information' => 'Teave',
+ 'invite-friend' => 'Kutsu sõber (e-post + nõutav teade)',
+ 'invite-tree' => 'Kutsu puu',
+ 'invites' => 'Kutsub',
+ 'invites-banned' => 'Viga: teie kutseõigused on keelatud',
+ 'invites-banned-desc' => 'Kui tunnete, et see on viga, võtke palun ühendust personaliga!',
+ 'invites-count' => 'Teil on: loendage kutsumismärke',
+ 'invites-disabled' => 'Tähelepanu! Avatud registreerimise tõttu on kutsed keelatud!',
+ 'invites-disabled-desc' => 'Palun kontrollige kohe tagasi!',
+ 'invites-rules' => '- Kutsuge ainult inimesi, keda tunned ja usaldad.
- Teid vastutatakse isiklikult teie kutsutud isikute eest.
- Ära kutsu ennast, kontrollime iga kutsutud kasutajat.
- Ärge kutsuge või müüke kutseid.
- Kui teie kutsutud isik on püütud petmisele, kauplemiskontole või müügi / kauplemise kutsetele, hoiatatakse teid.
',
+ 'invites-send' => 'Kutsed saata',
+ 'last-login' => 'Viimane sisselogimine',
+ 'locked' => 'Lukustatud',
+ 'locked-achievements' => 'Lukustatud saavutused',
+ 'member-since' => 'Liige alates',
+ 'members-desc' => 'Registreeritud kasutajate nimekiri: pealkiri kõigi gruppidega. Leia kasutaja nüüd.',
+ 'mention-notification' => '@Mensiooni teatamise seaded',
'mention-notification-article-comment' => 'Saate teate, kui olete @ kommenteeritud artikli kommentaaris',
'mention-notification-torrent-comment' => 'Saate teate, kui olete @ kommenteeritud torrent kommentaaris',
'mention-notification-request-comment' => 'Saate teate, kui olete @ kommenteeritud taotluse kommentaaris',
- 'mention-notification-forum-post' => 'Saate teate, kui olete @ postitatud foorumi postituses',
- 'mention-notification-help' => 'Kontrolli, millised teated saadetakse kasutaja @mentions teile. Need seaded on tühistatud, kui te ei luba ühelgi grupil saata teateid, kui kasutaja @mentions teid või kui keelate teatised',
- 'moderated-by' => 'Modereeritud: mod on',
- 'my-bonus-points' => 'Minu boonuspunktid',
- 'my-bookmarks' => 'Minu järjehoidjad',
- 'my-fl-tokens' => 'Minu FL-märgid',
- 'my-general-settings' => 'Minu üldised seaded',
- 'my-notification' => 'Minu teatis',
- 'my-notification-settings' => 'Minu märguannete seaded',
- 'my-privacy' => 'Minu privaatsus',
- 'my-privacy-settings' => 'Minu privaatsusseaded',
- 'my-profile' => 'Minu profiil',
- 'my-requested' => 'Minu soovitud',
- 'my-security' => 'Minu turvalisus',
- 'my-security-settings' => 'Minu turvaseaded',
- 'my-seedboxes' => 'Minu külvikastid',
- 'my-settings' => 'Minu seaded',
- 'my-wishlist' => 'Minu soovinimekiri',
- 'no-logs' => 'Selle kasutaja andmebaasis ei ole kutse logisid!',
- 'no-seedboxes' => 'Ei külvikuid 😔',
- 'not-authorized' => 'Teil ei ole õigust seda lehte vaadata. See liige eelistab olla peidetud nagu ninja!',
- 'note' => 'Märge',
- 'notification' => 'Teavitamine',
- 'notification-settings' => 'Teavituse seaded',
- 'notification-from-account' => 'Konto teatiste saamine',
- 'notification-from-account-help' => 'Saate ainult süsteemi, personali ja järgmiste gruppide konto teateid. Need seaded tühistatakse, kui teated keelatakse',
- 'notification-from-bon' => 'Saate BON-teatisi',
- 'notification-from-bon-help' => 'Te saate BON-teateid ainult süsteemilt, töötajatelt ja järgmistelt rühmadelt. Need seaded tühistatakse, kui teated keelatakse',
- 'notification-from-following' => 'Saate järgmiste kasutajate teateid',
- 'notification-from-following-help' => 'Järgnevad grupid saavad ainult järgnevaid kasutaja teateid. Need seaded tühistatakse, kui teated keelatakse',
- 'notification-from-forum' => 'Saate foorumi teated',
- 'notification-from-forum-help' => 'Te saate foorumi, personali ja järgmiste rühmade foorumi teateid. Need seaded tühistatakse, kui teated keelatakse',
- 'notification-from-subscription' => 'Saate tellimuse teated',
- 'notification-from-subscription-help' => 'Te saate foorumi, personali ja järgmiste rühmade foorumi teateid. Need seaded tühistatakse, kui teated keelatakse',
- 'notification-from-torrent' => 'Võta vastu Torrenti teated',
- 'notification-from-torrent-help' => 'Saate torrentist teated ainult süsteemilt, töötajatelt ja järgmistelt rühmadelt. Need seaded tühistatakse, kui teated keelatakse',
- 'notification-from-mention' => 'Saage @Mention teatised',
- 'notification-from-mention-help' => 'Te saate @mentioni teateid ainult süsteemilt, töötajatelt ja järgmistelt rühmadelt. Need seaded tühistatakse, kui teated keelatakse',
- 'notification-from-request' => 'Saate päringu teateid',
- 'notification-from-request-help' => 'Saate teateid ainult süsteemist, töötajatelt ja järgmistelt rühmadelt. Need seaded tühistatakse, kui teated keelatakse',
- 'notifications' => 'Teated',
- 'offline' => 'Kasutaja on offline!',
- 'online' => 'Kasutaja on võrgus!',
- 'options' => 'Valikud',
- 'other-help' => 'Kontrolli teiste statistiliste andmete ja teabe jagamist gruppidega, kellel on lubatud juurdepääs teie profiilile. Need seaded on tühistatud, kui te ei luba ühelegi grupile juurdepääsu teie teisele statistikale ja teabele või kui te lähete privaatseks',
- 'other-privacy' => 'Muud seaded',
- 'other-privacy-online' => 'Luba kasutajatel näha teid veebikasutajate plokis',
- 'passkey' => 'PID',
- 'passkey-warning' => 'PID on nagu teie parool, peate seda turvaliselt hoidma!',
- 'pending-achievements' => 'Oodatavad saavutused',
- 'per-torrent' => 'Per Torrent',
- 'posts' => 'Postitused',
- 'posts-posted' => 'Foorumipostitused postitatud',
- 'privacy' => 'Privaatsus',
- 'privacy-settings' => 'Privaatsusseaded',
- 'private-info' => 'Privaatne info',
- 'private-forum-profile' => 'Tähelepanu! Selle liikme teema ja postiajalugu on seatud PRIVATE!',
- 'private-profile' => 'Tähelepanu: see profiil on seatud PRIVATE!',
- 'profile' => 'Profiil',
- 'profile-desc' => 'Kasutaja: kasutajaprofiil on registreeritud: title',
- 'profile-privacy' => 'Profiili seaded',
- 'profile-privacy-torrent-count' => 'Jagage oma koguarvu allalaadimisi, üleslaadimisi, seemneid ja sileid',
- 'profile-privacy-torrent-ratio' => 'Jagage oma üleslaadimise / allalaadimise andmeid koos salvestatud suhtega',
- 'profile-privacy-torrent-seed' => 'Jagage kogu külvisaega ja keskmist',
- 'profile-privacy-title' => 'Jagage oma isikliku pealkirja teavet',
- 'profile-privacy-about' => 'Jaga oma isiklikku teavet minu kohta',
- 'profile-privacy-bon-extra' => 'Jagage oma BON-i statistikat',
- 'profile-privacy-comment-extra' => 'Jagage oma kommentaaride statistikat',
- 'profile-privacy-forum-extra' => 'Jagage oma foorumi statistikat',
- 'profile-privacy-request-extra' => 'Jagage oma statistika statistikat',
- 'profile-privacy-torrent-extra' => 'Jagage oma torrentstatistikat',
- 'profile-privacy-badge' => 'Jagage oma teenitud märgid',
- 'profile-privacy-achievement' => 'Jagage oma viimaseid saavutusi',
- 'profile-privacy-follower' => 'Jagage oma viimaseid järgijaid',
- 'profile-privacy-warning' => 'Jagage oma H&R hoiatusi',
- 'profile-privacy-help' => 'Kontrolli, millist statistikat ja teavet teie profiilil kuvatakse. Need seaded on tühistatud, kui te ei luba ühelegi grupile juurdepääsu teie profiilile või kui te lähete privaatseks',
- 'public-info' => 'Avalik teave',
- 'recent-achievements' => 'Viimased saavutused',
- 'recent-followers' => 'Viimased jälgijad',
- 'registration-date' => 'Registreerimiskuupäev',
- 'report' => 'Aruanne',
- 'request-help' => 'Kontrollige konkreetsete päringutega seotud statistika ja teabe jagamist gruppidega, kellel on lubatud oma profiilile juurde pääseda. Need seaded on tühistatud, kui te ei luba ühelgi grupil juurdepääsu teie soovitud statistikale ja teabele või kui te lähete privaatseks',
- 'request' => 'Taotlus',
- 'requested' => 'Taotletud',
- 'requests' => 'Taotlused',
- 'request-comments' => 'Kommentaaride tellimine',
- 'request-notification' => 'Teavitusseadete taotlemine',
- 'request-notification-bounty' => 'Saage teatis, kui soovitud torrent saab uue loovuse',
- 'request-notification-comment' => 'Saate teate, kui soovitud torrent saab uue kommentaari',
- 'request-notification-fill' => 'Saate teate, kui soovitud torrent saab täis',
- 'request-notification-fill-approve' => 'Saate teate, kui taotletud torrent täitmine on heaks kiidetud',
- 'request-notification-fill-reject' => 'Saate teate, kui taotletud torrenttäit lükatakse tagasi',
- 'request-notification-claim' => 'Saate teate, kui taotletud torrentit taotletakse',
- 'request-notification-unclaim' => 'Saate teate, kui taotletud torrent ei ole taotletud',
- 'request-notification-help' => 'Kontrolli, milliseid teateid saadetavate tegevuste kohta saadetakse. Need seaded on tühistatud, kui te ei luba ühelgi grupil saata teateid taotlustoimingute kohta või kui keelate teateid',
- 'request-privacy' => 'Taotluse seaded',
- 'request-privacy-requested' => 'Luba kasutajatel vaadata teie esitatud taotluste loendit',
- 'reset-passkey' => 'Lähtesta pääsukood (PID)',
- 'reset-passkey-help' => 'Pärast PID-i lähtestamist peate kõik oma aktiivsed torrentid uuesti alla laadima / uuesti üles laadima',
- 'reset-rss' => 'RSS-võtme (RID) lähtestamine',
- 'reset-rss-help' => 'Pärast RID-i lähtestamist peate kõik aktiivsed RSS-kanalid uuesti laadima',
- 'resurrections' => 'Ülestõusmine',
- 'search' => 'Kiirotsing kasutajanime järgi',
- 'security' => 'Turvalisus',
- 'security-settings' => 'Turvaseaded',
- 'seedboxes' => 'Seemnekastid',
- 'seeds' => 'Seemned',
- 'send-invite' => 'Saada kutse',
- 'sender' => 'Saatja',
- 'settings' => 'Seaded',
- 'show-passkey' => 'Näita PID',
- 'staff-noted' => 'Personal märkis kontot',
- 'statistics' => 'Statistika',
- 'subscription-notification' => 'Tellimuse teatamise seaded',
- 'subscription-notification-forum' => 'Saate teate, kui tellitud foorum saab uue teema',
- 'subscription-notification-topic' => 'Saate teate, kui tellitud teema saab uue postituse',
- 'subscription-notification-help' => 'Kontrolli, milliseid teateid teie tellimuste kohta saadetakse. Need seaded on tühistatud, kui te ei luba ühelgi grupil saata teie tellimuste kohta teateid või kui keelate teatised',
- 'thanks-given' => 'Tänu antud',
- 'thanks-received' => 'Tänu saanud',
- 'tips-given' => 'Nõuanded antud',
- 'tips-received' => 'Saadud nõuanded',
- 'title' => 'Pealkiri',
- 'top-bankers' => 'Top Bankers',
- 'top-downloaders-data' => 'Parimad allalaadijad (andmed)',
- 'top-leechers' => 'Top Leechers',
- 'top-leechers-count' => 'Top Leechers (krahv)',
- 'top-seeders' => 'Top külvikud',
- 'top-seeders-count' => 'Top külvikud (Count)',
- 'top-seeding-size' => 'Ülemine külv (suurus)',
- 'top-seedtime' => 'Top Seedtime',
- 'top-uploaders-data' => 'Üleslaadijad (andmed)',
- 'top-uploaders-count' => 'Top Üleslaadijad (Count)',
- 'topics' => 'Teemad',
- 'topics-started' => 'Alustatud foorumi teemad',
- 'torrent-comments' => 'Torrent kommentaarid tehtud',
- 'torrent-help' => 'Kontrolli konkreetse torrentiga seotud statistika ja teabe jagamist rühmadega, kellel on lubatud oma profiili juurde pääseda. Need seaded tühistatakse, kui te ei luba ühelegi grupile juurdepääsu oma torrentiga seotud statistikale ja teabele või kui te lähete privaatseks',
- 'torrent-notification' => 'Torrenti teatise seaded',
- 'torrent-notification-comment' => 'Saage teatis, kui üleslaaditud torrent saab uue kommentaari',
- 'torrent-notification-thank' => 'Saage teatis, kui üleslaaditud torrent saab uue tänu',
- 'torrent-notification-tip' => 'Saage teatis, kui üleslaaditud torrent saab uue näpunäite',
- 'torrent-notification-help' => 'Kontrolli, milliseid teateid edastatakse torrentitegevuse kohta. Need seaded tühistatakse, kui te ei luba ühelgi grupil edastada teateid torrent-tegevuse kohta või kui keelate teateid',
- 'torrent-privacy' => 'Torrenti seaded',
- 'torrent-privacy-download' => 'Luba kasutajatel vaadata allalaaditud torrentite loendit',
- 'torrent-privacy-upload' => 'Luba kasutajatel vaadata üleslaaditud torrentite loendit',
- 'torrent-privacy-peer' => 'Luba kasutajatel näha teid torrent peer history tabelis',
- 'torrents' => 'Torrents',
- 'torrents-history' => 'Torrentside ajalugu',
- 'total-download' => 'Allalaadimine kokku',
- 'total-downloads' => 'Allalaadimisi kokku',
- 'total-leeching' => 'Kokku Leeching',
- 'total-seeding' => 'Seemnete kogusumma',
- 'total-seedtime' => 'Seedtime kokku',
- 'total-upload' => 'Üleslaadimine kokku',
- 'total-uploads' => 'Üleslaadimine kokku',
- 'unban' => 'Tühista kasutaja',
- 'unfollow' => 'Jäta vahele',
- 'unlocked' => 'Lukustamata',
- 'unlocked-achievements' => 'Avatud saavutused',
- 'unsatisfieds' => 'Rahulolematu',
- 'upload-bon' => 'Laadi üles BON Store ist',
- 'upload-recorded' => 'Salvestatud üleslaadimine',
- 'upload-true' => 'Tõeline üleslaadimine',
- 'uploads' => 'Üleslaadimine',
- 'uploads-table' => 'Üleslaadimise tabel',
- 'user' => 'Kasutaja',
- 'user-id' => 'kasutaja ID',
- 'username-seedbox' => 'Kasutajanimi Seedbox',
- 'visible-to-achievement' => 'Saavutused nähtavad',
- 'visible-to-achievement-help' => 'Teie saavutused on nähtavad ainult töötajatele ja järgmistele rühmadele. Need seaded tühistatakse, kui lähete privaatseks',
- 'visible-to-follower' => 'Jälgijad nähtavad',
- 'visible-to-follower-help' => 'Teie jälgijad on nähtavad ainult töötajatele ja järgmistele rühmadele. Need seaded tühistatakse, kui lähete privaatseks',
- 'visible-to-forum' => 'Foorumi teave nähtav',
- 'visible-to-forum-help' => 'Teie foorumiteave on nähtav ainult töötajatele ja järgmistele rühmadele. Need seaded tühistatakse, kui lähete privaatseks',
- 'visible-to-other' => 'Muu nähtav',
- 'visible-to-other-help' => 'Muu teie kontot puudutav teave on nähtav ainult töötajatele ja järgmistele rühmadele. Need seaded tühistatakse, kui lähete privaatseks või kui lähete peidetud',
- 'visible-to-profile' => 'Profiil nähtav',
- 'visible-to-profile-help' => 'Teie profiil on nähtav ainult töötajatele ja järgmistele rühmadele. Need seaded tühistatakse, kui lähete privaatseks',
- 'visible-to-request' => 'Küsi teavet nähtavaks',
- 'visible-to-request-help' => 'Teie päringud on nähtavad ainult töötajatele ja järgmistele rühmadele. Need seaded tühistatakse, kui lähete privaatseks',
- 'visible-to-torrent' => 'Torrenti teave nähtav',
- 'visible-to-torrent-help' => 'Teie torrent teave on nähtav ainult töötajatele ja järgmistele rühmadele. Need seaded tühistatakse, kui lähete privaatseks või kui lähete peidetud',
- 'warned-on' => 'Hoiatus on sisse lülitatud',
- 'warning' => 'Hoiatus',
- 'warning-log' => 'Hoiatuslogi',
- 'wishlist' => 'Soovinimekiri',
+ 'mention-notification-forum-post' => 'Saate teate, kui olete @ postitatud foorumi postituses',
+ 'mention-notification-help' => 'Kontrolli, millised teated saadetakse kasutaja @mentions teile. Need seaded on tühistatud, kui te ei luba ühelgi grupil saata teateid, kui kasutaja @mentions teid või kui keelate teatised',
+ 'moderated-by' => 'Modereeritud: mod on',
+ 'my-bonus-points' => 'Minu boonuspunktid',
+ 'my-bookmarks' => 'Minu järjehoidjad',
+ 'my-fl-tokens' => 'Minu FL-märgid',
+ 'my-general-settings' => 'Minu üldised seaded',
+ 'my-notification' => 'Minu teatis',
+ 'my-notification-settings' => 'Minu märguannete seaded',
+ 'my-privacy' => 'Minu privaatsus',
+ 'my-privacy-settings' => 'Minu privaatsusseaded',
+ 'my-profile' => 'Minu profiil',
+ 'my-requested' => 'Minu soovitud',
+ 'my-security' => 'Minu turvalisus',
+ 'my-security-settings' => 'Minu turvaseaded',
+ 'my-seedboxes' => 'Minu külvikastid',
+ 'my-settings' => 'Minu seaded',
+ 'my-wishlist' => 'Minu soovinimekiri',
+ 'no-logs' => 'Selle kasutaja andmebaasis ei ole kutse logisid!',
+ 'no-seedboxes' => 'Ei külvikuid 😔',
+ 'not-authorized' => 'Teil ei ole õigust seda lehte vaadata. See liige eelistab olla peidetud nagu ninja!',
+ 'note' => 'Märge',
+ 'notification' => 'Teavitamine',
+ 'notification-settings' => 'Teavituse seaded',
+ 'notification-from-account' => 'Konto teatiste saamine',
+ 'notification-from-account-help' => 'Saate ainult süsteemi, personali ja järgmiste gruppide konto teateid. Need seaded tühistatakse, kui teated keelatakse',
+ 'notification-from-bon' => 'Saate BON-teatisi',
+ 'notification-from-bon-help' => 'Te saate BON-teateid ainult süsteemilt, töötajatelt ja järgmistelt rühmadelt. Need seaded tühistatakse, kui teated keelatakse',
+ 'notification-from-following' => 'Saate järgmiste kasutajate teateid',
+ 'notification-from-following-help' => 'Järgnevad grupid saavad ainult järgnevaid kasutaja teateid. Need seaded tühistatakse, kui teated keelatakse',
+ 'notification-from-forum' => 'Saate foorumi teated',
+ 'notification-from-forum-help' => 'Te saate foorumi, personali ja järgmiste rühmade foorumi teateid. Need seaded tühistatakse, kui teated keelatakse',
+ 'notification-from-subscription' => 'Saate tellimuse teated',
+ 'notification-from-subscription-help' => 'Te saate foorumi, personali ja järgmiste rühmade foorumi teateid. Need seaded tühistatakse, kui teated keelatakse',
+ 'notification-from-torrent' => 'Võta vastu Torrenti teated',
+ 'notification-from-torrent-help' => 'Saate torrentist teated ainult süsteemilt, töötajatelt ja järgmistelt rühmadelt. Need seaded tühistatakse, kui teated keelatakse',
+ 'notification-from-mention' => 'Saage @Mention teatised',
+ 'notification-from-mention-help' => 'Te saate @mentioni teateid ainult süsteemilt, töötajatelt ja järgmistelt rühmadelt. Need seaded tühistatakse, kui teated keelatakse',
+ 'notification-from-request' => 'Saate päringu teateid',
+ 'notification-from-request-help' => 'Saate teateid ainult süsteemist, töötajatelt ja järgmistelt rühmadelt. Need seaded tühistatakse, kui teated keelatakse',
+ 'notifications' => 'Teated',
+ 'offline' => 'Kasutaja on offline!',
+ 'online' => 'Kasutaja on võrgus!',
+ 'options' => 'Valikud',
+ 'other-help' => 'Kontrolli teiste statistiliste andmete ja teabe jagamist gruppidega, kellel on lubatud juurdepääs teie profiilile. Need seaded on tühistatud, kui te ei luba ühelegi grupile juurdepääsu teie teisele statistikale ja teabele või kui te lähete privaatseks',
+ 'other-privacy' => 'Muud seaded',
+ 'other-privacy-online' => 'Luba kasutajatel näha teid veebikasutajate plokis',
+ 'passkey' => 'PID',
+ 'passkey-warning' => 'PID on nagu teie parool, peate seda turvaliselt hoidma!',
+ 'pending-achievements' => 'Oodatavad saavutused',
+ 'per-torrent' => 'Per Torrent',
+ 'posts' => 'Postitused',
+ 'posts-posted' => 'Foorumipostitused postitatud',
+ 'privacy' => 'Privaatsus',
+ 'privacy-settings' => 'Privaatsusseaded',
+ 'private-info' => 'Privaatne info',
+ 'private-forum-profile' => 'Tähelepanu! Selle liikme teema ja postiajalugu on seatud PRIVATE!',
+ 'private-profile' => 'Tähelepanu: see profiil on seatud PRIVATE!',
+ 'profile' => 'Profiil',
+ 'profile-desc' => 'Kasutaja: kasutajaprofiil on registreeritud: title',
+ 'profile-privacy' => 'Profiili seaded',
+ 'profile-privacy-torrent-count' => 'Jagage oma koguarvu allalaadimisi, üleslaadimisi, seemneid ja sileid',
+ 'profile-privacy-torrent-ratio' => 'Jagage oma üleslaadimise / allalaadimise andmeid koos salvestatud suhtega',
+ 'profile-privacy-torrent-seed' => 'Jagage kogu külvisaega ja keskmist',
+ 'profile-privacy-title' => 'Jagage oma isikliku pealkirja teavet',
+ 'profile-privacy-about' => 'Jaga oma isiklikku teavet minu kohta',
+ 'profile-privacy-bon-extra' => 'Jagage oma BON-i statistikat',
+ 'profile-privacy-comment-extra' => 'Jagage oma kommentaaride statistikat',
+ 'profile-privacy-forum-extra' => 'Jagage oma foorumi statistikat',
+ 'profile-privacy-request-extra' => 'Jagage oma statistika statistikat',
+ 'profile-privacy-torrent-extra' => 'Jagage oma torrentstatistikat',
+ 'profile-privacy-badge' => 'Jagage oma teenitud märgid',
+ 'profile-privacy-achievement' => 'Jagage oma viimaseid saavutusi',
+ 'profile-privacy-follower' => 'Jagage oma viimaseid järgijaid',
+ 'profile-privacy-warning' => 'Jagage oma H&R hoiatusi',
+ 'profile-privacy-help' => 'Kontrolli, millist statistikat ja teavet teie profiilil kuvatakse. Need seaded on tühistatud, kui te ei luba ühelegi grupile juurdepääsu teie profiilile või kui te lähete privaatseks',
+ 'public-info' => 'Avalik teave',
+ 'recent-achievements' => 'Viimased saavutused',
+ 'recent-followers' => 'Viimased jälgijad',
+ 'registration-date' => 'Registreerimiskuupäev',
+ 'report' => 'Aruanne',
+ 'request-help' => 'Kontrollige konkreetsete päringutega seotud statistika ja teabe jagamist gruppidega, kellel on lubatud oma profiilile juurde pääseda. Need seaded on tühistatud, kui te ei luba ühelgi grupil juurdepääsu teie soovitud statistikale ja teabele või kui te lähete privaatseks',
+ 'request' => 'Taotlus',
+ 'requested' => 'Taotletud',
+ 'requests' => 'Taotlused',
+ 'request-comments' => 'Kommentaaride tellimine',
+ 'request-notification' => 'Teavitusseadete taotlemine',
+ 'request-notification-bounty' => 'Saage teatis, kui soovitud torrent saab uue loovuse',
+ 'request-notification-comment' => 'Saate teate, kui soovitud torrent saab uue kommentaari',
+ 'request-notification-fill' => 'Saate teate, kui soovitud torrent saab täis',
+ 'request-notification-fill-approve' => 'Saate teate, kui taotletud torrent täitmine on heaks kiidetud',
+ 'request-notification-fill-reject' => 'Saate teate, kui taotletud torrenttäit lükatakse tagasi',
+ 'request-notification-claim' => 'Saate teate, kui taotletud torrentit taotletakse',
+ 'request-notification-unclaim' => 'Saate teate, kui taotletud torrent ei ole taotletud',
+ 'request-notification-help' => 'Kontrolli, milliseid teateid saadetavate tegevuste kohta saadetakse. Need seaded on tühistatud, kui te ei luba ühelgi grupil saata teateid taotlustoimingute kohta või kui keelate teateid',
+ 'request-privacy' => 'Taotluse seaded',
+ 'request-privacy-requested' => 'Luba kasutajatel vaadata teie esitatud taotluste loendit',
+ 'reset-passkey' => 'Lähtesta pääsukood (PID)',
+ 'reset-passkey-help' => 'Pärast PID-i lähtestamist peate kõik oma aktiivsed torrentid uuesti alla laadima / uuesti üles laadima',
+ 'reset-rss' => 'RSS-võtme (RID) lähtestamine',
+ 'reset-rss-help' => 'Pärast RID-i lähtestamist peate kõik aktiivsed RSS-kanalid uuesti laadima',
+ 'resurrections' => 'Ülestõusmine',
+ 'search' => 'Kiirotsing kasutajanime järgi',
+ 'security' => 'Turvalisus',
+ 'security-settings' => 'Turvaseaded',
+ 'seedboxes' => 'Seemnekastid',
+ 'seeds' => 'Seemned',
+ 'send-invite' => 'Saada kutse',
+ 'sender' => 'Saatja',
+ 'settings' => 'Seaded',
+ 'show-passkey' => 'Näita PID',
+ 'staff-noted' => 'Personal märkis kontot',
+ 'statistics' => 'Statistika',
+ 'subscription-notification' => 'Tellimuse teatamise seaded',
+ 'subscription-notification-forum' => 'Saate teate, kui tellitud foorum saab uue teema',
+ 'subscription-notification-topic' => 'Saate teate, kui tellitud teema saab uue postituse',
+ 'subscription-notification-help' => 'Kontrolli, milliseid teateid teie tellimuste kohta saadetakse. Need seaded on tühistatud, kui te ei luba ühelgi grupil saata teie tellimuste kohta teateid või kui keelate teatised',
+ 'thanks-given' => 'Tänu antud',
+ 'thanks-received' => 'Tänu saanud',
+ 'tips-given' => 'Nõuanded antud',
+ 'tips-received' => 'Saadud nõuanded',
+ 'title' => 'Pealkiri',
+ 'top-bankers' => 'Top Bankers',
+ 'top-downloaders-data' => 'Parimad allalaadijad (andmed)',
+ 'top-leechers' => 'Top Leechers',
+ 'top-leechers-count' => 'Top Leechers (krahv)',
+ 'top-seeders' => 'Top külvikud',
+ 'top-seeders-count' => 'Top külvikud (Count)',
+ 'top-seeding-size' => 'Ülemine külv (suurus)',
+ 'top-seedtime' => 'Top Seedtime',
+ 'top-uploaders-data' => 'Üleslaadijad (andmed)',
+ 'top-uploaders-count' => 'Top Üleslaadijad (Count)',
+ 'topics' => 'Teemad',
+ 'topics-started' => 'Alustatud foorumi teemad',
+ 'torrent-comments' => 'Torrent kommentaarid tehtud',
+ 'torrent-help' => 'Kontrolli konkreetse torrentiga seotud statistika ja teabe jagamist rühmadega, kellel on lubatud oma profiili juurde pääseda. Need seaded tühistatakse, kui te ei luba ühelegi grupile juurdepääsu oma torrentiga seotud statistikale ja teabele või kui te lähete privaatseks',
+ 'torrent-notification' => 'Torrenti teatise seaded',
+ 'torrent-notification-comment' => 'Saage teatis, kui üleslaaditud torrent saab uue kommentaari',
+ 'torrent-notification-thank' => 'Saage teatis, kui üleslaaditud torrent saab uue tänu',
+ 'torrent-notification-tip' => 'Saage teatis, kui üleslaaditud torrent saab uue näpunäite',
+ 'torrent-notification-help' => 'Kontrolli, milliseid teateid edastatakse torrentitegevuse kohta. Need seaded tühistatakse, kui te ei luba ühelgi grupil edastada teateid torrent-tegevuse kohta või kui keelate teateid',
+ 'torrent-privacy' => 'Torrenti seaded',
+ 'torrent-privacy-download' => 'Luba kasutajatel vaadata allalaaditud torrentite loendit',
+ 'torrent-privacy-upload' => 'Luba kasutajatel vaadata üleslaaditud torrentite loendit',
+ 'torrent-privacy-peer' => 'Luba kasutajatel näha teid torrent peer history tabelis',
+ 'torrents' => 'Torrents',
+ 'torrents-history' => 'Torrentside ajalugu',
+ 'total-download' => 'Allalaadimine kokku',
+ 'total-downloads' => 'Allalaadimisi kokku',
+ 'total-leeching' => 'Kokku Leeching',
+ 'total-seeding' => 'Seemnete kogusumma',
+ 'total-seedtime' => 'Seedtime kokku',
+ 'total-upload' => 'Üleslaadimine kokku',
+ 'total-uploads' => 'Üleslaadimine kokku',
+ 'unban' => 'Tühista kasutaja',
+ 'unfollow' => 'Jäta vahele',
+ 'unlocked' => 'Lukustamata',
+ 'unlocked-achievements' => 'Avatud saavutused',
+ 'unsatisfieds' => 'Rahulolematu',
+ 'upload-bon' => 'Laadi üles BON Store ist',
+ 'upload-recorded' => 'Salvestatud üleslaadimine',
+ 'upload-true' => 'Tõeline üleslaadimine',
+ 'uploads' => 'Üleslaadimine',
+ 'uploads-table' => 'Üleslaadimise tabel',
+ 'user' => 'Kasutaja',
+ 'user-id' => 'kasutaja ID',
+ 'username-seedbox' => 'Kasutajanimi Seedbox',
+ 'visible-to-achievement' => 'Saavutused nähtavad',
+ 'visible-to-achievement-help' => 'Teie saavutused on nähtavad ainult töötajatele ja järgmistele rühmadele. Need seaded tühistatakse, kui lähete privaatseks',
+ 'visible-to-follower' => 'Jälgijad nähtavad',
+ 'visible-to-follower-help' => 'Teie jälgijad on nähtavad ainult töötajatele ja järgmistele rühmadele. Need seaded tühistatakse, kui lähete privaatseks',
+ 'visible-to-forum' => 'Foorumi teave nähtav',
+ 'visible-to-forum-help' => 'Teie foorumiteave on nähtav ainult töötajatele ja järgmistele rühmadele. Need seaded tühistatakse, kui lähete privaatseks',
+ 'visible-to-other' => 'Muu nähtav',
+ 'visible-to-other-help' => 'Muu teie kontot puudutav teave on nähtav ainult töötajatele ja järgmistele rühmadele. Need seaded tühistatakse, kui lähete privaatseks või kui lähete peidetud',
+ 'visible-to-profile' => 'Profiil nähtav',
+ 'visible-to-profile-help' => 'Teie profiil on nähtav ainult töötajatele ja järgmistele rühmadele. Need seaded tühistatakse, kui lähete privaatseks',
+ 'visible-to-request' => 'Küsi teavet nähtavaks',
+ 'visible-to-request-help' => 'Teie päringud on nähtavad ainult töötajatele ja järgmistele rühmadele. Need seaded tühistatakse, kui lähete privaatseks',
+ 'visible-to-torrent' => 'Torrenti teave nähtav',
+ 'visible-to-torrent-help' => 'Teie torrent teave on nähtav ainult töötajatele ja järgmistele rühmadele. Need seaded tühistatakse, kui lähete privaatseks või kui lähete peidetud',
+ 'warned-on' => 'Hoiatus on sisse lülitatud',
+ 'warning' => 'Hoiatus',
+ 'warning-log' => 'Hoiatuslogi',
+ 'wishlist' => 'Soovinimekiri',
];
diff --git a/lang/et/validation.php b/lang/et/validation.php
index c355a693a..013d7b30c 100644
--- a/lang/et/validation.php
+++ b/lang/et/validation.php
@@ -23,108 +23,108 @@ return [
|
*/
- 'accepted' => ':attribute tuleb aktsepteerida.',
- 'active_url' => ':attribute ei ole kehtiv URL.',
- 'after' => ':attribute peab olema kuupäev pärast :date.',
- 'after_or_equal' => ':attribute peab olema kuupäev pärast või samastuma :date.',
- 'alpha' => ':attribute võib sisaldada vaid tähemärke.',
- 'alpha_dash' => ':attribute võib sisaldada vaid tähti, numbreid ja kriipse.',
- 'alpha_num' => ':attribute võib sisaldada vaid tähti ja numbreid.',
- 'array' => ':attribute peab olema massiiv.',
- 'before' => ':attribute peab olema kuupäev enne :date.',
- 'before_or_equal' => ':attribute peab olema kuupäev enne või samastuma :date.',
- 'between' => [
+ 'accepted' => ':attribute tuleb aktsepteerida.',
+ 'active_url' => ':attribute ei ole kehtiv URL.',
+ 'after' => ':attribute peab olema kuupäev pärast :date.',
+ 'after_or_equal' => ':attribute peab olema kuupäev pärast või samastuma :date.',
+ 'alpha' => ':attribute võib sisaldada vaid tähemärke.',
+ 'alpha_dash' => ':attribute võib sisaldada vaid tähti, numbreid ja kriipse.',
+ 'alpha_num' => ':attribute võib sisaldada vaid tähti ja numbreid.',
+ 'array' => ':attribute peab olema massiiv.',
+ 'before' => ':attribute peab olema kuupäev enne :date.',
+ 'before_or_equal' => ':attribute peab olema kuupäev enne või samastuma :date.',
+ 'between' => [
'numeric' => ':attribute peab olema :min ja :max vahel.',
- 'file' => ':attribute peab olema :min ja :max kilobaidi vahel.',
- 'string' => ':attribute peab olema :min ja :max tähemärgi vahel.',
- 'array' => ':attribute peab olema :min ja :max kirje vahel.',
+ 'file' => ':attribute peab olema :min ja :max kilobaidi vahel.',
+ 'string' => ':attribute peab olema :min ja :max tähemärgi vahel.',
+ 'array' => ':attribute peab olema :min ja :max kirje vahel.',
],
- 'boolean' => ':attribute väli peab olema tõene või väär.',
- 'confirmed' => ':attribute kinnitus ei vasta.',
- 'date' => ':attribute pole kehtiv kuupäev.',
- 'date_equals' => 'The :attribute must be a date equal to :date.',
- 'date_format' => ':attribute ei vasta formaadile :format.',
- 'different' => ':attribute ja :other peavad olema erinevad.',
- 'digits' => ':attribute peab olema :digits numbrit.',
- 'digits_between' => ':attribute peab olema :min ja :max numbri vahel.',
- 'dimensions' => ':attribute on valed pildi suurused.',
- 'distinct' => ':attribute väljal on topeltväärtus.',
- 'email' => ':attribute peab olema kehtiv e-posti aadress.',
- 'exists' => 'Valitud :attribute on vigane.',
- 'file' => ':attribute peab olema fail.',
- 'filled' => ':attribute väli on nõutav.',
- 'gt' => [
+ 'boolean' => ':attribute väli peab olema tõene või väär.',
+ 'confirmed' => ':attribute kinnitus ei vasta.',
+ 'date' => ':attribute pole kehtiv kuupäev.',
+ 'date_equals' => 'The :attribute must be a date equal to :date.',
+ 'date_format' => ':attribute ei vasta formaadile :format.',
+ 'different' => ':attribute ja :other peavad olema erinevad.',
+ 'digits' => ':attribute peab olema :digits numbrit.',
+ 'digits_between' => ':attribute peab olema :min ja :max numbri vahel.',
+ 'dimensions' => ':attribute on valed pildi suurused.',
+ 'distinct' => ':attribute väljal on topeltväärtus.',
+ 'email' => ':attribute peab olema kehtiv e-posti aadress.',
+ 'exists' => 'Valitud :attribute on vigane.',
+ 'file' => ':attribute peab olema fail.',
+ 'filled' => ':attribute väli on nõutav.',
+ 'gt' => [
'numeric' => 'The :attribute must be greater than :value.',
- 'file' => 'The :attribute must be greater than :value kilobytes.',
- 'string' => 'The :attribute must be greater than :value characters.',
- 'array' => 'The :attribute must have more than :value items.',
+ 'file' => 'The :attribute must be greater than :value kilobytes.',
+ 'string' => 'The :attribute must be greater than :value characters.',
+ 'array' => 'The :attribute must have more than :value items.',
],
- 'gte' => [
+ 'gte' => [
'numeric' => 'The :attribute must be greater than or equal :value.',
- 'file' => 'The :attribute must be greater than or equal :value kilobytes.',
- 'string' => 'The :attribute must be greater than or equal :value characters.',
- 'array' => 'The :attribute must have :value items or more.',
+ 'file' => 'The :attribute must be greater than or equal :value kilobytes.',
+ 'string' => 'The :attribute must be greater than or equal :value characters.',
+ 'array' => 'The :attribute must have :value items or more.',
],
- 'image' => ':attribute peab olema pilt.',
- 'in' => 'Valitud :attribute on vigane.',
- 'in_array' => ':attribute väli ei eksisteeri :other sees.',
- 'integer' => ':attribute peab olema täisarv.',
- 'ip' => ':attribute peab olema kehtiv IP aadress.',
- 'ipv4' => ':attribute peab olema kehtiv IPv4 aadress.',
- 'ipv6' => ':attribute peab olema kehtiv IPv6 aadress.',
- 'json' => ':attribute peab olema kehtiv JSON string.',
- 'lt' => [
+ 'image' => ':attribute peab olema pilt.',
+ 'in' => 'Valitud :attribute on vigane.',
+ 'in_array' => ':attribute väli ei eksisteeri :other sees.',
+ 'integer' => ':attribute peab olema täisarv.',
+ 'ip' => ':attribute peab olema kehtiv IP aadress.',
+ 'ipv4' => ':attribute peab olema kehtiv IPv4 aadress.',
+ 'ipv6' => ':attribute peab olema kehtiv IPv6 aadress.',
+ 'json' => ':attribute peab olema kehtiv JSON string.',
+ 'lt' => [
'numeric' => 'The :attribute must be less than :value.',
- 'file' => 'The :attribute must be less than :value kilobytes.',
- 'string' => 'The :attribute must be less than :value characters.',
- 'array' => 'The :attribute must have less than :value items.',
+ 'file' => 'The :attribute must be less than :value kilobytes.',
+ 'string' => 'The :attribute must be less than :value characters.',
+ 'array' => 'The :attribute must have less than :value items.',
],
- 'lte' => [
+ 'lte' => [
'numeric' => 'The :attribute must be less than or equal :value.',
- 'file' => 'The :attribute must be less than or equal :value kilobytes.',
- 'string' => 'The :attribute must be less than or equal :value characters.',
- 'array' => 'The :attribute must not have more than :value items.',
+ 'file' => 'The :attribute must be less than or equal :value kilobytes.',
+ 'string' => 'The :attribute must be less than or equal :value characters.',
+ 'array' => 'The :attribute must not have more than :value items.',
],
- 'max' => [
+ 'max' => [
'numeric' => ':attribute ei tohi olla suurem kui :max.',
- 'file' => ':attribute ei tohi olla suurem kui :max kilobaiti.',
- 'string' => ':attribute ei tohi olla suurem kui :max tähemärki.',
- 'array' => ':attribute ei tohi sisaldada rohkem kui :max kirjet.',
+ 'file' => ':attribute ei tohi olla suurem kui :max kilobaiti.',
+ 'string' => ':attribute ei tohi olla suurem kui :max tähemärki.',
+ 'array' => ':attribute ei tohi sisaldada rohkem kui :max kirjet.',
],
- 'mimes' => ':attribute peab olema :values tüüpi.',
- 'mimetypes' => ':attribute peab olema :values tüüpi.',
- 'min' => [
+ 'mimes' => ':attribute peab olema :values tüüpi.',
+ 'mimetypes' => ':attribute peab olema :values tüüpi.',
+ 'min' => [
'numeric' => ':attribute peab olema vähemalt :min.',
- 'file' => ':attribute peab olema vähemalt :min kilobaiti.',
- 'string' => ':attribute peab olema vähemalt :min tähemärki.',
- 'array' => ':attribute peab olema vähemalt :min kirjet.',
+ 'file' => ':attribute peab olema vähemalt :min kilobaiti.',
+ 'string' => ':attribute peab olema vähemalt :min tähemärki.',
+ 'array' => ':attribute peab olema vähemalt :min kirjet.',
],
- 'not_in' => 'Valitud :attribute on vigane.',
- 'not_regex' => 'The :attribute format is invalid.',
- 'numeric' => ':attribute peab olema number.',
- 'present' => ':attribute väli peab olema esindatud.',
- 'regex' => ':attribute vorming on vigane.',
- 'required' => ':attribute väli on nõutud.',
- 'required_if' => ':attribute väli on nõutud, kui :other on :value.',
- 'required_unless' => ':attribute väli on nõutud, välja arvatud, kui :other on :values.',
- 'required_with' => ':attribute väli on nõutud, kui :values on esindatud.',
- 'required_with_all' => ':attribute väli on nõutud, kui :values on esindatud.',
- 'required_without' => ':attribute väli on nõutud, kui :values ei ole esindatud.',
+ 'not_in' => 'Valitud :attribute on vigane.',
+ 'not_regex' => 'The :attribute format is invalid.',
+ 'numeric' => ':attribute peab olema number.',
+ 'present' => ':attribute väli peab olema esindatud.',
+ 'regex' => ':attribute vorming on vigane.',
+ 'required' => ':attribute väli on nõutud.',
+ 'required_if' => ':attribute väli on nõutud, kui :other on :value.',
+ 'required_unless' => ':attribute väli on nõutud, välja arvatud, kui :other on :values.',
+ 'required_with' => ':attribute väli on nõutud, kui :values on esindatud.',
+ 'required_with_all' => ':attribute väli on nõutud, kui :values on esindatud.',
+ 'required_without' => ':attribute väli on nõutud, kui :values ei ole esindatud.',
'required_without_all' => ':attribute väli on nõutud, kui ükski :values pole esindatud.',
- 'same' => ':attribute ja :other peavad sobima.',
- 'size' => [
+ 'same' => ':attribute ja :other peavad sobima.',
+ 'size' => [
'numeric' => ':attribute peab olema :size.',
- 'file' => ':attribute peab olema :size kilobaiti.',
- 'string' => ':attribute peab olema :size tähemärki.',
- 'array' => ':attribute peab sisaldama :size kirjet.',
+ 'file' => ':attribute peab olema :size kilobaiti.',
+ 'string' => ':attribute peab olema :size tähemärki.',
+ 'array' => ':attribute peab sisaldama :size kirjet.',
],
- 'starts_with' => 'The :attribute must start with one of the following: :values',
- 'string' => ':attribute peab olema string.',
- 'timezone' => ':attribute peab olema kehtiv tsoon.',
- 'unique' => ':attribute on juba hõivatud.',
- 'uploaded' => ':attribute ei õnnestunud laadida.',
- 'url' => ':attribute vorming on vigane.',
- 'uuid' => 'The :attribute must be a valid UUID.',
+ 'starts_with' => 'The :attribute must start with one of the following: :values',
+ 'string' => ':attribute peab olema string.',
+ 'timezone' => ':attribute peab olema kehtiv tsoon.',
+ 'unique' => ':attribute on juba hõivatud.',
+ 'uploaded' => ':attribute ei õnnestunud laadida.',
+ 'url' => ':attribute vorming on vigane.',
+ 'uuid' => 'The :attribute must be a valid UUID.',
/*
|--------------------------------------------------------------------------
@@ -155,11 +155,11 @@ return [
*/
'attributes' => [
- 'test_name' => 'Testi nimi',
- 'test_description' => 'Testi kirjeldus',
- 'test_locale' => 'Keel',
- 'image' => 'Pilt',
+ 'test_name' => 'Testi nimi',
+ 'test_description' => 'Testi kirjeldus',
+ 'test_locale' => 'Keel',
+ 'image' => 'Pilt',
'result_text_under_image' => 'Tulemuse tekst pildi all',
- 'short_text' => 'Lühitekst',
+ 'short_text' => 'Lühitekst',
],
];
diff --git a/lang/eu/articles.php b/lang/eu/articles.php
index afbba4494..f59be8658 100644
--- a/lang/eu/articles.php
+++ b/lang/eu/articles.php
@@ -12,8 +12,8 @@
*/
return [
- 'articles' => 'artikuluak',
+ 'articles' => 'artikuluak',
'meta-articles' => 'Aztarnariak eta komunitateari buruzko artikuluak eta berriak',
- 'published-at' => 'Argitaratua On',
- 'read-more' => 'Irakurri gehiago',
+ 'published-at' => 'Argitaratua On',
+ 'read-more' => 'Irakurri gehiago',
];
diff --git a/lang/eu/auth.php b/lang/eu/auth.php
index bdafb625f..cb9c58631 100644
--- a/lang/eu/auth.php
+++ b/lang/eu/auth.php
@@ -23,6 +23,6 @@ return [
|
*/
- 'failed' => 'Kredentzial hauek ez datoz bat gure erregistroekin.',
+ 'failed' => 'Kredentzial hauek ez datoz bat gure erregistroekin.',
'throttle' => 'Atzipen saialdi gehiegi. Mesedez berriro saiatu :seconds segundo barru.',
];
diff --git a/lang/eu/backup.php b/lang/eu/backup.php
index 8ef25b60f..cd4a60ab6 100644
--- a/lang/eu/backup.php
+++ b/lang/eu/backup.php
@@ -12,32 +12,32 @@
*/
return [
- 'actions' => 'Ekintzak',
- 'backup' => 'Backup',
- 'backup_doesnt_exist' => 'Babeskopia fitxategia ez da existitzen.',
- 'create_a_new_backup' => 'Sortu Babeskopia osoa',
- 'create_a_new_files_backup' => 'Sortu fitxategien babeskopia',
- 'create_a_new_db_backup' => 'Sortu datu-basearen babeskopia',
- 'create_confirmation_message' => 'Orria 3 segundotan berriro kargatzen.',
- 'create_confirmation_title' => 'Babeskopia osatu da',
- 'create_error_message' => 'Babeskopia fitxategia EZ da sortu.',
- 'create_error_title' => 'Babeskopia errorea',
- 'create_warning_message' => 'Baliteke zure segurtasun kopia sortu ez izatea. Begiratu log fitxategiak xehetasunak ikusteko.',
- 'create_warning_title' => 'Errorea ezezaguna',
- 'date' => 'data',
- 'delete' => 'ezabatu',
- 'delete_cancel_message' => 'Babeskopia fitxategia EZ da ezabatu.',
- 'delete_cancel_title' => 'Ondo da',
- 'delete_confirm' => 'Ziur al zaude babeskopia-fitxategi hau ezabatu nahi duzula?',
- 'delete_confirmation_message' => 'Babeskopia fitxategia ezabatu da.',
- 'delete_confirmation_title' => 'Done',
- 'delete_error_message' => 'Babeskopia fitxategia EZ da ezabatu.',
- 'delete_error_title' => 'Akatsa',
- 'download' => 'Deskarga',
- 'existing_backups' => 'Existitzen diren babeskopiak',
- 'file_size' => 'Fitxategiaren tamaina',
- 'location' => 'Kokalekua',
- 'manager' => 'Kudeatzailea',
- 'no_disks_configured' => 'Ez da konfigurazio / backup.php konfigurazioan konfiguratutako babeskopiarik',
+ 'actions' => 'Ekintzak',
+ 'backup' => 'Backup',
+ 'backup_doesnt_exist' => 'Babeskopia fitxategia ez da existitzen.',
+ 'create_a_new_backup' => 'Sortu Babeskopia osoa',
+ 'create_a_new_files_backup' => 'Sortu fitxategien babeskopia',
+ 'create_a_new_db_backup' => 'Sortu datu-basearen babeskopia',
+ 'create_confirmation_message' => 'Orria 3 segundotan berriro kargatzen.',
+ 'create_confirmation_title' => 'Babeskopia osatu da',
+ 'create_error_message' => 'Babeskopia fitxategia EZ da sortu.',
+ 'create_error_title' => 'Babeskopia errorea',
+ 'create_warning_message' => 'Baliteke zure segurtasun kopia sortu ez izatea. Begiratu log fitxategiak xehetasunak ikusteko.',
+ 'create_warning_title' => 'Errorea ezezaguna',
+ 'date' => 'data',
+ 'delete' => 'ezabatu',
+ 'delete_cancel_message' => 'Babeskopia fitxategia EZ da ezabatu.',
+ 'delete_cancel_title' => 'Ondo da',
+ 'delete_confirm' => 'Ziur al zaude babeskopia-fitxategi hau ezabatu nahi duzula?',
+ 'delete_confirmation_message' => 'Babeskopia fitxategia ezabatu da.',
+ 'delete_confirmation_title' => 'Done',
+ 'delete_error_message' => 'Babeskopia fitxategia EZ da ezabatu.',
+ 'delete_error_title' => 'Akatsa',
+ 'download' => 'Deskarga',
+ 'existing_backups' => 'Existitzen diren babeskopiak',
+ 'file_size' => 'Fitxategiaren tamaina',
+ 'location' => 'Kokalekua',
+ 'manager' => 'Kudeatzailea',
+ 'no_disks_configured' => 'Ez da konfigurazio / backup.php konfigurazioan konfiguratutako babeskopiarik',
'only_local_downloads_supported' => 'Tokiko fitxategi-sistemako deskargak bakarrik onartzen dira.',
];
diff --git a/lang/eu/blocks.php b/lang/eu/blocks.php
index da7dc015c..39b930b1c 100644
--- a/lang/eu/blocks.php
+++ b/lang/eu/blocks.php
@@ -12,19 +12,19 @@
*/
return [
- 'chatbox' => 'Txat kutxa',
- 'click' => 'klik',
- 'to-enable-editor' => 'editorea gaitzeko',
- 'featured-by' => 'Nabarmenduak',
- 'featured-torrents' => 'Nabarmendutako Torrents',
+ 'chatbox' => 'Txat kutxa',
+ 'click' => 'klik',
+ 'to-enable-editor' => 'editorea gaitzeko',
+ 'featured-by' => 'Nabarmenduak',
+ 'featured-torrents' => 'Nabarmendutako Torrents',
'featured-torrents-intro' => 'Lortu ahal duzun bitartean!',
- 'featured-until' => 'Hau torrent da orain arte',
- 'top-torrents' => 'Gehien Torrents',
- 'latest-posts' => 'Azken mezuak',
- 'latest-topics' => 'Azken Gaiak',
- 'active-in-last' => 'Aktibatuta azkenean',
- 'users-online' => 'Erabiltzaileak linean',
- 'check-news' => 'Albisteak (egunero egiaztatu)',
- 'new-news' => 'Albiste berriak',
- 'new-torrents' => 'Torrent berriak',
+ 'featured-until' => 'Hau torrent da orain arte',
+ 'top-torrents' => 'Gehien Torrents',
+ 'latest-posts' => 'Azken mezuak',
+ 'latest-topics' => 'Azken Gaiak',
+ 'active-in-last' => 'Aktibatuta azkenean',
+ 'users-online' => 'Erabiltzaileak linean',
+ 'check-news' => 'Albisteak (egunero egiaztatu)',
+ 'new-news' => 'Albiste berriak',
+ 'new-torrents' => 'Torrent berriak',
];
diff --git a/lang/eu/bon.php b/lang/eu/bon.php
index 282a601ff..d993001ef 100644
--- a/lang/eu/bon.php
+++ b/lang/eu/bon.php
@@ -12,44 +12,44 @@
*/
return [
- 'activated' => 'aktibatzen',
- 'active' => 'Aktibatzen!',
- 'amount' => 'Zenbateko',
- 'bon' => 'BON',
- 'bonus' => 'bonus',
- 'date' => 'data',
- 'earning' => 'men',
- 'earning-rate' => 'Irabazi tasa hau honako denbora hauen arabera irabaziko duzu.',
- 'earnings' => 'irabaziak',
- 'exchange' => 'Truke',
- 'exchange-warning' => 'Trukeak behin betikoak dira, mesedez egiaztatu bikoitzak zure aukerak truke bat egin aurretik.',
- 'extended-stats' => 'Estatistika hedatuak',
- 'gift' => 'Opari',
- 'gift-bonus' => 'Opari Bonus Puntuak',
- 'gift-to' => 'Opari Bonus Puntuak',
- 'gifts' => 'Opariak',
- 'item' => 'Item',
- 'no-refund' => 'Ez da itzulketarik!',
- 'per-day' => 'Eguneko puntuak',
- 'per-hour' => 'Orduko puntuak',
- 'per-minute' => 'Minutu bakoitzeko puntuak',
- 'per-month' => 'Hilabeteko puntuak',
- 'per-second' => 'Bigarren puntuak',
- 'per-week' => 'Asteko puntuak',
- 'per-year' => 'Urteko puntuak',
- 'points' => 'Puntuak',
- 'receiver' => 'hargailuen',
- 'review-seeds' => 'Berrikusi Seeded Torrents guztiak',
- 'send-gift' => 'Oparia bidali',
- 'sender' => 'Sender',
- 'store' => 'denda',
- 'tips' => 'Aholkuak',
- 'total' => 'Guztira irabaziak',
- 'total-gifts' => 'Guztira BON opariak',
- 'total-tips' => 'BON Guztira aholkuak',
+ 'activated' => 'aktibatzen',
+ 'active' => 'Aktibatzen!',
+ 'amount' => 'Zenbateko',
+ 'bon' => 'BON',
+ 'bonus' => 'bonus',
+ 'date' => 'data',
+ 'earning' => 'men',
+ 'earning-rate' => 'Irabazi tasa hau honako denbora hauen arabera irabaziko duzu.',
+ 'earnings' => 'irabaziak',
+ 'exchange' => 'Truke',
+ 'exchange-warning' => 'Trukeak behin betikoak dira, mesedez egiaztatu bikoitzak zure aukerak truke bat egin aurretik.',
+ 'extended-stats' => 'Estatistika hedatuak',
+ 'gift' => 'Opari',
+ 'gift-bonus' => 'Opari Bonus Puntuak',
+ 'gift-to' => 'Opari Bonus Puntuak',
+ 'gifts' => 'Opariak',
+ 'item' => 'Item',
+ 'no-refund' => 'Ez da itzulketarik!',
+ 'per-day' => 'Eguneko puntuak',
+ 'per-hour' => 'Orduko puntuak',
+ 'per-minute' => 'Minutu bakoitzeko puntuak',
+ 'per-month' => 'Hilabeteko puntuak',
+ 'per-second' => 'Bigarren puntuak',
+ 'per-week' => 'Asteko puntuak',
+ 'per-year' => 'Urteko puntuak',
+ 'points' => 'Puntuak',
+ 'receiver' => 'hargailuen',
+ 'review-seeds' => 'Berrikusi Seeded Torrents guztiak',
+ 'send-gift' => 'Oparia bidali',
+ 'sender' => 'Sender',
+ 'store' => 'denda',
+ 'tips' => 'Aholkuak',
+ 'total' => 'Guztira irabaziak',
+ 'total-gifts' => 'Guztira BON opariak',
+ 'total-tips' => 'BON Guztira aholkuak',
'you-have-received-gifts' => 'Jaso duzu',
- 'you-have-sent-gifts' => 'Bidali duzu',
- 'you-have-received-tips' => 'Jaso duzu',
- 'you-have-sent-tips' => 'Bidali duzu',
- 'your-points' => 'Zure puntuak',
+ 'you-have-sent-gifts' => 'Bidali duzu',
+ 'you-have-received-tips' => 'Jaso duzu',
+ 'you-have-sent-tips' => 'Bidali duzu',
+ 'your-points' => 'Zure puntuak',
];
diff --git a/lang/eu/bot.php b/lang/eu/bot.php
index fac204d12..b9fa52372 100644
--- a/lang/eu/bot.php
+++ b/lang/eu/bot.php
@@ -12,15 +12,15 @@
*/
return [
- 'about' => 'About',
- 'bot' => 'Bot',
- 'bots' => 'Errobotak',
- 'color' => 'Kolore',
- 'command' => 'Komando',
- 'edit-bot' => 'Editatu Bot',
+ 'about' => 'About',
+ 'bot' => 'Bot',
+ 'bots' => 'Errobotak',
+ 'color' => 'Kolore',
+ 'command' => 'Komando',
+ 'edit-bot' => 'Editatu Bot',
'emoji-code' => 'Emoji kodea',
- 'help' => 'Laguntza',
- 'icon' => 'Ikonoa',
- 'info' => 'info',
- 'name' => 'izena',
+ 'help' => 'Laguntza',
+ 'icon' => 'Ikonoa',
+ 'info' => 'info',
+ 'name' => 'izena',
];
diff --git a/lang/eu/bug.php b/lang/eu/bug.php
index e6a2d3134..59ae7e4b0 100644
--- a/lang/eu/bug.php
+++ b/lang/eu/bug.php
@@ -12,15 +12,15 @@
*/
return [
- 'bug-report' => 'Akatsen txostena',
+ 'bug-report' => 'Akatsen txostena',
'bug-report-description' => 'Salatu gune baten errore bat',
- 'enter-description' => 'Deskribatu arazoa ahalik eta onena',
- 'enter-email' => 'Mesedez, sartu zure posta elektronikoa',
- 'enter-title' => 'Aukeratu izenburu egokia',
- 'enter-username' => 'Mesedez, sartu zure erabiltzaile izena',
- 'high' => 'High',
- 'low' => 'Behe',
- 'priority' => 'Lehentasuna',
- 'priority-description' => 'Aukeratu oso altua akatsa benetan gunea erabiltzeko arazoa bada.',
- 'very-high' => 'Oso altua',
+ 'enter-description' => 'Deskribatu arazoa ahalik eta onena',
+ 'enter-email' => 'Mesedez, sartu zure posta elektronikoa',
+ 'enter-title' => 'Aukeratu izenburu egokia',
+ 'enter-username' => 'Mesedez, sartu zure erabiltzaile izena',
+ 'high' => 'High',
+ 'low' => 'Behe',
+ 'priority' => 'Lehentasuna',
+ 'priority-description' => 'Aukeratu oso altua akatsa benetan gunea erabiltzeko arazoa bada.',
+ 'very-high' => 'Oso altua',
];
diff --git a/lang/eu/common.php b/lang/eu/common.php
index ac7377ea5..c34ce83fe 100644
--- a/lang/eu/common.php
+++ b/lang/eu/common.php
@@ -12,179 +12,179 @@
*/
return [
- 'a-an-art' => '',
- 'about' => 'Guri buruz',
- 'account' => 'Kontu-',
- 'achievement-title' => 'awesome',
+ 'a-an-art' => '',
+ 'about' => 'Guri buruz',
+ 'account' => 'Kontu-',
+ 'achievement-title' => 'awesome',
'achievement-unlocked' => '": Izena" lorpena desblokeatu duzu',
- 'active' => 'Aktiboak',
- 'active-warning' => 'Abisu aktiboa',
- 'add' => 'Gehitu',
- 'added' => 'azkenak',
- 'amount' => 'Zenbateko',
- 'anonymous' => 'Anonymous',
- 'author' => 'Egilea',
- 'balance' => 'Balance',
- 'blacklist' => 'Bezeroen zerrenda beltza',
- 'buffer' => 'buffer',
- 'bug' => 'Salatu akats bat',
- 'but' => 'Baina',
- 'cancel' => 'Utzi',
- 'category' => 'Kategoria',
- 'categories' => 'Kategoriak',
- 'close' => 'Itxi',
- 'comment' => 'Iruzkina',
- 'comments' => 'Oharrak',
- 'community' => 'Komunitatea',
- 'contact' => 'Harremanetarako',
- 'contact-desc' => 'Kontaktu eskaera jabeari bidaliko zaio eta ahalik eta lasterren itzuliko zaizu',
- 'contact-header' => 'Kaixo',
- 'create' => 'Sortu',
- 'created_at' => 'Sortutako At',
- 'day' => 'eguna',
- 'delete' => 'ezabatu',
- 'delete-your-comment' => 'Ezabatu iruzkina',
- 'description' => 'deskribapena',
- 'direction' => 'Zuzendaritza',
- 'disable' => 'Desgaitu',
- 'doubleup_activated' => 'Kargatze bikoitza modua aktibatuta dago',
- 'download' => 'Deskarga',
- 'edit' => 'Editatu',
- 'edit-your-comment' => 'Editatu zure iruzkina',
- 'email' => 'E-mail',
- 'email-blacklist' => 'Bidali zerrenda beltza',
- 'email-whitelist' => 'Emaila zerrenda zuri',
+ 'active' => 'Aktiboak',
+ 'active-warning' => 'Abisu aktiboa',
+ 'add' => 'Gehitu',
+ 'added' => 'azkenak',
+ 'amount' => 'Zenbateko',
+ 'anonymous' => 'Anonymous',
+ 'author' => 'Egilea',
+ 'balance' => 'Balance',
+ 'blacklist' => 'Bezeroen zerrenda beltza',
+ 'buffer' => 'buffer',
+ 'bug' => 'Salatu akats bat',
+ 'but' => 'Baina',
+ 'cancel' => 'Utzi',
+ 'category' => 'Kategoria',
+ 'categories' => 'Kategoriak',
+ 'close' => 'Itxi',
+ 'comment' => 'Iruzkina',
+ 'comments' => 'Oharrak',
+ 'community' => 'Komunitatea',
+ 'contact' => 'Harremanetarako',
+ 'contact-desc' => 'Kontaktu eskaera jabeari bidaliko zaio eta ahalik eta lasterren itzuliko zaizu',
+ 'contact-header' => 'Kaixo',
+ 'create' => 'Sortu',
+ 'created_at' => 'Sortutako At',
+ 'day' => 'eguna',
+ 'delete' => 'ezabatu',
+ 'delete-your-comment' => 'Ezabatu iruzkina',
+ 'description' => 'deskribapena',
+ 'direction' => 'Zuzendaritza',
+ 'disable' => 'Desgaitu',
+ 'doubleup_activated' => 'Kargatze bikoitza modua aktibatuta dago',
+ 'download' => 'Deskarga',
+ 'edit' => 'Editatu',
+ 'edit-your-comment' => 'Editatu zure iruzkina',
+ 'email' => 'E-mail',
+ 'email-blacklist' => 'Bidali zerrenda beltza',
+ 'email-whitelist' => 'Emaila zerrenda zuri',
'email-list-notactive' => 'Posta elektronikoen zerrenda zuri / zerrenda beltzaren sistema ez dago aktibatuta',
- 'enable' => 'gaitu',
- 'enter' => 'Sartu',
- 'error' => 'Akatsa',
- 'everyday' => 'Egunero',
- 'expired' => 'iraungi',
- 'extra' => 'Aparteko',
- 'extra-stats' => 'Extra-estatistikak',
- 'faq' => 'ohiko galderak',
- 'files' => 'Fitxategiak',
- 'fl_token' => 'Freeleech Token',
- 'fl_tokens' => 'Freeleech tokenak',
- 'for' => 'egiteko',
- 'forum' => 'Foroa',
- 'free' => 'Free',
- 'freeleech_activated' => 'Freeleech global modua aktibatuta dago',
- 'global' => 'Global',
- 'group' => 'Group',
- 'groups' => 'Taldeak',
- 'hidden' => 'Ezkutuko',
- 'high-speeds' => 'Abiadura handiak',
- 'home' => 'Hasiera',
- 'hot' => 'Hot!',
- 'hour' => 'Ordua',
- 'huge' => 'Erraldoia',
- 'info' => 'info',
- 'internal' => 'Barne',
- 'ip' => 'IP',
- 'is-allowed' => 'baimenduta dago',
- 'large' => 'Handiak',
- 'latest' => 'Azken',
- 'latest-posts' => 'Azken mezuak',
- 'latest-topics' => 'Azken Gaiak',
- 'legal' => 'Lege',
- 'legend' => 'Kondairak',
- 'lists' => 'zerrendak',
- 'lock-account' => 'Blokeatu kontua',
- 'logout' => 'Saioa amaitu',
- 'members' => 'Bazkideek',
- 'message' => 'Mezua',
- 'minute' => 'Minute',
- 'moderated-by' => 'Moderatuta',
- 'moderation' => 'Moderazioa',
- 'moderation-approve' => 'Onartu',
- 'moderation-postpone' => 'atzeratu',
- 'moderation-reject' => 'Ukatu',
- 'month' => 'hilabetea',
- 'months' => 'hilabeteak',
- 'my' => 'Nire',
- 'name' => 'izena',
- 'navigation' => 'Itsasketa',
- 'new' => 'New!',
- 'new-adj' => 'New',
- 'news' => 'Berriak',
- 'next' => 'hurrengo',
- 'no' => 'Ez',
- 'no-comments' => 'Oraindik ez dago iruzkinik',
- 'no-result' => 'Ez dago kontsultarik datu-basean emaitza',
- 'notifications' => 'jakinarazpenak',
- 'older-than' => 'Baino zaharragoa',
- 'oldest' => 'Zaharrena',
- 'openreg_activated' => 'Ireki erregistroa aktibatuta',
- 'order-by' => 'Ordenatu',
- 'other' => 'Beste',
- 'pages' => 'orrialdeak',
- 'password' => 'Pasahitza',
- 'patron' => 'Babeslea bihurtu',
- 'pending-torrents' => 'Zain dauden torrenteak',
- 'personal' => 'Personal',
- 'plural-suffix' => 's',
- 'port' => 'Port',
- 'position' => 'Kargua',
- 'posts' => 'Mezuak',
- 'powered-by' => 'UNIT3D-k egina',
- 'preview' => 'Aurreikusi',
- 'previous' => 'aurreko',
- 'progress' => 'Eraikitzen',
- 'publish' => 'Argitaratu',
- 'quantity' => 'Kopurua',
- 'quick-search' => 'Bilaketa azkarra',
- 'ratio' => 'Ratio',
- 'reason' => 'Arrazoia',
- 'remove' => 'Kendu',
- 'report' => 'txostena',
- 'resend' => 'Berbidali',
- 'reporter' => 'Reporter',
- 'required' => 'Beharrezko',
- 'results' => 'Emaitzak',
- 'rss-system' => 'RSS sistema',
- 'rules' => 'arauak',
- 'save' => 'Save',
- 'search' => 'Search',
- 'search-results' => 'Bilaketaren emaitzak',
- 'search-results-desc' => 'Mesedez, ikusi zure emaitzak azpian',
- 'second' => 'bigarren',
- 'select' => 'Aukeratu',
- 'sort' => 'Sort',
- 'special' => 'Berezia',
- 'staff' => 'Langileak',
- 'staff-tools' => 'Langileen tresnak',
- 'stats' => 'estatistikak',
- 'status' => 'Egoera',
- 'sticked' => 'sticked',
- 'submit' => 'Bidali',
- 'subscriptions' => 'Harpidetzak',
- 'teams' => 'Taldeak',
- 'terms' => 'Erabilera baldintzak',
- 'times' => 'Times',
- 'title' => 'Izenburua',
- 'top-bountied' => 'Gehien Bountied',
- 'topics' => 'Gaiak',
- 'tracker-codes' => 'Tracker kodeak',
- 'type' => 'Mota',
- 'type-verb' => 'Mota',
- 'types' => 'motak',
- 'genre' => 'generoa',
- 'genres' => 'generoak',
- 'action' => 'Ekintza',
- 'actions' => 'Ekintzak',
- 'unknown' => 'ezezaguna',
+ 'enable' => 'gaitu',
+ 'enter' => 'Sartu',
+ 'error' => 'Akatsa',
+ 'everyday' => 'Egunero',
+ 'expired' => 'iraungi',
+ 'extra' => 'Aparteko',
+ 'extra-stats' => 'Extra-estatistikak',
+ 'faq' => 'ohiko galderak',
+ 'files' => 'Fitxategiak',
+ 'fl_token' => 'Freeleech Token',
+ 'fl_tokens' => 'Freeleech tokenak',
+ 'for' => 'egiteko',
+ 'forum' => 'Foroa',
+ 'free' => 'Free',
+ 'freeleech_activated' => 'Freeleech global modua aktibatuta dago',
+ 'global' => 'Global',
+ 'group' => 'Group',
+ 'groups' => 'Taldeak',
+ 'hidden' => 'Ezkutuko',
+ 'high-speeds' => 'Abiadura handiak',
+ 'home' => 'Hasiera',
+ 'hot' => 'Hot!',
+ 'hour' => 'Ordua',
+ 'huge' => 'Erraldoia',
+ 'info' => 'info',
+ 'internal' => 'Barne',
+ 'ip' => 'IP',
+ 'is-allowed' => 'baimenduta dago',
+ 'large' => 'Handiak',
+ 'latest' => 'Azken',
+ 'latest-posts' => 'Azken mezuak',
+ 'latest-topics' => 'Azken Gaiak',
+ 'legal' => 'Lege',
+ 'legend' => 'Kondairak',
+ 'lists' => 'zerrendak',
+ 'lock-account' => 'Blokeatu kontua',
+ 'logout' => 'Saioa amaitu',
+ 'members' => 'Bazkideek',
+ 'message' => 'Mezua',
+ 'minute' => 'Minute',
+ 'moderated-by' => 'Moderatuta',
+ 'moderation' => 'Moderazioa',
+ 'moderation-approve' => 'Onartu',
+ 'moderation-postpone' => 'atzeratu',
+ 'moderation-reject' => 'Ukatu',
+ 'month' => 'hilabetea',
+ 'months' => 'hilabeteak',
+ 'my' => 'Nire',
+ 'name' => 'izena',
+ 'navigation' => 'Itsasketa',
+ 'new' => 'New!',
+ 'new-adj' => 'New',
+ 'news' => 'Berriak',
+ 'next' => 'hurrengo',
+ 'no' => 'Ez',
+ 'no-comments' => 'Oraindik ez dago iruzkinik',
+ 'no-result' => 'Ez dago kontsultarik datu-basean emaitza',
+ 'notifications' => 'jakinarazpenak',
+ 'older-than' => 'Baino zaharragoa',
+ 'oldest' => 'Zaharrena',
+ 'openreg_activated' => 'Ireki erregistroa aktibatuta',
+ 'order-by' => 'Ordenatu',
+ 'other' => 'Beste',
+ 'pages' => 'orrialdeak',
+ 'password' => 'Pasahitza',
+ 'patron' => 'Babeslea bihurtu',
+ 'pending-torrents' => 'Zain dauden torrenteak',
+ 'personal' => 'Personal',
+ 'plural-suffix' => 's',
+ 'port' => 'Port',
+ 'position' => 'Kargua',
+ 'posts' => 'Mezuak',
+ 'powered-by' => 'UNIT3D-k egina',
+ 'preview' => 'Aurreikusi',
+ 'previous' => 'aurreko',
+ 'progress' => 'Eraikitzen',
+ 'publish' => 'Argitaratu',
+ 'quantity' => 'Kopurua',
+ 'quick-search' => 'Bilaketa azkarra',
+ 'ratio' => 'Ratio',
+ 'reason' => 'Arrazoia',
+ 'remove' => 'Kendu',
+ 'report' => 'txostena',
+ 'resend' => 'Berbidali',
+ 'reporter' => 'Reporter',
+ 'required' => 'Beharrezko',
+ 'results' => 'Emaitzak',
+ 'rss-system' => 'RSS sistema',
+ 'rules' => 'arauak',
+ 'save' => 'Save',
+ 'search' => 'Search',
+ 'search-results' => 'Bilaketaren emaitzak',
+ 'search-results-desc' => 'Mesedez, ikusi zure emaitzak azpian',
+ 'second' => 'bigarren',
+ 'select' => 'Aukeratu',
+ 'sort' => 'Sort',
+ 'special' => 'Berezia',
+ 'staff' => 'Langileak',
+ 'staff-tools' => 'Langileen tresnak',
+ 'stats' => 'estatistikak',
+ 'status' => 'Egoera',
+ 'sticked' => 'sticked',
+ 'submit' => 'Bidali',
+ 'subscriptions' => 'Harpidetzak',
+ 'teams' => 'Taldeak',
+ 'terms' => 'Erabilera baldintzak',
+ 'times' => 'Times',
+ 'title' => 'Izenburua',
+ 'top-bountied' => 'Gehien Bountied',
+ 'topics' => 'Gaiak',
+ 'tracker-codes' => 'Tracker kodeak',
+ 'type' => 'Mota',
+ 'type-verb' => 'Mota',
+ 'types' => 'motak',
+ 'genre' => 'generoa',
+ 'genres' => 'generoak',
+ 'action' => 'Ekintza',
+ 'actions' => 'Ekintzak',
+ 'unknown' => 'ezezaguna',
'unlocked-achievement' => 'Desblokeatu duzu: lorpenen lorpena',
- 'upload' => 'Upload',
- 'upload-guide' => 'Kargatu gida',
- 'user' => 'Erabiltzaileak',
- 'username' => 'Erabiltzaile izena',
- 'users' => 'erabiltzaileak',
- 'view' => 'ikusi',
- 'view-all' => 'Ikusi guztiak',
- 'warnings' => 'abisu',
- 'year' => 'Urtea',
- 'yes' => 'Bai',
- 'your' => 'Zure',
- 'your-comment' => 'Zure iruzkina',
+ 'upload' => 'Upload',
+ 'upload-guide' => 'Kargatu gida',
+ 'user' => 'Erabiltzaileak',
+ 'username' => 'Erabiltzaile izena',
+ 'users' => 'erabiltzaileak',
+ 'view' => 'ikusi',
+ 'view-all' => 'Ikusi guztiak',
+ 'warnings' => 'abisu',
+ 'year' => 'Urtea',
+ 'yes' => 'Bai',
+ 'your' => 'Zure',
+ 'your-comment' => 'Zure iruzkina',
];
diff --git a/lang/eu/email.php b/lang/eu/email.php
index 07b6d61ee..54c80a3f7 100644
--- a/lang/eu/email.php
+++ b/lang/eu/email.php
@@ -12,46 +12,46 @@
*/
return [
- 'activate-account' => 'Aktibatu kontua',
- 'ban-reason' => 'Arrazoia',
- 'banned-footer' => 'Hori lortzen duzu arauak ez jarraitzeagatik',
- 'banned-header' => 'Debekatuta egon zara',
- 'bug-description' => 'Arazoa',
- 'bug-footer' => 'Konpondu kaka hori',
- 'bug-header' => 'Errore berrien txostena',
- 'bug-priority' => 'Lehentasuna',
- 'bug-title' => 'Akatsen izenburua',
- 'contact-header' => 'Kontaktuaren mezu berria',
- 'contact-message' => 'Mezua',
- 'contact-name' => 'izena',
+ 'activate-account' => 'Aktibatu kontua',
+ 'ban-reason' => 'Arrazoia',
+ 'banned-footer' => 'Hori lortzen duzu arauak ez jarraitzeagatik',
+ 'banned-header' => 'Debekatuta egon zara',
+ 'bug-description' => 'Arazoa',
+ 'bug-footer' => 'Konpondu kaka hori',
+ 'bug-header' => 'Errore berrien txostena',
+ 'bug-priority' => 'Lehentasuna',
+ 'bug-title' => 'Akatsen izenburua',
+ 'contact-header' => 'Kontaktuaren mezu berria',
+ 'contact-message' => 'Mezua',
+ 'contact-name' => 'izena',
'fail-login-greeting' => 'Kontuaren saio hasiera huts egin du.',
- 'fail-login-line1' => 'Akats bat saioa hasi da zure kontuan.',
- 'fail-login-line2' => 'Eskaera hau: ip (originaria) izaten zen: denbora',
- 'fail-login-subject' => 'Huts egin du saioa hasteko jakinarazpena',
- 'footer-link' => 'Arazoak izanez gero: ekintzaTestua botoian klik egitean, kopiatu eta itsatsi URLa zure web nabigatzailean:',
- 'invite-header' => 'Gonbidapena',
- 'invite-invited' => 'Gonbidatu zaitu',
- 'invite-message' => 'Mezua',
- 'invite-signup' => 'Erregistratu orain',
- 'newreply-header' => 'Zure gaian erantzun berria dago',
- 'newreply-message' => 'Mezua',
- 'newreply-replied' => 'Zure gaia erantzun du',
- 'newreply-view' => 'Ikusi orain',
- 'no-email-found' => 'Ezin izan dugu mezu hau aurkitu gure sisteman!',
- 'register-code' => 'Kontuaren aktibazioa osatzeko, egin klik beheko botoian',
- 'register-footer' => 'Goiko botoiak funtzionatzen ez badu, kopiatu eta itsatsi URLa zure nabigatzaileen helbide barran',
- 'register-header' => 'Hi! Eskerrik asko erregistratzeagatik',
- 'report-comment' => 'Iruzkina',
- 'report-email' => 'E-mail',
- 'report-header' => 'Kaixo administratzailea, esteka bat jakinarazi da',
- 'report-link' => 'Link',
- 'report-link-hash' => 'Benetako esteka',
- 'thanks' => 'Eskerrik asko erabiltzeagatik',
- 'unban-footer' => 'Ongi etorri!',
- 'unban-header' => 'Ez zara debekatuta',
- 'unban-reason' => 'Arrazoia',
- 'username-reminder' => 'Azkenean erabiltzaile-izeneko eskaera bat bidali dizugu gure aplikazioan. Zure erabiltzaile-izena da',
- 'username-sent' => 'Zure erabiltzaile-izena zure helbide elektronikora bidali da!',
- 'disabled-header' => 'Zure kontua desgaituta egon da',
- 'pruned-header' => 'Zure kontua inaustuta dago',
+ 'fail-login-line1' => 'Akats bat saioa hasi da zure kontuan.',
+ 'fail-login-line2' => 'Eskaera hau: ip (originaria) izaten zen: denbora',
+ 'fail-login-subject' => 'Huts egin du saioa hasteko jakinarazpena',
+ 'footer-link' => 'Arazoak izanez gero: ekintzaTestua botoian klik egitean, kopiatu eta itsatsi URLa zure web nabigatzailean:',
+ 'invite-header' => 'Gonbidapena',
+ 'invite-invited' => 'Gonbidatu zaitu',
+ 'invite-message' => 'Mezua',
+ 'invite-signup' => 'Erregistratu orain',
+ 'newreply-header' => 'Zure gaian erantzun berria dago',
+ 'newreply-message' => 'Mezua',
+ 'newreply-replied' => 'Zure gaia erantzun du',
+ 'newreply-view' => 'Ikusi orain',
+ 'no-email-found' => 'Ezin izan dugu mezu hau aurkitu gure sisteman!',
+ 'register-code' => 'Kontuaren aktibazioa osatzeko, egin klik beheko botoian',
+ 'register-footer' => 'Goiko botoiak funtzionatzen ez badu, kopiatu eta itsatsi URLa zure nabigatzaileen helbide barran',
+ 'register-header' => 'Hi! Eskerrik asko erregistratzeagatik',
+ 'report-comment' => 'Iruzkina',
+ 'report-email' => 'E-mail',
+ 'report-header' => 'Kaixo administratzailea, esteka bat jakinarazi da',
+ 'report-link' => 'Link',
+ 'report-link-hash' => 'Benetako esteka',
+ 'thanks' => 'Eskerrik asko erabiltzeagatik',
+ 'unban-footer' => 'Ongi etorri!',
+ 'unban-header' => 'Ez zara debekatuta',
+ 'unban-reason' => 'Arrazoia',
+ 'username-reminder' => 'Azkenean erabiltzaile-izeneko eskaera bat bidali dizugu gure aplikazioan. Zure erabiltzaile-izena da',
+ 'username-sent' => 'Zure erabiltzaile-izena zure helbide elektronikora bidali da!',
+ 'disabled-header' => 'Zure kontua desgaituta egon da',
+ 'pruned-header' => 'Zure kontua inaustuta dago',
];
diff --git a/lang/eu/forum.php b/lang/eu/forum.php
index fd8ee2081..1cab0992a 100644
--- a/lang/eu/forum.php
+++ b/lang/eu/forum.php
@@ -12,63 +12,63 @@
*/
return [
- 'action' => 'Ekintza',
- 'activity' => 'Jarduera',
- 'approved' => 'Onartutako',
- 'author' => 'Egilea',
- 'bug' => 'Akats',
- 'category-quick-search' => 'Gaiaren izena bilaketa azkarra (kategoria barruan)',
- 'close-topic' => 'Blokeatu gaia',
- 'closed' => 'itxita',
- 'create-new-topic' => 'Sortu gai berria',
- 'created' => 'Sortu',
- 'current' => 'Oraingo',
- 'delete-topic' => 'Ezabatu gai hau',
- 'denied' => 'Ukatu',
- 'dislike-post' => 'Ez zaio mezu hau',
- 'display-forum' => 'Erakutsi gaiak',
- 'edit-post' => 'Editatu mezua',
- 'edit-topic' => 'Editatu gaia',
- 'forum' => 'Foroa',
- 'forums' => 'Foroak',
- 'implemented' => 'ezarri',
- 'in' => 'in',
- 'invalid' => 'baliogabea',
- 'label' => 'Label',
- 'label-system' => 'Etiketa Sistema',
- 'last-message' => 'Azken mezua',
- 'last-post-info' => 'Azken mezuaren informazioa',
- 'latest' => 'Azken',
- 'like-post' => 'Post hau gustatzen zait',
- 'meta-category' => 'Kategoriako foroen zerrenda',
- 'moderation' => 'Moderazioa',
- 'name' => 'izena',
- 'not-connected' => 'Konektatuta egon behar duzu',
- 'not-subscribed' => 'Ez da harpidetuta',
- 'open' => 'Open',
- 'open-topic' => 'Ireki gaia',
- 'permalink' => 'permalink',
- 'pin' => 'pin',
- 'post' => 'Post',
- 'post-quick-search' => 'Post gorputzaren bilaketa azkarra',
- 'posts' => 'Mezuak',
- 'quote' => 'Zita',
- 'read-topic' => 'Irakurri Topic',
- 'replies' => 'Erantzunak',
- 'send-new-topic' => 'Gorde gai hau',
- 'solved' => 'konpondu',
- 'state' => 'Estatu',
- 'stats' => 'estatistikak',
- 'subscribed' => 'harpidetutako',
+ 'action' => 'Ekintza',
+ 'activity' => 'Jarduera',
+ 'approved' => 'Onartutako',
+ 'author' => 'Egilea',
+ 'bug' => 'Akats',
+ 'category-quick-search' => 'Gaiaren izena bilaketa azkarra (kategoria barruan)',
+ 'close-topic' => 'Blokeatu gaia',
+ 'closed' => 'itxita',
+ 'create-new-topic' => 'Sortu gai berria',
+ 'created' => 'Sortu',
+ 'current' => 'Oraingo',
+ 'delete-topic' => 'Ezabatu gai hau',
+ 'denied' => 'Ukatu',
+ 'dislike-post' => 'Ez zaio mezu hau',
+ 'display-forum' => 'Erakutsi gaiak',
+ 'edit-post' => 'Editatu mezua',
+ 'edit-topic' => 'Editatu gaia',
+ 'forum' => 'Foroa',
+ 'forums' => 'Foroak',
+ 'implemented' => 'ezarri',
+ 'in' => 'in',
+ 'invalid' => 'baliogabea',
+ 'label' => 'Label',
+ 'label-system' => 'Etiketa Sistema',
+ 'last-message' => 'Azken mezua',
+ 'last-post-info' => 'Azken mezuaren informazioa',
+ 'latest' => 'Azken',
+ 'like-post' => 'Post hau gustatzen zait',
+ 'meta-category' => 'Kategoriako foroen zerrenda',
+ 'moderation' => 'Moderazioa',
+ 'name' => 'izena',
+ 'not-connected' => 'Konektatuta egon behar duzu',
+ 'not-subscribed' => 'Ez da harpidetuta',
+ 'open' => 'Open',
+ 'open-topic' => 'Ireki gaia',
+ 'permalink' => 'permalink',
+ 'pin' => 'pin',
+ 'post' => 'Post',
+ 'post-quick-search' => 'Post gorputzaren bilaketa azkarra',
+ 'posts' => 'Mezuak',
+ 'quote' => 'Zita',
+ 'read-topic' => 'Irakurri Topic',
+ 'replies' => 'Erantzunak',
+ 'send-new-topic' => 'Gorde gai hau',
+ 'solved' => 'konpondu',
+ 'state' => 'Estatu',
+ 'stats' => 'estatistikak',
+ 'subscribed' => 'harpidetutako',
'subscription-quick-search' => 'Gaiaren izena bilaketa bizkorra (harpidetzak barruan)',
- 'suggestion' => 'Iradokizun',
- 'topic' => 'Gai',
- 'topic-closed' => 'Gaia hau itxita dago',
- 'topic-name' => 'Gaiaren izena',
- 'topic-quick-search' => 'Gaiaren izena bilaketa bizkorra',
- 'topic-title' => 'Gai honen izenburua',
- 'topics' => 'Gaiak',
- 'unpin' => 'Unpin',
- 'view-all' => 'Ikusi Gaiak guztiak',
- 'views' => 'Views',
+ 'suggestion' => 'Iradokizun',
+ 'topic' => 'Gai',
+ 'topic-closed' => 'Gaia hau itxita dago',
+ 'topic-name' => 'Gaiaren izena',
+ 'topic-quick-search' => 'Gaiaren izena bilaketa bizkorra',
+ 'topic-title' => 'Gai honen izenburua',
+ 'topics' => 'Gaiak',
+ 'unpin' => 'Unpin',
+ 'view-all' => 'Ikusi Gaiak guztiak',
+ 'views' => 'Views',
];
diff --git a/lang/eu/graveyard.php b/lang/eu/graveyard.php
index 430adb6aa..053351aec 100644
--- a/lang/eu/graveyard.php
+++ b/lang/eu/graveyard.php
@@ -12,15 +12,15 @@
*/
return [
- 'dead' => 'Dead',
- 'graveyard' => 'hilerriko',
- 'guidelines' => 'Guidelines',
+ 'dead' => 'Dead',
+ 'graveyard' => 'hilerriko',
+ 'guidelines' => 'Guidelines',
'guidelines-content' => '1) Ezin dituzu zeure kargatzeak berpiztu.
2) Erosi ezin duzun zerbait berpiztu ere ez.',
- 'howto' => 'Heres araua',
- 'howto-desc1' => 'Hazia behar duzu : 30 egun izenda dadin, ondo ateratzeko. Kasu horretan, zure uneko hazkuntza',
- 'howto-desc2' => 'Saritu egingo zaizu',
- 'howto-hits' => 'hits',
- 'pending' => 'Zain',
- 'resurrect' => 'berpizteko',
- 'reward' => 'Freeleech tokenak',
+ 'howto' => 'Heres araua',
+ 'howto-desc1' => 'Hazia behar duzu : 30 egun izenda dadin, ondo ateratzeko. Kasu horretan, zure uneko hazkuntza',
+ 'howto-desc2' => 'Saritu egingo zaizu',
+ 'howto-hits' => 'hits',
+ 'pending' => 'Zain',
+ 'resurrect' => 'berpizteko',
+ 'reward' => 'Freeleech tokenak',
];
diff --git a/lang/eu/notification.php b/lang/eu/notification.php
index bff0867c2..74364fd42 100644
--- a/lang/eu/notification.php
+++ b/lang/eu/notification.php
@@ -12,14 +12,14 @@
*/
return [
- 'date' => 'data',
- 'delete' => 'ezabatu',
- 'delete-all' => 'Ezabatu jakinarazpen guztiak',
- 'mark-all-read' => 'Markatu guztiak irakurri gisa',
- 'mark-read' => 'Markatu irakurri gisa',
- 'message' => 'Mezua',
+ 'date' => 'data',
+ 'delete' => 'ezabatu',
+ 'delete-all' => 'Ezabatu jakinarazpen guztiak',
+ 'mark-all-read' => 'Markatu guztiak irakurri gisa',
+ 'mark-read' => 'Markatu irakurri gisa',
+ 'message' => 'Mezua',
'no-notifications' => 'Ez da jakinarazpenik aurkitu',
- 'notifications' => 'jakinarazpenak',
- 'read' => 'irakurri',
- 'title' => 'Izenburua',
+ 'notifications' => 'jakinarazpenak',
+ 'read' => 'irakurri',
+ 'title' => 'Izenburua',
];
diff --git a/lang/eu/page.php b/lang/eu/page.php
index 729f65ec7..4d9a4aff8 100644
--- a/lang/eu/page.php
+++ b/lang/eu/page.php
@@ -12,28 +12,28 @@
*/
return [
- 'aboutus-advantage' => 'Abantaila',
- 'aboutus-advantage1' => 'Bizi ditugun kideak eta langileak ditugu, HD video / audio eta laguntza teknikoa munduan ondo versed.',
- 'aboutus-advantage2' => 'Zinema eta telebistarako grina handiarekin batera, gehien gustatzen zaizkigun aukeretako bat ere eskaintzen dugu: "FANRES!" Eskerrik asko gure edukitzaileentzako.',
- 'aboutus-advantage3' => 'Dohaintza onartzen dugun bitartean, gunea mantentzeko eta martxan jartzeko moduan, ez da inolako pankartak edo pankartak izango gunean. Ez diguzu eske.',
- 'aboutus-advantage4' => 'Gure erkidegoak ez du inolako arazorik izan adin txikian. Gure langile eta langileen artean, beti egon ginen hemen laguntzeko. Ziren zure esperientzia: title izenekoa zoragarria dela ziurtatzea.',
- 'aboutus-advantage5' => 'Gure zerbitzua egunero erabiltzen da mundu osoko jende askok. Gure codebase funtzionaltasuna eta segurtasuna zaintzen ditugula frogatu dugu eta fidagarria eta fidagarria da. Gure garatzaileek egunero lan egiten dute benetan nex-gen codebase bat eskaintzeko.',
- 'aboutus-header' => 'Kaixo',
- 'aboutus-rules' => 'Behar duguna',
- 'aboutus-rules1' => 'Komunitateko kide aktiboa izatea! Horrek esan nahi du elkarrizketetan sartzea modu eraginkorrean, onartutako edukia gehitu eta beste erabiltzaileei laguntzeko.',
- 'aboutus-rules2' => 'Osoa arauak irakurtzea eta mesedez errespetatu!',
- 'aboutus-rules3' => 'Egin iradokizunak! Ildo horretatik, izenburua egunero hobetzen saiatzen gara. Ez dugu esaten iradokizun bakoitza erabiliko dela, baina ez da inoiz minik ikusten ideia berriak ikustea.',
- 'aboutus-welcome' => 'Hitz egin dezagun',
- 'aboutus-welcome-desc' => ': title izeneko komunitateko Movie / TV / FANRES datu-basea da. Datu guztiak pieza bakoitza 2017. urteaz geroztik gehitu da: izenburuak ardatz nagusia da HD edukia, erabiltzaile aktibo proaktiboa, codebase zoragarria / segurua eta langile talde lagungarria eta atsegina.',
- 'blacklist-browsers' => 'Nabigatzaile',
- 'blacklist-btclient' => 'BitTorrent Client',
- 'blacklist-clients' => 'Bezeroak',
- 'blacklist-desc' => 'Ondorengo arakatzaileak eta Bittorrent bezeroak zerrenda beltzekoak / debekatuta daude Aktibatuta: titulua',
- 'blacklist-webbrowser' => 'Web arakatzailea',
+ 'aboutus-advantage' => 'Abantaila',
+ 'aboutus-advantage1' => 'Bizi ditugun kideak eta langileak ditugu, HD video / audio eta laguntza teknikoa munduan ondo versed.',
+ 'aboutus-advantage2' => 'Zinema eta telebistarako grina handiarekin batera, gehien gustatzen zaizkigun aukeretako bat ere eskaintzen dugu: "FANRES!" Eskerrik asko gure edukitzaileentzako.',
+ 'aboutus-advantage3' => 'Dohaintza onartzen dugun bitartean, gunea mantentzeko eta martxan jartzeko moduan, ez da inolako pankartak edo pankartak izango gunean. Ez diguzu eske.',
+ 'aboutus-advantage4' => 'Gure erkidegoak ez du inolako arazorik izan adin txikian. Gure langile eta langileen artean, beti egon ginen hemen laguntzeko. Ziren zure esperientzia: title izenekoa zoragarria dela ziurtatzea.',
+ 'aboutus-advantage5' => 'Gure zerbitzua egunero erabiltzen da mundu osoko jende askok. Gure codebase funtzionaltasuna eta segurtasuna zaintzen ditugula frogatu dugu eta fidagarria eta fidagarria da. Gure garatzaileek egunero lan egiten dute benetan nex-gen codebase bat eskaintzeko.',
+ 'aboutus-header' => 'Kaixo',
+ 'aboutus-rules' => 'Behar duguna',
+ 'aboutus-rules1' => 'Komunitateko kide aktiboa izatea! Horrek esan nahi du elkarrizketetan sartzea modu eraginkorrean, onartutako edukia gehitu eta beste erabiltzaileei laguntzeko.',
+ 'aboutus-rules2' => 'Osoa arauak irakurtzea eta mesedez errespetatu!',
+ 'aboutus-rules3' => 'Egin iradokizunak! Ildo horretatik, izenburua egunero hobetzen saiatzen gara. Ez dugu esaten iradokizun bakoitza erabiliko dela, baina ez da inoiz minik ikusten ideia berriak ikustea.',
+ 'aboutus-welcome' => 'Hitz egin dezagun',
+ 'aboutus-welcome-desc' => ': title izeneko komunitateko Movie / TV / FANRES datu-basea da. Datu guztiak pieza bakoitza 2017. urteaz geroztik gehitu da: izenburuak ardatz nagusia da HD edukia, erabiltzaile aktibo proaktiboa, codebase zoragarria / segurua eta langile talde lagungarria eta atsegina.',
+ 'blacklist-browsers' => 'Nabigatzaile',
+ 'blacklist-btclient' => 'BitTorrent Client',
+ 'blacklist-clients' => 'Bezeroak',
+ 'blacklist-desc' => 'Ondorengo arakatzaileak eta Bittorrent bezeroak zerrenda beltzekoak / debekatuta daude Aktibatuta: titulua',
+ 'blacklist-webbrowser' => 'Web arakatzailea',
'blacklist-emaildomain' => 'Blokeatutako domeinua',
- 'email-blacklist-desc' => 'Ondorengo posta elektronikoaren domeinuak erabiltzen dira blokeatuta. Ezin duzu erregistratu edo bidali gonbidatu honako hauek.',
- 'email-whitelist-desc' => 'Ondorengo posta elektronikoaren domeinuak erabiltzeko erabiliko diren posta elektroniko domeinu bakarrak dira. Erregistratu edo Gonbidatu bat bidali ondorengoa baino ezin duzu bidali.',
- 'staff-group' => 'Group',
- 'staff-title' => 'Izenburua',
+ 'email-blacklist-desc' => 'Ondorengo posta elektronikoaren domeinuak erabiltzen dira blokeatuta. Ezin duzu erregistratu edo bidali gonbidatu honako hauek.',
+ 'email-whitelist-desc' => 'Ondorengo posta elektronikoaren domeinuak erabiltzeko erabiliko diren posta elektroniko domeinu bakarrak dira. Erregistratu edo Gonbidatu bat bidali ondorengoa baino ezin duzu bidali.',
+ 'staff-group' => 'Group',
+ 'staff-title' => 'Izenburua',
'whitelist-emaildomain' => 'Konfiantzazko domeinua',
];
diff --git a/lang/eu/pagination.php b/lang/eu/pagination.php
index 675a8c3f2..53ca75e63 100644
--- a/lang/eu/pagination.php
+++ b/lang/eu/pagination.php
@@ -24,5 +24,5 @@ return [
*/
'previous' => '« Aurrekoa',
- 'next' => 'Hurrengoa »',
+ 'next' => 'Hurrengoa »',
];
diff --git a/lang/eu/passwords.php b/lang/eu/passwords.php
index 250cb6589..c1d430b76 100644
--- a/lang/eu/passwords.php
+++ b/lang/eu/passwords.php
@@ -24,8 +24,8 @@ return [
*/
'password' => 'Pasahitzak gutxienez sei karaktere eduki behar dituzte eta bat etorri behar dira.',
- 'reset' => 'Zure pasahitza berrezarri da!',
- 'sent' => 'Zure pasahitza berrezartzeko esteka postaz bidali dizugu!',
- 'token' => 'Pasahitza berreskuratzeko tokena baliogabea da.',
- 'user' => 'Ezin izan dugu helbide elektroniko horrekin bat datorren erabiltzailerik aurkitu.',
+ 'reset' => 'Zure pasahitza berrezarri da!',
+ 'sent' => 'Zure pasahitza berrezartzeko esteka postaz bidali dizugu!',
+ 'token' => 'Pasahitza berreskuratzeko tokena baliogabea da.',
+ 'user' => 'Ezin izan dugu helbide elektroniko horrekin bat datorren erabiltzailerik aurkitu.',
];
diff --git a/lang/eu/pm.php b/lang/eu/pm.php
index 0608affd1..2a5a2c8b0 100644
--- a/lang/eu/pm.php
+++ b/lang/eu/pm.php
@@ -12,28 +12,28 @@
*/
return [
- 'create' => 'Sortu',
- 'delete' => 'ezabatu',
+ 'create' => 'Sortu',
+ 'delete' => 'ezabatu',
'enter-subject' => 'Sartu gaia',
- 'from' => 'aurrera',
- 'inbox' => 'Sarrerako ontzia',
+ 'from' => 'aurrera',
+ 'inbox' => 'Sarrerako ontzia',
'mark-all-read' => 'Markatu mezu guztiak irakurritako gisa',
- 'message' => 'Mezua',
- 'messages' => 'Mezuak',
- 'new' => 'Mezu berria',
- 'outbox' => 'Irteerako ontzia',
- 'private' => 'Pribatua',
- 'read' => 'irakurri',
- 'received-at' => 'Jasotakoan',
- 'refresh' => 'Freskatu',
- 'reply' => 'Erantzun',
- 'search' => 'Bilatu gaiaren arabera',
- 'select' => 'Hautatu Erabiltzaile bat',
- 'send' => 'Bidali PM',
- 'send-to' => 'Bidali PM To',
- 'sent' => 'bidalia',
- 'sent-at' => 'At bidalita',
- 'subject' => 'Gaia',
- 'to' => 'to',
- 'unread' => 'Irakurri gabeko',
+ 'message' => 'Mezua',
+ 'messages' => 'Mezuak',
+ 'new' => 'Mezu berria',
+ 'outbox' => 'Irteerako ontzia',
+ 'private' => 'Pribatua',
+ 'read' => 'irakurri',
+ 'received-at' => 'Jasotakoan',
+ 'refresh' => 'Freskatu',
+ 'reply' => 'Erantzun',
+ 'search' => 'Bilatu gaiaren arabera',
+ 'select' => 'Hautatu Erabiltzaile bat',
+ 'send' => 'Bidali PM',
+ 'send-to' => 'Bidali PM To',
+ 'sent' => 'bidalia',
+ 'sent-at' => 'At bidalita',
+ 'subject' => 'Gaia',
+ 'to' => 'to',
+ 'unread' => 'Irakurri gabeko',
];
diff --git a/lang/eu/poll.php b/lang/eu/poll.php
index f233478f6..91b5959e6 100644
--- a/lang/eu/poll.php
+++ b/lang/eu/poll.php
@@ -12,18 +12,18 @@
*/
return [
- 'add-option' => 'Gehitu aukera',
- 'create-poll' => 'Sortu inkesta',
- 'current' => 'Oraingo inkesta (k)',
- 'delete-option' => 'Ezabatu aukera',
+ 'add-option' => 'Gehitu aukera',
+ 'create-poll' => 'Sortu inkesta',
+ 'current' => 'Oraingo inkesta (k)',
+ 'delete-option' => 'Ezabatu aukera',
'multiple-choice' => 'Aukera anitzeko inkesta da. Hautatu nahi dituzun erantzunak.',
- 'option' => 'aukera',
- 'poll' => 'inkesta',
- 'polls' => 'Inkestak',
- 'results' => 'Inkesta emaitzak',
- 'title' => 'Izenburua',
- 'total' => 'Boto kopurua guztira',
- 'vote' => 'Bozkatu',
- 'vote-now' => 'Lortu botoa orain!',
- 'votes' => 'Botoak',
+ 'option' => 'aukera',
+ 'poll' => 'inkesta',
+ 'polls' => 'Inkestak',
+ 'results' => 'Inkesta emaitzak',
+ 'title' => 'Izenburua',
+ 'total' => 'Boto kopurua guztira',
+ 'vote' => 'Bozkatu',
+ 'vote-now' => 'Lortu botoa orain!',
+ 'votes' => 'Botoak',
];
diff --git a/lang/eu/request.php b/lang/eu/request.php
index 55a5dfcca..ede396745 100644
--- a/lang/eu/request.php
+++ b/lang/eu/request.php
@@ -12,67 +12,67 @@
*/
return [
- 'add-request' => 'Gehitu eskaera',
- 'age' => 'Adina',
- 'all-requests' => 'Eskaera guztiak',
- 'approve' => 'Onartu',
- 'bounty' => 'Bounty',
- 'bounty-claimed' => 'Bounty-ek aldarrikatu zuen',
- 'bounty-unclaimed' => 'Bounty ez da aldarrikatu',
- 'category' => 'Kategoria',
- 'claim' => 'Erreklamazio',
- 'claim-anon-choose' => 'Aukeratu jakintsuan',
- 'claim-as-anon' => 'Nahi al duzu hori aldarrikatu nahi izanez gero',
- 'claim-now' => 'Erreklamatu orain',
- 'claimed' => 'erreklamatu',
- 'current' => 'Oraingo',
- 'delete' => 'Ezabatu eskaera hau',
+ 'add-request' => 'Gehitu eskaera',
+ 'age' => 'Adina',
+ 'all-requests' => 'Eskaera guztiak',
+ 'approve' => 'Onartu',
+ 'bounty' => 'Bounty',
+ 'bounty-claimed' => 'Bounty-ek aldarrikatu zuen',
+ 'bounty-unclaimed' => 'Bounty ez da aldarrikatu',
+ 'category' => 'Kategoria',
+ 'claim' => 'Erreklamazio',
+ 'claim-anon-choose' => 'Aukeratu jakintsuan',
+ 'claim-as-anon' => 'Nahi al duzu hori aldarrikatu nahi izanez gero',
+ 'claim-now' => 'Erreklamatu orain',
+ 'claimed' => 'erreklamatu',
+ 'current' => 'Oraingo',
+ 'delete' => 'Ezabatu eskaera hau',
'delete-confirmation' => 'Ziur al zaude eskaera hau ezabatu nahi duzula',
- 'delete-filled' => 'Eskaera bete ezean bakarrik ezabatu daiteke',
- 'description' => 'deskribapena',
- 'dont-have-bps' => 'Ez duzu nahikoa bonus',
- 'edit-request' => 'Editatu eskaera',
- 'enter-bp' => 'Sartu bonus puntuak (gutxienez 100)',
- 'enter-hash' => 'Sartu kargatutako Torrent informazioaren hasiera',
- 'fill' => 'Bete',
- 'fill-request' => 'Bete eskaera hau',
- 'filled' => 'Beteta',
- 'filled-by' => 'Bete',
- 'for' => 'egiteko',
- 'fulfill' => 'betetzeko',
- 'last-vote' => 'Azken botoa',
- 'my-requests' => 'Nire eskaerak',
- 'no' => 'Ez,',
- 'no-imdb-id' => 'Eskaera guztiak IMDB zenbakia eduki behar ditu',
- 'no-privileges' => 'Errorea: zure eskaera eskubideak desgaitu egin dira',
- 'no-privileges-desc' => 'Errore bat dela uste baduzu, jarri harremanetan Langileak',
- 'no-refunds' => 'Sortze, betetze eta oparien BON trukeak behin betikoak dira!
Ez da itzulketarik!',
- 'pending' => 'Zain',
- 'reason' => 'Arrazoia',
- 'reject' => 'Ukatu',
- 'report' => 'Salatu txostena',
- 'request' => 'Eskaera',
- 'request-details' => 'Eskatu xehetasunak',
- 'requested-by' => 'Eskatutakoa',
- 'requests' => 'eskaerak',
- 'required' => 'Beharrezko',
- 'reset' => 'Berrezarri',
- 'reset-confirmation' => 'Ziur al zaude eskaera hau berrezarri nahi duzula',
- 'reset-request' => 'Berrezarri eskaera hau',
- 'reward' => 'Saria',
- 'reward-desc' => 'Zenbat bonus puntu saritu nahi duzu? Gutxieneko 100 BP',
- 'reward-from' => 'aurrera',
- 'title' => 'Izenburua',
- 'torrent-hash' => 'Torrent Hash',
- 'total-bounty' => 'Bounty guztira',
- 'type' => 'Mota',
- 'unclaim' => 'Erreklamatu eskaera hau',
- 'unfilled' => 'unfilled',
- 'view-filled' => 'Ikusi bete',
- 'view-unfilled' => 'Ez da hutsik ikusi',
- 'vote' => 'Bozkatu',
- 'vote-that' => 'Bozkatu eskaera hau',
- 'voters' => 'Boto-emaileen',
- 'votes' => 'Botoak',
- 'yes' => 'Bai',
+ 'delete-filled' => 'Eskaera bete ezean bakarrik ezabatu daiteke',
+ 'description' => 'deskribapena',
+ 'dont-have-bps' => 'Ez duzu nahikoa bonus',
+ 'edit-request' => 'Editatu eskaera',
+ 'enter-bp' => 'Sartu bonus puntuak (gutxienez 100)',
+ 'enter-hash' => 'Sartu kargatutako Torrent informazioaren hasiera',
+ 'fill' => 'Bete',
+ 'fill-request' => 'Bete eskaera hau',
+ 'filled' => 'Beteta',
+ 'filled-by' => 'Bete',
+ 'for' => 'egiteko',
+ 'fulfill' => 'betetzeko',
+ 'last-vote' => 'Azken botoa',
+ 'my-requests' => 'Nire eskaerak',
+ 'no' => 'Ez,',
+ 'no-imdb-id' => 'Eskaera guztiak IMDB zenbakia eduki behar ditu',
+ 'no-privileges' => 'Errorea: zure eskaera eskubideak desgaitu egin dira',
+ 'no-privileges-desc' => 'Errore bat dela uste baduzu, jarri harremanetan Langileak',
+ 'no-refunds' => 'Sortze, betetze eta oparien BON trukeak behin betikoak dira!
Ez da itzulketarik!',
+ 'pending' => 'Zain',
+ 'reason' => 'Arrazoia',
+ 'reject' => 'Ukatu',
+ 'report' => 'Salatu txostena',
+ 'request' => 'Eskaera',
+ 'request-details' => 'Eskatu xehetasunak',
+ 'requested-by' => 'Eskatutakoa',
+ 'requests' => 'eskaerak',
+ 'required' => 'Beharrezko',
+ 'reset' => 'Berrezarri',
+ 'reset-confirmation' => 'Ziur al zaude eskaera hau berrezarri nahi duzula',
+ 'reset-request' => 'Berrezarri eskaera hau',
+ 'reward' => 'Saria',
+ 'reward-desc' => 'Zenbat bonus puntu saritu nahi duzu? Gutxieneko 100 BP',
+ 'reward-from' => 'aurrera',
+ 'title' => 'Izenburua',
+ 'torrent-hash' => 'Torrent Hash',
+ 'total-bounty' => 'Bounty guztira',
+ 'type' => 'Mota',
+ 'unclaim' => 'Erreklamatu eskaera hau',
+ 'unfilled' => 'unfilled',
+ 'view-filled' => 'Ikusi bete',
+ 'view-unfilled' => 'Ez da hutsik ikusi',
+ 'vote' => 'Bozkatu',
+ 'vote-that' => 'Bozkatu eskaera hau',
+ 'voters' => 'Boto-emaileen',
+ 'votes' => 'Botoak',
+ 'yes' => 'Bai',
];
diff --git a/lang/eu/rss.php b/lang/eu/rss.php
index 8ed1460b3..ff2497eac 100644
--- a/lang/eu/rss.php
+++ b/lang/eu/rss.php
@@ -12,19 +12,19 @@
*/
return [
- 'create' => 'Sortu',
+ 'create' => 'Sortu',
'create-private-feed' => 'Sortu RSS iturri pribatua',
- 'create-public-feed' => 'Sortu RSS iturri publikoa',
- 'delete' => 'ezabatu',
- 'edit' => 'Editatu',
- 'edit-private-feed' => 'Editatu RSS iturri pribatua',
- 'edit-public-feed' => 'Editatu RSS iturri publikoa',
- 'feed' => 'feed',
- 'feeds' => 'jarioak',
- 'name' => 'izena',
- 'public' => 'Publiko',
- 'private' => 'Pribatua',
- 'rss' => 'RSS',
- 'rss-feed' => 'RSS jarioa',
- 'type' => 'Mota',
+ 'create-public-feed' => 'Sortu RSS iturri publikoa',
+ 'delete' => 'ezabatu',
+ 'edit' => 'Editatu',
+ 'edit-private-feed' => 'Editatu RSS iturri pribatua',
+ 'edit-public-feed' => 'Editatu RSS iturri publikoa',
+ 'feed' => 'feed',
+ 'feeds' => 'jarioak',
+ 'name' => 'izena',
+ 'public' => 'Publiko',
+ 'private' => 'Pribatua',
+ 'rss' => 'RSS',
+ 'rss-feed' => 'RSS jarioa',
+ 'type' => 'Mota',
];
diff --git a/lang/eu/staff.php b/lang/eu/staff.php
index da845a93e..01ea9304a 100644
--- a/lang/eu/staff.php
+++ b/lang/eu/staff.php
@@ -12,48 +12,48 @@
*/
return [
- 'audit-log' => 'Jarduera-erregistroa',
- 'articles' => 'artikuluak',
- 'applications' => 'eskaerak',
- 'bans-log' => 'Debekuen erregistroa',
- 'blocks' => 'Bloke',
- 'bot' => 'Bot',
- 'bots' => 'Errobotak',
- 'chat' => 'Txata',
- 'config-manager' => 'Konfigurazio kudeatzailea',
- 'dashboard' => 'arbela',
- 'failed-login-log' => 'Huts egin du saioa hasteko erregistroa',
- 'flush-ghost-peers' => 'Kolpatu Ghost Peers',
- 'forums' => 'Foroak',
- 'frontend' => 'interfazeaName',
- 'general-tools' => 'Tresna orokorrak',
- 'groups' => 'Taldeak',
- 'invites-log' => 'Gonbidapenen erregistroa',
- 'laravel-log' => 'Laravel erregistroa',
- 'links' => 'Loturak',
- 'logs' => 'Agerraldiak',
- 'mass-pm' => 'Meza ministroa',
- 'mass-validate-users' => 'Mass Validate Users',
- 'moderation' => 'Moderazioa',
- 'pages' => 'orrialdeak',
- 'please-moderate' => 'Mesedez, moderatu Torrent hau!',
- 'polls' => 'Inkestak',
- 'reports-log' => 'Txostenen erregistroa',
- 'rss' => 'RSS',
- 'staff-dashboard' => 'Langileen panela',
- 'torrent-categories' => 'Torrent Kategoriak',
- 'torrent-moderation' => 'Torrent moderazioa',
- 'torrent-tools' => 'Torrent tresnak',
- 'torrent-types' => 'Torrent motak',
- 'torrents' => 'torrents',
- 'user-gifting' => 'Erabiltzaileentzako oparia',
- 'user-notes' => 'Erabiltzailearen Oharren Erregistroa',
- 'user-search' => 'Erabiltzaileen bilaketa',
- 'user-tools' => 'Erabiltzaile tresnak',
- 'warnings-log' => 'Abisuen erregistroa',
- 'you-have' => 'Baduzu',
+ 'audit-log' => 'Jarduera-erregistroa',
+ 'articles' => 'artikuluak',
+ 'applications' => 'eskaerak',
+ 'bans-log' => 'Debekuen erregistroa',
+ 'blocks' => 'Bloke',
+ 'bot' => 'Bot',
+ 'bots' => 'Errobotak',
+ 'chat' => 'Txata',
+ 'config-manager' => 'Konfigurazio kudeatzailea',
+ 'dashboard' => 'arbela',
+ 'failed-login-log' => 'Huts egin du saioa hasteko erregistroa',
+ 'flush-ghost-peers' => 'Kolpatu Ghost Peers',
+ 'forums' => 'Foroak',
+ 'frontend' => 'interfazeaName',
+ 'general-tools' => 'Tresna orokorrak',
+ 'groups' => 'Taldeak',
+ 'invites-log' => 'Gonbidapenen erregistroa',
+ 'laravel-log' => 'Laravel erregistroa',
+ 'links' => 'Loturak',
+ 'logs' => 'Agerraldiak',
+ 'mass-pm' => 'Meza ministroa',
+ 'mass-validate-users' => 'Mass Validate Users',
+ 'moderation' => 'Moderazioa',
+ 'pages' => 'orrialdeak',
+ 'please-moderate' => 'Mesedez, moderatu Torrent hau!',
+ 'polls' => 'Inkestak',
+ 'reports-log' => 'Txostenen erregistroa',
+ 'rss' => 'RSS',
+ 'staff-dashboard' => 'Langileen panela',
+ 'torrent-categories' => 'Torrent Kategoriak',
+ 'torrent-moderation' => 'Torrent moderazioa',
+ 'torrent-tools' => 'Torrent tresnak',
+ 'torrent-types' => 'Torrent motak',
+ 'torrents' => 'torrents',
+ 'user-gifting' => 'Erabiltzaileentzako oparia',
+ 'user-notes' => 'Erabiltzailearen Oharren Erregistroa',
+ 'user-search' => 'Erabiltzaileen bilaketa',
+ 'user-tools' => 'Erabiltzaile tresnak',
+ 'warnings-log' => 'Abisuen erregistroa',
+ 'you-have' => 'Baduzu',
'possible-leech-cheaters' => 'Posibleak Cheaters',
- 'chat-tools' => 'Txat tresnak',
- 'flush-chat' => 'Garbitu Chatbox',
- 'seedboxes' => 'Erregistratutako Seedboxes',
+ 'chat-tools' => 'Txat tresnak',
+ 'flush-chat' => 'Garbitu Chatbox',
+ 'seedboxes' => 'Erregistratutako Seedboxes',
];
diff --git a/lang/eu/stat.php b/lang/eu/stat.php
index f6a5e6f32..fc211e9fc 100644
--- a/lang/eu/stat.php
+++ b/lang/eu/stat.php
@@ -12,40 +12,40 @@
*/
return [
- 'by-count' => 'Konden arabera',
- 'by-data' => 'Datuen arabera',
- 'by-volume' => 'Bolumenaren arabera',
- 'group' => 'Group',
- 'groups' => 'Taldeak',
- 'nerd-stats' => 'Nerd estatistikak',
- 'nerd-stats-desc' => 'Estatistikak maite ditugu. Hemen aurkituko ditugu garrantzitsuak',
- 'registration-date' => 'Izena emateko data',
- 'request-fulfilled' => 'Eskaera bete da',
- 'request-not-fulfilled' => 'Eskaera ez da bete',
+ 'by-count' => 'Konden arabera',
+ 'by-data' => 'Datuen arabera',
+ 'by-volume' => 'Bolumenaren arabera',
+ 'group' => 'Group',
+ 'groups' => 'Taldeak',
+ 'nerd-stats' => 'Nerd estatistikak',
+ 'nerd-stats-desc' => 'Estatistikak maite ditugu. Hemen aurkituko ditugu garrantzitsuak',
+ 'registration-date' => 'Izena emateko data',
+ 'request-fulfilled' => 'Eskaera bete da',
+ 'request-not-fulfilled' => 'Eskaera ez da bete',
'request-pending-aproval' => 'Eskatu aldez aurretik eskatuta',
- 'select-category' => 'Hautatu beheko kategoria bat',
- 'site-stats' => 'Guneko estatistikak',
- 'stats' => 'estatistikak',
- 'stats-format' => 'Top 100 formatuan agertzen diren estatistikak',
- 'top-bankers' => 'Gehien bankariak',
- 'top-bountied' => 'Gehien Bountied',
- 'top-completed' => 'Bukatu da',
- 'top-dead' => 'Top Dead',
- 'top-downloaded' => 'Gehien deskargatutako Torrents',
- 'top-downloaders' => 'Deskargatzaile nagusiak',
- 'top-dying' => 'Gehien hiltzen',
- 'top-leeched' => 'Gehien leeched',
- 'top-leechers' => 'Top Leechers',
- 'top-seeded' => 'Top Seeded',
- 'top-seeding' => 'Goi bilketa',
- 'top-seeders' => 'Gehien Seeders',
- 'top-seedsize' => 'Gehien Seedsize',
- 'top-seedtime' => 'Gehien haziak',
- 'top-uploaders' => 'Gehien kargatzaileak',
- 'total-download' => 'Guztira deskargatzea',
- 'total-torrents' => 'Guztira Torrents',
- 'total-traffic' => 'Trafikoa guztira',
- 'total-upload' => 'Guztira kargatzea',
- 'users-in-group' => 'Taldeko erabiltzaileak',
- 'users-per-group' => 'Talde bakoitzeko erabiltzaileak',
+ 'select-category' => 'Hautatu beheko kategoria bat',
+ 'site-stats' => 'Guneko estatistikak',
+ 'stats' => 'estatistikak',
+ 'stats-format' => 'Top 100 formatuan agertzen diren estatistikak',
+ 'top-bankers' => 'Gehien bankariak',
+ 'top-bountied' => 'Gehien Bountied',
+ 'top-completed' => 'Bukatu da',
+ 'top-dead' => 'Top Dead',
+ 'top-downloaded' => 'Gehien deskargatutako Torrents',
+ 'top-downloaders' => 'Deskargatzaile nagusiak',
+ 'top-dying' => 'Gehien hiltzen',
+ 'top-leeched' => 'Gehien leeched',
+ 'top-leechers' => 'Top Leechers',
+ 'top-seeded' => 'Top Seeded',
+ 'top-seeding' => 'Goi bilketa',
+ 'top-seeders' => 'Gehien Seeders',
+ 'top-seedsize' => 'Gehien Seedsize',
+ 'top-seedtime' => 'Gehien haziak',
+ 'top-uploaders' => 'Gehien kargatzaileak',
+ 'total-download' => 'Guztira deskargatzea',
+ 'total-torrents' => 'Guztira Torrents',
+ 'total-traffic' => 'Trafikoa guztira',
+ 'total-upload' => 'Guztira kargatzea',
+ 'users-in-group' => 'Taldeko erabiltzaileak',
+ 'users-per-group' => 'Talde bakoitzeko erabiltzaileak',
];
diff --git a/lang/eu/torrent.php b/lang/eu/torrent.php
index 019d4b423..89c89932c 100644
--- a/lang/eu/torrent.php
+++ b/lang/eu/torrent.php
@@ -12,197 +12,197 @@
*/
return [
- 'activity' => 'Jarduera',
- 'age' => 'Adina',
- 'agent' => 'Agent',
- 'alive' => 'Alive',
- 'announce-url' => 'Iragarri URLa',
- 'announce-url-desc' => 'Mesedez, erabili aurreko URLa torrent berria sortzean. Torrent-a erabili nahi baduzu gunetik deskargatu gabe, bandera pribatua eta iturria ezarri behar dituzu: source',
- 'announce-url-desc-url' => 'Arazoak izatea? Ikusi Gure Gida HEMEN',
- 'announce-url-desc2' => 'TMDB eta IMDB beharrezkoak dira igoerak egiteko! Kartelak / Atzeko planoak eta ExtraInfo grabatzeko erabiltzen da',
- 'approved' => 'Onartutako',
- 'audio' => 'Audio',
- 'bon-tipped' => 'BON Galdutakoa',
- 'bookmark' => 'Bookmark',
- 'bookmarks' => 'Bookmarks',
- 'bump' => 'igo',
- 'cant-upload' => 'Errorea: zure kargatzeko eskubideak desgaituta daude',
- 'cant-upload-desc' => 'Hau sentitzen baduzu, errorea da. Jarri harremanetan langileak',
- 'cards' => 'Txartelak',
- 'cards-view' => 'Torrent Txartelak Ikusi',
- 'categories' => 'Kategoriak',
- 'category' => 'Kategoria',
- 'client' => 'Bezero',
- 'commited' => 'konprometitua',
- 'completed' => 'Osatua',
- 'completed_at' => 'Amaitutakoan',
- 'completed-not-seeding' => 'Deskarga hau amaitu duzu, baina ez duzu denbora gehiago hartzen',
- 'created_at' => 'Sortua',
- 'credited' => 'ordainduko',
- 'current' => 'Oraingo',
- 'current-filters' => 'Uneko iragazkiak',
- 'currently-leeching' => 'Gaur egun Leeching',
- 'currently-seeding' => 'Gaur egun hazten da',
- 'dead-torrent' => 'Torrent hila',
- 'dead-torrents' => 'Dead Torrents',
- 'delete-bookmark' => 'Ezabatu laster-marka hau',
- 'description' => 'deskribapena',
- 'discounts' => 'deskontuak',
- 'double-upload' => 'Kargatu bikoitza',
- 'download-all' => 'Deskargatu dena',
- 'download-check' => 'Deskargatu egiaztatu',
- 'downloaded' => 'Jaitsitako',
- 'dying-torrent' => 'Torrent hiltzen',
- 'dying-torrents' => 'Torrents hiltzen',
- 'encode-settings' => 'Kode ezarpenak',
- 'estimated-ratio' => 'Deskargatutakoaren arabera kalkulatutako ratioa',
- 'failed' => 'Huts',
- 'feature' => 'Feature',
- 'featured' => 'Nabarmenduak',
- 'featured-desc' => 'Nabarmendutako torrenteak dira % 100 doan eta Kargatu bikoitza!',
- 'featured-until' => 'Hau Nabarmenena da Torrent arte',
- 'file' => 'file',
- 'filters' => 'iragazkiak',
- 'fl-tokens-left' => 'Baduzu : token utzi',
- 'freeleech' => 'Freeleech',
- 'freeleech-token' => 'Freeleech Token',
- 'general' => 'General',
- 'genre' => 'generoa',
- 'global-double-upload' => 'Kargatu bikoitza orokorra',
- 'global-freeleech' => 'Global Freeleech',
- 'grant' => 'Grant',
- 'greater-than' => 'Baino handiagoa',
- 'grouping' => 'Elkartzea',
- 'groupings' => 'Batasun',
- 'grouping-categories' => 'Taldekatze kategoriak',
+ 'activity' => 'Jarduera',
+ 'age' => 'Adina',
+ 'agent' => 'Agent',
+ 'alive' => 'Alive',
+ 'announce-url' => 'Iragarri URLa',
+ 'announce-url-desc' => 'Mesedez, erabili aurreko URLa torrent berria sortzean. Torrent-a erabili nahi baduzu gunetik deskargatu gabe, bandera pribatua eta iturria ezarri behar dituzu: source',
+ 'announce-url-desc-url' => 'Arazoak izatea? Ikusi Gure Gida HEMEN',
+ 'announce-url-desc2' => 'TMDB eta IMDB beharrezkoak dira igoerak egiteko! Kartelak / Atzeko planoak eta ExtraInfo grabatzeko erabiltzen da',
+ 'approved' => 'Onartutako',
+ 'audio' => 'Audio',
+ 'bon-tipped' => 'BON Galdutakoa',
+ 'bookmark' => 'Bookmark',
+ 'bookmarks' => 'Bookmarks',
+ 'bump' => 'igo',
+ 'cant-upload' => 'Errorea: zure kargatzeko eskubideak desgaituta daude',
+ 'cant-upload-desc' => 'Hau sentitzen baduzu, errorea da. Jarri harremanetan langileak',
+ 'cards' => 'Txartelak',
+ 'cards-view' => 'Torrent Txartelak Ikusi',
+ 'categories' => 'Kategoriak',
+ 'category' => 'Kategoria',
+ 'client' => 'Bezero',
+ 'commited' => 'konprometitua',
+ 'completed' => 'Osatua',
+ 'completed_at' => 'Amaitutakoan',
+ 'completed-not-seeding' => 'Deskarga hau amaitu duzu, baina ez duzu denbora gehiago hartzen',
+ 'created_at' => 'Sortua',
+ 'credited' => 'ordainduko',
+ 'current' => 'Oraingo',
+ 'current-filters' => 'Uneko iragazkiak',
+ 'currently-leeching' => 'Gaur egun Leeching',
+ 'currently-seeding' => 'Gaur egun hazten da',
+ 'dead-torrent' => 'Torrent hila',
+ 'dead-torrents' => 'Dead Torrents',
+ 'delete-bookmark' => 'Ezabatu laster-marka hau',
+ 'description' => 'deskribapena',
+ 'discounts' => 'deskontuak',
+ 'double-upload' => 'Kargatu bikoitza',
+ 'download-all' => 'Deskargatu dena',
+ 'download-check' => 'Deskargatu egiaztatu',
+ 'downloaded' => 'Jaitsitako',
+ 'dying-torrent' => 'Torrent hiltzen',
+ 'dying-torrents' => 'Torrents hiltzen',
+ 'encode-settings' => 'Kode ezarpenak',
+ 'estimated-ratio' => 'Deskargatutakoaren arabera kalkulatutako ratioa',
+ 'failed' => 'Huts',
+ 'feature' => 'Feature',
+ 'featured' => 'Nabarmenduak',
+ 'featured-desc' => 'Nabarmendutako torrenteak dira % 100 doan eta Kargatu bikoitza!',
+ 'featured-until' => 'Hau Nabarmenena da Torrent arte',
+ 'file' => 'file',
+ 'filters' => 'iragazkiak',
+ 'fl-tokens-left' => 'Baduzu : token utzi',
+ 'freeleech' => 'Freeleech',
+ 'freeleech-token' => 'Freeleech Token',
+ 'general' => 'General',
+ 'genre' => 'generoa',
+ 'global-double-upload' => 'Kargatu bikoitza orokorra',
+ 'global-freeleech' => 'Global Freeleech',
+ 'grant' => 'Grant',
+ 'greater-than' => 'Baino handiagoa',
+ 'grouping' => 'Elkartzea',
+ 'groupings' => 'Batasun',
+ 'grouping-categories' => 'Taldekatze kategoriak',
'grouping-categories-desc' => 'Zein kategoria gustatuko litzaizuke?',
- 'grouping-results' => 'Emaitzak taldekatzea',
- 'groupings-view' => 'Multzoen ikuspegia',
- 'have-completed' => 'Osatua',
- 'have-downloaded' => 'Jaitsitako',
- 'have-not-completed' => 'Ez da osatu',
- 'have-not-downloaded' => 'Ez deskargatu',
- 'health' => 'Osasun',
- 'history' => 'Historia',
- 'hitrun' => 'H & R?',
- 'hit-and-runs' => 'Hit eta exekutatu zenbatzen',
- 'immune' => 'Inmunologikoan?',
- 'info' => 'info',
- 'internal' => 'Barne',
- 'internal-release' => 'Barne oharra',
- 'last-seed-activity' => 'Azken hazia jarduera',
- 'last-seeder' => 'Oraindik geratzen zaigun azkeneko hazlea zara! (gutxienez 3 aldiz deskargatu da)',
- 'last-update' => 'Azken eguneratzea',
- 'leave-tip' => 'Utzi aholkua',
- 'leecher' => 'Leecher',
- 'leechers' => 'Izainak',
- 'leeching' => 'leeching',
- 'left' => 'Ezker',
- 'legendary-seeder' => 'Seed legenda',
- 'legendary-torrent' => 'Kondairako torrent',
- 'list' => 'zerrenda',
- 'me' => 'me',
- 'media-info' => 'MediaInfo',
- 'media-info-parser' => 'MediaInfo Analizatzailea',
- 'media-info-paste' => 'Itsatsi MediaInfo hustea hemen',
- 'meta-desc' => 'Deskargatu: izena abiadura maximoa',
- 'moderation' => 'Moderazioa',
- 'movies' => 'Movies',
- 'mvp' => 'MVP',
- 'my-active-torrents' => 'Nire torrent aktiboak',
- 'name' => 'izena',
- 'no-bookmarks' => 'Ez da laster-marka aurkitu.',
- 'no-discounts' => 'Gaur egun ez dago deskonturik',
- 'no-meta' => 'Ez da metadata aurkitu',
- 'no-privileges' => 'Ezin duzu fitxategi hau deskargatu. Informazio gehiago nahi izanez gero, ikusi beheko azpian',
- 'no-privileges-desc' => 'Mesedez, konpondu ez diren emaitzak gainetik deskargatzeko botoia ager daitezen',
- 'not-completed' => 'Deskargatzen hasi baina ez da osatu',
- 'not-downloaded' => 'Ez deskargatu',
- 'old-torrent' => 'Torrent zaharra',
- 'optional' => 'Aukerako',
- 'original-output' => 'Erakutsi / Ezkutatu jatorrizko irteera',
- 'participant' => 'Parte-hartzaile',
- 'passed' => 'pasatu',
- 'peers' => 'ikaskideek',
- 'pending' => 'Zain',
- 'personal-freeleech' => 'Freeleech pertsonala',
- 'poster' => 'kartela',
- 'poster-view' => 'Posterraren ikuspegia',
- 'posters' => 'Kartelak',
- 'prewarn' => 'Prewarned?',
- 'progress' => 'Eraikitzen',
- 'quick-comment' => 'Iruzkina',
- 'quick-tip' => 'Aholku azkarra zenbatekoak',
- 'rated' => 'Rated',
- 'rating' => 'Balorazioa',
- 'ready' => 'Fitxategi hau deskargatzeko prest dago',
- 'rejected' => 'Baztertuta',
- 'released' => 'argitaratua',
- 'remaining' => 'Geratzen',
- 'request-reseed' => 'Eskatu eskaera',
- 'requires-reseed' => 'Eskatutakoa behar da',
- 'resurrections' => 'resurrections',
- 'revoke' => 'Baliogabetu',
- 'rss' => 'RSS',
- 'runtime' => 'Runtime',
- 'satisfied_in' => 'Pozik nago',
- 'say-thanks' => 'Gogoratu eskerrak eta hazia ahalik eta gehien esateko',
- 'sd-content' => 'SD edukia',
- 'search' => 'Search',
- 'seed-time' => 'Seed denbora',
- 'seeder' => 'seeder',
- 'seeders' => 'seeders',
- 'seeding' => 'Seeding',
- 'seedsize' => 'Seedsize',
- 'seedtime' => 'Seedtime',
- 'short-completed' => 'C',
- 'short-leechs' => 'L',
- 'short-seeds' => 'S',
- 'show-files' => 'Erakutsi fitxategiak',
- 'similar' => 'Antzeko Torrents',
- 'size' => 'Tamaina',
- 'special' => 'Berezia',
- 'special-freeleech' => 'Freeleech bereziak',
- 'started' => 'Hasita',
- 'status' => 'Egoera',
- 'statistics' => 'Estatistikak',
- 'stats' => 'estatistikak',
- 'sticky' => 'Itsaskor',
- 'stream-optimized' => 'Stream optimizatua',
- 'subtitle' => 'azpititulua',
- 'team-player' => 'Taldeko jokalaria',
- 'thank' => 'Eskerrik',
- 'thanked' => 'eskertu',
- 'thanks' => 'eskerrik asko',
- 'thanks-given' => 'Eskerrik asko emandakoa',
- 'times' => 'Times',
- 'tip-jar' => 'Tip jar',
- 'title' => 'Izenburua',
- 'titles' => 'Izenburuak',
- 'top-completed' => 'Bukatu da',
- 'top-dead' => 'Gora hildakoak',
- 'top-dying' => 'Gehien hiltzen da',
- 'top-leeched' => 'Gehien leeched',
- 'top-seeded' => 'Gehien landutakoa',
- 'torrent' => 'torrent',
- 'torrent-request' => 'Torrent eskaera',
- 'torrent-tips' => 'In Total : BON guztira kargatzaileari eman zaio, eta horietatik : erabiltzaileak zuretzako dira',
- 'torrent-tips-desc' => 'Hau erabilgarri dagoen bonus puntuetatik kenduko da',
- 'torrents' => 'torrents',
- 'trailer' => 'Ikusi trailerra',
- 'type' => 'Mota',
- 'types' => 'motak',
- 'unbookmark' => 'Unbookmark',
- 'unsatisfieds' => 'Unsatisfieds',
- 'unsticky' => 'Unsticky',
- 'updated' => 'eguneratua',
- 'updated_at' => 'Eguneratuta',
- 'uploaded' => 'uploaded',
- 'uploaded-by' => 'Bidalitakoaren arabera',
- 'uploader' => 'Uploader',
- 'use-fl-token' => 'Erabili Freeleech Token bat',
- 'video' => 'Video',
- 'view-more' => 'Ikusi gehiago',
- 'view-trailer' => 'Ikusi trailerra',
- 'votes' => 'Botoak',
+ 'grouping-results' => 'Emaitzak taldekatzea',
+ 'groupings-view' => 'Multzoen ikuspegia',
+ 'have-completed' => 'Osatua',
+ 'have-downloaded' => 'Jaitsitako',
+ 'have-not-completed' => 'Ez da osatu',
+ 'have-not-downloaded' => 'Ez deskargatu',
+ 'health' => 'Osasun',
+ 'history' => 'Historia',
+ 'hitrun' => 'H & R?',
+ 'hit-and-runs' => 'Hit eta exekutatu zenbatzen',
+ 'immune' => 'Inmunologikoan?',
+ 'info' => 'info',
+ 'internal' => 'Barne',
+ 'internal-release' => 'Barne oharra',
+ 'last-seed-activity' => 'Azken hazia jarduera',
+ 'last-seeder' => 'Oraindik geratzen zaigun azkeneko hazlea zara! (gutxienez 3 aldiz deskargatu da)',
+ 'last-update' => 'Azken eguneratzea',
+ 'leave-tip' => 'Utzi aholkua',
+ 'leecher' => 'Leecher',
+ 'leechers' => 'Izainak',
+ 'leeching' => 'leeching',
+ 'left' => 'Ezker',
+ 'legendary-seeder' => 'Seed legenda',
+ 'legendary-torrent' => 'Kondairako torrent',
+ 'list' => 'zerrenda',
+ 'me' => 'me',
+ 'media-info' => 'MediaInfo',
+ 'media-info-parser' => 'MediaInfo Analizatzailea',
+ 'media-info-paste' => 'Itsatsi MediaInfo hustea hemen',
+ 'meta-desc' => 'Deskargatu: izena abiadura maximoa',
+ 'moderation' => 'Moderazioa',
+ 'movies' => 'Movies',
+ 'mvp' => 'MVP',
+ 'my-active-torrents' => 'Nire torrent aktiboak',
+ 'name' => 'izena',
+ 'no-bookmarks' => 'Ez da laster-marka aurkitu.',
+ 'no-discounts' => 'Gaur egun ez dago deskonturik',
+ 'no-meta' => 'Ez da metadata aurkitu',
+ 'no-privileges' => 'Ezin duzu fitxategi hau deskargatu. Informazio gehiago nahi izanez gero, ikusi beheko azpian',
+ 'no-privileges-desc' => 'Mesedez, konpondu ez diren emaitzak gainetik deskargatzeko botoia ager daitezen',
+ 'not-completed' => 'Deskargatzen hasi baina ez da osatu',
+ 'not-downloaded' => 'Ez deskargatu',
+ 'old-torrent' => 'Torrent zaharra',
+ 'optional' => 'Aukerako',
+ 'original-output' => 'Erakutsi / Ezkutatu jatorrizko irteera',
+ 'participant' => 'Parte-hartzaile',
+ 'passed' => 'pasatu',
+ 'peers' => 'ikaskideek',
+ 'pending' => 'Zain',
+ 'personal-freeleech' => 'Freeleech pertsonala',
+ 'poster' => 'kartela',
+ 'poster-view' => 'Posterraren ikuspegia',
+ 'posters' => 'Kartelak',
+ 'prewarn' => 'Prewarned?',
+ 'progress' => 'Eraikitzen',
+ 'quick-comment' => 'Iruzkina',
+ 'quick-tip' => 'Aholku azkarra zenbatekoak',
+ 'rated' => 'Rated',
+ 'rating' => 'Balorazioa',
+ 'ready' => 'Fitxategi hau deskargatzeko prest dago',
+ 'rejected' => 'Baztertuta',
+ 'released' => 'argitaratua',
+ 'remaining' => 'Geratzen',
+ 'request-reseed' => 'Eskatu eskaera',
+ 'requires-reseed' => 'Eskatutakoa behar da',
+ 'resurrections' => 'resurrections',
+ 'revoke' => 'Baliogabetu',
+ 'rss' => 'RSS',
+ 'runtime' => 'Runtime',
+ 'satisfied_in' => 'Pozik nago',
+ 'say-thanks' => 'Gogoratu eskerrak eta hazia ahalik eta gehien esateko',
+ 'sd-content' => 'SD edukia',
+ 'search' => 'Search',
+ 'seed-time' => 'Seed denbora',
+ 'seeder' => 'seeder',
+ 'seeders' => 'seeders',
+ 'seeding' => 'Seeding',
+ 'seedsize' => 'Seedsize',
+ 'seedtime' => 'Seedtime',
+ 'short-completed' => 'C',
+ 'short-leechs' => 'L',
+ 'short-seeds' => 'S',
+ 'show-files' => 'Erakutsi fitxategiak',
+ 'similar' => 'Antzeko Torrents',
+ 'size' => 'Tamaina',
+ 'special' => 'Berezia',
+ 'special-freeleech' => 'Freeleech bereziak',
+ 'started' => 'Hasita',
+ 'status' => 'Egoera',
+ 'statistics' => 'Estatistikak',
+ 'stats' => 'estatistikak',
+ 'sticky' => 'Itsaskor',
+ 'stream-optimized' => 'Stream optimizatua',
+ 'subtitle' => 'azpititulua',
+ 'team-player' => 'Taldeko jokalaria',
+ 'thank' => 'Eskerrik',
+ 'thanked' => 'eskertu',
+ 'thanks' => 'eskerrik asko',
+ 'thanks-given' => 'Eskerrik asko emandakoa',
+ 'times' => 'Times',
+ 'tip-jar' => 'Tip jar',
+ 'title' => 'Izenburua',
+ 'titles' => 'Izenburuak',
+ 'top-completed' => 'Bukatu da',
+ 'top-dead' => 'Gora hildakoak',
+ 'top-dying' => 'Gehien hiltzen da',
+ 'top-leeched' => 'Gehien leeched',
+ 'top-seeded' => 'Gehien landutakoa',
+ 'torrent' => 'torrent',
+ 'torrent-request' => 'Torrent eskaera',
+ 'torrent-tips' => 'In Total : BON guztira kargatzaileari eman zaio, eta horietatik : erabiltzaileak zuretzako dira',
+ 'torrent-tips-desc' => 'Hau erabilgarri dagoen bonus puntuetatik kenduko da',
+ 'torrents' => 'torrents',
+ 'trailer' => 'Ikusi trailerra',
+ 'type' => 'Mota',
+ 'types' => 'motak',
+ 'unbookmark' => 'Unbookmark',
+ 'unsatisfieds' => 'Unsatisfieds',
+ 'unsticky' => 'Unsticky',
+ 'updated' => 'eguneratua',
+ 'updated_at' => 'Eguneratuta',
+ 'uploaded' => 'uploaded',
+ 'uploaded-by' => 'Bidalitakoaren arabera',
+ 'uploader' => 'Uploader',
+ 'use-fl-token' => 'Erabili Freeleech Token bat',
+ 'video' => 'Video',
+ 'view-more' => 'Ikusi gehiago',
+ 'view-trailer' => 'Ikusi trailerra',
+ 'votes' => 'Botoak',
];
diff --git a/lang/eu/user.php b/lang/eu/user.php
index 00ef2410c..00b0d2ddc 100644
--- a/lang/eu/user.php
+++ b/lang/eu/user.php
@@ -12,316 +12,316 @@
*/
return [
- 'about' => 'About',
- 'about-me' => 'Niri buruz',
- 'accepted-at' => 'Onartu',
- 'accepted-by' => 'Onartua',
- 'account-notification' => 'Kontuaren jakinarazpenaren ezarpenak',
- 'account-notification-follow' => 'Jaso jakinarazpena erabiltzaile bat zure kontuan jarraitzen denean',
- 'account-notification-unfollow' => 'Jaso jakinarazpen bat erabiltzaile bat zure kontua kentzean',
- 'account-notification-help' => 'Kontrolatu jakinarazpenak zure kontuari buruz. Ezarpen hauek gainidazten dira taldeei zure kontuari buruzko jakinarazpenak bidaltzeko edo jakinarazpenak desgaitzen badituzu',
- 'account-settings' => 'Kontu ezarpenak',
- 'achievement-privacy' => 'Lorpen ezarpenak',
- 'achievement-privacy-list' => 'Utzi erabiltzaileei zure lorpenen zerrenda ikusteko',
- 'achievement-help' => 'Kontrolatu lorpen zehatzarekin erlazionatutako informazioa zure profilera sartzeko baimena duten taldeekin. Ezarpen hauek gainidazten dira taldeei zure lorpenak atzitzeko edo pribatua joateko baimena ematen ez baduzu',
- 'achievements' => 'lorpenak',
- 'active' => 'Aktiboak',
- 'active-table' => 'Nire taula aktiboa',
- 'active-torrents' => 'Torrent aktiboak',
- 'active-warning' => 'Abisu aktiboa',
- 'active-warnings' => 'Abisu aktiboak',
- 'add-seedbox' => 'Gehitu Seedbox',
- 'all-torrents' => 'Torrents guztiak',
- 'article-comments' => 'Artikuluan egindako iruzkinak',
- 'avatar' => 'Avatar',
- 'avg-seedtime' => 'Batez besteko denbora',
- 'badges' => 'Badges',
- 'ban' => 'Banatu erabiltzailea',
- 'ban-log' => 'Ban saioa',
- 'become-hidden' => 'Bihurtu ezkutatuta',
- 'become-visible' => 'Bihurtu ikusgai',
- 'bon' => 'BON',
- 'bon-notification' => 'BON jakinarazpenaren ezarpenak',
- 'bon-notification-gift' => 'Jaso jakinarazpena erabiltzaile batek oparituko zaizunean',
- 'bon-notification-help' => 'Kontrolatu BON jakinarazpenak zein diren BON transakzioei buruz. Ezarpen hauek gainidazten dira taldeei BONri buruzko jakinarazpenak bidaltzeko edo jakinarazpenak desgaitzen badituzu',
- 'bookmarks' => 'Bookmarks',
- 'bounty-given' => 'Bounty Given',
- 'bounty-received' => 'Bounty jasotako',
- 'can-chat' => 'Txateatu daiteke',
- 'can-comment' => 'Iruzkina',
- 'can-download' => 'Ezin deskargatu',
- 'can-invite' => 'Gonbidatu dezake',
- 'can-request' => 'Can Request',
- 'can-upload' => 'Ezin kargatu',
- 'certified-banker' => 'Banku Ziurtatua',
- 'certified-banker-desc' => '50.000 BON gehiago ditu Bankuan',
- 'certified-downloader' => 'Certified Downloader',
- 'certified-downloader-desc' => 'Deskargatu 100 edo gehiago Torrents!',
- 'certified-seeder' => 'Seeder ziurtagiria',
- 'certified-seeder-desc' => '150 edo gehiago Torrents hazia!',
- 'change-email' => 'Aldatu posta elektronikoa',
- 'change-email-help' => 'Posta elektronikoa aldatu ondoren berretsi beharko duzu zure kontua',
- 'change-password' => 'Aldatu pasahitza',
- 'change-password-help' => 'Saioa hasi beharko duzu pasahitza aldatu ondoren',
- 'client-ip-address' => 'Bezeroaren IP helbidea',
- 'code' => 'Kodea',
- 'comments' => 'Oharrak',
- 'created-on' => 'Sortua',
- 'credited-download' => 'Kreditu deskargatzea',
- 'credited-upload' => 'Kreditu kargatzea',
- 'current-password' => 'Oraingo pasahitza',
- 'custom-title' => 'Titulu pertsonalizatua',
- 'delete' => 'Ezabatu erabiltzailea',
- 'disable-notifications' => 'Desgaitu jakinarazpenak',
- 'disclaimer' => 'Lege-oharra',
- 'disclaimer-info' => 'Lehenespenez, ez dugu erabiltzaileen IP helbideak erregistratzen jarraitzaile gehienak bezala. Zure seedbox IP azpian gehituz, behean zerrendatutako IPak gure datu-basean gordeko dituzula espero dugu, erregistroak ezabatzen badituzu.',
- 'disclaimer-info-bordered' => 'Seedbox IP-ak gehituko dira ondorengo abiaduran sortutako torrenteak abiadura handiko torrent-etan abiarazteko',
- 'download-bon' => 'Deskarga kendu da BON Store-tik',
- 'download-recorded' => 'Grabatutako deskargak',
- 'download-true' => 'True Download',
- 'downloads' => 'Downloads',
- 'edit' => 'Editatu erabiltzailea',
- 'edit-profile' => 'Editatu profila',
- 'enable-notifications' => 'Gaitu jakinarazpenak',
- 'expired' => 'iraungi',
- 'expires-on' => 'Iraungita',
- 'extra' => 'Aparteko',
- 'filled-request' => 'Bete diren Kideen Bete',
- 'follow' => 'Jarraitu',
- 'follower-privacy' => 'Jarraitzailearen ezarpenak',
- 'follower-privacy-list' => 'Utzi erabiltzaileei jarraitzaileen zerrenda ikusteko',
- 'follower-help' => 'Kontrolatu jarraitzaileei lotutako informazio zehatza zure profilera sartzeko baimena duten taldeekin partekatzea. Ezarpen hauek gainidazten dira taldeei jarraitzaileetara sartzeko edo Pribatua joateko baimena ematen ez baduzu',
- 'followers' => 'Jarraitzaileak',
- 'following-notification' => 'Ondorengo Erabiltzaile Jakinarazpenaren Ezarpenak',
- 'following-notification-upload' => 'Jaso jakinarazpena jarraitzaile batek torrent bat kargatzen duenean',
- 'following-notification-help' => 'Kontrolatu zein jakinarazpen bidalitako erabiltzailearen guneen ekintzai buruz. Ezarpen hauek gainidazten dira taldeei jarraitzaileei buruzko jakinarazpenak bidaltzeko edo jakinarazpenak desgaitzen badituzu',
- 'formats-are-supported' => ': formatuak onartzen dira',
- 'forum-notification' => 'Foroko jakinarazpenaren ezarpenak',
- 'forum-notification-topic' => 'Jaso jakinarazpen bat hasten duzun gaia post berria lortzen denean',
- 'forum-notification-help' => 'Kontrolatu jakinarazpenak bidaltzen diren foro jardueretan. Ezarpen hauek gainidazten dira taldeei foroetako jardueren inguruko jakinarazpenak bidaltzeko edo jakinarazpenak desgaitzen badituzu',
- 'forum-privacy' => 'Foroko ezarpenak',
- 'forum-privacy-post' => 'Utzi erabiltzaileei argitaratu dituzun foroko mezuen zerrenda ikusteko',
- 'forum-privacy-topic' => 'Utzi erabiltzaileei hasi dituzun foro gaien zerrenda ikusteko',
- 'forum-help' => 'Kontrolatu foroarekin lotutako estatistikak eta zure profilera sartzeko baimena duten taldeekin informazioa partekatzea. Ezarpen hauek gainidazten dira taldeei zure foroarekin erlazionatutako estatistikak eta informazioa atzitzeko aukera ematen ez baduzu edo Pribatua joaten bazara',
- 'forum-signature' => 'Foroaren sinadura',
- 'forums' => 'Foroak',
- 'general' => 'General',
- 'general-settings' => 'Ezarpen orokorrak',
- 'gift-given' => 'Opari ematea',
- 'gift-received' => 'Jaiotako oparia',
- 'go-public' => 'Joan Publikoa',
- 'go-private' => 'Joan pribatua',
- 'history' => 'Historia',
- 'history-table' => 'Nire historia taula',
- 'hit-n-runs' => 'Asmatu eta exekutatzen',
- 'hit-n-runs-count' => 'Hit and Run Count (Denbora guztiak)',
- 'hit-n-runs-history' => 'Torrent Hit eta Runs History',
- 'image' => 'Image',
- 'important' => 'Garrantzitsua',
- 'important-info' => 'Informazio garrantzitsua',
- 'information' => 'informazioa',
- 'invite-friend' => 'Gonbidatu zure lagun (Posta elektronikoa + Mezua Beharrezkoa)',
- 'invite-tree' => 'Zuhaitz gonbidatu',
- 'invites' => 'Gonbidapenak',
- 'invites-banned' => 'Errorea: Zure gonbidapen eskubideak desgaitu egin dira',
- 'invites-banned-desc' => 'Hau sentitzen baduzu, oker dagoela, jarri harremanetan langileekin!',
- 'invites-count' => 'Zuk: zenbatu gonbidatuak',
- 'invites-disabled' => 'Arreta: Gonbidapenak Desgaituta daude izena ematearen ondorioz!',
- 'invites-disabled-desc' => 'Mesedez, egiaztatu laster!',
- 'invites-rules' => '- Ezagutzen dituzun eta konfiantzazko pertsonak bakarrik gonbidatu.
- Gonbidatzen dituzunen arduradun izango zara.
- Ez gonbidatu zeure burua, gonbidatutako erabiltzaile guztiei begiratzen diegu.
- Ez merkataritza edo saltzea gonbidapenak.
- Gonbidatu duzun pertsona batek iruzurra hartuz gero, merkataritza-kontua edo gonbidapenak saltzea / merkaturatzea, ohartarazi egingo zaizu.
',
- 'invites-send' => 'Gonbidapenak bidali',
- 'last-login' => 'Azken saioa',
- 'locked' => 'blokeatuta',
- 'locked-achievements' => 'Blokeatutako lorpenak',
- 'member-since' => 'Bazkide geroztik',
- 'members-desc' => 'Izena emandako erabiltzaileen zerrenda: izenburua talde guztiekin. Bilatu erabiltzailea orain.',
- 'mention-notification' => '@Mention Notification Settings',
+ 'about' => 'About',
+ 'about-me' => 'Niri buruz',
+ 'accepted-at' => 'Onartu',
+ 'accepted-by' => 'Onartua',
+ 'account-notification' => 'Kontuaren jakinarazpenaren ezarpenak',
+ 'account-notification-follow' => 'Jaso jakinarazpena erabiltzaile bat zure kontuan jarraitzen denean',
+ 'account-notification-unfollow' => 'Jaso jakinarazpen bat erabiltzaile bat zure kontua kentzean',
+ 'account-notification-help' => 'Kontrolatu jakinarazpenak zure kontuari buruz. Ezarpen hauek gainidazten dira taldeei zure kontuari buruzko jakinarazpenak bidaltzeko edo jakinarazpenak desgaitzen badituzu',
+ 'account-settings' => 'Kontu ezarpenak',
+ 'achievement-privacy' => 'Lorpen ezarpenak',
+ 'achievement-privacy-list' => 'Utzi erabiltzaileei zure lorpenen zerrenda ikusteko',
+ 'achievement-help' => 'Kontrolatu lorpen zehatzarekin erlazionatutako informazioa zure profilera sartzeko baimena duten taldeekin. Ezarpen hauek gainidazten dira taldeei zure lorpenak atzitzeko edo pribatua joateko baimena ematen ez baduzu',
+ 'achievements' => 'lorpenak',
+ 'active' => 'Aktiboak',
+ 'active-table' => 'Nire taula aktiboa',
+ 'active-torrents' => 'Torrent aktiboak',
+ 'active-warning' => 'Abisu aktiboa',
+ 'active-warnings' => 'Abisu aktiboak',
+ 'add-seedbox' => 'Gehitu Seedbox',
+ 'all-torrents' => 'Torrents guztiak',
+ 'article-comments' => 'Artikuluan egindako iruzkinak',
+ 'avatar' => 'Avatar',
+ 'avg-seedtime' => 'Batez besteko denbora',
+ 'badges' => 'Badges',
+ 'ban' => 'Banatu erabiltzailea',
+ 'ban-log' => 'Ban saioa',
+ 'become-hidden' => 'Bihurtu ezkutatuta',
+ 'become-visible' => 'Bihurtu ikusgai',
+ 'bon' => 'BON',
+ 'bon-notification' => 'BON jakinarazpenaren ezarpenak',
+ 'bon-notification-gift' => 'Jaso jakinarazpena erabiltzaile batek oparituko zaizunean',
+ 'bon-notification-help' => 'Kontrolatu BON jakinarazpenak zein diren BON transakzioei buruz. Ezarpen hauek gainidazten dira taldeei BONri buruzko jakinarazpenak bidaltzeko edo jakinarazpenak desgaitzen badituzu',
+ 'bookmarks' => 'Bookmarks',
+ 'bounty-given' => 'Bounty Given',
+ 'bounty-received' => 'Bounty jasotako',
+ 'can-chat' => 'Txateatu daiteke',
+ 'can-comment' => 'Iruzkina',
+ 'can-download' => 'Ezin deskargatu',
+ 'can-invite' => 'Gonbidatu dezake',
+ 'can-request' => 'Can Request',
+ 'can-upload' => 'Ezin kargatu',
+ 'certified-banker' => 'Banku Ziurtatua',
+ 'certified-banker-desc' => '50.000 BON gehiago ditu Bankuan',
+ 'certified-downloader' => 'Certified Downloader',
+ 'certified-downloader-desc' => 'Deskargatu 100 edo gehiago Torrents!',
+ 'certified-seeder' => 'Seeder ziurtagiria',
+ 'certified-seeder-desc' => '150 edo gehiago Torrents hazia!',
+ 'change-email' => 'Aldatu posta elektronikoa',
+ 'change-email-help' => 'Posta elektronikoa aldatu ondoren berretsi beharko duzu zure kontua',
+ 'change-password' => 'Aldatu pasahitza',
+ 'change-password-help' => 'Saioa hasi beharko duzu pasahitza aldatu ondoren',
+ 'client-ip-address' => 'Bezeroaren IP helbidea',
+ 'code' => 'Kodea',
+ 'comments' => 'Oharrak',
+ 'created-on' => 'Sortua',
+ 'credited-download' => 'Kreditu deskargatzea',
+ 'credited-upload' => 'Kreditu kargatzea',
+ 'current-password' => 'Oraingo pasahitza',
+ 'custom-title' => 'Titulu pertsonalizatua',
+ 'delete' => 'Ezabatu erabiltzailea',
+ 'disable-notifications' => 'Desgaitu jakinarazpenak',
+ 'disclaimer' => 'Lege-oharra',
+ 'disclaimer-info' => 'Lehenespenez, ez dugu erabiltzaileen IP helbideak erregistratzen jarraitzaile gehienak bezala. Zure seedbox IP azpian gehituz, behean zerrendatutako IPak gure datu-basean gordeko dituzula espero dugu, erregistroak ezabatzen badituzu.',
+ 'disclaimer-info-bordered' => 'Seedbox IP-ak gehituko dira ondorengo abiaduran sortutako torrenteak abiadura handiko torrent-etan abiarazteko',
+ 'download-bon' => 'Deskarga kendu da BON Store-tik',
+ 'download-recorded' => 'Grabatutako deskargak',
+ 'download-true' => 'True Download',
+ 'downloads' => 'Downloads',
+ 'edit' => 'Editatu erabiltzailea',
+ 'edit-profile' => 'Editatu profila',
+ 'enable-notifications' => 'Gaitu jakinarazpenak',
+ 'expired' => 'iraungi',
+ 'expires-on' => 'Iraungita',
+ 'extra' => 'Aparteko',
+ 'filled-request' => 'Bete diren Kideen Bete',
+ 'follow' => 'Jarraitu',
+ 'follower-privacy' => 'Jarraitzailearen ezarpenak',
+ 'follower-privacy-list' => 'Utzi erabiltzaileei jarraitzaileen zerrenda ikusteko',
+ 'follower-help' => 'Kontrolatu jarraitzaileei lotutako informazio zehatza zure profilera sartzeko baimena duten taldeekin partekatzea. Ezarpen hauek gainidazten dira taldeei jarraitzaileetara sartzeko edo Pribatua joateko baimena ematen ez baduzu',
+ 'followers' => 'Jarraitzaileak',
+ 'following-notification' => 'Ondorengo Erabiltzaile Jakinarazpenaren Ezarpenak',
+ 'following-notification-upload' => 'Jaso jakinarazpena jarraitzaile batek torrent bat kargatzen duenean',
+ 'following-notification-help' => 'Kontrolatu zein jakinarazpen bidalitako erabiltzailearen guneen ekintzai buruz. Ezarpen hauek gainidazten dira taldeei jarraitzaileei buruzko jakinarazpenak bidaltzeko edo jakinarazpenak desgaitzen badituzu',
+ 'formats-are-supported' => ': formatuak onartzen dira',
+ 'forum-notification' => 'Foroko jakinarazpenaren ezarpenak',
+ 'forum-notification-topic' => 'Jaso jakinarazpen bat hasten duzun gaia post berria lortzen denean',
+ 'forum-notification-help' => 'Kontrolatu jakinarazpenak bidaltzen diren foro jardueretan. Ezarpen hauek gainidazten dira taldeei foroetako jardueren inguruko jakinarazpenak bidaltzeko edo jakinarazpenak desgaitzen badituzu',
+ 'forum-privacy' => 'Foroko ezarpenak',
+ 'forum-privacy-post' => 'Utzi erabiltzaileei argitaratu dituzun foroko mezuen zerrenda ikusteko',
+ 'forum-privacy-topic' => 'Utzi erabiltzaileei hasi dituzun foro gaien zerrenda ikusteko',
+ 'forum-help' => 'Kontrolatu foroarekin lotutako estatistikak eta zure profilera sartzeko baimena duten taldeekin informazioa partekatzea. Ezarpen hauek gainidazten dira taldeei zure foroarekin erlazionatutako estatistikak eta informazioa atzitzeko aukera ematen ez baduzu edo Pribatua joaten bazara',
+ 'forum-signature' => 'Foroaren sinadura',
+ 'forums' => 'Foroak',
+ 'general' => 'General',
+ 'general-settings' => 'Ezarpen orokorrak',
+ 'gift-given' => 'Opari ematea',
+ 'gift-received' => 'Jaiotako oparia',
+ 'go-public' => 'Joan Publikoa',
+ 'go-private' => 'Joan pribatua',
+ 'history' => 'Historia',
+ 'history-table' => 'Nire historia taula',
+ 'hit-n-runs' => 'Asmatu eta exekutatzen',
+ 'hit-n-runs-count' => 'Hit and Run Count (Denbora guztiak)',
+ 'hit-n-runs-history' => 'Torrent Hit eta Runs History',
+ 'image' => 'Image',
+ 'important' => 'Garrantzitsua',
+ 'important-info' => 'Informazio garrantzitsua',
+ 'information' => 'informazioa',
+ 'invite-friend' => 'Gonbidatu zure lagun (Posta elektronikoa + Mezua Beharrezkoa)',
+ 'invite-tree' => 'Zuhaitz gonbidatu',
+ 'invites' => 'Gonbidapenak',
+ 'invites-banned' => 'Errorea: Zure gonbidapen eskubideak desgaitu egin dira',
+ 'invites-banned-desc' => 'Hau sentitzen baduzu, oker dagoela, jarri harremanetan langileekin!',
+ 'invites-count' => 'Zuk: zenbatu gonbidatuak',
+ 'invites-disabled' => 'Arreta: Gonbidapenak Desgaituta daude izena ematearen ondorioz!',
+ 'invites-disabled-desc' => 'Mesedez, egiaztatu laster!',
+ 'invites-rules' => '- Ezagutzen dituzun eta konfiantzazko pertsonak bakarrik gonbidatu.
- Gonbidatzen dituzunen arduradun izango zara.
- Ez gonbidatu zeure burua, gonbidatutako erabiltzaile guztiei begiratzen diegu.
- Ez merkataritza edo saltzea gonbidapenak.
- Gonbidatu duzun pertsona batek iruzurra hartuz gero, merkataritza-kontua edo gonbidapenak saltzea / merkaturatzea, ohartarazi egingo zaizu.
',
+ 'invites-send' => 'Gonbidapenak bidali',
+ 'last-login' => 'Azken saioa',
+ 'locked' => 'blokeatuta',
+ 'locked-achievements' => 'Blokeatutako lorpenak',
+ 'member-since' => 'Bazkide geroztik',
+ 'members-desc' => 'Izena emandako erabiltzaileen zerrenda: izenburua talde guztiekin. Bilatu erabiltzailea orain.',
+ 'mention-notification' => '@Mention Notification Settings',
'mention-notification-article-comment' => 'Jaso jakinarazpen bat artikulu batean iruzkindu duzunean @mentioned zaudenean',
'mention-notification-torrent-comment' => 'Jaso jakinarazpen bat torrent iruzkin batean iruzkindu duzunean',
'mention-notification-request-comment' => 'Jaso jakinarazpena eskaera-iruzkin batean @mentioned duzunean',
- 'mention-notification-forum-post' => 'Jaso jakinarazpen bat foroan idaztean @mentioned zaudenean',
- 'mention-notification-help' => 'Kontrolatu zein jakinarazpen erabiltzaile batek @mentions bidaltzen zaionean. Ezarpen hauek gainidazten dira taldeei jakinarazpenak bidaltzeko baimena ematen ez badio erabiltzaileari @mentions baduzu edo Jakinarazpenak desgaitzen badituzu',
- 'moderated-by' => 'Moderatuta: mod on',
- 'my-bonus-points' => 'Nire Bonus Puntuak',
- 'my-bookmarks' => 'Nire laster-markak',
- 'my-fl-tokens' => 'Nire FL tokenak',
- 'my-general-settings' => 'Nire ezarpen orokorrak',
- 'my-notification' => 'Nire jakinarazpena',
- 'my-notification-settings' => 'Nire jakinarazpenaren ezarpenak',
- 'my-privacy' => 'Nire pribatutasuna',
- 'my-privacy-settings' => 'Nire pribatutasun-ezarpenak',
- 'my-profile' => 'Nire profila',
- 'my-requested' => 'Nire eskatutakoa',
- 'my-security' => 'Nire segurtasuna',
- 'my-security-settings' => 'Nire segurtasun ezarpenak',
- 'my-seedboxes' => 'Nire Seedboxes',
- 'my-settings' => 'Nire ezarpenak',
- 'my-wishlist' => 'Nire gogokoak',
- 'no-logs' => 'Erabiltzaile honen datu-basean gonbidapen erregistroak ez daude!',
- 'no-seedboxes' => 'Ez da hazi-kaxarik',
- 'not-authorized' => 'Ez duzu orri hau ikusteko baimenik. Kide hau ninja bezala ezkutatuta egotea nahiago du!',
- 'note' => 'Ohar',
- 'notification' => 'Jakinarazpen',
- 'notification-settings' => 'Jakinarazpenen ezarpenak',
- 'notification-from-account' => 'Jaso kontuen jakinarazpenak',
- 'notification-from-account-help' => 'Sistemaren, langileen eta honako taldeen kontuko jakinarazpenak soilik jasoko dituzu. Ezarpen hauek gainidazten dira jakinarazpenak desgaitzen badituzu',
- 'notification-from-bon' => 'Jaso BON jakinarazpenak',
- 'notification-from-bon-help' => 'Sistemari, langileei eta honako taldeei BON jakinarazpenak soilik jasoko dituzu. Ezarpen hauek gainidazten dira jakinarazpenak desgaitzen badituzu',
- 'notification-from-following' => 'Jaso ondorengo erabiltzaileen jakinarazpenak',
- 'notification-from-following-help' => 'Ondorengo taldeen jarraibideen jakinarazpenak soilik jasoko dituzu. Ezarpen hauek gainidazten dira jakinarazpenak desgaitzen badituzu',
- 'notification-from-forum' => 'Jaso foroaren jakinarazpenak',
- 'notification-from-forum-help' => 'Sistemaren, langileen eta honako taldeen foroaren jakinarazpenak soilik jasoko dituzu. Ezarpen hauek gainidazten dira jakinarazpenak desgaitzen badituzu',
- 'notification-from-subscription' => 'Jaso harpidetzaren jakinarazpenak',
- 'notification-from-subscription-help' => 'Sistemaren, langileen eta honako taldeen foroaren jakinarazpenak soilik jasoko dituzu. Ezarpen hauek gainidazten dira jakinarazpenak desgaitzen badituzu',
- 'notification-from-torrent' => 'Jaso Torrent jakinarazpenak',
- 'notification-from-torrent-help' => 'Sistemako, langileei eta ondorengo taldeei torrent jakinarazpenak soilik jasoko dituzu. Ezarpen hauek gainidazten dira jakinarazpenak desgaitzen badituzu',
- 'notification-from-mention' => 'Jaso @Mention jakinarazpenak',
- 'notification-from-mention-help' => 'Sistemaren, langileen eta honako taldeen @mention jakinarazpenak soilik jasoko dituzu. Ezarpen hauek gainidazten dira jakinarazpenak desgaitzen badituzu',
- 'notification-from-request' => 'Jasotako jakinarazpenak jaso',
- 'notification-from-request-help' => 'Sistemaren, langileen eta honako taldeen eskaera jakinarazpenak soilik jasoko dituzu. Ezarpen hauek gainidazten dira jakinarazpenak desgaitzen badituzu',
- 'notifications' => 'jakinarazpenak',
- 'offline' => 'Erabiltzailea Lineaz kanpo dago!',
- 'online' => 'Erabiltzailea Linean dago!',
- 'options' => 'Aukerak',
- 'other-help' => 'Kontrolatu beste estatistikak eta informazioa zure profilera sartzeko baimena duten taldeekin partekatzea. Ezarpen hauek gainidazten dira taldeei zure beste estatistika eta informazioetara sartzeko edo pribatua joateko baimena ematen ez baduzu',
- 'other-privacy' => 'Beste ezarpen batzuk',
- 'other-privacy-online' => 'Baimendu erabiltzaileei linean dauden erabiltzaileen blokean ikustea',
- 'passkey' => 'PID',
- 'passkey-warning' => 'PID zure pasahitza bezalakoa da, seguru mantendu behar duzu!',
- 'pending-achievements' => 'Lortutako lorpenak',
- 'per-torrent' => 'Torrent-etik',
- 'posts' => 'Mezuak',
- 'posts-posted' => 'Bidalitako foro mezuak',
- 'privacy' => 'pribatutasuna',
- 'privacy-settings' => 'Pribatutasun ezarpenak',
- 'private-info' => 'Informazio pribatua',
- 'private-forum-profile' => 'Arreta: Kide hau eta mezuen historia PRIVATE gisa ezarri da!',
- 'private-profile' => 'Arreta: Profil hau pribatua izan da!',
- 'profile' => 'Profila',
- 'profile-desc' => 'Erabiltzailea: erabiltzaile-profila erregistratuta: izenburua',
- 'profile-privacy' => 'Profilaren ezarpenak',
- 'profile-privacy-torrent-count' => 'Partekatu zure deskarga, igoerak, haziak eta leechak guztira',
- 'profile-privacy-torrent-ratio' => 'Partekatu zure igoera / deskargatzeko datu guztira grabatutako ratioarekin',
- 'profile-privacy-torrent-seed' => 'Partekatu zure batez besteko denbora eta ezarpena',
- 'profile-privacy-title' => 'Partekatu tituluaren informazio pertsonala',
- 'profile-privacy-about' => 'Partekatu zure pertsonari buruzko informazioa',
- 'profile-privacy-bon-extra' => 'Partekatu zure BON estatistikak',
- 'profile-privacy-comment-extra' => 'Partekatu zure iruzkinen estatistikak',
- 'profile-privacy-forum-extra' => 'Partekatu zure foroetako estatistikak',
- 'profile-privacy-request-extra' => 'Partekatu zure eskaera estatistikak',
- 'profile-privacy-torrent-extra' => 'Partekatu zure torrent estatistikak',
- 'profile-privacy-badge' => 'Partekatu zure irabazi txapak',
- 'profile-privacy-achievement' => 'Partekatu azken lorpenak',
- 'profile-privacy-follower' => 'Partekatu azkeneko jarraitzaileei',
- 'profile-privacy-warning' => 'Partekatu H&R abisuak',
- 'profile-privacy-help' => 'Kontrolatu zein profiletan eta zure estatistiketan agertzen diren estatistikak. Ezarpen hauek gainidazten dira taldeei zure profila atzitzeko edo pribatua baduzu ez baduzu baimentzen',
- 'public-info' => 'Informazio publikoa',
- 'recent-achievements' => 'Azken lorpenak',
- 'recent-followers' => 'Azken jarraitzaileak',
- 'registration-date' => 'Izena emateko data',
- 'report' => 'txostena',
- 'request-help' => 'Kontrolatu eskaera zehatzen erlazionatutako estatistikak eta zure profilera sartzeko baimena duten taldeekin informazioa partekatzea. Ezarpen hauek gainidazten dira taldeei zure eskatutako erlazionatutako estatistikak eta informazioa atzitzeko baimena ematen ez baduzu edo Pribatua joaten bazara',
- 'request' => 'Eskaera',
- 'requested' => 'Eskatutako',
- 'requests' => 'eskaerak',
- 'request-comments' => 'Eskatu iruzkinak',
- 'request-notification' => 'Eskatu jakinarazpenen ezarpenak',
- 'request-notification-bounty' => 'Jaso jakinarazpena eskatutako torrent batek sari berri bat lortzen duenean',
- 'request-notification-comment' => 'Jaso jakinarazpena eskatutako torrent batek iruzkin berria jasotzen duenean',
- 'request-notification-fill' => 'Jaso jakinarazpena eskatutako torrent bat beteta dagoenean',
- 'request-notification-fill-approve' => 'Jaso jakinarazpen bat eskatutako torrent betetzea onartzen denean',
- 'request-notification-fill-reject' => 'Jaso jakinarazpen bat eskatutako torrent betetze bat baztertzean',
- 'request-notification-claim' => 'Jaso jakinarazpena eskatutako torrent bat erreklamatzen denean',
- 'request-notification-unclaim' => 'Jaso jakinarazpen bat eskatutako torrent batek eskatu gabe',
- 'request-notification-help' => 'Kontrolatu jakinarazpenak zein diren eskaera-jardueren inguruan. Ezarpen hauek gainidazten dira taldeei inolako jakinarazpenei buruzko jakinarazpenak bidaltzeko edo jakinarazpenak desgaitzen badituzu',
- 'request-privacy' => 'Eskatu ezarpenak',
- 'request-privacy-requested' => 'Utzi erabiltzaileei egin dituzun eskaeren zerrenda ikusteko',
- 'reset-passkey' => 'Berrezarri pasa tekla (PID)',
- 'reset-passkey-help' => 'Berriro deskargatu / berriro kargatuko dituzu zure aktibo torrentzak, PID berrezarri ondoren',
- 'reset-rss' => 'Berrezarri RSS gakoa (RID)',
- 'reset-rss-help' => 'Zure RSS jario aktibo guztiak berriro kargatu beharko dituzu, RID berrezarri ondoren',
- 'resurrections' => 'resurrections',
- 'search' => 'Bilaketa azkarra erabiltzaile izenarekin',
- 'security' => 'Segurtasuna',
- 'security-settings' => 'Segurtasun ezarpenak',
- 'seedboxes' => 'Seedboxes',
- 'seeds' => 'haziak',
- 'send-invite' => 'Bidali gonbidapena',
- 'sender' => 'Sender',
- 'settings' => 'ezarpenak',
- 'show-passkey' => 'Erakutsi PID',
- 'staff-noted' => 'Langileak kontu kontuak',
- 'statistics' => 'Estatistikak',
- 'subscription-notification' => 'Harpidetza Jakinarazpenaren Ezarpenak',
- 'subscription-notification-forum' => 'Jasotako jakinarazpen bat harpidetutako foroak gai berria lortzen duenean',
- 'subscription-notification-topic' => 'Jaso jakinarazpen bat harpidetutako gaia post berria lortzen denean',
- 'subscription-notification-help' => 'Kontrolatu zeinen jakinarazpenak zure harpidetzei buruz. Ezarpen hauek gainidazten dira taldeei zure harpidetzari buruzko jakinarazpenak bidaltzeko edo jakinarazpenak desgaitzen badituzu',
- 'thanks-given' => 'Eskerrik asko emandako',
- 'thanks-received' => 'Eskerrik asko jaso da',
- 'tips-given' => 'Emandako aholkuak',
- 'tips-received' => 'Jasotako aholkuak',
- 'title' => 'Izenburua',
- 'top-bankers' => 'Gehien bankariak',
- 'top-downloaders-data' => 'Deskargatzaile nagusiak (datuak)',
- 'top-leechers' => 'Top Leechers',
- 'top-leechers-count' => 'Top Leechers (Count)',
- 'top-seeders' => 'Gehien Seeders',
- 'top-seeders-count' => 'Gehien Seeders (Count)',
- 'top-seeding-size' => 'Top Seeding (tamaina)',
- 'top-seedtime' => 'Gehien haziak',
- 'top-uploaders-data' => 'Gehien kargatzaileak (datuak)',
- 'top-uploaders-count' => 'Gehien kargatzaileak (zenbatu)',
- 'topics' => 'Gaiak',
- 'topics-started' => 'Foroko gaiak hasi ziren',
- 'torrent-comments' => 'Torrent iruzkinak egindako',
- 'torrent-help' => 'Kontrolatu zure profilera sartzeko baimena duten taldeekin lotutako erlazionatutako estatistikak eta informazioa partekatzea. Ezarpen hauek gainidazten dira taldeei zure torrentari lotutako estatistikak eta informazioa atzitzeko baimena ematen ez baduzu edo Pribatua joaten bazara',
- 'torrent-notification' => 'Torrent Jakinarazpenaren Ezarpenak',
- 'torrent-notification-comment' => 'Jaso jakinarazpena kargatutako torrent batek iruzkin berria jasotzen duenean',
- 'torrent-notification-thank' => 'Jaso jakinarazpena kargatutako torrent batek esker berri bat lortzen duenean',
- 'torrent-notification-tip' => 'Jaso jakinarazpen bat kargatutako torrent batek punta berria lortzen duenean',
- 'torrent-notification-help' => 'Kontrolatu zein jakinarazpen torrent-eko jardueretara bidaltzen diren. Ezarpen hauek gainidazten dira taldeei torrent-eko jardueren inguruko jakinarazpenak bidaltzeko edo jakinarazpenak desgaitzen badituzu',
- 'torrent-privacy' => 'Torrent ezarpenak',
- 'torrent-privacy-download' => 'Utzi erabiltzaileei deskargatutako torrenteen zerrenda ikusteko',
- 'torrent-privacy-upload' => 'Utzi erabiltzaileei kargatu dituzun torrent zerrenda ikusi',
- 'torrent-privacy-peer' => 'Utzi erabiltzaileei torrent parekoen historia taula ikusi',
- 'torrents' => 'torrents',
- 'torrents-history' => 'Torrents historia',
- 'total-download' => 'Guztira deskargatzea',
- 'total-downloads' => 'Guztira deskargak',
- 'total-leeching' => 'Leeching osoa',
- 'total-seeding' => 'Ekoizpen osoa',
- 'total-seedtime' => 'Eguzki-denbora osoa',
- 'total-upload' => 'Guztira kargatzea',
- 'total-uploads' => 'Guztira kargak',
- 'unban' => 'Banatu erabiltzailea',
- 'unfollow' => 'utzi',
- 'unlocked' => 'desblokeatu',
- 'unlocked-achievements' => 'Desblokeatutako lorpenak',
- 'unsatisfieds' => 'Unsatisfieds',
- 'upload-bon' => 'Igoera gehitu da BON dendatik',
- 'upload-recorded' => 'Grabatutako igoera',
- 'upload-true' => 'Benetako kargatzea',
- 'uploads' => 'Igoerak',
- 'uploads-table' => 'Kargatutako taula',
- 'user' => 'Erabiltzaileak',
- 'user-id' => 'Erabiltzaile IDa',
- 'username-seedbox' => 'Erabiltzaile izena Seedbox',
- 'visible-to-achievement' => 'Lorpenak ikusgai izateko',
- 'visible-to-achievement-help' => 'Zure lorpenak langileek eta ondorengo taldeek bakarrik ikusiko dituzte. Ezarpen hauek gainidazten dira Pribatua joaten bazara',
- 'visible-to-follower' => 'Jarraitzaileak ikusgai',
- 'visible-to-follower-help' => 'Zure jarraitzaileek langileek eta ondorengo taldeek bakarrik ikusiko dituzte. Ezarpen hauek gainidazten dira Pribatua joaten bazara',
- 'visible-to-forum' => 'Foroari buruzko informazioa ikusgai',
- 'visible-to-forum-help' => 'Zure foroaren informazioa langileek eta ondorengo taldeek bakarrik ikusiko dute. Ezarpen hauek gainidazten dira Pribatua joaten bazara',
- 'visible-to-other' => 'Beste ikusgai batzuk',
- 'visible-to-other-help' => 'Zure kontuari buruzko bestelako informazioa langileek eta ondorengo taldeek bakarrik ikusiko dute. Ezarpen hauek gainidazten dira Pribatua edo Ezkutatuta bazaude',
- 'visible-to-profile' => 'A profila ikusgai izateko',
- 'visible-to-profile-help' => 'Zure profila langileek eta ondorengo taldeek bakarrik ikusiko dute. Ezarpen hauek gainidazten dira Pribatua joaten bazara',
- 'visible-to-request' => 'Eskatu informazioa ikusgai',
- 'visible-to-request-help' => 'Zure eskaeraren informazioa langileek eta ondorengo taldeek bakarrik ikusiko dute. Ezarpen hauek gainidazten dira Pribatua joaten bazara',
- 'visible-to-torrent' => 'Torrent informazio ikusgai',
- 'visible-to-torrent-help' => 'Zure torrent informazioa soilik ikusgai egongo da langileei eta honako taldeei. Ezarpen hauek gainidazten dira Pribatua edo Ezkutatuta bazaude',
- 'warned-on' => 'Abisatu',
- 'warning' => 'Abisua',
- 'warning-log' => 'Abisu erregistroa',
- 'wishlist' => 'Gustuko',
+ 'mention-notification-forum-post' => 'Jaso jakinarazpen bat foroan idaztean @mentioned zaudenean',
+ 'mention-notification-help' => 'Kontrolatu zein jakinarazpen erabiltzaile batek @mentions bidaltzen zaionean. Ezarpen hauek gainidazten dira taldeei jakinarazpenak bidaltzeko baimena ematen ez badio erabiltzaileari @mentions baduzu edo Jakinarazpenak desgaitzen badituzu',
+ 'moderated-by' => 'Moderatuta: mod on',
+ 'my-bonus-points' => 'Nire Bonus Puntuak',
+ 'my-bookmarks' => 'Nire laster-markak',
+ 'my-fl-tokens' => 'Nire FL tokenak',
+ 'my-general-settings' => 'Nire ezarpen orokorrak',
+ 'my-notification' => 'Nire jakinarazpena',
+ 'my-notification-settings' => 'Nire jakinarazpenaren ezarpenak',
+ 'my-privacy' => 'Nire pribatutasuna',
+ 'my-privacy-settings' => 'Nire pribatutasun-ezarpenak',
+ 'my-profile' => 'Nire profila',
+ 'my-requested' => 'Nire eskatutakoa',
+ 'my-security' => 'Nire segurtasuna',
+ 'my-security-settings' => 'Nire segurtasun ezarpenak',
+ 'my-seedboxes' => 'Nire Seedboxes',
+ 'my-settings' => 'Nire ezarpenak',
+ 'my-wishlist' => 'Nire gogokoak',
+ 'no-logs' => 'Erabiltzaile honen datu-basean gonbidapen erregistroak ez daude!',
+ 'no-seedboxes' => 'Ez da hazi-kaxarik',
+ 'not-authorized' => 'Ez duzu orri hau ikusteko baimenik. Kide hau ninja bezala ezkutatuta egotea nahiago du!',
+ 'note' => 'Ohar',
+ 'notification' => 'Jakinarazpen',
+ 'notification-settings' => 'Jakinarazpenen ezarpenak',
+ 'notification-from-account' => 'Jaso kontuen jakinarazpenak',
+ 'notification-from-account-help' => 'Sistemaren, langileen eta honako taldeen kontuko jakinarazpenak soilik jasoko dituzu. Ezarpen hauek gainidazten dira jakinarazpenak desgaitzen badituzu',
+ 'notification-from-bon' => 'Jaso BON jakinarazpenak',
+ 'notification-from-bon-help' => 'Sistemari, langileei eta honako taldeei BON jakinarazpenak soilik jasoko dituzu. Ezarpen hauek gainidazten dira jakinarazpenak desgaitzen badituzu',
+ 'notification-from-following' => 'Jaso ondorengo erabiltzaileen jakinarazpenak',
+ 'notification-from-following-help' => 'Ondorengo taldeen jarraibideen jakinarazpenak soilik jasoko dituzu. Ezarpen hauek gainidazten dira jakinarazpenak desgaitzen badituzu',
+ 'notification-from-forum' => 'Jaso foroaren jakinarazpenak',
+ 'notification-from-forum-help' => 'Sistemaren, langileen eta honako taldeen foroaren jakinarazpenak soilik jasoko dituzu. Ezarpen hauek gainidazten dira jakinarazpenak desgaitzen badituzu',
+ 'notification-from-subscription' => 'Jaso harpidetzaren jakinarazpenak',
+ 'notification-from-subscription-help' => 'Sistemaren, langileen eta honako taldeen foroaren jakinarazpenak soilik jasoko dituzu. Ezarpen hauek gainidazten dira jakinarazpenak desgaitzen badituzu',
+ 'notification-from-torrent' => 'Jaso Torrent jakinarazpenak',
+ 'notification-from-torrent-help' => 'Sistemako, langileei eta ondorengo taldeei torrent jakinarazpenak soilik jasoko dituzu. Ezarpen hauek gainidazten dira jakinarazpenak desgaitzen badituzu',
+ 'notification-from-mention' => 'Jaso @Mention jakinarazpenak',
+ 'notification-from-mention-help' => 'Sistemaren, langileen eta honako taldeen @mention jakinarazpenak soilik jasoko dituzu. Ezarpen hauek gainidazten dira jakinarazpenak desgaitzen badituzu',
+ 'notification-from-request' => 'Jasotako jakinarazpenak jaso',
+ 'notification-from-request-help' => 'Sistemaren, langileen eta honako taldeen eskaera jakinarazpenak soilik jasoko dituzu. Ezarpen hauek gainidazten dira jakinarazpenak desgaitzen badituzu',
+ 'notifications' => 'jakinarazpenak',
+ 'offline' => 'Erabiltzailea Lineaz kanpo dago!',
+ 'online' => 'Erabiltzailea Linean dago!',
+ 'options' => 'Aukerak',
+ 'other-help' => 'Kontrolatu beste estatistikak eta informazioa zure profilera sartzeko baimena duten taldeekin partekatzea. Ezarpen hauek gainidazten dira taldeei zure beste estatistika eta informazioetara sartzeko edo pribatua joateko baimena ematen ez baduzu',
+ 'other-privacy' => 'Beste ezarpen batzuk',
+ 'other-privacy-online' => 'Baimendu erabiltzaileei linean dauden erabiltzaileen blokean ikustea',
+ 'passkey' => 'PID',
+ 'passkey-warning' => 'PID zure pasahitza bezalakoa da, seguru mantendu behar duzu!',
+ 'pending-achievements' => 'Lortutako lorpenak',
+ 'per-torrent' => 'Torrent-etik',
+ 'posts' => 'Mezuak',
+ 'posts-posted' => 'Bidalitako foro mezuak',
+ 'privacy' => 'pribatutasuna',
+ 'privacy-settings' => 'Pribatutasun ezarpenak',
+ 'private-info' => 'Informazio pribatua',
+ 'private-forum-profile' => 'Arreta: Kide hau eta mezuen historia PRIVATE gisa ezarri da!',
+ 'private-profile' => 'Arreta: Profil hau pribatua izan da!',
+ 'profile' => 'Profila',
+ 'profile-desc' => 'Erabiltzailea: erabiltzaile-profila erregistratuta: izenburua',
+ 'profile-privacy' => 'Profilaren ezarpenak',
+ 'profile-privacy-torrent-count' => 'Partekatu zure deskarga, igoerak, haziak eta leechak guztira',
+ 'profile-privacy-torrent-ratio' => 'Partekatu zure igoera / deskargatzeko datu guztira grabatutako ratioarekin',
+ 'profile-privacy-torrent-seed' => 'Partekatu zure batez besteko denbora eta ezarpena',
+ 'profile-privacy-title' => 'Partekatu tituluaren informazio pertsonala',
+ 'profile-privacy-about' => 'Partekatu zure pertsonari buruzko informazioa',
+ 'profile-privacy-bon-extra' => 'Partekatu zure BON estatistikak',
+ 'profile-privacy-comment-extra' => 'Partekatu zure iruzkinen estatistikak',
+ 'profile-privacy-forum-extra' => 'Partekatu zure foroetako estatistikak',
+ 'profile-privacy-request-extra' => 'Partekatu zure eskaera estatistikak',
+ 'profile-privacy-torrent-extra' => 'Partekatu zure torrent estatistikak',
+ 'profile-privacy-badge' => 'Partekatu zure irabazi txapak',
+ 'profile-privacy-achievement' => 'Partekatu azken lorpenak',
+ 'profile-privacy-follower' => 'Partekatu azkeneko jarraitzaileei',
+ 'profile-privacy-warning' => 'Partekatu H&R abisuak',
+ 'profile-privacy-help' => 'Kontrolatu zein profiletan eta zure estatistiketan agertzen diren estatistikak. Ezarpen hauek gainidazten dira taldeei zure profila atzitzeko edo pribatua baduzu ez baduzu baimentzen',
+ 'public-info' => 'Informazio publikoa',
+ 'recent-achievements' => 'Azken lorpenak',
+ 'recent-followers' => 'Azken jarraitzaileak',
+ 'registration-date' => 'Izena emateko data',
+ 'report' => 'txostena',
+ 'request-help' => 'Kontrolatu eskaera zehatzen erlazionatutako estatistikak eta zure profilera sartzeko baimena duten taldeekin informazioa partekatzea. Ezarpen hauek gainidazten dira taldeei zure eskatutako erlazionatutako estatistikak eta informazioa atzitzeko baimena ematen ez baduzu edo Pribatua joaten bazara',
+ 'request' => 'Eskaera',
+ 'requested' => 'Eskatutako',
+ 'requests' => 'eskaerak',
+ 'request-comments' => 'Eskatu iruzkinak',
+ 'request-notification' => 'Eskatu jakinarazpenen ezarpenak',
+ 'request-notification-bounty' => 'Jaso jakinarazpena eskatutako torrent batek sari berri bat lortzen duenean',
+ 'request-notification-comment' => 'Jaso jakinarazpena eskatutako torrent batek iruzkin berria jasotzen duenean',
+ 'request-notification-fill' => 'Jaso jakinarazpena eskatutako torrent bat beteta dagoenean',
+ 'request-notification-fill-approve' => 'Jaso jakinarazpen bat eskatutako torrent betetzea onartzen denean',
+ 'request-notification-fill-reject' => 'Jaso jakinarazpen bat eskatutako torrent betetze bat baztertzean',
+ 'request-notification-claim' => 'Jaso jakinarazpena eskatutako torrent bat erreklamatzen denean',
+ 'request-notification-unclaim' => 'Jaso jakinarazpen bat eskatutako torrent batek eskatu gabe',
+ 'request-notification-help' => 'Kontrolatu jakinarazpenak zein diren eskaera-jardueren inguruan. Ezarpen hauek gainidazten dira taldeei inolako jakinarazpenei buruzko jakinarazpenak bidaltzeko edo jakinarazpenak desgaitzen badituzu',
+ 'request-privacy' => 'Eskatu ezarpenak',
+ 'request-privacy-requested' => 'Utzi erabiltzaileei egin dituzun eskaeren zerrenda ikusteko',
+ 'reset-passkey' => 'Berrezarri pasa tekla (PID)',
+ 'reset-passkey-help' => 'Berriro deskargatu / berriro kargatuko dituzu zure aktibo torrentzak, PID berrezarri ondoren',
+ 'reset-rss' => 'Berrezarri RSS gakoa (RID)',
+ 'reset-rss-help' => 'Zure RSS jario aktibo guztiak berriro kargatu beharko dituzu, RID berrezarri ondoren',
+ 'resurrections' => 'resurrections',
+ 'search' => 'Bilaketa azkarra erabiltzaile izenarekin',
+ 'security' => 'Segurtasuna',
+ 'security-settings' => 'Segurtasun ezarpenak',
+ 'seedboxes' => 'Seedboxes',
+ 'seeds' => 'haziak',
+ 'send-invite' => 'Bidali gonbidapena',
+ 'sender' => 'Sender',
+ 'settings' => 'ezarpenak',
+ 'show-passkey' => 'Erakutsi PID',
+ 'staff-noted' => 'Langileak kontu kontuak',
+ 'statistics' => 'Estatistikak',
+ 'subscription-notification' => 'Harpidetza Jakinarazpenaren Ezarpenak',
+ 'subscription-notification-forum' => 'Jasotako jakinarazpen bat harpidetutako foroak gai berria lortzen duenean',
+ 'subscription-notification-topic' => 'Jaso jakinarazpen bat harpidetutako gaia post berria lortzen denean',
+ 'subscription-notification-help' => 'Kontrolatu zeinen jakinarazpenak zure harpidetzei buruz. Ezarpen hauek gainidazten dira taldeei zure harpidetzari buruzko jakinarazpenak bidaltzeko edo jakinarazpenak desgaitzen badituzu',
+ 'thanks-given' => 'Eskerrik asko emandako',
+ 'thanks-received' => 'Eskerrik asko jaso da',
+ 'tips-given' => 'Emandako aholkuak',
+ 'tips-received' => 'Jasotako aholkuak',
+ 'title' => 'Izenburua',
+ 'top-bankers' => 'Gehien bankariak',
+ 'top-downloaders-data' => 'Deskargatzaile nagusiak (datuak)',
+ 'top-leechers' => 'Top Leechers',
+ 'top-leechers-count' => 'Top Leechers (Count)',
+ 'top-seeders' => 'Gehien Seeders',
+ 'top-seeders-count' => 'Gehien Seeders (Count)',
+ 'top-seeding-size' => 'Top Seeding (tamaina)',
+ 'top-seedtime' => 'Gehien haziak',
+ 'top-uploaders-data' => 'Gehien kargatzaileak (datuak)',
+ 'top-uploaders-count' => 'Gehien kargatzaileak (zenbatu)',
+ 'topics' => 'Gaiak',
+ 'topics-started' => 'Foroko gaiak hasi ziren',
+ 'torrent-comments' => 'Torrent iruzkinak egindako',
+ 'torrent-help' => 'Kontrolatu zure profilera sartzeko baimena duten taldeekin lotutako erlazionatutako estatistikak eta informazioa partekatzea. Ezarpen hauek gainidazten dira taldeei zure torrentari lotutako estatistikak eta informazioa atzitzeko baimena ematen ez baduzu edo Pribatua joaten bazara',
+ 'torrent-notification' => 'Torrent Jakinarazpenaren Ezarpenak',
+ 'torrent-notification-comment' => 'Jaso jakinarazpena kargatutako torrent batek iruzkin berria jasotzen duenean',
+ 'torrent-notification-thank' => 'Jaso jakinarazpena kargatutako torrent batek esker berri bat lortzen duenean',
+ 'torrent-notification-tip' => 'Jaso jakinarazpen bat kargatutako torrent batek punta berria lortzen duenean',
+ 'torrent-notification-help' => 'Kontrolatu zein jakinarazpen torrent-eko jardueretara bidaltzen diren. Ezarpen hauek gainidazten dira taldeei torrent-eko jardueren inguruko jakinarazpenak bidaltzeko edo jakinarazpenak desgaitzen badituzu',
+ 'torrent-privacy' => 'Torrent ezarpenak',
+ 'torrent-privacy-download' => 'Utzi erabiltzaileei deskargatutako torrenteen zerrenda ikusteko',
+ 'torrent-privacy-upload' => 'Utzi erabiltzaileei kargatu dituzun torrent zerrenda ikusi',
+ 'torrent-privacy-peer' => 'Utzi erabiltzaileei torrent parekoen historia taula ikusi',
+ 'torrents' => 'torrents',
+ 'torrents-history' => 'Torrents historia',
+ 'total-download' => 'Guztira deskargatzea',
+ 'total-downloads' => 'Guztira deskargak',
+ 'total-leeching' => 'Leeching osoa',
+ 'total-seeding' => 'Ekoizpen osoa',
+ 'total-seedtime' => 'Eguzki-denbora osoa',
+ 'total-upload' => 'Guztira kargatzea',
+ 'total-uploads' => 'Guztira kargak',
+ 'unban' => 'Banatu erabiltzailea',
+ 'unfollow' => 'utzi',
+ 'unlocked' => 'desblokeatu',
+ 'unlocked-achievements' => 'Desblokeatutako lorpenak',
+ 'unsatisfieds' => 'Unsatisfieds',
+ 'upload-bon' => 'Igoera gehitu da BON dendatik',
+ 'upload-recorded' => 'Grabatutako igoera',
+ 'upload-true' => 'Benetako kargatzea',
+ 'uploads' => 'Igoerak',
+ 'uploads-table' => 'Kargatutako taula',
+ 'user' => 'Erabiltzaileak',
+ 'user-id' => 'Erabiltzaile IDa',
+ 'username-seedbox' => 'Erabiltzaile izena Seedbox',
+ 'visible-to-achievement' => 'Lorpenak ikusgai izateko',
+ 'visible-to-achievement-help' => 'Zure lorpenak langileek eta ondorengo taldeek bakarrik ikusiko dituzte. Ezarpen hauek gainidazten dira Pribatua joaten bazara',
+ 'visible-to-follower' => 'Jarraitzaileak ikusgai',
+ 'visible-to-follower-help' => 'Zure jarraitzaileek langileek eta ondorengo taldeek bakarrik ikusiko dituzte. Ezarpen hauek gainidazten dira Pribatua joaten bazara',
+ 'visible-to-forum' => 'Foroari buruzko informazioa ikusgai',
+ 'visible-to-forum-help' => 'Zure foroaren informazioa langileek eta ondorengo taldeek bakarrik ikusiko dute. Ezarpen hauek gainidazten dira Pribatua joaten bazara',
+ 'visible-to-other' => 'Beste ikusgai batzuk',
+ 'visible-to-other-help' => 'Zure kontuari buruzko bestelako informazioa langileek eta ondorengo taldeek bakarrik ikusiko dute. Ezarpen hauek gainidazten dira Pribatua edo Ezkutatuta bazaude',
+ 'visible-to-profile' => 'A profila ikusgai izateko',
+ 'visible-to-profile-help' => 'Zure profila langileek eta ondorengo taldeek bakarrik ikusiko dute. Ezarpen hauek gainidazten dira Pribatua joaten bazara',
+ 'visible-to-request' => 'Eskatu informazioa ikusgai',
+ 'visible-to-request-help' => 'Zure eskaeraren informazioa langileek eta ondorengo taldeek bakarrik ikusiko dute. Ezarpen hauek gainidazten dira Pribatua joaten bazara',
+ 'visible-to-torrent' => 'Torrent informazio ikusgai',
+ 'visible-to-torrent-help' => 'Zure torrent informazioa soilik ikusgai egongo da langileei eta honako taldeei. Ezarpen hauek gainidazten dira Pribatua edo Ezkutatuta bazaude',
+ 'warned-on' => 'Abisatu',
+ 'warning' => 'Abisua',
+ 'warning-log' => 'Abisu erregistroa',
+ 'wishlist' => 'Gustuko',
];
diff --git a/lang/eu/validation.php b/lang/eu/validation.php
index 0074cddf2..4fa447cf7 100644
--- a/lang/eu/validation.php
+++ b/lang/eu/validation.php
@@ -23,108 +23,108 @@ return [
|
*/
- 'accepted' => ':attribute onartu beharra dago.',
- 'active_url' => ':attribute ez da baliozko URL bat.',
- 'after' => ':attribute :date osteko data izan behar da.',
- 'after_or_equal' => ':attribute :date osteko data edo data bera izan behar da.',
- 'alpha' => ':attribute hizkiak besterik ezin ditu izan.',
- 'alpha_dash' => ':attribute hizkiak, zenbakiak eta marrak besterik ezin ditu izan.',
- 'alpha_num' => ':attribute hizkiak eta zenbakiak besterik ezin ditu izan.',
- 'array' => ':attribute bilduma izan behar da.',
- 'before' => ':attribute :date aurreko data izan behar da.',
- 'before_or_equal' => ':attribute :date aurreko data edo data bera izan behar da.',
- 'between' => [
+ 'accepted' => ':attribute onartu beharra dago.',
+ 'active_url' => ':attribute ez da baliozko URL bat.',
+ 'after' => ':attribute :date osteko data izan behar da.',
+ 'after_or_equal' => ':attribute :date osteko data edo data bera izan behar da.',
+ 'alpha' => ':attribute hizkiak besterik ezin ditu izan.',
+ 'alpha_dash' => ':attribute hizkiak, zenbakiak eta marrak besterik ezin ditu izan.',
+ 'alpha_num' => ':attribute hizkiak eta zenbakiak besterik ezin ditu izan.',
+ 'array' => ':attribute bilduma izan behar da.',
+ 'before' => ':attribute :date aurreko data izan behar da.',
+ 'before_or_equal' => ':attribute :date aurreko data edo data bera izan behar da.',
+ 'between' => [
'numeric' => ':attribute :min eta :max artean egon behar da.',
- 'file' => ':attribute-(e)k :min eta :max kilobyte arteko pisua izan behar du.',
- 'string' => ':attribute-(e)k :min eta :max karaktere artean izan behar ditu.',
- 'array' => ':attribute-(e)k :min eta :max arteko elementu kopurua izan behar du.',
+ 'file' => ':attribute-(e)k :min eta :max kilobyte arteko pisua izan behar du.',
+ 'string' => ':attribute-(e)k :min eta :max karaktere artean izan behar ditu.',
+ 'array' => ':attribute-(e)k :min eta :max arteko elementu kopurua izan behar du.',
],
- 'boolean' => ':attribute-(r)en balioa egia edo gezurra izan behar da.',
- 'confirmed' => ':attribute-(r)en berrespena ez dator bat.',
- 'date' => ':attribute ez da baliozko data.',
- 'date_equals' => 'The :attribute must be a date equal to :date.',
- 'date_format' => ':attribute datak ez du :format formatua.',
- 'different' => ':attribute eta :other ezberdinak izan behar dira.',
- 'digits' => ':attribute-(e)k :digits digitu eduki behar ditu.',
- 'digits_between' => ':attribute-(e)k :min eta :max arteko digitu kopurua eduki behar du.',
- 'dimensions' => ':attribute irudiaren neurriak baliogabeak dira.',
- 'distinct' => ':attribute-(e)k bikoiztutako balioa dauka.',
- 'email' => ':attribute baliozko helbide elektronikoa izan behar da.',
- 'exists' => ':attribute baliogabea da.',
- 'file' => ':attribute fitxategi bat izan behar da.',
- 'filled' => ':attribute derrigorrezkoa da.',
- 'gt' => [
+ 'boolean' => ':attribute-(r)en balioa egia edo gezurra izan behar da.',
+ 'confirmed' => ':attribute-(r)en berrespena ez dator bat.',
+ 'date' => ':attribute ez da baliozko data.',
+ 'date_equals' => 'The :attribute must be a date equal to :date.',
+ 'date_format' => ':attribute datak ez du :format formatua.',
+ 'different' => ':attribute eta :other ezberdinak izan behar dira.',
+ 'digits' => ':attribute-(e)k :digits digitu eduki behar ditu.',
+ 'digits_between' => ':attribute-(e)k :min eta :max arteko digitu kopurua eduki behar du.',
+ 'dimensions' => ':attribute irudiaren neurriak baliogabeak dira.',
+ 'distinct' => ':attribute-(e)k bikoiztutako balioa dauka.',
+ 'email' => ':attribute baliozko helbide elektronikoa izan behar da.',
+ 'exists' => ':attribute baliogabea da.',
+ 'file' => ':attribute fitxategi bat izan behar da.',
+ 'filled' => ':attribute derrigorrezkoa da.',
+ 'gt' => [
'numeric' => ':attribute-(e)k :value baino handiagoa izan behar du.',
- 'file' => ':attribute-(e)k :value kilobyte baino handiagoa izan behar du.',
- 'string' => ':attribute-(e)k :value karaktere baino gehiago izan behar ditu.',
- 'array' => ':attribute-(e)k :value elementu baino gehiago izan behar ditu.',
+ 'file' => ':attribute-(e)k :value kilobyte baino handiagoa izan behar du.',
+ 'string' => ':attribute-(e)k :value karaktere baino gehiago izan behar ditu.',
+ 'array' => ':attribute-(e)k :value elementu baino gehiago izan behar ditu.',
],
- 'gte' => [
+ 'gte' => [
'numeric' => ':attribute-(e)k :value baino handiagoa edo berdina izan behar du.',
- 'file' => ':attribute-(e)k :value kilobyte edo gehiago izan behar ditu.',
- 'string' => ':attribute-(e)k :value karaktere edo gehiago izan behar ditu.',
- 'array' => ':attribute-(e)k :value elementu edo gehiago izan behar ditu.',
+ 'file' => ':attribute-(e)k :value kilobyte edo gehiago izan behar ditu.',
+ 'string' => ':attribute-(e)k :value karaktere edo gehiago izan behar ditu.',
+ 'array' => ':attribute-(e)k :value elementu edo gehiago izan behar ditu.',
],
- 'image' => ':attribute irudi bat izan behar da.',
- 'in' => ':attribute baliogabea da.',
- 'in_array' => ':attribute ez da existizen :other-(e)n.',
- 'integer' => ':attribute zenbaki osoa izan behar da.',
- 'ip' => ':attribute baliozko IP helbidea izan behar da.',
- 'ipv4' => ':attribute baliozko IPv4 helbidea izan behar da.',
- 'ipv6' => ':attribute baliozko IPv6 helbidea izan behar da.',
- 'json' => ':attribute baliozko JSON karaktere-katea izan behar da.',
- 'lt' => [
+ 'image' => ':attribute irudi bat izan behar da.',
+ 'in' => ':attribute baliogabea da.',
+ 'in_array' => ':attribute ez da existizen :other-(e)n.',
+ 'integer' => ':attribute zenbaki osoa izan behar da.',
+ 'ip' => ':attribute baliozko IP helbidea izan behar da.',
+ 'ipv4' => ':attribute baliozko IPv4 helbidea izan behar da.',
+ 'ipv6' => ':attribute baliozko IPv6 helbidea izan behar da.',
+ 'json' => ':attribute baliozko JSON karaktere-katea izan behar da.',
+ 'lt' => [
'numeric' => ':attribute-(e)k :value baino txikiagoa izan behar du.',
- 'file' => ':attribute-(e)k :value kilobyte baino txikiagoa izan behar du.',
- 'string' => ':attribute-(e)k :value karaktere baino gutxiago izan behar ditu.',
- 'array' => ':attribute-(e)k :value elementu baino gutxiago izan behar ditu.',
+ 'file' => ':attribute-(e)k :value kilobyte baino txikiagoa izan behar du.',
+ 'string' => ':attribute-(e)k :value karaktere baino gutxiago izan behar ditu.',
+ 'array' => ':attribute-(e)k :value elementu baino gutxiago izan behar ditu.',
],
- 'lte' => [
+ 'lte' => [
'numeric' => ':attribute-(e)k :value baino txikiagoa edo berdina izan behar du.',
- 'file' => ':attribute-(e)k :value kilobyte edo gutxiago izan behar ditu.',
- 'string' => ':attribute-(e)k :value karaktere edo gutxiago izan behar ditu.',
- 'array' => ':attribute-(e)k :value elementu edo gutxiago izan behar ditu.',
+ 'file' => ':attribute-(e)k :value kilobyte edo gutxiago izan behar ditu.',
+ 'string' => ':attribute-(e)k :value karaktere edo gutxiago izan behar ditu.',
+ 'array' => ':attribute-(e)k :value elementu edo gutxiago izan behar ditu.',
],
- 'max' => [
+ 'max' => [
'numeric' => ':attribute ezin da :max baino handiagoa izan.',
- 'file' => ':attribute ezin da :max kilobyte baino handiagoa izan.',
- 'string' => ':attribute-(e)k ezin du :max karaktere baino gehiago eduki.',
- 'array' => ':attribute-(e)k ezin du :max elementu baino gehiago eduki.',
+ 'file' => ':attribute ezin da :max kilobyte baino handiagoa izan.',
+ 'string' => ':attribute-(e)k ezin du :max karaktere baino gehiago eduki.',
+ 'array' => ':attribute-(e)k ezin du :max elementu baino gehiago eduki.',
],
- 'mimes' => ':attribute :values motako fitxategia izan behar da.',
- 'mimetypes' => ':attribute :values motako fitxategia izan behar da.',
- 'min' => [
+ 'mimes' => ':attribute :values motako fitxategia izan behar da.',
+ 'mimetypes' => ':attribute :values motako fitxategia izan behar da.',
+ 'min' => [
'numeric' => ':attribute-(e)k gutxienez :min-(e)ko tamaina izan behar du.',
- 'file' => ':attribute-(e)k gutxienez :min kilobyte izan behar ditu.',
- 'string' => ':attribute-(e)k gutxienez :min karaktere izan behar ditu.',
- 'array' => ':attribute-(e)k gutxienez :min elementu izan behar ditu.',
+ 'file' => ':attribute-(e)k gutxienez :min kilobyte izan behar ditu.',
+ 'string' => ':attribute-(e)k gutxienez :min karaktere izan behar ditu.',
+ 'array' => ':attribute-(e)k gutxienez :min elementu izan behar ditu.',
],
- 'not_in' => ':attribute baliogabea da.',
- 'not_regex' => ':attribute formatua baliogabea da.',
- 'numeric' => ':attribute zenbakizkoa izan behar da.',
- 'present' => ':attribute ezin da hutsik egon.',
- 'regex' => ':attribute baliogabea da.',
- 'required' => ':attribute derrigorrezkoa da.',
- 'required_if' => ':attribute derrigorrezkoa da :other :value denean.',
- 'required_unless' => ':attribute derrigorrezkoa da :other :values-(e)n egon ezean.',
- 'required_with' => ':attribute derrigorrezkoa da :values dagoenean.',
- 'required_with_all' => ':attribute derrigorrezkoa da :values daudenean.',
- 'required_without' => ':attribute derrigorrezkoa da :values ez dagoenean.',
+ 'not_in' => ':attribute baliogabea da.',
+ 'not_regex' => ':attribute formatua baliogabea da.',
+ 'numeric' => ':attribute zenbakizkoa izan behar da.',
+ 'present' => ':attribute ezin da hutsik egon.',
+ 'regex' => ':attribute baliogabea da.',
+ 'required' => ':attribute derrigorrezkoa da.',
+ 'required_if' => ':attribute derrigorrezkoa da :other :value denean.',
+ 'required_unless' => ':attribute derrigorrezkoa da :other :values-(e)n egon ezean.',
+ 'required_with' => ':attribute derrigorrezkoa da :values dagoenean.',
+ 'required_with_all' => ':attribute derrigorrezkoa da :values daudenean.',
+ 'required_without' => ':attribute derrigorrezkoa da :values ez dagoenean.',
'required_without_all' => ':attribute derrigorrezkoa da :values ez daudenean.',
- 'same' => ':attribute eta :other bat etorri behar dira.',
- 'size' => [
+ 'same' => ':attribute eta :other bat etorri behar dira.',
+ 'size' => [
'numeric' => ':attribute-(e)k :size tamaina izan behar du.',
- 'file' => ':attribute-(e)k :size kilobyte izan behar behar ditu.',
- 'string' => ':attribute-(e)k :size karaktere izan behar ditu.',
- 'array' => ':attribute-(e)k :size elementu izan behar ditu.',
+ 'file' => ':attribute-(e)k :size kilobyte izan behar behar ditu.',
+ 'string' => ':attribute-(e)k :size karaktere izan behar ditu.',
+ 'array' => ':attribute-(e)k :size elementu izan behar ditu.',
],
- 'starts_with' => 'The :attribute must start with one of the following: :values',
- 'string' => ':attribute karaktere-katea izan behar da.',
- 'timezone' => ':attribute baliozko ordu-eremua izan behar da.',
- 'unique' => ':attribute jadanik erregistratua izan da.',
- 'uploaded' => ':attribute kargatzerakoan huts egin du.',
- 'url' => ':attribute-(r)en formatua baliogabea da.',
- 'uuid' => ':attribute-(e)k baliozko UUIDa izan behar du.',
+ 'starts_with' => 'The :attribute must start with one of the following: :values',
+ 'string' => ':attribute karaktere-katea izan behar da.',
+ 'timezone' => ':attribute baliozko ordu-eremua izan behar da.',
+ 'unique' => ':attribute jadanik erregistratua izan da.',
+ 'uploaded' => ':attribute kargatzerakoan huts egin du.',
+ 'url' => ':attribute-(r)en formatua baliogabea da.',
+ 'uuid' => ':attribute-(e)k baliozko UUIDa izan behar du.',
/*
|--------------------------------------------------------------------------
@@ -155,37 +155,37 @@ return [
*/
'attributes' => [
- 'name' => 'izena',
- 'username' => 'erabiltzailea',
- 'email' => 'posta elektronikoa',
- 'first_name' => 'izena',
- 'last_name' => 'abizena',
- 'password' => 'pasahitza',
+ 'name' => 'izena',
+ 'username' => 'erabiltzailea',
+ 'email' => 'posta elektronikoa',
+ 'first_name' => 'izena',
+ 'last_name' => 'abizena',
+ 'password' => 'pasahitza',
'password_confirmation' => 'pasahitzaren berrespena',
- 'city' => 'hiria',
- 'country' => 'herrialdea',
- 'address' => 'helbidea',
- 'phone' => 'telefonoa',
- 'mobile' => 'mugikorra',
- 'age' => 'adina',
- 'sex' => 'sexua',
- 'gender' => 'generoa',
- 'year' => 'urtea',
- 'month' => 'hilabetea',
- 'day' => 'eguna',
- 'hour' => 'ordua',
- 'minute' => 'minutua',
- 'second' => 'segundoa',
- 'title' => 'izenburua',
- 'content' => 'edukia',
- 'body' => 'gorputza',
- 'description' => 'deskribapena',
- 'excerpt' => 'pasartea',
- 'date' => 'data',
- 'time' => 'denbora',
- 'subject' => 'gaia',
- 'message' => 'mezua',
- 'available' => 'erabilgarria',
- 'size' => 'neurria',
+ 'city' => 'hiria',
+ 'country' => 'herrialdea',
+ 'address' => 'helbidea',
+ 'phone' => 'telefonoa',
+ 'mobile' => 'mugikorra',
+ 'age' => 'adina',
+ 'sex' => 'sexua',
+ 'gender' => 'generoa',
+ 'year' => 'urtea',
+ 'month' => 'hilabetea',
+ 'day' => 'eguna',
+ 'hour' => 'ordua',
+ 'minute' => 'minutua',
+ 'second' => 'segundoa',
+ 'title' => 'izenburua',
+ 'content' => 'edukia',
+ 'body' => 'gorputza',
+ 'description' => 'deskribapena',
+ 'excerpt' => 'pasartea',
+ 'date' => 'data',
+ 'time' => 'denbora',
+ 'subject' => 'gaia',
+ 'message' => 'mezua',
+ 'available' => 'erabilgarria',
+ 'size' => 'neurria',
],
];
diff --git a/lang/fa/articles.php b/lang/fa/articles.php
index 4771d51b3..77c70e87c 100644
--- a/lang/fa/articles.php
+++ b/lang/fa/articles.php
@@ -12,8 +12,8 @@
*/
return [
- 'articles' => 'مقالات',
+ 'articles' => 'مقالات',
'meta-articles' => 'مقالات و اخبار مربوط به ردیاب و جامعه',
- 'published-at' => 'منتشر شده در',
- 'read-more' => 'ادامه مطلب',
+ 'published-at' => 'منتشر شده در',
+ 'read-more' => 'ادامه مطلب',
];
diff --git a/lang/fa/backup.php b/lang/fa/backup.php
index ab7ea0105..5337f9de8 100644
--- a/lang/fa/backup.php
+++ b/lang/fa/backup.php
@@ -23,31 +23,31 @@ return [
|
*/
- 'backup' => 'پشتیبان',
- 'create_a_new_backup' => 'ایجاد پشتیبان جدید',
- 'create_a_new_files_backup' => 'ایجاد فایل پشتیبان',
- 'create_a_new_db_backup' => 'ایجاد پشتیبان پایگاه داده',
- 'existing_backups' => 'پشتیبانهای موجود',
- 'date' => 'تاریخ',
- 'file_size' => 'سایز پرونده',
- 'actions' => 'عملیات',
- 'download' => 'بارگیری',
- 'delete' => 'حذف',
- 'delete_confirm' => 'آیا شما از حذف این پرونده پشتیبان اطمینان دارید؟',
- 'delete_confirmation_title' => 'انجام شد',
- 'delete_confirmation_message' => 'پرونده پشتیبان با موفقیت حذف شد.',
- 'delete_error_title' => 'خطا',
- 'delete_error_message' => 'پرونده پشتیبان حذف نشده است.',
- 'delete_cancel_title' => 'مشکلی نیست',
- 'delete_cancel_message' => 'پرونده پشتیبان حذف نشده است.',
- 'create_confirmation_title' => 'فرآیند پشتیبانگیری شروع شد.',
- 'create_confirmation_message' => 'لطفا چند دقیقه صبر کنید تا کامل شود ، سپس صفحه را تازه کنید.',
- 'create_error_title' => 'خطا پشتیبان',
- 'create_error_message' => 'فایل پشتیبان نمیتواند ساخته شود.',
- 'create_warning_title' => 'خطای نا مشخص',
- 'create_warning_message' => 'نسخه پشتیبان شما ممکن است ایجاد نشده باشد. لطفاً پرونده ها را برای جزئیات بیشتر بررسی کنید.',
- 'location' => 'محل',
- 'no_disks_configured' => 'دیسک پشتیبانی در config/backup.php تنظیم نشده است.',
- 'backup_doesnt_exist' => 'پرونده پشتیبان وجود ندارد.',
+ 'backup' => 'پشتیبان',
+ 'create_a_new_backup' => 'ایجاد پشتیبان جدید',
+ 'create_a_new_files_backup' => 'ایجاد فایل پشتیبان',
+ 'create_a_new_db_backup' => 'ایجاد پشتیبان پایگاه داده',
+ 'existing_backups' => 'پشتیبانهای موجود',
+ 'date' => 'تاریخ',
+ 'file_size' => 'سایز پرونده',
+ 'actions' => 'عملیات',
+ 'download' => 'بارگیری',
+ 'delete' => 'حذف',
+ 'delete_confirm' => 'آیا شما از حذف این پرونده پشتیبان اطمینان دارید؟',
+ 'delete_confirmation_title' => 'انجام شد',
+ 'delete_confirmation_message' => 'پرونده پشتیبان با موفقیت حذف شد.',
+ 'delete_error_title' => 'خطا',
+ 'delete_error_message' => 'پرونده پشتیبان حذف نشده است.',
+ 'delete_cancel_title' => 'مشکلی نیست',
+ 'delete_cancel_message' => 'پرونده پشتیبان حذف نشده است.',
+ 'create_confirmation_title' => 'فرآیند پشتیبانگیری شروع شد.',
+ 'create_confirmation_message' => 'لطفا چند دقیقه صبر کنید تا کامل شود ، سپس صفحه را تازه کنید.',
+ 'create_error_title' => 'خطا پشتیبان',
+ 'create_error_message' => 'فایل پشتیبان نمیتواند ساخته شود.',
+ 'create_warning_title' => 'خطای نا مشخص',
+ 'create_warning_message' => 'نسخه پشتیبان شما ممکن است ایجاد نشده باشد. لطفاً پرونده ها را برای جزئیات بیشتر بررسی کنید.',
+ 'location' => 'محل',
+ 'no_disks_configured' => 'دیسک پشتیبانی در config/backup.php تنظیم نشده است.',
+ 'backup_doesnt_exist' => 'پرونده پشتیبان وجود ندارد.',
'only_local_downloads_supported' => 'تنها دانلود از سیستمفایل محلی پشتیبانی میشود',
];
diff --git a/lang/fa/blocks.php b/lang/fa/blocks.php
index 7ee45592e..0b900f4d4 100644
--- a/lang/fa/blocks.php
+++ b/lang/fa/blocks.php
@@ -12,19 +12,19 @@
*/
return [
- 'chatbox' => 'جعبه گفتگو',
- 'click' => 'کلیک',
- 'to-enable-editor' => 'برای فعال کردن ویرایشگر',
- 'featured-by' => 'ویژه توسط',
- 'featured-torrents' => 'تورنت های ویژه',
+ 'chatbox' => 'جعبه گفتگو',
+ 'click' => 'کلیک',
+ 'to-enable-editor' => 'برای فعال کردن ویرایشگر',
+ 'featured-by' => 'ویژه توسط',
+ 'featured-torrents' => 'تورنت های ویژه',
'featured-torrents-intro' => 'آنها را در حالی که می توانید!',
- 'featured-until' => 'این تاپیک برجسته تا',
- 'top-torrents' => 'تورنت بالا',
- 'latest-posts' => 'آخرین پست ها',
- 'latest-topics' => 'آخرین موضوعات',
- 'active-in-last' => 'فعال در آخرین',
- 'users-online' => 'کاربران آنلاین',
- 'check-news' => 'اخبار (بررسی روزانه)',
- 'new-news' => 'اخبار جدید',
- 'new-torrents' => 'تورنتهای جدید',
+ 'featured-until' => 'این تاپیک برجسته تا',
+ 'top-torrents' => 'تورنت بالا',
+ 'latest-posts' => 'آخرین پست ها',
+ 'latest-topics' => 'آخرین موضوعات',
+ 'active-in-last' => 'فعال در آخرین',
+ 'users-online' => 'کاربران آنلاین',
+ 'check-news' => 'اخبار (بررسی روزانه)',
+ 'new-news' => 'اخبار جدید',
+ 'new-torrents' => 'تورنتهای جدید',
];
diff --git a/lang/fa/bon.php b/lang/fa/bon.php
index 7bfa3e7d1..1a76b0092 100644
--- a/lang/fa/bon.php
+++ b/lang/fa/bon.php
@@ -12,44 +12,44 @@
*/
return [
- 'activated' => 'فعال شده',
- 'active' => 'فعال شده است',
- 'amount' => 'میزان',
- 'bon' => 'بون',
- 'bonus' => 'جایزه',
- 'date' => 'تاریخ',
- 'earning' => 'درآمد',
- 'earning-rate' => 'با این میزان درآمد، در هر دوره زمانی زیر درآمد خواهید داشت.',
- 'earnings' => 'درآمد',
- 'exchange' => 'تبادل',
- 'exchange-warning' => 'مبادلات نهایی هستند، قبل از اینکه مبادله ای انجام دهید، قبل از انتخاب گزینه های خود را بررسی کنید.',
- 'extended-stats' => 'آمار استثنایی',
- 'gift' => 'هدیه',
- 'gift-bonus' => 'امتیاز پاداش هدیه',
- 'gift-to' => 'جایزه هدیه هدیه به',
- 'gifts' => 'هدایا',
- 'item' => 'مورد',
- 'no-refund' => 'بدون بازپرداخت!',
- 'per-day' => 'امتیاز در روز',
- 'per-hour' => 'امتیازات در ساعت',
- 'per-minute' => 'امتیاز در هر دقیقه',
- 'per-month' => 'امتیاز در هر ماه',
- 'per-second' => 'امتیاز در ثانیه',
- 'per-week' => 'امتیاز در هفته',
- 'per-year' => 'امتیازات در سال',
- 'points' => 'نکته ها',
- 'receiver' => 'گیرنده',
- 'review-seeds' => 'همه تورنتهای بذر را مرور کنید',
- 'send-gift' => 'ارسال هدیه',
- 'sender' => 'فرستنده',
- 'store' => 'فروشگاه',
- 'tips' => 'نکات',
- 'total' => 'درآمد کل',
- 'total-gifts' => 'در مجموع BON هدایا',
- 'total-tips' => 'در مجموع BON نکات',
+ 'activated' => 'فعال شده',
+ 'active' => 'فعال شده است',
+ 'amount' => 'میزان',
+ 'bon' => 'بون',
+ 'bonus' => 'جایزه',
+ 'date' => 'تاریخ',
+ 'earning' => 'درآمد',
+ 'earning-rate' => 'با این میزان درآمد، در هر دوره زمانی زیر درآمد خواهید داشت.',
+ 'earnings' => 'درآمد',
+ 'exchange' => 'تبادل',
+ 'exchange-warning' => 'مبادلات نهایی هستند، قبل از اینکه مبادله ای انجام دهید، قبل از انتخاب گزینه های خود را بررسی کنید.',
+ 'extended-stats' => 'آمار استثنایی',
+ 'gift' => 'هدیه',
+ 'gift-bonus' => 'امتیاز پاداش هدیه',
+ 'gift-to' => 'جایزه هدیه هدیه به',
+ 'gifts' => 'هدایا',
+ 'item' => 'مورد',
+ 'no-refund' => 'بدون بازپرداخت!',
+ 'per-day' => 'امتیاز در روز',
+ 'per-hour' => 'امتیازات در ساعت',
+ 'per-minute' => 'امتیاز در هر دقیقه',
+ 'per-month' => 'امتیاز در هر ماه',
+ 'per-second' => 'امتیاز در ثانیه',
+ 'per-week' => 'امتیاز در هفته',
+ 'per-year' => 'امتیازات در سال',
+ 'points' => 'نکته ها',
+ 'receiver' => 'گیرنده',
+ 'review-seeds' => 'همه تورنتهای بذر را مرور کنید',
+ 'send-gift' => 'ارسال هدیه',
+ 'sender' => 'فرستنده',
+ 'store' => 'فروشگاه',
+ 'tips' => 'نکات',
+ 'total' => 'درآمد کل',
+ 'total-gifts' => 'در مجموع BON هدایا',
+ 'total-tips' => 'در مجموع BON نکات',
'you-have-received-gifts' => 'شما دریافت کرده اید',
- 'you-have-sent-gifts' => 'شما فرستاده اید',
- 'you-have-received-tips' => 'شما دریافت کرده اید',
- 'you-have-sent-tips' => 'شما فرستاده اید',
- 'your-points' => 'امتیازات شما',
+ 'you-have-sent-gifts' => 'شما فرستاده اید',
+ 'you-have-received-tips' => 'شما دریافت کرده اید',
+ 'you-have-sent-tips' => 'شما فرستاده اید',
+ 'your-points' => 'امتیازات شما',
];
diff --git a/lang/fa/bot.php b/lang/fa/bot.php
index 556678436..bfac5da74 100644
--- a/lang/fa/bot.php
+++ b/lang/fa/bot.php
@@ -12,15 +12,15 @@
*/
return [
- 'about' => 'در باره',
- 'bot' => 'بت',
- 'bots' => 'رباتها',
- 'color' => 'رنگ',
- 'command' => 'فرماندهی',
- 'edit-bot' => 'ویرایش بت',
+ 'about' => 'در باره',
+ 'bot' => 'بت',
+ 'bots' => 'رباتها',
+ 'color' => 'رنگ',
+ 'command' => 'فرماندهی',
+ 'edit-bot' => 'ویرایش بت',
'emoji-code' => 'کد Emoji',
- 'help' => 'کمک',
- 'icon' => 'آیکون',
- 'info' => 'اطلاعات',
- 'name' => 'نام',
+ 'help' => 'کمک',
+ 'icon' => 'آیکون',
+ 'info' => 'اطلاعات',
+ 'name' => 'نام',
];
diff --git a/lang/fa/bug.php b/lang/fa/bug.php
index 510b3fb5f..bcbfbbf4f 100644
--- a/lang/fa/bug.php
+++ b/lang/fa/bug.php
@@ -12,15 +12,15 @@
*/
return [
- 'bug-report' => 'گزارش اشکال',
+ 'bug-report' => 'گزارش اشکال',
'bug-report-description' => 'گزارش یک اشکال سایت',
- 'enter-description' => 'مشکل را به بهترین نحو توصیف کنید',
- 'enter-email' => 'لطفا آدرس اییمیل خود را وارد نمایید',
- 'enter-title' => 'لطفا یک عنوان مناسب انتخاب کنید',
- 'enter-username' => 'لطفا نام کاربری خود را وارد کنید',
- 'high' => 'بالا',
- 'low' => 'کم',
- 'priority' => 'اولویت',
- 'priority-description' => 'فقط انتخاب بسیار بالا اگر اشکال واقعا یک مشکل برای استفاده از سایت است.',
- 'very-high' => 'خیلی زیاد',
+ 'enter-description' => 'مشکل را به بهترین نحو توصیف کنید',
+ 'enter-email' => 'لطفا آدرس اییمیل خود را وارد نمایید',
+ 'enter-title' => 'لطفا یک عنوان مناسب انتخاب کنید',
+ 'enter-username' => 'لطفا نام کاربری خود را وارد کنید',
+ 'high' => 'بالا',
+ 'low' => 'کم',
+ 'priority' => 'اولویت',
+ 'priority-description' => 'فقط انتخاب بسیار بالا اگر اشکال واقعا یک مشکل برای استفاده از سایت است.',
+ 'very-high' => 'خیلی زیاد',
];
diff --git a/lang/fa/common.php b/lang/fa/common.php
index a74e478ce..c51e48dff 100644
--- a/lang/fa/common.php
+++ b/lang/fa/common.php
@@ -12,179 +12,179 @@
*/
return [
- 'a-an-art' => '',
- 'about' => 'دربارهی ما',
- 'account' => 'حساب',
- 'achievement-title' => 'عالی',
+ 'a-an-art' => '',
+ 'about' => 'دربارهی ما',
+ 'account' => 'حساب',
+ 'achievement-title' => 'عالی',
'achievement-unlocked' => 'شما "موفقیت نامزدی" را باز کردید',
- 'active' => 'فعال',
- 'active-warning' => 'هشدار فعال',
- 'add' => 'اضافه کردن',
- 'added' => 'اضافه',
- 'amount' => 'میزان',
- 'anonymous' => 'ناشناس',
- 'author' => 'نویسنده',
- 'balance' => 'تعادل',
- 'blacklist' => 'لیست سیاه مشتری',
- 'buffer' => 'بافر',
- 'bug' => 'گزارش یک اشکال',
- 'but' => 'ولی',
- 'cancel' => 'لغو',
- 'category' => 'دسته بندی',
- 'categories' => 'دسته بندی ها',
- 'close' => 'نزدیک',
- 'comment' => 'اظهار نظر',
- 'comments' => 'نظرات',
- 'community' => 'جامعه',
- 'contact' => 'تماس',
- 'contact-desc' => 'این درخواست تماس به مالک ارسال می شود و در اسرع وقت به شما خواهد رسید',
- 'contact-header' => 'سلام',
- 'create' => 'ايجاد كردن',
- 'created_at' => 'ایجاد شده در',
- 'day' => 'روز',
- 'delete' => 'حذف',
- 'delete-your-comment' => 'نظر خود را حذف کنید',
- 'description' => 'شرح',
- 'direction' => 'جهت',
- 'disable' => 'غیرفعال کردن',
- 'doubleup_activated' => 'حالت آپلود جهانی دوگانه فعال شده است',
- 'download' => 'دانلود',
- 'edit' => 'ویرایش کنید',
- 'edit-your-comment' => 'نظرتان را ویرایش کنید',
- 'email' => 'پست الکترونیک',
- 'email-blacklist' => 'ایمیل لیست سیاه',
- 'email-whitelist' => 'لیست سفید ایمیل',
+ 'active' => 'فعال',
+ 'active-warning' => 'هشدار فعال',
+ 'add' => 'اضافه کردن',
+ 'added' => 'اضافه',
+ 'amount' => 'میزان',
+ 'anonymous' => 'ناشناس',
+ 'author' => 'نویسنده',
+ 'balance' => 'تعادل',
+ 'blacklist' => 'لیست سیاه مشتری',
+ 'buffer' => 'بافر',
+ 'bug' => 'گزارش یک اشکال',
+ 'but' => 'ولی',
+ 'cancel' => 'لغو',
+ 'category' => 'دسته بندی',
+ 'categories' => 'دسته بندی ها',
+ 'close' => 'نزدیک',
+ 'comment' => 'اظهار نظر',
+ 'comments' => 'نظرات',
+ 'community' => 'جامعه',
+ 'contact' => 'تماس',
+ 'contact-desc' => 'این درخواست تماس به مالک ارسال می شود و در اسرع وقت به شما خواهد رسید',
+ 'contact-header' => 'سلام',
+ 'create' => 'ايجاد كردن',
+ 'created_at' => 'ایجاد شده در',
+ 'day' => 'روز',
+ 'delete' => 'حذف',
+ 'delete-your-comment' => 'نظر خود را حذف کنید',
+ 'description' => 'شرح',
+ 'direction' => 'جهت',
+ 'disable' => 'غیرفعال کردن',
+ 'doubleup_activated' => 'حالت آپلود جهانی دوگانه فعال شده است',
+ 'download' => 'دانلود',
+ 'edit' => 'ویرایش کنید',
+ 'edit-your-comment' => 'نظرتان را ویرایش کنید',
+ 'email' => 'پست الکترونیک',
+ 'email-blacklist' => 'ایمیل لیست سیاه',
+ 'email-whitelist' => 'لیست سفید ایمیل',
'email-list-notactive' => 'لیست سفید / لیست سیاه لیست فعال نیست',
- 'enable' => 'فعال کردن',
- 'enter' => 'وارد',
- 'error' => 'خطا',
- 'everyday' => 'هر روز',
- 'expired' => 'منقضی شده',
- 'extra' => 'فوق العاده',
- 'extra-stats' => 'آمار اضافی',
- 'faq' => 'سوالات متداول',
- 'files' => 'فایل ها',
- 'fl_token' => 'رمز عبور Freeleech',
- 'fl_tokens' => 'علائم فریخلایک',
- 'for' => 'برای',
- 'forum' => 'انجمن',
- 'free' => 'رایگان',
- 'freeleech_activated' => 'حالت جهانی Freeleech فعال شده است',
- 'global' => 'جهانی',
- 'group' => 'گروه',
- 'groups' => 'گروه ها',
- 'hidden' => 'پنهان',
- 'high-speeds' => 'سرعت بالا',
- 'home' => 'خانه',
- 'hot' => 'داغ!',
- 'hour' => 'ساعت',
- 'huge' => 'بزرگ',
- 'info' => 'اطلاعات',
- 'internal' => 'داخلی',
- 'ip' => 'IP',
- 'is-allowed' => 'مجاز است',
- 'large' => 'بزرگ',
- 'latest' => 'آخرین',
- 'latest-posts' => 'آخرین پست ها',
- 'latest-topics' => 'آخرین موضوعات',
- 'legal' => 'قانونی',
- 'legend' => 'افسانه',
- 'lists' => 'لیست ها',
- 'lock-account' => 'قفل حساب',
- 'logout' => 'خروج',
- 'members' => 'اعضا',
- 'message' => 'پیام',
- 'minute' => 'دقیقه',
- 'moderated-by' => 'نظارت شده توسط',
- 'moderation' => 'مدرن',
- 'moderation-approve' => 'تایید',
- 'moderation-postpone' => 'عقب انداختن',
- 'moderation-reject' => 'رد کنید',
- 'month' => 'ماه',
- 'months' => 'ماه ها',
- 'my' => 'من',
- 'name' => 'نام',
- 'navigation' => 'جهت یابی',
- 'new' => 'جدید!',
- 'new-adj' => 'جدید',
- 'news' => 'اخبار',
- 'next' => 'بعد',
- 'no' => 'نه',
- 'no-comments' => 'بدون نظر با این حال',
- 'no-result' => 'هیچ نتیجه ای در پایگاه داده برای پرس و جو وجود ندارد',
- 'notifications' => 'اطلاعیه',
- 'older-than' => 'بزرگتر از',
- 'oldest' => 'قدیمی ترین',
- 'openreg_activated' => 'ثبت باز فعال شده است',
- 'order-by' => 'سفارش داده شده توسط',
- 'other' => 'دیگر',
- 'pages' => 'صفحات',
- 'password' => 'کلمه عبور',
- 'patron' => 'تبدیل شدن به یک مدافع',
- 'pending-torrents' => 'torrents در انتظار',
- 'personal' => 'شخصی',
- 'plural-suffix' => 's',
- 'port' => 'بندر',
- 'position' => 'موقعیت',
- 'posts' => 'پست ها',
- 'powered-by' => 'Powered by UNIT3D',
- 'preview' => 'پیش نمایش',
- 'previous' => 'قبلی',
- 'progress' => 'پیش رفتن',
- 'publish' => 'انتشار',
- 'quantity' => 'تعداد',
- 'quick-search' => 'جستجوی سریع',
- 'ratio' => 'نسبت',
- 'reason' => 'دلیل',
- 'remove' => 'برداشتن',
- 'report' => 'گزارش',
- 'resend' => 'ارسال مجدد',
- 'reporter' => 'خبرنگار',
- 'required' => 'ضروری',
- 'results' => 'نتایج',
- 'rss-system' => 'سیستم RSS',
- 'rules' => 'قوانین',
- 'save' => 'صرفه جویی',
- 'search' => 'جستجو کردن',
- 'search-results' => 'نتایج جستجو',
- 'search-results-desc' => 'لطفا نتایج خود را در زیر ببینید',
- 'second' => 'دومین',
- 'select' => 'انتخاب کنید',
- 'sort' => 'مرتب سازی',
- 'special' => 'ویژه',
- 'staff' => 'کارکنان',
- 'staff-tools' => 'ابزار کارکنان',
- 'stats' => 'آمار',
- 'status' => 'وضعیت',
- 'sticked' => 'لمس شده',
- 'submit' => 'ارسال',
- 'subscriptions' => 'اشتراک ها',
- 'teams' => 'تیم ها',
- 'terms' => 'شرایط استفاده',
- 'times' => 'بار',
- 'title' => 'عنوان',
- 'top-bountied' => 'بالاترین امتیاز',
- 'topics' => 'موضوعات',
- 'tracker-codes' => 'کدهای ردیاب',
- 'type' => 'تایپ کنید',
- 'type-verb' => 'تایپ کنید',
- 'types' => 'انواع',
- 'genre' => 'ژانر',
- 'genres' => 'ژانرها',
- 'action' => 'عمل',
- 'actions' => 'اقدامات',
- 'unknown' => 'ناشناس',
+ 'enable' => 'فعال کردن',
+ 'enter' => 'وارد',
+ 'error' => 'خطا',
+ 'everyday' => 'هر روز',
+ 'expired' => 'منقضی شده',
+ 'extra' => 'فوق العاده',
+ 'extra-stats' => 'آمار اضافی',
+ 'faq' => 'سوالات متداول',
+ 'files' => 'فایل ها',
+ 'fl_token' => 'رمز عبور Freeleech',
+ 'fl_tokens' => 'علائم فریخلایک',
+ 'for' => 'برای',
+ 'forum' => 'انجمن',
+ 'free' => 'رایگان',
+ 'freeleech_activated' => 'حالت جهانی Freeleech فعال شده است',
+ 'global' => 'جهانی',
+ 'group' => 'گروه',
+ 'groups' => 'گروه ها',
+ 'hidden' => 'پنهان',
+ 'high-speeds' => 'سرعت بالا',
+ 'home' => 'خانه',
+ 'hot' => 'داغ!',
+ 'hour' => 'ساعت',
+ 'huge' => 'بزرگ',
+ 'info' => 'اطلاعات',
+ 'internal' => 'داخلی',
+ 'ip' => 'IP',
+ 'is-allowed' => 'مجاز است',
+ 'large' => 'بزرگ',
+ 'latest' => 'آخرین',
+ 'latest-posts' => 'آخرین پست ها',
+ 'latest-topics' => 'آخرین موضوعات',
+ 'legal' => 'قانونی',
+ 'legend' => 'افسانه',
+ 'lists' => 'لیست ها',
+ 'lock-account' => 'قفل حساب',
+ 'logout' => 'خروج',
+ 'members' => 'اعضا',
+ 'message' => 'پیام',
+ 'minute' => 'دقیقه',
+ 'moderated-by' => 'نظارت شده توسط',
+ 'moderation' => 'مدرن',
+ 'moderation-approve' => 'تایید',
+ 'moderation-postpone' => 'عقب انداختن',
+ 'moderation-reject' => 'رد کنید',
+ 'month' => 'ماه',
+ 'months' => 'ماه ها',
+ 'my' => 'من',
+ 'name' => 'نام',
+ 'navigation' => 'جهت یابی',
+ 'new' => 'جدید!',
+ 'new-adj' => 'جدید',
+ 'news' => 'اخبار',
+ 'next' => 'بعد',
+ 'no' => 'نه',
+ 'no-comments' => 'بدون نظر با این حال',
+ 'no-result' => 'هیچ نتیجه ای در پایگاه داده برای پرس و جو وجود ندارد',
+ 'notifications' => 'اطلاعیه',
+ 'older-than' => 'بزرگتر از',
+ 'oldest' => 'قدیمی ترین',
+ 'openreg_activated' => 'ثبت باز فعال شده است',
+ 'order-by' => 'سفارش داده شده توسط',
+ 'other' => 'دیگر',
+ 'pages' => 'صفحات',
+ 'password' => 'کلمه عبور',
+ 'patron' => 'تبدیل شدن به یک مدافع',
+ 'pending-torrents' => 'torrents در انتظار',
+ 'personal' => 'شخصی',
+ 'plural-suffix' => 's',
+ 'port' => 'بندر',
+ 'position' => 'موقعیت',
+ 'posts' => 'پست ها',
+ 'powered-by' => 'Powered by UNIT3D',
+ 'preview' => 'پیش نمایش',
+ 'previous' => 'قبلی',
+ 'progress' => 'پیش رفتن',
+ 'publish' => 'انتشار',
+ 'quantity' => 'تعداد',
+ 'quick-search' => 'جستجوی سریع',
+ 'ratio' => 'نسبت',
+ 'reason' => 'دلیل',
+ 'remove' => 'برداشتن',
+ 'report' => 'گزارش',
+ 'resend' => 'ارسال مجدد',
+ 'reporter' => 'خبرنگار',
+ 'required' => 'ضروری',
+ 'results' => 'نتایج',
+ 'rss-system' => 'سیستم RSS',
+ 'rules' => 'قوانین',
+ 'save' => 'صرفه جویی',
+ 'search' => 'جستجو کردن',
+ 'search-results' => 'نتایج جستجو',
+ 'search-results-desc' => 'لطفا نتایج خود را در زیر ببینید',
+ 'second' => 'دومین',
+ 'select' => 'انتخاب کنید',
+ 'sort' => 'مرتب سازی',
+ 'special' => 'ویژه',
+ 'staff' => 'کارکنان',
+ 'staff-tools' => 'ابزار کارکنان',
+ 'stats' => 'آمار',
+ 'status' => 'وضعیت',
+ 'sticked' => 'لمس شده',
+ 'submit' => 'ارسال',
+ 'subscriptions' => 'اشتراک ها',
+ 'teams' => 'تیم ها',
+ 'terms' => 'شرایط استفاده',
+ 'times' => 'بار',
+ 'title' => 'عنوان',
+ 'top-bountied' => 'بالاترین امتیاز',
+ 'topics' => 'موضوعات',
+ 'tracker-codes' => 'کدهای ردیاب',
+ 'type' => 'تایپ کنید',
+ 'type-verb' => 'تایپ کنید',
+ 'types' => 'انواع',
+ 'genre' => 'ژانر',
+ 'genres' => 'ژانرها',
+ 'action' => 'عمل',
+ 'actions' => 'اقدامات',
+ 'unknown' => 'ناشناس',
'unlocked-achievement' => 'شما قفل شده اید: موفقیت دستاورد',
- 'upload' => 'بارگذاری',
- 'upload-guide' => 'راهنمای آپلود',
- 'user' => 'کاربر',
- 'username' => 'نام کاربری',
- 'users' => 'کاربران',
- 'view' => 'چشم انداز',
- 'view-all' => 'نمایش همه',
- 'warnings' => 'هشدارها',
- 'year' => 'سال',
- 'yes' => 'بله',
- 'your' => 'شما',
- 'your-comment' => 'نظر شما',
+ 'upload' => 'بارگذاری',
+ 'upload-guide' => 'راهنمای آپلود',
+ 'user' => 'کاربر',
+ 'username' => 'نام کاربری',
+ 'users' => 'کاربران',
+ 'view' => 'چشم انداز',
+ 'view-all' => 'نمایش همه',
+ 'warnings' => 'هشدارها',
+ 'year' => 'سال',
+ 'yes' => 'بله',
+ 'your' => 'شما',
+ 'your-comment' => 'نظر شما',
];
diff --git a/lang/fa/email.php b/lang/fa/email.php
index e7f7e2f4f..8b7312cc6 100644
--- a/lang/fa/email.php
+++ b/lang/fa/email.php
@@ -12,46 +12,46 @@
*/
return [
- 'activate-account' => 'فعال کردن حساب',
- 'ban-reason' => 'دلیل',
- 'banned-footer' => 'این چیزی است که شما می توانید از قوانین پیروی کنید',
- 'banned-header' => 'شما ممنوع شده اید',
- 'bug-description' => 'مسئله',
- 'bug-footer' => 'اصلاح کنید که گریه کنید',
- 'bug-header' => 'گزارش اشکال جدید از',
- 'bug-priority' => 'اولویت',
- 'bug-title' => 'عنوان اشکال',
- 'contact-header' => 'نامه جدید تماس از',
- 'contact-message' => 'پیام',
- 'contact-name' => 'نام',
+ 'activate-account' => 'فعال کردن حساب',
+ 'ban-reason' => 'دلیل',
+ 'banned-footer' => 'این چیزی است که شما می توانید از قوانین پیروی کنید',
+ 'banned-header' => 'شما ممنوع شده اید',
+ 'bug-description' => 'مسئله',
+ 'bug-footer' => 'اصلاح کنید که گریه کنید',
+ 'bug-header' => 'گزارش اشکال جدید از',
+ 'bug-priority' => 'اولویت',
+ 'bug-title' => 'عنوان اشکال',
+ 'contact-header' => 'نامه جدید تماس از',
+ 'contact-message' => 'پیام',
+ 'contact-name' => 'نام',
'fail-login-greeting' => 'ورود حساب ورودی خراب شد',
- 'fail-login-line1' => 'ورودی ناموفق برای حساب شما شناسایی شد.',
- 'fail-login-line2' => 'این درخواست از: ip (: host) در: زمان آغاز شد',
- 'fail-login-subject' => 'اخطار ورود به سیستم ناموفق بود',
- 'footer-link' => 'اگر شما با کلیک کردن بر روی دکمه: actionText مشکل دارید، URL زیر را در مرورگر وب خود کپی کنید و وارد کنید:',
- 'invite-header' => 'دعوت به',
- 'invite-invited' => 'شما دعوت شده اید',
- 'invite-message' => 'پیام',
- 'invite-signup' => 'ثبت نام کن',
- 'newreply-header' => 'پاسخ جدیدی در مورد شما وجود دارد',
- 'newreply-message' => 'پیام',
- 'newreply-replied' => 'به موضوع شما پاسخ داده است',
- 'newreply-view' => 'مشاهده آن',
- 'no-email-found' => 'ما نمی توانیم این ایمیل را در سیستم ما پیدا کنیم!',
- 'register-code' => 'برای تکمیل حساب کاربری خود، روی دکمه زیر کلیک کنید',
- 'register-footer' => 'اگر دکمه بالا کار نمی کند، URL را به نوار آدرس مرورگر خود کپی کنید و آن را وارد کنید',
- 'register-header' => 'سلام! با تشکر از شما برای ثبت نام در',
- 'report-comment' => 'اظهار نظر',
- 'report-email' => 'پست الکترونیک',
- 'report-header' => 'سلام مدیریت، لینک در گزارش شده است',
- 'report-link' => 'ارتباط دادن',
- 'report-link-hash' => 'پیوند واقعی',
- 'thanks' => 'با تشکر از شما برای استفاده',
- 'unban-footer' => 'خوش آمدید',
- 'unban-header' => 'شما ممنوع شده اید',
- 'unban-reason' => 'دلیل',
- 'username-reminder' => 'شما اخیرا یک درخواست برای نام کاربری خود را در برنامه ما ارسال کردید. نام کاربری شماست',
- 'username-sent' => 'نام کاربری شما به آدرس ایمیل شما ارسال شده است!',
- 'disabled-header' => 'حساب شما غیر فعال شده است',
- 'pruned-header' => 'حساب شما مرتب شده است',
+ 'fail-login-line1' => 'ورودی ناموفق برای حساب شما شناسایی شد.',
+ 'fail-login-line2' => 'این درخواست از: ip (: host) در: زمان آغاز شد',
+ 'fail-login-subject' => 'اخطار ورود به سیستم ناموفق بود',
+ 'footer-link' => 'اگر شما با کلیک کردن بر روی دکمه: actionText مشکل دارید، URL زیر را در مرورگر وب خود کپی کنید و وارد کنید:',
+ 'invite-header' => 'دعوت به',
+ 'invite-invited' => 'شما دعوت شده اید',
+ 'invite-message' => 'پیام',
+ 'invite-signup' => 'ثبت نام کن',
+ 'newreply-header' => 'پاسخ جدیدی در مورد شما وجود دارد',
+ 'newreply-message' => 'پیام',
+ 'newreply-replied' => 'به موضوع شما پاسخ داده است',
+ 'newreply-view' => 'مشاهده آن',
+ 'no-email-found' => 'ما نمی توانیم این ایمیل را در سیستم ما پیدا کنیم!',
+ 'register-code' => 'برای تکمیل حساب کاربری خود، روی دکمه زیر کلیک کنید',
+ 'register-footer' => 'اگر دکمه بالا کار نمی کند، URL را به نوار آدرس مرورگر خود کپی کنید و آن را وارد کنید',
+ 'register-header' => 'سلام! با تشکر از شما برای ثبت نام در',
+ 'report-comment' => 'اظهار نظر',
+ 'report-email' => 'پست الکترونیک',
+ 'report-header' => 'سلام مدیریت، لینک در گزارش شده است',
+ 'report-link' => 'ارتباط دادن',
+ 'report-link-hash' => 'پیوند واقعی',
+ 'thanks' => 'با تشکر از شما برای استفاده',
+ 'unban-footer' => 'خوش آمدید',
+ 'unban-header' => 'شما ممنوع شده اید',
+ 'unban-reason' => 'دلیل',
+ 'username-reminder' => 'شما اخیرا یک درخواست برای نام کاربری خود را در برنامه ما ارسال کردید. نام کاربری شماست',
+ 'username-sent' => 'نام کاربری شما به آدرس ایمیل شما ارسال شده است!',
+ 'disabled-header' => 'حساب شما غیر فعال شده است',
+ 'pruned-header' => 'حساب شما مرتب شده است',
];
diff --git a/lang/fa/forum.php b/lang/fa/forum.php
index b32092b93..1cec132ed 100644
--- a/lang/fa/forum.php
+++ b/lang/fa/forum.php
@@ -12,63 +12,63 @@
*/
return [
- 'action' => 'عمل',
- 'activity' => 'فعالیت',
- 'approved' => 'تایید شده',
- 'author' => 'نویسنده',
- 'bug' => 'حشره',
- 'category-quick-search' => 'نام موضوع جستجوی سریع (در رده)',
- 'close-topic' => 'موضوع قفل',
- 'closed' => 'بسته شده',
- 'create-new-topic' => 'ایجاد موضوع جدید',
- 'created' => 'ایجاد شده',
- 'current' => 'جاری',
- 'delete-topic' => 'حذف این موضوع',
- 'denied' => 'تکذیب کرد',
- 'dislike-post' => 'دوست نداشتن این پست',
- 'display-forum' => 'نمایش موضوعات در',
- 'edit-post' => 'ویرایش پست',
- 'edit-topic' => 'ویرایش موضوع',
- 'forum' => 'انجمن',
- 'forums' => 'انجمن ها',
- 'implemented' => 'پیاده سازی شده',
- 'in' => 'که در',
- 'invalid' => 'بی اعتبار',
- 'label' => 'برچسب',
- 'label-system' => 'سیستم برچسب',
- 'last-message' => 'آخرین پیام',
- 'last-post-info' => 'آخرین اطلاعات ارسالی',
- 'latest' => 'آخرین',
- 'like-post' => 'مانند این پست',
- 'meta-category' => 'فهرست انجمن ها در رده',
- 'moderation' => 'مدرن',
- 'name' => 'نام',
- 'not-connected' => 'شما باید متصل باشید',
- 'not-subscribed' => 'اشتراکی نیست',
- 'open' => 'باز کن',
- 'open-topic' => 'این موضوع را باز کنید',
- 'permalink' => 'پیوند همیشگی',
- 'pin' => 'پین',
- 'post' => 'پست',
- 'post-quick-search' => 'جستجوی سریع بدن ارسال',
- 'posts' => 'پست ها',
- 'quote' => 'نقل قول',
- 'read-topic' => 'خوانده شده موضوع',
- 'replies' => 'پاسخ ها',
- 'send-new-topic' => 'ذخیره این موضوع',
- 'solved' => 'حل شد',
- 'state' => 'دولت',
- 'stats' => 'آمار',
- 'subscribed' => 'مشترک شده',
+ 'action' => 'عمل',
+ 'activity' => 'فعالیت',
+ 'approved' => 'تایید شده',
+ 'author' => 'نویسنده',
+ 'bug' => 'حشره',
+ 'category-quick-search' => 'نام موضوع جستجوی سریع (در رده)',
+ 'close-topic' => 'موضوع قفل',
+ 'closed' => 'بسته شده',
+ 'create-new-topic' => 'ایجاد موضوع جدید',
+ 'created' => 'ایجاد شده',
+ 'current' => 'جاری',
+ 'delete-topic' => 'حذف این موضوع',
+ 'denied' => 'تکذیب کرد',
+ 'dislike-post' => 'دوست نداشتن این پست',
+ 'display-forum' => 'نمایش موضوعات در',
+ 'edit-post' => 'ویرایش پست',
+ 'edit-topic' => 'ویرایش موضوع',
+ 'forum' => 'انجمن',
+ 'forums' => 'انجمن ها',
+ 'implemented' => 'پیاده سازی شده',
+ 'in' => 'که در',
+ 'invalid' => 'بی اعتبار',
+ 'label' => 'برچسب',
+ 'label-system' => 'سیستم برچسب',
+ 'last-message' => 'آخرین پیام',
+ 'last-post-info' => 'آخرین اطلاعات ارسالی',
+ 'latest' => 'آخرین',
+ 'like-post' => 'مانند این پست',
+ 'meta-category' => 'فهرست انجمن ها در رده',
+ 'moderation' => 'مدرن',
+ 'name' => 'نام',
+ 'not-connected' => 'شما باید متصل باشید',
+ 'not-subscribed' => 'اشتراکی نیست',
+ 'open' => 'باز کن',
+ 'open-topic' => 'این موضوع را باز کنید',
+ 'permalink' => 'پیوند همیشگی',
+ 'pin' => 'پین',
+ 'post' => 'پست',
+ 'post-quick-search' => 'جستجوی سریع بدن ارسال',
+ 'posts' => 'پست ها',
+ 'quote' => 'نقل قول',
+ 'read-topic' => 'خوانده شده موضوع',
+ 'replies' => 'پاسخ ها',
+ 'send-new-topic' => 'ذخیره این موضوع',
+ 'solved' => 'حل شد',
+ 'state' => 'دولت',
+ 'stats' => 'آمار',
+ 'subscribed' => 'مشترک شده',
'subscription-quick-search' => 'نام موضوع جستجوی سریع (در اشتراک)',
- 'suggestion' => 'پیشنهادی',
- 'topic' => 'موضوع',
- 'topic-closed' => 'این موضوع بسته شده است',
- 'topic-name' => 'نام موضوع',
- 'topic-quick-search' => 'نام موضوع جستجوی سریع',
- 'topic-title' => 'عنوان این موضوع',
- 'topics' => 'موضوعات',
- 'unpin' => 'باز کردن',
- 'view-all' => 'مشاهده تمام موضوعات',
- 'views' => 'نمایش ها',
+ 'suggestion' => 'پیشنهادی',
+ 'topic' => 'موضوع',
+ 'topic-closed' => 'این موضوع بسته شده است',
+ 'topic-name' => 'نام موضوع',
+ 'topic-quick-search' => 'نام موضوع جستجوی سریع',
+ 'topic-title' => 'عنوان این موضوع',
+ 'topics' => 'موضوعات',
+ 'unpin' => 'باز کردن',
+ 'view-all' => 'مشاهده تمام موضوعات',
+ 'views' => 'نمایش ها',
];
diff --git a/lang/fa/graveyard.php b/lang/fa/graveyard.php
index cfb49cdda..252cdb9af 100644
--- a/lang/fa/graveyard.php
+++ b/lang/fa/graveyard.php
@@ -12,15 +12,15 @@
*/
return [
- 'dead' => 'مرده',
- 'graveyard' => 'قبرستان',
- 'guidelines' => 'دستورالعمل',
+ 'dead' => 'مرده',
+ 'graveyard' => 'قبرستان',
+ 'guidelines' => 'دستورالعمل',
'guidelines-content' => '1) شما نمی توانید آپلود های خود را دوباره احیا کنید.
2) چیزی را که نمی توانید مرتکب آن کنید، احیا کنید.',
- 'howto' => 'این قانون است',
- 'howto-desc1' => 'شما باید بذر : نام برای 30 روز برای یک موفقیت آمیز. در آن صورت وقتی که بارداری فعلی شما باشد',
- 'howto-desc2' => 'شما پاداش خواهید گرفت',
- 'howto-hits' => 'بازدید',
- 'pending' => 'در انتظار',
- 'resurrect' => 'رستاخیز',
- 'reward' => 'علائم Freeleech',
+ 'howto' => 'این قانون است',
+ 'howto-desc1' => 'شما باید بذر : نام برای 30 روز برای یک موفقیت آمیز. در آن صورت وقتی که بارداری فعلی شما باشد',
+ 'howto-desc2' => 'شما پاداش خواهید گرفت',
+ 'howto-hits' => 'بازدید',
+ 'pending' => 'در انتظار',
+ 'resurrect' => 'رستاخیز',
+ 'reward' => 'علائم Freeleech',
];
diff --git a/lang/fa/notification.php b/lang/fa/notification.php
index 840db756a..a0b291344 100644
--- a/lang/fa/notification.php
+++ b/lang/fa/notification.php
@@ -12,14 +12,14 @@
*/
return [
- 'date' => 'تاریخ',
- 'delete' => 'حذف',
- 'delete-all' => 'تمام اعلانها را حذف کنید',
- 'mark-all-read' => 'همه را به عنوان خوانده شده علامت بزن',
- 'mark-read' => 'به عنوان خوانده شده علامت بزن',
- 'message' => 'پیام',
+ 'date' => 'تاریخ',
+ 'delete' => 'حذف',
+ 'delete-all' => 'تمام اعلانها را حذف کنید',
+ 'mark-all-read' => 'همه را به عنوان خوانده شده علامت بزن',
+ 'mark-read' => 'به عنوان خوانده شده علامت بزن',
+ 'message' => 'پیام',
'no-notifications' => 'هیچ اطلاعیه ای یافت نشد',
- 'notifications' => 'اطلاعیه',
- 'read' => 'خواندن',
- 'title' => 'عنوان',
+ 'notifications' => 'اطلاعیه',
+ 'read' => 'خواندن',
+ 'title' => 'عنوان',
];
diff --git a/lang/fa/page.php b/lang/fa/page.php
index f8643fee7..18a0be1d2 100644
--- a/lang/fa/page.php
+++ b/lang/fa/page.php
@@ -12,28 +12,28 @@
*/
return [
- 'aboutus-advantage' => 'مزیت',
- 'aboutus-advantage1' => 'ما اعضای و کارکنان را تجربه کرده ایم که در زمینه پشتیبانی از ویدئو / صوتی و فنی HD در جهان شناخته شده اند.',
- 'aboutus-advantage2' => 'همراه با شور و شوق گسترده ما برای فیلم ها و تلویزیون نشان می دهد، ما نیز ارائه یکی از بهترین انتخاب چیزی است که بیشتر - FANRES! از شما بسیار سپاسگزارم.',
- 'aboutus-advantage3' => 'در حالی که ما دریافت کمک های مالی برای نگهداری سایت را انجام می دهیم، هیچ PM و یا آگهی ها در سایت وجود نخواهد داشت. هیچ گناه از ما',
- 'aboutus-advantage4' => 'جامعه ما دومین کسی است که برای سنین اولیه خود انتخاب کرده است. بین کارکنان ما و کاربر پایگاه همیشه برای کمک بود. در مورد اطمینان از اینکه تجربه خود را در مورد: عنوان چیزی شگفت انگیز نیست، پرشور هستید.',
- 'aboutus-advantage5' => 'خدمات ما روزانه توسط بسیاری از مردم در سراسر جهان استفاده می شود. Weve اثبات کرد که ما در مورد قابلیت و امنیت کدباز ما مراقبت می کنیم و می توان آن را مورد اعتماد و اعتماد قرار داد. توسعه دهندگان ما روزانه کار می کنند تا پایگاهی واقعا نسل نهایی را ارائه دهند.',
- 'aboutus-header' => 'سلام',
- 'aboutus-rules' => 'آنچه ما از شما نیاز داریم',
- 'aboutus-rules1' => 'برای عضویت فعال در جامعه! این به این معنی است که به صورت مکالمه به صورت مولد، محتوای تأیید شده اضافه کنید و اگر بتوانید به دیگر کاربران کمک کنید.',
- 'aboutus-rules2' => 'برای خواندن قوانین کامل و لطفا به آنها احترام بگذارید!',
- 'aboutus-rules3' => 'پیشنهادات ما در حال تلاش برای ایجاد: عنوان بهتر هر روز. ما گفتیم که هر پیشنهادی مورد استفاده قرار خواهد گرفت، اما هرگز به نظر نمیرسد.',
- 'aboutus-welcome' => 'بیا راجع بهش حرف بزنیم',
- 'aboutus-welcome-desc' => ': عنوان یک پایگاه داده فیلم / تلویزیون / FANRES ساخته شده در جامعه است . هر قطعه ای از اطلاعات توسط جامعه شگفت انگیز ما از سال 2017 اضافه شده است. عناوین تمرکز اصلی بر روی محتوای HD، پایگاه کاربر فعال، پایگاه کد عالی / امن و تیم کارکنان مفید و دوستانه است.',
- 'blacklist-browsers' => 'مرورگرها',
- 'blacklist-btclient' => 'مشتری BitTorrent',
- 'blacklist-clients' => 'مشتریان',
- 'blacklist-desc' => 'مرورگرهای زیر و مشتریان Bittorrent لیست سیاه / ممنوعه از Annoucing به: عنوان',
- 'blacklist-webbrowser' => 'مرورگر اینترنت',
+ 'aboutus-advantage' => 'مزیت',
+ 'aboutus-advantage1' => 'ما اعضای و کارکنان را تجربه کرده ایم که در زمینه پشتیبانی از ویدئو / صوتی و فنی HD در جهان شناخته شده اند.',
+ 'aboutus-advantage2' => 'همراه با شور و شوق گسترده ما برای فیلم ها و تلویزیون نشان می دهد، ما نیز ارائه یکی از بهترین انتخاب چیزی است که بیشتر - FANRES! از شما بسیار سپاسگزارم.',
+ 'aboutus-advantage3' => 'در حالی که ما دریافت کمک های مالی برای نگهداری سایت را انجام می دهیم، هیچ PM و یا آگهی ها در سایت وجود نخواهد داشت. هیچ گناه از ما',
+ 'aboutus-advantage4' => 'جامعه ما دومین کسی است که برای سنین اولیه خود انتخاب کرده است. بین کارکنان ما و کاربر پایگاه همیشه برای کمک بود. در مورد اطمینان از اینکه تجربه خود را در مورد: عنوان چیزی شگفت انگیز نیست، پرشور هستید.',
+ 'aboutus-advantage5' => 'خدمات ما روزانه توسط بسیاری از مردم در سراسر جهان استفاده می شود. Weve اثبات کرد که ما در مورد قابلیت و امنیت کدباز ما مراقبت می کنیم و می توان آن را مورد اعتماد و اعتماد قرار داد. توسعه دهندگان ما روزانه کار می کنند تا پایگاهی واقعا نسل نهایی را ارائه دهند.',
+ 'aboutus-header' => 'سلام',
+ 'aboutus-rules' => 'آنچه ما از شما نیاز داریم',
+ 'aboutus-rules1' => 'برای عضویت فعال در جامعه! این به این معنی است که به صورت مکالمه به صورت مولد، محتوای تأیید شده اضافه کنید و اگر بتوانید به دیگر کاربران کمک کنید.',
+ 'aboutus-rules2' => 'برای خواندن قوانین کامل و لطفا به آنها احترام بگذارید!',
+ 'aboutus-rules3' => 'پیشنهادات ما در حال تلاش برای ایجاد: عنوان بهتر هر روز. ما گفتیم که هر پیشنهادی مورد استفاده قرار خواهد گرفت، اما هرگز به نظر نمیرسد.',
+ 'aboutus-welcome' => 'بیا راجع بهش حرف بزنیم',
+ 'aboutus-welcome-desc' => ': عنوان یک پایگاه داده فیلم / تلویزیون / FANRES ساخته شده در جامعه است . هر قطعه ای از اطلاعات توسط جامعه شگفت انگیز ما از سال 2017 اضافه شده است. عناوین تمرکز اصلی بر روی محتوای HD، پایگاه کاربر فعال، پایگاه کد عالی / امن و تیم کارکنان مفید و دوستانه است.',
+ 'blacklist-browsers' => 'مرورگرها',
+ 'blacklist-btclient' => 'مشتری BitTorrent',
+ 'blacklist-clients' => 'مشتریان',
+ 'blacklist-desc' => 'مرورگرهای زیر و مشتریان Bittorrent لیست سیاه / ممنوعه از Annoucing به: عنوان',
+ 'blacklist-webbrowser' => 'مرورگر اینترنت',
'blacklist-emaildomain' => 'دامنه مسدود شده',
- 'email-blacklist-desc' => 'دامنه های ایمیل زیر استفاده می شوند. شما نمیتوانید ثبت نام کنید یا دعوت کنید تا به دنبال.',
- 'email-whitelist-desc' => 'دامنه های ایمیل زیر تنها دامنه های ایمیل مجاز به استفاده هستند. شما فقط می توانید ثبت نام کنید و یا درخواست دعوت با استفاده از زیر.',
- 'staff-group' => 'گروه',
- 'staff-title' => 'عنوان',
+ 'email-blacklist-desc' => 'دامنه های ایمیل زیر استفاده می شوند. شما نمیتوانید ثبت نام کنید یا دعوت کنید تا به دنبال.',
+ 'email-whitelist-desc' => 'دامنه های ایمیل زیر تنها دامنه های ایمیل مجاز به استفاده هستند. شما فقط می توانید ثبت نام کنید و یا درخواست دعوت با استفاده از زیر.',
+ 'staff-group' => 'گروه',
+ 'staff-title' => 'عنوان',
'whitelist-emaildomain' => 'دامنه قابل اعتماد',
];
diff --git a/lang/fa/pm.php b/lang/fa/pm.php
index 51d6a5b1f..4e1c35d2c 100644
--- a/lang/fa/pm.php
+++ b/lang/fa/pm.php
@@ -12,28 +12,28 @@
*/
return [
- 'create' => 'ايجاد كردن',
- 'delete' => 'حذف',
+ 'create' => 'ايجاد كردن',
+ 'delete' => 'حذف',
'enter-subject' => 'موضوع را وارد کنید',
- 'from' => 'از جانب',
- 'inbox' => 'صندوق ورودی',
+ 'from' => 'از جانب',
+ 'inbox' => 'صندوق ورودی',
'mark-all-read' => 'علامت گذاری همه پیام ها به عنوان خوانده شده',
- 'message' => 'پیام',
- 'messages' => 'پیام ها',
- 'new' => 'پیام جدید',
- 'outbox' => 'صندوق پستی',
- 'private' => 'خصوصی',
- 'read' => 'خواندن',
- 'received-at' => 'دریافت شده در',
- 'refresh' => 'تازه کردن',
- 'reply' => 'پاسخ',
- 'search' => 'جستجو بر اساس موضوع',
- 'select' => 'یک کاربر را انتخاب کنید',
- 'send' => 'ارسال PM',
- 'send-to' => 'ارسال PM به',
- 'sent' => 'ارسال شد',
- 'sent-at' => 'ارسال شده در',
- 'subject' => 'موضوع',
- 'to' => 'به',
- 'unread' => 'خوانده نشده',
+ 'message' => 'پیام',
+ 'messages' => 'پیام ها',
+ 'new' => 'پیام جدید',
+ 'outbox' => 'صندوق پستی',
+ 'private' => 'خصوصی',
+ 'read' => 'خواندن',
+ 'received-at' => 'دریافت شده در',
+ 'refresh' => 'تازه کردن',
+ 'reply' => 'پاسخ',
+ 'search' => 'جستجو بر اساس موضوع',
+ 'select' => 'یک کاربر را انتخاب کنید',
+ 'send' => 'ارسال PM',
+ 'send-to' => 'ارسال PM به',
+ 'sent' => 'ارسال شد',
+ 'sent-at' => 'ارسال شده در',
+ 'subject' => 'موضوع',
+ 'to' => 'به',
+ 'unread' => 'خوانده نشده',
];
diff --git a/lang/fa/poll.php b/lang/fa/poll.php
index e0e722a3e..35daec450 100644
--- a/lang/fa/poll.php
+++ b/lang/fa/poll.php
@@ -12,18 +12,18 @@
*/
return [
- 'add-option' => 'اضافه کردن گزینه',
- 'create-poll' => 'ایجاد نظرسنجی',
- 'current' => 'نظرسنجی فعلی',
- 'delete-option' => 'گزینه را حذف کنید',
+ 'add-option' => 'اضافه کردن گزینه',
+ 'create-poll' => 'ایجاد نظرسنجی',
+ 'current' => 'نظرسنجی فعلی',
+ 'delete-option' => 'گزینه را حذف کنید',
'multiple-choice' => 'این نظرسنجی چند گزینه ای است. به عنوان بسیاری از پاسخ را انتخاب کنید که دوست دارید.',
- 'option' => 'گزینه',
- 'poll' => 'نظرسنجی',
- 'polls' => 'نظرسنجی ها',
- 'results' => 'نتایج نظرسنجی',
- 'title' => 'عنوان',
- 'total' => 'مجموع آراء همیشه',
- 'vote' => 'رای',
- 'vote-now' => 'رای خود را در حال حاضر دریافت کنید',
- 'votes' => 'رای',
+ 'option' => 'گزینه',
+ 'poll' => 'نظرسنجی',
+ 'polls' => 'نظرسنجی ها',
+ 'results' => 'نتایج نظرسنجی',
+ 'title' => 'عنوان',
+ 'total' => 'مجموع آراء همیشه',
+ 'vote' => 'رای',
+ 'vote-now' => 'رای خود را در حال حاضر دریافت کنید',
+ 'votes' => 'رای',
];
diff --git a/lang/fa/request.php b/lang/fa/request.php
index 1946da5e5..d6e02dcf8 100644
--- a/lang/fa/request.php
+++ b/lang/fa/request.php
@@ -12,67 +12,67 @@
*/
return [
- 'add-request' => 'درخواست را اضافه کنید',
- 'age' => 'سن',
- 'all-requests' => 'تمام درخواستها',
- 'approve' => 'تایید',
- 'bounty' => 'فضل',
- 'bounty-claimed' => 'فواد ادعا کرد',
- 'bounty-unclaimed' => 'فریب بی خوابی',
- 'category' => 'دسته بندی',
- 'claim' => 'ادعا',
- 'claim-anon-choose' => 'لطفا عاقلانه انتخاب کنید',
- 'claim-as-anon' => 'آیا می خواهید این ادعا را به صورت Anonomously انجام دهید',
- 'claim-now' => 'ادعا کن',
- 'claimed' => 'ادعا شده',
- 'current' => 'جاری',
- 'delete' => 'حذف این درخواست',
+ 'add-request' => 'درخواست را اضافه کنید',
+ 'age' => 'سن',
+ 'all-requests' => 'تمام درخواستها',
+ 'approve' => 'تایید',
+ 'bounty' => 'فضل',
+ 'bounty-claimed' => 'فواد ادعا کرد',
+ 'bounty-unclaimed' => 'فریب بی خوابی',
+ 'category' => 'دسته بندی',
+ 'claim' => 'ادعا',
+ 'claim-anon-choose' => 'لطفا عاقلانه انتخاب کنید',
+ 'claim-as-anon' => 'آیا می خواهید این ادعا را به صورت Anonomously انجام دهید',
+ 'claim-now' => 'ادعا کن',
+ 'claimed' => 'ادعا شده',
+ 'current' => 'جاری',
+ 'delete' => 'حذف این درخواست',
'delete-confirmation' => 'آیا مطمئن هستید که می خواهید این درخواست را حذف کنید',
- 'delete-filled' => 'این درخواست تنها می تواند حذف شود، اگر آن را پر نکرده باشید',
- 'description' => 'شرح',
- 'dont-have-bps' => 'شما پاداش کافی ندارید',
- 'edit-request' => 'ویرایش درخواست',
- 'enter-bp' => 'امتیاز جایزه (حداقل 100) را وارد کنید',
- 'enter-hash' => 'اطلاعات Hash Torrent آپلود را وارد کنید',
- 'fill' => 'پر کنید',
- 'fill-request' => 'این درخواست را پر کنید',
- 'filled' => 'پر شده',
- 'filled-by' => 'پر شده توسط',
- 'for' => 'برای',
- 'fulfill' => 'تکمیل',
- 'last-vote' => 'رای آخر',
- 'my-requests' => 'درخواست های من',
- 'no' => 'نه',
- 'no-imdb-id' => 'تمام درخواستها باید شامل یک شماره IMDB باشد',
- 'no-privileges' => 'خطا: حقوق درخواست شما غیرفعال شده است',
- 'no-privileges-desc' => 'اگر احساس می کنید این خطا است، لطفا با کارکنان تماس بگیرید',
- 'no-refunds' => 'مبادلات BON در ایجاد، پر کردن و سرقت کردن نهایی است!
بدون بازپرداخت!',
- 'pending' => 'در انتظار',
- 'reason' => 'دلیل',
- 'reject' => 'رد کنید',
- 'report' => 'درخواست گزارش',
- 'request' => 'درخواست',
- 'request-details' => 'جزئیات درخواست',
- 'requested-by' => 'درخواست شده توسط',
- 'requests' => 'درخواست ها',
- 'required' => 'ضروری',
- 'reset' => 'تنظیم مجدد',
- 'reset-confirmation' => 'آیا مطمئن هستید که میخواهید این درخواست را بازنشانی کنید',
- 'reset-request' => 'این درخواست را بازنشانی کنید',
- 'reward' => 'جایزه',
- 'reward-desc' => 'چقدر پاداش می خواهید پاداش بدهید؟ حداقل 100 BP',
- 'reward-from' => 'از جانب',
- 'title' => 'عنوان',
- 'torrent-hash' => 'تورنت هش',
- 'total-bounty' => 'مجموع فضل',
- 'type' => 'تایپ کنید',
- 'unclaim' => 'این درخواست را بیخود دریافت کنید',
- 'unfilled' => 'تکمیل نشده',
- 'view-filled' => 'نمایش پر شده',
- 'view-unfilled' => 'مشاهده نکردن',
- 'vote' => 'رای',
- 'vote-that' => 'رای این درخواست',
- 'voters' => 'رأی دهندگان',
- 'votes' => 'رای',
- 'yes' => 'بله',
+ 'delete-filled' => 'این درخواست تنها می تواند حذف شود، اگر آن را پر نکرده باشید',
+ 'description' => 'شرح',
+ 'dont-have-bps' => 'شما پاداش کافی ندارید',
+ 'edit-request' => 'ویرایش درخواست',
+ 'enter-bp' => 'امتیاز جایزه (حداقل 100) را وارد کنید',
+ 'enter-hash' => 'اطلاعات Hash Torrent آپلود را وارد کنید',
+ 'fill' => 'پر کنید',
+ 'fill-request' => 'این درخواست را پر کنید',
+ 'filled' => 'پر شده',
+ 'filled-by' => 'پر شده توسط',
+ 'for' => 'برای',
+ 'fulfill' => 'تکمیل',
+ 'last-vote' => 'رای آخر',
+ 'my-requests' => 'درخواست های من',
+ 'no' => 'نه',
+ 'no-imdb-id' => 'تمام درخواستها باید شامل یک شماره IMDB باشد',
+ 'no-privileges' => 'خطا: حقوق درخواست شما غیرفعال شده است',
+ 'no-privileges-desc' => 'اگر احساس می کنید این خطا است، لطفا با کارکنان تماس بگیرید',
+ 'no-refunds' => 'مبادلات BON در ایجاد، پر کردن و سرقت کردن نهایی است!
بدون بازپرداخت!',
+ 'pending' => 'در انتظار',
+ 'reason' => 'دلیل',
+ 'reject' => 'رد کنید',
+ 'report' => 'درخواست گزارش',
+ 'request' => 'درخواست',
+ 'request-details' => 'جزئیات درخواست',
+ 'requested-by' => 'درخواست شده توسط',
+ 'requests' => 'درخواست ها',
+ 'required' => 'ضروری',
+ 'reset' => 'تنظیم مجدد',
+ 'reset-confirmation' => 'آیا مطمئن هستید که میخواهید این درخواست را بازنشانی کنید',
+ 'reset-request' => 'این درخواست را بازنشانی کنید',
+ 'reward' => 'جایزه',
+ 'reward-desc' => 'چقدر پاداش می خواهید پاداش بدهید؟ حداقل 100 BP',
+ 'reward-from' => 'از جانب',
+ 'title' => 'عنوان',
+ 'torrent-hash' => 'تورنت هش',
+ 'total-bounty' => 'مجموع فضل',
+ 'type' => 'تایپ کنید',
+ 'unclaim' => 'این درخواست را بیخود دریافت کنید',
+ 'unfilled' => 'تکمیل نشده',
+ 'view-filled' => 'نمایش پر شده',
+ 'view-unfilled' => 'مشاهده نکردن',
+ 'vote' => 'رای',
+ 'vote-that' => 'رای این درخواست',
+ 'voters' => 'رأی دهندگان',
+ 'votes' => 'رای',
+ 'yes' => 'بله',
];
diff --git a/lang/fa/rss.php b/lang/fa/rss.php
index b8dc55dfe..3784c54ee 100644
--- a/lang/fa/rss.php
+++ b/lang/fa/rss.php
@@ -12,19 +12,19 @@
*/
return [
- 'create' => 'ايجاد كردن',
+ 'create' => 'ايجاد كردن',
'create-private-feed' => 'ایجاد RSS خوراک خصوصی',
- 'create-public-feed' => 'ایجاد RSS خوراک عمومی',
- 'delete' => 'حذف',
- 'edit' => 'ویرایش کنید',
- 'edit-private-feed' => 'ویرایش RSS خصوصی شخصی',
- 'edit-public-feed' => 'ویرایش خوراک RSS عمومی',
- 'feed' => 'خوراک',
- 'feeds' => 'خوردها',
- 'name' => 'نام',
- 'public' => 'عمومی',
- 'private' => 'خصوصی',
- 'rss' => 'RSS',
- 'rss-feed' => 'خوراک RSS',
- 'type' => 'تایپ کنید',
+ 'create-public-feed' => 'ایجاد RSS خوراک عمومی',
+ 'delete' => 'حذف',
+ 'edit' => 'ویرایش کنید',
+ 'edit-private-feed' => 'ویرایش RSS خصوصی شخصی',
+ 'edit-public-feed' => 'ویرایش خوراک RSS عمومی',
+ 'feed' => 'خوراک',
+ 'feeds' => 'خوردها',
+ 'name' => 'نام',
+ 'public' => 'عمومی',
+ 'private' => 'خصوصی',
+ 'rss' => 'RSS',
+ 'rss-feed' => 'خوراک RSS',
+ 'type' => 'تایپ کنید',
];
diff --git a/lang/fa/staff.php b/lang/fa/staff.php
index 109a53d52..751f462e7 100644
--- a/lang/fa/staff.php
+++ b/lang/fa/staff.php
@@ -12,48 +12,48 @@
*/
return [
- 'audit-log' => 'گزارش فعالیت',
- 'articles' => 'مقالات',
- 'applications' => 'برنامه های کاربردی',
- 'bans-log' => 'ورود ممنوع',
- 'blocks' => 'بلوک ها',
- 'bot' => 'بت',
- 'bots' => 'رباتها',
- 'chat' => 'چت',
- 'config-manager' => 'مدیر پیکربندی',
- 'dashboard' => 'داشبورد',
- 'failed-login-log' => 'ورود ورود ناموفق بود',
- 'flush-ghost-peers' => 'همسایه شبح روحانی',
- 'forums' => 'انجمن ها',
- 'frontend' => 'ظاهر',
- 'general-tools' => 'ابزارهای عمومی',
- 'groups' => 'گروه ها',
- 'invites-log' => 'دعوتنامه ورود',
- 'laravel-log' => 'لاراول ورود',
- 'links' => 'لینک ها',
- 'logs' => 'سیاههها',
- 'mass-pm' => 'جرم PM',
- 'mass-validate-users' => 'توزیع کنندگان اعتبار سنجی',
- 'moderation' => 'مدرن',
- 'pages' => 'صفحات',
- 'please-moderate' => 'لطفا این تورنت را تعدیل کنید!',
- 'polls' => 'نظرسنجی ها',
- 'reports-log' => 'گزارش گزارش',
- 'rss' => 'RSS',
- 'staff-dashboard' => 'داشبورد کارکنان',
- 'torrent-categories' => 'دسته های تورنت',
- 'torrent-moderation' => 'مديريت تورنت',
- 'torrent-tools' => 'تورنت ابزار',
- 'torrent-types' => 'انواع تورنت',
- 'torrents' => 'تورنت ها',
- 'user-gifting' => 'هدیه کاربر',
- 'user-notes' => 'یادداشت کاربری ورود',
- 'user-search' => 'جستجوی کاربر',
- 'user-tools' => 'ابزارهای کاربری',
- 'warnings-log' => 'اخطار ورود',
- 'you-have' => 'شما دارید',
+ 'audit-log' => 'گزارش فعالیت',
+ 'articles' => 'مقالات',
+ 'applications' => 'برنامه های کاربردی',
+ 'bans-log' => 'ورود ممنوع',
+ 'blocks' => 'بلوک ها',
+ 'bot' => 'بت',
+ 'bots' => 'رباتها',
+ 'chat' => 'چت',
+ 'config-manager' => 'مدیر پیکربندی',
+ 'dashboard' => 'داشبورد',
+ 'failed-login-log' => 'ورود ورود ناموفق بود',
+ 'flush-ghost-peers' => 'همسایه شبح روحانی',
+ 'forums' => 'انجمن ها',
+ 'frontend' => 'ظاهر',
+ 'general-tools' => 'ابزارهای عمومی',
+ 'groups' => 'گروه ها',
+ 'invites-log' => 'دعوتنامه ورود',
+ 'laravel-log' => 'لاراول ورود',
+ 'links' => 'لینک ها',
+ 'logs' => 'سیاههها',
+ 'mass-pm' => 'جرم PM',
+ 'mass-validate-users' => 'توزیع کنندگان اعتبار سنجی',
+ 'moderation' => 'مدرن',
+ 'pages' => 'صفحات',
+ 'please-moderate' => 'لطفا این تورنت را تعدیل کنید!',
+ 'polls' => 'نظرسنجی ها',
+ 'reports-log' => 'گزارش گزارش',
+ 'rss' => 'RSS',
+ 'staff-dashboard' => 'داشبورد کارکنان',
+ 'torrent-categories' => 'دسته های تورنت',
+ 'torrent-moderation' => 'مديريت تورنت',
+ 'torrent-tools' => 'تورنت ابزار',
+ 'torrent-types' => 'انواع تورنت',
+ 'torrents' => 'تورنت ها',
+ 'user-gifting' => 'هدیه کاربر',
+ 'user-notes' => 'یادداشت کاربری ورود',
+ 'user-search' => 'جستجوی کاربر',
+ 'user-tools' => 'ابزارهای کاربری',
+ 'warnings-log' => 'اخطار ورود',
+ 'you-have' => 'شما دارید',
'possible-leech-cheaters' => 'تقلب های احتمالی',
- 'chat-tools' => 'ابزار چت',
- 'flush-chat' => 'جعبه گفتگو Flush',
- 'seedboxes' => 'صندلی های ثبت شده',
+ 'chat-tools' => 'ابزار چت',
+ 'flush-chat' => 'جعبه گفتگو Flush',
+ 'seedboxes' => 'صندلی های ثبت شده',
];
diff --git a/lang/fa/stat.php b/lang/fa/stat.php
index 733743cc3..72d56a943 100644
--- a/lang/fa/stat.php
+++ b/lang/fa/stat.php
@@ -12,40 +12,40 @@
*/
return [
- 'by-count' => 'توسط شمارنده',
- 'by-data' => 'توسط داده ها',
- 'by-volume' => 'حجم',
- 'group' => 'گروه',
- 'groups' => 'گروه ها',
- 'nerd-stats' => 'آمار Nerd',
- 'nerd-stats-desc' => 'همه ما عاشق آمار است در اینجا چند نفر هستند که مهم هستند',
- 'registration-date' => 'تاریخ ثبت نام',
- 'request-fulfilled' => 'درخواست انجام شد',
- 'request-not-fulfilled' => 'درخواست انجام نشده است',
+ 'by-count' => 'توسط شمارنده',
+ 'by-data' => 'توسط داده ها',
+ 'by-volume' => 'حجم',
+ 'group' => 'گروه',
+ 'groups' => 'گروه ها',
+ 'nerd-stats' => 'آمار Nerd',
+ 'nerd-stats-desc' => 'همه ما عاشق آمار است در اینجا چند نفر هستند که مهم هستند',
+ 'registration-date' => 'تاریخ ثبت نام',
+ 'request-fulfilled' => 'درخواست انجام شد',
+ 'request-not-fulfilled' => 'درخواست انجام نشده است',
'request-pending-aproval' => 'درخواست در انتظار aproval',
- 'select-category' => 'لطفا یک دسته زیر را انتخاب کنید',
- 'site-stats' => 'آمار سایت',
- 'stats' => 'آمار',
- 'stats-format' => 'تمام آمار نمایش داده شده در بالا 100 فرمت',
- 'top-bankers' => 'بانکداران برتر',
- 'top-bountied' => 'بالاترین امتیاز',
- 'top-completed' => 'بالا تکمیل شده',
- 'top-dead' => 'مرده بالا',
- 'top-downloaded' => 'تورنت های دانلود شده بالا',
- 'top-downloaders' => 'Top Downloaders',
- 'top-dying' => 'بالا مرگ',
- 'top-leeched' => 'بالا پایین',
- 'top-leechers' => 'بالا لچر',
- 'top-seeded' => 'بالا بذر',
- 'top-seeding' => 'بالا رفتن بذر',
- 'top-seeders' => 'کارشناسان برتر',
- 'top-seedsize' => 'بالا برود',
- 'top-seedtime' => 'بالا بیدم',
- 'top-uploaders' => 'آپلود بالا',
- 'total-download' => 'دانلود کل',
- 'total-torrents' => 'کل تورنت ها',
- 'total-traffic' => 'مجموع ترافیک',
- 'total-upload' => 'مجموع آپلود',
- 'users-in-group' => 'کاربران در گروه',
- 'users-per-group' => 'کاربران در هر گروه',
+ 'select-category' => 'لطفا یک دسته زیر را انتخاب کنید',
+ 'site-stats' => 'آمار سایت',
+ 'stats' => 'آمار',
+ 'stats-format' => 'تمام آمار نمایش داده شده در بالا 100 فرمت',
+ 'top-bankers' => 'بانکداران برتر',
+ 'top-bountied' => 'بالاترین امتیاز',
+ 'top-completed' => 'بالا تکمیل شده',
+ 'top-dead' => 'مرده بالا',
+ 'top-downloaded' => 'تورنت های دانلود شده بالا',
+ 'top-downloaders' => 'Top Downloaders',
+ 'top-dying' => 'بالا مرگ',
+ 'top-leeched' => 'بالا پایین',
+ 'top-leechers' => 'بالا لچر',
+ 'top-seeded' => 'بالا بذر',
+ 'top-seeding' => 'بالا رفتن بذر',
+ 'top-seeders' => 'کارشناسان برتر',
+ 'top-seedsize' => 'بالا برود',
+ 'top-seedtime' => 'بالا بیدم',
+ 'top-uploaders' => 'آپلود بالا',
+ 'total-download' => 'دانلود کل',
+ 'total-torrents' => 'کل تورنت ها',
+ 'total-traffic' => 'مجموع ترافیک',
+ 'total-upload' => 'مجموع آپلود',
+ 'users-in-group' => 'کاربران در گروه',
+ 'users-per-group' => 'کاربران در هر گروه',
];
diff --git a/lang/fa/torrent.php b/lang/fa/torrent.php
index d2c663001..40cd34be2 100644
--- a/lang/fa/torrent.php
+++ b/lang/fa/torrent.php
@@ -12,197 +12,197 @@
*/
return [
- 'activity' => 'فعالیت',
- 'age' => 'سن',
- 'agent' => 'عامل',
- 'alive' => 'زنده است',
- 'announce-url' => 'اعلام URL',
- 'announce-url-desc' => 'لطفا هنگام ایجاد یک تورنت جدید از آدرس اعلامیه بالا استفاده کنید. اگر می خواهید از تورنت خود استفاده کنید بدون اینکه آن را از سایت دانلود کنید، شما باید پرچم خصوصی و منبع را به منبع: source تنظیم کنید',
- 'announce-url-desc-url' => 'داشتن مشکل؟ اینجا را ببینید راهنمای ما',
- 'announce-url-desc2' => 'TMDB و IMDB برای همه آپلودها مورد نیاز است! این استفاده شده است برای گرفتن پوستر / پس زمینه و ExtraInfo',
- 'approved' => 'تایید شده',
- 'audio' => 'سمعی',
- 'bon-tipped' => 'BON نازک',
- 'bookmark' => 'چوب الف',
- 'bookmarks' => 'نشانکها',
- 'bump' => 'دست انداز',
- 'cant-upload' => 'خطا: حقوق آپلود شما غیرفعال می باشد',
- 'cant-upload-desc' => 'اگر احساس می کنید این خطا است، لطفا با کارکنان تماس بگیرید',
- 'cards' => 'کارت ها',
- 'cards-view' => 'تورنت کارت مشاهده',
- 'categories' => 'دسته بندی ها',
- 'category' => 'دسته بندی',
- 'client' => 'مشتری',
- 'commited' => 'رفته رفته',
- 'completed' => 'تکمیل شده',
- 'completed_at' => 'تکمیل شده در',
- 'completed-not-seeding' => 'شما این دانلود را انجام داده اید اما دیگر آن را نخورید',
- 'created_at' => 'ایجاد شده در',
- 'credited' => 'اعتبار داده شده',
- 'current' => 'جاری',
- 'current-filters' => 'فیلترهای فعلی',
- 'currently-leeching' => 'در حال حاضر Leeching',
- 'currently-seeding' => 'در حال حاضر کاشت',
- 'dead-torrent' => 'تورنت مرده',
- 'dead-torrents' => 'تورنت های مرده',
- 'delete-bookmark' => 'حذف این نشان',
- 'description' => 'شرح',
- 'discounts' => 'تخفیف',
- 'double-upload' => 'دو آپلود',
- 'download-all' => 'دانلود همه',
- 'download-check' => 'چک را دانلود کنید',
- 'downloaded' => 'دانلود شده',
- 'dying-torrent' => 'در حال مرگ تورنت',
- 'dying-torrents' => 'در حال مرگ تورنت',
- 'encode-settings' => 'تنظیمات رمزگذاری',
- 'estimated-ratio' => 'نسبت تخمینی پس از دانلود',
- 'failed' => 'ناموفق',
- 'feature' => 'ویژگی',
- 'featured' => 'ویژه',
- 'featured-desc' => 'تورنت های ویژه 100٪ رایگان و آپلود دو بار!',
- 'featured-until' => 'این تا کنون یک تور ویژه است',
- 'file' => 'فایل',
- 'filters' => 'فیلترها',
- 'fl-tokens-left' => 'شما دارید : نشانه ها را ترک کرد',
- 'freeleech' => 'فری لایچ',
- 'freeleech-token' => 'رمز عبور Freeleech',
- 'general' => 'عمومی',
- 'genre' => 'ژانر',
- 'global-double-upload' => 'دو بار آپلود جهانی',
- 'global-freeleech' => 'Freeleech جهانی',
- 'grant' => 'اعطا کردن',
- 'greater-than' => 'بزرگتر از',
- 'grouping' => 'گروه بندی',
- 'groupings' => 'گروه بندی ها',
- 'grouping-categories' => 'دسته بندی گروه ها',
+ 'activity' => 'فعالیت',
+ 'age' => 'سن',
+ 'agent' => 'عامل',
+ 'alive' => 'زنده است',
+ 'announce-url' => 'اعلام URL',
+ 'announce-url-desc' => 'لطفا هنگام ایجاد یک تورنت جدید از آدرس اعلامیه بالا استفاده کنید. اگر می خواهید از تورنت خود استفاده کنید بدون اینکه آن را از سایت دانلود کنید، شما باید پرچم خصوصی و منبع را به منبع: source تنظیم کنید',
+ 'announce-url-desc-url' => 'داشتن مشکل؟ اینجا را ببینید راهنمای ما',
+ 'announce-url-desc2' => 'TMDB و IMDB برای همه آپلودها مورد نیاز است! این استفاده شده است برای گرفتن پوستر / پس زمینه و ExtraInfo',
+ 'approved' => 'تایید شده',
+ 'audio' => 'سمعی',
+ 'bon-tipped' => 'BON نازک',
+ 'bookmark' => 'چوب الف',
+ 'bookmarks' => 'نشانکها',
+ 'bump' => 'دست انداز',
+ 'cant-upload' => 'خطا: حقوق آپلود شما غیرفعال می باشد',
+ 'cant-upload-desc' => 'اگر احساس می کنید این خطا است، لطفا با کارکنان تماس بگیرید',
+ 'cards' => 'کارت ها',
+ 'cards-view' => 'تورنت کارت مشاهده',
+ 'categories' => 'دسته بندی ها',
+ 'category' => 'دسته بندی',
+ 'client' => 'مشتری',
+ 'commited' => 'رفته رفته',
+ 'completed' => 'تکمیل شده',
+ 'completed_at' => 'تکمیل شده در',
+ 'completed-not-seeding' => 'شما این دانلود را انجام داده اید اما دیگر آن را نخورید',
+ 'created_at' => 'ایجاد شده در',
+ 'credited' => 'اعتبار داده شده',
+ 'current' => 'جاری',
+ 'current-filters' => 'فیلترهای فعلی',
+ 'currently-leeching' => 'در حال حاضر Leeching',
+ 'currently-seeding' => 'در حال حاضر کاشت',
+ 'dead-torrent' => 'تورنت مرده',
+ 'dead-torrents' => 'تورنت های مرده',
+ 'delete-bookmark' => 'حذف این نشان',
+ 'description' => 'شرح',
+ 'discounts' => 'تخفیف',
+ 'double-upload' => 'دو آپلود',
+ 'download-all' => 'دانلود همه',
+ 'download-check' => 'چک را دانلود کنید',
+ 'downloaded' => 'دانلود شده',
+ 'dying-torrent' => 'در حال مرگ تورنت',
+ 'dying-torrents' => 'در حال مرگ تورنت',
+ 'encode-settings' => 'تنظیمات رمزگذاری',
+ 'estimated-ratio' => 'نسبت تخمینی پس از دانلود',
+ 'failed' => 'ناموفق',
+ 'feature' => 'ویژگی',
+ 'featured' => 'ویژه',
+ 'featured-desc' => 'تورنت های ویژه 100٪ رایگان و آپلود دو بار!',
+ 'featured-until' => 'این تا کنون یک تور ویژه است',
+ 'file' => 'فایل',
+ 'filters' => 'فیلترها',
+ 'fl-tokens-left' => 'شما دارید : نشانه ها را ترک کرد',
+ 'freeleech' => 'فری لایچ',
+ 'freeleech-token' => 'رمز عبور Freeleech',
+ 'general' => 'عمومی',
+ 'genre' => 'ژانر',
+ 'global-double-upload' => 'دو بار آپلود جهانی',
+ 'global-freeleech' => 'Freeleech جهانی',
+ 'grant' => 'اعطا کردن',
+ 'greater-than' => 'بزرگتر از',
+ 'grouping' => 'گروه بندی',
+ 'groupings' => 'گروه بندی ها',
+ 'grouping-categories' => 'دسته بندی گروه ها',
'grouping-categories-desc' => 'چه گروهی را دوست دارید گروه بندی کنید؟',
- 'grouping-results' => 'نتایج گروه بندی',
- 'groupings-view' => 'نمایش گروهی',
- 'have-completed' => 'تکمیل شده',
- 'have-downloaded' => 'دانلود شده',
- 'have-not-completed' => 'تکمیل نشده',
- 'have-not-downloaded' => 'دانلود نشده',
- 'health' => 'سلامتی',
- 'history' => 'تاریخ',
- 'hitrun' => 'H & R',
- 'hit-and-runs' => 'آمار و اجرای شمارش',
- 'immune' => 'ایمنی؟',
- 'info' => 'اطلاعات',
- 'internal' => 'داخلی',
- 'internal-release' => 'آزادی داخلی',
- 'last-seed-activity' => 'آخرین فعالیت دانه',
- 'last-seeder' => 'شما آخرین بذر باقی مانده است! (3 بار دانلود شده است)',
- 'last-update' => 'اخرین بروزرسانی',
- 'leave-tip' => 'نوک را ترک کن',
- 'leecher' => 'Leecher',
- 'leechers' => 'پستانداران',
- 'leeching' => 'بیدار شدن',
- 'left' => 'ترک کرد',
- 'legendary-seeder' => 'گیاه افسانه ای',
- 'legendary-torrent' => 'تورنت افسانه ای',
- 'list' => 'فهرست',
- 'me' => 'من',
- 'media-info' => 'اطلاعات رسانه ای',
- 'media-info-parser' => 'MediaInfo Parser',
- 'media-info-paste' => 'چسباندن MediaInfo را اینجا بگذارید',
- 'meta-desc' => 'دانلود: نام با حداکثر سرعت',
- 'moderation' => 'مدرن',
- 'movies' => 'فیلم ها',
- 'mvp' => 'MVP',
- 'my-active-torrents' => 'تورنتهای فعال من',
- 'name' => 'نام',
- 'no-bookmarks' => 'هیچ نشانه ای یافت نشد',
- 'no-discounts' => 'در حال حاضر هیچ تخفیفی وجود ندارد',
- 'no-meta' => 'ابرداده یافت نشد',
- 'no-privileges' => 'شما نمیتوانید این فایل را دانلود کنید - لطفا برای اطلاعات بیشتر زیر را بررسی کنید',
- 'no-privileges-desc' => 'لطفا نتایج شکست خورده بالا را برای دکمه دانلود برای نمایش ظاهر کنید',
- 'not-completed' => 'شروع به بارگیری اما هرگز انجام نشده است',
- 'not-downloaded' => 'دانلود نشده',
- 'old-torrent' => 'تورنت قدیمی',
- 'optional' => 'اختیاری',
- 'original-output' => 'نمایش / عدم نمایش خروجی اصلی',
- 'participant' => 'شرکت کننده',
- 'passed' => 'گذشت',
- 'peers' => 'همسالان',
- 'pending' => 'در انتظار',
- 'personal-freeleech' => 'فریخلی شخصی',
- 'poster' => 'پوستر',
- 'poster-view' => 'نمایش پوستر',
- 'posters' => 'پوسترها',
- 'prewarn' => 'پیش رانده شده؟',
- 'progress' => 'پیش رفتن',
- 'quick-comment' => 'نظر سریع',
- 'quick-tip' => 'مقادیر نوک سریع',
- 'rated' => 'دارای رتبه',
- 'rating' => 'رتبه بندی',
- 'ready' => 'این فایل برای دانلود آماده است',
- 'rejected' => 'رد شد',
- 'released' => 'منتشر شد',
- 'remaining' => 'باقی مانده',
- 'request-reseed' => 'درخواست مجدد',
- 'requires-reseed' => 'نیاز به Reseed',
- 'resurrections' => 'قیامت',
- 'revoke' => 'لغو',
- 'rss' => 'RSS',
- 'runtime' => 'زمان اجرا',
- 'satisfied_in' => 'راضی است',
- 'say-thanks' => 'لطفا به یاد داشته باشید تا زمانی که می توانید بگویید، به لطف خدا و بذر می گویند',
- 'sd-content' => 'محتویات SD',
- 'search' => 'جستجو کردن',
- 'seed-time' => 'زمان بذر',
- 'seeder' => 'بذر',
- 'seeders' => 'بذرها',
- 'seeding' => 'کاشت',
- 'seedsize' => 'دانه بندی کردن',
- 'seedtime' => 'زمان بیداری',
- 'short-completed' => 'سی',
- 'short-leechs' => 'ل',
- 'short-seeds' => 'S',
- 'show-files' => 'نمایش فایل ها',
- 'similar' => 'تورنت های مشابه',
- 'size' => 'اندازه',
- 'special' => 'ویژه',
- 'special-freeleech' => 'فرمالین ویژه',
- 'started' => 'آغاز شده',
- 'status' => 'وضعیت',
- 'statistics' => 'آمار',
- 'stats' => 'آمار',
- 'sticky' => 'چسبنده',
- 'stream-optimized' => 'جریان بهینه سازی شده',
- 'subtitle' => 'عنوان فرعی',
- 'team-player' => 'بازیکن تیم',
- 'thank' => 'ممنون',
- 'thanked' => 'تشکر شده',
- 'thanks' => 'با تشکر',
- 'thanks-given' => 'سپاسگزارم',
- 'times' => 'بار',
- 'tip-jar' => 'شیشه نکته',
- 'title' => 'عنوان',
- 'titles' => 'عنوان ها',
- 'top-completed' => 'بالا کامل شد',
- 'top-dead' => 'مرده بالا',
- 'top-dying' => 'مرگ بالا',
- 'top-leeched' => 'بالا پایین',
- 'top-seeded' => 'بالا بذر',
- 'torrent' => 'تورنت',
- 'torrent-request' => 'درخواست تورنت',
- 'torrent-tips' => 'در مجموع : کل BON به آپلود کننده متصل شده است، که از آن : کاربر از شما است',
- 'torrent-tips-desc' => 'این از نقاط جایزه موجود شما کسر می شود',
- 'torrents' => 'تورنت ها',
- 'trailer' => 'نمایش تریلر',
- 'type' => 'تایپ کنید',
- 'types' => 'انواع',
- 'unbookmark' => 'Unbookmark',
- 'unsatisfieds' => 'ناراضی نیست',
- 'unsticky' => 'غیرقابل لمس',
- 'updated' => 'به روز شد',
- 'updated_at' => 'به روز شده در',
- 'uploaded' => 'آپلود شده',
- 'uploaded-by' => 'بارگزاری شده توسط',
- 'uploader' => 'آپلود کننده',
- 'use-fl-token' => 'با استفاده از یک رکورد Freeleech',
- 'video' => 'ویدئو',
- 'view-more' => 'بیشتر ببینید',
- 'view-trailer' => 'نمایش تریلر',
- 'votes' => 'رای',
+ 'grouping-results' => 'نتایج گروه بندی',
+ 'groupings-view' => 'نمایش گروهی',
+ 'have-completed' => 'تکمیل شده',
+ 'have-downloaded' => 'دانلود شده',
+ 'have-not-completed' => 'تکمیل نشده',
+ 'have-not-downloaded' => 'دانلود نشده',
+ 'health' => 'سلامتی',
+ 'history' => 'تاریخ',
+ 'hitrun' => 'H & R',
+ 'hit-and-runs' => 'آمار و اجرای شمارش',
+ 'immune' => 'ایمنی؟',
+ 'info' => 'اطلاعات',
+ 'internal' => 'داخلی',
+ 'internal-release' => 'آزادی داخلی',
+ 'last-seed-activity' => 'آخرین فعالیت دانه',
+ 'last-seeder' => 'شما آخرین بذر باقی مانده است! (3 بار دانلود شده است)',
+ 'last-update' => 'اخرین بروزرسانی',
+ 'leave-tip' => 'نوک را ترک کن',
+ 'leecher' => 'Leecher',
+ 'leechers' => 'پستانداران',
+ 'leeching' => 'بیدار شدن',
+ 'left' => 'ترک کرد',
+ 'legendary-seeder' => 'گیاه افسانه ای',
+ 'legendary-torrent' => 'تورنت افسانه ای',
+ 'list' => 'فهرست',
+ 'me' => 'من',
+ 'media-info' => 'اطلاعات رسانه ای',
+ 'media-info-parser' => 'MediaInfo Parser',
+ 'media-info-paste' => 'چسباندن MediaInfo را اینجا بگذارید',
+ 'meta-desc' => 'دانلود: نام با حداکثر سرعت',
+ 'moderation' => 'مدرن',
+ 'movies' => 'فیلم ها',
+ 'mvp' => 'MVP',
+ 'my-active-torrents' => 'تورنتهای فعال من',
+ 'name' => 'نام',
+ 'no-bookmarks' => 'هیچ نشانه ای یافت نشد',
+ 'no-discounts' => 'در حال حاضر هیچ تخفیفی وجود ندارد',
+ 'no-meta' => 'ابرداده یافت نشد',
+ 'no-privileges' => 'شما نمیتوانید این فایل را دانلود کنید - لطفا برای اطلاعات بیشتر زیر را بررسی کنید',
+ 'no-privileges-desc' => 'لطفا نتایج شکست خورده بالا را برای دکمه دانلود برای نمایش ظاهر کنید',
+ 'not-completed' => 'شروع به بارگیری اما هرگز انجام نشده است',
+ 'not-downloaded' => 'دانلود نشده',
+ 'old-torrent' => 'تورنت قدیمی',
+ 'optional' => 'اختیاری',
+ 'original-output' => 'نمایش / عدم نمایش خروجی اصلی',
+ 'participant' => 'شرکت کننده',
+ 'passed' => 'گذشت',
+ 'peers' => 'همسالان',
+ 'pending' => 'در انتظار',
+ 'personal-freeleech' => 'فریخلی شخصی',
+ 'poster' => 'پوستر',
+ 'poster-view' => 'نمایش پوستر',
+ 'posters' => 'پوسترها',
+ 'prewarn' => 'پیش رانده شده؟',
+ 'progress' => 'پیش رفتن',
+ 'quick-comment' => 'نظر سریع',
+ 'quick-tip' => 'مقادیر نوک سریع',
+ 'rated' => 'دارای رتبه',
+ 'rating' => 'رتبه بندی',
+ 'ready' => 'این فایل برای دانلود آماده است',
+ 'rejected' => 'رد شد',
+ 'released' => 'منتشر شد',
+ 'remaining' => 'باقی مانده',
+ 'request-reseed' => 'درخواست مجدد',
+ 'requires-reseed' => 'نیاز به Reseed',
+ 'resurrections' => 'قیامت',
+ 'revoke' => 'لغو',
+ 'rss' => 'RSS',
+ 'runtime' => 'زمان اجرا',
+ 'satisfied_in' => 'راضی است',
+ 'say-thanks' => 'لطفا به یاد داشته باشید تا زمانی که می توانید بگویید، به لطف خدا و بذر می گویند',
+ 'sd-content' => 'محتویات SD',
+ 'search' => 'جستجو کردن',
+ 'seed-time' => 'زمان بذر',
+ 'seeder' => 'بذر',
+ 'seeders' => 'بذرها',
+ 'seeding' => 'کاشت',
+ 'seedsize' => 'دانه بندی کردن',
+ 'seedtime' => 'زمان بیداری',
+ 'short-completed' => 'سی',
+ 'short-leechs' => 'ل',
+ 'short-seeds' => 'S',
+ 'show-files' => 'نمایش فایل ها',
+ 'similar' => 'تورنت های مشابه',
+ 'size' => 'اندازه',
+ 'special' => 'ویژه',
+ 'special-freeleech' => 'فرمالین ویژه',
+ 'started' => 'آغاز شده',
+ 'status' => 'وضعیت',
+ 'statistics' => 'آمار',
+ 'stats' => 'آمار',
+ 'sticky' => 'چسبنده',
+ 'stream-optimized' => 'جریان بهینه سازی شده',
+ 'subtitle' => 'عنوان فرعی',
+ 'team-player' => 'بازیکن تیم',
+ 'thank' => 'ممنون',
+ 'thanked' => 'تشکر شده',
+ 'thanks' => 'با تشکر',
+ 'thanks-given' => 'سپاسگزارم',
+ 'times' => 'بار',
+ 'tip-jar' => 'شیشه نکته',
+ 'title' => 'عنوان',
+ 'titles' => 'عنوان ها',
+ 'top-completed' => 'بالا کامل شد',
+ 'top-dead' => 'مرده بالا',
+ 'top-dying' => 'مرگ بالا',
+ 'top-leeched' => 'بالا پایین',
+ 'top-seeded' => 'بالا بذر',
+ 'torrent' => 'تورنت',
+ 'torrent-request' => 'درخواست تورنت',
+ 'torrent-tips' => 'در مجموع : کل BON به آپلود کننده متصل شده است، که از آن : کاربر از شما است',
+ 'torrent-tips-desc' => 'این از نقاط جایزه موجود شما کسر می شود',
+ 'torrents' => 'تورنت ها',
+ 'trailer' => 'نمایش تریلر',
+ 'type' => 'تایپ کنید',
+ 'types' => 'انواع',
+ 'unbookmark' => 'Unbookmark',
+ 'unsatisfieds' => 'ناراضی نیست',
+ 'unsticky' => 'غیرقابل لمس',
+ 'updated' => 'به روز شد',
+ 'updated_at' => 'به روز شده در',
+ 'uploaded' => 'آپلود شده',
+ 'uploaded-by' => 'بارگزاری شده توسط',
+ 'uploader' => 'آپلود کننده',
+ 'use-fl-token' => 'با استفاده از یک رکورد Freeleech',
+ 'video' => 'ویدئو',
+ 'view-more' => 'بیشتر ببینید',
+ 'view-trailer' => 'نمایش تریلر',
+ 'votes' => 'رای',
];
diff --git a/lang/fa/user.php b/lang/fa/user.php
index be319e46a..400d1b348 100644
--- a/lang/fa/user.php
+++ b/lang/fa/user.php
@@ -12,316 +12,316 @@
*/
return [
- 'about' => 'در باره',
- 'about-me' => 'درمورد من',
- 'accepted-at' => 'پذیرفته شده در',
- 'accepted-by' => 'پذیرفته شده توسط',
- 'account-notification' => 'تنظیمات هشدار حساب',
- 'account-notification-follow' => 'دریافت یک اعلان زمانی که یک کاربر از حساب شما پیروی کند',
- 'account-notification-unfollow' => 'دریافت یک اعلان زمانی که یک کاربر حساب کاربری شما را دنبال کند',
- 'account-notification-help' => 'کنترل اعلان ها مربوط به حساب کاربری شما این تنظیمات لغو می شود، اگر هیچ گروه اجازه ارسال اعلان های مربوط به حساب کاربری شما را نمی دهد و یا غیرفعال کردن اعلان ها',
- 'account-settings' => 'تنظیمات حساب',
- 'achievement-privacy' => 'تنظیمات دستاورد',
- 'achievement-privacy-list' => 'به کاربران اجازه دهید لیستی از دستاوردهای شما را مشاهده کنند',
- 'achievement-help' => 'کنترل تقسیم اطلاعات مرتبط با دستاورد خاص با گروههایی که مجاز به دسترسی به نمایه شما هستند. اگر هیچ گروهی اجازه دسترسی به دستاوردهای خود و یا رفتن به خصوصی را نداشته باشید، این تنظیمات لغو می شوند',
- 'achievements' => 'دستاوردها',
- 'active' => 'فعال',
- 'active-table' => 'جدول فعال من',
- 'active-torrents' => 'تورنت های فعال',
- 'active-warning' => 'هشدار فعال',
- 'active-warnings' => 'هشدارهای فعال',
- 'add-seedbox' => 'افزودن صندوق پستی',
- 'all-torrents' => 'همه تورنت ها',
- 'article-comments' => 'نظرات مقالات ساخته شده',
- 'avatar' => 'آواتار',
- 'avg-seedtime' => 'متوسط بارداری',
- 'badges' => 'مدالها',
- 'ban' => 'کاربر ممنوع',
- 'ban-log' => 'ورود ممنوع',
- 'become-hidden' => 'تبدیل به پنهان',
- 'become-visible' => 'نمایان شدن',
- 'bon' => 'بون',
- 'bon-notification' => 'تنظیمات هشدار BON',
- 'bon-notification-gift' => 'دریافت یک اعلان زمانی که یک هدیه کاربر به شما هدیه می دهد',
- 'bon-notification-help' => 'کنترل اعلان های مربوط به معاملات BON ارسال می شود. این تنظیمات لغو می شود اگر شما اجازه ندارید هیچ گروهی برای ارسال اعلان ها در مورد BON و یا غیرفعال کردن اعلان ها',
- 'bookmarks' => 'نشانکها',
- 'bounty-given' => 'فواید داده شده',
- 'bounty-received' => 'فصاحت دریافت شده',
- 'can-chat' => 'می توانید چت کنید',
- 'can-comment' => 'می توانید نظر دهید',
- 'can-download' => 'می توانید دانلود کنید',
- 'can-invite' => 'می توانید دعوت کنید',
- 'can-request' => 'می توانید درخواست کنید',
- 'can-upload' => 'آپلود می شود',
- 'certified-banker' => 'خبره بانکدار',
- 'certified-banker-desc' => 'دارای 50000 یا بیشتر BON در بانک است',
- 'certified-downloader' => 'گواهی دانلودر',
- 'certified-downloader-desc' => 'دانلود 100 یا بیشتر تورنت ها!',
- 'certified-seeder' => 'گواهی خبره',
- 'certified-seeder-desc' => 'بیدار 150 یا بیشتر تورنت ها!',
- 'change-email' => 'تغییر ایمیل',
- 'change-email-help' => 'پس از تغییر ایمیل خود، باید حساب خود را دوباره تأیید کنید',
- 'change-password' => 'تغییر رمز عبور',
- 'change-password-help' => 'بعد از اینکه گذرواژه خود را عوض کردید مجددا باید دوباره وارد شوید',
- 'client-ip-address' => 'آدرس IP مشتری',
- 'code' => 'کد',
- 'comments' => 'نظرات',
- 'created-on' => 'ایجاد شده در',
- 'credited-download' => 'دانلود مجانی',
- 'credited-upload' => 'آپلود اعتبار شده',
- 'current-password' => 'رمز عبور فعلی',
- 'custom-title' => 'عنوان سفارشی',
- 'delete' => 'حذف کاربر',
- 'disable-notifications' => 'غیر فعال کردن اعلانها',
- 'disclaimer' => 'سلب مسئولیت',
- 'disclaimer-info' => 'ما به طور پیش فرض آدرس های IP کاربر را مانند اغلب ردیاب ها وارد نمی کنیم. با اضافه کردن زیر صندوق پستی خود را در زیر انتظار می رود که شما می دانید IP های خود را در زیر در حال حاضر در پایگاه داده ما ذخیره می شود مگر اینکه سوابق را حذف کنید.',
- 'disclaimer-info-bordered' => 'آی پی های Seedbox اضافه شده و سپس تورنت سرعت بالا را در تورنت هایی که از IP های ذکر شده در زیر ذکر شده اند، مسدود می کند',
- 'download-bon' => 'دانلود از BON فروشگاه حذف شده است',
- 'download-recorded' => 'ضبط شده دانلود',
- 'download-true' => 'دانلود واقعی',
- 'downloads' => 'دانلودها',
- 'edit' => 'ویرایش کاربر',
- 'edit-profile' => 'ویرایش مشخصات',
- 'enable-notifications' => 'فعال کردن اعلانها',
- 'expired' => 'منقضی شده',
- 'expires-on' => 'منقضی در',
- 'extra' => 'فوق العاده',
- 'filled-request' => 'درخواستهای کاربر پر شده است',
- 'follow' => 'دنبال کردن',
- 'follower-privacy' => 'تنظیمات دنبال کننده',
- 'follower-privacy-list' => 'به کاربران اجازه دهید لیستی از پیروان شما را مشاهده کنند',
- 'follower-help' => 'به اشتراک گذاری اطلاعات مربوط به پیروی کننده خاص با گروههایی که مجاز به دسترسی به نمایه شما هستند را کنترل کنید. اگر هیچ گروهی اجازه دسترسی به پیروان خود و یا رفتن به خصوصی را نداشته باشید، این تنظیمات لغو می شوند',
- 'followers' => 'دنبال کنندگان',
- 'following-notification' => 'تنظیمات اطلاع رسانی کاربر',
- 'following-notification-upload' => 'دریافت یک اعلان زمانی که یک کاربر دنبال شده تورنت را آپلود میکند',
- 'following-notification-help' => 'کنترل اعلان های مربوط به اقدامات کاربر پس از ارسال این تنظیمات لغو می شود اگر شما اجازه ندارید هیچ گروهی برای ارسال اعلان ها در مورد کاربران دنبال شده و یا غیر فعال کردن اعلان ها',
- 'formats-are-supported' => ': فرمت ها پشتیبانی می شوند',
- 'forum-notification' => 'تنظیمات اطلاع رسانی انجمن',
- 'forum-notification-topic' => 'دریافت یک اطلاعیه زمانی که موضوعی که شما شروع کردید یک پست جدید دریافت کردید',
- 'forum-notification-help' => 'کنترل اعلان های مربوط به فعالیت های انجمن این تنظیمات لغو می شود، اگر شما اجازه ندارید هیچ گروهی اعلان های مربوط به فعالیت های انجمن را ارسال کنید و یا غیر فعال کردن اعلان ها',
- 'forum-privacy' => 'تنظیمات انجمن',
- 'forum-privacy-post' => 'به کاربران اجازه دهید تا لیستی از پست های فروم که شما پست کرده اید را مشاهده کنید',
- 'forum-privacy-topic' => 'اجازه دادن به کاربران برای مشاهده لیستی از موضوعات انجمن که شما شروع کرده اید',
- 'forum-help' => 'کنترل به اشتراکگذاری آمار و اطلاعات مربوط به انجمن خاص را با گروههایی که مجاز به دسترسی به نمایه شما هستند، کنترل کنید. اگر هیچ گروهی اجازه دسترسی به آمار و اطلاعات مربوط به انجمن خود را ندهید و یا اگر شما بروید خصوصی، این تنظیمات لغو می شوند',
- 'forum-signature' => 'امضاء انجمن',
- 'forums' => 'انجمن ها',
- 'general' => 'عمومی',
- 'general-settings' => 'تنظیمات عمومی',
- 'gift-given' => 'هدیه داده شده',
- 'gift-received' => 'دریافت هدیه',
- 'go-public' => 'برو عمومی',
- 'go-private' => 'برو خصوصی',
- 'history' => 'تاریخ',
- 'history-table' => 'جدول تاریخچه من',
- 'hit-n-runs' => 'آمار و اجرا',
- 'hit-n-runs-count' => 'آمار و اجرای شمارش (تمام وقت)',
- 'hit-n-runs-history' => 'Torrent Hit و Run History',
- 'image' => 'تصویر',
- 'important' => 'مهم',
- 'important-info' => 'اطلاعات مهم',
- 'information' => 'اطلاعات',
- 'invite-friend' => 'دعوت از دوست شما (ایمیل + پیام مورد نیاز)',
- 'invite-tree' => 'دعوت از درخت',
- 'invites' => 'دعوت می کند',
- 'invites-banned' => 'خطا: حقوق دعوت شما غیر فعال شده است',
- 'invites-banned-desc' => 'اگر احساس می کنید این خطا است، لطفا با کارکنان تماس بگیرید',
- 'invites-count' => 'شما: تعداد دعوت نامه ها را شمارش کنید',
- 'invites-disabled' => 'توجه: دعوت به دلیل باز شدن ثبت نام غیر فعال است!',
- 'invites-disabled-desc' => 'لطفا به زودی بررسی کنید',
- 'invites-rules' => '- فقط افرادی را که می شناسید و اعتماد می کنید دعوت کنید
- شما شخصا مسئول کسانی هستید که دعوت میشوید.
- خودتان را دعوت نکنید، ما هر کاربر دعوت شده را بررسی می کنیم.
- تجارت یا فروش دعوت نکنید
- اگر فردی که شما دعوت کرده اید فریب خورده شود، حساب معاملاتی یا دعوتنامه های فروش / تجاری را اخطار دهید، هشدار می دهید.
',
- 'invites-send' => 'دعوت نامه ارسال',
- 'last-login' => 'آخرین ورود',
- 'locked' => 'قفل شده است',
- 'locked-achievements' => 'دستاوردهای قفل شده',
- 'member-since' => 'عضو از سال',
- 'members-desc' => 'فهرست کاربران ثبت نام شده در: عنوان با تمام گروه ها. اکنون کاربر را پیدا کنید',
- 'mention-notification' => '@ تنظیمات اعلان اعلام وضعیت',
+ 'about' => 'در باره',
+ 'about-me' => 'درمورد من',
+ 'accepted-at' => 'پذیرفته شده در',
+ 'accepted-by' => 'پذیرفته شده توسط',
+ 'account-notification' => 'تنظیمات هشدار حساب',
+ 'account-notification-follow' => 'دریافت یک اعلان زمانی که یک کاربر از حساب شما پیروی کند',
+ 'account-notification-unfollow' => 'دریافت یک اعلان زمانی که یک کاربر حساب کاربری شما را دنبال کند',
+ 'account-notification-help' => 'کنترل اعلان ها مربوط به حساب کاربری شما این تنظیمات لغو می شود، اگر هیچ گروه اجازه ارسال اعلان های مربوط به حساب کاربری شما را نمی دهد و یا غیرفعال کردن اعلان ها',
+ 'account-settings' => 'تنظیمات حساب',
+ 'achievement-privacy' => 'تنظیمات دستاورد',
+ 'achievement-privacy-list' => 'به کاربران اجازه دهید لیستی از دستاوردهای شما را مشاهده کنند',
+ 'achievement-help' => 'کنترل تقسیم اطلاعات مرتبط با دستاورد خاص با گروههایی که مجاز به دسترسی به نمایه شما هستند. اگر هیچ گروهی اجازه دسترسی به دستاوردهای خود و یا رفتن به خصوصی را نداشته باشید، این تنظیمات لغو می شوند',
+ 'achievements' => 'دستاوردها',
+ 'active' => 'فعال',
+ 'active-table' => 'جدول فعال من',
+ 'active-torrents' => 'تورنت های فعال',
+ 'active-warning' => 'هشدار فعال',
+ 'active-warnings' => 'هشدارهای فعال',
+ 'add-seedbox' => 'افزودن صندوق پستی',
+ 'all-torrents' => 'همه تورنت ها',
+ 'article-comments' => 'نظرات مقالات ساخته شده',
+ 'avatar' => 'آواتار',
+ 'avg-seedtime' => 'متوسط بارداری',
+ 'badges' => 'مدالها',
+ 'ban' => 'کاربر ممنوع',
+ 'ban-log' => 'ورود ممنوع',
+ 'become-hidden' => 'تبدیل به پنهان',
+ 'become-visible' => 'نمایان شدن',
+ 'bon' => 'بون',
+ 'bon-notification' => 'تنظیمات هشدار BON',
+ 'bon-notification-gift' => 'دریافت یک اعلان زمانی که یک هدیه کاربر به شما هدیه می دهد',
+ 'bon-notification-help' => 'کنترل اعلان های مربوط به معاملات BON ارسال می شود. این تنظیمات لغو می شود اگر شما اجازه ندارید هیچ گروهی برای ارسال اعلان ها در مورد BON و یا غیرفعال کردن اعلان ها',
+ 'bookmarks' => 'نشانکها',
+ 'bounty-given' => 'فواید داده شده',
+ 'bounty-received' => 'فصاحت دریافت شده',
+ 'can-chat' => 'می توانید چت کنید',
+ 'can-comment' => 'می توانید نظر دهید',
+ 'can-download' => 'می توانید دانلود کنید',
+ 'can-invite' => 'می توانید دعوت کنید',
+ 'can-request' => 'می توانید درخواست کنید',
+ 'can-upload' => 'آپلود می شود',
+ 'certified-banker' => 'خبره بانکدار',
+ 'certified-banker-desc' => 'دارای 50000 یا بیشتر BON در بانک است',
+ 'certified-downloader' => 'گواهی دانلودر',
+ 'certified-downloader-desc' => 'دانلود 100 یا بیشتر تورنت ها!',
+ 'certified-seeder' => 'گواهی خبره',
+ 'certified-seeder-desc' => 'بیدار 150 یا بیشتر تورنت ها!',
+ 'change-email' => 'تغییر ایمیل',
+ 'change-email-help' => 'پس از تغییر ایمیل خود، باید حساب خود را دوباره تأیید کنید',
+ 'change-password' => 'تغییر رمز عبور',
+ 'change-password-help' => 'بعد از اینکه گذرواژه خود را عوض کردید مجددا باید دوباره وارد شوید',
+ 'client-ip-address' => 'آدرس IP مشتری',
+ 'code' => 'کد',
+ 'comments' => 'نظرات',
+ 'created-on' => 'ایجاد شده در',
+ 'credited-download' => 'دانلود مجانی',
+ 'credited-upload' => 'آپلود اعتبار شده',
+ 'current-password' => 'رمز عبور فعلی',
+ 'custom-title' => 'عنوان سفارشی',
+ 'delete' => 'حذف کاربر',
+ 'disable-notifications' => 'غیر فعال کردن اعلانها',
+ 'disclaimer' => 'سلب مسئولیت',
+ 'disclaimer-info' => 'ما به طور پیش فرض آدرس های IP کاربر را مانند اغلب ردیاب ها وارد نمی کنیم. با اضافه کردن زیر صندوق پستی خود را در زیر انتظار می رود که شما می دانید IP های خود را در زیر در حال حاضر در پایگاه داده ما ذخیره می شود مگر اینکه سوابق را حذف کنید.',
+ 'disclaimer-info-bordered' => 'آی پی های Seedbox اضافه شده و سپس تورنت سرعت بالا را در تورنت هایی که از IP های ذکر شده در زیر ذکر شده اند، مسدود می کند',
+ 'download-bon' => 'دانلود از BON فروشگاه حذف شده است',
+ 'download-recorded' => 'ضبط شده دانلود',
+ 'download-true' => 'دانلود واقعی',
+ 'downloads' => 'دانلودها',
+ 'edit' => 'ویرایش کاربر',
+ 'edit-profile' => 'ویرایش مشخصات',
+ 'enable-notifications' => 'فعال کردن اعلانها',
+ 'expired' => 'منقضی شده',
+ 'expires-on' => 'منقضی در',
+ 'extra' => 'فوق العاده',
+ 'filled-request' => 'درخواستهای کاربر پر شده است',
+ 'follow' => 'دنبال کردن',
+ 'follower-privacy' => 'تنظیمات دنبال کننده',
+ 'follower-privacy-list' => 'به کاربران اجازه دهید لیستی از پیروان شما را مشاهده کنند',
+ 'follower-help' => 'به اشتراک گذاری اطلاعات مربوط به پیروی کننده خاص با گروههایی که مجاز به دسترسی به نمایه شما هستند را کنترل کنید. اگر هیچ گروهی اجازه دسترسی به پیروان خود و یا رفتن به خصوصی را نداشته باشید، این تنظیمات لغو می شوند',
+ 'followers' => 'دنبال کنندگان',
+ 'following-notification' => 'تنظیمات اطلاع رسانی کاربر',
+ 'following-notification-upload' => 'دریافت یک اعلان زمانی که یک کاربر دنبال شده تورنت را آپلود میکند',
+ 'following-notification-help' => 'کنترل اعلان های مربوط به اقدامات کاربر پس از ارسال این تنظیمات لغو می شود اگر شما اجازه ندارید هیچ گروهی برای ارسال اعلان ها در مورد کاربران دنبال شده و یا غیر فعال کردن اعلان ها',
+ 'formats-are-supported' => ': فرمت ها پشتیبانی می شوند',
+ 'forum-notification' => 'تنظیمات اطلاع رسانی انجمن',
+ 'forum-notification-topic' => 'دریافت یک اطلاعیه زمانی که موضوعی که شما شروع کردید یک پست جدید دریافت کردید',
+ 'forum-notification-help' => 'کنترل اعلان های مربوط به فعالیت های انجمن این تنظیمات لغو می شود، اگر شما اجازه ندارید هیچ گروهی اعلان های مربوط به فعالیت های انجمن را ارسال کنید و یا غیر فعال کردن اعلان ها',
+ 'forum-privacy' => 'تنظیمات انجمن',
+ 'forum-privacy-post' => 'به کاربران اجازه دهید تا لیستی از پست های فروم که شما پست کرده اید را مشاهده کنید',
+ 'forum-privacy-topic' => 'اجازه دادن به کاربران برای مشاهده لیستی از موضوعات انجمن که شما شروع کرده اید',
+ 'forum-help' => 'کنترل به اشتراکگذاری آمار و اطلاعات مربوط به انجمن خاص را با گروههایی که مجاز به دسترسی به نمایه شما هستند، کنترل کنید. اگر هیچ گروهی اجازه دسترسی به آمار و اطلاعات مربوط به انجمن خود را ندهید و یا اگر شما بروید خصوصی، این تنظیمات لغو می شوند',
+ 'forum-signature' => 'امضاء انجمن',
+ 'forums' => 'انجمن ها',
+ 'general' => 'عمومی',
+ 'general-settings' => 'تنظیمات عمومی',
+ 'gift-given' => 'هدیه داده شده',
+ 'gift-received' => 'دریافت هدیه',
+ 'go-public' => 'برو عمومی',
+ 'go-private' => 'برو خصوصی',
+ 'history' => 'تاریخ',
+ 'history-table' => 'جدول تاریخچه من',
+ 'hit-n-runs' => 'آمار و اجرا',
+ 'hit-n-runs-count' => 'آمار و اجرای شمارش (تمام وقت)',
+ 'hit-n-runs-history' => 'Torrent Hit و Run History',
+ 'image' => 'تصویر',
+ 'important' => 'مهم',
+ 'important-info' => 'اطلاعات مهم',
+ 'information' => 'اطلاعات',
+ 'invite-friend' => 'دعوت از دوست شما (ایمیل + پیام مورد نیاز)',
+ 'invite-tree' => 'دعوت از درخت',
+ 'invites' => 'دعوت می کند',
+ 'invites-banned' => 'خطا: حقوق دعوت شما غیر فعال شده است',
+ 'invites-banned-desc' => 'اگر احساس می کنید این خطا است، لطفا با کارکنان تماس بگیرید',
+ 'invites-count' => 'شما: تعداد دعوت نامه ها را شمارش کنید',
+ 'invites-disabled' => 'توجه: دعوت به دلیل باز شدن ثبت نام غیر فعال است!',
+ 'invites-disabled-desc' => 'لطفا به زودی بررسی کنید',
+ 'invites-rules' => '- فقط افرادی را که می شناسید و اعتماد می کنید دعوت کنید
- شما شخصا مسئول کسانی هستید که دعوت میشوید.
- خودتان را دعوت نکنید، ما هر کاربر دعوت شده را بررسی می کنیم.
- تجارت یا فروش دعوت نکنید
- اگر فردی که شما دعوت کرده اید فریب خورده شود، حساب معاملاتی یا دعوتنامه های فروش / تجاری را اخطار دهید، هشدار می دهید.
',
+ 'invites-send' => 'دعوت نامه ارسال',
+ 'last-login' => 'آخرین ورود',
+ 'locked' => 'قفل شده است',
+ 'locked-achievements' => 'دستاوردهای قفل شده',
+ 'member-since' => 'عضو از سال',
+ 'members-desc' => 'فهرست کاربران ثبت نام شده در: عنوان با تمام گروه ها. اکنون کاربر را پیدا کنید',
+ 'mention-notification' => '@ تنظیمات اعلان اعلام وضعیت',
'mention-notification-article-comment' => 'دریافت یک اعلان هنگامی که شما @ در نظر مقاله ذکر شده است',
'mention-notification-torrent-comment' => 'دریافت یک اعلان هنگامی که شما @ در نظر تورنت اشاره شده است',
'mention-notification-request-comment' => 'دریافت یک اعلان زمانی که شما @ در یک نظر درخواست ذکر شده است',
- 'mention-notification-forum-post' => 'دریافت یک اعلان زمانی که @ شما در یک پست فروم ذکر شده است',
- 'mention-notification-help' => 'کنترل اعلان ها هنگامی که یک کاربر @ شما را به خاطر می آورد کنترل می شود. این تنظیمات لغو می شود اگر شما اجازه ندارید هیچ گروهی برای اعلان ها ارسال کنید اگر یک کاربر @ شما را ملاقات کند یا اگر شما غیر فعال کردن اعلان ها',
- 'moderated-by' => 'Moderated by: mod on',
- 'my-bonus-points' => 'امتیازات پاداش من',
- 'my-bookmarks' => 'نشانکهای من',
- 'my-fl-tokens' => 'فاکتور FL من',
- 'my-general-settings' => 'تنظیمات عمومی من',
- 'my-notification' => 'اخطار من',
- 'my-notification-settings' => 'تنظیمات اطلاع رسانی من',
- 'my-privacy' => 'حریم شخصی من',
- 'my-privacy-settings' => 'تنظیمات حریم خصوصی من',
- 'my-profile' => 'پروفایل من',
- 'my-requested' => 'درخواست من',
- 'my-security' => 'امنیت من',
- 'my-security-settings' => 'تنظیمات امنیتی من',
- 'my-seedboxes' => 'Seedboxes من',
- 'my-settings' => 'تنظیمات من',
- 'my-wishlist' => 'لیست علاقه مندی های من',
- 'no-logs' => 'هیچ ثبت نام دعوتنامه در پایگاه داده برای این کاربر وجود ندارد!',
- 'no-seedboxes' => 'هیچ seedboxes 😔',
- 'not-authorized' => 'شما مجاز به مشاهده این صفحه نمیباشید. این عضو ترجیح می دهد مانند یک نینجا پنهان شود!',
- 'note' => 'توجه داشته باشید',
- 'notification' => 'اطلاع',
- 'notification-settings' => 'تنظیمات اطلاع رسانی',
- 'notification-from-account' => 'دریافت اطلاعیه های حساب از',
- 'notification-from-account-help' => 'شما فقط اعلان های حساب را از سیستم، کارکنان و گروه های زیر دریافت خواهید کرد. اگر غیرفعال کردن اعلانها این تنظیمات لغو شود، این تنظیم لغو می شود',
- 'notification-from-bon' => 'دریافت اطلاعیه BON از',
- 'notification-from-bon-help' => 'شما فقط اعلان های BON را از سیستم، کارکنان و گروه های زیر دریافت خواهید کرد. اگر غیرفعال کردن اعلانها این تنظیمات لغو شود، این تنظیم لغو می شود',
- 'notification-from-following' => 'دریافت اطلاعیه های کاربر پس از',
- 'notification-from-following-help' => 'شما فقط اعلان های کاربر پس از گروه های زیر دریافت خواهید کرد. اگر غیرفعال کردن اعلانها این تنظیمات لغو شود، این تنظیم لغو می شود',
- 'notification-from-forum' => 'دریافت اطلاعیه های انجمن از',
- 'notification-from-forum-help' => 'شما فقط اطلاعیه های انجمن را از سیستم، کارکنان و گروه های زیر دریافت خواهید کرد. اگر غیرفعال کردن اعلانها این تنظیمات لغو شود، این تنظیم لغو می شود',
- 'notification-from-subscription' => 'دریافت اطلاعیه های اشتراک از',
- 'notification-from-subscription-help' => 'شما فقط اطلاعیه های انجمن را از سیستم، کارکنان و گروه های زیر دریافت خواهید کرد. اگر غیرفعال کردن اعلانها این تنظیمات لغو شود، این تنظیم لغو می شود',
- 'notification-from-torrent' => 'دریافت اطلاعیه های تورنت از',
- 'notification-from-torrent-help' => 'شما فقط اعلان های تورنت را از سیستم، کارکنان و گروه های زیر دریافت خواهید کرد. اگر غیرفعال کردن اعلانها این تنظیمات لغو شود، این تنظیم لغو می شود',
- 'notification-from-mention' => 'دریافت @ اطلاعیه اطلاعیه از',
- 'notification-from-mention-help' => 'شما فقط اعلان هایmetion را از سیستم، کارکنان و گروه های زیر دریافت خواهید کرد. اگر غیرفعال کردن اعلانها این تنظیمات لغو شود، این تنظیم لغو می شود',
- 'notification-from-request' => 'دریافت اطلاعیه های درخواست از',
- 'notification-from-request-help' => 'شما فقط اعلان درخواست را از سیستم، کارکنان و گروه های زیر دریافت خواهید کرد. اگر غیرفعال کردن اعلانها این تنظیمات لغو شود، این تنظیم لغو می شود',
- 'notifications' => 'اطلاعیه',
- 'offline' => 'کاربر آفلاین است!',
- 'online' => 'کاربر آنلاین است!',
- 'options' => 'گزینه ها',
- 'other-help' => 'کنترل اشتراکگذاری آمار و اطلاعات دیگر را با گروههایی که مجاز به دسترسی به نمایه شما هستند کنترل کنید. اگر هیچ گروهی اجازه دسترسی به آمار و اطلاعات دیگر خود و یا رفتن به خصوصی را ندارید، این تنظیمات لغو می شوند',
- 'other-privacy' => 'تنظیمات دیگر',
- 'other-privacy-online' => 'اجازه دهید کاربران شما را در بلوک کاربران آنلاین ببینند',
- 'passkey' => 'PID',
- 'passkey-warning' => 'PID مانند گذرواژه شماست، شما باید آن را امن نگه دارید!',
- 'pending-achievements' => 'دستاوردهای در انتظار',
- 'per-torrent' => 'در تورنت',
- 'posts' => 'پست ها',
- 'posts-posted' => 'نوشته های انجمن',
- 'privacy' => 'حریم خصوصی',
- 'privacy-settings' => 'تنظیمات حریم خصوصی',
- 'private-info' => 'اطلاعات خصوصی',
- 'private-forum-profile' => 'توجه: این کاربران موضوع و تاریخ ارسال شده است به خصوصی!',
- 'private-profile' => 'توجه: این پروفایل خصوصی شده است!',
- 'profile' => 'مشخصات',
- 'profile-desc' => 'کاربر: مشخصات کاربر ثبت نام شده در: عنوان',
- 'profile-privacy' => 'تنظیمات پروفایل',
- 'profile-privacy-torrent-count' => 'تعداد کل بارگیری، آپلود، دانه و زالو را به اشتراک بگذارید',
- 'profile-privacy-torrent-ratio' => 'داده های آپلود / دانلود کل خود را با نسبت ضبط شده به اشتراک بگذارید',
- 'profile-privacy-torrent-seed' => 'زمان بذر و متوسط خود را به اشتراک بگذارید',
- 'profile-privacy-title' => 'اطلاعات عنوان شخصی خود را به اشتراک بگذارید',
- 'profile-privacy-about' => 'اطلاعات شخصی خود را درباره من به اشتراک بگذارید',
- 'profile-privacy-bon-extra' => 'آمار BON خود را به اشتراک بگذارید',
- 'profile-privacy-comment-extra' => 'آمار نظر خودتان را به اشتراک بگذارید',
- 'profile-privacy-forum-extra' => 'آمار انجمن خود را به اشتراک بگذارید',
- 'profile-privacy-request-extra' => 'آمار درخواست خود را به اشتراک بگذارید',
- 'profile-privacy-torrent-extra' => 'آمار تورنت خود را به اشتراک بگذارید',
- 'profile-privacy-badge' => 'مدال های کسب شده خود را به اشتراک بگذارید',
- 'profile-privacy-achievement' => 'دستاوردهای اخیر خود را به اشتراک بگذارید',
- 'profile-privacy-follower' => 'پیروان اخیر خود را به اشتراک بگذارید',
- 'profile-privacy-warning' => 'هشدارهای H & R خود را به اشتراک بگذارید',
- 'profile-privacy-help' => 'کنترل که آمار و قطعات اطلاعات بر روی نمایه شما ظاهر می شود. اگر هیچ گروهی اجازه دسترسی به نمایه خود و یا رفتن به خصوصی را نداشته باشید، این تنظیمات لغو می شوند',
- 'public-info' => 'اطلاعات عمومی',
- 'recent-achievements' => 'دستاوردهای اخیر',
- 'recent-followers' => 'دنبال کنندگان اخیر',
- 'registration-date' => 'تاریخ ثبت نام',
- 'report' => 'گزارش',
- 'request-help' => 'کنترل تقسیم آمار و اطلاعات مرتبط با درخواست خاص با گروههایی که مجاز به دسترسی به نمایه شما هستند. اگر هیچ گروهی اجازه دسترسی به آمار و اطلاعات مرتبط مربوط به درخواست خود را ندهید و یا اگر شما بروید خصوصی، این تنظیمات لغو می شوند',
- 'request' => 'درخواست',
- 'requested' => 'درخواست شده',
- 'requests' => 'درخواست ها',
- 'request-comments' => 'درخواست نظرات ساخته شده',
- 'request-notification' => 'تنظیمات اعلان درخواست',
- 'request-notification-bounty' => 'دریافت یک اطلاع رسانی زمانی که تورنت درخواست شده فریب جدید را دریافت می کند',
- 'request-notification-comment' => 'دریافت یک اعلان زمانی که تورنت درخواست شده می تواند یک نظر جدید',
- 'request-notification-fill' => 'دریافت یک اعلان زمانی که تورنت درخواست شده پر می شود',
- 'request-notification-fill-approve' => 'دریافت یک اعلان زمانی که پرینت درخواست شده مورد تایید قرار می گیرد',
- 'request-notification-fill-reject' => 'دریافت یک اعلان زمانی که درخواست پررنگ درخواست شده رد شود',
- 'request-notification-claim' => 'دریافت یک اعلان زمانی که تورنت درخواست شده ادعا شود',
- 'request-notification-unclaim' => 'دریافت یک اعلان زمانی که یک تورنت درخواست شده بی پاسخ بماند',
- 'request-notification-help' => 'کنترل اعلان های مربوط به فعالیت های درخواستی ارسال می شود. این تنظیمات لغو می شود، اگر هیچ گروهی اجازه ارسال اعلان های مربوط به فعالیت های درخواست را نمی دهد و یا غیر فعال کردن اعلان ها',
- 'request-privacy' => 'تنظیمات درخواست',
- 'request-privacy-requested' => 'اجازه دهید کاربران برای مشاهده لیستی از درخواستهایی که شما انجام داده اید',
- 'reset-passkey' => 'کلید عبور مجدد (PID)',
- 'reset-passkey-help' => 'شما باید پس از بازنشانی PID دوباره همه ی torrents های خود را دوباره بارگیری کنید / دوباره آپلود کنید',
- 'reset-rss' => 'تنظیم مجدد کلید RSS (RID)',
- 'reset-rss-help' => 'بعد از بازنشانی RID مجبور خواهید شد همه RSS های فعال فعال خود را دوباره بارگذاری کنید',
- 'resurrections' => 'قیامت',
- 'search' => 'جستجوی سریع توسط نام کاربری',
- 'security' => 'امنیت',
- 'security-settings' => 'تنظیمات امنیتی',
- 'seedboxes' => 'صندوق های پستی',
- 'seeds' => 'دانه',
- 'send-invite' => 'ارسال دعوتنامه',
- 'sender' => 'فرستنده',
- 'settings' => 'تنظیمات',
- 'show-passkey' => 'نمایش PID',
- 'staff-noted' => 'حساب کارکنان ذکر شده',
- 'statistics' => 'آمار',
- 'subscription-notification' => 'تنظیمات اعلان اشتراک',
- 'subscription-notification-forum' => 'دریافت یک اطلاعیه زمانی که یک انجمن مشترک می شود یک موضوع جدید',
- 'subscription-notification-topic' => 'دریافت یک اعلان زمانی که یک موضوع اشتراکی یک پست جدید دریافت می کند',
- 'subscription-notification-help' => 'کنترل اعلان های مربوط به اشتراک شما ارسال می شود. این تنظیمات لغو می شود اگر شما اجازه ندارید هیچ گروهی به اطلاعیه های مربوط به اشتراک های خود بفرستید و یا اگر غیر فعال کردن اعلان ها شوید',
- 'thanks-given' => 'سپاسگزارم',
- 'thanks-received' => 'تشکر دریافتی',
- 'tips-given' => 'راهنمایی های داده شده',
- 'tips-received' => 'نکات دریافت شده',
- 'title' => 'عنوان',
- 'top-bankers' => 'بانکداران برتر',
- 'top-downloaders-data' => 'بهترین دانلود کنندگان (داده ها)',
- 'top-leechers' => 'بالا لچر',
- 'top-leechers-count' => 'لوقر بالا (تعداد)',
- 'top-seeders' => 'کارشناسان برتر',
- 'top-seeders-count' => 'پرورش دهندگان (تعداد)',
- 'top-seeding-size' => 'بذر بالا (اندازه)',
- 'top-seedtime' => 'بالا بیدم',
- 'top-uploaders-data' => 'آپلود کننده بالا (داده ها)',
- 'top-uploaders-count' => 'آپلود بالا (تعداد)',
- 'topics' => 'موضوعات',
- 'topics-started' => 'شروع موضوع انجمن',
- 'torrent-comments' => 'نظرات تورنت ساخته شده',
- 'torrent-help' => 'کنترل به اشتراک گذاری آمار و اطلاعات مرتبط با تورنت خاص با گروههایی که مجاز به دسترسی به نمایه شما هستند. این تنظیمات لغو می شود اگر شما هر گروه اجازه دسترسی به آمار و اطلاعات مربوط به تورنت خود را ندارید و یا اگر شما بروید خصوصی',
- 'torrent-notification' => 'تنظیمات اعلان تورنت',
- 'torrent-notification-comment' => 'دریافت یک اعلان زمانی که یک تورنت آپلود می شود یک نظر جدید است',
- 'torrent-notification-thank' => 'دریافت یک اعلان هنگامی که یک تورنت آپلود می شود یک تشکر جدید',
- 'torrent-notification-tip' => 'دریافت یک اعلان زمانی که تورنت آپلود می شود نوک جدید',
- 'torrent-notification-help' => 'کنترل اعلان ها مربوط به فعالیت های تورنت است. این تنظیمات لغو می شود، اگر هیچ گروهی اجازه ارسال اعلان های مربوط به فعالیت های تورنت را نمی دهد و یا غیر فعال کردن اعلان ها',
- 'torrent-privacy' => 'تنظیمات تورنت',
- 'torrent-privacy-download' => 'اجازه دهید کاربران برای مشاهده لیستی از تورنتهایی که شما دریافت کرده اید',
- 'torrent-privacy-upload' => 'اجازه دهید کاربران برای مشاهده لیستی از تورنتهایی که شما آپلود کرده اید',
- 'torrent-privacy-peer' => 'اجازه دهید که کاربران شما را در جدول تاریخچه ی بازی Torrent ببینید',
- 'torrents' => 'تورنت ها',
- 'torrents-history' => 'تاریخچه تورنت ها',
- 'total-download' => 'دانلود کل',
- 'total-downloads' => 'تعداد کل دریافت ها',
- 'total-leeching' => 'کل بوسه',
- 'total-seeding' => 'مجموع بذر',
- 'total-seedtime' => 'طول عمر کامل',
- 'total-upload' => 'مجموع آپلود',
- 'total-uploads' => 'مجموع آپلود ها',
- 'unban' => 'کاربر Unban',
- 'unfollow' => 'لغو شدن',
- 'unlocked' => 'قفل شده است',
- 'unlocked-achievements' => 'دستاوردهای قفل شده',
- 'unsatisfieds' => 'ناراضی نیستم',
- 'upload-bon' => 'آپلود از BON فروشگاه اضافه شده است',
- 'upload-recorded' => 'آپلود ضبط شده',
- 'upload-true' => 'آپلود واقعی',
- 'uploads' => 'آپلود',
- 'uploads-table' => 'جدول آپلود',
- 'user' => 'کاربر',
- 'user-id' => 'شناسه کاربر',
- 'username-seedbox' => 'نام کاربری Seedbox',
- 'visible-to-achievement' => 'دستاوردها قابل مشاهده است',
- 'visible-to-achievement-help' => 'دستاوردهای شما فقط برای کارکنان و گروه های زیر قابل مشاهده خواهد بود. اگر شما بروید خصوصی، این تنظیمات لغو می شوند',
- 'visible-to-follower' => 'دنبال کنندگان قابل مشاهده به',
- 'visible-to-follower-help' => 'پیروان شما فقط برای کارکنان و گروه های زیر قابل مشاهده خواهند بود. اگر شما بروید خصوصی، این تنظیمات لغو می شوند',
- 'visible-to-forum' => 'اطلاعات انجمن قابل مشاهده است',
- 'visible-to-forum-help' => 'اطلاعات انجمن شما فقط برای کارکنان و گروه های زیر قابل مشاهده خواهد بود. اگر شما بروید خصوصی، این تنظیمات لغو می شوند',
- 'visible-to-other' => 'دیگر قابل مشاهده به',
- 'visible-to-other-help' => 'سایر اطلاعات مربوط به حساب شما فقط برای کارکنان و گروه های زیر قابل مشاهده است. این تنظیمات لغو می شود اگر شما بروید خصوصی یا اگر شما بروید پنهان',
- 'visible-to-profile' => 'نمایه قابل مشاهده به',
- 'visible-to-profile-help' => 'مشخصات شما فقط برای کارکنان و گروه های زیر قابل مشاهده خواهد بود. اگر شما بروید خصوصی، این تنظیمات لغو می شوند',
- 'visible-to-request' => 'درخواست اطلاعات قابل مشاهده به',
- 'visible-to-request-help' => 'اطلاعات درخواست شما فقط برای کارکنان و گروه های زیر قابل مشاهده خواهد بود. اگر شما بروید خصوصی، این تنظیمات لغو می شوند',
- 'visible-to-torrent' => 'اطلاعات تورنت قابل مشاهده به',
- 'visible-to-torrent-help' => 'اطلاعات تورنت شما فقط برای کارکنان و گروه های زیر قابل مشاهده خواهد بود. این تنظیمات لغو می شود اگر شما بروید خصوصی یا اگر شما بروید پنهان',
- 'warned-on' => 'اخطار',
- 'warning' => 'اخطار',
- 'warning-log' => 'ورود هشدار',
- 'wishlist' => 'لیست علاقه مندی ها',
+ 'mention-notification-forum-post' => 'دریافت یک اعلان زمانی که @ شما در یک پست فروم ذکر شده است',
+ 'mention-notification-help' => 'کنترل اعلان ها هنگامی که یک کاربر @ شما را به خاطر می آورد کنترل می شود. این تنظیمات لغو می شود اگر شما اجازه ندارید هیچ گروهی برای اعلان ها ارسال کنید اگر یک کاربر @ شما را ملاقات کند یا اگر شما غیر فعال کردن اعلان ها',
+ 'moderated-by' => 'Moderated by: mod on',
+ 'my-bonus-points' => 'امتیازات پاداش من',
+ 'my-bookmarks' => 'نشانکهای من',
+ 'my-fl-tokens' => 'فاکتور FL من',
+ 'my-general-settings' => 'تنظیمات عمومی من',
+ 'my-notification' => 'اخطار من',
+ 'my-notification-settings' => 'تنظیمات اطلاع رسانی من',
+ 'my-privacy' => 'حریم شخصی من',
+ 'my-privacy-settings' => 'تنظیمات حریم خصوصی من',
+ 'my-profile' => 'پروفایل من',
+ 'my-requested' => 'درخواست من',
+ 'my-security' => 'امنیت من',
+ 'my-security-settings' => 'تنظیمات امنیتی من',
+ 'my-seedboxes' => 'Seedboxes من',
+ 'my-settings' => 'تنظیمات من',
+ 'my-wishlist' => 'لیست علاقه مندی های من',
+ 'no-logs' => 'هیچ ثبت نام دعوتنامه در پایگاه داده برای این کاربر وجود ندارد!',
+ 'no-seedboxes' => 'هیچ seedboxes 😔',
+ 'not-authorized' => 'شما مجاز به مشاهده این صفحه نمیباشید. این عضو ترجیح می دهد مانند یک نینجا پنهان شود!',
+ 'note' => 'توجه داشته باشید',
+ 'notification' => 'اطلاع',
+ 'notification-settings' => 'تنظیمات اطلاع رسانی',
+ 'notification-from-account' => 'دریافت اطلاعیه های حساب از',
+ 'notification-from-account-help' => 'شما فقط اعلان های حساب را از سیستم، کارکنان و گروه های زیر دریافت خواهید کرد. اگر غیرفعال کردن اعلانها این تنظیمات لغو شود، این تنظیم لغو می شود',
+ 'notification-from-bon' => 'دریافت اطلاعیه BON از',
+ 'notification-from-bon-help' => 'شما فقط اعلان های BON را از سیستم، کارکنان و گروه های زیر دریافت خواهید کرد. اگر غیرفعال کردن اعلانها این تنظیمات لغو شود، این تنظیم لغو می شود',
+ 'notification-from-following' => 'دریافت اطلاعیه های کاربر پس از',
+ 'notification-from-following-help' => 'شما فقط اعلان های کاربر پس از گروه های زیر دریافت خواهید کرد. اگر غیرفعال کردن اعلانها این تنظیمات لغو شود، این تنظیم لغو می شود',
+ 'notification-from-forum' => 'دریافت اطلاعیه های انجمن از',
+ 'notification-from-forum-help' => 'شما فقط اطلاعیه های انجمن را از سیستم، کارکنان و گروه های زیر دریافت خواهید کرد. اگر غیرفعال کردن اعلانها این تنظیمات لغو شود، این تنظیم لغو می شود',
+ 'notification-from-subscription' => 'دریافت اطلاعیه های اشتراک از',
+ 'notification-from-subscription-help' => 'شما فقط اطلاعیه های انجمن را از سیستم، کارکنان و گروه های زیر دریافت خواهید کرد. اگر غیرفعال کردن اعلانها این تنظیمات لغو شود، این تنظیم لغو می شود',
+ 'notification-from-torrent' => 'دریافت اطلاعیه های تورنت از',
+ 'notification-from-torrent-help' => 'شما فقط اعلان های تورنت را از سیستم، کارکنان و گروه های زیر دریافت خواهید کرد. اگر غیرفعال کردن اعلانها این تنظیمات لغو شود، این تنظیم لغو می شود',
+ 'notification-from-mention' => 'دریافت @ اطلاعیه اطلاعیه از',
+ 'notification-from-mention-help' => 'شما فقط اعلان هایmetion را از سیستم، کارکنان و گروه های زیر دریافت خواهید کرد. اگر غیرفعال کردن اعلانها این تنظیمات لغو شود، این تنظیم لغو می شود',
+ 'notification-from-request' => 'دریافت اطلاعیه های درخواست از',
+ 'notification-from-request-help' => 'شما فقط اعلان درخواست را از سیستم، کارکنان و گروه های زیر دریافت خواهید کرد. اگر غیرفعال کردن اعلانها این تنظیمات لغو شود، این تنظیم لغو می شود',
+ 'notifications' => 'اطلاعیه',
+ 'offline' => 'کاربر آفلاین است!',
+ 'online' => 'کاربر آنلاین است!',
+ 'options' => 'گزینه ها',
+ 'other-help' => 'کنترل اشتراکگذاری آمار و اطلاعات دیگر را با گروههایی که مجاز به دسترسی به نمایه شما هستند کنترل کنید. اگر هیچ گروهی اجازه دسترسی به آمار و اطلاعات دیگر خود و یا رفتن به خصوصی را ندارید، این تنظیمات لغو می شوند',
+ 'other-privacy' => 'تنظیمات دیگر',
+ 'other-privacy-online' => 'اجازه دهید کاربران شما را در بلوک کاربران آنلاین ببینند',
+ 'passkey' => 'PID',
+ 'passkey-warning' => 'PID مانند گذرواژه شماست، شما باید آن را امن نگه دارید!',
+ 'pending-achievements' => 'دستاوردهای در انتظار',
+ 'per-torrent' => 'در تورنت',
+ 'posts' => 'پست ها',
+ 'posts-posted' => 'نوشته های انجمن',
+ 'privacy' => 'حریم خصوصی',
+ 'privacy-settings' => 'تنظیمات حریم خصوصی',
+ 'private-info' => 'اطلاعات خصوصی',
+ 'private-forum-profile' => 'توجه: این کاربران موضوع و تاریخ ارسال شده است به خصوصی!',
+ 'private-profile' => 'توجه: این پروفایل خصوصی شده است!',
+ 'profile' => 'مشخصات',
+ 'profile-desc' => 'کاربر: مشخصات کاربر ثبت نام شده در: عنوان',
+ 'profile-privacy' => 'تنظیمات پروفایل',
+ 'profile-privacy-torrent-count' => 'تعداد کل بارگیری، آپلود، دانه و زالو را به اشتراک بگذارید',
+ 'profile-privacy-torrent-ratio' => 'داده های آپلود / دانلود کل خود را با نسبت ضبط شده به اشتراک بگذارید',
+ 'profile-privacy-torrent-seed' => 'زمان بذر و متوسط خود را به اشتراک بگذارید',
+ 'profile-privacy-title' => 'اطلاعات عنوان شخصی خود را به اشتراک بگذارید',
+ 'profile-privacy-about' => 'اطلاعات شخصی خود را درباره من به اشتراک بگذارید',
+ 'profile-privacy-bon-extra' => 'آمار BON خود را به اشتراک بگذارید',
+ 'profile-privacy-comment-extra' => 'آمار نظر خودتان را به اشتراک بگذارید',
+ 'profile-privacy-forum-extra' => 'آمار انجمن خود را به اشتراک بگذارید',
+ 'profile-privacy-request-extra' => 'آمار درخواست خود را به اشتراک بگذارید',
+ 'profile-privacy-torrent-extra' => 'آمار تورنت خود را به اشتراک بگذارید',
+ 'profile-privacy-badge' => 'مدال های کسب شده خود را به اشتراک بگذارید',
+ 'profile-privacy-achievement' => 'دستاوردهای اخیر خود را به اشتراک بگذارید',
+ 'profile-privacy-follower' => 'پیروان اخیر خود را به اشتراک بگذارید',
+ 'profile-privacy-warning' => 'هشدارهای H & R خود را به اشتراک بگذارید',
+ 'profile-privacy-help' => 'کنترل که آمار و قطعات اطلاعات بر روی نمایه شما ظاهر می شود. اگر هیچ گروهی اجازه دسترسی به نمایه خود و یا رفتن به خصوصی را نداشته باشید، این تنظیمات لغو می شوند',
+ 'public-info' => 'اطلاعات عمومی',
+ 'recent-achievements' => 'دستاوردهای اخیر',
+ 'recent-followers' => 'دنبال کنندگان اخیر',
+ 'registration-date' => 'تاریخ ثبت نام',
+ 'report' => 'گزارش',
+ 'request-help' => 'کنترل تقسیم آمار و اطلاعات مرتبط با درخواست خاص با گروههایی که مجاز به دسترسی به نمایه شما هستند. اگر هیچ گروهی اجازه دسترسی به آمار و اطلاعات مرتبط مربوط به درخواست خود را ندهید و یا اگر شما بروید خصوصی، این تنظیمات لغو می شوند',
+ 'request' => 'درخواست',
+ 'requested' => 'درخواست شده',
+ 'requests' => 'درخواست ها',
+ 'request-comments' => 'درخواست نظرات ساخته شده',
+ 'request-notification' => 'تنظیمات اعلان درخواست',
+ 'request-notification-bounty' => 'دریافت یک اطلاع رسانی زمانی که تورنت درخواست شده فریب جدید را دریافت می کند',
+ 'request-notification-comment' => 'دریافت یک اعلان زمانی که تورنت درخواست شده می تواند یک نظر جدید',
+ 'request-notification-fill' => 'دریافت یک اعلان زمانی که تورنت درخواست شده پر می شود',
+ 'request-notification-fill-approve' => 'دریافت یک اعلان زمانی که پرینت درخواست شده مورد تایید قرار می گیرد',
+ 'request-notification-fill-reject' => 'دریافت یک اعلان زمانی که درخواست پررنگ درخواست شده رد شود',
+ 'request-notification-claim' => 'دریافت یک اعلان زمانی که تورنت درخواست شده ادعا شود',
+ 'request-notification-unclaim' => 'دریافت یک اعلان زمانی که یک تورنت درخواست شده بی پاسخ بماند',
+ 'request-notification-help' => 'کنترل اعلان های مربوط به فعالیت های درخواستی ارسال می شود. این تنظیمات لغو می شود، اگر هیچ گروهی اجازه ارسال اعلان های مربوط به فعالیت های درخواست را نمی دهد و یا غیر فعال کردن اعلان ها',
+ 'request-privacy' => 'تنظیمات درخواست',
+ 'request-privacy-requested' => 'اجازه دهید کاربران برای مشاهده لیستی از درخواستهایی که شما انجام داده اید',
+ 'reset-passkey' => 'کلید عبور مجدد (PID)',
+ 'reset-passkey-help' => 'شما باید پس از بازنشانی PID دوباره همه ی torrents های خود را دوباره بارگیری کنید / دوباره آپلود کنید',
+ 'reset-rss' => 'تنظیم مجدد کلید RSS (RID)',
+ 'reset-rss-help' => 'بعد از بازنشانی RID مجبور خواهید شد همه RSS های فعال فعال خود را دوباره بارگذاری کنید',
+ 'resurrections' => 'قیامت',
+ 'search' => 'جستجوی سریع توسط نام کاربری',
+ 'security' => 'امنیت',
+ 'security-settings' => 'تنظیمات امنیتی',
+ 'seedboxes' => 'صندوق های پستی',
+ 'seeds' => 'دانه',
+ 'send-invite' => 'ارسال دعوتنامه',
+ 'sender' => 'فرستنده',
+ 'settings' => 'تنظیمات',
+ 'show-passkey' => 'نمایش PID',
+ 'staff-noted' => 'حساب کارکنان ذکر شده',
+ 'statistics' => 'آمار',
+ 'subscription-notification' => 'تنظیمات اعلان اشتراک',
+ 'subscription-notification-forum' => 'دریافت یک اطلاعیه زمانی که یک انجمن مشترک می شود یک موضوع جدید',
+ 'subscription-notification-topic' => 'دریافت یک اعلان زمانی که یک موضوع اشتراکی یک پست جدید دریافت می کند',
+ 'subscription-notification-help' => 'کنترل اعلان های مربوط به اشتراک شما ارسال می شود. این تنظیمات لغو می شود اگر شما اجازه ندارید هیچ گروهی به اطلاعیه های مربوط به اشتراک های خود بفرستید و یا اگر غیر فعال کردن اعلان ها شوید',
+ 'thanks-given' => 'سپاسگزارم',
+ 'thanks-received' => 'تشکر دریافتی',
+ 'tips-given' => 'راهنمایی های داده شده',
+ 'tips-received' => 'نکات دریافت شده',
+ 'title' => 'عنوان',
+ 'top-bankers' => 'بانکداران برتر',
+ 'top-downloaders-data' => 'بهترین دانلود کنندگان (داده ها)',
+ 'top-leechers' => 'بالا لچر',
+ 'top-leechers-count' => 'لوقر بالا (تعداد)',
+ 'top-seeders' => 'کارشناسان برتر',
+ 'top-seeders-count' => 'پرورش دهندگان (تعداد)',
+ 'top-seeding-size' => 'بذر بالا (اندازه)',
+ 'top-seedtime' => 'بالا بیدم',
+ 'top-uploaders-data' => 'آپلود کننده بالا (داده ها)',
+ 'top-uploaders-count' => 'آپلود بالا (تعداد)',
+ 'topics' => 'موضوعات',
+ 'topics-started' => 'شروع موضوع انجمن',
+ 'torrent-comments' => 'نظرات تورنت ساخته شده',
+ 'torrent-help' => 'کنترل به اشتراک گذاری آمار و اطلاعات مرتبط با تورنت خاص با گروههایی که مجاز به دسترسی به نمایه شما هستند. این تنظیمات لغو می شود اگر شما هر گروه اجازه دسترسی به آمار و اطلاعات مربوط به تورنت خود را ندارید و یا اگر شما بروید خصوصی',
+ 'torrent-notification' => 'تنظیمات اعلان تورنت',
+ 'torrent-notification-comment' => 'دریافت یک اعلان زمانی که یک تورنت آپلود می شود یک نظر جدید است',
+ 'torrent-notification-thank' => 'دریافت یک اعلان هنگامی که یک تورنت آپلود می شود یک تشکر جدید',
+ 'torrent-notification-tip' => 'دریافت یک اعلان زمانی که تورنت آپلود می شود نوک جدید',
+ 'torrent-notification-help' => 'کنترل اعلان ها مربوط به فعالیت های تورنت است. این تنظیمات لغو می شود، اگر هیچ گروهی اجازه ارسال اعلان های مربوط به فعالیت های تورنت را نمی دهد و یا غیر فعال کردن اعلان ها',
+ 'torrent-privacy' => 'تنظیمات تورنت',
+ 'torrent-privacy-download' => 'اجازه دهید کاربران برای مشاهده لیستی از تورنتهایی که شما دریافت کرده اید',
+ 'torrent-privacy-upload' => 'اجازه دهید کاربران برای مشاهده لیستی از تورنتهایی که شما آپلود کرده اید',
+ 'torrent-privacy-peer' => 'اجازه دهید که کاربران شما را در جدول تاریخچه ی بازی Torrent ببینید',
+ 'torrents' => 'تورنت ها',
+ 'torrents-history' => 'تاریخچه تورنت ها',
+ 'total-download' => 'دانلود کل',
+ 'total-downloads' => 'تعداد کل دریافت ها',
+ 'total-leeching' => 'کل بوسه',
+ 'total-seeding' => 'مجموع بذر',
+ 'total-seedtime' => 'طول عمر کامل',
+ 'total-upload' => 'مجموع آپلود',
+ 'total-uploads' => 'مجموع آپلود ها',
+ 'unban' => 'کاربر Unban',
+ 'unfollow' => 'لغو شدن',
+ 'unlocked' => 'قفل شده است',
+ 'unlocked-achievements' => 'دستاوردهای قفل شده',
+ 'unsatisfieds' => 'ناراضی نیستم',
+ 'upload-bon' => 'آپلود از BON فروشگاه اضافه شده است',
+ 'upload-recorded' => 'آپلود ضبط شده',
+ 'upload-true' => 'آپلود واقعی',
+ 'uploads' => 'آپلود',
+ 'uploads-table' => 'جدول آپلود',
+ 'user' => 'کاربر',
+ 'user-id' => 'شناسه کاربر',
+ 'username-seedbox' => 'نام کاربری Seedbox',
+ 'visible-to-achievement' => 'دستاوردها قابل مشاهده است',
+ 'visible-to-achievement-help' => 'دستاوردهای شما فقط برای کارکنان و گروه های زیر قابل مشاهده خواهد بود. اگر شما بروید خصوصی، این تنظیمات لغو می شوند',
+ 'visible-to-follower' => 'دنبال کنندگان قابل مشاهده به',
+ 'visible-to-follower-help' => 'پیروان شما فقط برای کارکنان و گروه های زیر قابل مشاهده خواهند بود. اگر شما بروید خصوصی، این تنظیمات لغو می شوند',
+ 'visible-to-forum' => 'اطلاعات انجمن قابل مشاهده است',
+ 'visible-to-forum-help' => 'اطلاعات انجمن شما فقط برای کارکنان و گروه های زیر قابل مشاهده خواهد بود. اگر شما بروید خصوصی، این تنظیمات لغو می شوند',
+ 'visible-to-other' => 'دیگر قابل مشاهده به',
+ 'visible-to-other-help' => 'سایر اطلاعات مربوط به حساب شما فقط برای کارکنان و گروه های زیر قابل مشاهده است. این تنظیمات لغو می شود اگر شما بروید خصوصی یا اگر شما بروید پنهان',
+ 'visible-to-profile' => 'نمایه قابل مشاهده به',
+ 'visible-to-profile-help' => 'مشخصات شما فقط برای کارکنان و گروه های زیر قابل مشاهده خواهد بود. اگر شما بروید خصوصی، این تنظیمات لغو می شوند',
+ 'visible-to-request' => 'درخواست اطلاعات قابل مشاهده به',
+ 'visible-to-request-help' => 'اطلاعات درخواست شما فقط برای کارکنان و گروه های زیر قابل مشاهده خواهد بود. اگر شما بروید خصوصی، این تنظیمات لغو می شوند',
+ 'visible-to-torrent' => 'اطلاعات تورنت قابل مشاهده به',
+ 'visible-to-torrent-help' => 'اطلاعات تورنت شما فقط برای کارکنان و گروه های زیر قابل مشاهده خواهد بود. این تنظیمات لغو می شود اگر شما بروید خصوصی یا اگر شما بروید پنهان',
+ 'warned-on' => 'اخطار',
+ 'warning' => 'اخطار',
+ 'warning-log' => 'ورود هشدار',
+ 'wishlist' => 'لیست علاقه مندی ها',
];
diff --git a/lang/fi/articles.php b/lang/fi/articles.php
index c2f75168f..0ab14cf75 100644
--- a/lang/fi/articles.php
+++ b/lang/fi/articles.php
@@ -12,8 +12,8 @@
*/
return [
- 'articles' => 'Artikkelit',
+ 'articles' => 'Artikkelit',
'meta-articles' => 'Artikkelit ja uutiset seuraajasta ja yhteisöstä',
- 'published-at' => 'Julkaistu',
- 'read-more' => 'Lue lisää',
+ 'published-at' => 'Julkaistu',
+ 'read-more' => 'Lue lisää',
];
diff --git a/lang/fi/auth.php b/lang/fi/auth.php
index e4c48dabe..7ff4710ff 100644
--- a/lang/fi/auth.php
+++ b/lang/fi/auth.php
@@ -23,6 +23,6 @@ return [
|
*/
- 'failed' => 'Kirjautuminen epäonnistui.',
+ 'failed' => 'Kirjautuminen epäonnistui.',
'throttle' => 'Liian monta kirjautumisyritystä. Yritä uudelleen :seconds sekunnin kuluttua.',
];
diff --git a/lang/fi/backup.php b/lang/fi/backup.php
index 14dabd880..d15feff81 100644
--- a/lang/fi/backup.php
+++ b/lang/fi/backup.php
@@ -12,32 +12,32 @@
*/
return [
- 'actions' => 'Toimet',
- 'backup' => 'Varmuuskopioida',
- 'backup_doesnt_exist' => 'Varmuuskopiointitiedostoa ei ole.',
- 'create_a_new_backup' => 'Luo täysi varmuuskopio',
- 'create_a_new_files_backup' => 'Luo tiedostojen varmuuskopio',
- 'create_a_new_db_backup' => 'Luo tietokannan varmuuskopio',
- 'create_confirmation_message' => 'Lisää sivu uudelleen 3 sekunnin kuluessa.',
- 'create_confirmation_title' => 'Varmuuskopiointi suoritettu',
- 'create_error_message' => 'Varmuuskopiointitiedostoa ei voitu luoda.',
- 'create_error_title' => 'Varmuuskopiointivirhe',
- 'create_warning_message' => 'Varmuuskopiointia ei ehkä ole luotu. Tarkista lokitiedostot.',
- 'create_warning_title' => 'Tuntematon virhe',
- 'date' => 'Treffi',
- 'delete' => 'Poistaa',
- 'delete_cancel_message' => 'Varmuuskopiointitiedostoa ei ole poistettu.',
- 'delete_cancel_title' => 'Se on okei',
- 'delete_confirm' => 'Haluatko varmasti poistaa tämän varmuuskopiotiedoston?',
- 'delete_confirmation_message' => 'Varmuuskopiointitiedosto poistettiin.',
- 'delete_confirmation_title' => 'Tehty',
- 'delete_error_message' => 'Varmuuskopiointitiedostoa ei ole poistettu.',
- 'delete_error_title' => 'Virhe',
- 'download' => 'ladata',
- 'existing_backups' => 'Olemassa olevat varmuuskopiot',
- 'file_size' => 'Tiedoston koko',
- 'location' => 'Sijainti',
- 'manager' => 'johtaja',
- 'no_disks_configured' => 'Konfiguroinnissa / backup.php ei ole määritetty varmuuskopioita',
+ 'actions' => 'Toimet',
+ 'backup' => 'Varmuuskopioida',
+ 'backup_doesnt_exist' => 'Varmuuskopiointitiedostoa ei ole.',
+ 'create_a_new_backup' => 'Luo täysi varmuuskopio',
+ 'create_a_new_files_backup' => 'Luo tiedostojen varmuuskopio',
+ 'create_a_new_db_backup' => 'Luo tietokannan varmuuskopio',
+ 'create_confirmation_message' => 'Lisää sivu uudelleen 3 sekunnin kuluessa.',
+ 'create_confirmation_title' => 'Varmuuskopiointi suoritettu',
+ 'create_error_message' => 'Varmuuskopiointitiedostoa ei voitu luoda.',
+ 'create_error_title' => 'Varmuuskopiointivirhe',
+ 'create_warning_message' => 'Varmuuskopiointia ei ehkä ole luotu. Tarkista lokitiedostot.',
+ 'create_warning_title' => 'Tuntematon virhe',
+ 'date' => 'Treffi',
+ 'delete' => 'Poistaa',
+ 'delete_cancel_message' => 'Varmuuskopiointitiedostoa ei ole poistettu.',
+ 'delete_cancel_title' => 'Se on okei',
+ 'delete_confirm' => 'Haluatko varmasti poistaa tämän varmuuskopiotiedoston?',
+ 'delete_confirmation_message' => 'Varmuuskopiointitiedosto poistettiin.',
+ 'delete_confirmation_title' => 'Tehty',
+ 'delete_error_message' => 'Varmuuskopiointitiedostoa ei ole poistettu.',
+ 'delete_error_title' => 'Virhe',
+ 'download' => 'ladata',
+ 'existing_backups' => 'Olemassa olevat varmuuskopiot',
+ 'file_size' => 'Tiedoston koko',
+ 'location' => 'Sijainti',
+ 'manager' => 'johtaja',
+ 'no_disks_configured' => 'Konfiguroinnissa / backup.php ei ole määritetty varmuuskopioita',
'only_local_downloads_supported' => 'Vain paikallisten tiedostojärjestelmien lataukset tuetaan.',
];
diff --git a/lang/fi/blocks.php b/lang/fi/blocks.php
index 3abe3db25..796f0ee35 100644
--- a/lang/fi/blocks.php
+++ b/lang/fi/blocks.php
@@ -12,19 +12,19 @@
*/
return [
- 'chatbox' => 'Chat-ruutu',
- 'click' => 'Klikkaus',
- 'to-enable-editor' => 'sallia editori',
- 'featured-by' => 'Mukaan',
- 'featured-torrents' => 'Esitetyt torrentit',
+ 'chatbox' => 'Chat-ruutu',
+ 'click' => 'Klikkaus',
+ 'to-enable-editor' => 'sallia editori',
+ 'featured-by' => 'Mukaan',
+ 'featured-torrents' => 'Esitetyt torrentit',
'featured-torrents-intro' => 'Hanki ne, kun voit!',
- 'featured-until' => 'Tämä näkyy torrentilla kunnes',
- 'top-torrents' => 'Suosituimmat torrentit',
- 'latest-posts' => 'Uusimmat viestit',
- 'latest-topics' => 'Viimeisimmät aiheet',
- 'active-in-last' => 'Viimeksi aktiivinen',
- 'users-online' => 'Käyttäjät Online',
- 'check-news' => 'Uutiset (tarkista päivittäin)',
- 'new-news' => 'Uusia uutisia',
- 'new-torrents' => 'Uudet torrentit',
+ 'featured-until' => 'Tämä näkyy torrentilla kunnes',
+ 'top-torrents' => 'Suosituimmat torrentit',
+ 'latest-posts' => 'Uusimmat viestit',
+ 'latest-topics' => 'Viimeisimmät aiheet',
+ 'active-in-last' => 'Viimeksi aktiivinen',
+ 'users-online' => 'Käyttäjät Online',
+ 'check-news' => 'Uutiset (tarkista päivittäin)',
+ 'new-news' => 'Uusia uutisia',
+ 'new-torrents' => 'Uudet torrentit',
];
diff --git a/lang/fi/bon.php b/lang/fi/bon.php
index e8c9573a4..89f6f47af 100644
--- a/lang/fi/bon.php
+++ b/lang/fi/bon.php
@@ -12,44 +12,44 @@
*/
return [
- 'activated' => 'aktivoitu',
- 'active' => 'Aktivoitu!',
- 'amount' => 'Määrä',
- 'bon' => 'BON',
- 'bonus' => 'Bonus',
- 'date' => 'Treffi',
- 'earning' => 'ansaita',
- 'earning-rate' => 'Tällä ansaintajaksolla ansaitset seuraavan ajanjakson.',
- 'earnings' => 'tulot',
- 'exchange' => 'Vaihto',
- 'exchange-warning' => 'Vaihdot ovat lopullisia, tarkista valintasi ennen vaihtoa.',
- 'extended-stats' => 'Laajennettu tilastot',
- 'gift' => 'Lahja',
- 'gift-bonus' => 'Lahjabonuspisteet',
- 'gift-to' => 'Lahjabonuspisteet',
- 'gifts' => 'Lahjat',
- 'item' => 'erä',
- 'no-refund' => 'EI TAKAISIA!',
- 'per-day' => 'Pisteitä päivässä',
- 'per-hour' => 'Pisteet per tunti',
- 'per-minute' => 'Pisteet minuutissa',
- 'per-month' => 'Pisteet kuukaudessa',
- 'per-second' => 'Pisteet per sekunti',
- 'per-week' => 'Pisteet per viikko',
- 'per-year' => 'Pisteitä vuodessa',
- 'points' => 'pistettä',
- 'receiver' => 'Vastaanotin',
- 'review-seeds' => 'Tarkista kaikki siemenet',
- 'send-gift' => 'Lähetä lahja',
- 'sender' => 'Lähettäjä',
- 'store' => 'myymälä',
- 'tips' => 'vinkkejä',
- 'total' => 'kokonaistulot',
- 'total-gifts' => 'Yhteensä BON-lahjoissa',
- 'total-tips' => 'Yhteensä BON-vinkkejä',
+ 'activated' => 'aktivoitu',
+ 'active' => 'Aktivoitu!',
+ 'amount' => 'Määrä',
+ 'bon' => 'BON',
+ 'bonus' => 'Bonus',
+ 'date' => 'Treffi',
+ 'earning' => 'ansaita',
+ 'earning-rate' => 'Tällä ansaintajaksolla ansaitset seuraavan ajanjakson.',
+ 'earnings' => 'tulot',
+ 'exchange' => 'Vaihto',
+ 'exchange-warning' => 'Vaihdot ovat lopullisia, tarkista valintasi ennen vaihtoa.',
+ 'extended-stats' => 'Laajennettu tilastot',
+ 'gift' => 'Lahja',
+ 'gift-bonus' => 'Lahjabonuspisteet',
+ 'gift-to' => 'Lahjabonuspisteet',
+ 'gifts' => 'Lahjat',
+ 'item' => 'erä',
+ 'no-refund' => 'EI TAKAISIA!',
+ 'per-day' => 'Pisteitä päivässä',
+ 'per-hour' => 'Pisteet per tunti',
+ 'per-minute' => 'Pisteet minuutissa',
+ 'per-month' => 'Pisteet kuukaudessa',
+ 'per-second' => 'Pisteet per sekunti',
+ 'per-week' => 'Pisteet per viikko',
+ 'per-year' => 'Pisteitä vuodessa',
+ 'points' => 'pistettä',
+ 'receiver' => 'Vastaanotin',
+ 'review-seeds' => 'Tarkista kaikki siemenet',
+ 'send-gift' => 'Lähetä lahja',
+ 'sender' => 'Lähettäjä',
+ 'store' => 'myymälä',
+ 'tips' => 'vinkkejä',
+ 'total' => 'kokonaistulot',
+ 'total-gifts' => 'Yhteensä BON-lahjoissa',
+ 'total-tips' => 'Yhteensä BON-vinkkejä',
'you-have-received-gifts' => 'Sinä olet saanut',
- 'you-have-sent-gifts' => 'Olet lähettänyt',
- 'you-have-received-tips' => 'Sinä olet saanut',
- 'you-have-sent-tips' => 'Olet lähettänyt',
- 'your-points' => 'Pisteesi',
+ 'you-have-sent-gifts' => 'Olet lähettänyt',
+ 'you-have-received-tips' => 'Sinä olet saanut',
+ 'you-have-sent-tips' => 'Olet lähettänyt',
+ 'your-points' => 'Pisteesi',
];
diff --git a/lang/fi/bot.php b/lang/fi/bot.php
index c0c3cafca..f5db6cc3d 100644
--- a/lang/fi/bot.php
+++ b/lang/fi/bot.php
@@ -12,15 +12,15 @@
*/
return [
- 'about' => 'Noin',
- 'bot' => 'bot',
- 'bots' => 'botit',
- 'color' => 'Väri',
- 'command' => 'Komento',
- 'edit-bot' => 'Muokkaa Bot',
+ 'about' => 'Noin',
+ 'bot' => 'bot',
+ 'bots' => 'botit',
+ 'color' => 'Väri',
+ 'command' => 'Komento',
+ 'edit-bot' => 'Muokkaa Bot',
'emoji-code' => 'Emoji-koodi',
- 'help' => 'auta',
- 'icon' => 'ikoni',
- 'info' => 'Tiedot',
- 'name' => 'Nimi',
+ 'help' => 'auta',
+ 'icon' => 'ikoni',
+ 'info' => 'Tiedot',
+ 'name' => 'Nimi',
];
diff --git a/lang/fi/bug.php b/lang/fi/bug.php
index 4be4d58ad..444aec013 100644
--- a/lang/fi/bug.php
+++ b/lang/fi/bug.php
@@ -12,15 +12,15 @@
*/
return [
- 'bug-report' => 'Virhe raportti',
+ 'bug-report' => 'Virhe raportti',
'bug-report-description' => 'Ilmoita sivuston virheestä',
- 'enter-description' => 'Kuvaile ongelmaa mahdollisimman parhaalla mahdollisella tavalla',
- 'enter-email' => 'Ole hyvä ja syötä sähköpostiosoitteesi',
- 'enter-title' => 'Valitse oikea nimi',
- 'enter-username' => 'Anna käyttäjätunnuksesi',
- 'high' => 'Korkea',
- 'low' => 'Matala',
- 'priority' => 'prioriteetti',
- 'priority-description' => 'Valitse vain erittäin korkea, jos vika on ongelma sivuston käytössä.',
- 'very-high' => 'Erittäin korkea',
+ 'enter-description' => 'Kuvaile ongelmaa mahdollisimman parhaalla mahdollisella tavalla',
+ 'enter-email' => 'Ole hyvä ja syötä sähköpostiosoitteesi',
+ 'enter-title' => 'Valitse oikea nimi',
+ 'enter-username' => 'Anna käyttäjätunnuksesi',
+ 'high' => 'Korkea',
+ 'low' => 'Matala',
+ 'priority' => 'prioriteetti',
+ 'priority-description' => 'Valitse vain erittäin korkea, jos vika on ongelma sivuston käytössä.',
+ 'very-high' => 'Erittäin korkea',
];
diff --git a/lang/fi/common.php b/lang/fi/common.php
index 730058db2..25609ecd2 100644
--- a/lang/fi/common.php
+++ b/lang/fi/common.php
@@ -12,179 +12,179 @@
*/
return [
- 'a-an-art' => '',
- 'about' => 'Meistä',
- 'account' => 'Tili',
- 'achievement-title' => 'Mahtava',
+ 'a-an-art' => '',
+ 'about' => 'Meistä',
+ 'account' => 'Tili',
+ 'achievement-title' => 'Mahtava',
'achievement-unlocked' => 'Te avasitte ": name" saavutuksen',
- 'active' => 'aktiivinen',
- 'active-warning' => 'Aktiivinen varoitus',
- 'add' => 'Lisätä',
- 'added' => 'lisätty',
- 'amount' => 'Määrä',
- 'anonymous' => 'anonyymi',
- 'author' => 'kirjailija',
- 'balance' => 'Saldo',
- 'blacklist' => 'Asiakkaan musta lista',
- 'buffer' => 'Puskuri',
- 'bug' => 'Ilmoita virheestä',
- 'but' => 'Mutta',
- 'cancel' => 'Peruuttaa',
- 'category' => 'Kategoria',
- 'categories' => 'Luokat',
- 'close' => 'kiinni',
- 'comment' => 'Kommentti',
- 'comments' => 'Kommentit',
- 'community' => 'Yhteisö',
- 'contact' => 'Ottaa yhteyttä',
- 'contact-desc' => 'Tämä yhteydenottopyyntö lähetetään omistajalle ja palaa sinuun mahdollisimman pian',
- 'contact-header' => 'Hei',
- 'create' => 'Luoda',
- 'created_at' => 'Luotu At',
- 'day' => 'Päivä',
- 'delete' => 'Poistaa',
- 'delete-your-comment' => 'Poista kommenttisi',
- 'description' => 'Kuvaus',
- 'direction' => 'Suunta',
- 'disable' => 'Poista käytöstä',
- 'doubleup_activated' => 'Global Double upload -tila on käytössä',
- 'download' => 'ladata',
- 'edit' => 'Muokata',
- 'edit-your-comment' => 'Muokkaa kommenttia',
- 'email' => 'Sähköposti',
- 'email-blacklist' => 'Sähköposti musta lista',
- 'email-whitelist' => 'Sähköpostilista',
+ 'active' => 'aktiivinen',
+ 'active-warning' => 'Aktiivinen varoitus',
+ 'add' => 'Lisätä',
+ 'added' => 'lisätty',
+ 'amount' => 'Määrä',
+ 'anonymous' => 'anonyymi',
+ 'author' => 'kirjailija',
+ 'balance' => 'Saldo',
+ 'blacklist' => 'Asiakkaan musta lista',
+ 'buffer' => 'Puskuri',
+ 'bug' => 'Ilmoita virheestä',
+ 'but' => 'Mutta',
+ 'cancel' => 'Peruuttaa',
+ 'category' => 'Kategoria',
+ 'categories' => 'Luokat',
+ 'close' => 'kiinni',
+ 'comment' => 'Kommentti',
+ 'comments' => 'Kommentit',
+ 'community' => 'Yhteisö',
+ 'contact' => 'Ottaa yhteyttä',
+ 'contact-desc' => 'Tämä yhteydenottopyyntö lähetetään omistajalle ja palaa sinuun mahdollisimman pian',
+ 'contact-header' => 'Hei',
+ 'create' => 'Luoda',
+ 'created_at' => 'Luotu At',
+ 'day' => 'Päivä',
+ 'delete' => 'Poistaa',
+ 'delete-your-comment' => 'Poista kommenttisi',
+ 'description' => 'Kuvaus',
+ 'direction' => 'Suunta',
+ 'disable' => 'Poista käytöstä',
+ 'doubleup_activated' => 'Global Double upload -tila on käytössä',
+ 'download' => 'ladata',
+ 'edit' => 'Muokata',
+ 'edit-your-comment' => 'Muokkaa kommenttia',
+ 'email' => 'Sähköposti',
+ 'email-blacklist' => 'Sähköposti musta lista',
+ 'email-whitelist' => 'Sähköpostilista',
'email-list-notactive' => 'Sähköpostilista / mustan listan järjestelmä ei ole aktivoitu',
- 'enable' => 'ota käyttöön',
- 'enter' => 'Tulla sisään',
- 'error' => 'Virhe',
- 'everyday' => 'Joka päivä',
- 'expired' => 'Vanhentunut',
- 'extra' => 'ylimääräinen',
- 'extra-stats' => 'Extra-tilastot',
- 'faq' => 'Ohje',
- 'files' => 'Tiedostot',
- 'fl_token' => 'Freeleechin token',
- 'fl_tokens' => 'Freeleechin tokenit',
- 'for' => 'varten',
- 'forum' => 'foorumi',
- 'free' => 'Vapaa',
- 'freeleech_activated' => 'Maailmanlaajuinen Freeleech-tila on käytössä',
- 'global' => 'maailmanlaajuinen',
- 'group' => 'Ryhmä',
- 'groups' => 'ryhmät',
- 'hidden' => 'kätketty',
- 'high-speeds' => 'Suuret nopeudet',
- 'home' => 'Koti',
- 'hot' => 'Kuuma!',
- 'hour' => 'Tunnin',
- 'huge' => 'Valtava',
- 'info' => 'Tiedot',
- 'internal' => 'sisäinen',
- 'ip' => 'IP',
- 'is-allowed' => 'on sallittu',
- 'large' => 'Suuri',
- 'latest' => 'Uusin',
- 'latest-posts' => 'Uusimmat viestit',
- 'latest-topics' => 'Viimeisimmät aiheet',
- 'legal' => 'oikeudellinen',
- 'legend' => 'Legenda',
- 'lists' => 'Listat',
- 'lock-account' => 'Lukitse tili',
- 'logout' => 'Kirjautua ulos',
- 'members' => 'Jäsenet',
- 'message' => 'Viesti',
- 'minute' => 'minuutti',
- 'moderated-by' => 'Moderoi',
- 'moderation' => 'maltillisuus',
- 'moderation-approve' => 'Hyväksyä',
- 'moderation-postpone' => 'Lykätä',
- 'moderation-reject' => 'Hylätä',
- 'month' => 'Kuukausi',
- 'months' => 'Kuukaudet',
- 'my' => 'Minun',
- 'name' => 'Nimi',
- 'navigation' => 'suunnistus',
- 'new' => 'Uusi!',
- 'new-adj' => 'Uusi',
- 'news' => 'Uutiset',
- 'next' => 'Seuraava',
- 'no' => 'Ei',
- 'no-comments' => 'Ei vielä kommentteja',
- 'no-result' => 'Tietokannassa ei ole tuloksia kyselyyn',
- 'notifications' => 'ilmoitukset',
- 'older-than' => 'Vanhempia kuin',
- 'oldest' => 'Vanhin',
- 'openreg_activated' => 'Avoin rekisteröinti aktivoitu',
- 'order-by' => 'Tilaa',
- 'other' => 'muut',
- 'pages' => 'sivut',
- 'password' => 'Salasana',
- 'patron' => 'Ryhdy suojelijaksi',
- 'pending-torrents' => 'Odottavat torrentit',
- 'personal' => 'henkilökohtainen',
- 'plural-suffix' => 's',
- 'port' => 'portti',
- 'position' => 'asento',
- 'posts' => 'Viestejä',
- 'powered-by' => 'Powered by UNIT3D',
- 'preview' => 'esikatselu',
- 'previous' => 'Edellinen',
- 'progress' => 'edistyminen',
- 'publish' => 'Julkaista',
- 'quantity' => 'Määrä',
- 'quick-search' => 'Pikahaku',
- 'ratio' => 'Suhde',
- 'reason' => 'Syy',
- 'remove' => 'Poistaa',
- 'report' => 'raportti',
- 'resend' => 'Uudelleen lähettää',
- 'reporter' => 'Reportteri',
- 'required' => 'Vaaditaan',
- 'results' => 'tulokset',
- 'rss-system' => 'RSS-järjestelmä',
- 'rules' => 'säännöt',
- 'save' => 'Tallentaa',
- 'search' => 'Hae',
- 'search-results' => 'Hakutulokset',
- 'search-results-desc' => 'Katso alla olevat tulokset',
- 'second' => 'Toinen',
- 'select' => 'valita',
- 'sort' => 'Järjestellä',
- 'special' => 'erityinen',
- 'staff' => 'henkilöstö',
- 'staff-tools' => 'Henkilökunnan työkalut',
- 'stats' => 'tilastot',
- 'status' => 'Status',
- 'sticked' => 'pitäytyi',
- 'submit' => 'Lähetä',
- 'subscriptions' => 'Tilaukset',
- 'teams' => 'joukkueet',
- 'terms' => 'Käyttöehdot',
- 'times' => 'Ajat',
- 'title' => 'otsikko',
- 'top-bountied' => 'Top Bountied',
- 'topics' => 'aiheista',
- 'tracker-codes' => 'Tracker-koodit',
- 'type' => 'Tyyppi',
- 'type-verb' => 'Tyyppi',
- 'types' => 'Tyypit',
- 'genre' => 'laji',
- 'genres' => 'tyylilajit',
- 'action' => 'Toiminta',
- 'actions' => 'Toimet',
- 'unknown' => 'Tuntematon',
+ 'enable' => 'ota käyttöön',
+ 'enter' => 'Tulla sisään',
+ 'error' => 'Virhe',
+ 'everyday' => 'Joka päivä',
+ 'expired' => 'Vanhentunut',
+ 'extra' => 'ylimääräinen',
+ 'extra-stats' => 'Extra-tilastot',
+ 'faq' => 'Ohje',
+ 'files' => 'Tiedostot',
+ 'fl_token' => 'Freeleechin token',
+ 'fl_tokens' => 'Freeleechin tokenit',
+ 'for' => 'varten',
+ 'forum' => 'foorumi',
+ 'free' => 'Vapaa',
+ 'freeleech_activated' => 'Maailmanlaajuinen Freeleech-tila on käytössä',
+ 'global' => 'maailmanlaajuinen',
+ 'group' => 'Ryhmä',
+ 'groups' => 'ryhmät',
+ 'hidden' => 'kätketty',
+ 'high-speeds' => 'Suuret nopeudet',
+ 'home' => 'Koti',
+ 'hot' => 'Kuuma!',
+ 'hour' => 'Tunnin',
+ 'huge' => 'Valtava',
+ 'info' => 'Tiedot',
+ 'internal' => 'sisäinen',
+ 'ip' => 'IP',
+ 'is-allowed' => 'on sallittu',
+ 'large' => 'Suuri',
+ 'latest' => 'Uusin',
+ 'latest-posts' => 'Uusimmat viestit',
+ 'latest-topics' => 'Viimeisimmät aiheet',
+ 'legal' => 'oikeudellinen',
+ 'legend' => 'Legenda',
+ 'lists' => 'Listat',
+ 'lock-account' => 'Lukitse tili',
+ 'logout' => 'Kirjautua ulos',
+ 'members' => 'Jäsenet',
+ 'message' => 'Viesti',
+ 'minute' => 'minuutti',
+ 'moderated-by' => 'Moderoi',
+ 'moderation' => 'maltillisuus',
+ 'moderation-approve' => 'Hyväksyä',
+ 'moderation-postpone' => 'Lykätä',
+ 'moderation-reject' => 'Hylätä',
+ 'month' => 'Kuukausi',
+ 'months' => 'Kuukaudet',
+ 'my' => 'Minun',
+ 'name' => 'Nimi',
+ 'navigation' => 'suunnistus',
+ 'new' => 'Uusi!',
+ 'new-adj' => 'Uusi',
+ 'news' => 'Uutiset',
+ 'next' => 'Seuraava',
+ 'no' => 'Ei',
+ 'no-comments' => 'Ei vielä kommentteja',
+ 'no-result' => 'Tietokannassa ei ole tuloksia kyselyyn',
+ 'notifications' => 'ilmoitukset',
+ 'older-than' => 'Vanhempia kuin',
+ 'oldest' => 'Vanhin',
+ 'openreg_activated' => 'Avoin rekisteröinti aktivoitu',
+ 'order-by' => 'Tilaa',
+ 'other' => 'muut',
+ 'pages' => 'sivut',
+ 'password' => 'Salasana',
+ 'patron' => 'Ryhdy suojelijaksi',
+ 'pending-torrents' => 'Odottavat torrentit',
+ 'personal' => 'henkilökohtainen',
+ 'plural-suffix' => 's',
+ 'port' => 'portti',
+ 'position' => 'asento',
+ 'posts' => 'Viestejä',
+ 'powered-by' => 'Powered by UNIT3D',
+ 'preview' => 'esikatselu',
+ 'previous' => 'Edellinen',
+ 'progress' => 'edistyminen',
+ 'publish' => 'Julkaista',
+ 'quantity' => 'Määrä',
+ 'quick-search' => 'Pikahaku',
+ 'ratio' => 'Suhde',
+ 'reason' => 'Syy',
+ 'remove' => 'Poistaa',
+ 'report' => 'raportti',
+ 'resend' => 'Uudelleen lähettää',
+ 'reporter' => 'Reportteri',
+ 'required' => 'Vaaditaan',
+ 'results' => 'tulokset',
+ 'rss-system' => 'RSS-järjestelmä',
+ 'rules' => 'säännöt',
+ 'save' => 'Tallentaa',
+ 'search' => 'Hae',
+ 'search-results' => 'Hakutulokset',
+ 'search-results-desc' => 'Katso alla olevat tulokset',
+ 'second' => 'Toinen',
+ 'select' => 'valita',
+ 'sort' => 'Järjestellä',
+ 'special' => 'erityinen',
+ 'staff' => 'henkilöstö',
+ 'staff-tools' => 'Henkilökunnan työkalut',
+ 'stats' => 'tilastot',
+ 'status' => 'Status',
+ 'sticked' => 'pitäytyi',
+ 'submit' => 'Lähetä',
+ 'subscriptions' => 'Tilaukset',
+ 'teams' => 'joukkueet',
+ 'terms' => 'Käyttöehdot',
+ 'times' => 'Ajat',
+ 'title' => 'otsikko',
+ 'top-bountied' => 'Top Bountied',
+ 'topics' => 'aiheista',
+ 'tracker-codes' => 'Tracker-koodit',
+ 'type' => 'Tyyppi',
+ 'type-verb' => 'Tyyppi',
+ 'types' => 'Tyypit',
+ 'genre' => 'laji',
+ 'genres' => 'tyylilajit',
+ 'action' => 'Toiminta',
+ 'actions' => 'Toimet',
+ 'unknown' => 'Tuntematon',
'unlocked-achievement' => 'Avasit: saavutuksen saavutukset',
- 'upload' => 'upload',
- 'upload-guide' => 'Lataa opas',
- 'user' => 'käyttäjä',
- 'username' => 'Käyttäjätunnus',
- 'users' => 'käyttäjät',
- 'view' => 'näkymä',
- 'view-all' => 'Näytä kaikki',
- 'warnings' => 'varoitukset',
- 'year' => 'vuosi',
- 'yes' => 'Joo',
- 'your' => 'teidän',
- 'your-comment' => 'Kommenttisi',
+ 'upload' => 'upload',
+ 'upload-guide' => 'Lataa opas',
+ 'user' => 'käyttäjä',
+ 'username' => 'Käyttäjätunnus',
+ 'users' => 'käyttäjät',
+ 'view' => 'näkymä',
+ 'view-all' => 'Näytä kaikki',
+ 'warnings' => 'varoitukset',
+ 'year' => 'vuosi',
+ 'yes' => 'Joo',
+ 'your' => 'teidän',
+ 'your-comment' => 'Kommenttisi',
];
diff --git a/lang/fi/email.php b/lang/fi/email.php
index 12b0415f7..423b77d38 100644
--- a/lang/fi/email.php
+++ b/lang/fi/email.php
@@ -12,46 +12,46 @@
*/
return [
- 'activate-account' => 'Aktivoi tili',
- 'ban-reason' => 'Syy',
- 'banned-footer' => 'Sitä mitä saat siitä, ettet noudata sääntöjä',
- 'banned-header' => 'Sinulle on annettu porttikielto',
- 'bug-description' => 'Ongelma',
- 'bug-footer' => 'Korjaa se paska',
- 'bug-header' => 'Uusi virheilmoitus',
- 'bug-priority' => 'prioriteetti',
- 'bug-title' => 'Virheen nimi',
- 'contact-header' => 'Uusi yhteystieto osoitteesta',
- 'contact-message' => 'Viesti',
- 'contact-name' => 'Nimi',
+ 'activate-account' => 'Aktivoi tili',
+ 'ban-reason' => 'Syy',
+ 'banned-footer' => 'Sitä mitä saat siitä, ettet noudata sääntöjä',
+ 'banned-header' => 'Sinulle on annettu porttikielto',
+ 'bug-description' => 'Ongelma',
+ 'bug-footer' => 'Korjaa se paska',
+ 'bug-header' => 'Uusi virheilmoitus',
+ 'bug-priority' => 'prioriteetti',
+ 'bug-title' => 'Virheen nimi',
+ 'contact-header' => 'Uusi yhteystieto osoitteesta',
+ 'contact-message' => 'Viesti',
+ 'contact-name' => 'Nimi',
'fail-login-greeting' => 'Tilin kirjautuminen epäonnistui!',
- 'fail-login-line1' => 'Tilillesi havaittiin epäonnistunut kirjautumistunnus.',
- 'fail-login-line2' => 'Tämä pyyntö on peräisin: ip (: host) osoitteesta: time',
- 'fail-login-subject' => 'Kirjautuminen epäonnistui',
- 'footer-link' => 'Jos sinulla on ongelmia napsauttamalla: actionText-painiketta, kopioi ja liitä alla oleva URL-osoite Web-selaimeen:',
- 'invite-header' => 'Kutsu',
- 'invite-invited' => 'Sinut on kutsuttu',
- 'invite-message' => 'Viesti',
- 'invite-signup' => 'Ilmoittaudu nyt',
- 'newreply-header' => 'Aiheessasi on uusi vastaus',
- 'newreply-message' => 'Viesti',
- 'newreply-replied' => 'Vastasi aiheeseen',
- 'newreply-view' => 'Näytä se nyt',
- 'no-email-found' => 'Emme löytäneet tätä sähköpostiosoitetta järjestelmässämme!',
- 'register-code' => 'Voit lopettaa tilin aktivoinnin napsauttamalla alla olevaa painiketta',
- 'register-footer' => 'Jos yllä oleva painike ei toimi, kopioi ja liitä URL-osoite selaimesi osoiteriville',
- 'register-header' => 'Hei! Kiitos, että olet kirjautunut sisään',
- 'report-comment' => 'Kommentti',
- 'report-email' => 'Sähköposti',
- 'report-header' => 'Hei Admin, linkki on raportoitu',
- 'report-link' => 'Linkki',
- 'report-link-hash' => 'Todellinen linkki',
- 'thanks' => 'Kiitos, että käytit',
- 'unban-footer' => 'Tervetuloa takaisin!',
- 'unban-header' => 'Olette olleet unbanned',
- 'unban-reason' => 'Syy',
- 'username-reminder' => 'Olet lähettänyt meille äskettäin pyynnön käyttäjänimeäsi varten sovelluksessamme. Käyttäjätunnuksesi on',
- 'username-sent' => 'Käyttäjätunnuksesi on lähetetty sähköpostiosoitteeseesi!',
- 'disabled-header' => 'Tilisi on poistettu käytöstä',
- 'pruned-header' => 'Tilisi on karsittu',
+ 'fail-login-line1' => 'Tilillesi havaittiin epäonnistunut kirjautumistunnus.',
+ 'fail-login-line2' => 'Tämä pyyntö on peräisin: ip (: host) osoitteesta: time',
+ 'fail-login-subject' => 'Kirjautuminen epäonnistui',
+ 'footer-link' => 'Jos sinulla on ongelmia napsauttamalla: actionText-painiketta, kopioi ja liitä alla oleva URL-osoite Web-selaimeen:',
+ 'invite-header' => 'Kutsu',
+ 'invite-invited' => 'Sinut on kutsuttu',
+ 'invite-message' => 'Viesti',
+ 'invite-signup' => 'Ilmoittaudu nyt',
+ 'newreply-header' => 'Aiheessasi on uusi vastaus',
+ 'newreply-message' => 'Viesti',
+ 'newreply-replied' => 'Vastasi aiheeseen',
+ 'newreply-view' => 'Näytä se nyt',
+ 'no-email-found' => 'Emme löytäneet tätä sähköpostiosoitetta järjestelmässämme!',
+ 'register-code' => 'Voit lopettaa tilin aktivoinnin napsauttamalla alla olevaa painiketta',
+ 'register-footer' => 'Jos yllä oleva painike ei toimi, kopioi ja liitä URL-osoite selaimesi osoiteriville',
+ 'register-header' => 'Hei! Kiitos, että olet kirjautunut sisään',
+ 'report-comment' => 'Kommentti',
+ 'report-email' => 'Sähköposti',
+ 'report-header' => 'Hei Admin, linkki on raportoitu',
+ 'report-link' => 'Linkki',
+ 'report-link-hash' => 'Todellinen linkki',
+ 'thanks' => 'Kiitos, että käytit',
+ 'unban-footer' => 'Tervetuloa takaisin!',
+ 'unban-header' => 'Olette olleet unbanned',
+ 'unban-reason' => 'Syy',
+ 'username-reminder' => 'Olet lähettänyt meille äskettäin pyynnön käyttäjänimeäsi varten sovelluksessamme. Käyttäjätunnuksesi on',
+ 'username-sent' => 'Käyttäjätunnuksesi on lähetetty sähköpostiosoitteeseesi!',
+ 'disabled-header' => 'Tilisi on poistettu käytöstä',
+ 'pruned-header' => 'Tilisi on karsittu',
];
diff --git a/lang/fi/forum.php b/lang/fi/forum.php
index 7af940484..876d51aa2 100644
--- a/lang/fi/forum.php
+++ b/lang/fi/forum.php
@@ -12,63 +12,63 @@
*/
return [
- 'action' => 'Toiminta',
- 'activity' => 'aktiviteetti',
- 'approved' => 'hyväksytty',
- 'author' => 'kirjailija',
- 'bug' => 'vika',
- 'category-quick-search' => 'Aiheen pikahaku (luokassa)',
- 'close-topic' => 'Lukitse aihe',
- 'closed' => 'Suljettu',
- 'create-new-topic' => 'Luo uusi aihe',
- 'created' => 'Luotu',
- 'current' => 'nykyinen',
- 'delete-topic' => 'Poista tämä aihe',
- 'denied' => 'Denied',
- 'dislike-post' => 'Ei pidä tästä viestistä',
- 'display-forum' => 'Näytä aiheet',
- 'edit-post' => 'Muokkaa viestiä',
- 'edit-topic' => 'Muokkaa aihe',
- 'forum' => 'foorumi',
- 'forums' => 'foorumit',
- 'implemented' => 'täytäntöön',
- 'in' => 'Sisään',
- 'invalid' => 'pätemätön',
- 'label' => 'etiketti',
- 'label-system' => 'Label System',
- 'last-message' => 'Viimeinen viesti',
- 'last-post-info' => 'Viimeisin viesti',
- 'latest' => 'Uusin',
- 'like-post' => 'Kuten tämä viesti',
- 'meta-category' => 'Luettelo luokkafoorumeista',
- 'moderation' => 'maltillisuus',
- 'name' => 'Nimi',
- 'not-connected' => 'Sinun täytyy olla yhteydessä',
- 'not-subscribed' => 'Ei tilattu',
- 'open' => 'Avata',
- 'open-topic' => 'Avaa tämä aihe',
- 'permalink' => 'permalink',
- 'pin' => 'tappi',
- 'post' => 'Lähettää',
- 'post-quick-search' => 'Lähetä kehon pikahaku',
- 'posts' => 'Viestejä',
- 'quote' => 'Lainata',
- 'read-topic' => 'Lue aihe',
- 'replies' => 'vastaukset',
- 'send-new-topic' => 'Tallenna tämä aihe',
- 'solved' => 'ratkaistu',
- 'state' => 'Osavaltio',
- 'stats' => 'tilastot',
- 'subscribed' => 'Tilatut',
+ 'action' => 'Toiminta',
+ 'activity' => 'aktiviteetti',
+ 'approved' => 'hyväksytty',
+ 'author' => 'kirjailija',
+ 'bug' => 'vika',
+ 'category-quick-search' => 'Aiheen pikahaku (luokassa)',
+ 'close-topic' => 'Lukitse aihe',
+ 'closed' => 'Suljettu',
+ 'create-new-topic' => 'Luo uusi aihe',
+ 'created' => 'Luotu',
+ 'current' => 'nykyinen',
+ 'delete-topic' => 'Poista tämä aihe',
+ 'denied' => 'Denied',
+ 'dislike-post' => 'Ei pidä tästä viestistä',
+ 'display-forum' => 'Näytä aiheet',
+ 'edit-post' => 'Muokkaa viestiä',
+ 'edit-topic' => 'Muokkaa aihe',
+ 'forum' => 'foorumi',
+ 'forums' => 'foorumit',
+ 'implemented' => 'täytäntöön',
+ 'in' => 'Sisään',
+ 'invalid' => 'pätemätön',
+ 'label' => 'etiketti',
+ 'label-system' => 'Label System',
+ 'last-message' => 'Viimeinen viesti',
+ 'last-post-info' => 'Viimeisin viesti',
+ 'latest' => 'Uusin',
+ 'like-post' => 'Kuten tämä viesti',
+ 'meta-category' => 'Luettelo luokkafoorumeista',
+ 'moderation' => 'maltillisuus',
+ 'name' => 'Nimi',
+ 'not-connected' => 'Sinun täytyy olla yhteydessä',
+ 'not-subscribed' => 'Ei tilattu',
+ 'open' => 'Avata',
+ 'open-topic' => 'Avaa tämä aihe',
+ 'permalink' => 'permalink',
+ 'pin' => 'tappi',
+ 'post' => 'Lähettää',
+ 'post-quick-search' => 'Lähetä kehon pikahaku',
+ 'posts' => 'Viestejä',
+ 'quote' => 'Lainata',
+ 'read-topic' => 'Lue aihe',
+ 'replies' => 'vastaukset',
+ 'send-new-topic' => 'Tallenna tämä aihe',
+ 'solved' => 'ratkaistu',
+ 'state' => 'Osavaltio',
+ 'stats' => 'tilastot',
+ 'subscribed' => 'Tilatut',
'subscription-quick-search' => 'Aiheen pikahaku (tilausten sisällä)',
- 'suggestion' => 'Ehdotus',
- 'topic' => 'Aihe',
- 'topic-closed' => 'Tämä aihe on suljettu',
- 'topic-name' => 'Aiheen nimi',
- 'topic-quick-search' => 'Aiheen pikahaku',
- 'topic-title' => 'Tämän aiheen nimi',
- 'topics' => 'aiheista',
- 'unpin' => 'Irrota',
- 'view-all' => 'Näytä kaikki aiheet',
- 'views' => 'Luettu',
+ 'suggestion' => 'Ehdotus',
+ 'topic' => 'Aihe',
+ 'topic-closed' => 'Tämä aihe on suljettu',
+ 'topic-name' => 'Aiheen nimi',
+ 'topic-quick-search' => 'Aiheen pikahaku',
+ 'topic-title' => 'Tämän aiheen nimi',
+ 'topics' => 'aiheista',
+ 'unpin' => 'Irrota',
+ 'view-all' => 'Näytä kaikki aiheet',
+ 'views' => 'Luettu',
];
diff --git a/lang/fi/graveyard.php b/lang/fi/graveyard.php
index a8dfd0669..5b4f06866 100644
--- a/lang/fi/graveyard.php
+++ b/lang/fi/graveyard.php
@@ -12,15 +12,15 @@
*/
return [
- 'dead' => 'Kuollut',
- 'graveyard' => 'Hautausmaa',
- 'guidelines' => 'suuntaviivat',
+ 'dead' => 'Kuollut',
+ 'graveyard' => 'Hautausmaa',
+ 'guidelines' => 'suuntaviivat',
'guidelines-content' => '1) Et voi palauttaa omia latauksiasi.
2) Älkää herättäkö jotain sellaista, jota et voi tehdä.',
- 'howto' => 'Tässä on sääntö',
- 'howto-desc1' => 'Sinun täytyy siemenet : nimi 30 päivän ajan menestyksekkäästi. Tällöin kun nykyinen siemennestosi on',
- 'howto-desc2' => 'Sinua palkitaan',
- 'howto-hits' => 'Hits',
- 'pending' => 'odotettaessa',
- 'resurrect' => 'elvyttää',
- 'reward' => 'Freeleech-merkit',
+ 'howto' => 'Tässä on sääntö',
+ 'howto-desc1' => 'Sinun täytyy siemenet : nimi 30 päivän ajan menestyksekkäästi. Tällöin kun nykyinen siemennestosi on',
+ 'howto-desc2' => 'Sinua palkitaan',
+ 'howto-hits' => 'Hits',
+ 'pending' => 'odotettaessa',
+ 'resurrect' => 'elvyttää',
+ 'reward' => 'Freeleech-merkit',
];
diff --git a/lang/fi/notification.php b/lang/fi/notification.php
index e5ee04300..c47a2653e 100644
--- a/lang/fi/notification.php
+++ b/lang/fi/notification.php
@@ -12,14 +12,14 @@
*/
return [
- 'date' => 'Treffi',
- 'delete' => 'Poistaa',
- 'delete-all' => 'Poista kaikki ilmoitukset',
- 'mark-all-read' => 'merkitse kaikki luetuksi',
- 'mark-read' => 'Merkitse luetuksi',
- 'message' => 'Viesti',
+ 'date' => 'Treffi',
+ 'delete' => 'Poistaa',
+ 'delete-all' => 'Poista kaikki ilmoitukset',
+ 'mark-all-read' => 'merkitse kaikki luetuksi',
+ 'mark-read' => 'Merkitse luetuksi',
+ 'message' => 'Viesti',
'no-notifications' => 'Ilmoituksia ei löytynyt',
- 'notifications' => 'ilmoitukset',
- 'read' => 'Lukea',
- 'title' => 'otsikko',
+ 'notifications' => 'ilmoitukset',
+ 'read' => 'Lukea',
+ 'title' => 'otsikko',
];
diff --git a/lang/fi/page.php b/lang/fi/page.php
index 304f55242..b96ac31b4 100644
--- a/lang/fi/page.php
+++ b/lang/fi/page.php
@@ -12,28 +12,28 @@
*/
return [
- 'aboutus-advantage' => 'Hyöty',
- 'aboutus-advantage1' => 'Meillä on kokeneita jäseniä ja henkilöstöä, jotka ovat hyvin perehtyneet HD-videon / äänen ja teknisen tuen maailmaan.',
- 'aboutus-advantage2' => 'Laajan intohimomme elokuvia ja tv-ohjelmia kohtaan tarjoamme myös yhden parhaista valinnoista, joita useimmat dont - FANRES! SUURI KIITOS sisällöntuottajille.',
- 'aboutus-advantage3' => 'Vaikka emme hyväksy lahjoituksia sivuston ylläpitämiseksi ja ylläpitämiseksi, paikan päällä ei ole tuhoisia PM- tai bannereita. Ei meiltä kerjäämistä.',
- 'aboutus-advantage4' => 'Yhteisömme on toiseksi ikääntynyt sen varhaisessa iässä. Henkilökuntamme ja käyttäjätietokannan välillä oli aina apua auttaaksemme. Oliko intohimoinen siitä, että kokemuksesi on: otsikko ei ole mitään hämmästyttävää.',
- 'aboutus-advantage5' => 'Palvelujamme käyttävät päivittäin monet ihmiset ympäri maailmaa. Todistimme, että välitämme koodisivumme toimivuudesta ja turvallisuudesta ja että sitä voidaan luottaa ja luottaa. Kehittäjät työskentelevät päivittäin tarjoamaan todella nex-gen-koodia.',
- 'aboutus-header' => 'Hei siellä',
- 'aboutus-rules' => 'Mitä meiltä tarvitsemme',
- 'aboutus-rules1' => 'Olla aktiivinen yhteisön jäsen! Tämä tarkoittaa, että voit liittyä keskusteluihin tuottavasti, lisätä hyväksyttyä sisältöä ja auttaa muita käyttäjiä, jos pystyt.',
- 'aboutus-rules2' => 'Voit lukea säännöt kokonaisuudessaan ja kunnioittaa niitä!',
- 'aboutus-rules3' => 'Tee ehdotuksia! Pyrimme tekemään: otsikko paremmin joka päivä. Me sanomme, että jokainen ehdotus on käytössä, mutta se ei koskaan haittaa uusia ideoita.',
- 'aboutus-welcome' => 'Puhutaan',
- 'aboutus-welcome-desc' => ': title on yhteisöllisesti rakennettu Movie / TV / FANRES-tietokanta. Hämmästyttävä yhteisömme on lisännyt kaikki tiedot vuodesta 2017 lähtien: otsikot keskittyvät voimakkaasti HD-sisältöön, ennakoivaan käyttäjäkantaan, mahtavaan / turvalliseen koodisarjaan ja avulias ja ystävällinen henkilökuntajoukkue.',
- 'blacklist-browsers' => 'selaimet',
- 'blacklist-btclient' => 'BitTorrent-asiakas',
- 'blacklist-clients' => 'asiakkaat',
- 'blacklist-desc' => 'Seuraavat selaimet ja Bittorrent-asiakkaat ovat mustalla listalla / kiellettyjä Annoucing To: title',
- 'blacklist-webbrowser' => 'Nettiselain',
+ 'aboutus-advantage' => 'Hyöty',
+ 'aboutus-advantage1' => 'Meillä on kokeneita jäseniä ja henkilöstöä, jotka ovat hyvin perehtyneet HD-videon / äänen ja teknisen tuen maailmaan.',
+ 'aboutus-advantage2' => 'Laajan intohimomme elokuvia ja tv-ohjelmia kohtaan tarjoamme myös yhden parhaista valinnoista, joita useimmat dont - FANRES! SUURI KIITOS sisällöntuottajille.',
+ 'aboutus-advantage3' => 'Vaikka emme hyväksy lahjoituksia sivuston ylläpitämiseksi ja ylläpitämiseksi, paikan päällä ei ole tuhoisia PM- tai bannereita. Ei meiltä kerjäämistä.',
+ 'aboutus-advantage4' => 'Yhteisömme on toiseksi ikääntynyt sen varhaisessa iässä. Henkilökuntamme ja käyttäjätietokannan välillä oli aina apua auttaaksemme. Oliko intohimoinen siitä, että kokemuksesi on: otsikko ei ole mitään hämmästyttävää.',
+ 'aboutus-advantage5' => 'Palvelujamme käyttävät päivittäin monet ihmiset ympäri maailmaa. Todistimme, että välitämme koodisivumme toimivuudesta ja turvallisuudesta ja että sitä voidaan luottaa ja luottaa. Kehittäjät työskentelevät päivittäin tarjoamaan todella nex-gen-koodia.',
+ 'aboutus-header' => 'Hei siellä',
+ 'aboutus-rules' => 'Mitä meiltä tarvitsemme',
+ 'aboutus-rules1' => 'Olla aktiivinen yhteisön jäsen! Tämä tarkoittaa, että voit liittyä keskusteluihin tuottavasti, lisätä hyväksyttyä sisältöä ja auttaa muita käyttäjiä, jos pystyt.',
+ 'aboutus-rules2' => 'Voit lukea säännöt kokonaisuudessaan ja kunnioittaa niitä!',
+ 'aboutus-rules3' => 'Tee ehdotuksia! Pyrimme tekemään: otsikko paremmin joka päivä. Me sanomme, että jokainen ehdotus on käytössä, mutta se ei koskaan haittaa uusia ideoita.',
+ 'aboutus-welcome' => 'Puhutaan',
+ 'aboutus-welcome-desc' => ': title on yhteisöllisesti rakennettu Movie / TV / FANRES-tietokanta. Hämmästyttävä yhteisömme on lisännyt kaikki tiedot vuodesta 2017 lähtien: otsikot keskittyvät voimakkaasti HD-sisältöön, ennakoivaan käyttäjäkantaan, mahtavaan / turvalliseen koodisarjaan ja avulias ja ystävällinen henkilökuntajoukkue.',
+ 'blacklist-browsers' => 'selaimet',
+ 'blacklist-btclient' => 'BitTorrent-asiakas',
+ 'blacklist-clients' => 'asiakkaat',
+ 'blacklist-desc' => 'Seuraavat selaimet ja Bittorrent-asiakkaat ovat mustalla listalla / kiellettyjä Annoucing To: title',
+ 'blacklist-webbrowser' => 'Nettiselain',
'blacklist-emaildomain' => 'Estetty verkkotunnus',
- 'email-blacklist-desc' => 'Seuraavat sähköposti-verkkotunnukset estetään käytöstä. Et voi rekisteröidä tai lähettää kutsun seuraaviin.',
- 'email-whitelist-desc' => 'Seuraavat sähköposti-verkkotunnukset ovat sallittuja käyttää vain sähköpostiosoitteita. Voit rekisteröidä tai lähettää kutsun vain seuraavien avulla.',
- 'staff-group' => 'Ryhmä',
- 'staff-title' => 'otsikko',
+ 'email-blacklist-desc' => 'Seuraavat sähköposti-verkkotunnukset estetään käytöstä. Et voi rekisteröidä tai lähettää kutsun seuraaviin.',
+ 'email-whitelist-desc' => 'Seuraavat sähköposti-verkkotunnukset ovat sallittuja käyttää vain sähköpostiosoitteita. Voit rekisteröidä tai lähettää kutsun vain seuraavien avulla.',
+ 'staff-group' => 'Ryhmä',
+ 'staff-title' => 'otsikko',
'whitelist-emaildomain' => 'Luotettu verkkotunnus',
];
diff --git a/lang/fi/pagination.php b/lang/fi/pagination.php
index 43638e890..8ad5d6ad6 100644
--- a/lang/fi/pagination.php
+++ b/lang/fi/pagination.php
@@ -24,5 +24,5 @@ return [
*/
'previous' => '« Edellinen',
- 'next' => 'Seuraava »',
+ 'next' => 'Seuraava »',
];
diff --git a/lang/fi/passwords.php b/lang/fi/passwords.php
index 8620c7baa..882fa58aa 100644
--- a/lang/fi/passwords.php
+++ b/lang/fi/passwords.php
@@ -24,8 +24,8 @@ return [
*/
'password' => 'Salasanan on oltava vähintään kuusi merkkiä pitkä ja vastattava vahvistuskentän arvoa.',
- 'reset' => 'Salasana on resetoitu!',
- 'sent' => 'Resetointilinkki lähetetty sähköpostitse!',
- 'token' => 'Resetointitunniste on viallinen.',
- 'user' => 'Sähköpostiosoitteella ei löydy käyttäjää.',
+ 'reset' => 'Salasana on resetoitu!',
+ 'sent' => 'Resetointilinkki lähetetty sähköpostitse!',
+ 'token' => 'Resetointitunniste on viallinen.',
+ 'user' => 'Sähköpostiosoitteella ei löydy käyttäjää.',
];
diff --git a/lang/fi/pm.php b/lang/fi/pm.php
index 9110b3251..02cef52a4 100644
--- a/lang/fi/pm.php
+++ b/lang/fi/pm.php
@@ -12,29 +12,29 @@
*/
return [
- 'create' => 'Luoda',
- 'delete' => 'Poistaa',
+ 'create' => 'Luoda',
+ 'delete' => 'Poistaa',
'enter-subject' => 'Anna aihe',
- 'from' => 'alkaen',
- 'inbox' => 'Saapuneet',
+ 'from' => 'alkaen',
+ 'inbox' => 'Saapuneet',
'mark-all-read' => 'Merkitse kaikki viestit luetuiksi',
- 'message' => 'Viesti',
- 'messages' => 'viestien',
- 'new' => 'Uusi viesti',
- 'outbox' => 'Lähtevät',
- 'private' => 'yksityinen',
- 'read' => 'Lukea',
- 'received-at' => 'Vastaanotettu',
- 'refresh' => 'virkistää',
- 'reply' => 'Vastaa',
- 'search' => 'Hae aiheen mukaan',
- 'select' => 'Valitse käyttäjä',
- 'send' => 'Lähetä PM',
- 'send-to' => 'Lähetä PM To',
- 'sent' => 'Lähetetyt',
- 'sent-at' => 'Lähetetty',
- 'subject' => 'aihe',
- 'to' => 'jotta',
- 'unread' => 'Lukemattomat',
- 'empty-inbox' => 'Tyhjä postilaatikko',
+ 'message' => 'Viesti',
+ 'messages' => 'viestien',
+ 'new' => 'Uusi viesti',
+ 'outbox' => 'Lähtevät',
+ 'private' => 'yksityinen',
+ 'read' => 'Lukea',
+ 'received-at' => 'Vastaanotettu',
+ 'refresh' => 'virkistää',
+ 'reply' => 'Vastaa',
+ 'search' => 'Hae aiheen mukaan',
+ 'select' => 'Valitse käyttäjä',
+ 'send' => 'Lähetä PM',
+ 'send-to' => 'Lähetä PM To',
+ 'sent' => 'Lähetetyt',
+ 'sent-at' => 'Lähetetty',
+ 'subject' => 'aihe',
+ 'to' => 'jotta',
+ 'unread' => 'Lukemattomat',
+ 'empty-inbox' => 'Tyhjä postilaatikko',
];
diff --git a/lang/fi/poll.php b/lang/fi/poll.php
index f543eb659..fec090336 100644
--- a/lang/fi/poll.php
+++ b/lang/fi/poll.php
@@ -12,18 +12,18 @@
*/
return [
- 'add-option' => 'Lisää vaihtoehto',
- 'create-poll' => 'Luo kysely',
- 'current' => 'Nykyinen kysely (t)',
- 'delete-option' => 'Poista vaihtoehto',
+ 'add-option' => 'Lisää vaihtoehto',
+ 'create-poll' => 'Luo kysely',
+ 'current' => 'Nykyinen kysely (t)',
+ 'delete-option' => 'Poista vaihtoehto',
'multiple-choice' => 'Tämä on monivalintakysely. Valitse niin monta vastausta kuin haluat.',
- 'option' => 'Vaihtoehto',
- 'poll' => 'äänestys',
- 'polls' => 'Kyselyt',
- 'results' => 'Kyselyn tulokset',
- 'title' => 'otsikko',
- 'total' => 'Äänet yhteensä',
- 'vote' => 'Äänestys',
- 'vote-now' => 'Hanki äänesi nyt!',
- 'votes' => 'ääntä',
+ 'option' => 'Vaihtoehto',
+ 'poll' => 'äänestys',
+ 'polls' => 'Kyselyt',
+ 'results' => 'Kyselyn tulokset',
+ 'title' => 'otsikko',
+ 'total' => 'Äänet yhteensä',
+ 'vote' => 'Äänestys',
+ 'vote-now' => 'Hanki äänesi nyt!',
+ 'votes' => 'ääntä',
];
diff --git a/lang/fi/request.php b/lang/fi/request.php
index d432b6366..8e7a471a8 100644
--- a/lang/fi/request.php
+++ b/lang/fi/request.php
@@ -12,67 +12,67 @@
*/
return [
- 'add-request' => 'Lisää pyyntö',
- 'age' => 'Ikä',
- 'all-requests' => 'Kaikki pyynnöt',
- 'approve' => 'Hyväksyä',
- 'bounty' => 'anteliaisuus',
- 'bounty-claimed' => 'Bounty väitti',
- 'bounty-unclaimed' => 'Bounty ei pyytänyt',
- 'category' => 'Kategoria',
- 'claim' => 'vaatimus',
- 'claim-anon-choose' => 'Valitse viisaasti',
- 'claim-as-anon' => 'Haluatko vaatia tätä anonomisesti',
- 'claim-now' => 'Vaatimus nyt',
- 'claimed' => 'väitti',
- 'current' => 'nykyinen',
- 'delete' => 'Poista tämä pyyntö',
+ 'add-request' => 'Lisää pyyntö',
+ 'age' => 'Ikä',
+ 'all-requests' => 'Kaikki pyynnöt',
+ 'approve' => 'Hyväksyä',
+ 'bounty' => 'anteliaisuus',
+ 'bounty-claimed' => 'Bounty väitti',
+ 'bounty-unclaimed' => 'Bounty ei pyytänyt',
+ 'category' => 'Kategoria',
+ 'claim' => 'vaatimus',
+ 'claim-anon-choose' => 'Valitse viisaasti',
+ 'claim-as-anon' => 'Haluatko vaatia tätä anonomisesti',
+ 'claim-now' => 'Vaatimus nyt',
+ 'claimed' => 'väitti',
+ 'current' => 'nykyinen',
+ 'delete' => 'Poista tämä pyyntö',
'delete-confirmation' => 'Haluatko varmasti poistaa tämän pyynnön',
- 'delete-filled' => 'Tämä pyyntö voidaan poistaa vain, jos sitä ei ole täytetty',
- 'description' => 'Kuvaus',
- 'dont-have-bps' => 'Sinulla ei ole tarpeeksi bonusta',
- 'edit-request' => 'Muokkaa pyyntöä',
- 'enter-bp' => 'Anna bonuspisteet (vähintään 100)',
- 'enter-hash' => 'Anna ladatun Torrentin Info Hash',
- 'fill' => 'Täyttää',
- 'fill-request' => 'Täytä tämä pyyntö',
- 'filled' => 'täynnä',
- 'filled-by' => 'Täyttää',
- 'for' => 'varten',
- 'fulfill' => 'täyttää',
- 'last-vote' => 'Viimeinen äänestys',
- 'my-requests' => 'Pyyntöjäni',
- 'no' => 'Ei,',
- 'no-imdb-id' => 'Kaikkien pyyntöjen on sisällettävä IMDB-numero',
- 'no-privileges' => 'Virhe: Pyyntöoikeutesi on poistettu käytöstä',
- 'no-privileges-desc' => 'Jos sinusta tuntuu, että tämä on virhe, ota yhteyttä henkilöstöön',
- 'no-refunds' => 'BON-pörssien luominen, täyttäminen ja palkkiot ovat lopullisia!
EI TAKAISIA!',
- 'pending' => 'odotettaessa',
- 'reason' => 'Syy',
- 'reject' => 'Hylätä',
- 'report' => 'Ilmoita pyyntö',
- 'request' => 'Pyyntö',
- 'request-details' => 'Pyydä yksityiskohtia',
- 'requested-by' => 'Pyydetty',
- 'requests' => 'Pyynnöt',
- 'required' => 'Vaaditaan',
- 'reset' => 'asettaa uudelleen',
- 'reset-confirmation' => 'Haluatko varmasti nollata tämän pyynnön',
- 'reset-request' => 'Palauta tämä pyyntö',
- 'reward' => 'Palkinto',
- 'reward-desc' => 'Kuinka paljon bonuspistettä haluat palkita? Vähintään 100 BP',
- 'reward-from' => 'alkaen',
- 'title' => 'otsikko',
- 'torrent-hash' => 'Torrent Hash',
- 'total-bounty' => 'Yhteensä palkkio',
- 'type' => 'Tyyppi',
- 'unclaim' => 'Peruuta pyyntö',
- 'unfilled' => 'täyttämättömät',
- 'view-filled' => 'Näytä täytetty',
- 'view-unfilled' => 'Näytä tyhjä',
- 'vote' => 'Äänestys',
- 'vote-that' => 'Äänestä tätä pyyntöä',
- 'voters' => 'Äänestäjät',
- 'votes' => 'ääntä',
- 'yes' => 'Joo',
+ 'delete-filled' => 'Tämä pyyntö voidaan poistaa vain, jos sitä ei ole täytetty',
+ 'description' => 'Kuvaus',
+ 'dont-have-bps' => 'Sinulla ei ole tarpeeksi bonusta',
+ 'edit-request' => 'Muokkaa pyyntöä',
+ 'enter-bp' => 'Anna bonuspisteet (vähintään 100)',
+ 'enter-hash' => 'Anna ladatun Torrentin Info Hash',
+ 'fill' => 'Täyttää',
+ 'fill-request' => 'Täytä tämä pyyntö',
+ 'filled' => 'täynnä',
+ 'filled-by' => 'Täyttää',
+ 'for' => 'varten',
+ 'fulfill' => 'täyttää',
+ 'last-vote' => 'Viimeinen äänestys',
+ 'my-requests' => 'Pyyntöjäni',
+ 'no' => 'Ei,',
+ 'no-imdb-id' => 'Kaikkien pyyntöjen on sisällettävä IMDB-numero',
+ 'no-privileges' => 'Virhe: Pyyntöoikeutesi on poistettu käytöstä',
+ 'no-privileges-desc' => 'Jos sinusta tuntuu, että tämä on virhe, ota yhteyttä henkilöstöön',
+ 'no-refunds' => 'BON-pörssien luominen, täyttäminen ja palkkiot ovat lopullisia!
EI TAKAISIA!',
+ 'pending' => 'odotettaessa',
+ 'reason' => 'Syy',
+ 'reject' => 'Hylätä',
+ 'report' => 'Ilmoita pyyntö',
+ 'request' => 'Pyyntö',
+ 'request-details' => 'Pyydä yksityiskohtia',
+ 'requested-by' => 'Pyydetty',
+ 'requests' => 'Pyynnöt',
+ 'required' => 'Vaaditaan',
+ 'reset' => 'asettaa uudelleen',
+ 'reset-confirmation' => 'Haluatko varmasti nollata tämän pyynnön',
+ 'reset-request' => 'Palauta tämä pyyntö',
+ 'reward' => 'Palkinto',
+ 'reward-desc' => 'Kuinka paljon bonuspistettä haluat palkita? Vähintään 100 BP',
+ 'reward-from' => 'alkaen',
+ 'title' => 'otsikko',
+ 'torrent-hash' => 'Torrent Hash',
+ 'total-bounty' => 'Yhteensä palkkio',
+ 'type' => 'Tyyppi',
+ 'unclaim' => 'Peruuta pyyntö',
+ 'unfilled' => 'täyttämättömät',
+ 'view-filled' => 'Näytä täytetty',
+ 'view-unfilled' => 'Näytä tyhjä',
+ 'vote' => 'Äänestys',
+ 'vote-that' => 'Äänestä tätä pyyntöä',
+ 'voters' => 'Äänestäjät',
+ 'votes' => 'ääntä',
+ 'yes' => 'Joo',
];
diff --git a/lang/fi/rss.php b/lang/fi/rss.php
index 629a3f1a7..86d5a87b3 100644
--- a/lang/fi/rss.php
+++ b/lang/fi/rss.php
@@ -12,19 +12,19 @@
*/
return [
- 'create' => 'Luoda',
+ 'create' => 'Luoda',
'create-private-feed' => 'Luo yksityinen RSS-syöte',
- 'create-public-feed' => 'Luo julkinen RSS-syöte',
- 'delete' => 'Poistaa',
- 'edit' => 'Muokata',
- 'edit-private-feed' => 'Muokkaa yksityistä RSS-syötettä',
- 'edit-public-feed' => 'Muokkaa julkista RSS-syötettä',
- 'feed' => 'rehu',
- 'feeds' => 'syötteet',
- 'name' => 'Nimi',
- 'public' => 'Julkinen',
- 'private' => 'yksityinen',
- 'rss' => 'RSS',
- 'rss-feed' => 'RSS-syöte',
- 'type' => 'Tyyppi',
+ 'create-public-feed' => 'Luo julkinen RSS-syöte',
+ 'delete' => 'Poistaa',
+ 'edit' => 'Muokata',
+ 'edit-private-feed' => 'Muokkaa yksityistä RSS-syötettä',
+ 'edit-public-feed' => 'Muokkaa julkista RSS-syötettä',
+ 'feed' => 'rehu',
+ 'feeds' => 'syötteet',
+ 'name' => 'Nimi',
+ 'public' => 'Julkinen',
+ 'private' => 'yksityinen',
+ 'rss' => 'RSS',
+ 'rss-feed' => 'RSS-syöte',
+ 'type' => 'Tyyppi',
];
diff --git a/lang/fi/staff.php b/lang/fi/staff.php
index 44c3a5170..d9cdb4bf6 100644
--- a/lang/fi/staff.php
+++ b/lang/fi/staff.php
@@ -12,48 +12,48 @@
*/
return [
- 'audit-log' => 'Aktiviteettiloki',
- 'articles' => 'Artikkelit',
- 'applications' => 'Sovellukset',
- 'bans-log' => 'Bans Log',
- 'blocks' => 'lohkot',
- 'bot' => 'bot',
- 'bots' => 'botit',
- 'chat' => 'jutella',
- 'config-manager' => 'Config Manager',
- 'dashboard' => 'kojelauta',
- 'failed-login-log' => 'Virheellinen kirjautumisloki',
- 'flush-ghost-peers' => 'Huuhtele Ghost Peers',
- 'forums' => 'foorumit',
- 'frontend' => 'frontend',
- 'general-tools' => 'Yleiset työkalut',
- 'groups' => 'ryhmät',
- 'invites-log' => 'Kutsujen loki',
- 'laravel-log' => 'Laravel-loki',
- 'links' => 'Linkit',
- 'logs' => 'lokit',
- 'mass-pm' => 'Mass PM',
- 'mass-validate-users' => 'Mass validoi käyttäjät',
- 'moderation' => 'maltillisuus',
- 'pages' => 'sivut',
- 'please-moderate' => 'Ole hyvä ja kohtaa tämä torrent!',
- 'polls' => 'Kyselyt',
- 'reports-log' => 'Raporttien loki',
- 'rss' => 'RSS',
- 'staff-dashboard' => 'Henkilökunnan kojelauta',
- 'torrent-categories' => 'Torrentin luokat',
- 'torrent-moderation' => 'Torrentin maltillisuus',
- 'torrent-tools' => 'Torrent-työkalut',
- 'torrent-types' => 'Torrentin tyypit',
- 'torrents' => 'torrentit',
- 'user-gifting' => 'Käyttäjän lahja',
- 'user-notes' => 'Käyttäjän huomautusten loki',
- 'user-search' => 'Käyttäjähaku',
- 'user-tools' => 'Käyttäjän työkalut',
- 'warnings-log' => 'Varoitukset Loki',
- 'you-have' => 'Sinulla on',
+ 'audit-log' => 'Aktiviteettiloki',
+ 'articles' => 'Artikkelit',
+ 'applications' => 'Sovellukset',
+ 'bans-log' => 'Bans Log',
+ 'blocks' => 'lohkot',
+ 'bot' => 'bot',
+ 'bots' => 'botit',
+ 'chat' => 'jutella',
+ 'config-manager' => 'Config Manager',
+ 'dashboard' => 'kojelauta',
+ 'failed-login-log' => 'Virheellinen kirjautumisloki',
+ 'flush-ghost-peers' => 'Huuhtele Ghost Peers',
+ 'forums' => 'foorumit',
+ 'frontend' => 'frontend',
+ 'general-tools' => 'Yleiset työkalut',
+ 'groups' => 'ryhmät',
+ 'invites-log' => 'Kutsujen loki',
+ 'laravel-log' => 'Laravel-loki',
+ 'links' => 'Linkit',
+ 'logs' => 'lokit',
+ 'mass-pm' => 'Mass PM',
+ 'mass-validate-users' => 'Mass validoi käyttäjät',
+ 'moderation' => 'maltillisuus',
+ 'pages' => 'sivut',
+ 'please-moderate' => 'Ole hyvä ja kohtaa tämä torrent!',
+ 'polls' => 'Kyselyt',
+ 'reports-log' => 'Raporttien loki',
+ 'rss' => 'RSS',
+ 'staff-dashboard' => 'Henkilökunnan kojelauta',
+ 'torrent-categories' => 'Torrentin luokat',
+ 'torrent-moderation' => 'Torrentin maltillisuus',
+ 'torrent-tools' => 'Torrent-työkalut',
+ 'torrent-types' => 'Torrentin tyypit',
+ 'torrents' => 'torrentit',
+ 'user-gifting' => 'Käyttäjän lahja',
+ 'user-notes' => 'Käyttäjän huomautusten loki',
+ 'user-search' => 'Käyttäjähaku',
+ 'user-tools' => 'Käyttäjän työkalut',
+ 'warnings-log' => 'Varoitukset Loki',
+ 'you-have' => 'Sinulla on',
'possible-leech-cheaters' => 'Mahdolliset huijarit',
- 'chat-tools' => 'Chat-työkalut',
- 'flush-chat' => 'Flush Chatbox',
- 'seedboxes' => 'Rekisteröidyt siemenkasvit',
+ 'chat-tools' => 'Chat-työkalut',
+ 'flush-chat' => 'Flush Chatbox',
+ 'seedboxes' => 'Rekisteröidyt siemenkasvit',
];
diff --git a/lang/fi/stat.php b/lang/fi/stat.php
index d97f07bd0..976731114 100644
--- a/lang/fi/stat.php
+++ b/lang/fi/stat.php
@@ -12,40 +12,40 @@
*/
return [
- 'by-count' => 'Lukumäärä',
- 'by-data' => 'Tiedot',
- 'by-volume' => 'Äänenvoimakkuuden mukaan',
- 'group' => 'Ryhmä',
- 'groups' => 'ryhmät',
- 'nerd-stats' => 'Nerd-tilastot',
- 'nerd-stats-desc' => 'Me kaikki rakastamme tilastoja. Tässä muutamia tärkeitä',
- 'registration-date' => 'Rekisteröinti päivämäärä',
- 'request-fulfilled' => 'Pyyntö täytetty',
- 'request-not-fulfilled' => 'Pyyntö ei täyty',
+ 'by-count' => 'Lukumäärä',
+ 'by-data' => 'Tiedot',
+ 'by-volume' => 'Äänenvoimakkuuden mukaan',
+ 'group' => 'Ryhmä',
+ 'groups' => 'ryhmät',
+ 'nerd-stats' => 'Nerd-tilastot',
+ 'nerd-stats-desc' => 'Me kaikki rakastamme tilastoja. Tässä muutamia tärkeitä',
+ 'registration-date' => 'Rekisteröinti päivämäärä',
+ 'request-fulfilled' => 'Pyyntö täytetty',
+ 'request-not-fulfilled' => 'Pyyntö ei täyty',
'request-pending-aproval' => 'Pyyntö odottaa hyväksymistä',
- 'select-category' => 'Valitse alla oleva luokka',
- 'site-stats' => 'Sivuston tilastot',
- 'stats' => 'tilastot',
- 'stats-format' => 'Kaikki Top 100 -muodossa näkyvät tilastot',
- 'top-bankers' => 'Suosituimmat pankkiirit',
- 'top-bountied' => 'Top Bountied',
- 'top-completed' => 'Alkuun Valmis',
- 'top-dead' => 'Top Dead',
- 'top-downloaded' => 'Suosituimmat ladatut torrentit',
- 'top-downloaders' => 'Suosituimmat lataajat',
- 'top-dying' => 'Top Dying',
- 'top-leeched' => 'Top Leeched',
- 'top-leechers' => 'Top Leechers',
- 'top-seeded' => 'Top Seeded',
- 'top-seeding' => 'Suosituin kylvö',
- 'top-seeders' => 'Suosituimmat kylvökoneet',
- 'top-seedsize' => 'Top Seedsize',
- 'top-seedtime' => 'Top Seedtime',
- 'top-uploaders' => 'Suosituimmat lähettäjät',
- 'total-download' => 'Lataus yhteensä',
- 'total-torrents' => 'Torrentit yhteensä',
- 'total-traffic' => 'Yhteensä liikenne',
- 'total-upload' => 'Lataus yhteensä',
- 'users-in-group' => 'Käyttäjät ryhmässä',
- 'users-per-group' => 'Käyttäjät per ryhmä',
+ 'select-category' => 'Valitse alla oleva luokka',
+ 'site-stats' => 'Sivuston tilastot',
+ 'stats' => 'tilastot',
+ 'stats-format' => 'Kaikki Top 100 -muodossa näkyvät tilastot',
+ 'top-bankers' => 'Suosituimmat pankkiirit',
+ 'top-bountied' => 'Top Bountied',
+ 'top-completed' => 'Alkuun Valmis',
+ 'top-dead' => 'Top Dead',
+ 'top-downloaded' => 'Suosituimmat ladatut torrentit',
+ 'top-downloaders' => 'Suosituimmat lataajat',
+ 'top-dying' => 'Top Dying',
+ 'top-leeched' => 'Top Leeched',
+ 'top-leechers' => 'Top Leechers',
+ 'top-seeded' => 'Top Seeded',
+ 'top-seeding' => 'Suosituin kylvö',
+ 'top-seeders' => 'Suosituimmat kylvökoneet',
+ 'top-seedsize' => 'Top Seedsize',
+ 'top-seedtime' => 'Top Seedtime',
+ 'top-uploaders' => 'Suosituimmat lähettäjät',
+ 'total-download' => 'Lataus yhteensä',
+ 'total-torrents' => 'Torrentit yhteensä',
+ 'total-traffic' => 'Yhteensä liikenne',
+ 'total-upload' => 'Lataus yhteensä',
+ 'users-in-group' => 'Käyttäjät ryhmässä',
+ 'users-per-group' => 'Käyttäjät per ryhmä',
];
diff --git a/lang/fi/torrent.php b/lang/fi/torrent.php
index 467ec8bd4..133d1ecc9 100644
--- a/lang/fi/torrent.php
+++ b/lang/fi/torrent.php
@@ -12,197 +12,197 @@
*/
return [
- 'activity' => 'aktiviteetti',
- 'age' => 'Ikä',
- 'agent' => 'agentti',
- 'alive' => 'Elossa',
- 'announce-url' => 'Ilmoita URL-osoite',
- 'announce-url-desc' => 'Käytä ilmoituksen URL-osoitetta, kun luot uuden torrentin. Jos haluat käyttää torrentia lataamatta sitä sivustosta, sinun on asetettava yksityinen lippu ja lähde: source',
- 'announce-url-desc-url' => 'Olla ongelmia? Katso oppaamme TÄSTÄ',
- 'announce-url-desc2' => 'TMDB ja IMDB vaaditaan kaikissa latauksissa! Sitä käytetään piirtämään julisteita / taustakuvia ja ExtraInfo-tiedostoja',
- 'approved' => 'hyväksytty',
- 'audio' => 'Audio',
- 'bon-tipped' => 'BON Kallistettu',
- 'bookmark' => 'Kirjanmerkki',
- 'bookmarks' => 'kirjanmerkit',
- 'bump' => 'Kolahtaa',
- 'cant-upload' => 'Virhe: lähetysoikeudet on poistettu käytöstä',
- 'cant-upload-desc' => 'Jos tunnet sen olevan virhe, ota yhteyttä henkilökuntaan',
- 'cards' => 'Kortit',
- 'cards-view' => 'Torrent-korttien näkymä',
- 'categories' => 'Luokat',
- 'category' => 'Kategoria',
- 'client' => 'Asiakas',
- 'commited' => 'sitoutuneet',
- 'completed' => 'valmistunut',
- 'completed_at' => 'Valmistunut osoitteessa',
- 'completed-not-seeding' => 'Olet suorittanut tämän latauksen loppuun, mutta eivät enää vie sitä',
- 'created_at' => 'Luotu osoitteessa',
- 'credited' => 'hyvitetään',
- 'current' => 'nykyinen',
- 'current-filters' => 'Nykyiset suodattimet',
- 'currently-leeching' => 'Tällä hetkellä Leeching',
- 'currently-seeding' => 'Tällä hetkellä kylvö',
- 'dead-torrent' => 'Dead Torrent',
- 'dead-torrents' => 'Dead Torrents',
- 'delete-bookmark' => 'Poista tämä kirjanmerkki',
- 'description' => 'Kuvaus',
- 'discounts' => 'alennukset',
- 'double-upload' => 'Double Upload',
- 'download-all' => 'Lataa kaikki',
- 'download-check' => 'Lataa tarkistus',
- 'downloaded' => 'ladattu',
- 'dying-torrent' => 'Dying Torrent',
- 'dying-torrents' => 'Dying Torrents',
- 'encode-settings' => 'Koodaa asetukset',
- 'estimated-ratio' => 'Arvioitu suhde latauksen jälkeen',
- 'failed' => 'epäonnistui',
- 'feature' => 'Ominaisuus',
- 'featured' => 'Kiinnostavat',
- 'featured-desc' => 'Esitetyt torrentit ovat 100% vapaa ja Double Upload!',
- 'featured-until' => 'Tämä on suosittu torrent, kunnes',
- 'file' => 'tiedosto',
- 'filters' => 'Suodattimet',
- 'fl-tokens-left' => 'Sinulla on : jäljellä olevat merkit',
- 'freeleech' => 'Freeleech',
- 'freeleech-token' => 'Freeleechin token',
- 'general' => 'yleinen',
- 'genre' => 'laji',
- 'global-double-upload' => 'Global Double Upload',
- 'global-freeleech' => 'Global Freeleech',
- 'grant' => 'Myöntää',
- 'greater-than' => 'Suurempi kuin',
- 'grouping' => 'ryhmittymä',
- 'groupings' => 'ryhmittymät',
- 'grouping-categories' => 'Ryhmittelyluokat',
+ 'activity' => 'aktiviteetti',
+ 'age' => 'Ikä',
+ 'agent' => 'agentti',
+ 'alive' => 'Elossa',
+ 'announce-url' => 'Ilmoita URL-osoite',
+ 'announce-url-desc' => 'Käytä ilmoituksen URL-osoitetta, kun luot uuden torrentin. Jos haluat käyttää torrentia lataamatta sitä sivustosta, sinun on asetettava yksityinen lippu ja lähde: source',
+ 'announce-url-desc-url' => 'Olla ongelmia? Katso oppaamme TÄSTÄ',
+ 'announce-url-desc2' => 'TMDB ja IMDB vaaditaan kaikissa latauksissa! Sitä käytetään piirtämään julisteita / taustakuvia ja ExtraInfo-tiedostoja',
+ 'approved' => 'hyväksytty',
+ 'audio' => 'Audio',
+ 'bon-tipped' => 'BON Kallistettu',
+ 'bookmark' => 'Kirjanmerkki',
+ 'bookmarks' => 'kirjanmerkit',
+ 'bump' => 'Kolahtaa',
+ 'cant-upload' => 'Virhe: lähetysoikeudet on poistettu käytöstä',
+ 'cant-upload-desc' => 'Jos tunnet sen olevan virhe, ota yhteyttä henkilökuntaan',
+ 'cards' => 'Kortit',
+ 'cards-view' => 'Torrent-korttien näkymä',
+ 'categories' => 'Luokat',
+ 'category' => 'Kategoria',
+ 'client' => 'Asiakas',
+ 'commited' => 'sitoutuneet',
+ 'completed' => 'valmistunut',
+ 'completed_at' => 'Valmistunut osoitteessa',
+ 'completed-not-seeding' => 'Olet suorittanut tämän latauksen loppuun, mutta eivät enää vie sitä',
+ 'created_at' => 'Luotu osoitteessa',
+ 'credited' => 'hyvitetään',
+ 'current' => 'nykyinen',
+ 'current-filters' => 'Nykyiset suodattimet',
+ 'currently-leeching' => 'Tällä hetkellä Leeching',
+ 'currently-seeding' => 'Tällä hetkellä kylvö',
+ 'dead-torrent' => 'Dead Torrent',
+ 'dead-torrents' => 'Dead Torrents',
+ 'delete-bookmark' => 'Poista tämä kirjanmerkki',
+ 'description' => 'Kuvaus',
+ 'discounts' => 'alennukset',
+ 'double-upload' => 'Double Upload',
+ 'download-all' => 'Lataa kaikki',
+ 'download-check' => 'Lataa tarkistus',
+ 'downloaded' => 'ladattu',
+ 'dying-torrent' => 'Dying Torrent',
+ 'dying-torrents' => 'Dying Torrents',
+ 'encode-settings' => 'Koodaa asetukset',
+ 'estimated-ratio' => 'Arvioitu suhde latauksen jälkeen',
+ 'failed' => 'epäonnistui',
+ 'feature' => 'Ominaisuus',
+ 'featured' => 'Kiinnostavat',
+ 'featured-desc' => 'Esitetyt torrentit ovat 100% vapaa ja Double Upload!',
+ 'featured-until' => 'Tämä on suosittu torrent, kunnes',
+ 'file' => 'tiedosto',
+ 'filters' => 'Suodattimet',
+ 'fl-tokens-left' => 'Sinulla on : jäljellä olevat merkit',
+ 'freeleech' => 'Freeleech',
+ 'freeleech-token' => 'Freeleechin token',
+ 'general' => 'yleinen',
+ 'genre' => 'laji',
+ 'global-double-upload' => 'Global Double Upload',
+ 'global-freeleech' => 'Global Freeleech',
+ 'grant' => 'Myöntää',
+ 'greater-than' => 'Suurempi kuin',
+ 'grouping' => 'ryhmittymä',
+ 'groupings' => 'ryhmittymät',
+ 'grouping-categories' => 'Ryhmittelyluokat',
'grouping-categories-desc' => 'Minkä luokan haluat ryhmitellä?',
- 'grouping-results' => 'Tulosten ryhmittely',
- 'groupings-view' => 'Ryhmien näkymä',
- 'have-completed' => 'valmistunut',
- 'have-downloaded' => 'ladattu',
- 'have-not-completed' => 'Ei valmis',
- 'have-not-downloaded' => 'Ei ladattu',
- 'health' => 'terveys',
- 'history' => 'Historia',
- 'hitrun' => 'H & R?',
- 'hit-and-runs' => 'Hit ja Suorita laskee',
- 'immune' => 'Immuuni?',
- 'info' => 'Tiedot',
- 'internal' => 'sisäinen',
- 'internal-release' => 'Sisäinen julkaisu',
- 'last-seed-activity' => 'Viimeinen siementoiminta',
- 'last-seeder' => 'Olet viimeinen jäljellä oleva kylvö! (on ladattu vähintään 3 kertaa)',
- 'last-update' => 'Viimeisin päivitys',
- 'leave-tip' => 'Jätä kärki',
- 'leecher' => 'leecher',
- 'leechers' => 'Leechers',
- 'leeching' => 'leeching',
- 'left' => 'vasen',
- 'legendary-seeder' => 'Legendaarinen kylvö',
- 'legendary-torrent' => 'Legendaarinen torrent',
- 'list' => 'Lista',
- 'me' => 'Minulle',
- 'media-info' => 'MediaInfo',
- 'media-info-parser' => 'MediaInfo Parser',
- 'media-info-paste' => 'Liitä MediaInfo-polku tähän',
- 'meta-desc' => 'Lataa: nimi maksiminopeudella',
- 'moderation' => 'maltillisuus',
- 'movies' => 'Elokuvat',
- 'mvp' => 'MVP',
- 'my-active-torrents' => 'Aktiiviset torrentit',
- 'name' => 'Nimi',
- 'no-bookmarks' => 'Kirjanmerkkejä ei löytynyt.',
- 'no-discounts' => 'Tällä hetkellä ei alennuksia',
- 'no-meta' => 'Metatietoja ei löytynyt',
- 'no-privileges' => 'Et voi ladata tätä tiedostoa - tarkista lisätietoja alla olevasta kohdasta',
- 'no-privileges-desc' => 'Ratkaise ylläolevat epäonnistuneet tulokset latauspainikkeen näyttämiseksi',
- 'not-completed' => 'Aloitettu lataaminen mutta ei koskaan valmis',
- 'not-downloaded' => 'Ei ladattu',
- 'old-torrent' => 'Vanha torrent',
- 'optional' => 'Valinnainen',
- 'original-output' => 'Näytä / piilota alkuperäinen lähtö',
- 'participant' => 'osallistuja',
- 'passed' => 'läpäissyt',
- 'peers' => 'Peers',
- 'pending' => 'odotettaessa',
- 'personal-freeleech' => 'Henkilökohtainen Freeleech',
- 'poster' => 'Juliste',
- 'poster-view' => 'Julisteenäkymä',
- 'posters' => 'Julisteet',
- 'prewarn' => 'Prewarned?',
- 'progress' => 'edistyminen',
- 'quick-comment' => 'Nopea kommentti',
- 'quick-tip' => 'Nopeat kärjen määrät',
- 'rated' => 'Nimellinen',
- 'rating' => 'luokitus',
- 'ready' => 'Tämä tiedosto on valmis lataamaan',
- 'rejected' => 'hylätty',
- 'released' => 'julkaisi',
- 'remaining' => 'Jäljelle jäänyt',
- 'request-reseed' => 'Pyydä Reseed',
- 'requires-reseed' => 'Vaatii Reseediä',
- 'resurrections' => 'ylösnousemuksen',
- 'revoke' => 'Peruuttaa',
- 'rss' => 'RSS',
- 'runtime' => 'runtime',
- 'satisfied_in' => 'Tyytyväinen',
- 'say-thanks' => 'Muista sanoa kiitos ja siemenet niin kauan kuin voit',
- 'sd-content' => 'SD-sisältö',
- 'search' => 'Hae',
- 'seed-time' => 'Seed-aika',
- 'seeder' => 'seeder',
- 'seeders' => 'Seeders',
- 'seeding' => 'kylvö',
- 'seedsize' => 'Seedsize',
- 'seedtime' => 'Seedtime',
- 'short-completed' => 'C',
- 'short-leechs' => 'L',
- 'short-seeds' => 'S',
- 'show-files' => 'Näytä tiedostot',
- 'similar' => 'Samankaltaiset torrentit',
- 'size' => 'Koko',
- 'special' => 'erityinen',
- 'special-freeleech' => 'Erityinen Freeleech',
- 'started' => 'aloitti',
- 'status' => 'Status',
- 'statistics' => 'tilasto',
- 'stats' => 'tilastot',
- 'sticky' => 'Sticky',
- 'stream-optimized' => 'Stream optimoitu',
- 'subtitle' => 'alaotsikko',
- 'team-player' => 'Joukkuepelaaja',
- 'thank' => 'Kiittää',
- 'thanked' => 'kiitti',
- 'thanks' => 'Kiitos',
- 'thanks-given' => 'Kiitos',
- 'times' => 'Ajat',
- 'tip-jar' => 'Tippipurkki',
- 'title' => 'otsikko',
- 'titles' => 'nimikkeet',
- 'top-completed' => 'Ylös valmistunut',
- 'top-dead' => 'Top kuollut',
- 'top-dying' => 'Top kuolee',
- 'top-leeched' => 'Huippuluokassa',
- 'top-seeded' => 'Top kylvetty',
- 'torrent' => 'ryöppy',
- 'torrent-request' => 'Torrentin pyyntö',
- 'torrent-tips' => 'Yhteensä : yhteensä BON on käännetty lataajaan, josta : käyttäjä on sinulta',
- 'torrent-tips-desc' => 'Tämä vähennetään käytettävissä olevista bonuspisteistä',
- 'torrents' => 'torrentit',
- 'trailer' => 'Näytä perävaunu',
- 'type' => 'Tyyppi',
- 'types' => 'Tyypit',
- 'unbookmark' => 'Unbookmark',
- 'unsatisfieds' => 'Unsatisfieds',
- 'unsticky' => 'Unsticky',
- 'updated' => 'Päivitetty',
- 'updated_at' => 'Päivitetty osoitteessa',
- 'uploaded' => 'Ladattu',
- 'uploaded-by' => 'Lähetetty',
- 'uploader' => 'Lähettäjä',
- 'use-fl-token' => 'Käytä Freeleech-merkkiä',
- 'video' => 'Video',
- 'view-more' => 'Katso lisää',
- 'view-trailer' => 'Näytä perävaunu',
- 'votes' => 'ääntä',
+ 'grouping-results' => 'Tulosten ryhmittely',
+ 'groupings-view' => 'Ryhmien näkymä',
+ 'have-completed' => 'valmistunut',
+ 'have-downloaded' => 'ladattu',
+ 'have-not-completed' => 'Ei valmis',
+ 'have-not-downloaded' => 'Ei ladattu',
+ 'health' => 'terveys',
+ 'history' => 'Historia',
+ 'hitrun' => 'H & R?',
+ 'hit-and-runs' => 'Hit ja Suorita laskee',
+ 'immune' => 'Immuuni?',
+ 'info' => 'Tiedot',
+ 'internal' => 'sisäinen',
+ 'internal-release' => 'Sisäinen julkaisu',
+ 'last-seed-activity' => 'Viimeinen siementoiminta',
+ 'last-seeder' => 'Olet viimeinen jäljellä oleva kylvö! (on ladattu vähintään 3 kertaa)',
+ 'last-update' => 'Viimeisin päivitys',
+ 'leave-tip' => 'Jätä kärki',
+ 'leecher' => 'leecher',
+ 'leechers' => 'Leechers',
+ 'leeching' => 'leeching',
+ 'left' => 'vasen',
+ 'legendary-seeder' => 'Legendaarinen kylvö',
+ 'legendary-torrent' => 'Legendaarinen torrent',
+ 'list' => 'Lista',
+ 'me' => 'Minulle',
+ 'media-info' => 'MediaInfo',
+ 'media-info-parser' => 'MediaInfo Parser',
+ 'media-info-paste' => 'Liitä MediaInfo-polku tähän',
+ 'meta-desc' => 'Lataa: nimi maksiminopeudella',
+ 'moderation' => 'maltillisuus',
+ 'movies' => 'Elokuvat',
+ 'mvp' => 'MVP',
+ 'my-active-torrents' => 'Aktiiviset torrentit',
+ 'name' => 'Nimi',
+ 'no-bookmarks' => 'Kirjanmerkkejä ei löytynyt.',
+ 'no-discounts' => 'Tällä hetkellä ei alennuksia',
+ 'no-meta' => 'Metatietoja ei löytynyt',
+ 'no-privileges' => 'Et voi ladata tätä tiedostoa - tarkista lisätietoja alla olevasta kohdasta',
+ 'no-privileges-desc' => 'Ratkaise ylläolevat epäonnistuneet tulokset latauspainikkeen näyttämiseksi',
+ 'not-completed' => 'Aloitettu lataaminen mutta ei koskaan valmis',
+ 'not-downloaded' => 'Ei ladattu',
+ 'old-torrent' => 'Vanha torrent',
+ 'optional' => 'Valinnainen',
+ 'original-output' => 'Näytä / piilota alkuperäinen lähtö',
+ 'participant' => 'osallistuja',
+ 'passed' => 'läpäissyt',
+ 'peers' => 'Peers',
+ 'pending' => 'odotettaessa',
+ 'personal-freeleech' => 'Henkilökohtainen Freeleech',
+ 'poster' => 'Juliste',
+ 'poster-view' => 'Julisteenäkymä',
+ 'posters' => 'Julisteet',
+ 'prewarn' => 'Prewarned?',
+ 'progress' => 'edistyminen',
+ 'quick-comment' => 'Nopea kommentti',
+ 'quick-tip' => 'Nopeat kärjen määrät',
+ 'rated' => 'Nimellinen',
+ 'rating' => 'luokitus',
+ 'ready' => 'Tämä tiedosto on valmis lataamaan',
+ 'rejected' => 'hylätty',
+ 'released' => 'julkaisi',
+ 'remaining' => 'Jäljelle jäänyt',
+ 'request-reseed' => 'Pyydä Reseed',
+ 'requires-reseed' => 'Vaatii Reseediä',
+ 'resurrections' => 'ylösnousemuksen',
+ 'revoke' => 'Peruuttaa',
+ 'rss' => 'RSS',
+ 'runtime' => 'runtime',
+ 'satisfied_in' => 'Tyytyväinen',
+ 'say-thanks' => 'Muista sanoa kiitos ja siemenet niin kauan kuin voit',
+ 'sd-content' => 'SD-sisältö',
+ 'search' => 'Hae',
+ 'seed-time' => 'Seed-aika',
+ 'seeder' => 'seeder',
+ 'seeders' => 'Seeders',
+ 'seeding' => 'kylvö',
+ 'seedsize' => 'Seedsize',
+ 'seedtime' => 'Seedtime',
+ 'short-completed' => 'C',
+ 'short-leechs' => 'L',
+ 'short-seeds' => 'S',
+ 'show-files' => 'Näytä tiedostot',
+ 'similar' => 'Samankaltaiset torrentit',
+ 'size' => 'Koko',
+ 'special' => 'erityinen',
+ 'special-freeleech' => 'Erityinen Freeleech',
+ 'started' => 'aloitti',
+ 'status' => 'Status',
+ 'statistics' => 'tilasto',
+ 'stats' => 'tilastot',
+ 'sticky' => 'Sticky',
+ 'stream-optimized' => 'Stream optimoitu',
+ 'subtitle' => 'alaotsikko',
+ 'team-player' => 'Joukkuepelaaja',
+ 'thank' => 'Kiittää',
+ 'thanked' => 'kiitti',
+ 'thanks' => 'Kiitos',
+ 'thanks-given' => 'Kiitos',
+ 'times' => 'Ajat',
+ 'tip-jar' => 'Tippipurkki',
+ 'title' => 'otsikko',
+ 'titles' => 'nimikkeet',
+ 'top-completed' => 'Ylös valmistunut',
+ 'top-dead' => 'Top kuollut',
+ 'top-dying' => 'Top kuolee',
+ 'top-leeched' => 'Huippuluokassa',
+ 'top-seeded' => 'Top kylvetty',
+ 'torrent' => 'ryöppy',
+ 'torrent-request' => 'Torrentin pyyntö',
+ 'torrent-tips' => 'Yhteensä : yhteensä BON on käännetty lataajaan, josta : käyttäjä on sinulta',
+ 'torrent-tips-desc' => 'Tämä vähennetään käytettävissä olevista bonuspisteistä',
+ 'torrents' => 'torrentit',
+ 'trailer' => 'Näytä perävaunu',
+ 'type' => 'Tyyppi',
+ 'types' => 'Tyypit',
+ 'unbookmark' => 'Unbookmark',
+ 'unsatisfieds' => 'Unsatisfieds',
+ 'unsticky' => 'Unsticky',
+ 'updated' => 'Päivitetty',
+ 'updated_at' => 'Päivitetty osoitteessa',
+ 'uploaded' => 'Ladattu',
+ 'uploaded-by' => 'Lähetetty',
+ 'uploader' => 'Lähettäjä',
+ 'use-fl-token' => 'Käytä Freeleech-merkkiä',
+ 'video' => 'Video',
+ 'view-more' => 'Katso lisää',
+ 'view-trailer' => 'Näytä perävaunu',
+ 'votes' => 'ääntä',
];
diff --git a/lang/fi/user.php b/lang/fi/user.php
index 4971305e5..27587422d 100644
--- a/lang/fi/user.php
+++ b/lang/fi/user.php
@@ -12,316 +12,316 @@
*/
return [
- 'about' => 'Noin',
- 'about-me' => 'Minusta',
- 'accepted-at' => 'Hyväksytty osoitteessa',
- 'accepted-by' => 'Hyväksytty',
- 'account-notification' => 'Tilin ilmoituksen asetukset',
- 'account-notification-follow' => 'Vastaanota ilmoitus, kun käyttäjä seuraa tiliäsi',
- 'account-notification-unfollow' => 'Vastaanota ilmoitus, kun käyttäjä purkaa tilin',
- 'account-notification-help' => 'Hallitse, mitkä ilmoitukset lähetetään tililtäsi. Nämä asetukset ohitetaan, jos et salli yhtään ryhmää lähettää ilmoituksia tilistäsi tai jos poistat ilmoitukset käytöstä',
- 'account-settings' => 'Tilin asetukset',
- 'achievement-privacy' => 'Saavutuksen asetukset',
- 'achievement-privacy-list' => 'Salli käyttäjien tarkastella saavutuksiasi',
- 'achievement-help' => 'Ohjaa tietyn saavutukseen liittyvän tiedon jakamista ryhmien kanssa, joiden sallitaan käyttää profiiliasi. Nämä asetukset ohitetaan, jos et salli yhtään ryhmää pääsemään saavutuksiin tai jos siirryt yksityiseen',
- 'achievements' => 'saavutukset',
- 'active' => 'aktiivinen',
- 'active-table' => 'Oma aktiivinen taulukko',
- 'active-torrents' => 'Aktiiviset torrentit',
- 'active-warning' => 'Aktiivinen varoitus',
- 'active-warnings' => 'Aktiiviset varoitukset',
- 'add-seedbox' => 'Lisää Seedbox',
- 'all-torrents' => 'Kaikki torrentit',
- 'article-comments' => 'Artikkelin kommentit tehty',
- 'avatar' => 'avatar',
- 'avg-seedtime' => 'Keskimääräinen kylvöaika',
- 'badges' => 'Merkit',
- 'ban' => 'Estä käyttäjä',
- 'ban-log' => 'Ban Log',
- 'become-hidden' => 'Hanki piilotettu',
- 'become-visible' => 'Tule näkyviin',
- 'bon' => 'BON',
- 'bon-notification' => 'BON-ilmoitusasetukset',
- 'bon-notification-gift' => 'Saat ilmoituksen, kun käyttäjä lahjoittaa sinulle bonuksen',
- 'bon-notification-help' => 'Valvonta, mitkä ilmoitukset lähetetään BON-tapahtumista. Nämä asetukset ohitetaan, jos et salli yhtään ryhmää lähettämään BON-ilmoituksia tai jos poistat ilmoitukset käytöstä',
- 'bookmarks' => 'kirjanmerkit',
- 'bounty-given' => 'Bounty annetaan',
- 'bounty-received' => 'Bounty Received',
- 'can-chat' => 'Voi keskustella',
- 'can-comment' => 'Voi kommentoida',
- 'can-download' => 'Voi ladata',
- 'can-invite' => 'Voi kutsua',
- 'can-request' => 'Voi pyytää',
- 'can-upload' => 'Voi lähettää',
- 'certified-banker' => 'Sertifioitu pankkiiri',
- 'certified-banker-desc' => 'On 50 000 tai enemmän BON Bankissa',
- 'certified-downloader' => 'Sertifioitu Downloader',
- 'certified-downloader-desc' => 'Ladattu 100 tai enemmän torrentia!',
- 'certified-seeder' => 'Sertifioitu kylvö',
- 'certified-seeder-desc' => 'Kylvö 150 tai enemmän torrenteja!',
- 'change-email' => 'Vaihda sähköposti',
- 'change-email-help' => 'Sinun on vahvistettava tilisi uudelleen, kun olet muuttanut sähköpostiosoitettasi',
- 'change-password' => 'Vaihda salasana',
- 'change-password-help' => 'Sinun täytyy kirjautua uudelleen, kun olet vaihtanut salasanasi',
- 'client-ip-address' => 'Asiakkaan IP-osoite',
- 'code' => 'Koodi',
- 'comments' => 'Kommentit',
- 'created-on' => 'Luotu',
- 'credited-download' => 'Luotettu lataus',
- 'credited-upload' => 'Luotettu lataus',
- 'current-password' => 'Nykyinen salasana',
- 'custom-title' => 'Mukautettu otsikko',
- 'delete' => 'Poista käyttäjä',
- 'disable-notifications' => 'Poista ilmoitukset käytöstä',
- 'disclaimer' => 'Vastuuvapauslauseke',
- 'disclaimer-info' => 'Emme ole oletusarvoisesti kirjautuneet käyttäjien IP-osoitteet kuten useimmat seurantajat. Lisäämällä siemensyöttösi IP: n alla on odotettavissa, että tiedät, että alla luetellut IP-tiedostot on nyt tallennettu tietokantaamme, ellet poista tietueita.',
- 'disclaimer-info-bordered' => 'Seedbox IP: t lisätään sitten käynnistämään nopean torrent-tunnuksen alla luetelluista IP-osoitteista',
- 'download-bon' => 'Lataa poistettu BON Storesta',
- 'download-recorded' => 'Tallennettu lataus',
- 'download-true' => 'Todellinen lataus',
- 'downloads' => 'Lataukset',
- 'edit' => 'Muokkaa käyttäjää',
- 'edit-profile' => 'Muokkaa profiilia',
- 'enable-notifications' => 'Salli ilmoitukset',
- 'expired' => 'Vanhentunut',
- 'expires-on' => 'Vanhenee',
- 'extra' => 'ylimääräinen',
- 'filled-request' => 'Täytetyt jäsenten pyynnöt',
- 'follow' => 'seurata',
- 'follower-privacy' => 'Seuraajan asetukset',
- 'follower-privacy-list' => 'Salli käyttäjien katsoa luetteloa seuraajistasi',
- 'follower-help' => 'Hallitse tiettyjen seuraajatietojen jakamista ryhmien kanssa, joiden sallitaan käyttää profiiliasi. Nämä asetukset ohitetaan, jos et salli yhtään ryhmää pääsemään seuraajiin tai jos siirryt yksityisiksi',
- 'followers' => 'seuraajaa',
- 'following-notification' => 'Seuratut käyttäjän ilmoitusasetukset',
- 'following-notification-upload' => 'Vastaanota ilmoitus, kun seuraava käyttäjä lataa torrentin',
- 'following-notification-help' => 'Ohjaa, mitkä ilmoitukset lähetetään seuraavien käyttäjäkohtaisten toimien osalta. Nämä asetukset ohitetaan, jos et salli yhtään ryhmää lähettää ilmoituksia seuraavista käyttäjistä tai jos poistat ilmoitukset käytöstä',
- 'formats-are-supported' => ': tiedostomuotoja tuetaan',
- 'forum-notification' => 'Foorumin ilmoitusasetukset',
- 'forum-notification-topic' => 'Vastaanota ilmoitus, kun aloitettu aihe saa uuden viestin',
- 'forum-notification-help' => 'Hallitse, mitkä ilmoitukset lähetetään foorumin toiminnasta. Nämä asetukset ohitetaan, jos et salli yhtään ryhmää lähettää ilmoituksia foorumin toiminnoista tai jos poistat ilmoitukset käytöstä',
- 'forum-privacy' => 'Foorumin asetukset',
- 'forum-privacy-post' => 'Salli käyttäjien tarkastella lähettämiesi foorumi-viestien luetteloa',
- 'forum-privacy-topic' => 'Salli käyttäjien tarkastella luetteloa aloitetuista foorumin aiheista',
- 'forum-help' => 'Hallitse tiettyjen foorumiin liittyvien tilastojen ja tietojen jakamista ryhmien kanssa, joilla on oikeus käyttää profiiliasi. Nämä asetukset ohitetaan, jos et salli ryhmien pääsyä foorumiin liittyviin tilastoihin ja tietoihin tai jos siirryt yksityisiksi',
- 'forum-signature' => 'Foorumin allekirjoitus',
- 'forums' => 'foorumit',
- 'general' => 'yleinen',
- 'general-settings' => 'Yleiset asetukset',
- 'gift-given' => 'Lahja annetaan',
- 'gift-received' => 'Lahja vastaanotettu',
- 'go-public' => 'Siirry julkisesti',
- 'go-private' => 'Siirry yksityiseksi',
- 'history' => 'Historia',
- 'history-table' => 'Oma historia -taulukko',
- 'hit-n-runs' => 'Hit ja ajaa',
- 'hit-n-runs-count' => 'Hit ja juoksumäärä (kaikki aika)',
- 'hit-n-runs-history' => 'Torrent Hit ja ajaa historiaa',
- 'image' => 'Kuva',
- 'important' => 'Tärkeä',
- 'important-info' => 'Tärkeää tietoa',
- 'information' => 'Tiedot',
- 'invite-friend' => 'Kutsu ystäväsi (sähköposti + viesti vaaditaan)',
- 'invite-tree' => 'Kutsu puu',
- 'invites' => 'kutsut',
- 'invites-banned' => 'Virhe: kutsutut oikeudet on poistettu käytöstä',
- 'invites-banned-desc' => 'Jos tunnet sen olevan virhe, ota yhteyttä henkilökuntaan!',
- 'invites-count' => 'Sinulla on: laskea kutsumerkit',
- 'invites-disabled' => 'Huomio: kutsut on poistettu käytöstä avoimen rekisteröinnin vuoksi!',
- 'invites-disabled-desc' => 'Tarkista takaisin pian!',
- 'invites-rules' => '- Kutsu vain ihmisiä, joita tiedät ja luotat.
- Sinua pidetään henkilökohtaisesti vastuussa kutsutuista.
- Älä kutsu itseäsi, tarkistamme jokaisen kutsutun käyttäjän.
- Älä myy tai myy kauppaa.
- Jos kutsutut henkilöt joutuvat huijaukseen, kaupankäyntitiliin tai myyntiin / kaupankäyntiin, sinua varoitetaan.
',
- 'invites-send' => 'Kutsu Lähetä',
- 'last-login' => 'Viimeinen kirjautuminen',
- 'locked' => 'kiinni',
- 'locked-achievements' => 'Lukitut saavutukset',
- 'member-since' => 'Jäsen vuodesta',
- 'members-desc' => 'Luettelo käyttäjistä, jotka on rekisteröity: otsikko kaikkien ryhmien kanssa. Etsi käyttäjä nyt.',
- 'mention-notification' => '@Mention Notification Settings',
+ 'about' => 'Noin',
+ 'about-me' => 'Minusta',
+ 'accepted-at' => 'Hyväksytty osoitteessa',
+ 'accepted-by' => 'Hyväksytty',
+ 'account-notification' => 'Tilin ilmoituksen asetukset',
+ 'account-notification-follow' => 'Vastaanota ilmoitus, kun käyttäjä seuraa tiliäsi',
+ 'account-notification-unfollow' => 'Vastaanota ilmoitus, kun käyttäjä purkaa tilin',
+ 'account-notification-help' => 'Hallitse, mitkä ilmoitukset lähetetään tililtäsi. Nämä asetukset ohitetaan, jos et salli yhtään ryhmää lähettää ilmoituksia tilistäsi tai jos poistat ilmoitukset käytöstä',
+ 'account-settings' => 'Tilin asetukset',
+ 'achievement-privacy' => 'Saavutuksen asetukset',
+ 'achievement-privacy-list' => 'Salli käyttäjien tarkastella saavutuksiasi',
+ 'achievement-help' => 'Ohjaa tietyn saavutukseen liittyvän tiedon jakamista ryhmien kanssa, joiden sallitaan käyttää profiiliasi. Nämä asetukset ohitetaan, jos et salli yhtään ryhmää pääsemään saavutuksiin tai jos siirryt yksityiseen',
+ 'achievements' => 'saavutukset',
+ 'active' => 'aktiivinen',
+ 'active-table' => 'Oma aktiivinen taulukko',
+ 'active-torrents' => 'Aktiiviset torrentit',
+ 'active-warning' => 'Aktiivinen varoitus',
+ 'active-warnings' => 'Aktiiviset varoitukset',
+ 'add-seedbox' => 'Lisää Seedbox',
+ 'all-torrents' => 'Kaikki torrentit',
+ 'article-comments' => 'Artikkelin kommentit tehty',
+ 'avatar' => 'avatar',
+ 'avg-seedtime' => 'Keskimääräinen kylvöaika',
+ 'badges' => 'Merkit',
+ 'ban' => 'Estä käyttäjä',
+ 'ban-log' => 'Ban Log',
+ 'become-hidden' => 'Hanki piilotettu',
+ 'become-visible' => 'Tule näkyviin',
+ 'bon' => 'BON',
+ 'bon-notification' => 'BON-ilmoitusasetukset',
+ 'bon-notification-gift' => 'Saat ilmoituksen, kun käyttäjä lahjoittaa sinulle bonuksen',
+ 'bon-notification-help' => 'Valvonta, mitkä ilmoitukset lähetetään BON-tapahtumista. Nämä asetukset ohitetaan, jos et salli yhtään ryhmää lähettämään BON-ilmoituksia tai jos poistat ilmoitukset käytöstä',
+ 'bookmarks' => 'kirjanmerkit',
+ 'bounty-given' => 'Bounty annetaan',
+ 'bounty-received' => 'Bounty Received',
+ 'can-chat' => 'Voi keskustella',
+ 'can-comment' => 'Voi kommentoida',
+ 'can-download' => 'Voi ladata',
+ 'can-invite' => 'Voi kutsua',
+ 'can-request' => 'Voi pyytää',
+ 'can-upload' => 'Voi lähettää',
+ 'certified-banker' => 'Sertifioitu pankkiiri',
+ 'certified-banker-desc' => 'On 50 000 tai enemmän BON Bankissa',
+ 'certified-downloader' => 'Sertifioitu Downloader',
+ 'certified-downloader-desc' => 'Ladattu 100 tai enemmän torrentia!',
+ 'certified-seeder' => 'Sertifioitu kylvö',
+ 'certified-seeder-desc' => 'Kylvö 150 tai enemmän torrenteja!',
+ 'change-email' => 'Vaihda sähköposti',
+ 'change-email-help' => 'Sinun on vahvistettava tilisi uudelleen, kun olet muuttanut sähköpostiosoitettasi',
+ 'change-password' => 'Vaihda salasana',
+ 'change-password-help' => 'Sinun täytyy kirjautua uudelleen, kun olet vaihtanut salasanasi',
+ 'client-ip-address' => 'Asiakkaan IP-osoite',
+ 'code' => 'Koodi',
+ 'comments' => 'Kommentit',
+ 'created-on' => 'Luotu',
+ 'credited-download' => 'Luotettu lataus',
+ 'credited-upload' => 'Luotettu lataus',
+ 'current-password' => 'Nykyinen salasana',
+ 'custom-title' => 'Mukautettu otsikko',
+ 'delete' => 'Poista käyttäjä',
+ 'disable-notifications' => 'Poista ilmoitukset käytöstä',
+ 'disclaimer' => 'Vastuuvapauslauseke',
+ 'disclaimer-info' => 'Emme ole oletusarvoisesti kirjautuneet käyttäjien IP-osoitteet kuten useimmat seurantajat. Lisäämällä siemensyöttösi IP: n alla on odotettavissa, että tiedät, että alla luetellut IP-tiedostot on nyt tallennettu tietokantaamme, ellet poista tietueita.',
+ 'disclaimer-info-bordered' => 'Seedbox IP: t lisätään sitten käynnistämään nopean torrent-tunnuksen alla luetelluista IP-osoitteista',
+ 'download-bon' => 'Lataa poistettu BON Storesta',
+ 'download-recorded' => 'Tallennettu lataus',
+ 'download-true' => 'Todellinen lataus',
+ 'downloads' => 'Lataukset',
+ 'edit' => 'Muokkaa käyttäjää',
+ 'edit-profile' => 'Muokkaa profiilia',
+ 'enable-notifications' => 'Salli ilmoitukset',
+ 'expired' => 'Vanhentunut',
+ 'expires-on' => 'Vanhenee',
+ 'extra' => 'ylimääräinen',
+ 'filled-request' => 'Täytetyt jäsenten pyynnöt',
+ 'follow' => 'seurata',
+ 'follower-privacy' => 'Seuraajan asetukset',
+ 'follower-privacy-list' => 'Salli käyttäjien katsoa luetteloa seuraajistasi',
+ 'follower-help' => 'Hallitse tiettyjen seuraajatietojen jakamista ryhmien kanssa, joiden sallitaan käyttää profiiliasi. Nämä asetukset ohitetaan, jos et salli yhtään ryhmää pääsemään seuraajiin tai jos siirryt yksityisiksi',
+ 'followers' => 'seuraajaa',
+ 'following-notification' => 'Seuratut käyttäjän ilmoitusasetukset',
+ 'following-notification-upload' => 'Vastaanota ilmoitus, kun seuraava käyttäjä lataa torrentin',
+ 'following-notification-help' => 'Ohjaa, mitkä ilmoitukset lähetetään seuraavien käyttäjäkohtaisten toimien osalta. Nämä asetukset ohitetaan, jos et salli yhtään ryhmää lähettää ilmoituksia seuraavista käyttäjistä tai jos poistat ilmoitukset käytöstä',
+ 'formats-are-supported' => ': tiedostomuotoja tuetaan',
+ 'forum-notification' => 'Foorumin ilmoitusasetukset',
+ 'forum-notification-topic' => 'Vastaanota ilmoitus, kun aloitettu aihe saa uuden viestin',
+ 'forum-notification-help' => 'Hallitse, mitkä ilmoitukset lähetetään foorumin toiminnasta. Nämä asetukset ohitetaan, jos et salli yhtään ryhmää lähettää ilmoituksia foorumin toiminnoista tai jos poistat ilmoitukset käytöstä',
+ 'forum-privacy' => 'Foorumin asetukset',
+ 'forum-privacy-post' => 'Salli käyttäjien tarkastella lähettämiesi foorumi-viestien luetteloa',
+ 'forum-privacy-topic' => 'Salli käyttäjien tarkastella luetteloa aloitetuista foorumin aiheista',
+ 'forum-help' => 'Hallitse tiettyjen foorumiin liittyvien tilastojen ja tietojen jakamista ryhmien kanssa, joilla on oikeus käyttää profiiliasi. Nämä asetukset ohitetaan, jos et salli ryhmien pääsyä foorumiin liittyviin tilastoihin ja tietoihin tai jos siirryt yksityisiksi',
+ 'forum-signature' => 'Foorumin allekirjoitus',
+ 'forums' => 'foorumit',
+ 'general' => 'yleinen',
+ 'general-settings' => 'Yleiset asetukset',
+ 'gift-given' => 'Lahja annetaan',
+ 'gift-received' => 'Lahja vastaanotettu',
+ 'go-public' => 'Siirry julkisesti',
+ 'go-private' => 'Siirry yksityiseksi',
+ 'history' => 'Historia',
+ 'history-table' => 'Oma historia -taulukko',
+ 'hit-n-runs' => 'Hit ja ajaa',
+ 'hit-n-runs-count' => 'Hit ja juoksumäärä (kaikki aika)',
+ 'hit-n-runs-history' => 'Torrent Hit ja ajaa historiaa',
+ 'image' => 'Kuva',
+ 'important' => 'Tärkeä',
+ 'important-info' => 'Tärkeää tietoa',
+ 'information' => 'Tiedot',
+ 'invite-friend' => 'Kutsu ystäväsi (sähköposti + viesti vaaditaan)',
+ 'invite-tree' => 'Kutsu puu',
+ 'invites' => 'kutsut',
+ 'invites-banned' => 'Virhe: kutsutut oikeudet on poistettu käytöstä',
+ 'invites-banned-desc' => 'Jos tunnet sen olevan virhe, ota yhteyttä henkilökuntaan!',
+ 'invites-count' => 'Sinulla on: laskea kutsumerkit',
+ 'invites-disabled' => 'Huomio: kutsut on poistettu käytöstä avoimen rekisteröinnin vuoksi!',
+ 'invites-disabled-desc' => 'Tarkista takaisin pian!',
+ 'invites-rules' => '- Kutsu vain ihmisiä, joita tiedät ja luotat.
- Sinua pidetään henkilökohtaisesti vastuussa kutsutuista.
- Älä kutsu itseäsi, tarkistamme jokaisen kutsutun käyttäjän.
- Älä myy tai myy kauppaa.
- Jos kutsutut henkilöt joutuvat huijaukseen, kaupankäyntitiliin tai myyntiin / kaupankäyntiin, sinua varoitetaan.
',
+ 'invites-send' => 'Kutsu Lähetä',
+ 'last-login' => 'Viimeinen kirjautuminen',
+ 'locked' => 'kiinni',
+ 'locked-achievements' => 'Lukitut saavutukset',
+ 'member-since' => 'Jäsen vuodesta',
+ 'members-desc' => 'Luettelo käyttäjistä, jotka on rekisteröity: otsikko kaikkien ryhmien kanssa. Etsi käyttäjä nyt.',
+ 'mention-notification' => '@Mention Notification Settings',
'mention-notification-article-comment' => 'Saat ilmoituksen, kun kirjoitat artikkelin kommenttiin',
'mention-notification-torrent-comment' => 'Saat ilmoituksen, kun olet @mentded torrent-kommentissa',
'mention-notification-request-comment' => 'Saat ilmoituksen, kun olet @mentded pyyntö kommentissa',
- 'mention-notification-forum-post' => 'Saat ilmoituksen, kun olet @ forumissa',
- 'mention-notification-help' => 'Hallitse, mitkä ilmoitukset lähetetään, kun käyttäjä @mentions sinua. Nämä asetukset ohitetaan, jos et salli yhtään ryhmää lähettää ilmoituksia, jos käyttäjä @mentions tai jos poistat ilmoitukset käytöstä',
- 'moderated-by' => 'Moderoi: mod on',
- 'my-bonus-points' => 'Bonuspisteet',
- 'my-bookmarks' => 'Omat kirjanmerkit',
- 'my-fl-tokens' => 'Omat FL -merkkini',
- 'my-general-settings' => 'Omat yleiset asetukset',
- 'my-notification' => 'Oma ilmoitus',
- 'my-notification-settings' => 'Oma ilmoitusasetukset',
- 'my-privacy' => 'Oma tietosuoja',
- 'my-privacy-settings' => 'Omat tietosuoja-asetukset',
- 'my-profile' => 'Profiilini',
- 'my-requested' => 'Pyydetty',
- 'my-security' => 'Oma turvallisuus',
- 'my-security-settings' => 'Oma suojausasetukset',
- 'my-seedboxes' => 'My Seedboxes',
- 'my-settings' => 'Asetukseni',
- 'my-wishlist' => 'toivelistani',
- 'no-logs' => 'Tämän käyttäjän tietokannassa ei ole kutsukirjaa!',
- 'no-seedboxes' => 'Ei siemenlaatikoita 😔',
- 'not-authorized' => 'Sinulla ei ole oikeutta tarkastella tätä sivua. Tämä jäsen haluaa olla piilossa kuin ninja!',
- 'note' => 'Huomautus',
- 'notification' => 'ilmoitus',
- 'notification-settings' => 'Ilmoitusasetukset',
- 'notification-from-account' => 'Tilin ilmoitusten vastaanottaminen',
- 'notification-from-account-help' => 'Saat tilitiedotteita järjestelmästä, henkilökunnasta ja seuraavista ryhmistä. Nämä asetukset ohitetaan, jos poistat ilmoitukset käytöstä',
- 'notification-from-bon' => 'Vastaanota BON-ilmoituksia',
- 'notification-from-bon-help' => 'Saat vain BON-ilmoituksia järjestelmästä, henkilöstöstä ja seuraavista ryhmistä. Nämä asetukset ohitetaan, jos poistat ilmoitukset käytöstä',
- 'notification-from-following' => 'Vastaanotettujen käyttäjien ilmoitusten vastaanottaminen',
- 'notification-from-following-help' => 'Saat seuraavia käyttäjäilmoituksia seuraavista ryhmistä. Nämä asetukset ohitetaan, jos poistat ilmoitukset käytöstä',
- 'notification-from-forum' => 'Vastaanota Forum-ilmoituksia',
- 'notification-from-forum-help' => 'Saat ilmoituksia vain järjestelmästä, henkilöstöstä ja seuraavista ryhmistä. Nämä asetukset ohitetaan, jos poistat ilmoitukset käytöstä',
- 'notification-from-subscription' => 'Vastaanota ilmoituksia',
- 'notification-from-subscription-help' => 'Saat ilmoituksia vain järjestelmästä, henkilöstöstä ja seuraavista ryhmistä. Nämä asetukset ohitetaan, jos poistat ilmoitukset käytöstä',
- 'notification-from-torrent' => 'Vastaanota Torrent-ilmoitukset',
- 'notification-from-torrent-help' => 'Saat vain torrent-ilmoituksia järjestelmästä, henkilökunnasta ja seuraavista ryhmistä. Nämä asetukset ohitetaan, jos poistat ilmoitukset käytöstä',
- 'notification-from-mention' => 'Vastaanota @Mention ilmoitukset',
- 'notification-from-mention-help' => 'Saat vain @mention-ilmoituksia järjestelmästä, henkilökunnasta ja seuraavista ryhmistä. Nämä asetukset ohitetaan, jos poistat ilmoitukset käytöstä',
- 'notification-from-request' => 'Vastaanota pyyntöilmoitukset',
- 'notification-from-request-help' => 'Saat vain ilmoituksia järjestelmästä, henkilöstöstä ja seuraavista ryhmistä. Nämä asetukset ohitetaan, jos poistat ilmoitukset käytöstä',
- 'notifications' => 'ilmoitukset',
- 'offline' => 'Käyttäjä on offline-tilassa!',
- 'online' => 'Käyttäjä on online-tilassa!',
- 'options' => 'vaihtoehdot',
- 'other-help' => 'Hallitse muiden tilastojen ja tietojen jakamista ryhmien kanssa, joilla on oikeus käyttää profiiliasi. Nämä asetukset ohitetaan, jos et salli yhtään ryhmää käyttämästä muita tilastojasi ja tietojasi tai jos siirryt yksityiseen',
- 'other-privacy' => 'Muut asetukset',
- 'other-privacy-online' => 'Salli käyttäjien nähdä sinut online-käyttäjien lohkossa',
- 'passkey' => 'PID',
- 'passkey-warning' => 'PID on kuin salasanasi, sinun täytyy pitää se turvallisena!',
- 'pending-achievements' => 'Odottavat saavutukset',
- 'per-torrent' => 'Per Torrent',
- 'posts' => 'Viestejä',
- 'posts-posted' => 'Foorumin viestit lähetetty',
- 'privacy' => 'yksityisyys',
- 'privacy-settings' => 'Tietosuoja-asetukset',
- 'private-info' => 'Yksityinen tieto',
- 'private-forum-profile' => 'Huomio: Tämä jäsenten aihe ja postihistoria on asetettu yksityiselle!',
- 'private-profile' => 'Huomio: Tämä profiili on asetettu PRIVATE!',
- 'profile' => 'Profiili',
- 'profile-desc' => 'Käyttäjä: käyttäjäprofiili on rekisteröity: title',
- 'profile-privacy' => 'Profiilin asetukset',
- 'profile-privacy-torrent-count' => 'Jaa latausten, latausten, siementen ja leechien kokonaismäärä',
- 'profile-privacy-torrent-ratio' => 'Jaa koko lataus- / lataustietosi ja tallennettu suhde',
- 'profile-privacy-torrent-seed' => 'Jaa koko kylvöaika ja keskiarvo',
- 'profile-privacy-title' => 'Jaa henkilökohtaiset nimesi tiedot',
- 'profile-privacy-about' => 'Jaa henkilökohtaiset tiedot minusta',
- 'profile-privacy-bon-extra' => 'Jaa BON-tilastot',
- 'profile-privacy-comment-extra' => 'Jaa kommenttitilastot',
- 'profile-privacy-forum-extra' => 'Jaa foorumin tilastot',
- 'profile-privacy-request-extra' => 'Jaa pyyntösi tilastot',
- 'profile-privacy-torrent-extra' => 'Jaa torrent-tilastot',
- 'profile-privacy-badge' => 'Jaa ansaitut merkit',
- 'profile-privacy-achievement' => 'Jaa viimeisimmät saavutukset',
- 'profile-privacy-follower' => 'Jaa viimeisimmät seuraajat',
- 'profile-privacy-warning' => 'Jaa H & R-varoitukset',
- 'profile-privacy-help' => 'Määritä, mitkä tilastot ja tiedot näkyvät profiilissasi. Nämä asetukset on ohitettu, jos et salli yhtään ryhmää pääsemään profiiliin tai jos siirryt yksityiseen',
- 'public-info' => 'Julkinen tieto',
- 'recent-achievements' => 'Viimeisimmät saavutukset',
- 'recent-followers' => 'Viimeisimmät seuraajat',
- 'registration-date' => 'Rekisteröinti päivämäärä',
- 'report' => 'raportti',
- 'request-help' => 'Hallitse tiettyjen pyyntöihin liittyvien tilastojen ja tietojen jakamista ryhmien kanssa, joiden sallitaan käyttää profiiliasi. Nämä asetukset ohitetaan, jos et salli yhtään ryhmää pääsemästä pyytämiinsi liittyviin tilastoihin ja tietoihin tai jos käytät yksityistä',
- 'request' => 'Pyyntö',
- 'requested' => 'pyydetty',
- 'requests' => 'Pyynnöt',
- 'request-comments' => 'Pyydä kommentteja tehty',
- 'request-notification' => 'Pyydä ilmoitusasetuksia',
- 'request-notification-bounty' => 'Vastaanota ilmoitus, kun pyydetty torrent saa uuden palkkion',
- 'request-notification-comment' => 'Vastaanota ilmoitus, kun pyydetty torrent saa uuden kommentin',
- 'request-notification-fill' => 'Vastaanota ilmoitus, kun pyydetty torrent täytetään',
- 'request-notification-fill-approve' => 'Vastaanota ilmoitus, kun pyydetty torrent-täyttö hyväksytään',
- 'request-notification-fill-reject' => 'Vastaanota ilmoitus, kun pyydetty torrent-täyttö hylätään',
- 'request-notification-claim' => 'Vastaanota ilmoitus, kun pyydettyä torrentia haetaan',
- 'request-notification-unclaim' => 'Vastaanota ilmoitus, kun pyydetty torrent ei hae',
- 'request-notification-help' => 'Hallitse, mitkä ilmoitukset lähetetään pyyntötoiminnoista. Nämä asetukset ohitetaan, jos et salli yhtään ryhmää lähettämään pyyntötoimintoja koskevia ilmoituksia tai jos poistat ilmoitukset käytöstä',
- 'request-privacy' => 'Pyydä asetuksia',
- 'request-privacy-requested' => 'Salli käyttäjien tarkastella tekemäsi pyyntöjen luetteloa',
- 'reset-passkey' => 'Nollaa passiavain (PID)',
- 'reset-passkey-help' => 'Sinun täytyy ladata / ladata uudelleen kaikki aktiiviset torrentit PID-koodin nollaamisen jälkeen',
- 'reset-rss' => 'Palauta RSS-avain (RID)',
- 'reset-rss-help' => 'Sinun täytyy ladata kaikki aktiiviset RSS-syötteet uudelleen, kun RID on palautettu',
- 'resurrections' => 'ylösnousemuksen',
- 'search' => 'Pikahaku käyttäjätunnuksen mukaan',
- 'security' => 'turvallisuus',
- 'security-settings' => 'Turvallisuusasetukset',
- 'seedboxes' => 'Seedboxes',
- 'seeds' => 'Siemenet',
- 'send-invite' => 'Lähetä kutsu',
- 'sender' => 'Lähettäjä',
- 'settings' => 'asetukset',
- 'show-passkey' => 'Näytä PID',
- 'staff-noted' => 'Henkilöstö huomasi tilin',
- 'statistics' => 'tilasto',
- 'subscription-notification' => 'Tilausilmoitusasetukset',
- 'subscription-notification-forum' => 'Saat ilmoituksen, kun tilattu foorumi saa uuden aiheen',
- 'subscription-notification-topic' => 'Vastaanota ilmoitus, kun tilattu aihe saa uuden viestin',
- 'subscription-notification-help' => 'Hallitse, mitkä ilmoitukset lähetetään tilauksistasi. Nämä asetukset ohitetaan, jos et salli yhtään ryhmää lähettämään ilmoituksia tilauksistasi tai jos poistat ilmoitukset käytöstä',
- 'thanks-given' => 'Kiitos',
- 'thanks-received' => 'Kiitos Vastaanotettu',
- 'tips-given' => 'Vinkkejä annetaan',
- 'tips-received' => 'Vinkkejä vastaanotettu',
- 'title' => 'otsikko',
- 'top-bankers' => 'Suosituimmat pankkiirit',
- 'top-downloaders-data' => 'Suosituimmat lataajat (tiedot)',
- 'top-leechers' => 'Top Leechers',
- 'top-leechers-count' => 'Top Leechers (Count)',
- 'top-seeders' => 'Suosituimmat kylvökoneet',
- 'top-seeders-count' => 'Suosituimmat kylvökoneet',
- 'top-seeding-size' => 'Suosituin kylvö (koko)',
- 'top-seedtime' => 'Top Seedtime',
- 'top-uploaders-data' => 'Suosituimmat lähettäjät (tiedot)',
- 'top-uploaders-count' => 'Suosituimmat lähettäjät (Count)',
- 'topics' => 'aiheista',
- 'topics-started' => 'Foorumin aiheet aloitettu',
- 'torrent-comments' => 'Torrentin kommentit tehty',
- 'torrent-help' => 'Hallitse tiettyjen torrentiin liittyvien tilastojen ja tietojen jakamista ryhmien kanssa, joilla on oikeus käyttää profiiliasi. Nämä asetukset ohitetaan, jos et salli yhtään ryhmää pääsemään torrentiin liittyviin tilastoihin ja tietoihin tai jos siirryt yksityisiksi',
- 'torrent-notification' => 'Torrentin ilmoitusasetukset',
- 'torrent-notification-comment' => 'Vastaanota ilmoitus, kun ladattu torrent saa uuden kommentin',
- 'torrent-notification-thank' => 'Saat ilmoituksen, kun ladattu torrent saa uuden kiitoksen',
- 'torrent-notification-tip' => 'Saat ilmoituksen, kun ladattu torrent saa uuden kärjen',
- 'torrent-notification-help' => 'Hallitse, mitkä ilmoitukset lähetetään torrent-toiminnoista. Nämä asetukset ohitetaan, jos et salli yhtään ryhmää lähettää ilmoituksia torrent-toiminnoista tai jos poistat ilmoitukset käytöstä',
- 'torrent-privacy' => 'Torrentin asetukset',
- 'torrent-privacy-download' => 'Salli käyttäjien tarkastella ladattujen torrentien luetteloa',
- 'torrent-privacy-upload' => 'Salli käyttäjien tarkastella lataamiasi torrenteja',
- 'torrent-privacy-peer' => 'Salli käyttäjien nähdä sinut torrent-peer history -taulukossa',
- 'torrents' => 'torrentit',
- 'torrents-history' => 'Torrents-historia',
- 'total-download' => 'Lataus yhteensä',
- 'total-downloads' => 'Latauksia yhteensä',
- 'total-leeching' => 'Yhteensä Leeching',
- 'total-seeding' => 'Kylvö yhteensä',
- 'total-seedtime' => 'Yhteensä Seedtime',
- 'total-upload' => 'Lataus yhteensä',
- 'total-uploads' => 'Latauksia yhteensä',
- 'unban' => 'Poista käyttäjä',
- 'unfollow' => 'Älä',
- 'unlocked' => 'auki',
- 'unlocked-achievements' => 'Avaamattomat saavutukset',
- 'unsatisfieds' => 'Unsatisfieds',
- 'upload-bon' => 'Lataa BON Storesta',
- 'upload-recorded' => 'Tallennettu lähetys',
- 'upload-true' => 'Todellinen lataus',
- 'uploads' => 'lisäykset',
- 'uploads-table' => 'Latausten taulukko',
- 'user' => 'käyttäjä',
- 'user-id' => 'käyttäjätunnus',
- 'username-seedbox' => 'Käyttäjätunnus Seedbox',
- 'visible-to-achievement' => 'Saavutukset näkyvät',
- 'visible-to-achievement-help' => 'Saavutuksesi näkyvät vain henkilöstölle ja seuraaville ryhmille. Nämä asetukset ohitetaan, jos siirryt yksityiseen',
- 'visible-to-follower' => 'Seuraajat näkyvät',
- 'visible-to-follower-help' => 'Seuraajasi näkyvät vain henkilökunnalle ja seuraaville ryhmille. Nämä asetukset ohitetaan, jos siirryt yksityiseen',
- 'visible-to-forum' => 'Foorumin tiedot näkyvät',
- 'visible-to-forum-help' => 'Foorumin tiedot näkyvät vain henkilöstölle ja seuraaville ryhmille. Nämä asetukset ohitetaan, jos siirryt yksityiseen',
- 'visible-to-other' => 'Muu näkyvä',
- 'visible-to-other-help' => 'Muita tietoja tilistäsi näkyvät vain henkilöstö ja seuraavat ryhmät. Nämä asetukset ohitetaan, jos siirryt yksityiseen tilaan tai jos siirryt piilotettuun',
- 'visible-to-profile' => 'Profiili näkyvä',
- 'visible-to-profile-help' => 'Profiilisi näkyy vain henkilökunnalle ja seuraaville ryhmille. Nämä asetukset ohitetaan, jos siirryt yksityiseen',
- 'visible-to-request' => 'Pyydä tietoja näkyvissä',
- 'visible-to-request-help' => 'Pyyntötietosi näkyvät vain henkilöstölle ja seuraaville ryhmille. Nämä asetukset ohitetaan, jos siirryt yksityiseen',
- 'visible-to-torrent' => 'Torrentin tiedot näkyvät',
- 'visible-to-torrent-help' => 'Torrent-tiedot näkyvät vain henkilökunnalle ja seuraaville ryhmille. Nämä asetukset ohitetaan, jos siirryt yksityiseen tilaan tai jos siirryt piilotettuun',
- 'warned-on' => 'Varoitettu',
- 'warning' => 'Varoitus',
- 'warning-log' => 'Varoitusloki',
- 'wishlist' => 'toivelista',
+ 'mention-notification-forum-post' => 'Saat ilmoituksen, kun olet @ forumissa',
+ 'mention-notification-help' => 'Hallitse, mitkä ilmoitukset lähetetään, kun käyttäjä @mentions sinua. Nämä asetukset ohitetaan, jos et salli yhtään ryhmää lähettää ilmoituksia, jos käyttäjä @mentions tai jos poistat ilmoitukset käytöstä',
+ 'moderated-by' => 'Moderoi: mod on',
+ 'my-bonus-points' => 'Bonuspisteet',
+ 'my-bookmarks' => 'Omat kirjanmerkit',
+ 'my-fl-tokens' => 'Omat FL -merkkini',
+ 'my-general-settings' => 'Omat yleiset asetukset',
+ 'my-notification' => 'Oma ilmoitus',
+ 'my-notification-settings' => 'Oma ilmoitusasetukset',
+ 'my-privacy' => 'Oma tietosuoja',
+ 'my-privacy-settings' => 'Omat tietosuoja-asetukset',
+ 'my-profile' => 'Profiilini',
+ 'my-requested' => 'Pyydetty',
+ 'my-security' => 'Oma turvallisuus',
+ 'my-security-settings' => 'Oma suojausasetukset',
+ 'my-seedboxes' => 'My Seedboxes',
+ 'my-settings' => 'Asetukseni',
+ 'my-wishlist' => 'toivelistani',
+ 'no-logs' => 'Tämän käyttäjän tietokannassa ei ole kutsukirjaa!',
+ 'no-seedboxes' => 'Ei siemenlaatikoita 😔',
+ 'not-authorized' => 'Sinulla ei ole oikeutta tarkastella tätä sivua. Tämä jäsen haluaa olla piilossa kuin ninja!',
+ 'note' => 'Huomautus',
+ 'notification' => 'ilmoitus',
+ 'notification-settings' => 'Ilmoitusasetukset',
+ 'notification-from-account' => 'Tilin ilmoitusten vastaanottaminen',
+ 'notification-from-account-help' => 'Saat tilitiedotteita järjestelmästä, henkilökunnasta ja seuraavista ryhmistä. Nämä asetukset ohitetaan, jos poistat ilmoitukset käytöstä',
+ 'notification-from-bon' => 'Vastaanota BON-ilmoituksia',
+ 'notification-from-bon-help' => 'Saat vain BON-ilmoituksia järjestelmästä, henkilöstöstä ja seuraavista ryhmistä. Nämä asetukset ohitetaan, jos poistat ilmoitukset käytöstä',
+ 'notification-from-following' => 'Vastaanotettujen käyttäjien ilmoitusten vastaanottaminen',
+ 'notification-from-following-help' => 'Saat seuraavia käyttäjäilmoituksia seuraavista ryhmistä. Nämä asetukset ohitetaan, jos poistat ilmoitukset käytöstä',
+ 'notification-from-forum' => 'Vastaanota Forum-ilmoituksia',
+ 'notification-from-forum-help' => 'Saat ilmoituksia vain järjestelmästä, henkilöstöstä ja seuraavista ryhmistä. Nämä asetukset ohitetaan, jos poistat ilmoitukset käytöstä',
+ 'notification-from-subscription' => 'Vastaanota ilmoituksia',
+ 'notification-from-subscription-help' => 'Saat ilmoituksia vain järjestelmästä, henkilöstöstä ja seuraavista ryhmistä. Nämä asetukset ohitetaan, jos poistat ilmoitukset käytöstä',
+ 'notification-from-torrent' => 'Vastaanota Torrent-ilmoitukset',
+ 'notification-from-torrent-help' => 'Saat vain torrent-ilmoituksia järjestelmästä, henkilökunnasta ja seuraavista ryhmistä. Nämä asetukset ohitetaan, jos poistat ilmoitukset käytöstä',
+ 'notification-from-mention' => 'Vastaanota @Mention ilmoitukset',
+ 'notification-from-mention-help' => 'Saat vain @mention-ilmoituksia järjestelmästä, henkilökunnasta ja seuraavista ryhmistä. Nämä asetukset ohitetaan, jos poistat ilmoitukset käytöstä',
+ 'notification-from-request' => 'Vastaanota pyyntöilmoitukset',
+ 'notification-from-request-help' => 'Saat vain ilmoituksia järjestelmästä, henkilöstöstä ja seuraavista ryhmistä. Nämä asetukset ohitetaan, jos poistat ilmoitukset käytöstä',
+ 'notifications' => 'ilmoitukset',
+ 'offline' => 'Käyttäjä on offline-tilassa!',
+ 'online' => 'Käyttäjä on online-tilassa!',
+ 'options' => 'vaihtoehdot',
+ 'other-help' => 'Hallitse muiden tilastojen ja tietojen jakamista ryhmien kanssa, joilla on oikeus käyttää profiiliasi. Nämä asetukset ohitetaan, jos et salli yhtään ryhmää käyttämästä muita tilastojasi ja tietojasi tai jos siirryt yksityiseen',
+ 'other-privacy' => 'Muut asetukset',
+ 'other-privacy-online' => 'Salli käyttäjien nähdä sinut online-käyttäjien lohkossa',
+ 'passkey' => 'PID',
+ 'passkey-warning' => 'PID on kuin salasanasi, sinun täytyy pitää se turvallisena!',
+ 'pending-achievements' => 'Odottavat saavutukset',
+ 'per-torrent' => 'Per Torrent',
+ 'posts' => 'Viestejä',
+ 'posts-posted' => 'Foorumin viestit lähetetty',
+ 'privacy' => 'yksityisyys',
+ 'privacy-settings' => 'Tietosuoja-asetukset',
+ 'private-info' => 'Yksityinen tieto',
+ 'private-forum-profile' => 'Huomio: Tämä jäsenten aihe ja postihistoria on asetettu yksityiselle!',
+ 'private-profile' => 'Huomio: Tämä profiili on asetettu PRIVATE!',
+ 'profile' => 'Profiili',
+ 'profile-desc' => 'Käyttäjä: käyttäjäprofiili on rekisteröity: title',
+ 'profile-privacy' => 'Profiilin asetukset',
+ 'profile-privacy-torrent-count' => 'Jaa latausten, latausten, siementen ja leechien kokonaismäärä',
+ 'profile-privacy-torrent-ratio' => 'Jaa koko lataus- / lataustietosi ja tallennettu suhde',
+ 'profile-privacy-torrent-seed' => 'Jaa koko kylvöaika ja keskiarvo',
+ 'profile-privacy-title' => 'Jaa henkilökohtaiset nimesi tiedot',
+ 'profile-privacy-about' => 'Jaa henkilökohtaiset tiedot minusta',
+ 'profile-privacy-bon-extra' => 'Jaa BON-tilastot',
+ 'profile-privacy-comment-extra' => 'Jaa kommenttitilastot',
+ 'profile-privacy-forum-extra' => 'Jaa foorumin tilastot',
+ 'profile-privacy-request-extra' => 'Jaa pyyntösi tilastot',
+ 'profile-privacy-torrent-extra' => 'Jaa torrent-tilastot',
+ 'profile-privacy-badge' => 'Jaa ansaitut merkit',
+ 'profile-privacy-achievement' => 'Jaa viimeisimmät saavutukset',
+ 'profile-privacy-follower' => 'Jaa viimeisimmät seuraajat',
+ 'profile-privacy-warning' => 'Jaa H & R-varoitukset',
+ 'profile-privacy-help' => 'Määritä, mitkä tilastot ja tiedot näkyvät profiilissasi. Nämä asetukset on ohitettu, jos et salli yhtään ryhmää pääsemään profiiliin tai jos siirryt yksityiseen',
+ 'public-info' => 'Julkinen tieto',
+ 'recent-achievements' => 'Viimeisimmät saavutukset',
+ 'recent-followers' => 'Viimeisimmät seuraajat',
+ 'registration-date' => 'Rekisteröinti päivämäärä',
+ 'report' => 'raportti',
+ 'request-help' => 'Hallitse tiettyjen pyyntöihin liittyvien tilastojen ja tietojen jakamista ryhmien kanssa, joiden sallitaan käyttää profiiliasi. Nämä asetukset ohitetaan, jos et salli yhtään ryhmää pääsemästä pyytämiinsi liittyviin tilastoihin ja tietoihin tai jos käytät yksityistä',
+ 'request' => 'Pyyntö',
+ 'requested' => 'pyydetty',
+ 'requests' => 'Pyynnöt',
+ 'request-comments' => 'Pyydä kommentteja tehty',
+ 'request-notification' => 'Pyydä ilmoitusasetuksia',
+ 'request-notification-bounty' => 'Vastaanota ilmoitus, kun pyydetty torrent saa uuden palkkion',
+ 'request-notification-comment' => 'Vastaanota ilmoitus, kun pyydetty torrent saa uuden kommentin',
+ 'request-notification-fill' => 'Vastaanota ilmoitus, kun pyydetty torrent täytetään',
+ 'request-notification-fill-approve' => 'Vastaanota ilmoitus, kun pyydetty torrent-täyttö hyväksytään',
+ 'request-notification-fill-reject' => 'Vastaanota ilmoitus, kun pyydetty torrent-täyttö hylätään',
+ 'request-notification-claim' => 'Vastaanota ilmoitus, kun pyydettyä torrentia haetaan',
+ 'request-notification-unclaim' => 'Vastaanota ilmoitus, kun pyydetty torrent ei hae',
+ 'request-notification-help' => 'Hallitse, mitkä ilmoitukset lähetetään pyyntötoiminnoista. Nämä asetukset ohitetaan, jos et salli yhtään ryhmää lähettämään pyyntötoimintoja koskevia ilmoituksia tai jos poistat ilmoitukset käytöstä',
+ 'request-privacy' => 'Pyydä asetuksia',
+ 'request-privacy-requested' => 'Salli käyttäjien tarkastella tekemäsi pyyntöjen luetteloa',
+ 'reset-passkey' => 'Nollaa passiavain (PID)',
+ 'reset-passkey-help' => 'Sinun täytyy ladata / ladata uudelleen kaikki aktiiviset torrentit PID-koodin nollaamisen jälkeen',
+ 'reset-rss' => 'Palauta RSS-avain (RID)',
+ 'reset-rss-help' => 'Sinun täytyy ladata kaikki aktiiviset RSS-syötteet uudelleen, kun RID on palautettu',
+ 'resurrections' => 'ylösnousemuksen',
+ 'search' => 'Pikahaku käyttäjätunnuksen mukaan',
+ 'security' => 'turvallisuus',
+ 'security-settings' => 'Turvallisuusasetukset',
+ 'seedboxes' => 'Seedboxes',
+ 'seeds' => 'Siemenet',
+ 'send-invite' => 'Lähetä kutsu',
+ 'sender' => 'Lähettäjä',
+ 'settings' => 'asetukset',
+ 'show-passkey' => 'Näytä PID',
+ 'staff-noted' => 'Henkilöstö huomasi tilin',
+ 'statistics' => 'tilasto',
+ 'subscription-notification' => 'Tilausilmoitusasetukset',
+ 'subscription-notification-forum' => 'Saat ilmoituksen, kun tilattu foorumi saa uuden aiheen',
+ 'subscription-notification-topic' => 'Vastaanota ilmoitus, kun tilattu aihe saa uuden viestin',
+ 'subscription-notification-help' => 'Hallitse, mitkä ilmoitukset lähetetään tilauksistasi. Nämä asetukset ohitetaan, jos et salli yhtään ryhmää lähettämään ilmoituksia tilauksistasi tai jos poistat ilmoitukset käytöstä',
+ 'thanks-given' => 'Kiitos',
+ 'thanks-received' => 'Kiitos Vastaanotettu',
+ 'tips-given' => 'Vinkkejä annetaan',
+ 'tips-received' => 'Vinkkejä vastaanotettu',
+ 'title' => 'otsikko',
+ 'top-bankers' => 'Suosituimmat pankkiirit',
+ 'top-downloaders-data' => 'Suosituimmat lataajat (tiedot)',
+ 'top-leechers' => 'Top Leechers',
+ 'top-leechers-count' => 'Top Leechers (Count)',
+ 'top-seeders' => 'Suosituimmat kylvökoneet',
+ 'top-seeders-count' => 'Suosituimmat kylvökoneet',
+ 'top-seeding-size' => 'Suosituin kylvö (koko)',
+ 'top-seedtime' => 'Top Seedtime',
+ 'top-uploaders-data' => 'Suosituimmat lähettäjät (tiedot)',
+ 'top-uploaders-count' => 'Suosituimmat lähettäjät (Count)',
+ 'topics' => 'aiheista',
+ 'topics-started' => 'Foorumin aiheet aloitettu',
+ 'torrent-comments' => 'Torrentin kommentit tehty',
+ 'torrent-help' => 'Hallitse tiettyjen torrentiin liittyvien tilastojen ja tietojen jakamista ryhmien kanssa, joilla on oikeus käyttää profiiliasi. Nämä asetukset ohitetaan, jos et salli yhtään ryhmää pääsemään torrentiin liittyviin tilastoihin ja tietoihin tai jos siirryt yksityisiksi',
+ 'torrent-notification' => 'Torrentin ilmoitusasetukset',
+ 'torrent-notification-comment' => 'Vastaanota ilmoitus, kun ladattu torrent saa uuden kommentin',
+ 'torrent-notification-thank' => 'Saat ilmoituksen, kun ladattu torrent saa uuden kiitoksen',
+ 'torrent-notification-tip' => 'Saat ilmoituksen, kun ladattu torrent saa uuden kärjen',
+ 'torrent-notification-help' => 'Hallitse, mitkä ilmoitukset lähetetään torrent-toiminnoista. Nämä asetukset ohitetaan, jos et salli yhtään ryhmää lähettää ilmoituksia torrent-toiminnoista tai jos poistat ilmoitukset käytöstä',
+ 'torrent-privacy' => 'Torrentin asetukset',
+ 'torrent-privacy-download' => 'Salli käyttäjien tarkastella ladattujen torrentien luetteloa',
+ 'torrent-privacy-upload' => 'Salli käyttäjien tarkastella lataamiasi torrenteja',
+ 'torrent-privacy-peer' => 'Salli käyttäjien nähdä sinut torrent-peer history -taulukossa',
+ 'torrents' => 'torrentit',
+ 'torrents-history' => 'Torrents-historia',
+ 'total-download' => 'Lataus yhteensä',
+ 'total-downloads' => 'Latauksia yhteensä',
+ 'total-leeching' => 'Yhteensä Leeching',
+ 'total-seeding' => 'Kylvö yhteensä',
+ 'total-seedtime' => 'Yhteensä Seedtime',
+ 'total-upload' => 'Lataus yhteensä',
+ 'total-uploads' => 'Latauksia yhteensä',
+ 'unban' => 'Poista käyttäjä',
+ 'unfollow' => 'Älä',
+ 'unlocked' => 'auki',
+ 'unlocked-achievements' => 'Avaamattomat saavutukset',
+ 'unsatisfieds' => 'Unsatisfieds',
+ 'upload-bon' => 'Lataa BON Storesta',
+ 'upload-recorded' => 'Tallennettu lähetys',
+ 'upload-true' => 'Todellinen lataus',
+ 'uploads' => 'lisäykset',
+ 'uploads-table' => 'Latausten taulukko',
+ 'user' => 'käyttäjä',
+ 'user-id' => 'käyttäjätunnus',
+ 'username-seedbox' => 'Käyttäjätunnus Seedbox',
+ 'visible-to-achievement' => 'Saavutukset näkyvät',
+ 'visible-to-achievement-help' => 'Saavutuksesi näkyvät vain henkilöstölle ja seuraaville ryhmille. Nämä asetukset ohitetaan, jos siirryt yksityiseen',
+ 'visible-to-follower' => 'Seuraajat näkyvät',
+ 'visible-to-follower-help' => 'Seuraajasi näkyvät vain henkilökunnalle ja seuraaville ryhmille. Nämä asetukset ohitetaan, jos siirryt yksityiseen',
+ 'visible-to-forum' => 'Foorumin tiedot näkyvät',
+ 'visible-to-forum-help' => 'Foorumin tiedot näkyvät vain henkilöstölle ja seuraaville ryhmille. Nämä asetukset ohitetaan, jos siirryt yksityiseen',
+ 'visible-to-other' => 'Muu näkyvä',
+ 'visible-to-other-help' => 'Muita tietoja tilistäsi näkyvät vain henkilöstö ja seuraavat ryhmät. Nämä asetukset ohitetaan, jos siirryt yksityiseen tilaan tai jos siirryt piilotettuun',
+ 'visible-to-profile' => 'Profiili näkyvä',
+ 'visible-to-profile-help' => 'Profiilisi näkyy vain henkilökunnalle ja seuraaville ryhmille. Nämä asetukset ohitetaan, jos siirryt yksityiseen',
+ 'visible-to-request' => 'Pyydä tietoja näkyvissä',
+ 'visible-to-request-help' => 'Pyyntötietosi näkyvät vain henkilöstölle ja seuraaville ryhmille. Nämä asetukset ohitetaan, jos siirryt yksityiseen',
+ 'visible-to-torrent' => 'Torrentin tiedot näkyvät',
+ 'visible-to-torrent-help' => 'Torrent-tiedot näkyvät vain henkilökunnalle ja seuraaville ryhmille. Nämä asetukset ohitetaan, jos siirryt yksityiseen tilaan tai jos siirryt piilotettuun',
+ 'warned-on' => 'Varoitettu',
+ 'warning' => 'Varoitus',
+ 'warning-log' => 'Varoitusloki',
+ 'wishlist' => 'toivelista',
];
diff --git a/lang/fi/validation.php b/lang/fi/validation.php
index 365a568a1..41b1f26eb 100644
--- a/lang/fi/validation.php
+++ b/lang/fi/validation.php
@@ -23,108 +23,108 @@ return [
|
*/
- 'accepted' => 'Kenttä :attribute tulee hyväksyä.',
- 'active_url' => 'Kentän :attribute tulee olla validi URL-osoite.',
- 'after' => 'Kentän :attribute päiväyksen tulee olla jälkeen :date.',
- 'after_or_equal' => 'Kentän :attribute päiväyksen tulee olla sama ja jälkeen :date',
- 'alpha' => 'Kenttä :attribute voi sisältää vain kirjaimia.',
- 'alpha_dash' => 'Kenttä :attribute voi sisältää vain kirjaimia, numeroita ja viivoja.',
- 'alpha_num' => 'Kenttä :attribute voi sisältää vain kirjaimia ja numeroita.',
- 'array' => 'Kenttä :attribute tulee olla taulukko.',
- 'before' => 'Kentän :attribute päiväyksen tulee olla ennen :date.',
- 'before_or_equal' => 'Kentän :attribute päiväyksen tulee olla sama tai ennen kuin :date.',
- 'between' => [
+ 'accepted' => 'Kenttä :attribute tulee hyväksyä.',
+ 'active_url' => 'Kentän :attribute tulee olla validi URL-osoite.',
+ 'after' => 'Kentän :attribute päiväyksen tulee olla jälkeen :date.',
+ 'after_or_equal' => 'Kentän :attribute päiväyksen tulee olla sama ja jälkeen :date',
+ 'alpha' => 'Kenttä :attribute voi sisältää vain kirjaimia.',
+ 'alpha_dash' => 'Kenttä :attribute voi sisältää vain kirjaimia, numeroita ja viivoja.',
+ 'alpha_num' => 'Kenttä :attribute voi sisältää vain kirjaimia ja numeroita.',
+ 'array' => 'Kenttä :attribute tulee olla taulukko.',
+ 'before' => 'Kentän :attribute päiväyksen tulee olla ennen :date.',
+ 'before_or_equal' => 'Kentän :attribute päiväyksen tulee olla sama tai ennen kuin :date.',
+ 'between' => [
'numeric' => 'Kentän :attribute tulee olla välillä :min - :max.',
- 'file' => 'Tiedoston :attribute tulee olla :min - :max kilotavua.',
- 'string' => 'Kentän :attribute tulee olla :min - :max merkkiä pitkä.',
- 'array' => 'Kentän :attribute tulee sisältää välillä :min - :max arvoa.',
+ 'file' => 'Tiedoston :attribute tulee olla :min - :max kilotavua.',
+ 'string' => 'Kentän :attribute tulee olla :min - :max merkkiä pitkä.',
+ 'array' => 'Kentän :attribute tulee sisältää välillä :min - :max arvoa.',
],
- 'boolean' => 'Kentän :attribute arvon tulee olla tosi tai epätosi.',
- 'confirmed' => 'Kentän :attribute vahvistus ei täsmää.',
- 'date' => 'Kentän :attribute arvo ei ole kelvollinen päivämäärä.',
- 'date_equals' => 'The :attribute must be a date equal to :date.',
- 'date_format' => 'Kentän :attribute arvo ei vastaa muotoa :format.',
- 'different' => 'Kenttien :attribute ja :other tulee olla eriarvoisia.',
- 'digits' => 'Kentän :attribute arvon on oltava :digits numeroa.',
- 'digits_between' => 'Kentän :attribute arvon tulee olla :min - :max numeroa.',
- 'dimensions' => 'Kentän :attribute kuvalla on virheelliset mitat.',
- 'distinct' => 'Kentän :attribute arvo ei ole uniikki.',
- 'email' => 'Kentän :attribute arvo ei ole validi sähköpostiosoite.',
- 'exists' => 'Kentän :attribute valittu arvo on virheellinen.',
- 'file' => 'Kentän :attribute arvon tulee olla tiedosto.',
- 'filled' => 'Kenttä :attribute on pakollinen.',
- 'gt' => [
+ 'boolean' => 'Kentän :attribute arvon tulee olla tosi tai epätosi.',
+ 'confirmed' => 'Kentän :attribute vahvistus ei täsmää.',
+ 'date' => 'Kentän :attribute arvo ei ole kelvollinen päivämäärä.',
+ 'date_equals' => 'The :attribute must be a date equal to :date.',
+ 'date_format' => 'Kentän :attribute arvo ei vastaa muotoa :format.',
+ 'different' => 'Kenttien :attribute ja :other tulee olla eriarvoisia.',
+ 'digits' => 'Kentän :attribute arvon on oltava :digits numeroa.',
+ 'digits_between' => 'Kentän :attribute arvon tulee olla :min - :max numeroa.',
+ 'dimensions' => 'Kentän :attribute kuvalla on virheelliset mitat.',
+ 'distinct' => 'Kentän :attribute arvo ei ole uniikki.',
+ 'email' => 'Kentän :attribute arvo ei ole validi sähköpostiosoite.',
+ 'exists' => 'Kentän :attribute valittu arvo on virheellinen.',
+ 'file' => 'Kentän :attribute arvon tulee olla tiedosto.',
+ 'filled' => 'Kenttä :attribute on pakollinen.',
+ 'gt' => [
'numeric' => 'Kentän :attribute arvo tulee olla suurempi kuin :value.',
- 'file' => 'Tiedoston :attribute tulee olla suurempi kuin :value kilotavua.',
- 'string' => 'Kentän :attribute arvo tulee olla pidempi kuin :value merkkiä.',
- 'array' => 'Kentän :attribute tulee sisältää enemmän kuin :value arvoa.',
+ 'file' => 'Tiedoston :attribute tulee olla suurempi kuin :value kilotavua.',
+ 'string' => 'Kentän :attribute arvo tulee olla pidempi kuin :value merkkiä.',
+ 'array' => 'Kentän :attribute tulee sisältää enemmän kuin :value arvoa.',
],
- 'gte' => [
+ 'gte' => [
'numeric' => 'Kentän :attribute arvo tulee olla suurempi tai yhtäsuuri kuin :value.',
- 'file' => 'Tiedoston :attribute tulee olla suurempi tai yhtäsuuri kuin :value kilotavua.',
- 'string' => 'Kentän :attribute arvo tulee olla pidempi tai yhtä pitkä kuin :value merkkiä.',
- 'array' => 'Kentän :attribute tulee sisältää :value arvoa tai enemmän.',
+ 'file' => 'Tiedoston :attribute tulee olla suurempi tai yhtäsuuri kuin :value kilotavua.',
+ 'string' => 'Kentän :attribute arvo tulee olla pidempi tai yhtä pitkä kuin :value merkkiä.',
+ 'array' => 'Kentän :attribute tulee sisältää :value arvoa tai enemmän.',
],
- 'image' => 'Kentän :attribute arvon tulee olla kuva.',
- 'in' => 'Kentän :attribute arvo on virheellinen.',
- 'in_array' => 'Kentän :attribute arvo ei sisälly kentän :other arvoon.',
- 'integer' => 'Kentän :attribute arvon tulee olla numero.',
- 'ip' => 'Kentän :attribute arvon tulee olla validi IP-osoite.',
- 'ipv4' => 'Kentän :attribute arvon tulee olla validi IPv4-osoite.',
- 'ipv6' => 'Kentän :attribute arvon tulee olla validi IPv6-osoite.',
- 'json' => 'Kentän :attribute arvon tulee olla validia JSON:ia.',
- 'lt' => [
+ 'image' => 'Kentän :attribute arvon tulee olla kuva.',
+ 'in' => 'Kentän :attribute arvo on virheellinen.',
+ 'in_array' => 'Kentän :attribute arvo ei sisälly kentän :other arvoon.',
+ 'integer' => 'Kentän :attribute arvon tulee olla numero.',
+ 'ip' => 'Kentän :attribute arvon tulee olla validi IP-osoite.',
+ 'ipv4' => 'Kentän :attribute arvon tulee olla validi IPv4-osoite.',
+ 'ipv6' => 'Kentän :attribute arvon tulee olla validi IPv6-osoite.',
+ 'json' => 'Kentän :attribute arvon tulee olla validia JSON:ia.',
+ 'lt' => [
'numeric' => 'Kentän :attribute arvo tulee olla pienempi kuin :value.',
- 'file' => 'Tiedoston :attribute tulee olla pienempi kuin :value kilotavua.',
- 'string' => 'Kentän :attribute arvo tulee olla lyhyempi kuin :value merkkiä.',
- 'array' => 'Kentän :attribute tulee sisältää vähemmän kuin :value arvoa.',
+ 'file' => 'Tiedoston :attribute tulee olla pienempi kuin :value kilotavua.',
+ 'string' => 'Kentän :attribute arvo tulee olla lyhyempi kuin :value merkkiä.',
+ 'array' => 'Kentän :attribute tulee sisältää vähemmän kuin :value arvoa.',
],
- 'lte' => [
+ 'lte' => [
'numeric' => 'Kentän :attribute arvo tulee olla pienempi tai yhtäsuuri kuin :value.',
- 'file' => 'Tiedoston :attribute tulee olla pienempi tai yhtäsuuri kuin :value kilotavua.',
- 'string' => 'Kentän :attribute arvo tulee olla lyhyempi tai yhtä pitkä kuin :value merkkiä.',
- 'array' => 'Kentän :attribute tulee sisältää :value arvoa tai vähemmän.',
+ 'file' => 'Tiedoston :attribute tulee olla pienempi tai yhtäsuuri kuin :value kilotavua.',
+ 'string' => 'Kentän :attribute arvo tulee olla lyhyempi tai yhtä pitkä kuin :value merkkiä.',
+ 'array' => 'Kentän :attribute tulee sisältää :value arvoa tai vähemmän.',
],
- 'max' => [
+ 'max' => [
'numeric' => 'Kentän arvon :attribute tulee olla enintään :max.',
- 'file' => 'Tiedoston :attribute tulee olla enintään :max kilobittiä.',
- 'string' => 'Kentän :attribute arvon tulee olla enintään :max merkkiä pitkä.',
- 'array' => 'Kentän :attribute ei tule sisältää enempää kuin :max arvoa.',
+ 'file' => 'Tiedoston :attribute tulee olla enintään :max kilobittiä.',
+ 'string' => 'Kentän :attribute arvon tulee olla enintään :max merkkiä pitkä.',
+ 'array' => 'Kentän :attribute ei tule sisältää enempää kuin :max arvoa.',
],
- 'mimes' => 'Kentän :attribute arvon tulee olla tiedostotyyppiä: :values.',
- 'mimetypes' => 'Kentän :attribute arvon tulee olla tiedostotyyppiä: :values.',
- 'min' => [
+ 'mimes' => 'Kentän :attribute arvon tulee olla tiedostotyyppiä: :values.',
+ 'mimetypes' => 'Kentän :attribute arvon tulee olla tiedostotyyppiä: :values.',
+ 'min' => [
'numeric' => 'Kentän :attribute arvon tulee olla vähintään :min.',
- 'file' => 'Tiedoston :attribute tulee olla vähintään :min kilobittiä.',
- 'string' => 'Kentän :attribute arvon tulee olla vähintään :min merkkiä.',
- 'array' => 'Kentän :attribute tulee sisältää vähintään :min arvoa.',
+ 'file' => 'Tiedoston :attribute tulee olla vähintään :min kilobittiä.',
+ 'string' => 'Kentän :attribute arvon tulee olla vähintään :min merkkiä.',
+ 'array' => 'Kentän :attribute tulee sisältää vähintään :min arvoa.',
],
- 'not_in' => 'Kentän :attribute arvo on virheellinen.',
- 'not_regex' => 'Kentän :attribute formaatti on virheellinen.',
- 'numeric' => 'Kentän :attribute arvon tulee olla numero.',
- 'present' => 'Kenttä :attribute vaaditaan.',
- 'regex' => 'Kentän :attribute arvo on väärää muotoa.',
- 'required' => 'Kenttä :attribute vaaditaan.',
- 'required_if' => 'Kenttä :attribute vaaditaan kun :other on :value.',
- 'required_unless' => 'Kenttä :attribute vaaditaan jos :other ei sisälly arvoihin :values.',
- 'required_with' => 'Kenttä :attribute vaaditaan kun arvo :values on annettu.',
- 'required_with_all' => 'Kenttä :attribute vaaditaan kun arvo :values on annettu.',
- 'required_without' => 'Kenttä :attribute vaaditaan kun arvoa :values ei ole annettu.',
+ 'not_in' => 'Kentän :attribute arvo on virheellinen.',
+ 'not_regex' => 'Kentän :attribute formaatti on virheellinen.',
+ 'numeric' => 'Kentän :attribute arvon tulee olla numero.',
+ 'present' => 'Kenttä :attribute vaaditaan.',
+ 'regex' => 'Kentän :attribute arvo on väärää muotoa.',
+ 'required' => 'Kenttä :attribute vaaditaan.',
+ 'required_if' => 'Kenttä :attribute vaaditaan kun :other on :value.',
+ 'required_unless' => 'Kenttä :attribute vaaditaan jos :other ei sisälly arvoihin :values.',
+ 'required_with' => 'Kenttä :attribute vaaditaan kun arvo :values on annettu.',
+ 'required_with_all' => 'Kenttä :attribute vaaditaan kun arvo :values on annettu.',
+ 'required_without' => 'Kenttä :attribute vaaditaan kun arvoa :values ei ole annettu.',
'required_without_all' => 'Kenttä :attribute vaaditaan kun mitään arvoista :values ei ole annettu.',
- 'same' => 'Kenttien :attribute ja :other on oltava samanarvoiset.',
- 'size' => [
+ 'same' => 'Kenttien :attribute ja :other on oltava samanarvoiset.',
+ 'size' => [
'numeric' => 'Kentän :attribute arvon tulee olla kokoa :size.',
- 'file' => 'Tiedoston :attribute tulee olla kokoa :size kilobittiä.',
- 'string' => 'Kentän :attribute arvon tulee olla kokoa :size merkkiä.',
- 'array' => 'Kentän :attribute tulee sisältää :size arvoa.',
+ 'file' => 'Tiedoston :attribute tulee olla kokoa :size kilobittiä.',
+ 'string' => 'Kentän :attribute arvon tulee olla kokoa :size merkkiä.',
+ 'array' => 'Kentän :attribute tulee sisältää :size arvoa.',
],
- 'starts_with' => 'The :attribute must start with one of the following: :values',
- 'string' => 'Kentän :attribute arvon tulee olla tekstiä.',
- 'timezone' => 'Kentän :attribute arvon tulee olla validi aikavyöhyketunniste.',
- 'unique' => 'Kentän :attribute arvo ei ole uniikki.',
- 'uploaded' => 'Tiedoston :attribute lataus epäonnistui.',
- 'url' => 'Kentän :attribute arvon tulee olla validi URL-osoite.',
- 'uuid' => 'The :attribute must be a valid UUID.',
+ 'starts_with' => 'The :attribute must start with one of the following: :values',
+ 'string' => 'Kentän :attribute arvon tulee olla tekstiä.',
+ 'timezone' => 'Kentän :attribute arvon tulee olla validi aikavyöhyketunniste.',
+ 'unique' => 'Kentän :attribute arvo ei ole uniikki.',
+ 'uploaded' => 'Tiedoston :attribute lataus epäonnistui.',
+ 'url' => 'Kentän :attribute arvon tulee olla validi URL-osoite.',
+ 'uuid' => 'The :attribute must be a valid UUID.',
/*
|--------------------------------------------------------------------------
diff --git a/lang/fr/articles.php b/lang/fr/articles.php
index 9ba3c6a84..891c4ca27 100644
--- a/lang/fr/articles.php
+++ b/lang/fr/articles.php
@@ -12,8 +12,8 @@
*/
return [
- 'articles' => 'Articles',
+ 'articles' => 'Articles',
'meta-articles' => 'Articles et nouvelles sur le tracker et la communauté',
- 'published-at' => 'Publié sur',
- 'read-more' => 'Lire la suite',
+ 'published-at' => 'Publié sur',
+ 'read-more' => 'Lire la suite',
];
diff --git a/lang/fr/auth.php b/lang/fr/auth.php
index cce940a1b..f437233a2 100644
--- a/lang/fr/auth.php
+++ b/lang/fr/auth.php
@@ -23,6 +23,6 @@ return [
|
*/
- 'failed' => 'Ces identifiants ne correspondent pas à nos enregistrements',
+ 'failed' => 'Ces identifiants ne correspondent pas à nos enregistrements',
'throttle' => 'Tentatives de connexion trop nombreuses. Veuillez essayer de nouveau dans :seconds secondes.',
];
diff --git a/lang/fr/backup.php b/lang/fr/backup.php
index 28b5553c8..6b9c2ffa2 100644
--- a/lang/fr/backup.php
+++ b/lang/fr/backup.php
@@ -23,31 +23,31 @@ return [
|
*/
- 'backup' => 'Sauvegarde',
- 'create_a_new_backup' => 'Créer une nouvelle sauvegarde',
- 'create_a_new_files_backup' => 'Créer des fichiers de sauvegarde',
- 'create_a_new_db_backup' => 'Créer une sauvegarde de base de données',
- 'existing_backups' => 'Sauvegardes existantes',
- 'date' => 'Date',
- 'file_size' => 'Taille de fichier',
- 'actions' => 'Actions',
- 'download' => 'Télécharger',
- 'delete' => 'Supprimer',
- 'delete_confirm' => 'Etes-vous certain de vouloir supprimer ce fichier ?',
- 'delete_confirmation_title' => 'Fait',
- 'delete_confirmation_message' => 'Le fichier de sauvegarde a été supprimmé.',
- 'delete_error_title' => 'Erreur',
- 'delete_error_message' => 'Le fichier de sauvegarde n\'a PAS été supprimmé.',
- 'delete_cancel_title' => "C'est ok",
- 'delete_cancel_message' => 'Le fichier de sauvegarde n\'a PAS été supprimmé.',
- 'create_confirmation_title' => 'Sauvegarde terminée',
- 'create_confirmation_message' => 'Rechargement de cette page dans 3 secondes.',
- 'create_error_title' => 'Erreur de sauvegarde',
- 'create_error_message' => 'Le fichier de sauvegarde n\'a PAS pu être créer.',
- 'create_warning_title' => 'Erreur inconnue',
- 'create_warning_message' => 'Votre fichier de sauvegarde n\'a sans doute pas pu être créé. Regardez les logs pour plus de details.',
- 'location' => 'Emplacement',
- 'no_disks_configured' => 'Aucun "backup disks" de configuré dans config/backup.php',
- 'backup_doesnt_exist' => "Le fichier de sauvegarde n'existe pas.",
+ 'backup' => 'Sauvegarde',
+ 'create_a_new_backup' => 'Créer une nouvelle sauvegarde',
+ 'create_a_new_files_backup' => 'Créer des fichiers de sauvegarde',
+ 'create_a_new_db_backup' => 'Créer une sauvegarde de base de données',
+ 'existing_backups' => 'Sauvegardes existantes',
+ 'date' => 'Date',
+ 'file_size' => 'Taille de fichier',
+ 'actions' => 'Actions',
+ 'download' => 'Télécharger',
+ 'delete' => 'Supprimer',
+ 'delete_confirm' => 'Etes-vous certain de vouloir supprimer ce fichier ?',
+ 'delete_confirmation_title' => 'Fait',
+ 'delete_confirmation_message' => 'Le fichier de sauvegarde a été supprimmé.',
+ 'delete_error_title' => 'Erreur',
+ 'delete_error_message' => 'Le fichier de sauvegarde n\'a PAS été supprimmé.',
+ 'delete_cancel_title' => "C'est ok",
+ 'delete_cancel_message' => 'Le fichier de sauvegarde n\'a PAS été supprimmé.',
+ 'create_confirmation_title' => 'Sauvegarde terminée',
+ 'create_confirmation_message' => 'Rechargement de cette page dans 3 secondes.',
+ 'create_error_title' => 'Erreur de sauvegarde',
+ 'create_error_message' => 'Le fichier de sauvegarde n\'a PAS pu être créer.',
+ 'create_warning_title' => 'Erreur inconnue',
+ 'create_warning_message' => 'Votre fichier de sauvegarde n\'a sans doute pas pu être créé. Regardez les logs pour plus de details.',
+ 'location' => 'Emplacement',
+ 'no_disks_configured' => 'Aucun "backup disks" de configuré dans config/backup.php',
+ 'backup_doesnt_exist' => "Le fichier de sauvegarde n'existe pas.",
'only_local_downloads_supported' => 'Seuls les téléchargments à partir du système de fichier local sont supportés.',
];
diff --git a/lang/fr/blocks.php b/lang/fr/blocks.php
index 761bd1a1e..342207b60 100644
--- a/lang/fr/blocks.php
+++ b/lang/fr/blocks.php
@@ -12,19 +12,19 @@
*/
return [
- 'chatbox' => 'Shoutbox',
- 'click' => 'Cliquez sur',
- 'to-enable-editor' => 'activer l éditeur',
- 'featured-by' => 'Présenté par',
- 'featured-torrents' => 'Torrents recommandé',
+ 'chatbox' => 'Shoutbox',
+ 'click' => 'Cliquez sur',
+ 'to-enable-editor' => 'activer l éditeur',
+ 'featured-by' => 'Présenté par',
+ 'featured-torrents' => 'Torrents recommandé',
'featured-torrents-intro' => 'Obtenez-les pendant que vous le pouvez!',
- 'featured-until' => 'Ceci est un torrent recommandé jusqu au',
- 'top-torrents' => 'Top Torrents',
- 'latest-posts' => 'Derniers articles',
- 'latest-topics' => 'Derniers sujets',
- 'active-in-last' => 'Actif en dernier',
- 'users-online' => 'Utilisateurs en ligne',
- 'check-news' => 'Nouvelles (vérifier quotidiennement)',
- 'new-news' => 'Nouvelles informations',
- 'new-torrents' => 'Nouveaux torrents',
+ 'featured-until' => 'Ceci est un torrent recommandé jusqu au',
+ 'top-torrents' => 'Top Torrents',
+ 'latest-posts' => 'Derniers articles',
+ 'latest-topics' => 'Derniers sujets',
+ 'active-in-last' => 'Actif en dernier',
+ 'users-online' => 'Utilisateurs en ligne',
+ 'check-news' => 'Nouvelles (vérifier quotidiennement)',
+ 'new-news' => 'Nouvelles informations',
+ 'new-torrents' => 'Nouveaux torrents',
];
diff --git a/lang/fr/bon.php b/lang/fr/bon.php
index b35a0bfa0..287c5d626 100644
--- a/lang/fr/bon.php
+++ b/lang/fr/bon.php
@@ -12,56 +12,56 @@
*/
return [
- 'activated' => 'Activé',
- 'active' => 'Actif!',
- 'amount' => 'Montant',
- 'bon' => 'Coupon',
- 'bonus' => 'Prime',
- 'date' => 'Date',
- 'earning' => 'Gain',
- 'earning-rate' => 'A ce rythme de gain, vous gagnerez ce qui suit par période.',
- 'earnings' => 'Gains',
- 'exchange' => 'Échange',
- 'exchange-warning' => 'Les échanges sont définitifs. Veuillez vérifier vos choix avant de procéder à un échange.',
- 'extended-stats' => 'Statistiques étendues',
- 'failed' => 'L\'échange de bonus a échoué !',
- 'failed-amount-message' => 'Tu dois entrer un somme et un message!',
- 'failed-funds-poster' => 'Tu es trop fauché pour donner un pourboire à l\'affiche!',
- 'failed-funds-uploader' => 'Tu es trop fauché pour donner un pourboire au téléchargeur!',
- 'failed-negative' => 'Tu ne peux pas donner un pourboire négatif!',
- 'failed-user-not-found' => 'Impossible de trouver la personne spécifiée',
- 'failed-yourself' => 'Tu ne peux pas te donner un pourboire!',
- 'gift' => 'Cadeau',
- 'gift-bonus' => 'Points bonus cadeau',
- 'gift-sent' => 'Cadeau envoyé',
- 'gift-to' => 'Points bonus offert à',
- 'gifts' => 'Cadeaux',
- 'item' => 'Objet',
- 'no-refund' => 'PAS DE REMBOURSEMENT!',
- 'per-day' => 'Points par jour',
- 'per-hour' => 'Points par heure',
- 'per-minute' => 'Points par minute',
- 'per-month' => 'Points par mois',
- 'per-second' => 'Points par seconde',
- 'per-week' => 'Points par semaine',
- 'per-year' => 'Points par an',
- 'pm-subject' => 'Freeleech personnel 24 heures activé',
- 'pm-message' => 'Ta [b]session personnelle de 24 heures de Freeleech[/b] a commencé! Il expirera le %s [b]',
- 'points' => 'Points',
- 'receiver' => 'Destinataire',
- 'review-seeds' => 'Examiner tous les torrents en seed',
- 'send-gift' => 'Envoyer un cadeau',
- 'sender' => 'Expéditeur',
- 'store' => 'Magasin',
- 'success' => 'Succès de l\'échange de bonus',
- 'success-tip' => 'Ton pourboire a été appliqué avec succès!',
- 'tips' => 'Conseils',
- 'total' => 'Total des gains',
- 'total-gifts' => 'Au total, cadeaux coupon',
- 'total-tips' => 'Au total coupon Tips',
+ 'activated' => 'Activé',
+ 'active' => 'Actif!',
+ 'amount' => 'Montant',
+ 'bon' => 'Coupon',
+ 'bonus' => 'Prime',
+ 'date' => 'Date',
+ 'earning' => 'Gain',
+ 'earning-rate' => 'A ce rythme de gain, vous gagnerez ce qui suit par période.',
+ 'earnings' => 'Gains',
+ 'exchange' => 'Échange',
+ 'exchange-warning' => 'Les échanges sont définitifs. Veuillez vérifier vos choix avant de procéder à un échange.',
+ 'extended-stats' => 'Statistiques étendues',
+ 'failed' => 'L\'échange de bonus a échoué !',
+ 'failed-amount-message' => 'Tu dois entrer un somme et un message!',
+ 'failed-funds-poster' => 'Tu es trop fauché pour donner un pourboire à l\'affiche!',
+ 'failed-funds-uploader' => 'Tu es trop fauché pour donner un pourboire au téléchargeur!',
+ 'failed-negative' => 'Tu ne peux pas donner un pourboire négatif!',
+ 'failed-user-not-found' => 'Impossible de trouver la personne spécifiée',
+ 'failed-yourself' => 'Tu ne peux pas te donner un pourboire!',
+ 'gift' => 'Cadeau',
+ 'gift-bonus' => 'Points bonus cadeau',
+ 'gift-sent' => 'Cadeau envoyé',
+ 'gift-to' => 'Points bonus offert à',
+ 'gifts' => 'Cadeaux',
+ 'item' => 'Objet',
+ 'no-refund' => 'PAS DE REMBOURSEMENT!',
+ 'per-day' => 'Points par jour',
+ 'per-hour' => 'Points par heure',
+ 'per-minute' => 'Points par minute',
+ 'per-month' => 'Points par mois',
+ 'per-second' => 'Points par seconde',
+ 'per-week' => 'Points par semaine',
+ 'per-year' => 'Points par an',
+ 'pm-subject' => 'Freeleech personnel 24 heures activé',
+ 'pm-message' => 'Ta [b]session personnelle de 24 heures de Freeleech[/b] a commencé! Il expirera le %s [b]',
+ 'points' => 'Points',
+ 'receiver' => 'Destinataire',
+ 'review-seeds' => 'Examiner tous les torrents en seed',
+ 'send-gift' => 'Envoyer un cadeau',
+ 'sender' => 'Expéditeur',
+ 'store' => 'Magasin',
+ 'success' => 'Succès de l\'échange de bonus',
+ 'success-tip' => 'Ton pourboire a été appliqué avec succès!',
+ 'tips' => 'Conseils',
+ 'total' => 'Total des gains',
+ 'total-gifts' => 'Au total, cadeaux coupon',
+ 'total-tips' => 'Au total coupon Tips',
'you-have-received-gifts' => 'Vous avez reçu',
- 'you-have-sent-gifts' => 'Vous avez envoyé',
- 'you-have-received-tips' => 'Vous avez reçu',
- 'you-have-sent-tips' => 'Vous avez envoyé',
- 'your-points' => 'Vos points',
+ 'you-have-sent-gifts' => 'Vous avez envoyé',
+ 'you-have-received-tips' => 'Vous avez reçu',
+ 'you-have-sent-tips' => 'Vous avez envoyé',
+ 'your-points' => 'Vos points',
];
diff --git a/lang/fr/bot.php b/lang/fr/bot.php
index 440fa4c9a..78ab1ff82 100644
--- a/lang/fr/bot.php
+++ b/lang/fr/bot.php
@@ -12,15 +12,15 @@
*/
return [
- 'about' => 'Sur',
- 'bot' => 'Bot',
- 'bots' => 'Bots',
- 'color' => 'Couleur',
- 'command' => 'Commander',
- 'edit-bot' => 'Editer le Bot',
+ 'about' => 'Sur',
+ 'bot' => 'Bot',
+ 'bots' => 'Bots',
+ 'color' => 'Couleur',
+ 'command' => 'Commander',
+ 'edit-bot' => 'Editer le Bot',
'emoji-code' => 'Code Emoji',
- 'help' => 'Aidez-moi',
- 'icon' => 'Icône',
- 'info' => 'Info',
- 'name' => 'Nom',
+ 'help' => 'Aidez-moi',
+ 'icon' => 'Icône',
+ 'info' => 'Info',
+ 'name' => 'Nom',
];
diff --git a/lang/fr/bug.php b/lang/fr/bug.php
index 4ccb0d4be..919400bc2 100644
--- a/lang/fr/bug.php
+++ b/lang/fr/bug.php
@@ -12,15 +12,15 @@
*/
return [
- 'bug-report' => 'Rapport d erreur',
+ 'bug-report' => 'Rapport d erreur',
'bug-report-description' => 'Signaler un bug du site',
- 'enter-description' => 'Décrivez le problème le mieux possible',
- 'enter-email' => 'S il vous plaît entrer votre e-mail',
- 'enter-title' => 'Veuillez choisir un titre approprié',
- 'enter-username' => 'S il vous plaît entrez votre nom d utilisateur',
- 'high' => 'Haute',
- 'low' => 'Faible',
- 'priority' => 'Priorité',
- 'priority-description' => 'Choisissez seulement très élevé si le bogue est vraiment un problème pour utiliser le site.',
- 'very-high' => 'Très haut',
+ 'enter-description' => 'Décrivez le problème le mieux possible',
+ 'enter-email' => 'S il vous plaît entrer votre e-mail',
+ 'enter-title' => 'Veuillez choisir un titre approprié',
+ 'enter-username' => 'S il vous plaît entrez votre nom d utilisateur',
+ 'high' => 'Haute',
+ 'low' => 'Faible',
+ 'priority' => 'Priorité',
+ 'priority-description' => 'Choisissez seulement très élevé si le bogue est vraiment un problème pour utiliser le site.',
+ 'very-high' => 'Très haut',
];
diff --git a/lang/fr/comment.php b/lang/fr/comment.php
index 7ebbc9ba3..bdb3eef2a 100644
--- a/lang/fr/comment.php
+++ b/lang/fr/comment.php
@@ -12,9 +12,9 @@
*/
return [
- 'added' => 'Ton commentaire a été ajouté!',
- 'deleted' => 'Le commentaire a été supprimé.',
- 'edited' => 'Le commentaire a été modifié.',
- 'rights-revoked' => 'Ton droit de commenter a été révoqué!',
- 'slow-down' => 'Ralentissez - Trop de commentaires!',
+ 'added' => 'Ton commentaire a été ajouté!',
+ 'deleted' => 'Le commentaire a été supprimé.',
+ 'edited' => 'Le commentaire a été modifié.',
+ 'rights-revoked' => 'Ton droit de commenter a été révoqué!',
+ 'slow-down' => 'Ralentissez - Trop de commentaires!',
];
diff --git a/lang/fr/common.php b/lang/fr/common.php
index a84d3f8f0..cd730047e 100644
--- a/lang/fr/common.php
+++ b/lang/fr/common.php
@@ -12,182 +12,182 @@
*/
return [
- 'a-an-art' => '',
- 'about' => 'À propos de nous',
- 'account' => 'Compte',
- 'achievement-title' => 'Titre de la réalisation',
+ 'a-an-art' => '',
+ 'about' => 'À propos de nous',
+ 'account' => 'Compte',
+ 'achievement-title' => 'Titre de la réalisation',
'achievement-unlocked' => 'Vous avez débloqué la réalisation ": name"',
- 'active' => 'actif',
- 'active-warning' => 'Avertissement actif',
- 'add' => 'Ajouter',
- 'added' => 'Ajoutée',
- 'amount' => 'Montant',
- 'anonymous' => 'Anonyme',
- 'author' => 'Auteur',
- 'balance' => 'Équilibre',
- 'blacklist' => 'Liste noire du client',
- 'buffer' => 'Tampon',
- 'bug' => 'Signaler un bug',
- 'but' => 'Objectif',
- 'cancel' => 'Annuler',
- 'category' => 'Catégorie',
- 'categories' => 'Les catégories',
- 'close' => 'Fermer',
- 'comment' => 'Commentaire',
- 'comments' => 'commentaires',
- 'community' => 'Communauté',
- 'contact' => 'Contact',
- 'contact-desc' => 'Cette demande de contact sera envoyée au propriétaire et vous répondra le plus rapidement possible.',
- 'contact-header' => 'Contact en-tête',
- 'create' => 'Créer',
- 'created_at' => 'Créé à',
- 'day' => 'jour',
- 'delete' => 'Effacer',
- 'delete-your-comment' => 'Supprimer votre commentaire',
- 'description' => 'Description',
- 'direction' => 'Direction',
- 'disable' => 'Désactiver',
- 'doubleup_activated' => 'Mode Global Double Upload activé',
- 'download' => 'Télécharger',
- 'edit' => 'modifier',
- 'edit-your-comment' => 'Modifier votre commentaire',
- 'email' => 'Email',
- 'email-blacklist' => 'Liste noire des courriels',
- 'email-whitelist' => 'Liste blanche des courriels',
+ 'active' => 'actif',
+ 'active-warning' => 'Avertissement actif',
+ 'add' => 'Ajouter',
+ 'added' => 'Ajoutée',
+ 'amount' => 'Montant',
+ 'anonymous' => 'Anonyme',
+ 'author' => 'Auteur',
+ 'balance' => 'Équilibre',
+ 'blacklist' => 'Liste noire du client',
+ 'buffer' => 'Tampon',
+ 'bug' => 'Signaler un bug',
+ 'but' => 'Objectif',
+ 'cancel' => 'Annuler',
+ 'category' => 'Catégorie',
+ 'categories' => 'Les catégories',
+ 'close' => 'Fermer',
+ 'comment' => 'Commentaire',
+ 'comments' => 'commentaires',
+ 'community' => 'Communauté',
+ 'contact' => 'Contact',
+ 'contact-desc' => 'Cette demande de contact sera envoyée au propriétaire et vous répondra le plus rapidement possible.',
+ 'contact-header' => 'Contact en-tête',
+ 'create' => 'Créer',
+ 'created_at' => 'Créé à',
+ 'day' => 'jour',
+ 'delete' => 'Effacer',
+ 'delete-your-comment' => 'Supprimer votre commentaire',
+ 'description' => 'Description',
+ 'direction' => 'Direction',
+ 'disable' => 'Désactiver',
+ 'doubleup_activated' => 'Mode Global Double Upload activé',
+ 'download' => 'Télécharger',
+ 'edit' => 'modifier',
+ 'edit-your-comment' => 'Modifier votre commentaire',
+ 'email' => 'Email',
+ 'email-blacklist' => 'Liste noire des courriels',
+ 'email-whitelist' => 'Liste blanche des courriels',
'email-list-notactive' => 'Le système de liste blanche / liste noire n est pas activé',
- 'enable' => 'Activer',
- 'enter' => 'Entrer',
- 'error' => 'Erreur',
- 'everyday' => 'Tous les jours',
- 'expired' => 'Expiré',
- 'extra' => 'Supplémentaire',
- 'extra-stats' => 'Extra-Stats',
- 'faq' => 'FAQ',
- 'files' => 'Fichiers',
- 'fl_token' => 'Jeton Freeleech',
- 'fl_tokens' => 'Jetons Freeleech',
- 'for' => 'pour',
- 'forum' => 'Forum',
- 'free' => 'Gratuit',
- 'freeleech_activated' => 'Mode Global Freeleech activé',
- 'global' => 'Global',
- 'group' => 'Groupe',
- 'groups' => 'Groupes',
- 'hidden' => 'Caché',
- 'high-speeds' => 'Vitesses élevées',
- 'home' => 'Accueil',
- 'hot' => 'Chaud!',
- 'hour' => 'Heure',
- 'huge' => 'Énorme',
- 'info' => 'Info',
- 'internal' => 'Interne',
- 'ip' => 'IP',
- 'is-allowed' => 'est autorisée',
- 'large' => 'Grand',
- 'latest' => 'Dernier',
- 'latest-posts' => 'Derniers articles',
- 'latest-topics' => 'Derniers sujets',
- 'legal' => 'Légal',
- 'legend' => 'Légende',
- 'lists' => 'Listes',
- 'lock-account' => 'Verrouiller le compte',
- 'logout' => 'Déonnecter',
- 'members' => 'Membres',
- 'message' => 'Message',
- 'minute' => 'Minute',
- 'moderated-by' => 'Modéré par',
- 'moderation' => 'Modération',
- 'moderation-approve' => 'Approuver',
- 'moderation-postpone' => 'Remettre à plus tard',
- 'moderation-reject' => 'Rejeter',
- 'month' => 'Mois',
- 'months' => 'Mois',
- 'my' => 'ma',
- 'name' => 'prénom',
- 'navigation' => 'Navigation',
- 'new' => 'Nouveau!',
- 'new-adj' => 'Nouveau',
- 'news' => 'Nouvelles',
- 'next' => 'Suivant',
- 'no' => 'Non',
- 'no-comments' => 'Aucun commentaire pour l instant',
- 'no-result' => 'Il n y a pas de résultat dans la base de données pour la requête',
- 'notifications' => 'Notifications',
- 'older-than' => 'Plus âgé que',
- 'oldest' => 'Le plus ancien',
- 'openreg_activated' => 'Inscription ouverte',
- 'order-by' => 'Commandé par',
- 'other' => 'Autre',
- 'pages' => 'Pages',
- 'password' => 'Mot de passe',
- 'patron' => 'Devenir un boss',
- 'pending-torrents' => 'Torrents en attente',
- 'personal' => 'Personnel',
- 'plural-suffix' => 's',
- 'port' => 'Port',
- 'position' => 'Position',
- 'posts' => 'Des postes',
- 'powered-by' => 'Propulsé par UNIT3D',
- 'preview' => 'Aperçu',
- 'previous' => 'précédent',
- 'progress' => 'Progression',
- 'publish' => 'Publier',
- 'quantity' => 'Quantité',
- 'quick-search' => 'Recherche rapide',
- 'ratio' => 'Ratio',
- 'reason' => 'Raison',
- 'remove' => 'Retirer',
- 'report' => 'Rapport',
- 'resend' => 'Renvoyer',
- 'reporter' => 'Reporter',
- 'required' => 'Champs obligatoires',
- 'results' => 'Résultats',
- 'rss-system' => 'Système RSS',
- 'rules' => 'Règles',
- 'save' => 'sauvegarder',
- 'search' => 'Chercher',
- 'search-results' => 'Résultats de la recherche',
- 'search-results-desc' => 'Voir vos résultats ci-dessous',
- 'second' => 'Seconde',
- 'select' => 'Sélectionner',
- 'similar' => 'Similaire',
+ 'enable' => 'Activer',
+ 'enter' => 'Entrer',
+ 'error' => 'Erreur',
+ 'everyday' => 'Tous les jours',
+ 'expired' => 'Expiré',
+ 'extra' => 'Supplémentaire',
+ 'extra-stats' => 'Extra-Stats',
+ 'faq' => 'FAQ',
+ 'files' => 'Fichiers',
+ 'fl_token' => 'Jeton Freeleech',
+ 'fl_tokens' => 'Jetons Freeleech',
+ 'for' => 'pour',
+ 'forum' => 'Forum',
+ 'free' => 'Gratuit',
+ 'freeleech_activated' => 'Mode Global Freeleech activé',
+ 'global' => 'Global',
+ 'group' => 'Groupe',
+ 'groups' => 'Groupes',
+ 'hidden' => 'Caché',
+ 'high-speeds' => 'Vitesses élevées',
+ 'home' => 'Accueil',
+ 'hot' => 'Chaud!',
+ 'hour' => 'Heure',
+ 'huge' => 'Énorme',
+ 'info' => 'Info',
+ 'internal' => 'Interne',
+ 'ip' => 'IP',
+ 'is-allowed' => 'est autorisée',
+ 'large' => 'Grand',
+ 'latest' => 'Dernier',
+ 'latest-posts' => 'Derniers articles',
+ 'latest-topics' => 'Derniers sujets',
+ 'legal' => 'Légal',
+ 'legend' => 'Légende',
+ 'lists' => 'Listes',
+ 'lock-account' => 'Verrouiller le compte',
+ 'logout' => 'Déonnecter',
+ 'members' => 'Membres',
+ 'message' => 'Message',
+ 'minute' => 'Minute',
+ 'moderated-by' => 'Modéré par',
+ 'moderation' => 'Modération',
+ 'moderation-approve' => 'Approuver',
+ 'moderation-postpone' => 'Remettre à plus tard',
+ 'moderation-reject' => 'Rejeter',
+ 'month' => 'Mois',
+ 'months' => 'Mois',
+ 'my' => 'ma',
+ 'name' => 'prénom',
+ 'navigation' => 'Navigation',
+ 'new' => 'Nouveau!',
+ 'new-adj' => 'Nouveau',
+ 'news' => 'Nouvelles',
+ 'next' => 'Suivant',
+ 'no' => 'Non',
+ 'no-comments' => 'Aucun commentaire pour l instant',
+ 'no-result' => 'Il n y a pas de résultat dans la base de données pour la requête',
+ 'notifications' => 'Notifications',
+ 'older-than' => 'Plus âgé que',
+ 'oldest' => 'Le plus ancien',
+ 'openreg_activated' => 'Inscription ouverte',
+ 'order-by' => 'Commandé par',
+ 'other' => 'Autre',
+ 'pages' => 'Pages',
+ 'password' => 'Mot de passe',
+ 'patron' => 'Devenir un boss',
+ 'pending-torrents' => 'Torrents en attente',
+ 'personal' => 'Personnel',
+ 'plural-suffix' => 's',
+ 'port' => 'Port',
+ 'position' => 'Position',
+ 'posts' => 'Des postes',
+ 'powered-by' => 'Propulsé par UNIT3D',
+ 'preview' => 'Aperçu',
+ 'previous' => 'précédent',
+ 'progress' => 'Progression',
+ 'publish' => 'Publier',
+ 'quantity' => 'Quantité',
+ 'quick-search' => 'Recherche rapide',
+ 'ratio' => 'Ratio',
+ 'reason' => 'Raison',
+ 'remove' => 'Retirer',
+ 'report' => 'Rapport',
+ 'resend' => 'Renvoyer',
+ 'reporter' => 'Reporter',
+ 'required' => 'Champs obligatoires',
+ 'results' => 'Résultats',
+ 'rss-system' => 'Système RSS',
+ 'rules' => 'Règles',
+ 'save' => 'sauvegarder',
+ 'search' => 'Chercher',
+ 'search-results' => 'Résultats de la recherche',
+ 'search-results-desc' => 'Voir vos résultats ci-dessous',
+ 'second' => 'Seconde',
+ 'select' => 'Sélectionner',
+ 'similar' => 'Similaire',
'something-went-wrong' => 'Quelque chose n\'a pas marché!',
- 'sort' => 'Trier',
- 'special' => 'Spécial',
- 'staff' => 'Staff',
- 'staff-tools' => 'Outils du staff',
- 'stats' => 'Statistiques',
- 'status' => 'Statut',
- 'sticked' => 'Epinglé',
- 'submit' => 'Soumettre',
- 'subscriptions' => 'Abonnements',
- 'system-message' => 'CECI EST UN MESSAGE DU SYSTÈME AUTOMATISÉ, NE PAS RÉPONDRE!',
- 'teams' => 'Equipes',
- 'terms' => 'Conditions d utilisation',
- 'times' => 'Fois',
- 'title' => 'Titre',
- 'top-bountied' => 'Top Bountied',
- 'topics' => 'Sujets',
- 'tracker-codes' => 'Codes de suivi',
- 'type' => 'Type',
- 'type-verb' => 'Type',
- 'types' => 'Types',
- 'genre' => 'Genre',
- 'genres' => 'Genres',
- 'action' => 'Action',
- 'actions' => 'Actions',
- 'unknown' => 'Inconnu',
+ 'sort' => 'Trier',
+ 'special' => 'Spécial',
+ 'staff' => 'Staff',
+ 'staff-tools' => 'Outils du staff',
+ 'stats' => 'Statistiques',
+ 'status' => 'Statut',
+ 'sticked' => 'Epinglé',
+ 'submit' => 'Soumettre',
+ 'subscriptions' => 'Abonnements',
+ 'system-message' => 'CECI EST UN MESSAGE DU SYSTÈME AUTOMATISÉ, NE PAS RÉPONDRE!',
+ 'teams' => 'Equipes',
+ 'terms' => 'Conditions d utilisation',
+ 'times' => 'Fois',
+ 'title' => 'Titre',
+ 'top-bountied' => 'Top Bountied',
+ 'topics' => 'Sujets',
+ 'tracker-codes' => 'Codes de suivi',
+ 'type' => 'Type',
+ 'type-verb' => 'Type',
+ 'types' => 'Types',
+ 'genre' => 'Genre',
+ 'genres' => 'Genres',
+ 'action' => 'Action',
+ 'actions' => 'Actions',
+ 'unknown' => 'Inconnu',
'unlocked-achievement' => 'Vous avez débloqué: réalisation',
- 'upload' => 'Envoyer',
- 'upload-guide' => 'Guide de l uploader',
- 'user' => 'Utilisateur',
- 'username' => 'Nom d utilisateur',
- 'users' => 'Utilisateurs',
- 'view' => 'Vue',
- 'view-all' => 'Voir tout',
- 'warnings' => 'Avertissements',
- 'year' => 'Année',
- 'yes' => 'Oui',
- 'your' => 'Votre',
- 'your-comment' => 'Votre commentaire',
+ 'upload' => 'Envoyer',
+ 'upload-guide' => 'Guide de l uploader',
+ 'user' => 'Utilisateur',
+ 'username' => 'Nom d utilisateur',
+ 'users' => 'Utilisateurs',
+ 'view' => 'Vue',
+ 'view-all' => 'Voir tout',
+ 'warnings' => 'Avertissements',
+ 'year' => 'Année',
+ 'yes' => 'Oui',
+ 'your' => 'Votre',
+ 'your-comment' => 'Votre commentaire',
];
diff --git a/lang/fr/email.php b/lang/fr/email.php
index 937fe277a..7c88c92aa 100644
--- a/lang/fr/email.php
+++ b/lang/fr/email.php
@@ -12,46 +12,46 @@
*/
return [
- 'activate-account' => 'Activer le compte',
- 'ban-reason' => 'Raison du bannissement',
- 'banned-footer' => 'C est ce que vous obtenez pour ne pas suivre les règles',
- 'banned-header' => 'Vous avez été banni',
- 'bug-description' => 'Problème',
- 'bug-footer' => 'Réparer cette merde',
- 'bug-header' => 'Nouveau rapport de bug de',
- 'bug-priority' => 'Priorité',
- 'bug-title' => 'Titre du bug',
- 'contact-header' => 'Nouveau mail de contact de',
- 'contact-message' => 'Message',
- 'contact-name' => 'Nom',
+ 'activate-account' => 'Activer le compte',
+ 'ban-reason' => 'Raison du bannissement',
+ 'banned-footer' => 'C est ce que vous obtenez pour ne pas suivre les règles',
+ 'banned-header' => 'Vous avez été banni',
+ 'bug-description' => 'Problème',
+ 'bug-footer' => 'Réparer cette merde',
+ 'bug-header' => 'Nouveau rapport de bug de',
+ 'bug-priority' => 'Priorité',
+ 'bug-title' => 'Titre du bug',
+ 'contact-header' => 'Nouveau mail de contact de',
+ 'contact-message' => 'Message',
+ 'contact-name' => 'Nom',
'fail-login-greeting' => 'La connexion au compte a échoué!',
- 'fail-login-line1' => 'Un échec de connexion a été détecté pour votre compte.',
- 'fail-login-line2' => 'Cette demande provient de: ip (: hôte) à: heure',
- 'fail-login-subject' => 'Échec de la notification de connexion',
- 'footer-link' => 'Si vous ne parvenez pas à cliquer sur le bouton: actionText, copiez et collez l’URL ci-dessous dans votre navigateur Web:',
- 'invite-header' => 'Invitation à',
- 'invite-invited' => 'Vous avez été invité à',
- 'invite-message' => 'Message',
- 'invite-signup' => 'S inscrire maintenant',
- 'newreply-header' => 'Il y a une nouvelle réponse dans votre sujet',
- 'newreply-message' => 'Message',
- 'newreply-replied' => 'A répondu à votre sujet',
- 'newreply-view' => 'Le voir maintenant',
- 'no-email-found' => 'Nous n avons pas trouvé cet email dans notre système!',
- 'register-code' => 'Pour compléter l activation de votre compte, cliquez sur le bouton ci-dessous.',
- 'register-footer' => 'Si le bouton ci-dessus ne fonctionne pas, copiez et collez l URL dans la barre d adresse de votre navigateur.',
- 'register-header' => 'Salut! Merci de vous inscrire sur',
- 'report-comment' => 'Commentaire',
- 'report-email' => 'Email',
- 'report-header' => 'Bonjour Admin, Un lien a été signalé sur',
- 'report-link' => 'Lien',
- 'report-link-hash' => 'Lien actuel',
- 'thanks' => 'Merci d utiliser',
- 'unban-footer' => 'Nous saluons le retour!',
- 'unban-header' => 'Vous avez été débanni',
- 'unban-reason' => 'Raison',
- 'username-reminder' => 'Vous nous avez récemment envoyé une demande pour votre nom d utilisateur sur notre application. Votre nom d utilisateur est',
- 'username-sent' => 'Votre nom d utilisateur a été envoyé à votre adresse email!',
- 'disabled-header' => 'Votre compte a été désactivé',
- 'pruned-header' => 'Votre compte a été élagué',
+ 'fail-login-line1' => 'Un échec de connexion a été détecté pour votre compte.',
+ 'fail-login-line2' => 'Cette demande provient de: ip (: hôte) à: heure',
+ 'fail-login-subject' => 'Échec de la notification de connexion',
+ 'footer-link' => 'Si vous ne parvenez pas à cliquer sur le bouton: actionText, copiez et collez l’URL ci-dessous dans votre navigateur Web:',
+ 'invite-header' => 'Invitation à',
+ 'invite-invited' => 'Vous avez été invité à',
+ 'invite-message' => 'Message',
+ 'invite-signup' => 'S inscrire maintenant',
+ 'newreply-header' => 'Il y a une nouvelle réponse dans votre sujet',
+ 'newreply-message' => 'Message',
+ 'newreply-replied' => 'A répondu à votre sujet',
+ 'newreply-view' => 'Le voir maintenant',
+ 'no-email-found' => 'Nous n avons pas trouvé cet email dans notre système!',
+ 'register-code' => 'Pour compléter l activation de votre compte, cliquez sur le bouton ci-dessous.',
+ 'register-footer' => 'Si le bouton ci-dessus ne fonctionne pas, copiez et collez l URL dans la barre d adresse de votre navigateur.',
+ 'register-header' => 'Salut! Merci de vous inscrire sur',
+ 'report-comment' => 'Commentaire',
+ 'report-email' => 'Email',
+ 'report-header' => 'Bonjour Admin, Un lien a été signalé sur',
+ 'report-link' => 'Lien',
+ 'report-link-hash' => 'Lien actuel',
+ 'thanks' => 'Merci d utiliser',
+ 'unban-footer' => 'Nous saluons le retour!',
+ 'unban-header' => 'Vous avez été débanni',
+ 'unban-reason' => 'Raison',
+ 'username-reminder' => 'Vous nous avez récemment envoyé une demande pour votre nom d utilisateur sur notre application. Votre nom d utilisateur est',
+ 'username-sent' => 'Votre nom d utilisateur a été envoyé à votre adresse email!',
+ 'disabled-header' => 'Votre compte a été désactivé',
+ 'pruned-header' => 'Votre compte a été élagué',
];
diff --git a/lang/fr/forum.php b/lang/fr/forum.php
index f6171cfb4..35e1c1864 100644
--- a/lang/fr/forum.php
+++ b/lang/fr/forum.php
@@ -12,67 +12,67 @@
*/
return [
- 'action' => 'Action',
- 'activity' => 'Activité',
- 'approved' => 'Approuvé',
- 'author' => 'Auteur',
- 'bug' => 'Bug',
- 'category-quick-search' => 'Recherche rapide du nom du sujet (dans la catégorie)',
- 'close-topic' => 'Verrouiller le sujet',
- 'closed' => 'Fermé',
- 'create-new-topic' => 'Créer un nouveau sujet',
- 'created' => 'Créé',
- 'current' => 'Actuel',
- 'delete-topic' => 'Supprimer ce sujet',
- 'delete-post-success' => 'Ce message est maintenant supprimé!',
- 'denied' => 'Refusé',
- 'dislike-post' => 'Post non apprécié',
- 'display-forum' => 'Afficher les sujets dans',
- 'edit-post' => 'Modifier le message',
- 'edit-post-success' => 'Le message a été édité avec succès!',
- 'edit-topic' => 'Modifier le sujet',
- 'forum' => 'Forum',
- 'forums' => 'Forums',
- 'implemented' => 'Mis en œuvre',
- 'in' => 'Dans',
- 'invalid' => 'Invalide',
- 'label' => 'Étiquette',
- 'label-system' => 'Système d étiquette',
- 'last-message' => 'Dernier message',
- 'last-post-info' => 'Dernier message',
- 'latest' => 'Dernier',
- 'like-post' => 'Comme ce poste',
- 'meta-category' => 'Liste des forums dans la catégorie',
- 'moderation' => 'Modération',
- 'name' => 'Nom',
- 'not-connected' => 'Vous devez être connecté',
- 'not-subscribed' => 'Non abonné',
- 'open' => 'Ouvrir',
- 'open-topic' => 'Ouvrir ce sujet',
- 'permalink' => 'Permalink',
- 'pin' => 'Épingle',
- 'post' => 'Poster',
- 'post-quick-search' => 'Recherche rapide du post',
- 'posts' => 'Postes',
- 'quote' => 'Citation',
- 'read-topic' => 'Lire le sujet',
- 'replies' => 'réponses',
- 'reply-topic-error' => 'Tu ne peux pas répondre à ce sujet!',
- 'reply-topic-success' => 'Posté avec succès',
- 'send-new-topic' => 'Enregistrer ce sujet',
- 'solved' => 'Résolu',
- 'state' => 'Etat',
- 'stats' => 'Statistiques',
- 'subscribed' => 'Abonné',
+ 'action' => 'Action',
+ 'activity' => 'Activité',
+ 'approved' => 'Approuvé',
+ 'author' => 'Auteur',
+ 'bug' => 'Bug',
+ 'category-quick-search' => 'Recherche rapide du nom du sujet (dans la catégorie)',
+ 'close-topic' => 'Verrouiller le sujet',
+ 'closed' => 'Fermé',
+ 'create-new-topic' => 'Créer un nouveau sujet',
+ 'created' => 'Créé',
+ 'current' => 'Actuel',
+ 'delete-topic' => 'Supprimer ce sujet',
+ 'delete-post-success' => 'Ce message est maintenant supprimé!',
+ 'denied' => 'Refusé',
+ 'dislike-post' => 'Post non apprécié',
+ 'display-forum' => 'Afficher les sujets dans',
+ 'edit-post' => 'Modifier le message',
+ 'edit-post-success' => 'Le message a été édité avec succès!',
+ 'edit-topic' => 'Modifier le sujet',
+ 'forum' => 'Forum',
+ 'forums' => 'Forums',
+ 'implemented' => 'Mis en œuvre',
+ 'in' => 'Dans',
+ 'invalid' => 'Invalide',
+ 'label' => 'Étiquette',
+ 'label-system' => 'Système d étiquette',
+ 'last-message' => 'Dernier message',
+ 'last-post-info' => 'Dernier message',
+ 'latest' => 'Dernier',
+ 'like-post' => 'Comme ce poste',
+ 'meta-category' => 'Liste des forums dans la catégorie',
+ 'moderation' => 'Modération',
+ 'name' => 'Nom',
+ 'not-connected' => 'Vous devez être connecté',
+ 'not-subscribed' => 'Non abonné',
+ 'open' => 'Ouvrir',
+ 'open-topic' => 'Ouvrir ce sujet',
+ 'permalink' => 'Permalink',
+ 'pin' => 'Épingle',
+ 'post' => 'Poster',
+ 'post-quick-search' => 'Recherche rapide du post',
+ 'posts' => 'Postes',
+ 'quote' => 'Citation',
+ 'read-topic' => 'Lire le sujet',
+ 'replies' => 'réponses',
+ 'reply-topic-error' => 'Tu ne peux pas répondre à ce sujet!',
+ 'reply-topic-success' => 'Posté avec succès',
+ 'send-new-topic' => 'Enregistrer ce sujet',
+ 'solved' => 'Résolu',
+ 'state' => 'Etat',
+ 'stats' => 'Statistiques',
+ 'subscribed' => 'Abonné',
'subscription-quick-search' => 'Recherche rapide du nom du sujet (dans les abonnements)',
- 'suggestion' => 'Suggestion',
- 'topic' => 'Sujet',
- 'topic-closed' => 'Ce sujet est fermé',
- 'topic-name' => 'Nom du sujet',
- 'topic-quick-search' => 'Recherche rapide du nom du sujet',
- 'topic-title' => 'Titre de ce sujet',
- 'topics' => 'Les sujets',
- 'unpin' => 'Détacher',
- 'view-all' => 'Voir tous les sujets',
- 'views' => 'Vues',
+ 'suggestion' => 'Suggestion',
+ 'topic' => 'Sujet',
+ 'topic-closed' => 'Ce sujet est fermé',
+ 'topic-name' => 'Nom du sujet',
+ 'topic-quick-search' => 'Recherche rapide du nom du sujet',
+ 'topic-title' => 'Titre de ce sujet',
+ 'topics' => 'Les sujets',
+ 'unpin' => 'Détacher',
+ 'view-all' => 'Voir tous les sujets',
+ 'views' => 'Vues',
];
diff --git a/lang/fr/graveyard.php b/lang/fr/graveyard.php
index 3323384a9..bed64e53b 100644
--- a/lang/fr/graveyard.php
+++ b/lang/fr/graveyard.php
@@ -12,24 +12,24 @@
*/
return [
- 'current-seedtime' => 'Actuelle Seedtime',
- 'dead' => 'Mort',
- 'graveyard' => 'Cimetière',
- 'guidelines' => 'Lignes directrices',
- 'guidelines-content' => '1) Tu ne peux pas réactiver ton propres téléchargements.
2) Ne réactivez pas quelque chose que tu ne peux pas commettre aussi.',
- 'howto' => 'Voici la règle',
- 'howto-desc1' => 'Tu dois seeder :name pendant 30 jours pour une résurrection. Dans ce cas, quand ton Seedtime de',
- 'howto-desc2' => 'tu seras récompensé',
- 'howto-hits' => 'atteint',
- 'not-rewarded' => 'Pas récompensé',
- 'pending' => 'En attente',
- 'resurrect' => 'Réactiver',
- 'resurrect-canceled' => 'Résurrection annulée avec succès!',
- 'resurrect-complete' => 'Résurrection des torrents terminée! Tu seras récompensé automatiquement si les conditions de Seedtime seront remplies.',
- 'resurrect-date' => 'Date de résurrection',
- 'resurrect-failed-own' => 'Échec de la résurrection des torrents! Tu ne peux pas ressusciter tes propres téléchargements.',
- 'resurrect-failed-pending' => 'Échec de la résurrection des torrents ! Ce torrent est déjà en attente de résurrection.',
- 'reward' => 'Jetons Freeleech',
- 'rewarded' => 'Récompensé',
- 'seedtime-goal' => 'Seedtime Objectif',
+ 'current-seedtime' => 'Actuelle Seedtime',
+ 'dead' => 'Mort',
+ 'graveyard' => 'Cimetière',
+ 'guidelines' => 'Lignes directrices',
+ 'guidelines-content' => '1) Tu ne peux pas réactiver ton propres téléchargements.
2) Ne réactivez pas quelque chose que tu ne peux pas commettre aussi.',
+ 'howto' => 'Voici la règle',
+ 'howto-desc1' => 'Tu dois seeder :name pendant 30 jours pour une résurrection. Dans ce cas, quand ton Seedtime de',
+ 'howto-desc2' => 'tu seras récompensé',
+ 'howto-hits' => 'atteint',
+ 'not-rewarded' => 'Pas récompensé',
+ 'pending' => 'En attente',
+ 'resurrect' => 'Réactiver',
+ 'resurrect-canceled' => 'Résurrection annulée avec succès!',
+ 'resurrect-complete' => 'Résurrection des torrents terminée! Tu seras récompensé automatiquement si les conditions de Seedtime seront remplies.',
+ 'resurrect-date' => 'Date de résurrection',
+ 'resurrect-failed-own' => 'Échec de la résurrection des torrents! Tu ne peux pas ressusciter tes propres téléchargements.',
+ 'resurrect-failed-pending' => 'Échec de la résurrection des torrents ! Ce torrent est déjà en attente de résurrection.',
+ 'reward' => 'Jetons Freeleech',
+ 'rewarded' => 'Récompensé',
+ 'seedtime-goal' => 'Seedtime Objectif',
];
diff --git a/lang/fr/notification.php b/lang/fr/notification.php
index 70ca22745..c4300b670 100644
--- a/lang/fr/notification.php
+++ b/lang/fr/notification.php
@@ -13,28 +13,28 @@
return [
'already-marked-read' => 'Notification déjà marquée lue!',
- 'all-deleted' => 'Toutes les notifications ont été supprimées!',
- 'all-marked-read' => 'Toutes les notifications marquées lues!',
- 'bon-gifts' => 'Bon Cadeaux',
- 'comment-tags' => 'Commentaire Mentions',
- 'date' => 'Date',
- 'delete' => 'Supprimer',
- 'delete-all' => 'Supprimer toutes les notifications',
- 'deleted' => 'Notification supprimée!',
- 'filter-by-type' => 'Filtrer par type de notification',
- 'mark-all-read' => 'tout marquer comme lu',
- 'mark-read' => 'Marquer comme lu',
- 'marked-read' => 'Notification marquée lue!',
- 'message' => 'Message',
- 'no-notifications' => 'Il n y a pas de notifications trouvées',
- 'not-existent' => 'La notification n\'existe pas!',
- 'notifications' => 'Notifications',
- 'post-tags' => 'Post Mentions',
- 'post-tips' => 'Post Pourboire',
- 'read' => 'Déjà lu',
- 'request-approvals' => 'Request Autorisé',
- 'request-bounties' => 'Request Récompense',
- 'request-rejections' => 'Request Rejets',
- 'reseed-requests' => 'Reseed Demande',
- 'title' => 'Titre',
+ 'all-deleted' => 'Toutes les notifications ont été supprimées!',
+ 'all-marked-read' => 'Toutes les notifications marquées lues!',
+ 'bon-gifts' => 'Bon Cadeaux',
+ 'comment-tags' => 'Commentaire Mentions',
+ 'date' => 'Date',
+ 'delete' => 'Supprimer',
+ 'delete-all' => 'Supprimer toutes les notifications',
+ 'deleted' => 'Notification supprimée!',
+ 'filter-by-type' => 'Filtrer par type de notification',
+ 'mark-all-read' => 'tout marquer comme lu',
+ 'mark-read' => 'Marquer comme lu',
+ 'marked-read' => 'Notification marquée lue!',
+ 'message' => 'Message',
+ 'no-notifications' => 'Il n y a pas de notifications trouvées',
+ 'not-existent' => 'La notification n\'existe pas!',
+ 'notifications' => 'Notifications',
+ 'post-tags' => 'Post Mentions',
+ 'post-tips' => 'Post Pourboire',
+ 'read' => 'Déjà lu',
+ 'request-approvals' => 'Request Autorisé',
+ 'request-bounties' => 'Request Récompense',
+ 'request-rejections' => 'Request Rejets',
+ 'reseed-requests' => 'Reseed Demande',
+ 'title' => 'Titre',
];
diff --git a/lang/fr/page.php b/lang/fr/page.php
index f762c540d..e5b289f89 100644
--- a/lang/fr/page.php
+++ b/lang/fr/page.php
@@ -12,28 +12,28 @@
*/
return [
- 'aboutus-advantage' => 'Les avantages',
- 'aboutus-advantage1' => 'Nous avons des membres et du personnel expérimentés qui connaissent bien le monde de l assistance vidéo / audio HD et technique.',
- 'aboutus-advantage2' => 'En plus de notre grande passion pour les films et les émissions de télévision, nous offrons également l une des meilleures sélections de quelque chose qui ne fait pas vraiment ailleurs! Un grand merci à nos posteurs.',
- 'aboutus-advantage3' => 'Bien que nous acceptions les dons pour que le site reste opérationnel, il n’y aura pas de MP ni de bannières sur le site. Aucune mendicité de nous.',
- 'aboutus-advantage4' => 'Notre communauté est incomparable pour son jeune âge. Entre notre personnel et nos utilisateurs, nous serons toujours là pour aider. Nous sommes passionnés par le fait de vous assurer que votre expérience sur: title est tout simplement incroyable.',
- 'aboutus-advantage5' => 'Notre service est utilisé quotidiennement par de nombreuses personnes à travers le monde. Nous avons prouvé que nous nous soucions de la fonctionnalité et de la sécurité de notre base de code. Nos développeurs travaillent chaque jour pour fournir une véritable base de code de nouvelle génération.',
- 'aboutus-header' => 'salut',
- 'aboutus-rules' => 'Ce que nous avons besoin de vous',
- 'aboutus-rules1' => 'Être un membre actif de la communauté! Cela signifie participer à des conversations productives, ajouter du contenu approuvé et aider les autres utilisateurs si vous le pouvez.',
- 'aboutus-rules2' => 'Pour lire le règlement dans son intégralité et s il vous plaît les respecter!',
- 'aboutus-rules3' => 'Faire des suggestions! Nous nous efforçons d améliorer chaque jour le titre. Nous ne disons pas que chaque suggestion sera utilisée, mais il est toujours utile de voir de nouvelles idées.',
- 'aboutus-welcome' => 'Parlons de',
- 'aboutus-welcome-desc' => ': Titre est une base de données Movie / TV / FANRES construite par la communauté . Chaque communauté de données a été ajoutée par notre communauté depuis 2017.: Les titres misent particulièrement sur le contenu HD, une base d utilisateurs proactive, une base de code géniale / sécurisée et une équipe du personnel serviable et sympathique.',
- 'blacklist-browsers' => 'Liste noire des Navigateurs',
- 'blacklist-btclient' => 'Liste noire des clients BitTorrent',
- 'blacklist-clients' => 'CListe noire des clients',
- 'blacklist-desc' => 'Les navigateurs et les clients Bittorrent suivants sont sur la liste noire / interdits d’annoncer à: titre',
- 'blacklist-webbrowser' => 'Liste noire des navigateurs Web',
+ 'aboutus-advantage' => 'Les avantages',
+ 'aboutus-advantage1' => 'Nous avons des membres et du personnel expérimentés qui connaissent bien le monde de l assistance vidéo / audio HD et technique.',
+ 'aboutus-advantage2' => 'En plus de notre grande passion pour les films et les émissions de télévision, nous offrons également l une des meilleures sélections de quelque chose qui ne fait pas vraiment ailleurs! Un grand merci à nos posteurs.',
+ 'aboutus-advantage3' => 'Bien que nous acceptions les dons pour que le site reste opérationnel, il n’y aura pas de MP ni de bannières sur le site. Aucune mendicité de nous.',
+ 'aboutus-advantage4' => 'Notre communauté est incomparable pour son jeune âge. Entre notre personnel et nos utilisateurs, nous serons toujours là pour aider. Nous sommes passionnés par le fait de vous assurer que votre expérience sur: title est tout simplement incroyable.',
+ 'aboutus-advantage5' => 'Notre service est utilisé quotidiennement par de nombreuses personnes à travers le monde. Nous avons prouvé que nous nous soucions de la fonctionnalité et de la sécurité de notre base de code. Nos développeurs travaillent chaque jour pour fournir une véritable base de code de nouvelle génération.',
+ 'aboutus-header' => 'salut',
+ 'aboutus-rules' => 'Ce que nous avons besoin de vous',
+ 'aboutus-rules1' => 'Être un membre actif de la communauté! Cela signifie participer à des conversations productives, ajouter du contenu approuvé et aider les autres utilisateurs si vous le pouvez.',
+ 'aboutus-rules2' => 'Pour lire le règlement dans son intégralité et s il vous plaît les respecter!',
+ 'aboutus-rules3' => 'Faire des suggestions! Nous nous efforçons d améliorer chaque jour le titre. Nous ne disons pas que chaque suggestion sera utilisée, mais il est toujours utile de voir de nouvelles idées.',
+ 'aboutus-welcome' => 'Parlons de',
+ 'aboutus-welcome-desc' => ': Titre est une base de données Movie / TV / FANRES construite par la communauté . Chaque communauté de données a été ajoutée par notre communauté depuis 2017.: Les titres misent particulièrement sur le contenu HD, une base d utilisateurs proactive, une base de code géniale / sécurisée et une équipe du personnel serviable et sympathique.',
+ 'blacklist-browsers' => 'Liste noire des Navigateurs',
+ 'blacklist-btclient' => 'Liste noire des clients BitTorrent',
+ 'blacklist-clients' => 'CListe noire des clients',
+ 'blacklist-desc' => 'Les navigateurs et les clients Bittorrent suivants sont sur la liste noire / interdits d’annoncer à: titre',
+ 'blacklist-webbrowser' => 'Liste noire des navigateurs Web',
'blacklist-emaildomain' => 'Liste noire des noms de domaine bloquée',
- 'email-blacklist-desc' => 'Les domaines de messagerie suivants ne peuvent pas être utilisés. Vous ne pouvez pas vous inscrire ou envoyer une invitation aux personnes suivantes.',
- 'email-whitelist-desc' => 'Les domaines de messagerie suivants sont les seuls domaines de messagerie autorisés à être utilisés. Vous pouvez uniquement enregistrer ou envoyer une invitation à l’aide des éléments suivants.',
- 'staff-group' => 'Groupe',
- 'staff-title' => 'Titre',
+ 'email-blacklist-desc' => 'Les domaines de messagerie suivants ne peuvent pas être utilisés. Vous ne pouvez pas vous inscrire ou envoyer une invitation aux personnes suivantes.',
+ 'email-whitelist-desc' => 'Les domaines de messagerie suivants sont les seuls domaines de messagerie autorisés à être utilisés. Vous pouvez uniquement enregistrer ou envoyer une invitation à l’aide des éléments suivants.',
+ 'staff-group' => 'Groupe',
+ 'staff-title' => 'Titre',
'whitelist-emaildomain' => 'Domaine approuvé',
];
diff --git a/lang/fr/pagination.php b/lang/fr/pagination.php
index 643102ee6..10d5969d4 100644
--- a/lang/fr/pagination.php
+++ b/lang/fr/pagination.php
@@ -24,5 +24,5 @@ return [
*/
'previous' => 'Précédent',
- 'next' => 'Suivant',
+ 'next' => 'Suivant',
];
diff --git a/lang/fr/passwords.php b/lang/fr/passwords.php
index e13b5cb89..0942ac161 100644
--- a/lang/fr/passwords.php
+++ b/lang/fr/passwords.php
@@ -24,8 +24,8 @@ return [
*/
'password' => 'Les mots de passe doivent contenir au moins six caractères et être identiques.',
- 'reset' => 'Votre mot de passe a été réinitialisé !',
- 'sent' => 'Nous vous avons envoyé par email le lien de réinitialisation du mot de passe !',
- 'token' => "Ce jeton de réinitialisation du mot de passe n'est pas valide.",
- 'user' => "Aucun utilisateur n'a été trouvé avec cette adresse email.",
+ 'reset' => 'Votre mot de passe a été réinitialisé !',
+ 'sent' => 'Nous vous avons envoyé par email le lien de réinitialisation du mot de passe !',
+ 'token' => "Ce jeton de réinitialisation du mot de passe n'est pas valide.",
+ 'user' => "Aucun utilisateur n'a été trouvé avec cette adresse email.",
];
diff --git a/lang/fr/playlist.php b/lang/fr/playlist.php
index 7edbc8195..1ee260999 100644
--- a/lang/fr/playlist.php
+++ b/lang/fr/playlist.php
@@ -12,26 +12,26 @@
*/
return [
- 'about' => 'Ici, tu trouveras des listes créées par les utilisateurs!',
- 'attached-success' => 'Le torrent a été attaché avec succès à ta Playlist.',
- 'add-to-playlist' => 'Ajouter Torrent à la Playlist',
- 'add-torrent' => 'Ajouter Torrent',
- 'added-by' => 'Par:',
- 'cover' => 'Sélectionnez une image de couverture',
- 'create' => 'Créer une nouvelle Playlist',
- 'delete-playlist' => 'Supprimer Playlist',
- 'deleted' => 'Playlist supprimée!',
- 'detached-success' => 'Le torrent a été détaché avec succès de ta Playlist.',
- 'desc' => 'Playlist Description',
- 'download-all' => 'Télécharger tous les torrents de la Playlist',
- 'edit-playlist' => 'Modifier Playlist',
- 'list-by' => 'Une liste faite par:',
- 'list-about' => 'Une liste sur:',
- 'is-private' => 'Playlist Privé?',
- 'playlists' => 'Playlists',
- 'private-error' => 'Cette playlist est privée!',
+ 'about' => 'Ici, tu trouveras des listes créées par les utilisateurs!',
+ 'attached-success' => 'Le torrent a été attaché avec succès à ta Playlist.',
+ 'add-to-playlist' => 'Ajouter Torrent à la Playlist',
+ 'add-torrent' => 'Ajouter Torrent',
+ 'added-by' => 'Par:',
+ 'cover' => 'Sélectionnez une image de couverture',
+ 'create' => 'Créer une nouvelle Playlist',
+ 'delete-playlist' => 'Supprimer Playlist',
+ 'deleted' => 'Playlist supprimée!',
+ 'detached-success' => 'Le torrent a été détaché avec succès de ta Playlist.',
+ 'desc' => 'Playlist Description',
+ 'download-all' => 'Télécharger tous les torrents de la Playlist',
+ 'edit-playlist' => 'Modifier Playlist',
+ 'list-by' => 'Une liste faite par:',
+ 'list-about' => 'Une liste sur:',
+ 'is-private' => 'Playlist Privé?',
+ 'playlists' => 'Playlists',
+ 'private-error' => 'Cette playlist est privée!',
'published-success' => 'Ta playlist a été créée avec succès!',
- 'title' => 'Titre',
- 'titles' => 'Titres',
- 'update-success' => 'Ta playlist a été actualisée avec succès!',
+ 'title' => 'Titre',
+ 'titles' => 'Titres',
+ 'update-success' => 'Ta playlist a été actualisée avec succès!',
];
diff --git a/lang/fr/pm.php b/lang/fr/pm.php
index 48ef27acb..0edcf8881 100644
--- a/lang/fr/pm.php
+++ b/lang/fr/pm.php
@@ -13,32 +13,32 @@
return [
'all-marked-read' => 'Tes messages ont tous été marqués lus!',
- 'create' => 'Créer',
- 'delete' => 'Effacer',
- 'delete-success' => 'Le message a été supprimé avec succès!',
- 'enter-subject' => 'Entrez le sujet',
- 'error' => 'Qu\'est-ce que tu essayes de faire ici?!',
- 'from' => 'De',
- 'inbox' => 'Boîte de réception',
- 'mark-all-read' => 'Marquer tous les messages comme lus',
- 'message' => 'Message',
- 'messages' => 'Messages',
- 'new' => 'Nouveau message',
- 'outbox' => 'Boîte d\'envoi',
- 'private' => 'Privé',
- 'read' => 'Lire',
- 'received-at' => 'Reçu à',
- 'refresh' => 'Rafraîchir',
- 'reply' => 'Répondre',
- 'search' => 'Recherche par sujet',
- 'select' => 'Sélectionnez un utilisateur',
- 'send' => 'Envoyer un message personnel',
- 'send-to' => 'Envoyer un message à',
- 'sent' => 'Envoyé',
- 'sent-at' => 'Envoyé à',
- 'sent-success' => 'Ton message a été envoyé avec succès!',
- 'subject' => 'Sujet',
- 'to' => 'À',
- 'unread' => 'Non lu',
- 'empty-inbox' => 'Boîte de réception vide',
+ 'create' => 'Créer',
+ 'delete' => 'Effacer',
+ 'delete-success' => 'Le message a été supprimé avec succès!',
+ 'enter-subject' => 'Entrez le sujet',
+ 'error' => 'Qu\'est-ce que tu essayes de faire ici?!',
+ 'from' => 'De',
+ 'inbox' => 'Boîte de réception',
+ 'mark-all-read' => 'Marquer tous les messages comme lus',
+ 'message' => 'Message',
+ 'messages' => 'Messages',
+ 'new' => 'Nouveau message',
+ 'outbox' => 'Boîte d\'envoi',
+ 'private' => 'Privé',
+ 'read' => 'Lire',
+ 'received-at' => 'Reçu à',
+ 'refresh' => 'Rafraîchir',
+ 'reply' => 'Répondre',
+ 'search' => 'Recherche par sujet',
+ 'select' => 'Sélectionnez un utilisateur',
+ 'send' => 'Envoyer un message personnel',
+ 'send-to' => 'Envoyer un message à',
+ 'sent' => 'Envoyé',
+ 'sent-at' => 'Envoyé à',
+ 'sent-success' => 'Ton message a été envoyé avec succès!',
+ 'subject' => 'Sujet',
+ 'to' => 'À',
+ 'unread' => 'Non lu',
+ 'empty-inbox' => 'Boîte de réception vide',
];
diff --git a/lang/fr/poll.php b/lang/fr/poll.php
index 52eef297d..27aa571e2 100644
--- a/lang/fr/poll.php
+++ b/lang/fr/poll.php
@@ -12,22 +12,22 @@
*/
return [
- 'add-option' => 'Ajouter une option',
- 'already-voted-error' => 'Tu as déjà voté sur ce sondage. Ton vote n\'a pas été compté.',
+ 'add-option' => 'Ajouter une option',
+ 'already-voted-error' => 'Tu as déjà voté sur ce sondage. Ton vote n\'a pas été compté.',
'already-voted-result' => 'Tu as déjà voté sur ce sondage. Voici les résultats.',
- 'create-poll' => 'Créer un sondage',
- 'current' => 'Sondage (s) actuel (s)',
- 'delete-option' => 'Supprimer l option',
- 'edit-poll' => 'Editer le sondage',
- 'multiple-choice' => 'Ceci est un sondage à choix multiples. Sélectionnez autant de réponses que vous le souhaitez.',
- 'option' => 'Option',
- 'poll' => 'Sondage',
- 'polls' => 'Sondages',
- 'results' => 'Résultats du sondage',
- 'title' => 'Titre',
- 'total' => 'Total des votes',
- 'vote' => 'Vote',
- 'vote-counted' => 'Ton vote a été compté.',
- 'vote-now' => 'Votez maintenant!',
- 'votes' => 'Votes',
+ 'create-poll' => 'Créer un sondage',
+ 'current' => 'Sondage (s) actuel (s)',
+ 'delete-option' => 'Supprimer l option',
+ 'edit-poll' => 'Editer le sondage',
+ 'multiple-choice' => 'Ceci est un sondage à choix multiples. Sélectionnez autant de réponses que vous le souhaitez.',
+ 'option' => 'Option',
+ 'poll' => 'Sondage',
+ 'polls' => 'Sondages',
+ 'results' => 'Résultats du sondage',
+ 'title' => 'Titre',
+ 'total' => 'Total des votes',
+ 'vote' => 'Vote',
+ 'vote-counted' => 'Ton vote a été compté.',
+ 'vote-now' => 'Votez maintenant!',
+ 'votes' => 'Votes',
];
diff --git a/lang/fr/request.php b/lang/fr/request.php
index de4227a65..9bf48bb1b 100644
--- a/lang/fr/request.php
+++ b/lang/fr/request.php
@@ -12,84 +12,84 @@
*/
return [
- 'access-error' => 'Tu n\'as pas le droit d\'approuver cette demande.',
+ 'access-error' => 'Tu n\'as pas le droit d\'approuver cette demande.',
'access-delete-error' => 'Tu n\'as pas le droit de supprimer cette demande.',
- 'add-request' => 'Ajouter une demande',
- 'added-bonus' => 'Ton bonus a été ajouté avec succès.',
- 'added-request' => 'Demande ajoutée.',
- 'age' => 'Âge',
- 'all-requests' => 'Toutes les demandes',
- 'already-approved' => 'Il semble que cette demande ait déjà été approuvée',
- 'already-claimed' => 'Quelqu\'un d\'autre a déjà réclamé cette demande.',
- 'already-rejected' => 'Il semble que cette demande ait déjà été rejetée',
- 'approve' => 'Approuver',
- 'approved-anon' => 'Tu as approuvé %s et le bonus a été attribué à une personne anonyme.',
- 'approved-user' => 'Tu as approuvé %s et la prime a été attribuée à %s',
- 'bounty' => 'Prime',
- 'bounty-claimed' => 'Prime réclamée',
- 'bounty-unclaimed' => 'Prime non réclamée',
- 'category' => 'Catégorie',
- 'claim' => 'Réclamer',
- 'claim-anon-choose' => 'S il vous plaît choisir judicieusement',
- 'claim-as-anon' => 'Voulez-vous réclamer ceci de manière autonome',
- 'claim-now' => 'Réclamer maintenant',
- 'claimed' => 'Revendiqué',
- 'claimed-success' => 'Demande réclamée avec succès',
- 'current' => 'Actuel',
- 'delete' => 'Supprimer cette demande',
+ 'add-request' => 'Ajouter une demande',
+ 'added-bonus' => 'Ton bonus a été ajouté avec succès.',
+ 'added-request' => 'Demande ajoutée.',
+ 'age' => 'Âge',
+ 'all-requests' => 'Toutes les demandes',
+ 'already-approved' => 'Il semble que cette demande ait déjà été approuvée',
+ 'already-claimed' => 'Quelqu\'un d\'autre a déjà réclamé cette demande.',
+ 'already-rejected' => 'Il semble que cette demande ait déjà été rejetée',
+ 'approve' => 'Approuver',
+ 'approved-anon' => 'Tu as approuvé %s et le bonus a été attribué à une personne anonyme.',
+ 'approved-user' => 'Tu as approuvé %s et la prime a été attribuée à %s',
+ 'bounty' => 'Prime',
+ 'bounty-claimed' => 'Prime réclamée',
+ 'bounty-unclaimed' => 'Prime non réclamée',
+ 'category' => 'Catégorie',
+ 'claim' => 'Réclamer',
+ 'claim-anon-choose' => 'S il vous plaît choisir judicieusement',
+ 'claim-as-anon' => 'Voulez-vous réclamer ceci de manière autonome',
+ 'claim-now' => 'Réclamer maintenant',
+ 'claimed' => 'Revendiqué',
+ 'claimed-success' => 'Demande réclamée avec succès',
+ 'current' => 'Actuel',
+ 'delete' => 'Supprimer cette demande',
'delete-confirmation' => 'Êtes-vous sûr de vouloir supprimer cette demande?',
- 'delete-filled' => 'Cette demande ne peut être supprimée que si elle n a pas été remplie',
- 'deleted' => 'Tu as supprimé %s',
- 'description' => 'Description',
- 'dont-have-bps' => 'Vous n avez pas assez de bonus',
- 'edit-request' => 'Demande de modification',
- 'edited-request' => 'Demande éditée avec succès.',
- 'enter-bp' => 'Entrez des points bonus (minimum 100)',
- 'enter-hash' => 'Entrez le hachage d informations du torrent téléchargé',
- 'fill' => 'Remplir',
- 'fill-request' => 'Remplir cette demande',
- 'filled' => 'Rempli',
- 'filled-by' => 'Rempli par',
- 'for' => 'Pour',
- 'fulfill' => 'Remplir',
- 'last-vote' => 'Dernier vote',
- 'my-requests' => 'Mes demandes',
- 'no' => 'Non,',
- 'no-imdb-id' => 'Toutes les demandes doivent contenir un numéro IMDB',
- 'no-privileges' => 'Erreur: vos privilèges ont été désactivés',
- 'no-privileges-desc' => 'Si vous pensez que c est une erreur, veuillez contacter le personnel.',
- 'no-refunds' => 'Les échanges de coupon sur la création, le remplissage et les primes sont définitifs!
PAS DE REMBOURSEMENT!',
- 'pending' => 'en attente',
- 'pending-approval' => 'Ta soumission doit encore être approuvée par le requérant.',
- 'pending-moderation' => 'Le torrent info_hash que tu essaies d\'utiliser est valide dans notre base de données mais est toujours en attente de modération. Attends que ton torrent soit approuvé.',
- 'reason' => 'Raison',
- 'reject' => 'Rejeter',
- 'report' => 'Rapport',
- 'request' => 'Demande',
- 'request-details' => 'Détails de la demande',
- 'request-reset' => 'Cette demande a été réinitialisée.',
- 'requested-by' => 'Demandé par',
- 'requests' => 'Demandes',
- 'required' => 'Champs obligatoires',
- 'reset' => 'Réinitialiser',
- 'reset-confirmation' => 'Êtes-vous sûr de vouloir réinitialiser cette demande?',
- 'reset-request' => 'Réinitialiser cette demande',
- 'reward' => 'Récompense',
- 'reward-desc' => 'Combien de points bonus souhaitez-vous récompenser? Minimum 100 BP',
- 'reward-from' => 'De',
- 'title' => 'Titre',
- 'torrent-hash' => 'Torrent Hash',
- 'total-bounty' => 'Prime totale',
- 'type' => 'Type',
- 'unclaim' => 'Demande non-réclamée',
- 'unclaim-error' => 'Rien à réclamer.',
- 'unclaimed-success' => 'Demande rejetée avec succès',
- 'unfilled' => 'Non rempli',
- 'view-filled' => 'Voir champs rempli',
- 'view-unfilled' => 'Voir champs non rempli',
- 'vote' => 'Vote',
- 'vote-that' => 'Votez pour cette demande',
- 'voters' => 'Electeurs',
- 'votes' => 'Votes',
- 'yes' => 'Oui',
+ 'delete-filled' => 'Cette demande ne peut être supprimée que si elle n a pas été remplie',
+ 'deleted' => 'Tu as supprimé %s',
+ 'description' => 'Description',
+ 'dont-have-bps' => 'Vous n avez pas assez de bonus',
+ 'edit-request' => 'Demande de modification',
+ 'edited-request' => 'Demande éditée avec succès.',
+ 'enter-bp' => 'Entrez des points bonus (minimum 100)',
+ 'enter-hash' => 'Entrez le hachage d informations du torrent téléchargé',
+ 'fill' => 'Remplir',
+ 'fill-request' => 'Remplir cette demande',
+ 'filled' => 'Rempli',
+ 'filled-by' => 'Rempli par',
+ 'for' => 'Pour',
+ 'fulfill' => 'Remplir',
+ 'last-vote' => 'Dernier vote',
+ 'my-requests' => 'Mes demandes',
+ 'no' => 'Non,',
+ 'no-imdb-id' => 'Toutes les demandes doivent contenir un numéro IMDB',
+ 'no-privileges' => 'Erreur: vos privilèges ont été désactivés',
+ 'no-privileges-desc' => 'Si vous pensez que c est une erreur, veuillez contacter le personnel.',
+ 'no-refunds' => 'Les échanges de coupon sur la création, le remplissage et les primes sont définitifs!
PAS DE REMBOURSEMENT!',
+ 'pending' => 'en attente',
+ 'pending-approval' => 'Ta soumission doit encore être approuvée par le requérant.',
+ 'pending-moderation' => 'Le torrent info_hash que tu essaies d\'utiliser est valide dans notre base de données mais est toujours en attente de modération. Attends que ton torrent soit approuvé.',
+ 'reason' => 'Raison',
+ 'reject' => 'Rejeter',
+ 'report' => 'Rapport',
+ 'request' => 'Demande',
+ 'request-details' => 'Détails de la demande',
+ 'request-reset' => 'Cette demande a été réinitialisée.',
+ 'requested-by' => 'Demandé par',
+ 'requests' => 'Demandes',
+ 'required' => 'Champs obligatoires',
+ 'reset' => 'Réinitialiser',
+ 'reset-confirmation' => 'Êtes-vous sûr de vouloir réinitialiser cette demande?',
+ 'reset-request' => 'Réinitialiser cette demande',
+ 'reward' => 'Récompense',
+ 'reward-desc' => 'Combien de points bonus souhaitez-vous récompenser? Minimum 100 BP',
+ 'reward-from' => 'De',
+ 'title' => 'Titre',
+ 'torrent-hash' => 'Torrent Hash',
+ 'total-bounty' => 'Prime totale',
+ 'type' => 'Type',
+ 'unclaim' => 'Demande non-réclamée',
+ 'unclaim-error' => 'Rien à réclamer.',
+ 'unclaimed-success' => 'Demande rejetée avec succès',
+ 'unfilled' => 'Non rempli',
+ 'view-filled' => 'Voir champs rempli',
+ 'view-unfilled' => 'Voir champs non rempli',
+ 'vote' => 'Vote',
+ 'vote-that' => 'Votez pour cette demande',
+ 'voters' => 'Electeurs',
+ 'votes' => 'Votes',
+ 'yes' => 'Oui',
];
diff --git a/lang/fr/rss.php b/lang/fr/rss.php
index 17488db20..860f11412 100644
--- a/lang/fr/rss.php
+++ b/lang/fr/rss.php
@@ -12,23 +12,23 @@
*/
return [
- 'create' => 'Créer',
+ 'create' => 'Créer',
'create-private-feed' => 'Créer un flux RSS privé',
- 'create-public-feed' => 'Créer un flux RSS public',
- 'created' => 'Flux RSS privé créé',
- 'delete' => 'Effacer',
- 'deleted' => 'Flux RSS supprimé!',
- 'edit' => 'modifier',
- 'edit-private-feed' => 'Modifier le flux RSS privé',
- 'edit-public-feed' => 'Modifier le flux RSS public',
- 'error' => 'Incapable de traiter la demande',
- 'feed' => 'Flux',
- 'feeds' => 'Flux',
- 'name' => 'Nom',
- 'public' => 'Publique',
- 'private' => 'Privé',
- 'rss' => 'RSS',
- 'rss-feed' => 'Flux RSS',
- 'type' => 'Type',
- 'updated' => 'Flux RSS privé actualisé',
+ 'create-public-feed' => 'Créer un flux RSS public',
+ 'created' => 'Flux RSS privé créé',
+ 'delete' => 'Effacer',
+ 'deleted' => 'Flux RSS supprimé!',
+ 'edit' => 'modifier',
+ 'edit-private-feed' => 'Modifier le flux RSS privé',
+ 'edit-public-feed' => 'Modifier le flux RSS public',
+ 'error' => 'Incapable de traiter la demande',
+ 'feed' => 'Flux',
+ 'feeds' => 'Flux',
+ 'name' => 'Nom',
+ 'public' => 'Publique',
+ 'private' => 'Privé',
+ 'rss' => 'RSS',
+ 'rss-feed' => 'Flux RSS',
+ 'type' => 'Type',
+ 'updated' => 'Flux RSS privé actualisé',
];
diff --git a/lang/fr/staff.php b/lang/fr/staff.php
index b6a474465..0d0e3df40 100644
--- a/lang/fr/staff.php
+++ b/lang/fr/staff.php
@@ -12,50 +12,50 @@
*/
return [
- 'audit-log' => 'Journal de bord',
- 'articles' => 'Articles',
- 'applications' => 'Applications',
- 'bans-log' => 'Journal des bans',
- 'blocks' => 'Blocks',
- 'bot' => 'Bot',
- 'bots' => 'Bots',
- 'chat' => 'Chat',
- 'config-manager' => 'Panneau de Configuration',
- 'dashboard' => 'Tableau de bord',
- 'failed-login-log' => 'Journal des Echecs de connexions',
- 'flush-ghost-peers' => 'Vider les pairs Fantômes',
- 'forums' => 'Forums',
- 'frontend' => 'Frontend',
- 'general-tools' => 'Outils',
- 'groups' => 'Groupes',
- 'invites-log' => 'Journal des invitations',
- 'laravel-log' => 'Journal de Laravel',
- 'links' => 'Liens',
- 'logs' => 'Journaux',
- 'mass-pm' => 'Messages en masse',
- 'mass-validate-users' => 'Validation en masse',
- 'moderation' => 'Moderation',
- 'pages' => 'Pages',
- 'please-moderate' => 'Veuiller modérer ce torrent !',
- 'polls' => 'Sondages',
- 'reports-log' => 'Journal des rapports',
- 'rooms' => 'Rooms',
- 'rss' => 'RSS',
- 'staff-dashboard' => 'Tableau de bord du Staff',
- 'statuses' => 'Statuts',
- 'torrent-categories' => 'Catégorie des Torrents',
- 'torrent-moderation' => 'Modération des Torrents',
- 'torrent-tools' => 'Outils Torrent',
- 'torrent-types' => 'Types de Torrent',
- 'torrents' => 'Torrents',
- 'user-gifting' => 'Cadeaux aux utilisateurs',
- 'user-notes' => 'Journal des notes utilisateur',
- 'user-search' => 'Recherche de membre',
- 'user-tools' => 'Outils utilisateurs',
- 'warnings-log' => 'Journal des avertissements',
- 'you-have' => 'Vous avez',
+ 'audit-log' => 'Journal de bord',
+ 'articles' => 'Articles',
+ 'applications' => 'Applications',
+ 'bans-log' => 'Journal des bans',
+ 'blocks' => 'Blocks',
+ 'bot' => 'Bot',
+ 'bots' => 'Bots',
+ 'chat' => 'Chat',
+ 'config-manager' => 'Panneau de Configuration',
+ 'dashboard' => 'Tableau de bord',
+ 'failed-login-log' => 'Journal des Echecs de connexions',
+ 'flush-ghost-peers' => 'Vider les pairs Fantômes',
+ 'forums' => 'Forums',
+ 'frontend' => 'Frontend',
+ 'general-tools' => 'Outils',
+ 'groups' => 'Groupes',
+ 'invites-log' => 'Journal des invitations',
+ 'laravel-log' => 'Journal de Laravel',
+ 'links' => 'Liens',
+ 'logs' => 'Journaux',
+ 'mass-pm' => 'Messages en masse',
+ 'mass-validate-users' => 'Validation en masse',
+ 'moderation' => 'Moderation',
+ 'pages' => 'Pages',
+ 'please-moderate' => 'Veuiller modérer ce torrent !',
+ 'polls' => 'Sondages',
+ 'reports-log' => 'Journal des rapports',
+ 'rooms' => 'Rooms',
+ 'rss' => 'RSS',
+ 'staff-dashboard' => 'Tableau de bord du Staff',
+ 'statuses' => 'Statuts',
+ 'torrent-categories' => 'Catégorie des Torrents',
+ 'torrent-moderation' => 'Modération des Torrents',
+ 'torrent-tools' => 'Outils Torrent',
+ 'torrent-types' => 'Types de Torrent',
+ 'torrents' => 'Torrents',
+ 'user-gifting' => 'Cadeaux aux utilisateurs',
+ 'user-notes' => 'Journal des notes utilisateur',
+ 'user-search' => 'Recherche de membre',
+ 'user-tools' => 'Outils utilisateurs',
+ 'warnings-log' => 'Journal des avertissements',
+ 'you-have' => 'Vous avez',
'possible-leech-cheaters' => 'Tricheurs potentiels',
- 'chat-tools' => 'Outils du chat',
- 'flush-chat' => 'Vider la Chatbox',
- 'seedboxes' => 'Seedboxs enregistrées',
+ 'chat-tools' => 'Outils du chat',
+ 'flush-chat' => 'Vider la Chatbox',
+ 'seedboxes' => 'Seedboxs enregistrées',
];
diff --git a/lang/fr/stat.php b/lang/fr/stat.php
index fc66324ae..ba985ca1e 100644
--- a/lang/fr/stat.php
+++ b/lang/fr/stat.php
@@ -12,40 +12,40 @@
*/
return [
- 'by-count' => 'Par nombre',
- 'by-data' => 'Par données',
- 'by-volume' => 'Par volume',
- 'group' => 'Groupe',
- 'groups' => 'Groupes',
- 'nerd-stats' => 'Stats Nerd',
- 'nerd-stats-desc' => 'Nous apprécions toutes les statistiques. En voici quelques-unes que nous trouvons importantes',
- 'registration-date' => 'Date d inscription',
- 'request-fulfilled' => 'Demande remplie',
- 'request-not-fulfilled' => 'Demande non remplie',
+ 'by-count' => 'Par nombre',
+ 'by-data' => 'Par données',
+ 'by-volume' => 'Par volume',
+ 'group' => 'Groupe',
+ 'groups' => 'Groupes',
+ 'nerd-stats' => 'Stats Nerd',
+ 'nerd-stats-desc' => 'Nous apprécions toutes les statistiques. En voici quelques-unes que nous trouvons importantes',
+ 'registration-date' => 'Date d inscription',
+ 'request-fulfilled' => 'Demande remplie',
+ 'request-not-fulfilled' => 'Demande non remplie',
'request-pending-aproval' => 'Demande en attente d approbation',
- 'select-category' => 'Veuillez sélectionner une catégorie ci-dessous',
- 'site-stats' => 'Statistiques du site',
- 'stats' => 'Statistiques',
- 'stats-format' => 'Toutes les statistiques affichées dans le format Top 100',
- 'top-bankers' => 'Top en gains',
- 'top-bountied' => 'Top des primés',
- 'top-completed' => 'Top terminé',
- 'top-dead' => 'Top Dead',
- 'top-downloaded' => 'Torrents les plus téléchargés',
- 'top-downloaders' => 'Membres téléchargeant le plus',
- 'top-dying' => 'Top des torrents en fin de vie',
- 'top-leeched' => 'Torrents les plus leeched',
- 'top-leechers' => 'Membres les plus leechers',
- 'top-seeded' => 'Torrents les plus partagés au total',
- 'top-seeding' => 'Torrents les plus partagés actuellement',
- 'top-seeders' => 'Membres seedant le plus',
- 'top-seedsize' => 'Torrents les plus gros en seed',
- 'top-seedtime' => 'Torrents en seed depuis longtemps',
- 'top-uploaders' => 'Top des membres uploadant le plus',
- 'total-download' => 'Total des téléchargements',
- 'total-torrents' => 'Total des Torrents',
- 'total-traffic' => 'Trafic total',
- 'total-upload' => 'Total des uploads',
- 'users-in-group' => 'Utilisateurs du groupe',
- 'users-per-group' => 'Utilisateurs par groupe',
+ 'select-category' => 'Veuillez sélectionner une catégorie ci-dessous',
+ 'site-stats' => 'Statistiques du site',
+ 'stats' => 'Statistiques',
+ 'stats-format' => 'Toutes les statistiques affichées dans le format Top 100',
+ 'top-bankers' => 'Top en gains',
+ 'top-bountied' => 'Top des primés',
+ 'top-completed' => 'Top terminé',
+ 'top-dead' => 'Top Dead',
+ 'top-downloaded' => 'Torrents les plus téléchargés',
+ 'top-downloaders' => 'Membres téléchargeant le plus',
+ 'top-dying' => 'Top des torrents en fin de vie',
+ 'top-leeched' => 'Torrents les plus leeched',
+ 'top-leechers' => 'Membres les plus leechers',
+ 'top-seeded' => 'Torrents les plus partagés au total',
+ 'top-seeding' => 'Torrents les plus partagés actuellement',
+ 'top-seeders' => 'Membres seedant le plus',
+ 'top-seedsize' => 'Torrents les plus gros en seed',
+ 'top-seedtime' => 'Torrents en seed depuis longtemps',
+ 'top-uploaders' => 'Top des membres uploadant le plus',
+ 'total-download' => 'Total des téléchargements',
+ 'total-torrents' => 'Total des Torrents',
+ 'total-traffic' => 'Trafic total',
+ 'total-upload' => 'Total des uploads',
+ 'users-in-group' => 'Utilisateurs du groupe',
+ 'users-per-group' => 'Utilisateurs par groupe',
];
diff --git a/lang/fr/ticket.php b/lang/fr/ticket.php
index 3d01bac10..611a217e0 100644
--- a/lang/fr/ticket.php
+++ b/lang/fr/ticket.php
@@ -12,35 +12,35 @@
*/
return [
- 'assign' => 'Assigner',
- 'assigned-staff' => 'Personnel assigné',
- 'assigned-success' => 'Le ticket du Helpdesk a été assigné avec succès!',
- 'attachments' => 'Pièces jointes',
- 'attachments-save' => 'Sauvegarder les pièces jointes',
- 'body' => 'Sujet',
- 'body-enter' => 'Entrez le sujet ici...',
- 'category' => 'Catégorie',
- 'close' => 'Fermer',
- 'closed' => 'Fermé',
- 'closed-success' => 'Le ticket du Helpdesk a été fermé avec succès!',
- 'create-ticket' => 'Créer un ticket',
- 'created' => 'Créé',
- 'created-success' => 'Ton ticket du Helpdesk a été créé avec succès!',
- 'delete' => 'Supprimer',
- 'deleted-success' => 'Ton ticket du Helpdesk a été supprimé avec succès!',
- 'description' => 'Description',
- 'download' => 'Télécharger',
- 'fix-errors' => 'Veuillez corriger les erreurs suivantes et réessayer:',
- 'helpdesk' => 'Helpdesk',
- 'no-attach' => 'Aucune pièce jointe trouvée',
- 'priority' => 'Priorité',
- 'opened-by' => 'Ouvert par:',
- 'reset' => 'Réinitialiser',
- 'subject' => 'Sujet',
- 'subject-enter' => 'Entrez le sujet ici...',
- 'submit-ticket' => 'Soumettre le ticket',
- 'ticket' => 'Ticket',
- 'unassign' => 'Désassigner',
+ 'assign' => 'Assigner',
+ 'assigned-staff' => 'Personnel assigné',
+ 'assigned-success' => 'Le ticket du Helpdesk a été assigné avec succès!',
+ 'attachments' => 'Pièces jointes',
+ 'attachments-save' => 'Sauvegarder les pièces jointes',
+ 'body' => 'Sujet',
+ 'body-enter' => 'Entrez le sujet ici...',
+ 'category' => 'Catégorie',
+ 'close' => 'Fermer',
+ 'closed' => 'Fermé',
+ 'closed-success' => 'Le ticket du Helpdesk a été fermé avec succès!',
+ 'create-ticket' => 'Créer un ticket',
+ 'created' => 'Créé',
+ 'created-success' => 'Ton ticket du Helpdesk a été créé avec succès!',
+ 'delete' => 'Supprimer',
+ 'deleted-success' => 'Ton ticket du Helpdesk a été supprimé avec succès!',
+ 'description' => 'Description',
+ 'download' => 'Télécharger',
+ 'fix-errors' => 'Veuillez corriger les erreurs suivantes et réessayer:',
+ 'helpdesk' => 'Helpdesk',
+ 'no-attach' => 'Aucune pièce jointe trouvée',
+ 'priority' => 'Priorité',
+ 'opened-by' => 'Ouvert par:',
+ 'reset' => 'Réinitialiser',
+ 'subject' => 'Sujet',
+ 'subject-enter' => 'Entrez le sujet ici...',
+ 'submit-ticket' => 'Soumettre le ticket',
+ 'ticket' => 'Ticket',
+ 'unassign' => 'Désassigner',
'unassigned-success' => 'Le ticket du Helpdesk a été désassigné avec succès!',
- 'updated-success' => 'Ton ticket Helpdesk a été actualisé avec succès!',
+ 'updated-success' => 'Ton ticket Helpdesk a été actualisé avec succès!',
];
diff --git a/lang/fr/torrent.php b/lang/fr/torrent.php
index 2c9539b6f..cecfe026a 100644
--- a/lang/fr/torrent.php
+++ b/lang/fr/torrent.php
@@ -12,211 +12,211 @@
*/
return [
- 'activity' => 'Activité',
- 'age' => 'Age',
- 'agent' => 'Agent',
- 'alive' => 'En vie',
- 'announce-url' => 'URL Announce',
- 'announce-url-desc' => 'Il vous faut utiliser cette URL lors de la création d\'un torrent. Indiquez aussi que ce torrent est privé. Si on vous demande une source indiquez :source',
- 'announce-url-desc-url' => 'Vous ne comprenez pas tout ? Essayez un upload en suivant notre guide ICI',
- 'announce-url-desc2' => 'Les liens TMDB et IMDB nous sont nécessaires pour faciliter les recherches pour les films/séries. Le site cherchera les posters et des infos tout seul mais une description sera tout de même nécessaire. Indiquez si vous le pouvez pour les films si la version est Quebecoise',
- 'approved' => 'Validé',
- 'audio' => 'Audio',
- 'bon-tipped' => 'Points donnés',
- 'bookmark' => 'Marque-page',
- 'bookmarks' => 'Marques-pages',
- 'bump' => 'Passer au dessus du lot',
- 'cant-upload' => 'Erreur : vos droits d\'upload sont désactivés',
- 'cant-upload-desc' => 'Si vous pensez que c\'est un malentendu, contactez notre admin',
- 'cards' => 'Catalogue',
- 'cards-view' => 'Vue en catalogue',
- 'categories' => 'Categories',
- 'category' => 'Categorie',
- 'client' => 'Client',
- 'commited' => 'Commited',
- 'completed' => 'Completé',
- 'completed_at' => 'Completé le',
- 'completed-not-seeding' => 'Vous avez complété ce torrent mais vous n\'êtes plus en seed',
- 'completed-times' => 'fois complété',
- 'created_at' => 'Créé le',
- 'credited' => 'Credité',
- 'current' => 'En cours',
- 'current-filters' => 'Filtres en cours',
- 'currently-leeching' => 'Leech en cours',
- 'currently-seeding' => 'Seed en cours',
- 'date' => 'Date',
- 'dead-torrent' => 'Torrent abandonné',
- 'dead-torrents' => 'Torrents abandonnés',
- 'delete-bookmark' => 'Supprimer du marque-page',
- 'description' => 'Description',
- 'discounts' => 'Promotions',
- 'double-upload' => 'Double Upload',
- 'download-all' => 'Tout télécharger',
- 'download-check' => 'Télechargement',
- 'download-rights-active' => 'Droit au téléchargement Actif',
- 'downloaded' => 'Téléchargé',
- 'dying-torrent' => 'Torrent mourrant',
- 'dying-torrents' => 'Torrents mourrants',
- 'encode-settings' => 'Paramètres de qualité',
- 'end-year' => 'Année de fin',
- 'estimated-ratio' => 'Votre ratio estimé après téléchargement',
- 'failed' => 'Raté',
- 'feature' => 'Torrent préféré',
- 'featured' => 'Torrent préféré',
- 'featured-desc' => 'Les torrents préférés du site sont 100% Freeleech et en Double Upload!',
- 'featured-until' => 'Ce torrent sera dans nos préférés jusqu\'au',
- 'file' => 'Fichier',
- 'filters' => 'Filtres',
- 'fl-tokens-left' => 'Il ne vous en reste plus que :tokens ',
- 'freeleech' => 'Freeleech',
- 'freeleech-token' => 'Jeton Freeleech',
- 'general' => 'General',
- 'genre' => 'Genre',
- 'genre-tags' => 'Genres',
- 'global-double-upload' => 'Double Upload Global',
- 'global-freeleech' => 'Freeleech Global',
- 'grant' => 'Grant',
- 'greater-than' => 'Plus grand que',
- 'grouping' => 'Par groupe',
- 'groupings' => 'Par groupes',
- 'grouping-categories' => 'Grouper par catégories',
+ 'activity' => 'Activité',
+ 'age' => 'Age',
+ 'agent' => 'Agent',
+ 'alive' => 'En vie',
+ 'announce-url' => 'URL Announce',
+ 'announce-url-desc' => 'Il vous faut utiliser cette URL lors de la création d\'un torrent. Indiquez aussi que ce torrent est privé. Si on vous demande une source indiquez :source',
+ 'announce-url-desc-url' => 'Vous ne comprenez pas tout ? Essayez un upload en suivant notre guide ICI',
+ 'announce-url-desc2' => 'Les liens TMDB et IMDB nous sont nécessaires pour faciliter les recherches pour les films/séries. Le site cherchera les posters et des infos tout seul mais une description sera tout de même nécessaire. Indiquez si vous le pouvez pour les films si la version est Quebecoise',
+ 'approved' => 'Validé',
+ 'audio' => 'Audio',
+ 'bon-tipped' => 'Points donnés',
+ 'bookmark' => 'Marque-page',
+ 'bookmarks' => 'Marques-pages',
+ 'bump' => 'Passer au dessus du lot',
+ 'cant-upload' => 'Erreur : vos droits d\'upload sont désactivés',
+ 'cant-upload-desc' => 'Si vous pensez que c\'est un malentendu, contactez notre admin',
+ 'cards' => 'Catalogue',
+ 'cards-view' => 'Vue en catalogue',
+ 'categories' => 'Categories',
+ 'category' => 'Categorie',
+ 'client' => 'Client',
+ 'commited' => 'Commited',
+ 'completed' => 'Completé',
+ 'completed_at' => 'Completé le',
+ 'completed-not-seeding' => 'Vous avez complété ce torrent mais vous n\'êtes plus en seed',
+ 'completed-times' => 'fois complété',
+ 'created_at' => 'Créé le',
+ 'credited' => 'Credité',
+ 'current' => 'En cours',
+ 'current-filters' => 'Filtres en cours',
+ 'currently-leeching' => 'Leech en cours',
+ 'currently-seeding' => 'Seed en cours',
+ 'date' => 'Date',
+ 'dead-torrent' => 'Torrent abandonné',
+ 'dead-torrents' => 'Torrents abandonnés',
+ 'delete-bookmark' => 'Supprimer du marque-page',
+ 'description' => 'Description',
+ 'discounts' => 'Promotions',
+ 'double-upload' => 'Double Upload',
+ 'download-all' => 'Tout télécharger',
+ 'download-check' => 'Télechargement',
+ 'download-rights-active' => 'Droit au téléchargement Actif',
+ 'downloaded' => 'Téléchargé',
+ 'dying-torrent' => 'Torrent mourrant',
+ 'dying-torrents' => 'Torrents mourrants',
+ 'encode-settings' => 'Paramètres de qualité',
+ 'end-year' => 'Année de fin',
+ 'estimated-ratio' => 'Votre ratio estimé après téléchargement',
+ 'failed' => 'Raté',
+ 'feature' => 'Torrent préféré',
+ 'featured' => 'Torrent préféré',
+ 'featured-desc' => 'Les torrents préférés du site sont 100% Freeleech et en Double Upload!',
+ 'featured-until' => 'Ce torrent sera dans nos préférés jusqu\'au',
+ 'file' => 'Fichier',
+ 'filters' => 'Filtres',
+ 'fl-tokens-left' => 'Il ne vous en reste plus que :tokens ',
+ 'freeleech' => 'Freeleech',
+ 'freeleech-token' => 'Jeton Freeleech',
+ 'general' => 'General',
+ 'genre' => 'Genre',
+ 'genre-tags' => 'Genres',
+ 'global-double-upload' => 'Double Upload Global',
+ 'global-freeleech' => 'Freeleech Global',
+ 'grant' => 'Grant',
+ 'greater-than' => 'Plus grand que',
+ 'grouping' => 'Par groupe',
+ 'groupings' => 'Par groupes',
+ 'grouping-categories' => 'Grouper par catégories',
'grouping-categories-desc' => 'Quelle catégorie souhaitez-vous grouper ?',
- 'grouping-results' => 'Resultats',
- 'groupings-view' => 'Vue par groupe',
- 'have-completed' => 'Complété',
- 'have-downloaded' => 'Téléchargé',
- 'have-not-completed' => 'Non complété',
- 'have-not-downloaded' => 'Non téléchargé',
- 'health' => 'Santé',
- 'history' => 'Historique',
- 'hitrun' => 'H&R?',
- 'hit-and-runs' => 'Compteur Hit and Run',
- 'immune' => 'Immune?',
- 'info' => 'Info',
- 'info-hash' => 'Hash de contrôle',
- 'internal' => 'Internal',
- 'internal-release' => 'Release Internal',
- 'last-seed-activity' => 'Dernière activité de seed',
- 'last-seeder' => 'Vous êtes le dernier Seedeur! (sur un total d\'au moins 3)',
- 'last-update' => 'Dernière actualisation',
- 'leave-tip' => 'Laisser un pourboire',
- 'leecher' => 'Leecheur',
- 'leechers' => 'Leecheurs',
- 'leeching' => 'En Leech',
- 'left' => 'Restant',
- 'legendary-seeder' => 'Seedeur de légende',
- 'legendary-torrent' => 'Torrent de légende',
- 'list' => 'Liste',
- 'me' => 'Moi',
- 'media-info' => 'MediaInfo',
- 'media-info-parser' => 'Copie du MediaInfo',
- 'media-info-paste' => 'Ouvrez Mediainfo avec un fichier et copiez le résultat ici',
- 'meta-desc' => 'Téléchargement de :name à la vitesse maximum',
- 'moderation' => 'Moderation',
- 'movies' => 'Films',
- 'mvp' => 'MVP',
- 'my-active-torrents' => 'Mes torrents actifs',
- 'name' => 'Nom',
- 'no-bookmarks' => 'On a trouvé aucun marque-page.',
- 'no-discounts' => 'Aucune promotion en cours',
- 'no-meta' => 'Aucune Information trouvée',
- 'no-privileges' => 'Vous ne pouvez pas encore télécharger ce fichier - Veuillez prendre note des infos suivantes',
- 'no-privileges-desc' => 'Veuillez résoudre ce problème pour que le bouton Télécharger apparraisse',
- 'not-completed' => 'Téléchargement commencé mais jamais complété',
- 'not-downloaded' => 'Non téléchargé',
- 'not-seeding' => 'Non seedé',
- 'old-torrent' => 'Vieux torrent',
- 'optional' => 'Optionnel',
- 'original-output' => 'Montrer le Mediafi complet',
- 'participant' => 'Participant',
- 'passed' => 'Passé',
- 'peers' => 'Connexions',
- 'pending' => 'Pending',
- 'personal-freeleech' => 'Freeleech Personnel',
- 'poster' => 'Poster',
- 'poster-view' => 'Vue Poster',
- 'posters' => 'Posters',
- 'postponed-torrents' => 'Torrents en attente',
- 'prewarn' => 'Préaverti ?',
- 'progress' => 'Progression',
- 'publish-time' => 'Date de Publication',
- 'quick-comment' => 'Remercier vite fait',
- 'quick-tip' => 'Pourboire rapide',
- 'rated' => 'Noté',
- 'rating' => 'Notation',
- 'ready' => 'Ce fichier est prêt à télécharger',
- 'recommendations' => 'Recommendations',
- 'rejected' => 'Rejeté',
- 'released' => 'Créé',
- 'remaining' => 'Restant',
- 'request-reseed' => 'Demander du seed',
- 'requires-reseed' => 'A besoin de seed',
- 'resurrections' => 'Resurrections',
- 'revoke' => 'Revoquer',
- 'rss' => 'RSS',
- 'runtime' => 'Durée',
- 'satisfied_in' => 'Complété dans',
- 'say-thanks' => 'Pensez à dire Merci et restez en seed aussi longtemps que vous pouvez',
- 'sd-content' => 'Contenu Basse Définition',
- 'search' => 'Recherche',
- 'seed-time' => 'Temps en seed',
- 'seeder' => 'Seedeur',
- 'seeders' => 'Seedeurs',
- 'seeding' => 'En Seed',
- 'seedsize' => 'Taille de Seed',
- 'seedtime' => 'Temps de seed',
- 'short-completed' => 'C',
- 'short-leechs' => 'L',
- 'short-seeds' => 'S',
- 'show-files' => 'Voir les fichiers',
- 'similar' => 'Torrents similaires',
- 'size' => 'Taille',
- 'special' => 'Special',
- 'special-freeleech' => 'Special Freeleech',
- 'staff-tools' => 'Outils du Staff',
- 'start-year' => 'Année de début',
- 'started' => 'Demarré',
- 'status' => 'Statut',
- 'statistics' => 'Statistiques',
- 'stats' => 'Stats',
- 'sticky' => 'Sticky',
- 'stream-optimized' => 'Optimisé pour du Stream',
- 'subtitle' => 'Sous-titrage',
- 'team-player' => 'Team Player',
- 'thank' => 'Merci',
- 'thanked' => 'Remercié',
- 'thanks' => 'Remerciements',
- 'thanks-given' => 'Remerciements donnés',
- 'times' => 'Fois',
- 'tip-jar' => 'Caisse à pourboire',
- 'title' => 'Titre',
- 'titles' => 'Titres',
- 'top-completed' => 'Top Completé',
- 'top-dead' => 'Top Abandonné',
- 'top-dying' => 'Top Mourrants',
- 'top-leeched' => 'Top Leech',
- 'top-seeded' => 'Top Seed',
- 'torrent' => 'Torrent',
- 'torrent-request' => 'Demande de Torrent',
- 'torrent-tips' => 'Un total de :total POINTS ont étés distribué a l\'uploadeur, dont :user de votre part',
- 'torrent-tips-desc' => 'Ceci sera déduit de vos points bonus',
- 'torrents' => 'Torrents',
- 'trailer' => 'Voir la Bande Annonce',
- 'type' => 'Type',
- 'types' => 'Types',
- 'unbookmark' => 'Enlevé du Marque-page',
- 'unsatisfieds' => 'Non Satisfaits',
- 'unsticky' => 'Unsticky',
- 'updated' => 'Mis à jour',
- 'updated_at' => 'Mis à jour le',
- 'uploaded' => 'Uploadé',
- 'uploaded-by' => 'Uploadé Par',
- 'uploader' => 'Uploadeur',
- 'use-fl-token' => 'Utiliser un jeton Freeleech',
- 'video' => 'Video',
- 'view-more' => 'Voir plus',
- 'view-trailer' => 'Bande-annonce',
- 'votes' => 'Votes',
- 'year-range' => 'Par année',
+ 'grouping-results' => 'Resultats',
+ 'groupings-view' => 'Vue par groupe',
+ 'have-completed' => 'Complété',
+ 'have-downloaded' => 'Téléchargé',
+ 'have-not-completed' => 'Non complété',
+ 'have-not-downloaded' => 'Non téléchargé',
+ 'health' => 'Santé',
+ 'history' => 'Historique',
+ 'hitrun' => 'H&R?',
+ 'hit-and-runs' => 'Compteur Hit and Run',
+ 'immune' => 'Immune?',
+ 'info' => 'Info',
+ 'info-hash' => 'Hash de contrôle',
+ 'internal' => 'Internal',
+ 'internal-release' => 'Release Internal',
+ 'last-seed-activity' => 'Dernière activité de seed',
+ 'last-seeder' => 'Vous êtes le dernier Seedeur! (sur un total d\'au moins 3)',
+ 'last-update' => 'Dernière actualisation',
+ 'leave-tip' => 'Laisser un pourboire',
+ 'leecher' => 'Leecheur',
+ 'leechers' => 'Leecheurs',
+ 'leeching' => 'En Leech',
+ 'left' => 'Restant',
+ 'legendary-seeder' => 'Seedeur de légende',
+ 'legendary-torrent' => 'Torrent de légende',
+ 'list' => 'Liste',
+ 'me' => 'Moi',
+ 'media-info' => 'MediaInfo',
+ 'media-info-parser' => 'Copie du MediaInfo',
+ 'media-info-paste' => 'Ouvrez Mediainfo avec un fichier et copiez le résultat ici',
+ 'meta-desc' => 'Téléchargement de :name à la vitesse maximum',
+ 'moderation' => 'Moderation',
+ 'movies' => 'Films',
+ 'mvp' => 'MVP',
+ 'my-active-torrents' => 'Mes torrents actifs',
+ 'name' => 'Nom',
+ 'no-bookmarks' => 'On a trouvé aucun marque-page.',
+ 'no-discounts' => 'Aucune promotion en cours',
+ 'no-meta' => 'Aucune Information trouvée',
+ 'no-privileges' => 'Vous ne pouvez pas encore télécharger ce fichier - Veuillez prendre note des infos suivantes',
+ 'no-privileges-desc' => 'Veuillez résoudre ce problème pour que le bouton Télécharger apparraisse',
+ 'not-completed' => 'Téléchargement commencé mais jamais complété',
+ 'not-downloaded' => 'Non téléchargé',
+ 'not-seeding' => 'Non seedé',
+ 'old-torrent' => 'Vieux torrent',
+ 'optional' => 'Optionnel',
+ 'original-output' => 'Montrer le Mediafi complet',
+ 'participant' => 'Participant',
+ 'passed' => 'Passé',
+ 'peers' => 'Connexions',
+ 'pending' => 'Pending',
+ 'personal-freeleech' => 'Freeleech Personnel',
+ 'poster' => 'Poster',
+ 'poster-view' => 'Vue Poster',
+ 'posters' => 'Posters',
+ 'postponed-torrents' => 'Torrents en attente',
+ 'prewarn' => 'Préaverti ?',
+ 'progress' => 'Progression',
+ 'publish-time' => 'Date de Publication',
+ 'quick-comment' => 'Remercier vite fait',
+ 'quick-tip' => 'Pourboire rapide',
+ 'rated' => 'Noté',
+ 'rating' => 'Notation',
+ 'ready' => 'Ce fichier est prêt à télécharger',
+ 'recommendations' => 'Recommendations',
+ 'rejected' => 'Rejeté',
+ 'released' => 'Créé',
+ 'remaining' => 'Restant',
+ 'request-reseed' => 'Demander du seed',
+ 'requires-reseed' => 'A besoin de seed',
+ 'resurrections' => 'Resurrections',
+ 'revoke' => 'Revoquer',
+ 'rss' => 'RSS',
+ 'runtime' => 'Durée',
+ 'satisfied_in' => 'Complété dans',
+ 'say-thanks' => 'Pensez à dire Merci et restez en seed aussi longtemps que vous pouvez',
+ 'sd-content' => 'Contenu Basse Définition',
+ 'search' => 'Recherche',
+ 'seed-time' => 'Temps en seed',
+ 'seeder' => 'Seedeur',
+ 'seeders' => 'Seedeurs',
+ 'seeding' => 'En Seed',
+ 'seedsize' => 'Taille de Seed',
+ 'seedtime' => 'Temps de seed',
+ 'short-completed' => 'C',
+ 'short-leechs' => 'L',
+ 'short-seeds' => 'S',
+ 'show-files' => 'Voir les fichiers',
+ 'similar' => 'Torrents similaires',
+ 'size' => 'Taille',
+ 'special' => 'Special',
+ 'special-freeleech' => 'Special Freeleech',
+ 'staff-tools' => 'Outils du Staff',
+ 'start-year' => 'Année de début',
+ 'started' => 'Demarré',
+ 'status' => 'Statut',
+ 'statistics' => 'Statistiques',
+ 'stats' => 'Stats',
+ 'sticky' => 'Sticky',
+ 'stream-optimized' => 'Optimisé pour du Stream',
+ 'subtitle' => 'Sous-titrage',
+ 'team-player' => 'Team Player',
+ 'thank' => 'Merci',
+ 'thanked' => 'Remercié',
+ 'thanks' => 'Remerciements',
+ 'thanks-given' => 'Remerciements donnés',
+ 'times' => 'Fois',
+ 'tip-jar' => 'Caisse à pourboire',
+ 'title' => 'Titre',
+ 'titles' => 'Titres',
+ 'top-completed' => 'Top Completé',
+ 'top-dead' => 'Top Abandonné',
+ 'top-dying' => 'Top Mourrants',
+ 'top-leeched' => 'Top Leech',
+ 'top-seeded' => 'Top Seed',
+ 'torrent' => 'Torrent',
+ 'torrent-request' => 'Demande de Torrent',
+ 'torrent-tips' => 'Un total de :total POINTS ont étés distribué a l\'uploadeur, dont :user de votre part',
+ 'torrent-tips-desc' => 'Ceci sera déduit de vos points bonus',
+ 'torrents' => 'Torrents',
+ 'trailer' => 'Voir la Bande Annonce',
+ 'type' => 'Type',
+ 'types' => 'Types',
+ 'unbookmark' => 'Enlevé du Marque-page',
+ 'unsatisfieds' => 'Non Satisfaits',
+ 'unsticky' => 'Unsticky',
+ 'updated' => 'Mis à jour',
+ 'updated_at' => 'Mis à jour le',
+ 'uploaded' => 'Uploadé',
+ 'uploaded-by' => 'Uploadé Par',
+ 'uploader' => 'Uploadeur',
+ 'use-fl-token' => 'Utiliser un jeton Freeleech',
+ 'video' => 'Video',
+ 'view-more' => 'Voir plus',
+ 'view-trailer' => 'Bande-annonce',
+ 'votes' => 'Votes',
+ 'year-range' => 'Par année',
];
diff --git a/lang/fr/user.php b/lang/fr/user.php
index 8409fff92..85f4381a3 100644
--- a/lang/fr/user.php
+++ b/lang/fr/user.php
@@ -12,330 +12,330 @@
*/
return [
- 'about' => 'Sur',
- 'about-me' => 'À propos de moi',
- 'accepted-at' => 'Accepté à',
- 'accepted-by' => 'Accepté par',
- 'account-notification' => 'Paramètres de notification de compte',
- 'account-notification-follow' => 'Recevoir une notification lorsqu un utilisateur suit votre compte',
- 'account-notification-unfollow' => 'Recevoir une notification lorsqu un utilisateur se désabonne de votre compte',
- 'account-notification-help' => 'Contrôlez les notifications envoyées concernant votre compte. Ces paramètres sont remplacés si vous n autorisez aucun groupe à envoyer des notifications concernant votre compte ou si vous désactivez les notifications.',
- 'account-settings' => 'Paramètres du compte',
- 'achievement-privacy' => 'Paramètres de réalisations',
- 'achievement-privacy-list' => 'Autoriser les utilisateurs à afficher une liste de vos réalisations',
- 'achievement-help' => 'Contrôlez le partage d informations spécifiques sur les réalisations avec les groupes autorisés à accéder à votre profil. Ces paramètres sont remplacés si vous n autorisez aucun groupe à accéder à vos réalisations ou si vous passez en mode privé.',
- 'achievements' => 'Réalisations',
- 'active' => 'actif',
- 'active-table' => 'Ma table active',
- 'active-torrents' => 'Torrents actifs',
- 'active-warning' => 'Avertissement actif',
- 'active-warnings' => 'Avertissements actifs',
- 'add-seedbox' => 'Ajouter une seedbox',
- 'all-torrents' => 'Tous les torrents',
- 'article-comments' => 'Commentaires sur l article',
- 'avatar' => 'Avatar',
- 'avg-seedtime' => 'Temps de seed moyen',
- 'badges' => 'Insignes',
- 'ban' => 'Utilisateur banni',
- 'ban-log' => 'Journal d interdiction',
- 'become-hidden' => 'Devenir caché',
- 'become-visible' => 'Devenir visible',
- 'bon' => 'Coupon',
- 'bon-notification' => 'Paramètres de notification des coupons',
- 'bon-notification-gift' => 'Recevoir une notification lorsqu un utilisateur vous offre un cadeau',
- 'bon-notification-help' => 'Contrôle quelles notifications sont envoyées concernant les transactions des coupons. Ces paramètres sont remplacés si vous n autorisez aucun groupe à envoyer des notifications concernant les coupons ou si vous désactivez les notifications.',
- 'bookmarks' => 'Signets',
- 'bounty-given' => 'Prime donnée',
- 'bounty-received' => 'Prime reçue',
- 'can-chat' => 'Peut discuter',
- 'can-comment' => 'Peut commenter',
- 'can-download' => 'Peut télécharger',
- 'can-invite' => 'Peut inviter',
- 'can-request' => 'Peut demander',
- 'can-upload' => 'Peut uploader',
- 'certified-banker' => 'Certifié solvable',
- 'certified-banker-desc' => 'A plus de 50 000 coupons en banque',
- 'certified-downloader' => 'Téléchargeur certifié',
- 'certified-downloader-desc' => 'A téléchargé plus de 100 torrents!',
- 'certified-seeder' => 'Seedeur Certifié',
- 'certified-seeder-desc' => 'a plus de 150 torrents seedés!',
- 'change-email' => 'Changer l e-mail',
- 'change-email-help' => 'Vous devrez reconfirmer votre compte après avoir modifié votre adresse électronique.',
- 'change-password' => 'Changer le mot de passe',
- 'change-password-help' => 'Vous devrez vous reconnecter après avoir changé votre mot de passe',
- 'client-ip-address' => 'Adresse IP du client',
- 'code' => 'Code',
- 'comments' => 'commentaires',
- 'created-on' => 'Créé le',
- 'credited-download' => 'Téléchargement crédité',
- 'credited-upload' => 'Envoi crédité',
- 'current-password' => 'Mot de passe actuel',
- 'custom-title' => 'Titre personnalisé',
- 'delete' => 'Supprimer l utilisateur',
- 'disable-notifications' => 'Désactiver les notifications',
- 'disclaimer' => 'Avertissement',
- 'disclaimer-info' => 'Par défaut, nous ne consignons pas les adresses IP des utilisateurs, contrairement à la plupart des suivis. En ajoutant votre adresse IP seedbox ci-dessous, vous devez savoir que vos adresses IP répertoriées ci-dessous sont maintenant stockées dans notre base de données, sauf si vous supprimez les enregistrements.',
- 'disclaimer-info-bordered' => 'Les adresses IP de Seedbox ajoutées afficheront ensuite une balise torrent haute vitesse sur les torrents seedés à partir des adresses IP répertoriées ci-dessous',
- 'download-bon' => 'Télécharger Supprimé de BON Store',
- 'download-recorded' => 'Téléchargement enregistré',
- 'download-true' => 'Téléchargement True',
- 'downloads' => 'Téléchargements',
- 'edit' => 'Modifier l utilisateur',
- 'edit-profile' => 'Editer le profil',
- 'enable-notifications' => 'Activer les notifications',
- 'expired' => 'Expiré',
- 'expires-on' => 'Expire le',
- 'extra' => 'Supplément',
- 'filled-request' => 'Demandes des membres remplis',
- 'follow' => 'Suivre',
- 'follow-already' => 'Tu as déjà suivi cet personne',
- 'follow-not-to-begin-with' => 'Tu n\'as pas suivi cet personne.',
- 'follow-revoked' => 'Tu n\'es suis plus %s',
- 'follow-user' => 'Tu suis maintenant %s',
- 'follow-yourself' => 'Bien essayé, mais malheureusement, tu ne peux pas te suivre.',
- 'follower-privacy' => 'Paramètres du suiveur',
- 'follower-privacy-list' => 'Autoriser les utilisateurs à afficher une liste de vos abonnés',
- 'follower-help' => 'Contrôlez le partage d informations spécifiques liées aux abonnés avec les groupes autorisés à accéder à votre profil. Ces paramètres sont remplacés si vous n’autorisez aucun groupe à accéder à vos abonnés ou si vous passez en mode privé.',
- 'followers' => 'Suiveurs',
- 'following-notification' => 'Paramètres de notification d utilisateur suivis',
- 'following-notification-upload' => 'Recevoir une notification lorsqu un utilisateur suivi envoie un torrent',
- 'following-notification-help' => 'Contrôle quelles notifications sont envoyées concernant les actions suivies du site utilisateur. Ces paramètres sont remplacés si vous n autorisez aucun groupe à envoyer des notifications concernant les utilisateurs suivis ou si vous désactivez les notifications.',
- 'formats-are-supported' => ': les formats sont supportés',
- 'forum-notification' => 'Paramètres de notification du forum',
- 'forum-notification-topic' => 'Recevoir une notification lorsqu un sujet que vous avez commencé reçoit un nouveau message',
- 'forum-notification-help' => 'Contrôlez les notifications envoyées concernant les activités du forum. Ces paramètres sont remplacés si vous n autorisez aucun groupe à envoyer des notifications concernant les activités du forum ou si vous désactivez les notifications.',
- 'forum-privacy' => 'Paramètres du forum',
- 'forum-privacy-post' => 'Autoriser les utilisateurs à afficher une liste des messages de forum que vous avez publiés',
- 'forum-privacy-topic' => 'Autoriser les utilisateurs à afficher une liste des sujets de forum que vous avez commencés',
- 'forum-help' => 'Contrôlez le partage de statistiques et d informations spécifiques au forum avec les groupes autorisés à accéder à votre profil. Ces paramètres sont remplacés si vous n autorisez aucun groupe à accéder aux statistiques et aux informations relatives à votre forum ou si vous passez en privé',
- 'forum-signature' => 'Signature du forum',
- 'forums' => 'Forums',
- 'general' => 'Général',
- 'general-settings' => 'réglages généraux',
- 'gift-given' => 'Cadeau donné',
- 'gift-received' => 'Cadeau reçu',
- 'go-public' => 'Aller en public',
- 'go-private' => 'Aller en Privé',
- 'history' => 'Historique',
- 'history-table' => 'Tableau de l historique',
- 'hit-n-runs' => 'Hit and Runs',
- 'hit-n-runs-count' => 'Hit and Run Count (tous les temps)',
- 'hit-n-runs-history' => 'Historiques des Hit et Runs',
- 'image' => 'Image',
- 'important' => 'Important',
- 'important-info' => 'Information importante',
- 'information' => 'Information',
- 'invite-already-sent' => 'L\'adresse e-mail à laquelle tu veux envoyer une invitation a déjà reçu une invitation.',
- 'invite-already-used' => 'L\'invitation que tu essayes de renvoyer a déjà été utilisée.',
- 'invite-friend' => 'Invitez un ami (Email + Message Obligatoire)',
- 'invite-resent-success' => 'L\'invitation a été renvoyée avec succès!',
- 'invite-sent-success' => 'L\'invitation a été envoyée avec succès!',
- 'invite-tree' => 'Invitation activée',
- 'invites' => 'Invités',
- 'invites-banned' => 'Erreur: vos droits d invitation ont été désactivés',
- 'invites-banned-desc' => 'Si vous pensez que c est une erreur, veuillez contacter le staff!',
- 'invites-count' => 'Vous avez: jetons d invitation',
- 'invites-disabled' => 'Attention: les invitations sont désactivées en raison d une inscription ouverte!',
- 'invites-disabled-desc' => 'Veuillez vérifier bientôt!',
- 'invites-disabled-group' => 'Les invitations sont actuellement désactivées pour ton groupe.',
- 'invites-rules' => '- Invitez uniquement des personnes que vous connaissez et en qui vous avez confiance.
- Vous serez tenu personnellement responsable de ceux que vous invitez.
- Ne vous invitez pas, nous vérifions chaque utilisateur invité.
- Ne pas échanger ou vendre des invitations.
- Si une personne que vous avez invitée est prise en train de tricher, d ouvrir un compte ou d inviter à la vente, vous en serez averti.
',
- 'invites-send' => 'Invitation Envoyée',
- 'last-login' => 'Dernière connexion',
- 'locked' => 'Fermé',
- 'locked-achievements' => 'Verrouillé avec succès',
- 'member-since' => 'Membre depuis',
- 'members-desc' => 'Liste des utilisateurs inscrits sur: titre avec tous les groupes. Trouver un utilisateur maintenant.',
- 'mention-notification' => '@Mention Notification Settings',
+ 'about' => 'Sur',
+ 'about-me' => 'À propos de moi',
+ 'accepted-at' => 'Accepté à',
+ 'accepted-by' => 'Accepté par',
+ 'account-notification' => 'Paramètres de notification de compte',
+ 'account-notification-follow' => 'Recevoir une notification lorsqu un utilisateur suit votre compte',
+ 'account-notification-unfollow' => 'Recevoir une notification lorsqu un utilisateur se désabonne de votre compte',
+ 'account-notification-help' => 'Contrôlez les notifications envoyées concernant votre compte. Ces paramètres sont remplacés si vous n autorisez aucun groupe à envoyer des notifications concernant votre compte ou si vous désactivez les notifications.',
+ 'account-settings' => 'Paramètres du compte',
+ 'achievement-privacy' => 'Paramètres de réalisations',
+ 'achievement-privacy-list' => 'Autoriser les utilisateurs à afficher une liste de vos réalisations',
+ 'achievement-help' => 'Contrôlez le partage d informations spécifiques sur les réalisations avec les groupes autorisés à accéder à votre profil. Ces paramètres sont remplacés si vous n autorisez aucun groupe à accéder à vos réalisations ou si vous passez en mode privé.',
+ 'achievements' => 'Réalisations',
+ 'active' => 'actif',
+ 'active-table' => 'Ma table active',
+ 'active-torrents' => 'Torrents actifs',
+ 'active-warning' => 'Avertissement actif',
+ 'active-warnings' => 'Avertissements actifs',
+ 'add-seedbox' => 'Ajouter une seedbox',
+ 'all-torrents' => 'Tous les torrents',
+ 'article-comments' => 'Commentaires sur l article',
+ 'avatar' => 'Avatar',
+ 'avg-seedtime' => 'Temps de seed moyen',
+ 'badges' => 'Insignes',
+ 'ban' => 'Utilisateur banni',
+ 'ban-log' => 'Journal d interdiction',
+ 'become-hidden' => 'Devenir caché',
+ 'become-visible' => 'Devenir visible',
+ 'bon' => 'Coupon',
+ 'bon-notification' => 'Paramètres de notification des coupons',
+ 'bon-notification-gift' => 'Recevoir une notification lorsqu un utilisateur vous offre un cadeau',
+ 'bon-notification-help' => 'Contrôle quelles notifications sont envoyées concernant les transactions des coupons. Ces paramètres sont remplacés si vous n autorisez aucun groupe à envoyer des notifications concernant les coupons ou si vous désactivez les notifications.',
+ 'bookmarks' => 'Signets',
+ 'bounty-given' => 'Prime donnée',
+ 'bounty-received' => 'Prime reçue',
+ 'can-chat' => 'Peut discuter',
+ 'can-comment' => 'Peut commenter',
+ 'can-download' => 'Peut télécharger',
+ 'can-invite' => 'Peut inviter',
+ 'can-request' => 'Peut demander',
+ 'can-upload' => 'Peut uploader',
+ 'certified-banker' => 'Certifié solvable',
+ 'certified-banker-desc' => 'A plus de 50 000 coupons en banque',
+ 'certified-downloader' => 'Téléchargeur certifié',
+ 'certified-downloader-desc' => 'A téléchargé plus de 100 torrents!',
+ 'certified-seeder' => 'Seedeur Certifié',
+ 'certified-seeder-desc' => 'a plus de 150 torrents seedés!',
+ 'change-email' => 'Changer l e-mail',
+ 'change-email-help' => 'Vous devrez reconfirmer votre compte après avoir modifié votre adresse électronique.',
+ 'change-password' => 'Changer le mot de passe',
+ 'change-password-help' => 'Vous devrez vous reconnecter après avoir changé votre mot de passe',
+ 'client-ip-address' => 'Adresse IP du client',
+ 'code' => 'Code',
+ 'comments' => 'commentaires',
+ 'created-on' => 'Créé le',
+ 'credited-download' => 'Téléchargement crédité',
+ 'credited-upload' => 'Envoi crédité',
+ 'current-password' => 'Mot de passe actuel',
+ 'custom-title' => 'Titre personnalisé',
+ 'delete' => 'Supprimer l utilisateur',
+ 'disable-notifications' => 'Désactiver les notifications',
+ 'disclaimer' => 'Avertissement',
+ 'disclaimer-info' => 'Par défaut, nous ne consignons pas les adresses IP des utilisateurs, contrairement à la plupart des suivis. En ajoutant votre adresse IP seedbox ci-dessous, vous devez savoir que vos adresses IP répertoriées ci-dessous sont maintenant stockées dans notre base de données, sauf si vous supprimez les enregistrements.',
+ 'disclaimer-info-bordered' => 'Les adresses IP de Seedbox ajoutées afficheront ensuite une balise torrent haute vitesse sur les torrents seedés à partir des adresses IP répertoriées ci-dessous',
+ 'download-bon' => 'Télécharger Supprimé de BON Store',
+ 'download-recorded' => 'Téléchargement enregistré',
+ 'download-true' => 'Téléchargement True',
+ 'downloads' => 'Téléchargements',
+ 'edit' => 'Modifier l utilisateur',
+ 'edit-profile' => 'Editer le profil',
+ 'enable-notifications' => 'Activer les notifications',
+ 'expired' => 'Expiré',
+ 'expires-on' => 'Expire le',
+ 'extra' => 'Supplément',
+ 'filled-request' => 'Demandes des membres remplis',
+ 'follow' => 'Suivre',
+ 'follow-already' => 'Tu as déjà suivi cet personne',
+ 'follow-not-to-begin-with' => 'Tu n\'as pas suivi cet personne.',
+ 'follow-revoked' => 'Tu n\'es suis plus %s',
+ 'follow-user' => 'Tu suis maintenant %s',
+ 'follow-yourself' => 'Bien essayé, mais malheureusement, tu ne peux pas te suivre.',
+ 'follower-privacy' => 'Paramètres du suiveur',
+ 'follower-privacy-list' => 'Autoriser les utilisateurs à afficher une liste de vos abonnés',
+ 'follower-help' => 'Contrôlez le partage d informations spécifiques liées aux abonnés avec les groupes autorisés à accéder à votre profil. Ces paramètres sont remplacés si vous n’autorisez aucun groupe à accéder à vos abonnés ou si vous passez en mode privé.',
+ 'followers' => 'Suiveurs',
+ 'following-notification' => 'Paramètres de notification d utilisateur suivis',
+ 'following-notification-upload' => 'Recevoir une notification lorsqu un utilisateur suivi envoie un torrent',
+ 'following-notification-help' => 'Contrôle quelles notifications sont envoyées concernant les actions suivies du site utilisateur. Ces paramètres sont remplacés si vous n autorisez aucun groupe à envoyer des notifications concernant les utilisateurs suivis ou si vous désactivez les notifications.',
+ 'formats-are-supported' => ': les formats sont supportés',
+ 'forum-notification' => 'Paramètres de notification du forum',
+ 'forum-notification-topic' => 'Recevoir une notification lorsqu un sujet que vous avez commencé reçoit un nouveau message',
+ 'forum-notification-help' => 'Contrôlez les notifications envoyées concernant les activités du forum. Ces paramètres sont remplacés si vous n autorisez aucun groupe à envoyer des notifications concernant les activités du forum ou si vous désactivez les notifications.',
+ 'forum-privacy' => 'Paramètres du forum',
+ 'forum-privacy-post' => 'Autoriser les utilisateurs à afficher une liste des messages de forum que vous avez publiés',
+ 'forum-privacy-topic' => 'Autoriser les utilisateurs à afficher une liste des sujets de forum que vous avez commencés',
+ 'forum-help' => 'Contrôlez le partage de statistiques et d informations spécifiques au forum avec les groupes autorisés à accéder à votre profil. Ces paramètres sont remplacés si vous n autorisez aucun groupe à accéder aux statistiques et aux informations relatives à votre forum ou si vous passez en privé',
+ 'forum-signature' => 'Signature du forum',
+ 'forums' => 'Forums',
+ 'general' => 'Général',
+ 'general-settings' => 'réglages généraux',
+ 'gift-given' => 'Cadeau donné',
+ 'gift-received' => 'Cadeau reçu',
+ 'go-public' => 'Aller en public',
+ 'go-private' => 'Aller en Privé',
+ 'history' => 'Historique',
+ 'history-table' => 'Tableau de l historique',
+ 'hit-n-runs' => 'Hit and Runs',
+ 'hit-n-runs-count' => 'Hit and Run Count (tous les temps)',
+ 'hit-n-runs-history' => 'Historiques des Hit et Runs',
+ 'image' => 'Image',
+ 'important' => 'Important',
+ 'important-info' => 'Information importante',
+ 'information' => 'Information',
+ 'invite-already-sent' => 'L\'adresse e-mail à laquelle tu veux envoyer une invitation a déjà reçu une invitation.',
+ 'invite-already-used' => 'L\'invitation que tu essayes de renvoyer a déjà été utilisée.',
+ 'invite-friend' => 'Invitez un ami (Email + Message Obligatoire)',
+ 'invite-resent-success' => 'L\'invitation a été renvoyée avec succès!',
+ 'invite-sent-success' => 'L\'invitation a été envoyée avec succès!',
+ 'invite-tree' => 'Invitation activée',
+ 'invites' => 'Invités',
+ 'invites-banned' => 'Erreur: vos droits d invitation ont été désactivés',
+ 'invites-banned-desc' => 'Si vous pensez que c est une erreur, veuillez contacter le staff!',
+ 'invites-count' => 'Vous avez: jetons d invitation',
+ 'invites-disabled' => 'Attention: les invitations sont désactivées en raison d une inscription ouverte!',
+ 'invites-disabled-desc' => 'Veuillez vérifier bientôt!',
+ 'invites-disabled-group' => 'Les invitations sont actuellement désactivées pour ton groupe.',
+ 'invites-rules' => '- Invitez uniquement des personnes que vous connaissez et en qui vous avez confiance.
- Vous serez tenu personnellement responsable de ceux que vous invitez.
- Ne vous invitez pas, nous vérifions chaque utilisateur invité.
- Ne pas échanger ou vendre des invitations.
- Si une personne que vous avez invitée est prise en train de tricher, d ouvrir un compte ou d inviter à la vente, vous en serez averti.
',
+ 'invites-send' => 'Invitation Envoyée',
+ 'last-login' => 'Dernière connexion',
+ 'locked' => 'Fermé',
+ 'locked-achievements' => 'Verrouillé avec succès',
+ 'member-since' => 'Membre depuis',
+ 'members-desc' => 'Liste des utilisateurs inscrits sur: titre avec tous les groupes. Trouver un utilisateur maintenant.',
+ 'mention-notification' => '@Mention Notification Settings',
'mention-notification-article-comment' => 'Recevez une notification lorsque vous êtes @ mentionné dans un commentaire d article',
'mention-notification-torrent-comment' => 'Recevez une notification lorsque vous êtes @ mentionné dans un commentaire torrent',
'mention-notification-request-comment' => 'Recevoir une notification lorsque vous êtes @ mentionné dans un commentaire de demande',
- 'mention-notification-forum-post' => 'Recevez une notification lorsque vous êtes @ mentionné dans un message du forum',
- 'mention-notification-help' => 'Contrôlez les notifications qui sont envoyées lorsqu un utilisateur vous dit @. Ces paramètres sont remplacés si vous n autorisez aucun groupe à envoyer des notifications si un utilisateur vous @ dit ou si vous désactivez les notifications.',
- 'moderated-by' => 'Modéré par: mod on',
- 'my-bonus-points' => 'Mes points bonus',
- 'my-bookmarks' => 'Mes marques-pages',
- 'my-fl-tokens' => 'Mes jetons FL',
- 'my-general-settings' => 'Mes paramètres généraux',
- 'my-notification' => 'Mes notifications',
- 'my-notification-settings' => 'Mes paramètres de notification',
- 'my-privacy' => 'Ma vie privée',
- 'my-privacy-settings' => 'Mes paramètres de confidentialité',
- 'my-profile' => 'Mon profil',
- 'my-requested' => 'Mes demandes',
- 'my-security' => 'Ma sécurité',
- 'my-security-settings' => 'Mes paramètres de sécurité',
- 'my-seedboxes' => 'Mes seedbox',
- 'my-settings' => 'Mes paramètres',
- 'my-wishlist' => 'Ma liste de suivi',
- 'no-logs' => 'Il n y a pas de journaux d invitation dans la base de données pour cet utilisateur!',
- 'no-seedboxes' => 'Pas de seedbox 😔',
- 'not-authorized' => 'Vous n êtes pas autorisé à afficher cette page. Ce membre préfère être caché comme un ninja!',
- 'not-enough-invites' => 'Tu n\'as pas assez d\'invitations!',
- 'note' => 'Remarque',
- 'notification' => 'Notification',
- 'notification-settings' => 'Paramètres de notification',
- 'notification-from-account' => 'Recevoir des notifications de compte à partir de',
- 'notification-from-account-help' => 'Vous ne recevrez que les notifications de compte du système, du personnel et des groupes suivants. Ces paramètres sont remplacés si vous désactivez les notifications.',
- 'notification-from-bon' => 'Recevoir des notifications BON de',
- 'notification-from-bon-help' => 'Vous ne recevrez que les notifications BON du système, du personnel et des groupes suivants. Ces paramètres sont remplacés si vous désactivez les notifications.',
- 'notification-from-following' => 'Recevoir les notifications d utilisateur suivies de',
- 'notification-from-following-help' => 'Vous ne recevrez que les notifications d utilisateur suivies des groupes suivants. Ces paramètres sont remplacés si vous désactivez les notifications.',
- 'notification-from-forum' => 'Recevoir des notifications de forum à partir de',
- 'notification-from-forum-help' => 'Vous ne recevrez des notifications de forum que du système, du personnel et des groupes suivants. Ces paramètres sont remplacés si vous désactivez les notifications.',
- 'notification-from-subscription' => 'Recevoir des notifications d abonnement de',
- 'notification-from-subscription-help' => 'Vous ne recevrez des notifications de forum que du système, du personnel et des groupes suivants. Ces paramètres sont remplacés si vous désactivez les notifications.',
- 'notification-from-torrent' => 'Recevoir des notifications de torrent de',
- 'notification-from-torrent-help' => 'Vous ne recevrez que des notifications torrent du système, du personnel et des groupes suivants. Ces paramètres sont remplacés si vous désactivez les notifications.',
- 'notification-from-mention' => 'Recevoir les notifications @Mention de',
- 'notification-from-mention-help' => 'Vous ne recevrez que les notifications @mention du système, du personnel et des groupes suivants. Ces paramètres sont remplacés si vous désactivez les notifications.',
- 'notification-from-request' => 'Recevoir des notifications de demande de',
- 'notification-from-request-help' => 'Vous ne recevrez que les notifications de demande du système, du personnel et des groupes suivants. Ces paramètres sont remplacés si vous désactivez les notifications.',
- 'notifications' => 'Les notifications',
- 'offline' => 'L utilisateur est hors ligne!',
- 'online' => 'L utilisateur est en ligne!',
- 'options' => 'Options',
- 'other-help' => 'Contrôlez le partage d autres statistiques et informations avec les groupes autorisés à accéder à votre profil. Ces paramètres sont remplacés si vous n autorisez aucun groupe à accéder à vos autres statistiques et informations ou si vous passez en mode privé.',
- 'other-privacy' => 'Autres réglages',
- 'other-privacy-online' => 'Autoriser les utilisateurs à vous voir dans le bloc d utilisateurs en ligne',
- 'passkey' => 'passkey',
- 'passkey-warning' => 'Le passkey est comme votre mot de passe, vous devez le garder en sécurité!',
- 'pending-achievements' => 'Réalisations en attente',
- 'per-torrent' => 'Par torrent',
- 'posts' => 'Posts',
- 'posts-posted' => 'Messages du forum publiés',
- 'privacy' => 'Confidentialité',
- 'privacy-settings' => 'Paramètres de confidentialité',
- 'private-info' => 'Informations privées',
- 'private-forum-profile' => 'Attention: Ce sujet et cette histoire de membre a été réglé sur PRIVE!',
- 'private-profile' => 'Attention: Ce profil a été configuré sur PRIVE!',
- 'profile' => 'Profil',
- 'profile-desc' => 'Utilisateur: profil d utilisateur enregistré sur: titre',
- 'profile-privacy' => 'Paramètres de profil',
- 'profile-privacy-torrent-count' => 'Partagez votre nombre total de téléchargements, téléchargements, seeds et leechs',
- 'profile-privacy-torrent-ratio' => 'Partagez votre total de données de chargement / téléchargement avec le ratio enregistré',
- 'profile-privacy-torrent-seed' => 'Partagez votre temps total de seed et votre moyenne',
- 'profile-privacy-title' => 'Partagez vos informations de titre personnelles',
- 'profile-privacy-about' => 'Partagez vos informations personnelles',
- 'profile-privacy-bon-extra' => 'Partagez vos statistiques des coupons',
- 'profile-privacy-comment-extra' => 'Partagez vos statistiques de commentaires',
- 'profile-privacy-forum-extra' => 'Partagez les statistiques de votre forum',
- 'profile-privacy-request-extra' => 'Partagez vos statistiques de demande',
- 'profile-privacy-torrent-extra' => 'Partagez vos statistiques de torrent',
- 'profile-privacy-badge' => 'Partagez vos badges gagnés',
- 'profile-privacy-achievement' => 'Partagez vos dernières réalisations',
- 'profile-privacy-follower' => 'Partagez vos derniers abonnés',
- 'profile-privacy-warning' => 'Partagez vos avertissements H & R',
- 'profile-privacy-help' => 'Contrôlez les statistiques et les informations qui apparaissent sur votre profil. Ces paramètres sont remplacés si vous n autorisez aucun groupe à accéder à votre profil ou si vous passez en mode privé.',
- 'public-info' => 'Information publique',
- 'recent-achievements' => 'Réalisations récentes',
- 'recent-followers' => 'Abonnés récents',
- 'registration-date' => 'Date d\'enregistrement',
- 'report' => 'Rapport',
- 'report-sent' => 'Ton rapport a été envoyé avec succès',
- 'request-help' => 'Contrôlez le partage de statistiques et d informations spécifiques aux requêtes avec les groupes autorisés à accéder à votre profil. Ces paramètres sont remplacés si vous n autorisez aucun groupe à accéder aux statistiques et informations connexes demandées ou si vous passez en mode privé.',
- 'request' => 'Demande',
- 'requested' => 'Demandé',
- 'requests' => 'Demandes',
- 'request-comments' => 'Demander des commentaires faits',
- 'request-notification' => 'Demander les paramètres de notification',
- 'request-notification-bounty' => 'Recevoir une notification lorsqu un torrent demandé reçoit une nouvelle prime',
- 'request-notification-comment' => 'Recevoir une notification lorsqu un torrent demandé reçoit un nouveau commentaire',
- 'request-notification-fill' => 'Recevoir une notification lorsqu une demande de torrent est rempli',
- 'request-notification-fill-approve' => 'Recevoir une notification lorsqu une demande de torrent demandé est approuvée',
- 'request-notification-fill-reject' => 'Recevoir une notification lorsqu une demande de torrent demandé est rejetée',
- 'request-notification-claim' => 'Recevoir une notification lorsqu un torrent demandé est réclamé',
- 'request-notification-unclaim' => 'Recevoir une notification lorsqu un torrent demandé n est pas réclamé',
- 'request-notification-help' => 'Contrôlez les notifications envoyées concernant les activités de demande. Ces paramètres sont remplacés si vous n autorisez aucun groupe à envoyer des notifications concernant des activités de requête ou si vous désactivez les notifications.',
- 'request-privacy' => 'Paramètres des demandes',
- 'request-privacy-requested' => 'Autoriser les utilisateurs à afficher une liste des demandes que vous avez effectuées',
- 'reset-passkey' => 'Réinitialiser la clé de passe (passkey)',
- 'reset-passkey-help' => 'Vous devrez télécharger à nouveau / télécharger à nouveau tous vos torrents actifs, après avoir réinitialisé le PID',
- 'reset-rss' => 'Réinitialiser la clé RSS (RID)',
- 'reset-rss-help' => 'Après avoir réinitialisé le RID, vous devrez recharger tous vos flux RSS actifs.',
- 'resurrections' => 'Résurrections',
- 'search' => 'Recherche rapide par nom d utilisateur',
- 'security' => 'Sécurité',
- 'security-settings' => 'Les paramètres de sécurité',
- 'seedbox-added-success' => 'Seedbox a été ajouté avec succès!',
- 'seedbox-deleted-success' => 'Seedbox a été supprimé avec succès',
- 'seedboxes' => 'Seedbox',
- 'seeds' => 'Seeds',
- 'send-invite' => 'Envoyer une invitation',
- 'sender' => 'Expéditeur',
- 'settings' => 'Réglages',
- 'show-passkey' => 'Afficher le passkey',
- 'staff-noted' => 'Notes du staff',
- 'statistics' => 'Statistiques',
- 'subscription-notification' => 'Paramètres de notification d abonnement',
- 'subscription-notification-forum' => 'Recevoir une notification lorsqu un forum abonné reçoit un nouveau sujet',
- 'subscription-notification-topic' => 'Recevoir une notification lorsqu un sujet abonné reçoit un nouveau message',
- 'subscription-notification-help' => 'Contrôlez les notifications envoyées concernant vos abonnements. Ces paramètres sont remplacés si vous n autorisez aucun groupe à envoyer des notifications concernant vos abonnements ou si vous désactivez les notifications.',
- 'thanks-given' => 'Merci donné',
- 'thanks-received' => 'Merci reçu',
- 'tips-given' => 'Conseils donnés',
- 'tips-received' => 'Conseils reçus',
- 'title' => 'Titre',
- 'top-bankers' => 'Top banquiers',
- 'top-downloaders-data' => 'Top téléchargeurs (données)',
- 'top-leechers' => 'Top Leechers',
- 'top-leechers-count' => 'Top Leechers (Compte)',
- 'top-seeders' => 'membres les plus seedeurs',
- 'top-seeders-count' => 'Top seedeurs (Compte)',
- 'top-seeding-size' => 'Torrents les plus seedés en taille',
- 'top-seedtime' => 'Torrents les plus sedés sur la durée',
- 'top-uploaders-data' => 'Top Uploaders (Données)',
- 'top-uploaders-count' => 'Meilleurs Uploaders (Nombre)',
- 'topics' => 'Sujets',
- 'topics-started' => 'Sujets du forum démarrés',
- 'torrent-comments' => 'Commentaires Torrent faits',
- 'torrent-help' => 'Contrôlez le partage de statistiques et d informations spécifiques sur les torrents avec les groupes autorisés à accéder à votre profil. Ces paramètres sont remplacés si vous n autorisez aucun groupe à accéder aux statistiques et informations relatives au torrent ou si vous passez en privé',
- 'torrent-notification' => 'Paramètres de notification de torrent',
- 'torrent-notification-comment' => 'Recevoir une notification lorsqu un torrent téléchargé reçoit un nouveau commentaire',
- 'torrent-notification-thank' => 'Recevoir une notification lorsqu un torrent téléchargé reçoit un nouveau merci',
- 'torrent-notification-tip' => 'Recevoir une notification lorsqu un torrent téléchargé reçoit un nouveau Tip',
- 'torrent-notification-help' => 'Contrôle quelles notifications sont envoyées concernant les activités torrent. Ces paramètres sont remplacés si vous n autorisez aucun groupe à envoyer des notifications concernant des activités torrent ou si vous désactivez les notifications.',
- 'torrent-privacy' => 'Paramètres du torrent',
- 'torrent-privacy-download' => 'Autoriser les utilisateurs à afficher une liste des torrents que vous avez téléchargés',
- 'torrent-privacy-upload' => 'Autoriser les utilisateurs à afficher une liste des torrents que vous avez uploadés',
- 'torrent-privacy-peer' => 'Autoriser les utilisateurs à vous voir dans la table d historique des torrents en partage',
- 'torrents' => 'Torrents',
- 'torrents-history' => 'Historique des Torrents',
- 'total-download' => 'Total des téléchargements',
- 'total-downloads' => 'Total des téléchargés',
- 'total-leeching' => 'Total en leech',
- 'total-seeding' => 'Total en seed',
- 'total-seedtime' => 'Durée totale des seeds',
- 'total-upload' => 'Upload au total',
- 'total-uploads' => 'Uploads au total',
- 'unban' => 'Débannir un membrer',
- 'unfollow' => 'Se désabonner',
- 'unlocked' => 'Débloqué',
- 'unlocked-achievements' => 'Réalisations débloquées',
- 'unsatisfieds' => 'Insatisfaits',
- 'upload-bon' => 'Upload ajouté depuis BON Store',
- 'upload-recorded' => 'Téléchargement enregistré',
- 'upload-true' => 'True Upload',
- 'uploads' => 'Uploads',
- 'uploads-table' => 'Tableau des téléchargements',
- 'user' => 'Utilisateur',
- 'user-id' => 'Identifiant d utilisateur',
- 'username-seedbox' => 'Nom d utilisateur Seedbox',
- 'visible-to-achievement' => 'Réalisations visibles à',
- 'visible-to-achievement-help' => 'Vos réalisations ne seront visibles que par le personnel et les groupes suivants. Ces paramètres sont remplacés si vous passez en privé',
- 'visible-to-follower' => 'Abonnés Visible à',
- 'visible-to-follower-help' => 'Vos suiveurs ne seront visibles que par le personnel et les groupes suivants. Ces paramètres sont remplacés si vous passez en privé',
- 'visible-to-forum' => 'Informations du forum visibles à',
- 'visible-to-forum-help' => 'Les informations de votre forum ne seront visibles que par le personnel et les groupes suivants. Ces paramètres sont remplacés si vous passez en privé',
- 'visible-to-other' => 'Autre visible à',
- 'visible-to-other-help' => 'Les autres informations concernant votre compte ne seront visibles que par le personnel et les groupes suivants. Ces paramètres sont remplacés si vous devenez privé ou caché.',
- 'visible-to-profile' => 'Profil visible à',
- 'visible-to-profile-help' => 'Votre profil ne sera visible que par le personnel et les groupes suivants. Ces paramètres sont remplacés si vous passez en privé',
- 'visible-to-request' => 'Demande d information visible à',
- 'visible-to-request-help' => 'Les informations de votre demande ne seront visibles que par le personnel et les groupes suivants. Ces paramètres sont remplacés si vous passez en privé',
- 'visible-to-torrent' => 'Informations torrent visibles à',
- 'visible-to-torrent-help' => 'Les informations sur votre torrent ne seront visibles que par le personnel et les groupes suivants. Ces paramètres sont remplacés si vous devenez privé ou caché.',
- 'warned-on' => 'Averti sur',
- 'warning' => 'Attention',
- 'warning-log' => 'Journal d avertissement',
- 'wishlist' => 'Liste de souhaits',
+ 'mention-notification-forum-post' => 'Recevez une notification lorsque vous êtes @ mentionné dans un message du forum',
+ 'mention-notification-help' => 'Contrôlez les notifications qui sont envoyées lorsqu un utilisateur vous dit @. Ces paramètres sont remplacés si vous n autorisez aucun groupe à envoyer des notifications si un utilisateur vous @ dit ou si vous désactivez les notifications.',
+ 'moderated-by' => 'Modéré par: mod on',
+ 'my-bonus-points' => 'Mes points bonus',
+ 'my-bookmarks' => 'Mes marques-pages',
+ 'my-fl-tokens' => 'Mes jetons FL',
+ 'my-general-settings' => 'Mes paramètres généraux',
+ 'my-notification' => 'Mes notifications',
+ 'my-notification-settings' => 'Mes paramètres de notification',
+ 'my-privacy' => 'Ma vie privée',
+ 'my-privacy-settings' => 'Mes paramètres de confidentialité',
+ 'my-profile' => 'Mon profil',
+ 'my-requested' => 'Mes demandes',
+ 'my-security' => 'Ma sécurité',
+ 'my-security-settings' => 'Mes paramètres de sécurité',
+ 'my-seedboxes' => 'Mes seedbox',
+ 'my-settings' => 'Mes paramètres',
+ 'my-wishlist' => 'Ma liste de suivi',
+ 'no-logs' => 'Il n y a pas de journaux d invitation dans la base de données pour cet utilisateur!',
+ 'no-seedboxes' => 'Pas de seedbox 😔',
+ 'not-authorized' => 'Vous n êtes pas autorisé à afficher cette page. Ce membre préfère être caché comme un ninja!',
+ 'not-enough-invites' => 'Tu n\'as pas assez d\'invitations!',
+ 'note' => 'Remarque',
+ 'notification' => 'Notification',
+ 'notification-settings' => 'Paramètres de notification',
+ 'notification-from-account' => 'Recevoir des notifications de compte à partir de',
+ 'notification-from-account-help' => 'Vous ne recevrez que les notifications de compte du système, du personnel et des groupes suivants. Ces paramètres sont remplacés si vous désactivez les notifications.',
+ 'notification-from-bon' => 'Recevoir des notifications BON de',
+ 'notification-from-bon-help' => 'Vous ne recevrez que les notifications BON du système, du personnel et des groupes suivants. Ces paramètres sont remplacés si vous désactivez les notifications.',
+ 'notification-from-following' => 'Recevoir les notifications d utilisateur suivies de',
+ 'notification-from-following-help' => 'Vous ne recevrez que les notifications d utilisateur suivies des groupes suivants. Ces paramètres sont remplacés si vous désactivez les notifications.',
+ 'notification-from-forum' => 'Recevoir des notifications de forum à partir de',
+ 'notification-from-forum-help' => 'Vous ne recevrez des notifications de forum que du système, du personnel et des groupes suivants. Ces paramètres sont remplacés si vous désactivez les notifications.',
+ 'notification-from-subscription' => 'Recevoir des notifications d abonnement de',
+ 'notification-from-subscription-help' => 'Vous ne recevrez des notifications de forum que du système, du personnel et des groupes suivants. Ces paramètres sont remplacés si vous désactivez les notifications.',
+ 'notification-from-torrent' => 'Recevoir des notifications de torrent de',
+ 'notification-from-torrent-help' => 'Vous ne recevrez que des notifications torrent du système, du personnel et des groupes suivants. Ces paramètres sont remplacés si vous désactivez les notifications.',
+ 'notification-from-mention' => 'Recevoir les notifications @Mention de',
+ 'notification-from-mention-help' => 'Vous ne recevrez que les notifications @mention du système, du personnel et des groupes suivants. Ces paramètres sont remplacés si vous désactivez les notifications.',
+ 'notification-from-request' => 'Recevoir des notifications de demande de',
+ 'notification-from-request-help' => 'Vous ne recevrez que les notifications de demande du système, du personnel et des groupes suivants. Ces paramètres sont remplacés si vous désactivez les notifications.',
+ 'notifications' => 'Les notifications',
+ 'offline' => 'L utilisateur est hors ligne!',
+ 'online' => 'L utilisateur est en ligne!',
+ 'options' => 'Options',
+ 'other-help' => 'Contrôlez le partage d autres statistiques et informations avec les groupes autorisés à accéder à votre profil. Ces paramètres sont remplacés si vous n autorisez aucun groupe à accéder à vos autres statistiques et informations ou si vous passez en mode privé.',
+ 'other-privacy' => 'Autres réglages',
+ 'other-privacy-online' => 'Autoriser les utilisateurs à vous voir dans le bloc d utilisateurs en ligne',
+ 'passkey' => 'passkey',
+ 'passkey-warning' => 'Le passkey est comme votre mot de passe, vous devez le garder en sécurité!',
+ 'pending-achievements' => 'Réalisations en attente',
+ 'per-torrent' => 'Par torrent',
+ 'posts' => 'Posts',
+ 'posts-posted' => 'Messages du forum publiés',
+ 'privacy' => 'Confidentialité',
+ 'privacy-settings' => 'Paramètres de confidentialité',
+ 'private-info' => 'Informations privées',
+ 'private-forum-profile' => 'Attention: Ce sujet et cette histoire de membre a été réglé sur PRIVE!',
+ 'private-profile' => 'Attention: Ce profil a été configuré sur PRIVE!',
+ 'profile' => 'Profil',
+ 'profile-desc' => 'Utilisateur: profil d utilisateur enregistré sur: titre',
+ 'profile-privacy' => 'Paramètres de profil',
+ 'profile-privacy-torrent-count' => 'Partagez votre nombre total de téléchargements, téléchargements, seeds et leechs',
+ 'profile-privacy-torrent-ratio' => 'Partagez votre total de données de chargement / téléchargement avec le ratio enregistré',
+ 'profile-privacy-torrent-seed' => 'Partagez votre temps total de seed et votre moyenne',
+ 'profile-privacy-title' => 'Partagez vos informations de titre personnelles',
+ 'profile-privacy-about' => 'Partagez vos informations personnelles',
+ 'profile-privacy-bon-extra' => 'Partagez vos statistiques des coupons',
+ 'profile-privacy-comment-extra' => 'Partagez vos statistiques de commentaires',
+ 'profile-privacy-forum-extra' => 'Partagez les statistiques de votre forum',
+ 'profile-privacy-request-extra' => 'Partagez vos statistiques de demande',
+ 'profile-privacy-torrent-extra' => 'Partagez vos statistiques de torrent',
+ 'profile-privacy-badge' => 'Partagez vos badges gagnés',
+ 'profile-privacy-achievement' => 'Partagez vos dernières réalisations',
+ 'profile-privacy-follower' => 'Partagez vos derniers abonnés',
+ 'profile-privacy-warning' => 'Partagez vos avertissements H & R',
+ 'profile-privacy-help' => 'Contrôlez les statistiques et les informations qui apparaissent sur votre profil. Ces paramètres sont remplacés si vous n autorisez aucun groupe à accéder à votre profil ou si vous passez en mode privé.',
+ 'public-info' => 'Information publique',
+ 'recent-achievements' => 'Réalisations récentes',
+ 'recent-followers' => 'Abonnés récents',
+ 'registration-date' => 'Date d\'enregistrement',
+ 'report' => 'Rapport',
+ 'report-sent' => 'Ton rapport a été envoyé avec succès',
+ 'request-help' => 'Contrôlez le partage de statistiques et d informations spécifiques aux requêtes avec les groupes autorisés à accéder à votre profil. Ces paramètres sont remplacés si vous n autorisez aucun groupe à accéder aux statistiques et informations connexes demandées ou si vous passez en mode privé.',
+ 'request' => 'Demande',
+ 'requested' => 'Demandé',
+ 'requests' => 'Demandes',
+ 'request-comments' => 'Demander des commentaires faits',
+ 'request-notification' => 'Demander les paramètres de notification',
+ 'request-notification-bounty' => 'Recevoir une notification lorsqu un torrent demandé reçoit une nouvelle prime',
+ 'request-notification-comment' => 'Recevoir une notification lorsqu un torrent demandé reçoit un nouveau commentaire',
+ 'request-notification-fill' => 'Recevoir une notification lorsqu une demande de torrent est rempli',
+ 'request-notification-fill-approve' => 'Recevoir une notification lorsqu une demande de torrent demandé est approuvée',
+ 'request-notification-fill-reject' => 'Recevoir une notification lorsqu une demande de torrent demandé est rejetée',
+ 'request-notification-claim' => 'Recevoir une notification lorsqu un torrent demandé est réclamé',
+ 'request-notification-unclaim' => 'Recevoir une notification lorsqu un torrent demandé n est pas réclamé',
+ 'request-notification-help' => 'Contrôlez les notifications envoyées concernant les activités de demande. Ces paramètres sont remplacés si vous n autorisez aucun groupe à envoyer des notifications concernant des activités de requête ou si vous désactivez les notifications.',
+ 'request-privacy' => 'Paramètres des demandes',
+ 'request-privacy-requested' => 'Autoriser les utilisateurs à afficher une liste des demandes que vous avez effectuées',
+ 'reset-passkey' => 'Réinitialiser la clé de passe (passkey)',
+ 'reset-passkey-help' => 'Vous devrez télécharger à nouveau / télécharger à nouveau tous vos torrents actifs, après avoir réinitialisé le PID',
+ 'reset-rss' => 'Réinitialiser la clé RSS (RID)',
+ 'reset-rss-help' => 'Après avoir réinitialisé le RID, vous devrez recharger tous vos flux RSS actifs.',
+ 'resurrections' => 'Résurrections',
+ 'search' => 'Recherche rapide par nom d utilisateur',
+ 'security' => 'Sécurité',
+ 'security-settings' => 'Les paramètres de sécurité',
+ 'seedbox-added-success' => 'Seedbox a été ajouté avec succès!',
+ 'seedbox-deleted-success' => 'Seedbox a été supprimé avec succès',
+ 'seedboxes' => 'Seedbox',
+ 'seeds' => 'Seeds',
+ 'send-invite' => 'Envoyer une invitation',
+ 'sender' => 'Expéditeur',
+ 'settings' => 'Réglages',
+ 'show-passkey' => 'Afficher le passkey',
+ 'staff-noted' => 'Notes du staff',
+ 'statistics' => 'Statistiques',
+ 'subscription-notification' => 'Paramètres de notification d abonnement',
+ 'subscription-notification-forum' => 'Recevoir une notification lorsqu un forum abonné reçoit un nouveau sujet',
+ 'subscription-notification-topic' => 'Recevoir une notification lorsqu un sujet abonné reçoit un nouveau message',
+ 'subscription-notification-help' => 'Contrôlez les notifications envoyées concernant vos abonnements. Ces paramètres sont remplacés si vous n autorisez aucun groupe à envoyer des notifications concernant vos abonnements ou si vous désactivez les notifications.',
+ 'thanks-given' => 'Merci donné',
+ 'thanks-received' => 'Merci reçu',
+ 'tips-given' => 'Conseils donnés',
+ 'tips-received' => 'Conseils reçus',
+ 'title' => 'Titre',
+ 'top-bankers' => 'Top banquiers',
+ 'top-downloaders-data' => 'Top téléchargeurs (données)',
+ 'top-leechers' => 'Top Leechers',
+ 'top-leechers-count' => 'Top Leechers (Compte)',
+ 'top-seeders' => 'membres les plus seedeurs',
+ 'top-seeders-count' => 'Top seedeurs (Compte)',
+ 'top-seeding-size' => 'Torrents les plus seedés en taille',
+ 'top-seedtime' => 'Torrents les plus sedés sur la durée',
+ 'top-uploaders-data' => 'Top Uploaders (Données)',
+ 'top-uploaders-count' => 'Meilleurs Uploaders (Nombre)',
+ 'topics' => 'Sujets',
+ 'topics-started' => 'Sujets du forum démarrés',
+ 'torrent-comments' => 'Commentaires Torrent faits',
+ 'torrent-help' => 'Contrôlez le partage de statistiques et d informations spécifiques sur les torrents avec les groupes autorisés à accéder à votre profil. Ces paramètres sont remplacés si vous n autorisez aucun groupe à accéder aux statistiques et informations relatives au torrent ou si vous passez en privé',
+ 'torrent-notification' => 'Paramètres de notification de torrent',
+ 'torrent-notification-comment' => 'Recevoir une notification lorsqu un torrent téléchargé reçoit un nouveau commentaire',
+ 'torrent-notification-thank' => 'Recevoir une notification lorsqu un torrent téléchargé reçoit un nouveau merci',
+ 'torrent-notification-tip' => 'Recevoir une notification lorsqu un torrent téléchargé reçoit un nouveau Tip',
+ 'torrent-notification-help' => 'Contrôle quelles notifications sont envoyées concernant les activités torrent. Ces paramètres sont remplacés si vous n autorisez aucun groupe à envoyer des notifications concernant des activités torrent ou si vous désactivez les notifications.',
+ 'torrent-privacy' => 'Paramètres du torrent',
+ 'torrent-privacy-download' => 'Autoriser les utilisateurs à afficher une liste des torrents que vous avez téléchargés',
+ 'torrent-privacy-upload' => 'Autoriser les utilisateurs à afficher une liste des torrents que vous avez uploadés',
+ 'torrent-privacy-peer' => 'Autoriser les utilisateurs à vous voir dans la table d historique des torrents en partage',
+ 'torrents' => 'Torrents',
+ 'torrents-history' => 'Historique des Torrents',
+ 'total-download' => 'Total des téléchargements',
+ 'total-downloads' => 'Total des téléchargés',
+ 'total-leeching' => 'Total en leech',
+ 'total-seeding' => 'Total en seed',
+ 'total-seedtime' => 'Durée totale des seeds',
+ 'total-upload' => 'Upload au total',
+ 'total-uploads' => 'Uploads au total',
+ 'unban' => 'Débannir un membrer',
+ 'unfollow' => 'Se désabonner',
+ 'unlocked' => 'Débloqué',
+ 'unlocked-achievements' => 'Réalisations débloquées',
+ 'unsatisfieds' => 'Insatisfaits',
+ 'upload-bon' => 'Upload ajouté depuis BON Store',
+ 'upload-recorded' => 'Téléchargement enregistré',
+ 'upload-true' => 'True Upload',
+ 'uploads' => 'Uploads',
+ 'uploads-table' => 'Tableau des téléchargements',
+ 'user' => 'Utilisateur',
+ 'user-id' => 'Identifiant d utilisateur',
+ 'username-seedbox' => 'Nom d utilisateur Seedbox',
+ 'visible-to-achievement' => 'Réalisations visibles à',
+ 'visible-to-achievement-help' => 'Vos réalisations ne seront visibles que par le personnel et les groupes suivants. Ces paramètres sont remplacés si vous passez en privé',
+ 'visible-to-follower' => 'Abonnés Visible à',
+ 'visible-to-follower-help' => 'Vos suiveurs ne seront visibles que par le personnel et les groupes suivants. Ces paramètres sont remplacés si vous passez en privé',
+ 'visible-to-forum' => 'Informations du forum visibles à',
+ 'visible-to-forum-help' => 'Les informations de votre forum ne seront visibles que par le personnel et les groupes suivants. Ces paramètres sont remplacés si vous passez en privé',
+ 'visible-to-other' => 'Autre visible à',
+ 'visible-to-other-help' => 'Les autres informations concernant votre compte ne seront visibles que par le personnel et les groupes suivants. Ces paramètres sont remplacés si vous devenez privé ou caché.',
+ 'visible-to-profile' => 'Profil visible à',
+ 'visible-to-profile-help' => 'Votre profil ne sera visible que par le personnel et les groupes suivants. Ces paramètres sont remplacés si vous passez en privé',
+ 'visible-to-request' => 'Demande d information visible à',
+ 'visible-to-request-help' => 'Les informations de votre demande ne seront visibles que par le personnel et les groupes suivants. Ces paramètres sont remplacés si vous passez en privé',
+ 'visible-to-torrent' => 'Informations torrent visibles à',
+ 'visible-to-torrent-help' => 'Les informations sur votre torrent ne seront visibles que par le personnel et les groupes suivants. Ces paramètres sont remplacés si vous devenez privé ou caché.',
+ 'warned-on' => 'Averti sur',
+ 'warning' => 'Attention',
+ 'warning-log' => 'Journal d avertissement',
+ 'wishlist' => 'Liste de souhaits',
];
diff --git a/lang/fr/validation.php b/lang/fr/validation.php
index fda2e4e3e..742599f30 100644
--- a/lang/fr/validation.php
+++ b/lang/fr/validation.php
@@ -23,108 +23,108 @@ return [
|
*/
- 'accepted' => 'Le champ :attribute doit être accepté.',
- 'active_url' => "Le champ :attribute n'est pas une URL valide.",
- 'after' => 'Le champ :attribute doit être une date postérieure au :date.',
- 'after_or_equal' => 'Le champ :attribute doit être une date postérieure ou égale au :date.',
- 'alpha' => 'Le champ :attribute doit contenir uniquement des lettres.',
- 'alpha_dash' => 'Le champ :attribute doit contenir uniquement des lettres, des chiffres et des tirets.',
- 'alpha_num' => 'Le champ :attribute doit contenir uniquement des chiffres et des lettres.',
- 'array' => 'Le champ :attribute doit être un tableau.',
- 'before' => 'Le champ :attribute doit être une date antérieure au :date.',
- 'before_or_equal' => 'Le champ :attribute doit être une date antérieure ou égale au :date.',
- 'between' => [
+ 'accepted' => 'Le champ :attribute doit être accepté.',
+ 'active_url' => "Le champ :attribute n'est pas une URL valide.",
+ 'after' => 'Le champ :attribute doit être une date postérieure au :date.',
+ 'after_or_equal' => 'Le champ :attribute doit être une date postérieure ou égale au :date.',
+ 'alpha' => 'Le champ :attribute doit contenir uniquement des lettres.',
+ 'alpha_dash' => 'Le champ :attribute doit contenir uniquement des lettres, des chiffres et des tirets.',
+ 'alpha_num' => 'Le champ :attribute doit contenir uniquement des chiffres et des lettres.',
+ 'array' => 'Le champ :attribute doit être un tableau.',
+ 'before' => 'Le champ :attribute doit être une date antérieure au :date.',
+ 'before_or_equal' => 'Le champ :attribute doit être une date antérieure ou égale au :date.',
+ 'between' => [
'numeric' => 'La valeur de :attribute doit être comprise entre :min et :max.',
- 'file' => 'La taille du fichier de :attribute doit être comprise entre :min et :max kilo-octets.',
- 'string' => 'Le texte :attribute doit contenir entre :min et :max caractères.',
- 'array' => 'Le tableau :attribute doit contenir entre :min et :max éléments.',
+ 'file' => 'La taille du fichier de :attribute doit être comprise entre :min et :max kilo-octets.',
+ 'string' => 'Le texte :attribute doit contenir entre :min et :max caractères.',
+ 'array' => 'Le tableau :attribute doit contenir entre :min et :max éléments.',
],
- 'boolean' => 'Le champ :attribute doit être vrai ou faux.',
- 'confirmed' => 'Le champ de confirmation :attribute ne correspond pas.',
- 'date' => "Le champ :attribute n'est pas une date valide.",
- 'date_equals' => 'Le champ :attribute doit être une date égale à :date.',
- 'date_format' => 'Le champ :attribute ne correspond pas au format :format.',
- 'different' => 'Les champs :attribute et :other doivent être différents.',
- 'digits' => 'Le champ :attribute doit contenir :digits chiffres.',
- 'digits_between' => 'Le champ :attribute doit contenir entre :min et :max chiffres.',
- 'dimensions' => "La taille de l'image :attribute n'est pas conforme.",
- 'distinct' => 'Le champ :attribute a une valeur en double.',
- 'email' => 'Le champ :attribute doit être une adresse email valide.',
- 'exists' => 'Le champ :attribute sélectionné est invalide.',
- 'file' => 'Le champ :attribute doit être un fichier.',
- 'filled' => 'Le champ :attribute doit avoir une valeur.',
- 'gt' => [
+ 'boolean' => 'Le champ :attribute doit être vrai ou faux.',
+ 'confirmed' => 'Le champ de confirmation :attribute ne correspond pas.',
+ 'date' => "Le champ :attribute n'est pas une date valide.",
+ 'date_equals' => 'Le champ :attribute doit être une date égale à :date.',
+ 'date_format' => 'Le champ :attribute ne correspond pas au format :format.',
+ 'different' => 'Les champs :attribute et :other doivent être différents.',
+ 'digits' => 'Le champ :attribute doit contenir :digits chiffres.',
+ 'digits_between' => 'Le champ :attribute doit contenir entre :min et :max chiffres.',
+ 'dimensions' => "La taille de l'image :attribute n'est pas conforme.",
+ 'distinct' => 'Le champ :attribute a une valeur en double.',
+ 'email' => 'Le champ :attribute doit être une adresse email valide.',
+ 'exists' => 'Le champ :attribute sélectionné est invalide.',
+ 'file' => 'Le champ :attribute doit être un fichier.',
+ 'filled' => 'Le champ :attribute doit avoir une valeur.',
+ 'gt' => [
'numeric' => 'La valeur de :attribute doit être supérieure à :value.',
- 'file' => 'La taille du fichier de :attribute doit être supérieure à :value kilo-octets.',
- 'string' => 'Le texte :attribute doit contenir plus de :value caractères.',
- 'array' => 'Le tableau :attribute doit contenir plus de :value éléments.',
+ 'file' => 'La taille du fichier de :attribute doit être supérieure à :value kilo-octets.',
+ 'string' => 'Le texte :attribute doit contenir plus de :value caractères.',
+ 'array' => 'Le tableau :attribute doit contenir plus de :value éléments.',
],
- 'gte' => [
+ 'gte' => [
'numeric' => 'La valeur de :attribute doit être supérieure ou égale à :value.',
- 'file' => 'La taille du fichier de :attribute doit être supérieure ou égale à :value kilo-octets.',
- 'string' => 'Le texte :attribute doit contenir au moins :value caractères.',
- 'array' => 'Le tableau :attribute doit contenir au moins :value éléments.',
+ 'file' => 'La taille du fichier de :attribute doit être supérieure ou égale à :value kilo-octets.',
+ 'string' => 'Le texte :attribute doit contenir au moins :value caractères.',
+ 'array' => 'Le tableau :attribute doit contenir au moins :value éléments.',
],
- 'image' => 'Le champ :attribute doit être une image.',
- 'in' => 'Le champ :attribute est invalide.',
- 'in_array' => "Le champ :attribute n'existe pas dans :other.",
- 'integer' => 'Le champ :attribute doit être un entier.',
- 'ip' => 'Le champ :attribute doit être une adresse IP valide.',
- 'ipv4' => 'Le champ :attribute doit être une adresse IPv4 valide.',
- 'ipv6' => 'Le champ :attribute doit être une adresse IPv6 valide.',
- 'json' => 'Le champ :attribute doit être un document JSON valide.',
- 'lt' => [
+ 'image' => 'Le champ :attribute doit être une image.',
+ 'in' => 'Le champ :attribute est invalide.',
+ 'in_array' => "Le champ :attribute n'existe pas dans :other.",
+ 'integer' => 'Le champ :attribute doit être un entier.',
+ 'ip' => 'Le champ :attribute doit être une adresse IP valide.',
+ 'ipv4' => 'Le champ :attribute doit être une adresse IPv4 valide.',
+ 'ipv6' => 'Le champ :attribute doit être une adresse IPv6 valide.',
+ 'json' => 'Le champ :attribute doit être un document JSON valide.',
+ 'lt' => [
'numeric' => 'La valeur de :attribute doit être inférieure à :value.',
- 'file' => 'La taille du fichier de :attribute doit être inférieure à :value kilo-octets.',
- 'string' => 'Le texte :attribute doit contenir moins de :value caractères.',
- 'array' => 'Le tableau :attribute doit contenir moins de :value éléments.',
+ 'file' => 'La taille du fichier de :attribute doit être inférieure à :value kilo-octets.',
+ 'string' => 'Le texte :attribute doit contenir moins de :value caractères.',
+ 'array' => 'Le tableau :attribute doit contenir moins de :value éléments.',
],
- 'lte' => [
+ 'lte' => [
'numeric' => 'La valeur de :attribute doit être inférieure ou égale à :value.',
- 'file' => 'La taille du fichier de :attribute doit être inférieure ou égale à :value kilo-octets.',
- 'string' => 'Le texte :attribute doit contenir au plus :value caractères.',
- 'array' => 'Le tableau :attribute doit contenir au plus :value éléments.',
+ 'file' => 'La taille du fichier de :attribute doit être inférieure ou égale à :value kilo-octets.',
+ 'string' => 'Le texte :attribute doit contenir au plus :value caractères.',
+ 'array' => 'Le tableau :attribute doit contenir au plus :value éléments.',
],
- 'max' => [
+ 'max' => [
'numeric' => 'La valeur de :attribute ne peut être supérieure à :max.',
- 'file' => 'La taille du fichier de :attribute ne peut pas dépasser :max kilo-octets.',
- 'string' => 'Le texte de :attribute ne peut contenir plus de :max caractères.',
- 'array' => 'Le tableau :attribute ne peut contenir plus de :max éléments.',
+ 'file' => 'La taille du fichier de :attribute ne peut pas dépasser :max kilo-octets.',
+ 'string' => 'Le texte de :attribute ne peut contenir plus de :max caractères.',
+ 'array' => 'Le tableau :attribute ne peut contenir plus de :max éléments.',
],
- 'mimes' => 'Le champ :attribute doit être un fichier de type : :values.',
- 'mimetypes' => 'Le champ :attribute doit être un fichier de type : :values.',
- 'min' => [
+ 'mimes' => 'Le champ :attribute doit être un fichier de type : :values.',
+ 'mimetypes' => 'Le champ :attribute doit être un fichier de type : :values.',
+ 'min' => [
'numeric' => 'La valeur de :attribute doit être supérieure ou égale à :min.',
- 'file' => 'La taille du fichier de :attribute doit être supérieure à :min kilo-octets.',
- 'string' => 'Le texte :attribute doit contenir au moins :min caractères.',
- 'array' => 'Le tableau :attribute doit contenir au moins :min éléments.',
+ 'file' => 'La taille du fichier de :attribute doit être supérieure à :min kilo-octets.',
+ 'string' => 'Le texte :attribute doit contenir au moins :min caractères.',
+ 'array' => 'Le tableau :attribute doit contenir au moins :min éléments.',
],
- 'not_in' => "Le champ :attribute sélectionné n'est pas valide.",
- 'not_regex' => "Le format du champ :attribute n'est pas valide.",
- 'numeric' => 'Le champ :attribute doit contenir un nombre.',
- 'present' => 'Le champ :attribute doit être présent.',
- 'regex' => 'Le format du champ :attribute est invalide.',
- 'required' => 'Le champ :attribute est obligatoire.',
- 'required_if' => 'Le champ :attribute est obligatoire quand la valeur de :other est :value.',
- 'required_unless' => 'Le champ :attribute est obligatoire sauf si :other est :values.',
- 'required_with' => 'Le champ :attribute est obligatoire quand :values est présent.',
- 'required_with_all' => 'Le champ :attribute est obligatoire quand :values sont présents.',
- 'required_without' => "Le champ :attribute est obligatoire quand :values n'est pas présent.",
+ 'not_in' => "Le champ :attribute sélectionné n'est pas valide.",
+ 'not_regex' => "Le format du champ :attribute n'est pas valide.",
+ 'numeric' => 'Le champ :attribute doit contenir un nombre.',
+ 'present' => 'Le champ :attribute doit être présent.',
+ 'regex' => 'Le format du champ :attribute est invalide.',
+ 'required' => 'Le champ :attribute est obligatoire.',
+ 'required_if' => 'Le champ :attribute est obligatoire quand la valeur de :other est :value.',
+ 'required_unless' => 'Le champ :attribute est obligatoire sauf si :other est :values.',
+ 'required_with' => 'Le champ :attribute est obligatoire quand :values est présent.',
+ 'required_with_all' => 'Le champ :attribute est obligatoire quand :values sont présents.',
+ 'required_without' => "Le champ :attribute est obligatoire quand :values n'est pas présent.",
'required_without_all' => "Le champ :attribute est requis quand aucun de :values n'est présent.",
- 'same' => 'Les champs :attribute et :other doivent être identiques.',
- 'size' => [
+ 'same' => 'Les champs :attribute et :other doivent être identiques.',
+ 'size' => [
'numeric' => 'La valeur de :attribute doit être :size.',
- 'file' => 'La taille du fichier de :attribute doit être de :size kilo-octets.',
- 'string' => 'Le texte de :attribute doit contenir :size caractères.',
- 'array' => 'Le tableau :attribute doit contenir :size éléments.',
+ 'file' => 'La taille du fichier de :attribute doit être de :size kilo-octets.',
+ 'string' => 'Le texte de :attribute doit contenir :size caractères.',
+ 'array' => 'Le tableau :attribute doit contenir :size éléments.',
],
- 'starts_with' => 'Le champ :attribute doit commencer avec une des valeurs suivantes : :values',
- 'string' => 'Le champ :attribute doit être une chaîne de caractères.',
- 'timezone' => 'Le champ :attribute doit être un fuseau horaire valide.',
- 'unique' => 'La valeur du champ :attribute est déjà utilisée.',
- 'uploaded' => "Le fichier du champ :attribute n'a pu être téléversé.",
- 'url' => "Le format de l'URL de :attribute n'est pas valide.",
- 'uuid' => 'Le champ :attribute doit être un UUID valide',
+ 'starts_with' => 'Le champ :attribute doit commencer avec une des valeurs suivantes : :values',
+ 'string' => 'Le champ :attribute doit être une chaîne de caractères.',
+ 'timezone' => 'Le champ :attribute doit être un fuseau horaire valide.',
+ 'unique' => 'La valeur du champ :attribute est déjà utilisée.',
+ 'uploaded' => "Le fichier du champ :attribute n'a pu être téléversé.",
+ 'url' => "Le format de l'URL de :attribute n'est pas valide.",
+ 'uuid' => 'Le champ :attribute doit être un UUID valide',
/*
|--------------------------------------------------------------------------
@@ -155,34 +155,34 @@ return [
*/
'attributes' => [
- 'name' => 'nom',
- 'username' => "nom d'utilisateur",
- 'email' => 'adresse email',
- 'first_name' => 'prénom',
- 'last_name' => 'nom',
- 'password' => 'mot de passe',
+ 'name' => 'nom',
+ 'username' => "nom d'utilisateur",
+ 'email' => 'adresse email',
+ 'first_name' => 'prénom',
+ 'last_name' => 'nom',
+ 'password' => 'mot de passe',
'password_confirmation' => 'confirmation du mot de passe',
- 'city' => 'ville',
- 'country' => 'pays',
- 'address' => 'adresse',
- 'phone' => 'téléphone',
- 'mobile' => 'portable',
- 'age' => 'âge',
- 'sex' => 'sexe',
- 'gender' => 'genre',
- 'day' => 'jour',
- 'month' => 'mois',
- 'year' => 'année',
- 'hour' => 'heure',
- 'minute' => 'minute',
- 'second' => 'seconde',
- 'title' => 'titre',
- 'content' => 'contenu',
- 'description' => 'description',
- 'excerpt' => 'extrait',
- 'date' => 'date',
- 'time' => 'heure',
- 'available' => 'disponible',
- 'size' => 'taille',
+ 'city' => 'ville',
+ 'country' => 'pays',
+ 'address' => 'adresse',
+ 'phone' => 'téléphone',
+ 'mobile' => 'portable',
+ 'age' => 'âge',
+ 'sex' => 'sexe',
+ 'gender' => 'genre',
+ 'day' => 'jour',
+ 'month' => 'mois',
+ 'year' => 'année',
+ 'hour' => 'heure',
+ 'minute' => 'minute',
+ 'second' => 'seconde',
+ 'title' => 'titre',
+ 'content' => 'contenu',
+ 'description' => 'description',
+ 'excerpt' => 'extrait',
+ 'date' => 'date',
+ 'time' => 'heure',
+ 'available' => 'disponible',
+ 'size' => 'taille',
],
];
diff --git a/lang/gl/articles.php b/lang/gl/articles.php
index 9ac9855b5..ec22a57ac 100644
--- a/lang/gl/articles.php
+++ b/lang/gl/articles.php
@@ -12,8 +12,8 @@
*/
return [
- 'articles' => 'Artigos',
+ 'articles' => 'Artigos',
'meta-articles' => 'Artigos e noticias sobre o rastreador e a comunidade',
- 'published-at' => 'Publicado en',
- 'read-more' => 'Le máis',
+ 'published-at' => 'Publicado en',
+ 'read-more' => 'Le máis',
];
diff --git a/lang/gl/auth.php b/lang/gl/auth.php
index 6a6d44aa2..46f6afa64 100644
--- a/lang/gl/auth.php
+++ b/lang/gl/auth.php
@@ -23,6 +23,6 @@ return [
|
*/
- 'failed' => 'Estas credenciais non coinciden cos nosos rexistros.',
+ 'failed' => 'Estas credenciais non coinciden cos nosos rexistros.',
'throttle' => 'Demasiados intentos de acceso. Por favor inténteo de novo en :seconds segundos.',
];
diff --git a/lang/gl/backup.php b/lang/gl/backup.php
index b8d97f4dc..b5ee9b02a 100644
--- a/lang/gl/backup.php
+++ b/lang/gl/backup.php
@@ -12,32 +12,32 @@
*/
return [
- 'actions' => 'Accións',
- 'backup' => 'Copia de seguridade',
- 'backup_doesnt_exist' => 'O ficheiro de copia de seguridade non existe.',
- 'create_a_new_backup' => 'Crear copia de seguridade completa',
- 'create_a_new_files_backup' => 'Crear copia de seguridade de ficheiros',
- 'create_a_new_db_backup' => 'Crear unha copia de seguridade da base de datos',
- 'create_confirmation_message' => 'Cargar de novo a páxina en 3 segundos.',
- 'create_confirmation_title' => 'Completouse a copia de seguridade',
- 'create_error_message' => 'Non se puido crear o ficheiro de copia de seguridade.',
- 'create_error_title' => 'Erro de copia de seguridade',
- 'create_warning_message' => 'O seu backup non se creou. Verifique os ficheiros de rexistro para máis detalles.',
- 'create_warning_title' => 'Erro descoñecido',
- 'date' => 'Data',
- 'delete' => 'Eliminar',
- 'delete_cancel_message' => 'Non se eliminou o ficheiro de copia de seguridade.',
- 'delete_cancel_title' => 'Está ben',
- 'delete_confirm' => '¿Está seguro de que quere eliminar este ficheiro de copia de seguridade?',
- 'delete_confirmation_message' => 'Eliminouse o ficheiro de copia de seguridade.',
- 'delete_confirmation_title' => 'Feito',
- 'delete_error_message' => 'Non se eliminou o ficheiro de copia de seguridade.',
- 'delete_error_title' => 'Erro',
- 'download' => 'Descarga',
- 'existing_backups' => 'Copias de seguridade existentes',
- 'file_size' => 'Tamaño do ficheiro',
- 'location' => 'Localización',
- 'manager' => 'Xestor',
- 'no_disks_configured' => 'Non se configuraron discos de copia de seguridade en config / backup.php',
+ 'actions' => 'Accións',
+ 'backup' => 'Copia de seguridade',
+ 'backup_doesnt_exist' => 'O ficheiro de copia de seguridade non existe.',
+ 'create_a_new_backup' => 'Crear copia de seguridade completa',
+ 'create_a_new_files_backup' => 'Crear copia de seguridade de ficheiros',
+ 'create_a_new_db_backup' => 'Crear unha copia de seguridade da base de datos',
+ 'create_confirmation_message' => 'Cargar de novo a páxina en 3 segundos.',
+ 'create_confirmation_title' => 'Completouse a copia de seguridade',
+ 'create_error_message' => 'Non se puido crear o ficheiro de copia de seguridade.',
+ 'create_error_title' => 'Erro de copia de seguridade',
+ 'create_warning_message' => 'O seu backup non se creou. Verifique os ficheiros de rexistro para máis detalles.',
+ 'create_warning_title' => 'Erro descoñecido',
+ 'date' => 'Data',
+ 'delete' => 'Eliminar',
+ 'delete_cancel_message' => 'Non se eliminou o ficheiro de copia de seguridade.',
+ 'delete_cancel_title' => 'Está ben',
+ 'delete_confirm' => '¿Está seguro de que quere eliminar este ficheiro de copia de seguridade?',
+ 'delete_confirmation_message' => 'Eliminouse o ficheiro de copia de seguridade.',
+ 'delete_confirmation_title' => 'Feito',
+ 'delete_error_message' => 'Non se eliminou o ficheiro de copia de seguridade.',
+ 'delete_error_title' => 'Erro',
+ 'download' => 'Descarga',
+ 'existing_backups' => 'Copias de seguridade existentes',
+ 'file_size' => 'Tamaño do ficheiro',
+ 'location' => 'Localización',
+ 'manager' => 'Xestor',
+ 'no_disks_configured' => 'Non se configuraron discos de copia de seguridade en config / backup.php',
'only_local_downloads_supported' => 'Só se admiten descargas do sistema de ficheiros local.',
];
diff --git a/lang/gl/blocks.php b/lang/gl/blocks.php
index d22d5bbb1..3faa15d13 100644
--- a/lang/gl/blocks.php
+++ b/lang/gl/blocks.php
@@ -12,19 +12,19 @@
*/
return [
- 'chatbox' => 'Caixa de chat',
- 'click' => 'Fai clic',
- 'to-enable-editor' => 'para activar o editor',
- 'featured-by' => 'Destacado por',
- 'featured-torrents' => 'Torrents destacados',
+ 'chatbox' => 'Caixa de chat',
+ 'click' => 'Fai clic',
+ 'to-enable-editor' => 'para activar o editor',
+ 'featured-by' => 'Destacado por',
+ 'featured-torrents' => 'Torrents destacados',
'featured-torrents-intro' => '¡Obteña-los mentres poidas!',
- 'featured-until' => 'Este é un torrent ata o momento',
- 'top-torrents' => 'Top Torrents',
- 'latest-posts' => 'Últimos artigos',
- 'latest-topics' => 'Últimos temas',
- 'active-in-last' => 'Activo no último',
- 'users-online' => 'Usuarios en liña',
- 'check-news' => 'Novas (verifique a diario)',
- 'new-news' => 'Novas novas',
- 'new-torrents' => 'Novos torrentes',
+ 'featured-until' => 'Este é un torrent ata o momento',
+ 'top-torrents' => 'Top Torrents',
+ 'latest-posts' => 'Últimos artigos',
+ 'latest-topics' => 'Últimos temas',
+ 'active-in-last' => 'Activo no último',
+ 'users-online' => 'Usuarios en liña',
+ 'check-news' => 'Novas (verifique a diario)',
+ 'new-news' => 'Novas novas',
+ 'new-torrents' => 'Novos torrentes',
];
diff --git a/lang/gl/bon.php b/lang/gl/bon.php
index 2b4cc82df..8d5875e19 100644
--- a/lang/gl/bon.php
+++ b/lang/gl/bon.php
@@ -12,44 +12,44 @@
*/
return [
- 'activated' => 'Activado',
- 'active' => 'Activado.',
- 'amount' => 'Cantidade',
- 'bon' => 'BON',
- 'bonus' => 'Bonos',
- 'date' => 'Data',
- 'earning' => 'Gañar',
- 'earning-rate' => 'A este ritmo de ganancia gañará o seguinte por período de tempo.',
- 'earnings' => 'Beneficios',
- 'exchange' => 'Intercambio',
- 'exchange-warning' => 'Os intercambios son finais. Comprobe as súas opcións antes de facer un intercambio.',
- 'extended-stats' => 'Estatísticas estendidas',
- 'gift' => 'Regalo',
- 'gift-bonus' => 'Puntos de bonos de agasallo',
- 'gift-to' => 'Puntos de bonos de agasallo para',
- 'gifts' => 'Regalos',
- 'item' => 'Elemento',
- 'no-refund' => 'Sen reembolsos!',
- 'per-day' => 'Puntos por día',
- 'per-hour' => 'Puntos por hora',
- 'per-minute' => 'Puntos por minuto',
- 'per-month' => 'Puntos por mes',
- 'per-second' => 'Puntos por segundo',
- 'per-week' => 'Puntos por semana',
- 'per-year' => 'Puntos por ano',
- 'points' => 'Puntos',
- 'receiver' => 'Receptor',
- 'review-seeds' => 'Revise todos os Torrents sementados',
- 'send-gift' => 'Enviar agasallo',
- 'sender' => 'Remitente',
- 'store' => 'Tenda',
- 'tips' => 'Consellos',
- 'total' => 'Total de ganancias',
- 'total-gifts' => 'En agasallos BON Total',
- 'total-tips' => 'En Consellos Total BON',
+ 'activated' => 'Activado',
+ 'active' => 'Activado.',
+ 'amount' => 'Cantidade',
+ 'bon' => 'BON',
+ 'bonus' => 'Bonos',
+ 'date' => 'Data',
+ 'earning' => 'Gañar',
+ 'earning-rate' => 'A este ritmo de ganancia gañará o seguinte por período de tempo.',
+ 'earnings' => 'Beneficios',
+ 'exchange' => 'Intercambio',
+ 'exchange-warning' => 'Os intercambios son finais. Comprobe as súas opcións antes de facer un intercambio.',
+ 'extended-stats' => 'Estatísticas estendidas',
+ 'gift' => 'Regalo',
+ 'gift-bonus' => 'Puntos de bonos de agasallo',
+ 'gift-to' => 'Puntos de bonos de agasallo para',
+ 'gifts' => 'Regalos',
+ 'item' => 'Elemento',
+ 'no-refund' => 'Sen reembolsos!',
+ 'per-day' => 'Puntos por día',
+ 'per-hour' => 'Puntos por hora',
+ 'per-minute' => 'Puntos por minuto',
+ 'per-month' => 'Puntos por mes',
+ 'per-second' => 'Puntos por segundo',
+ 'per-week' => 'Puntos por semana',
+ 'per-year' => 'Puntos por ano',
+ 'points' => 'Puntos',
+ 'receiver' => 'Receptor',
+ 'review-seeds' => 'Revise todos os Torrents sementados',
+ 'send-gift' => 'Enviar agasallo',
+ 'sender' => 'Remitente',
+ 'store' => 'Tenda',
+ 'tips' => 'Consellos',
+ 'total' => 'Total de ganancias',
+ 'total-gifts' => 'En agasallos BON Total',
+ 'total-tips' => 'En Consellos Total BON',
'you-have-received-gifts' => 'Recibiu',
- 'you-have-sent-gifts' => 'Enviado',
- 'you-have-received-tips' => 'Recibiu',
- 'you-have-sent-tips' => 'Enviado',
- 'your-points' => 'Os teus puntos',
+ 'you-have-sent-gifts' => 'Enviado',
+ 'you-have-received-tips' => 'Recibiu',
+ 'you-have-sent-tips' => 'Enviado',
+ 'your-points' => 'Os teus puntos',
];
diff --git a/lang/gl/bot.php b/lang/gl/bot.php
index 961fe1e0b..fe90c059b 100644
--- a/lang/gl/bot.php
+++ b/lang/gl/bot.php
@@ -12,15 +12,15 @@
*/
return [
- 'about' => 'Acerca de',
- 'bot' => 'Bot',
- 'bots' => 'Bots',
- 'color' => 'Cor',
- 'command' => 'Comando',
- 'edit-bot' => 'Editar bot',
+ 'about' => 'Acerca de',
+ 'bot' => 'Bot',
+ 'bots' => 'Bots',
+ 'color' => 'Cor',
+ 'command' => 'Comando',
+ 'edit-bot' => 'Editar bot',
'emoji-code' => 'Código Emoji',
- 'help' => 'Axuda',
- 'icon' => 'Ícona',
- 'info' => 'Información',
- 'name' => 'Nome',
+ 'help' => 'Axuda',
+ 'icon' => 'Ícona',
+ 'info' => 'Información',
+ 'name' => 'Nome',
];
diff --git a/lang/gl/bug.php b/lang/gl/bug.php
index 8d4b30f36..00a886aa5 100644
--- a/lang/gl/bug.php
+++ b/lang/gl/bug.php
@@ -12,15 +12,15 @@
*/
return [
- 'bug-report' => 'Informe de erros',
+ 'bug-report' => 'Informe de erros',
'bug-report-description' => 'Informar dun erro do sitio',
- 'enter-description' => 'Describa o problema o mellor posible',
- 'enter-email' => 'Introduce o teu correo electrónico',
- 'enter-title' => 'Escolle un título adecuado',
- 'enter-username' => 'Introduce o teu nome de usuario',
- 'high' => 'Alto',
- 'low' => 'Baixo',
- 'priority' => 'Prioridade',
- 'priority-description' => 'Escolle só moi alto se o erro é realmente un problema para usar o sitio.',
- 'very-high' => 'Moi alto',
+ 'enter-description' => 'Describa o problema o mellor posible',
+ 'enter-email' => 'Introduce o teu correo electrónico',
+ 'enter-title' => 'Escolle un título adecuado',
+ 'enter-username' => 'Introduce o teu nome de usuario',
+ 'high' => 'Alto',
+ 'low' => 'Baixo',
+ 'priority' => 'Prioridade',
+ 'priority-description' => 'Escolle só moi alto se o erro é realmente un problema para usar o sitio.',
+ 'very-high' => 'Moi alto',
];
diff --git a/lang/gl/common.php b/lang/gl/common.php
index 5f7a8bddf..f5b11b813 100644
--- a/lang/gl/common.php
+++ b/lang/gl/common.php
@@ -12,179 +12,179 @@
*/
return [
- 'a-an-art' => '',
- 'about' => 'Sobre nós',
- 'account' => 'Conta',
- 'achievement-title' => 'Impresionante',
+ 'a-an-art' => '',
+ 'about' => 'Sobre nós',
+ 'account' => 'Conta',
+ 'achievement-title' => 'Impresionante',
'achievement-unlocked' => 'Desbloquearon o logro ": name"',
- 'active' => 'Activo',
- 'active-warning' => 'Aviso activo',
- 'add' => 'Engadir',
- 'added' => 'Engadido',
- 'amount' => 'Cantidade',
- 'anonymous' => 'Anónimo',
- 'author' => 'Autor',
- 'balance' => 'Equilibrio',
- 'blacklist' => 'Lista negra de clientes',
- 'buffer' => 'Buffer',
- 'bug' => 'Informar dun erro',
- 'but' => 'Pero',
- 'cancel' => 'Cancelar',
- 'category' => 'Categoría',
- 'categories' => 'Categorías',
- 'close' => 'Pechar',
- 'comment' => 'Comentario',
- 'comments' => 'Comentarios',
- 'community' => 'Comunidade',
- 'contact' => 'Contacto',
- 'contact-desc' => 'Esta solicitude de contacto será enviada ao propietario e devolveralle o máis axiña posible',
- 'contact-header' => 'Ola',
- 'create' => 'Crear',
- 'created_at' => 'Creado en',
- 'day' => 'Día',
- 'delete' => 'Eliminar',
- 'delete-your-comment' => 'Elimina o teu comentario',
- 'description' => 'Descrición',
- 'direction' => 'Dirección',
- 'disable' => 'Desactivar',
- 'doubleup_activated' => 'Activa o modo de carga dobre global',
- 'download' => 'Descarga',
- 'edit' => 'Editar',
- 'edit-your-comment' => 'Edita o teu comentario',
- 'email' => 'Correo electrónico',
- 'email-blacklist' => 'Enviar unha lista negra por correo electrónico',
- 'email-whitelist' => 'Lista branca de correo electrónico',
+ 'active' => 'Activo',
+ 'active-warning' => 'Aviso activo',
+ 'add' => 'Engadir',
+ 'added' => 'Engadido',
+ 'amount' => 'Cantidade',
+ 'anonymous' => 'Anónimo',
+ 'author' => 'Autor',
+ 'balance' => 'Equilibrio',
+ 'blacklist' => 'Lista negra de clientes',
+ 'buffer' => 'Buffer',
+ 'bug' => 'Informar dun erro',
+ 'but' => 'Pero',
+ 'cancel' => 'Cancelar',
+ 'category' => 'Categoría',
+ 'categories' => 'Categorías',
+ 'close' => 'Pechar',
+ 'comment' => 'Comentario',
+ 'comments' => 'Comentarios',
+ 'community' => 'Comunidade',
+ 'contact' => 'Contacto',
+ 'contact-desc' => 'Esta solicitude de contacto será enviada ao propietario e devolveralle o máis axiña posible',
+ 'contact-header' => 'Ola',
+ 'create' => 'Crear',
+ 'created_at' => 'Creado en',
+ 'day' => 'Día',
+ 'delete' => 'Eliminar',
+ 'delete-your-comment' => 'Elimina o teu comentario',
+ 'description' => 'Descrición',
+ 'direction' => 'Dirección',
+ 'disable' => 'Desactivar',
+ 'doubleup_activated' => 'Activa o modo de carga dobre global',
+ 'download' => 'Descarga',
+ 'edit' => 'Editar',
+ 'edit-your-comment' => 'Edita o teu comentario',
+ 'email' => 'Correo electrónico',
+ 'email-blacklist' => 'Enviar unha lista negra por correo electrónico',
+ 'email-whitelist' => 'Lista branca de correo electrónico',
'email-list-notactive' => 'O sistema de listaxe de correo electrónico / lista negra non está activado',
- 'enable' => 'Activar',
- 'enter' => 'Intro',
- 'error' => 'Erro',
- 'everyday' => 'Tódolos días',
- 'expired' => 'Caducado',
- 'extra' => 'Extra',
- 'extra-stats' => 'Estatísticas extra',
- 'faq' => 'FAQ',
- 'files' => 'Arquivos',
- 'fl_token' => 'Tito Freeleech',
- 'fl_tokens' => 'Ficheiros Freeleech',
- 'for' => 'para',
- 'forum' => 'Foro',
- 'free' => 'Libre',
- 'freeleech_activated' => 'Modo Freeleech global activado',
- 'global' => 'Global',
- 'group' => 'Grupo',
- 'groups' => 'Grupos',
- 'hidden' => 'Ocultos',
- 'high-speeds' => 'Alta velocidade',
- 'home' => 'Inicio',
- 'hot' => '¡Quente!',
- 'hour' => 'Hora',
- 'huge' => 'Enorme',
- 'info' => 'Información',
- 'internal' => 'Interno',
- 'ip' => 'IP',
- 'is-allowed' => 'está permitido',
- 'large' => 'Grande',
- 'latest' => 'Última',
- 'latest-posts' => 'Últimos artigos',
- 'latest-topics' => 'Últimos temas',
- 'legal' => 'Legal',
- 'legend' => 'Lenda',
- 'lists' => 'Listas',
- 'lock-account' => 'Bloquear conta',
- 'logout' => 'Saír da sesión',
- 'members' => 'Membros',
- 'message' => 'Mensaxe',
- 'minute' => 'Minuto',
- 'moderated-by' => 'Moderado por',
- 'moderation' => 'Moderación',
- 'moderation-approve' => 'Aprobar',
- 'moderation-postpone' => 'Retrasar',
- 'moderation-reject' => 'Rexeitar',
- 'month' => 'Mes',
- 'months' => 'Meses',
- 'my' => 'O meu',
- 'name' => 'Nome',
- 'navigation' => 'Navegación',
- 'new' => 'Novo!',
- 'new-adj' => 'Novo',
- 'news' => 'Novas',
- 'next' => 'Seguinte',
- 'no' => 'Non',
- 'no-comments' => 'Sen comentarios',
- 'no-result' => 'Non hai ningún resultado na base de datos para a consulta',
- 'notifications' => 'Notificacións',
- 'older-than' => 'Máis vello que',
- 'oldest' => 'O máis antigo',
- 'openreg_activated' => 'Activa o rexistro aberto',
- 'order-by' => 'Orde por',
- 'other' => 'Outra',
- 'pages' => 'Páxinas',
- 'password' => 'Contrasinal',
- 'patron' => 'Convértete en patrón',
- 'pending-torrents' => 'Torrentes pendentes',
- 'personal' => 'Persoal',
- 'plural-suffix' => 's',
- 'port' => 'Porto',
- 'position' => 'Posición',
- 'posts' => 'Mensaxes',
- 'powered-by' => 'Desenvolvido por UNIT3D',
- 'preview' => 'Vista previa',
- 'previous' => 'Anterior',
- 'progress' => 'Progreso',
- 'publish' => 'Publicar',
- 'quantity' => 'Cantidade',
- 'quick-search' => 'Busca rápida',
- 'ratio' => 'Ratio',
- 'reason' => 'Razón',
- 'remove' => 'Quitar',
- 'report' => 'Informe',
- 'resend' => 'Reenviar',
- 'reporter' => 'Reporteiro',
- 'required' => 'Necesario',
- 'results' => 'Resultados',
- 'rss-system' => 'Sistema RSS',
- 'rules' => 'Regras',
- 'save' => 'Gardar',
- 'search' => 'Buscar',
- 'search-results' => 'Resultados da busca',
- 'search-results-desc' => 'Consulte os seus resultados a continuación',
- 'second' => 'Segundo',
- 'select' => 'Seleccione',
- 'sort' => 'Ordenar',
- 'special' => 'Especial',
- 'staff' => 'Persoal',
- 'staff-tools' => 'Ferramentas de persoal',
- 'stats' => 'Estatísticas',
- 'status' => 'Estado',
- 'sticked' => 'Golpeado',
- 'submit' => 'Enviar',
- 'subscriptions' => 'Subscricións',
- 'teams' => 'Equipos',
- 'terms' => 'Condicións de uso',
- 'times' => 'Veces',
- 'title' => 'Título',
- 'top-bountied' => 'Arriba retrocedido',
- 'topics' => 'Temas',
- 'tracker-codes' => 'Códigos de seguimento',
- 'type' => 'Escriba',
- 'type-verb' => 'Escriba',
- 'types' => 'Tipos',
- 'genre' => 'Xénero',
- 'genres' => 'Xéneros',
- 'action' => 'Acción',
- 'actions' => 'Accións',
- 'unknown' => 'Descoñecido',
+ 'enable' => 'Activar',
+ 'enter' => 'Intro',
+ 'error' => 'Erro',
+ 'everyday' => 'Tódolos días',
+ 'expired' => 'Caducado',
+ 'extra' => 'Extra',
+ 'extra-stats' => 'Estatísticas extra',
+ 'faq' => 'FAQ',
+ 'files' => 'Arquivos',
+ 'fl_token' => 'Tito Freeleech',
+ 'fl_tokens' => 'Ficheiros Freeleech',
+ 'for' => 'para',
+ 'forum' => 'Foro',
+ 'free' => 'Libre',
+ 'freeleech_activated' => 'Modo Freeleech global activado',
+ 'global' => 'Global',
+ 'group' => 'Grupo',
+ 'groups' => 'Grupos',
+ 'hidden' => 'Ocultos',
+ 'high-speeds' => 'Alta velocidade',
+ 'home' => 'Inicio',
+ 'hot' => '¡Quente!',
+ 'hour' => 'Hora',
+ 'huge' => 'Enorme',
+ 'info' => 'Información',
+ 'internal' => 'Interno',
+ 'ip' => 'IP',
+ 'is-allowed' => 'está permitido',
+ 'large' => 'Grande',
+ 'latest' => 'Última',
+ 'latest-posts' => 'Últimos artigos',
+ 'latest-topics' => 'Últimos temas',
+ 'legal' => 'Legal',
+ 'legend' => 'Lenda',
+ 'lists' => 'Listas',
+ 'lock-account' => 'Bloquear conta',
+ 'logout' => 'Saír da sesión',
+ 'members' => 'Membros',
+ 'message' => 'Mensaxe',
+ 'minute' => 'Minuto',
+ 'moderated-by' => 'Moderado por',
+ 'moderation' => 'Moderación',
+ 'moderation-approve' => 'Aprobar',
+ 'moderation-postpone' => 'Retrasar',
+ 'moderation-reject' => 'Rexeitar',
+ 'month' => 'Mes',
+ 'months' => 'Meses',
+ 'my' => 'O meu',
+ 'name' => 'Nome',
+ 'navigation' => 'Navegación',
+ 'new' => 'Novo!',
+ 'new-adj' => 'Novo',
+ 'news' => 'Novas',
+ 'next' => 'Seguinte',
+ 'no' => 'Non',
+ 'no-comments' => 'Sen comentarios',
+ 'no-result' => 'Non hai ningún resultado na base de datos para a consulta',
+ 'notifications' => 'Notificacións',
+ 'older-than' => 'Máis vello que',
+ 'oldest' => 'O máis antigo',
+ 'openreg_activated' => 'Activa o rexistro aberto',
+ 'order-by' => 'Orde por',
+ 'other' => 'Outra',
+ 'pages' => 'Páxinas',
+ 'password' => 'Contrasinal',
+ 'patron' => 'Convértete en patrón',
+ 'pending-torrents' => 'Torrentes pendentes',
+ 'personal' => 'Persoal',
+ 'plural-suffix' => 's',
+ 'port' => 'Porto',
+ 'position' => 'Posición',
+ 'posts' => 'Mensaxes',
+ 'powered-by' => 'Desenvolvido por UNIT3D',
+ 'preview' => 'Vista previa',
+ 'previous' => 'Anterior',
+ 'progress' => 'Progreso',
+ 'publish' => 'Publicar',
+ 'quantity' => 'Cantidade',
+ 'quick-search' => 'Busca rápida',
+ 'ratio' => 'Ratio',
+ 'reason' => 'Razón',
+ 'remove' => 'Quitar',
+ 'report' => 'Informe',
+ 'resend' => 'Reenviar',
+ 'reporter' => 'Reporteiro',
+ 'required' => 'Necesario',
+ 'results' => 'Resultados',
+ 'rss-system' => 'Sistema RSS',
+ 'rules' => 'Regras',
+ 'save' => 'Gardar',
+ 'search' => 'Buscar',
+ 'search-results' => 'Resultados da busca',
+ 'search-results-desc' => 'Consulte os seus resultados a continuación',
+ 'second' => 'Segundo',
+ 'select' => 'Seleccione',
+ 'sort' => 'Ordenar',
+ 'special' => 'Especial',
+ 'staff' => 'Persoal',
+ 'staff-tools' => 'Ferramentas de persoal',
+ 'stats' => 'Estatísticas',
+ 'status' => 'Estado',
+ 'sticked' => 'Golpeado',
+ 'submit' => 'Enviar',
+ 'subscriptions' => 'Subscricións',
+ 'teams' => 'Equipos',
+ 'terms' => 'Condicións de uso',
+ 'times' => 'Veces',
+ 'title' => 'Título',
+ 'top-bountied' => 'Arriba retrocedido',
+ 'topics' => 'Temas',
+ 'tracker-codes' => 'Códigos de seguimento',
+ 'type' => 'Escriba',
+ 'type-verb' => 'Escriba',
+ 'types' => 'Tipos',
+ 'genre' => 'Xénero',
+ 'genres' => 'Xéneros',
+ 'action' => 'Acción',
+ 'actions' => 'Accións',
+ 'unknown' => 'Descoñecido',
'unlocked-achievement' => 'Desbloqueado: logro de logros',
- 'upload' => 'Cargar',
- 'upload-guide' => 'Guía de subida',
- 'user' => 'Usuario',
- 'username' => 'Nome de usuario',
- 'users' => 'Usuarios',
- 'view' => 'Ver',
- 'view-all' => 'Ver todo',
- 'warnings' => 'Avisos',
- 'year' => 'Ano',
- 'yes' => 'Si',
- 'your' => 'O teu',
- 'your-comment' => 'O teu comentario',
+ 'upload' => 'Cargar',
+ 'upload-guide' => 'Guía de subida',
+ 'user' => 'Usuario',
+ 'username' => 'Nome de usuario',
+ 'users' => 'Usuarios',
+ 'view' => 'Ver',
+ 'view-all' => 'Ver todo',
+ 'warnings' => 'Avisos',
+ 'year' => 'Ano',
+ 'yes' => 'Si',
+ 'your' => 'O teu',
+ 'your-comment' => 'O teu comentario',
];
diff --git a/lang/gl/email.php b/lang/gl/email.php
index dd05fde34..0edbface1 100644
--- a/lang/gl/email.php
+++ b/lang/gl/email.php
@@ -12,46 +12,46 @@
*/
return [
- 'activate-account' => 'Activar conta',
- 'ban-reason' => 'Razón',
- 'banned-footer' => 'Isto é o que obteñas por non seguir as regras',
- 'banned-header' => 'Vostede foi prohibido',
- 'bug-description' => 'Problema',
- 'bug-footer' => 'Arranxa esa merda',
- 'bug-header' => 'Novo informe de erro de',
- 'bug-priority' => 'Prioridade',
- 'bug-title' => 'Título do erro',
- 'contact-header' => 'Novo correo de contacto desde',
- 'contact-message' => 'Mensaxe',
- 'contact-name' => 'Nome',
+ 'activate-account' => 'Activar conta',
+ 'ban-reason' => 'Razón',
+ 'banned-footer' => 'Isto é o que obteñas por non seguir as regras',
+ 'banned-header' => 'Vostede foi prohibido',
+ 'bug-description' => 'Problema',
+ 'bug-footer' => 'Arranxa esa merda',
+ 'bug-header' => 'Novo informe de erro de',
+ 'bug-priority' => 'Prioridade',
+ 'bug-title' => 'Título do erro',
+ 'contact-header' => 'Novo correo de contacto desde',
+ 'contact-message' => 'Mensaxe',
+ 'contact-name' => 'Nome',
'fail-login-greeting' => 'Non se puido iniciar a conta!',
- 'fail-login-line1' => 'Detectouse un rexistro incorrecto na túa conta.',
- 'fail-login-line2' => 'Esta solicitude orixinouse de: ip (: host) en: hora',
- 'fail-login-subject' => 'Notificación de inicio de sesión fallada',
- 'footer-link' => 'Se tes problemas ao facer clic no botón: actionText, copia e pega a URL seguinte no teu navegador:',
- 'invite-header' => 'Invitación a',
- 'invite-invited' => 'Foi invitado a',
- 'invite-message' => 'Mensaxe',
- 'invite-signup' => 'Asine agora',
- 'newreply-header' => 'Hai unha nova resposta no teu tema',
- 'newreply-message' => 'Mensaxe',
- 'newreply-replied' => 'Respondeu ao teu tema',
- 'newreply-view' => 'Ver agora',
- 'no-email-found' => 'Non puidemos atopar este correo electrónico no noso sistema.',
- 'register-code' => 'Para completar a activación da túa conta, fai clic no seguinte botón',
- 'register-footer' => 'Se o botón anterior non funciona, copia e pega a URL na barra de enderezos do navegador',
- 'register-header' => 'Ola! Grazas por rexistrarte',
- 'report-comment' => 'Comentario',
- 'report-email' => 'Correo electrónico',
- 'report-header' => 'Ola administrador, informouse dun enlace',
- 'report-link' => 'Ligazón',
- 'report-link-hash' => 'Ligazón real',
- 'thanks' => 'Grazas por usar',
- 'unban-footer' => 'Benvido de novo!',
- 'unban-header' => 'Vostede non foi prohibido',
- 'unban-reason' => 'Razón',
- 'username-reminder' => 'Recientemente enviounos unha solicitude para o teu nome de usuario na nosa aplicación. O teu nome de usuario é',
- 'username-sent' => 'O teu nome de usuario enviouse ao teu enderezo de correo electrónico!',
- 'disabled-header' => 'A túa conta foi deshabilitada',
- 'pruned-header' => 'A túa conta foi eliminada',
+ 'fail-login-line1' => 'Detectouse un rexistro incorrecto na túa conta.',
+ 'fail-login-line2' => 'Esta solicitude orixinouse de: ip (: host) en: hora',
+ 'fail-login-subject' => 'Notificación de inicio de sesión fallada',
+ 'footer-link' => 'Se tes problemas ao facer clic no botón: actionText, copia e pega a URL seguinte no teu navegador:',
+ 'invite-header' => 'Invitación a',
+ 'invite-invited' => 'Foi invitado a',
+ 'invite-message' => 'Mensaxe',
+ 'invite-signup' => 'Asine agora',
+ 'newreply-header' => 'Hai unha nova resposta no teu tema',
+ 'newreply-message' => 'Mensaxe',
+ 'newreply-replied' => 'Respondeu ao teu tema',
+ 'newreply-view' => 'Ver agora',
+ 'no-email-found' => 'Non puidemos atopar este correo electrónico no noso sistema.',
+ 'register-code' => 'Para completar a activación da túa conta, fai clic no seguinte botón',
+ 'register-footer' => 'Se o botón anterior non funciona, copia e pega a URL na barra de enderezos do navegador',
+ 'register-header' => 'Ola! Grazas por rexistrarte',
+ 'report-comment' => 'Comentario',
+ 'report-email' => 'Correo electrónico',
+ 'report-header' => 'Ola administrador, informouse dun enlace',
+ 'report-link' => 'Ligazón',
+ 'report-link-hash' => 'Ligazón real',
+ 'thanks' => 'Grazas por usar',
+ 'unban-footer' => 'Benvido de novo!',
+ 'unban-header' => 'Vostede non foi prohibido',
+ 'unban-reason' => 'Razón',
+ 'username-reminder' => 'Recientemente enviounos unha solicitude para o teu nome de usuario na nosa aplicación. O teu nome de usuario é',
+ 'username-sent' => 'O teu nome de usuario enviouse ao teu enderezo de correo electrónico!',
+ 'disabled-header' => 'A túa conta foi deshabilitada',
+ 'pruned-header' => 'A túa conta foi eliminada',
];
diff --git a/lang/gl/forum.php b/lang/gl/forum.php
index 655d12fc0..3b06efdf6 100644
--- a/lang/gl/forum.php
+++ b/lang/gl/forum.php
@@ -12,63 +12,63 @@
*/
return [
- 'action' => 'Acción',
- 'activity' => 'Actividade',
- 'approved' => 'Aprobado',
- 'author' => 'Autor',
- 'bug' => 'Erro',
- 'category-quick-search' => 'Busca rápida do nome do tema (dentro da categoría)',
- 'close-topic' => 'Bloquear tema',
- 'closed' => 'Pechado',
- 'create-new-topic' => 'Crear novo tema',
- 'created' => 'Creada',
- 'current' => 'Actual',
- 'delete-topic' => 'Eliminar este tema',
- 'denied' => 'Negado',
- 'dislike-post' => 'Non me gusta esta publicación',
- 'display-forum' => 'Amosar temas en',
- 'edit-post' => 'Editar publicación',
- 'edit-topic' => 'Editar tema',
- 'forum' => 'Foro',
- 'forums' => 'Foros',
- 'implemented' => 'Implementado',
- 'in' => 'En',
- 'invalid' => 'Non válido',
- 'label' => 'Etiqueta',
- 'label-system' => 'Sistema de etiquetas',
- 'last-message' => 'Última mensaxe',
- 'last-post-info' => 'Información da última mensaxe',
- 'latest' => 'Última',
- 'like-post' => 'Como este artigo',
- 'meta-category' => 'Lista de foros da categoría',
- 'moderation' => 'Moderación',
- 'name' => 'Nome',
- 'not-connected' => 'Debes estar conectado',
- 'not-subscribed' => 'Non subscrito',
- 'open' => 'Abrir',
- 'open-topic' => 'Abrir este tema',
- 'permalink' => 'Permalink',
- 'pin' => 'Pino',
- 'post' => 'Publicar',
- 'post-quick-search' => 'Busca rápida de corpo post',
- 'posts' => 'Mensaxes',
- 'quote' => 'Cita',
- 'read-topic' => 'Ler o tema',
- 'replies' => 'Respostas',
- 'send-new-topic' => 'Gardar este tema',
- 'solved' => 'Resolto',
- 'state' => 'Estado',
- 'stats' => 'Estatísticas',
- 'subscribed' => 'Subscrito',
+ 'action' => 'Acción',
+ 'activity' => 'Actividade',
+ 'approved' => 'Aprobado',
+ 'author' => 'Autor',
+ 'bug' => 'Erro',
+ 'category-quick-search' => 'Busca rápida do nome do tema (dentro da categoría)',
+ 'close-topic' => 'Bloquear tema',
+ 'closed' => 'Pechado',
+ 'create-new-topic' => 'Crear novo tema',
+ 'created' => 'Creada',
+ 'current' => 'Actual',
+ 'delete-topic' => 'Eliminar este tema',
+ 'denied' => 'Negado',
+ 'dislike-post' => 'Non me gusta esta publicación',
+ 'display-forum' => 'Amosar temas en',
+ 'edit-post' => 'Editar publicación',
+ 'edit-topic' => 'Editar tema',
+ 'forum' => 'Foro',
+ 'forums' => 'Foros',
+ 'implemented' => 'Implementado',
+ 'in' => 'En',
+ 'invalid' => 'Non válido',
+ 'label' => 'Etiqueta',
+ 'label-system' => 'Sistema de etiquetas',
+ 'last-message' => 'Última mensaxe',
+ 'last-post-info' => 'Información da última mensaxe',
+ 'latest' => 'Última',
+ 'like-post' => 'Como este artigo',
+ 'meta-category' => 'Lista de foros da categoría',
+ 'moderation' => 'Moderación',
+ 'name' => 'Nome',
+ 'not-connected' => 'Debes estar conectado',
+ 'not-subscribed' => 'Non subscrito',
+ 'open' => 'Abrir',
+ 'open-topic' => 'Abrir este tema',
+ 'permalink' => 'Permalink',
+ 'pin' => 'Pino',
+ 'post' => 'Publicar',
+ 'post-quick-search' => 'Busca rápida de corpo post',
+ 'posts' => 'Mensaxes',
+ 'quote' => 'Cita',
+ 'read-topic' => 'Ler o tema',
+ 'replies' => 'Respostas',
+ 'send-new-topic' => 'Gardar este tema',
+ 'solved' => 'Resolto',
+ 'state' => 'Estado',
+ 'stats' => 'Estatísticas',
+ 'subscribed' => 'Subscrito',
'subscription-quick-search' => 'Busca rápida do nome do tema (dentro das subscricións)',
- 'suggestion' => 'Suxestión',
- 'topic' => 'Tema',
- 'topic-closed' => 'Este tema está pechado',
- 'topic-name' => 'Nome do tema',
- 'topic-quick-search' => 'Busca rápida do nome do tema',
- 'topic-title' => 'Título deste tema',
- 'topics' => 'Temas',
- 'unpin' => 'Desvíe',
- 'view-all' => 'Ver todos os temas',
- 'views' => 'Vistas',
+ 'suggestion' => 'Suxestión',
+ 'topic' => 'Tema',
+ 'topic-closed' => 'Este tema está pechado',
+ 'topic-name' => 'Nome do tema',
+ 'topic-quick-search' => 'Busca rápida do nome do tema',
+ 'topic-title' => 'Título deste tema',
+ 'topics' => 'Temas',
+ 'unpin' => 'Desvíe',
+ 'view-all' => 'Ver todos os temas',
+ 'views' => 'Vistas',
];
diff --git a/lang/gl/graveyard.php b/lang/gl/graveyard.php
index 9298abc3e..974205b51 100644
--- a/lang/gl/graveyard.php
+++ b/lang/gl/graveyard.php
@@ -12,15 +12,15 @@
*/
return [
- 'dead' => 'Morto',
- 'graveyard' => 'Cemiterio',
- 'guidelines' => 'Directrices',
+ 'dead' => 'Morto',
+ 'graveyard' => 'Cemiterio',
+ 'guidelines' => 'Directrices',
'guidelines-content' => '1) Non podes resucitar as túas propias subidas.
2) Non resucitar algo que tampouco pode cometer.',
- 'howto' => 'Heres The Rule',
- 'howto-desc1' => 'Debe sementar : nome por 30 días para unha ressurección exitosa. Nese caso, cando se produce a sementeira actual',
- 'howto-desc2' => 'Serás recompensado',
- 'howto-hits' => 'Golpea',
- 'pending' => 'Pendente',
- 'resurrect' => 'Resucitar',
- 'reward' => 'Signos de Freeleech',
+ 'howto' => 'Heres The Rule',
+ 'howto-desc1' => 'Debe sementar : nome por 30 días para unha ressurección exitosa. Nese caso, cando se produce a sementeira actual',
+ 'howto-desc2' => 'Serás recompensado',
+ 'howto-hits' => 'Golpea',
+ 'pending' => 'Pendente',
+ 'resurrect' => 'Resucitar',
+ 'reward' => 'Signos de Freeleech',
];
diff --git a/lang/gl/notification.php b/lang/gl/notification.php
index 460ee98e9..4aa4df02f 100644
--- a/lang/gl/notification.php
+++ b/lang/gl/notification.php
@@ -12,14 +12,14 @@
*/
return [
- 'date' => 'Data',
- 'delete' => 'Eliminar',
- 'delete-all' => 'Eliminar todas as notificacións',
- 'mark-all-read' => 'Marcar todos como lidos',
- 'mark-read' => 'Marcar como lido',
- 'message' => 'Mensaxe',
+ 'date' => 'Data',
+ 'delete' => 'Eliminar',
+ 'delete-all' => 'Eliminar todas as notificacións',
+ 'mark-all-read' => 'Marcar todos como lidos',
+ 'mark-read' => 'Marcar como lido',
+ 'message' => 'Mensaxe',
'no-notifications' => 'Non se atopan notificacións',
- 'notifications' => 'Notificacións',
- 'read' => 'Ler',
- 'title' => 'Título',
+ 'notifications' => 'Notificacións',
+ 'read' => 'Ler',
+ 'title' => 'Título',
];
diff --git a/lang/gl/page.php b/lang/gl/page.php
index 9c2ce07aa..0cd950730 100644
--- a/lang/gl/page.php
+++ b/lang/gl/page.php
@@ -12,28 +12,28 @@
*/
return [
- 'aboutus-advantage' => 'A vantaxe',
- 'aboutus-advantage1' => 'Temos membros experimentados e persoal ben coñecido no mundo do vídeo / son HD e soporte técnico.',
- 'aboutus-advantage2' => 'Xunto á nosa extensa paixón polos filmes e programas de televisión, ofrecemos tamén unha das mellores seleccións de algo que a maioría non - FANRES! UN GRAN GRACIAS aos nosos contedores.',
- 'aboutus-advantage3' => 'Aínda que aceptamos doazóns para manter o sitio en funcionamento non haberá banderas nin pancartas no lugar. Non pedimos de nós.',
- 'aboutus-advantage4' => 'A nosa comunidade non ten ningún bo para a súa idade temperá. Entre os nosos empregados e userbase, sempre estabamos aquí para axudar. Foi un apaixonado por asegurarte de que a túa experiencia en: title sexa nada menos que incrible.',
- 'aboutus-advantage5' => 'O noso servizo é utilizado diariamente por moitas persoas en todo o mundo. Temos probado que nos preocupamos pola funcionalidade e seguridade do noso código de base e pódese confiar e confiar. Os nosos desenvolvedores traballan a diario para proporcionar un código de código nex-gen.',
- 'aboutus-header' => 'Ola alí',
- 'aboutus-rules' => 'O que necesitamos de ti',
- 'aboutus-rules1' => 'Ser un membro activo da comunidade. Isto significa unirse a conversas de xeito produtivo, engadir contido aprobado e axudar a outros usuarios se é posible.',
- 'aboutus-rules2' => 'Para ler as regras e respectalas.',
- 'aboutus-rules3' => 'Facer suxestións. Procuramos que o título sexa mellor cada día. Non estamos dicindo que se usarán todas as suxestións, pero nunca está de máis ver novas ideas.',
- 'aboutus-welcome' => 'Imos falar',
- 'aboutus-welcome-desc' => ': title é unha base de datos de película / TV / FANRES construída pola comunidade . Toda a información foi engadida pola nosa incrible comunidade dende 2017.: os títulos están enfocados a contidos en alta definición, un servidor activo activo, un código de código incrible e seguro e un equipo de persoal amigable.',
- 'blacklist-browsers' => 'Navegadores',
- 'blacklist-btclient' => 'Cliente BitTorrent',
- 'blacklist-clients' => 'Clientes',
- 'blacklist-desc' => 'Os seguintes navegadores e os clientes de Bittorrent están na lista negra / prohibida de anunciar a: título',
- 'blacklist-webbrowser' => 'Navegador web',
+ 'aboutus-advantage' => 'A vantaxe',
+ 'aboutus-advantage1' => 'Temos membros experimentados e persoal ben coñecido no mundo do vídeo / son HD e soporte técnico.',
+ 'aboutus-advantage2' => 'Xunto á nosa extensa paixón polos filmes e programas de televisión, ofrecemos tamén unha das mellores seleccións de algo que a maioría non - FANRES! UN GRAN GRACIAS aos nosos contedores.',
+ 'aboutus-advantage3' => 'Aínda que aceptamos doazóns para manter o sitio en funcionamento non haberá banderas nin pancartas no lugar. Non pedimos de nós.',
+ 'aboutus-advantage4' => 'A nosa comunidade non ten ningún bo para a súa idade temperá. Entre os nosos empregados e userbase, sempre estabamos aquí para axudar. Foi un apaixonado por asegurarte de que a túa experiencia en: title sexa nada menos que incrible.',
+ 'aboutus-advantage5' => 'O noso servizo é utilizado diariamente por moitas persoas en todo o mundo. Temos probado que nos preocupamos pola funcionalidade e seguridade do noso código de base e pódese confiar e confiar. Os nosos desenvolvedores traballan a diario para proporcionar un código de código nex-gen.',
+ 'aboutus-header' => 'Ola alí',
+ 'aboutus-rules' => 'O que necesitamos de ti',
+ 'aboutus-rules1' => 'Ser un membro activo da comunidade. Isto significa unirse a conversas de xeito produtivo, engadir contido aprobado e axudar a outros usuarios se é posible.',
+ 'aboutus-rules2' => 'Para ler as regras e respectalas.',
+ 'aboutus-rules3' => 'Facer suxestións. Procuramos que o título sexa mellor cada día. Non estamos dicindo que se usarán todas as suxestións, pero nunca está de máis ver novas ideas.',
+ 'aboutus-welcome' => 'Imos falar',
+ 'aboutus-welcome-desc' => ': title é unha base de datos de película / TV / FANRES construída pola comunidade . Toda a información foi engadida pola nosa incrible comunidade dende 2017.: os títulos están enfocados a contidos en alta definición, un servidor activo activo, un código de código incrible e seguro e un equipo de persoal amigable.',
+ 'blacklist-browsers' => 'Navegadores',
+ 'blacklist-btclient' => 'Cliente BitTorrent',
+ 'blacklist-clients' => 'Clientes',
+ 'blacklist-desc' => 'Os seguintes navegadores e os clientes de Bittorrent están na lista negra / prohibida de anunciar a: título',
+ 'blacklist-webbrowser' => 'Navegador web',
'blacklist-emaildomain' => 'Dominio bloqueado',
- 'email-blacklist-desc' => 'Os seguintes dominios de correo electrónico están bloqueados de ser usados. Non podes rexistrar nin enviar unha invitación aos seguintes.',
- 'email-whitelist-desc' => 'Os seguintes dominios de correo electrónico son os únicos dominios de correo electrónico que se permiten empregar. Só pode rexistrarse ou enviar unha invitación usando o seguinte.',
- 'staff-group' => 'Grupo',
- 'staff-title' => 'Título',
+ 'email-blacklist-desc' => 'Os seguintes dominios de correo electrónico están bloqueados de ser usados. Non podes rexistrar nin enviar unha invitación aos seguintes.',
+ 'email-whitelist-desc' => 'Os seguintes dominios de correo electrónico son os únicos dominios de correo electrónico que se permiten empregar. Só pode rexistrarse ou enviar unha invitación usando o seguinte.',
+ 'staff-group' => 'Grupo',
+ 'staff-title' => 'Título',
'whitelist-emaildomain' => 'Dominio de confianza',
];
diff --git a/lang/gl/pagination.php b/lang/gl/pagination.php
index 18005e741..7fc9bdb00 100644
--- a/lang/gl/pagination.php
+++ b/lang/gl/pagination.php
@@ -24,5 +24,5 @@ return [
*/
'previous' => '« Anterior',
- 'next' => 'Seguinte »',
+ 'next' => 'Seguinte »',
];
diff --git a/lang/gl/passwords.php b/lang/gl/passwords.php
index 4fd153f10..9efa7bbc6 100644
--- a/lang/gl/passwords.php
+++ b/lang/gl/passwords.php
@@ -24,8 +24,8 @@ return [
*/
'password' => 'Os contrasinais deben conter polo menos seis caracteres e coincidir.',
- 'reset' => 'O teu contrasinal foi restablecido!',
- 'sent' => 'Enviámosche por correo electrónico o enlace de restablecemento do contrasinal!',
- 'token' => 'Este token de restablecemento do contrasinal non é válido.',
- 'user' => 'Non podemos atopar un usuario con ese correo electrónico.',
+ 'reset' => 'O teu contrasinal foi restablecido!',
+ 'sent' => 'Enviámosche por correo electrónico o enlace de restablecemento do contrasinal!',
+ 'token' => 'Este token de restablecemento do contrasinal non é válido.',
+ 'user' => 'Non podemos atopar un usuario con ese correo electrónico.',
];
diff --git a/lang/gl/pm.php b/lang/gl/pm.php
index e84033b14..0877abfa9 100644
--- a/lang/gl/pm.php
+++ b/lang/gl/pm.php
@@ -12,28 +12,28 @@
*/
return [
- 'create' => 'Crear',
- 'delete' => 'Eliminar',
+ 'create' => 'Crear',
+ 'delete' => 'Eliminar',
'enter-subject' => 'Introduza o asunto',
- 'from' => 'De',
- 'inbox' => 'Caixa de entrada',
+ 'from' => 'De',
+ 'inbox' => 'Caixa de entrada',
'mark-all-read' => 'Marcar todas as mensaxes como lidas',
- 'message' => 'Mensaxe',
- 'messages' => 'Mensaxes',
- 'new' => 'Nova mensaxe',
- 'outbox' => 'Caixa de saída',
- 'private' => 'Privado',
- 'read' => 'Ler',
- 'received-at' => 'Recibido en',
- 'refresh' => 'Actualizar',
- 'reply' => 'Responder',
- 'search' => 'Busca por asunto',
- 'select' => 'Seleccione un usuario',
- 'send' => 'Enviar PM',
- 'send-to' => 'Enviar PM To',
- 'sent' => 'Enviado',
- 'sent-at' => 'Enviado',
- 'subject' => 'Asunto',
- 'to' => 'Para',
- 'unread' => 'Sen ler',
+ 'message' => 'Mensaxe',
+ 'messages' => 'Mensaxes',
+ 'new' => 'Nova mensaxe',
+ 'outbox' => 'Caixa de saída',
+ 'private' => 'Privado',
+ 'read' => 'Ler',
+ 'received-at' => 'Recibido en',
+ 'refresh' => 'Actualizar',
+ 'reply' => 'Responder',
+ 'search' => 'Busca por asunto',
+ 'select' => 'Seleccione un usuario',
+ 'send' => 'Enviar PM',
+ 'send-to' => 'Enviar PM To',
+ 'sent' => 'Enviado',
+ 'sent-at' => 'Enviado',
+ 'subject' => 'Asunto',
+ 'to' => 'Para',
+ 'unread' => 'Sen ler',
];
diff --git a/lang/gl/poll.php b/lang/gl/poll.php
index d2f58a5c7..d1e3fc5a4 100644
--- a/lang/gl/poll.php
+++ b/lang/gl/poll.php
@@ -12,18 +12,18 @@
*/
return [
- 'add-option' => 'Engadir opción',
- 'create-poll' => 'Crear enquisa',
- 'current' => 'Enquisa actual (s)',
- 'delete-option' => 'Eliminar opción',
+ 'add-option' => 'Engadir opción',
+ 'create-poll' => 'Crear enquisa',
+ 'current' => 'Enquisa actual (s)',
+ 'delete-option' => 'Eliminar opción',
'multiple-choice' => 'Esta é unha enquisa de opción múltiple. Seleccione cantas respostas desexa.',
- 'option' => 'Opción',
- 'poll' => 'Enquisa',
- 'polls' => 'Enquisas',
- 'results' => 'Resultados da enquisa',
- 'title' => 'Título',
- 'total' => 'Total de votos',
- 'vote' => 'Vota',
- 'vote-now' => 'Obtén o teu voto agora mesmo!',
- 'votes' => 'Votos',
+ 'option' => 'Opción',
+ 'poll' => 'Enquisa',
+ 'polls' => 'Enquisas',
+ 'results' => 'Resultados da enquisa',
+ 'title' => 'Título',
+ 'total' => 'Total de votos',
+ 'vote' => 'Vota',
+ 'vote-now' => 'Obtén o teu voto agora mesmo!',
+ 'votes' => 'Votos',
];
diff --git a/lang/gl/request.php b/lang/gl/request.php
index 7bbe4c7be..3afac8c3a 100644
--- a/lang/gl/request.php
+++ b/lang/gl/request.php
@@ -12,67 +12,67 @@
*/
return [
- 'add-request' => 'Engadir solicitude',
- 'age' => 'Idade',
- 'all-requests' => 'Todas as peticións',
- 'approve' => 'Aprobar',
- 'bounty' => 'Bounty',
- 'bounty-claimed' => 'Bounty reclamou',
- 'bounty-unclaimed' => 'Bounty non reclamado',
- 'category' => 'Categoría',
- 'claim' => 'Reclamación',
- 'claim-anon-choose' => 'Por favor, escolle con sabedoría',
- 'claim-as-anon' => 'Quere reclamar isto de xeito anónimo',
- 'claim-now' => 'Reclama agora',
- 'claimed' => 'Reclamado',
- 'current' => 'Actual',
- 'delete' => 'Eliminar esta solicitude',
+ 'add-request' => 'Engadir solicitude',
+ 'age' => 'Idade',
+ 'all-requests' => 'Todas as peticións',
+ 'approve' => 'Aprobar',
+ 'bounty' => 'Bounty',
+ 'bounty-claimed' => 'Bounty reclamou',
+ 'bounty-unclaimed' => 'Bounty non reclamado',
+ 'category' => 'Categoría',
+ 'claim' => 'Reclamación',
+ 'claim-anon-choose' => 'Por favor, escolle con sabedoría',
+ 'claim-as-anon' => 'Quere reclamar isto de xeito anónimo',
+ 'claim-now' => 'Reclama agora',
+ 'claimed' => 'Reclamado',
+ 'current' => 'Actual',
+ 'delete' => 'Eliminar esta solicitude',
'delete-confirmation' => 'Está seguro de que quere eliminar esta solicitude',
- 'delete-filled' => 'Esta solicitude só se pode eliminar se non se encheu',
- 'description' => 'Descrición',
- 'dont-have-bps' => 'Non tes suficiente Bonus',
- 'edit-request' => 'Editar solicitude',
- 'enter-bp' => 'Introduza puntos de bonificación (mínimo 100)',
- 'enter-hash' => 'Introduce o Info Hash do Torrent subido',
- 'fill' => 'Encha',
- 'fill-request' => 'Encha esta solicitude',
- 'filled' => 'Recheo',
- 'filled-by' => 'Cheo de',
- 'for' => 'para',
- 'fulfill' => 'Cumprir',
- 'last-vote' => 'Última votación',
- 'my-requests' => 'Os meus pedidos',
- 'no' => 'Non,',
- 'no-imdb-id' => 'Todas as solicitudes deben conter un número IMDB',
- 'no-privileges' => 'Erro: os teus dereitos de solicitude foron desactivados',
- 'no-privileges-desc' => 'Se pensas que isto é un erro, contacta co persoal',
- 'no-refunds' => 'Os intercambios BON para crear, encher e premios son finais.
Sen reembolsos!',
- 'pending' => 'Pendente',
- 'reason' => 'Razón',
- 'reject' => 'Rexeitar',
- 'report' => 'Solicitude de informes',
- 'request' => 'Solicitude',
- 'request-details' => 'Solicitar detalles',
- 'requested-by' => 'Solicitado por',
- 'requests' => 'Solicitudes',
- 'required' => 'Necesario',
- 'reset' => 'Restablecer',
- 'reset-confirmation' => 'Está seguro de que quere restablecer esta solicitude',
- 'reset-request' => 'Restablecer esta solicitude',
- 'reward' => 'Recompensa',
- 'reward-desc' => '¿Canto lle gustaría premiar o punto de bonificación? Mínimo 100 BP',
- 'reward-from' => 'De',
- 'title' => 'Título',
- 'torrent-hash' => 'Torrent Hash',
- 'total-bounty' => 'Recompensa total',
- 'type' => 'Escriba',
- 'unclaim' => 'Solicitar esta solicitude',
- 'unfilled' => 'Non cuberto',
- 'view-filled' => 'Ver cuberto',
- 'view-unfilled' => 'Ver sen cubrir',
- 'vote' => 'Vota',
- 'vote-that' => 'Vota esta solicitude',
- 'voters' => 'Electores',
- 'votes' => 'Votos',
- 'yes' => 'Si',
+ 'delete-filled' => 'Esta solicitude só se pode eliminar se non se encheu',
+ 'description' => 'Descrición',
+ 'dont-have-bps' => 'Non tes suficiente Bonus',
+ 'edit-request' => 'Editar solicitude',
+ 'enter-bp' => 'Introduza puntos de bonificación (mínimo 100)',
+ 'enter-hash' => 'Introduce o Info Hash do Torrent subido',
+ 'fill' => 'Encha',
+ 'fill-request' => 'Encha esta solicitude',
+ 'filled' => 'Recheo',
+ 'filled-by' => 'Cheo de',
+ 'for' => 'para',
+ 'fulfill' => 'Cumprir',
+ 'last-vote' => 'Última votación',
+ 'my-requests' => 'Os meus pedidos',
+ 'no' => 'Non,',
+ 'no-imdb-id' => 'Todas as solicitudes deben conter un número IMDB',
+ 'no-privileges' => 'Erro: os teus dereitos de solicitude foron desactivados',
+ 'no-privileges-desc' => 'Se pensas que isto é un erro, contacta co persoal',
+ 'no-refunds' => 'Os intercambios BON para crear, encher e premios son finais.
Sen reembolsos!',
+ 'pending' => 'Pendente',
+ 'reason' => 'Razón',
+ 'reject' => 'Rexeitar',
+ 'report' => 'Solicitude de informes',
+ 'request' => 'Solicitude',
+ 'request-details' => 'Solicitar detalles',
+ 'requested-by' => 'Solicitado por',
+ 'requests' => 'Solicitudes',
+ 'required' => 'Necesario',
+ 'reset' => 'Restablecer',
+ 'reset-confirmation' => 'Está seguro de que quere restablecer esta solicitude',
+ 'reset-request' => 'Restablecer esta solicitude',
+ 'reward' => 'Recompensa',
+ 'reward-desc' => '¿Canto lle gustaría premiar o punto de bonificación? Mínimo 100 BP',
+ 'reward-from' => 'De',
+ 'title' => 'Título',
+ 'torrent-hash' => 'Torrent Hash',
+ 'total-bounty' => 'Recompensa total',
+ 'type' => 'Escriba',
+ 'unclaim' => 'Solicitar esta solicitude',
+ 'unfilled' => 'Non cuberto',
+ 'view-filled' => 'Ver cuberto',
+ 'view-unfilled' => 'Ver sen cubrir',
+ 'vote' => 'Vota',
+ 'vote-that' => 'Vota esta solicitude',
+ 'voters' => 'Electores',
+ 'votes' => 'Votos',
+ 'yes' => 'Si',
];
diff --git a/lang/gl/rss.php b/lang/gl/rss.php
index ab4e011e0..a254976f1 100644
--- a/lang/gl/rss.php
+++ b/lang/gl/rss.php
@@ -12,19 +12,19 @@
*/
return [
- 'create' => 'Crear',
+ 'create' => 'Crear',
'create-private-feed' => 'Crear feed RSS privado',
- 'create-public-feed' => 'Crear fonte RSS pública',
- 'delete' => 'Eliminar',
- 'edit' => 'Editar',
- 'edit-private-feed' => 'Editar a alimentación RSS privada',
- 'edit-public-feed' => 'Editar o feed RSS público',
- 'feed' => 'Alimentación',
- 'feeds' => 'Fontes',
- 'name' => 'Nome',
- 'public' => 'Público',
- 'private' => 'Privado',
- 'rss' => 'RSS',
- 'rss-feed' => 'Feed RSS',
- 'type' => 'Escriba',
+ 'create-public-feed' => 'Crear fonte RSS pública',
+ 'delete' => 'Eliminar',
+ 'edit' => 'Editar',
+ 'edit-private-feed' => 'Editar a alimentación RSS privada',
+ 'edit-public-feed' => 'Editar o feed RSS público',
+ 'feed' => 'Alimentación',
+ 'feeds' => 'Fontes',
+ 'name' => 'Nome',
+ 'public' => 'Público',
+ 'private' => 'Privado',
+ 'rss' => 'RSS',
+ 'rss-feed' => 'Feed RSS',
+ 'type' => 'Escriba',
];
diff --git a/lang/gl/staff.php b/lang/gl/staff.php
index 9ffcec4d8..2f95e6ec4 100644
--- a/lang/gl/staff.php
+++ b/lang/gl/staff.php
@@ -12,48 +12,48 @@
*/
return [
- 'audit-log' => 'Rexistro de actividades',
- 'articles' => 'Artigos',
- 'applications' => 'Aplicacións',
- 'bans-log' => 'Rexistro de prohibicións',
- 'blocks' => 'Bloques',
- 'bot' => 'Bot',
- 'bots' => 'Bots',
- 'chat' => 'Chatear',
- 'config-manager' => 'Xestor de configuracións',
- 'dashboard' => 'Panel de control',
- 'failed-login-log' => 'Erro de inicio de sesión fallido',
- 'flush-ghost-peers' => 'Flush Ghost Peers',
- 'forums' => 'Foros',
- 'frontend' => 'Frontend',
- 'general-tools' => 'Ferramentas xerais',
- 'groups' => 'Grupos',
- 'invites-log' => 'Rexistro de invitacións',
- 'laravel-log' => 'Laravel Log',
- 'links' => 'Ligazóns',
- 'logs' => 'Rexistros',
- 'mass-pm' => 'Primeira Misa',
- 'mass-validate-users' => 'Valida en masa usuarios',
- 'moderation' => 'Moderación',
- 'pages' => 'Páxinas',
- 'please-moderate' => 'Por favor, modera este Torrent!',
- 'polls' => 'Enquisas',
- 'reports-log' => 'Rexistro de informes',
- 'rss' => 'RSS',
- 'staff-dashboard' => 'Cadro de persoal',
- 'torrent-categories' => 'Categorías de Torrent',
- 'torrent-moderation' => 'Moderación de Torrent',
- 'torrent-tools' => 'Ferramentas de Torrent',
- 'torrent-types' => 'Tipos de Torrent',
- 'torrents' => 'Torrents',
- 'user-gifting' => 'Regalo de usuario',
- 'user-notes' => 'Rexistro de notas do usuario',
- 'user-search' => 'Busca de usuarios',
- 'user-tools' => 'Ferramentas de usuario',
- 'warnings-log' => 'Rexistro de avisos',
- 'you-have' => 'Tes',
+ 'audit-log' => 'Rexistro de actividades',
+ 'articles' => 'Artigos',
+ 'applications' => 'Aplicacións',
+ 'bans-log' => 'Rexistro de prohibicións',
+ 'blocks' => 'Bloques',
+ 'bot' => 'Bot',
+ 'bots' => 'Bots',
+ 'chat' => 'Chatear',
+ 'config-manager' => 'Xestor de configuracións',
+ 'dashboard' => 'Panel de control',
+ 'failed-login-log' => 'Erro de inicio de sesión fallido',
+ 'flush-ghost-peers' => 'Flush Ghost Peers',
+ 'forums' => 'Foros',
+ 'frontend' => 'Frontend',
+ 'general-tools' => 'Ferramentas xerais',
+ 'groups' => 'Grupos',
+ 'invites-log' => 'Rexistro de invitacións',
+ 'laravel-log' => 'Laravel Log',
+ 'links' => 'Ligazóns',
+ 'logs' => 'Rexistros',
+ 'mass-pm' => 'Primeira Misa',
+ 'mass-validate-users' => 'Valida en masa usuarios',
+ 'moderation' => 'Moderación',
+ 'pages' => 'Páxinas',
+ 'please-moderate' => 'Por favor, modera este Torrent!',
+ 'polls' => 'Enquisas',
+ 'reports-log' => 'Rexistro de informes',
+ 'rss' => 'RSS',
+ 'staff-dashboard' => 'Cadro de persoal',
+ 'torrent-categories' => 'Categorías de Torrent',
+ 'torrent-moderation' => 'Moderación de Torrent',
+ 'torrent-tools' => 'Ferramentas de Torrent',
+ 'torrent-types' => 'Tipos de Torrent',
+ 'torrents' => 'Torrents',
+ 'user-gifting' => 'Regalo de usuario',
+ 'user-notes' => 'Rexistro de notas do usuario',
+ 'user-search' => 'Busca de usuarios',
+ 'user-tools' => 'Ferramentas de usuario',
+ 'warnings-log' => 'Rexistro de avisos',
+ 'you-have' => 'Tes',
'possible-leech-cheaters' => 'Posibles tramposos',
- 'chat-tools' => 'Ferramentas de chat',
- 'flush-chat' => 'Flush Chatbox',
- 'seedboxes' => 'Seedboxes rexistrados',
+ 'chat-tools' => 'Ferramentas de chat',
+ 'flush-chat' => 'Flush Chatbox',
+ 'seedboxes' => 'Seedboxes rexistrados',
];
diff --git a/lang/gl/stat.php b/lang/gl/stat.php
index 1726defd8..ee64896e2 100644
--- a/lang/gl/stat.php
+++ b/lang/gl/stat.php
@@ -12,40 +12,40 @@
*/
return [
- 'by-count' => 'Por conteo',
- 'by-data' => 'Por datos',
- 'by-volume' => 'Por volume',
- 'group' => 'Grupo',
- 'groups' => 'Grupos',
- 'nerd-stats' => 'Estatísticas do nerd',
- 'nerd-stats-desc' => 'Todos amamos as estatísticas. Velaquí algúns que consideramos importantes',
- 'registration-date' => 'Data de inscrición',
- 'request-fulfilled' => 'Solicitude cumprida',
- 'request-not-fulfilled' => 'Non se cumpriu a solicitude',
+ 'by-count' => 'Por conteo',
+ 'by-data' => 'Por datos',
+ 'by-volume' => 'Por volume',
+ 'group' => 'Grupo',
+ 'groups' => 'Grupos',
+ 'nerd-stats' => 'Estatísticas do nerd',
+ 'nerd-stats-desc' => 'Todos amamos as estatísticas. Velaquí algúns que consideramos importantes',
+ 'registration-date' => 'Data de inscrición',
+ 'request-fulfilled' => 'Solicitude cumprida',
+ 'request-not-fulfilled' => 'Non se cumpriu a solicitude',
'request-pending-aproval' => 'Solicitude pendente de aprobación',
- 'select-category' => 'Seleccione unha categoría a continuación',
- 'site-stats' => 'Estatísticas do sitio',
- 'stats' => 'Estatísticas',
- 'stats-format' => 'Amosadas todas as estatísticas no formato 100',
- 'top-bankers' => 'Mellores banqueiros',
- 'top-bountied' => 'Arriba retrocedido',
- 'top-completed' => 'Arriba completado',
- 'top-dead' => 'Top Dead',
- 'top-downloaded' => 'Arriba baixou Torrents',
- 'top-downloaders' => 'Top Downloaders',
- 'top-dying' => 'Top Dying',
- 'top-leeched' => 'Top sanguijuelas',
- 'top-leechers' => 'Top Leechers',
- 'top-seeded' => 'Top Seeded',
- 'top-seeding' => 'Sementeira superior',
- 'top-seeders' => 'Mellores sementes',
- 'top-seedsize' => 'Top Seedsize',
- 'top-seedtime' => 'Primeira Semana',
- 'top-uploaders' => 'Cargadores superiores',
- 'total-download' => 'Descarga total',
- 'total-torrents' => 'Total Torrents',
- 'total-traffic' => 'Tráfico total',
- 'total-upload' => 'Carga total',
- 'users-in-group' => 'Usuarios no grupo',
- 'users-per-group' => 'Usuarios por grupo',
+ 'select-category' => 'Seleccione unha categoría a continuación',
+ 'site-stats' => 'Estatísticas do sitio',
+ 'stats' => 'Estatísticas',
+ 'stats-format' => 'Amosadas todas as estatísticas no formato 100',
+ 'top-bankers' => 'Mellores banqueiros',
+ 'top-bountied' => 'Arriba retrocedido',
+ 'top-completed' => 'Arriba completado',
+ 'top-dead' => 'Top Dead',
+ 'top-downloaded' => 'Arriba baixou Torrents',
+ 'top-downloaders' => 'Top Downloaders',
+ 'top-dying' => 'Top Dying',
+ 'top-leeched' => 'Top sanguijuelas',
+ 'top-leechers' => 'Top Leechers',
+ 'top-seeded' => 'Top Seeded',
+ 'top-seeding' => 'Sementeira superior',
+ 'top-seeders' => 'Mellores sementes',
+ 'top-seedsize' => 'Top Seedsize',
+ 'top-seedtime' => 'Primeira Semana',
+ 'top-uploaders' => 'Cargadores superiores',
+ 'total-download' => 'Descarga total',
+ 'total-torrents' => 'Total Torrents',
+ 'total-traffic' => 'Tráfico total',
+ 'total-upload' => 'Carga total',
+ 'users-in-group' => 'Usuarios no grupo',
+ 'users-per-group' => 'Usuarios por grupo',
];
diff --git a/lang/gl/torrent.php b/lang/gl/torrent.php
index b48af27eb..87f0b8d74 100644
--- a/lang/gl/torrent.php
+++ b/lang/gl/torrent.php
@@ -12,197 +12,197 @@
*/
return [
- 'activity' => 'Actividade',
- 'age' => 'Idade',
- 'agent' => 'Axente',
- 'alive' => 'Vivo',
- 'announce-url' => 'Anunciar URL',
- 'announce-url-desc' => 'Use o URL de anuncio anterior cando cree un novo torrent. Se queres usar o teu torrent sen descargalo desde o sitio, cómpre que estableza a bandeira privada e a fonte: source',
- 'announce-url-desc-url' => 'Tendo problemas? Vexa a nosa guía AQUÍ',
- 'announce-url-desc2' => 'TMDB e IMDB son necesarios para todas as subidas. Utilízase para capturar carteis / fondos e extrainfo',
- 'approved' => 'Aprobado',
- 'audio' => 'Audio',
- 'bon-tipped' => 'BON Tipped',
- 'bookmark' => 'Marcar',
- 'bookmarks' => 'Marcadores',
- 'bump' => 'Bump',
- 'cant-upload' => 'Erro: os teus dereitos de carga están desactivados',
- 'cant-upload-desc' => 'Se pensas que isto está en erro, contacta co persoal',
- 'cards' => 'Tarxetas',
- 'cards-view' => 'Vista de tarxetas de Torrent',
- 'categories' => 'Categorías',
- 'category' => 'Categoría',
- 'client' => 'Clienta',
- 'commited' => 'Comprometido',
- 'completed' => 'Completado',
- 'completed_at' => 'Completado en',
- 'completed-not-seeding' => 'Completou esta descarga pero non a sementes',
- 'created_at' => 'Creado en',
- 'credited' => 'Acreditado',
- 'current' => 'Actual',
- 'current-filters' => 'Filtros actuais',
- 'currently-leeching' => 'Actualmente Leeching',
- 'currently-seeding' => 'Sementeira actualmente',
- 'dead-torrent' => 'Torrent morto',
- 'dead-torrents' => 'Dead Torrents',
- 'delete-bookmark' => 'Eliminar este marcador',
- 'description' => 'Descrición',
- 'discounts' => 'Descontos',
- 'double-upload' => 'Cargar dúas veces',
- 'download-all' => 'Descarga todo',
- 'download-check' => 'Descargar comprobación',
- 'downloaded' => 'Descargado',
- 'dying-torrent' => 'Torrent de morrer',
- 'dying-torrents' => 'Torrents que morren',
- 'encode-settings' => 'Codificar configuración',
- 'estimated-ratio' => 'Proporción estimada despois da descarga',
- 'failed' => 'Fallou',
- 'feature' => 'Característica',
- 'featured' => 'Destacado',
- 'featured-desc' => 'Os torrentes destacados son 100% gratuíto e Cargar dúas veces!',
- 'featured-until' => 'Este é un Torrent destacado',
- 'file' => 'Ficheiro',
- 'filters' => 'Filtros',
- 'fl-tokens-left' => 'Tes : quedan fichas',
- 'freeleech' => 'Freeleech',
- 'freeleech-token' => 'Tito Freeleech',
- 'general' => 'Xeral',
- 'genre' => 'Xénero',
- 'global-double-upload' => 'Carga dobre global',
- 'global-freeleech' => 'Freeleech global',
- 'grant' => 'Subvención',
- 'greater-than' => 'Máis grande cá',
- 'grouping' => 'Agrupación',
- 'groupings' => 'Agrupacións',
- 'grouping-categories' => 'Agrupar categorías',
+ 'activity' => 'Actividade',
+ 'age' => 'Idade',
+ 'agent' => 'Axente',
+ 'alive' => 'Vivo',
+ 'announce-url' => 'Anunciar URL',
+ 'announce-url-desc' => 'Use o URL de anuncio anterior cando cree un novo torrent. Se queres usar o teu torrent sen descargalo desde o sitio, cómpre que estableza a bandeira privada e a fonte: source',
+ 'announce-url-desc-url' => 'Tendo problemas? Vexa a nosa guía AQUÍ',
+ 'announce-url-desc2' => 'TMDB e IMDB son necesarios para todas as subidas. Utilízase para capturar carteis / fondos e extrainfo',
+ 'approved' => 'Aprobado',
+ 'audio' => 'Audio',
+ 'bon-tipped' => 'BON Tipped',
+ 'bookmark' => 'Marcar',
+ 'bookmarks' => 'Marcadores',
+ 'bump' => 'Bump',
+ 'cant-upload' => 'Erro: os teus dereitos de carga están desactivados',
+ 'cant-upload-desc' => 'Se pensas que isto está en erro, contacta co persoal',
+ 'cards' => 'Tarxetas',
+ 'cards-view' => 'Vista de tarxetas de Torrent',
+ 'categories' => 'Categorías',
+ 'category' => 'Categoría',
+ 'client' => 'Clienta',
+ 'commited' => 'Comprometido',
+ 'completed' => 'Completado',
+ 'completed_at' => 'Completado en',
+ 'completed-not-seeding' => 'Completou esta descarga pero non a sementes',
+ 'created_at' => 'Creado en',
+ 'credited' => 'Acreditado',
+ 'current' => 'Actual',
+ 'current-filters' => 'Filtros actuais',
+ 'currently-leeching' => 'Actualmente Leeching',
+ 'currently-seeding' => 'Sementeira actualmente',
+ 'dead-torrent' => 'Torrent morto',
+ 'dead-torrents' => 'Dead Torrents',
+ 'delete-bookmark' => 'Eliminar este marcador',
+ 'description' => 'Descrición',
+ 'discounts' => 'Descontos',
+ 'double-upload' => 'Cargar dúas veces',
+ 'download-all' => 'Descarga todo',
+ 'download-check' => 'Descargar comprobación',
+ 'downloaded' => 'Descargado',
+ 'dying-torrent' => 'Torrent de morrer',
+ 'dying-torrents' => 'Torrents que morren',
+ 'encode-settings' => 'Codificar configuración',
+ 'estimated-ratio' => 'Proporción estimada despois da descarga',
+ 'failed' => 'Fallou',
+ 'feature' => 'Característica',
+ 'featured' => 'Destacado',
+ 'featured-desc' => 'Os torrentes destacados son 100% gratuíto e Cargar dúas veces!',
+ 'featured-until' => 'Este é un Torrent destacado',
+ 'file' => 'Ficheiro',
+ 'filters' => 'Filtros',
+ 'fl-tokens-left' => 'Tes : quedan fichas',
+ 'freeleech' => 'Freeleech',
+ 'freeleech-token' => 'Tito Freeleech',
+ 'general' => 'Xeral',
+ 'genre' => 'Xénero',
+ 'global-double-upload' => 'Carga dobre global',
+ 'global-freeleech' => 'Freeleech global',
+ 'grant' => 'Subvención',
+ 'greater-than' => 'Máis grande cá',
+ 'grouping' => 'Agrupación',
+ 'groupings' => 'Agrupacións',
+ 'grouping-categories' => 'Agrupar categorías',
'grouping-categories-desc' => 'Que categoría desexas agrupar?',
- 'grouping-results' => 'Agrupar resultados',
- 'groupings-view' => 'Vista de agrupacións',
- 'have-completed' => 'Completado',
- 'have-downloaded' => 'Descargado',
- 'have-not-completed' => 'Non completado',
- 'have-not-downloaded' => 'Non descargado',
- 'health' => 'Saúde',
- 'history' => 'Historia',
- 'hitrun' => 'H&R?',
- 'hit-and-runs' => 'Golpear e executar conta',
- 'immune' => 'Inmune?',
- 'info' => 'Información',
- 'internal' => 'Interno',
- 'internal-release' => 'Liberación interna',
- 'last-seed-activity' => 'Última actividade das sementes',
- 'last-seeder' => 'Vostede é a última sementeira! (foi descargado polo menos 3 veces)',
- 'last-update' => 'Última actualización',
- 'leave-tip' => 'Deixe a punta',
- 'leecher' => 'Leecher',
- 'leechers' => 'Leechers',
- 'leeching' => 'Leeching',
- 'left' => 'Esquerda',
- 'legendary-seeder' => 'Sembradora lendaria',
- 'legendary-torrent' => 'Torrent lendario',
- 'list' => 'Lista',
- 'me' => 'Eu',
- 'media-info' => 'MediaInfo',
- 'media-info-parser' => 'Analizador de MediaInfo',
- 'media-info-paste' => 'Pegar o volcado de MediaInfo aquí',
- 'meta-desc' => 'Descarga: nome á velocidade máxima',
- 'moderation' => 'Moderación',
- 'movies' => 'Películas',
- 'mvp' => 'MVP',
- 'my-active-torrents' => 'Os meus torrentes activos',
- 'name' => 'Nome',
- 'no-bookmarks' => 'Non se atoparon marcadores.',
- 'no-discounts' => 'Actualmente non hai descontos',
- 'no-meta' => 'Non se atoparon metadatos',
- 'no-privileges' => 'Non podes descargar este ficheiro: comproba a continuación para máis información',
- 'no-privileges-desc' => 'Resolve os resultados fallados anteriores para que apareza o botón de descarga',
- 'not-completed' => 'Comezou a descargar pero nunca rematada',
- 'not-downloaded' => 'Non descargado',
- 'old-torrent' => 'Antigo torrente',
- 'optional' => 'Opcional',
- 'original-output' => 'Mostrar / Ocultar a saída orixinal',
- 'participant' => 'Participante',
- 'passed' => 'Pasado',
- 'peers' => 'Pares',
- 'pending' => 'Pendente',
- 'personal-freeleech' => 'Freeleech persoal',
- 'poster' => 'Cartel',
- 'poster-view' => 'Vista do cartel',
- 'posters' => 'Pósters',
- 'prewarn' => 'Anunciado?',
- 'progress' => 'Progreso',
- 'quick-comment' => 'Comentario rápido',
- 'quick-tip' => 'Cantidades rápidas de consellos',
- 'rated' => 'Calificado',
- 'rating' => 'Valoración',
- 'ready' => 'Este ficheiro está listo para descargar',
- 'rejected' => 'Rexeitado',
- 'released' => 'Lanzado',
- 'remaining' => 'Restante',
- 'request-reseed' => 'Solicitude de solicitude',
- 'requires-reseed' => 'Requírese a realización',
- 'resurrections' => 'Resurreccións',
- 'revoke' => 'Revocar',
- 'rss' => 'RSS',
- 'runtime' => 'Runtime',
- 'satisfied_in' => 'Satisfeito',
- 'say-thanks' => 'Non esqueza dicir grazas e sementes durante o tempo que poida',
- 'sd-content' => 'Contido SD',
- 'search' => 'Buscar',
- 'seed-time' => 'Tempo de semente',
- 'seeder' => 'Sementeira',
- 'seeders' => 'Sementes',
- 'seeding' => 'Sementeira',
- 'seedsize' => 'Seedsize',
- 'seedtime' => 'Tempo de semente',
- 'short-completed' => 'C',
- 'short-leechs' => 'L',
- 'short-seeds' => 'S',
- 'show-files' => 'Amosar ficheiros',
- 'similar' => 'Torrents similares',
- 'size' => 'Tamaño',
- 'special' => 'Especial',
- 'special-freeleech' => 'Freeleech especial',
- 'started' => 'Iniciado',
- 'status' => 'Estado',
- 'statistics' => 'Estatísticas',
- 'stats' => 'Estatísticas',
- 'sticky' => 'Pegajoso',
- 'stream-optimized' => 'Fluxo optimizado',
- 'subtitle' => 'Subtítulo',
- 'team-player' => 'Xogador de equipo',
- 'thank' => 'Grazas',
- 'thanked' => 'Agradecido',
- 'thanks' => 'Grazas',
- 'thanks-given' => 'Grazas',
- 'times' => 'Veces',
- 'tip-jar' => 'Bote de punta',
- 'title' => 'Título',
- 'titles' => 'Títulos',
- 'top-completed' => 'Completouse a parte superior',
- 'top-dead' => 'Top mortos',
- 'top-dying' => 'Morrer de arriba',
- 'top-leeched' => 'Arriba sanguijuelas',
- 'top-seeded' => 'Sementes superiores',
- 'torrent' => 'Torrent',
- 'torrent-request' => 'Solicitude de Torrent',
- 'torrent-tips' => 'En Total : o BON total foi enviado ao usuario que o cargou, do cal : o usuario é de ti',
- 'torrent-tips-desc' => 'Isto descontarase dos puntos de bonos dispoñibles',
- 'torrents' => 'Torrents',
- 'trailer' => 'Ver o trailer',
- 'type' => 'Escriba',
- 'types' => 'Tipos',
- 'unbookmark' => 'Marcar a marca',
- 'unsatisfieds' => 'Non satisfeitos',
- 'unsticky' => 'Unsticky',
- 'updated' => 'Actualizado',
- 'updated_at' => 'Actualizado en',
- 'uploaded' => 'Cargado',
- 'uploaded-by' => 'Cargado por',
- 'uploader' => 'Cargador',
- 'use-fl-token' => 'Usa un token Freeleech',
- 'video' => 'Vídeo',
- 'view-more' => 'Ver máis',
- 'view-trailer' => 'Ver o trailer',
- 'votes' => 'Votos',
+ 'grouping-results' => 'Agrupar resultados',
+ 'groupings-view' => 'Vista de agrupacións',
+ 'have-completed' => 'Completado',
+ 'have-downloaded' => 'Descargado',
+ 'have-not-completed' => 'Non completado',
+ 'have-not-downloaded' => 'Non descargado',
+ 'health' => 'Saúde',
+ 'history' => 'Historia',
+ 'hitrun' => 'H&R?',
+ 'hit-and-runs' => 'Golpear e executar conta',
+ 'immune' => 'Inmune?',
+ 'info' => 'Información',
+ 'internal' => 'Interno',
+ 'internal-release' => 'Liberación interna',
+ 'last-seed-activity' => 'Última actividade das sementes',
+ 'last-seeder' => 'Vostede é a última sementeira! (foi descargado polo menos 3 veces)',
+ 'last-update' => 'Última actualización',
+ 'leave-tip' => 'Deixe a punta',
+ 'leecher' => 'Leecher',
+ 'leechers' => 'Leechers',
+ 'leeching' => 'Leeching',
+ 'left' => 'Esquerda',
+ 'legendary-seeder' => 'Sembradora lendaria',
+ 'legendary-torrent' => 'Torrent lendario',
+ 'list' => 'Lista',
+ 'me' => 'Eu',
+ 'media-info' => 'MediaInfo',
+ 'media-info-parser' => 'Analizador de MediaInfo',
+ 'media-info-paste' => 'Pegar o volcado de MediaInfo aquí',
+ 'meta-desc' => 'Descarga: nome á velocidade máxima',
+ 'moderation' => 'Moderación',
+ 'movies' => 'Películas',
+ 'mvp' => 'MVP',
+ 'my-active-torrents' => 'Os meus torrentes activos',
+ 'name' => 'Nome',
+ 'no-bookmarks' => 'Non se atoparon marcadores.',
+ 'no-discounts' => 'Actualmente non hai descontos',
+ 'no-meta' => 'Non se atoparon metadatos',
+ 'no-privileges' => 'Non podes descargar este ficheiro: comproba a continuación para máis información',
+ 'no-privileges-desc' => 'Resolve os resultados fallados anteriores para que apareza o botón de descarga',
+ 'not-completed' => 'Comezou a descargar pero nunca rematada',
+ 'not-downloaded' => 'Non descargado',
+ 'old-torrent' => 'Antigo torrente',
+ 'optional' => 'Opcional',
+ 'original-output' => 'Mostrar / Ocultar a saída orixinal',
+ 'participant' => 'Participante',
+ 'passed' => 'Pasado',
+ 'peers' => 'Pares',
+ 'pending' => 'Pendente',
+ 'personal-freeleech' => 'Freeleech persoal',
+ 'poster' => 'Cartel',
+ 'poster-view' => 'Vista do cartel',
+ 'posters' => 'Pósters',
+ 'prewarn' => 'Anunciado?',
+ 'progress' => 'Progreso',
+ 'quick-comment' => 'Comentario rápido',
+ 'quick-tip' => 'Cantidades rápidas de consellos',
+ 'rated' => 'Calificado',
+ 'rating' => 'Valoración',
+ 'ready' => 'Este ficheiro está listo para descargar',
+ 'rejected' => 'Rexeitado',
+ 'released' => 'Lanzado',
+ 'remaining' => 'Restante',
+ 'request-reseed' => 'Solicitude de solicitude',
+ 'requires-reseed' => 'Requírese a realización',
+ 'resurrections' => 'Resurreccións',
+ 'revoke' => 'Revocar',
+ 'rss' => 'RSS',
+ 'runtime' => 'Runtime',
+ 'satisfied_in' => 'Satisfeito',
+ 'say-thanks' => 'Non esqueza dicir grazas e sementes durante o tempo que poida',
+ 'sd-content' => 'Contido SD',
+ 'search' => 'Buscar',
+ 'seed-time' => 'Tempo de semente',
+ 'seeder' => 'Sementeira',
+ 'seeders' => 'Sementes',
+ 'seeding' => 'Sementeira',
+ 'seedsize' => 'Seedsize',
+ 'seedtime' => 'Tempo de semente',
+ 'short-completed' => 'C',
+ 'short-leechs' => 'L',
+ 'short-seeds' => 'S',
+ 'show-files' => 'Amosar ficheiros',
+ 'similar' => 'Torrents similares',
+ 'size' => 'Tamaño',
+ 'special' => 'Especial',
+ 'special-freeleech' => 'Freeleech especial',
+ 'started' => 'Iniciado',
+ 'status' => 'Estado',
+ 'statistics' => 'Estatísticas',
+ 'stats' => 'Estatísticas',
+ 'sticky' => 'Pegajoso',
+ 'stream-optimized' => 'Fluxo optimizado',
+ 'subtitle' => 'Subtítulo',
+ 'team-player' => 'Xogador de equipo',
+ 'thank' => 'Grazas',
+ 'thanked' => 'Agradecido',
+ 'thanks' => 'Grazas',
+ 'thanks-given' => 'Grazas',
+ 'times' => 'Veces',
+ 'tip-jar' => 'Bote de punta',
+ 'title' => 'Título',
+ 'titles' => 'Títulos',
+ 'top-completed' => 'Completouse a parte superior',
+ 'top-dead' => 'Top mortos',
+ 'top-dying' => 'Morrer de arriba',
+ 'top-leeched' => 'Arriba sanguijuelas',
+ 'top-seeded' => 'Sementes superiores',
+ 'torrent' => 'Torrent',
+ 'torrent-request' => 'Solicitude de Torrent',
+ 'torrent-tips' => 'En Total : o BON total foi enviado ao usuario que o cargou, do cal : o usuario é de ti',
+ 'torrent-tips-desc' => 'Isto descontarase dos puntos de bonos dispoñibles',
+ 'torrents' => 'Torrents',
+ 'trailer' => 'Ver o trailer',
+ 'type' => 'Escriba',
+ 'types' => 'Tipos',
+ 'unbookmark' => 'Marcar a marca',
+ 'unsatisfieds' => 'Non satisfeitos',
+ 'unsticky' => 'Unsticky',
+ 'updated' => 'Actualizado',
+ 'updated_at' => 'Actualizado en',
+ 'uploaded' => 'Cargado',
+ 'uploaded-by' => 'Cargado por',
+ 'uploader' => 'Cargador',
+ 'use-fl-token' => 'Usa un token Freeleech',
+ 'video' => 'Vídeo',
+ 'view-more' => 'Ver máis',
+ 'view-trailer' => 'Ver o trailer',
+ 'votes' => 'Votos',
];
diff --git a/lang/gl/user.php b/lang/gl/user.php
index 6f7177d40..73df330b2 100644
--- a/lang/gl/user.php
+++ b/lang/gl/user.php
@@ -12,316 +12,316 @@
*/
return [
- 'about' => 'Acerca de',
- 'about-me' => 'Sobre min',
- 'accepted-at' => 'Aceptado en',
- 'accepted-by' => 'Aceptado por',
- 'account-notification' => 'Configuración de notificación de conta',
- 'account-notification-follow' => 'Recibe unha notificación cando un usuario segue a túa conta',
- 'account-notification-unfollow' => 'Recibe unha notificación cando un usuario non realiza a túa conta',
- 'account-notification-help' => 'Controla as notificacións que se envían respecto da túa conta. Estes parámetros están substituídos se non permite que ningún grupo envíe notificacións sobre a súa conta ou se deshabilita as notificacións',
- 'account-settings' => 'Axustes da conta',
- 'achievement-privacy' => 'Configuración do logro',
- 'achievement-privacy-list' => 'Permitir aos usuarios ver unha lista dos seus logros',
- 'achievement-help' => 'Controla a compartición de información relacionada coa realización específica con grupos aos que se lle permite acceder ao teu perfil. Esta configuración é substituída se non permite que ningún grupo acceda ás súas realizacións ou se vai privado',
- 'achievements' => 'Logros',
- 'active' => 'Activo',
- 'active-table' => 'A miña táboa activa',
- 'active-torrents' => 'Torrents activos',
- 'active-warning' => 'Aviso activo',
- 'active-warnings' => 'Avisos activos',
- 'add-seedbox' => 'Engade Seedbox',
- 'all-torrents' => 'Todos os Torrents',
- 'article-comments' => 'Comentarios do artigo feitos',
- 'avatar' => 'Avatar',
- 'avg-seedtime' => 'Tempo medio de sementeira',
- 'badges' => 'Insignias',
- 'ban' => 'Prohibición de usuario',
- 'ban-log' => 'Ban Log',
- 'become-hidden' => 'Tornouse oculto',
- 'become-visible' => 'Tornouse visíbel',
- 'bon' => 'BON',
- 'bon-notification' => 'Configuración de notificación BON',
- 'bon-notification-gift' => 'Recibir unha notificación cando un usuario faino',
- 'bon-notification-help' => 'Controlar as notificacións que se envían sobre as transaccións de BON. Estes parámetros están substituídos se non permite que ningún grupo envíe notificacións sobre BON ou se deshabilita as notificacións',
- 'bookmarks' => 'Marcadores',
- 'bounty-given' => 'Bounty Given',
- 'bounty-received' => 'Recompensa recibida',
- 'can-chat' => 'Pode chatear',
- 'can-comment' => 'Pode comentar',
- 'can-download' => 'Pode descargar',
- 'can-invite' => 'Pode invitar',
- 'can-request' => 'Solicitude de Can',
- 'can-upload' => 'Pode subir',
- 'certified-banker' => 'Banqueiro certificado',
- 'certified-banker-desc' => 'Ten 50.000 ou máis BON In Bank',
- 'certified-downloader' => 'Descarga certificada',
- 'certified-downloader-desc' => 'Descargados 100 ou máis Torrents!',
- 'certified-seeder' => 'Sementeira certificada',
- 'certified-seeder-desc' => 'Sementando 150 ou máis Torrents!',
- 'change-email' => 'Cambiar o correo electrónico',
- 'change-email-help' => 'Terá que confirmar de novo a súa conta despois de cambiar o seu correo electrónico',
- 'change-password' => 'Cambie o contrasinal',
- 'change-password-help' => 'Terás que rexistrarte de novo despois de cambiar o teu contrasinal',
- 'client-ip-address' => 'Enderezo IP do cliente',
- 'code' => 'Código',
- 'comments' => 'Comentarios',
- 'created-on' => 'Creado en',
- 'credited-download' => 'Descarga acreditada',
- 'credited-upload' => 'Envío acreditado',
- 'current-password' => 'Contrasinal actual',
- 'custom-title' => 'Título personalizado',
- 'delete' => 'Eliminar usuario',
- 'disable-notifications' => 'Deshabilitar notificacións',
- 'disclaimer' => 'Renuncia',
- 'disclaimer-info' => 'Por defecto, non rexistramos enderezos IP de usuarios como a maioría dos seguidores. Ao engadir o seu seedbox IP a continuación, espérase que os seus IP listados a continuación estean almacenados na nosa base de datos a menos que elimine os rexistros.',
- 'disclaimer-info-bordered' => 'As IP de Seedbox engadidas desencadearán a etiqueta de torrent de alta velocidade nos torrents producidos en IP listados a continuación',
- 'download-bon' => 'Descarga eliminada da tenda BON',
- 'download-recorded' => 'Descarga gravada',
- 'download-true' => 'Descarga verdadeira',
- 'downloads' => 'Descargas',
- 'edit' => 'Editar usuario',
- 'edit-profile' => 'Editar perfil',
- 'enable-notifications' => 'Activar notificacións',
- 'expired' => 'Caducado',
- 'expires-on' => 'Caduca',
- 'extra' => 'Extra',
- 'filled-request' => 'Solicitudes de membros cubertos',
- 'follow' => 'Siga',
- 'follower-privacy' => 'Configuración do seguidor',
- 'follower-privacy-list' => 'Permite aos usuarios ver unha lista dos teus seguidores',
- 'follower-help' => 'Controla a compartición de información relacionada co seguidor específico con grupos aos que se lle permite acceder ao teu perfil. Esta configuración é substituída se non permite que ningún grupo acceda aos seus seguidores ou se vai privado',
- 'followers' => 'Seguidores',
- 'following-notification' => 'Configuración de notificación de usuario seguida',
- 'following-notification-upload' => 'Recibe unha notificación cando un usuario seguido carga un torrent',
- 'following-notification-help' => 'Controlar as notificacións que se envían sobre as accións seguidas do sitio web do usuario. Estes parámetros están substituídos se non permite que ningún grupo envíe notificacións sobre usuarios seguidos ou se deshabilita as notificacións',
- 'formats-are-supported' => ': os formatos son compatibles',
- 'forum-notification' => 'Configuración de notificación do foro',
- 'forum-notification-topic' => 'Reciba unha notificación cando un tema que iniciou recibe unha nova publicación',
- 'forum-notification-help' => 'Controlar as notificacións que se envían sobre as actividades do foro. Estes parámetros están substituídos se non permite que ningún grupo envíe notificacións sobre actividades do foro ou se deshabilita as notificacións',
- 'forum-privacy' => 'Configuración do foro',
- 'forum-privacy-post' => 'Permitir aos usuarios ver unha lista de mensaxes do foro que publicaches',
- 'forum-privacy-topic' => 'Permitir aos usuarios ver unha lista de temas do foro que comezaches',
- 'forum-help' => 'Controlar a compartición de estatísticas e información específicas relacionadas co foro con grupos que teñen acceso ao seu perfil. Estes parámetros están substituídos se non permite que ningún grupo acceda á súa información e estatísticas relacionadas co foro ou se vai privado',
- 'forum-signature' => 'Firma do foro',
- 'forums' => 'Foros',
- 'general' => 'Xeral',
- 'general-settings' => 'Configuración xeral',
- 'gift-given' => 'Regalo dado',
- 'gift-received' => 'Agasallo recibido',
- 'go-public' => 'Ir público',
- 'go-private' => 'Ir privado',
- 'history' => 'Historia',
- 'history-table' => 'Táboa do meu historial',
- 'hit-n-runs' => 'Bate e corre',
- 'hit-n-runs-count' => 'Conta de golpe e execución (todo o tempo)',
- 'hit-n-runs-history' => 'Torrent Hit and Runs History',
- 'image' => 'Imaxe',
- 'important' => 'Importante',
- 'important-info' => 'Información importante',
- 'information' => 'Información',
- 'invite-friend' => 'Invita o teu amigo (correo electrónico + mensaxe necesaria)',
- 'invite-tree' => 'Invitar á árbore',
- 'invites' => 'Invitacións',
- 'invites-banned' => 'Erro: os seus dereitos de invitación foron desactivados',
- 'invites-banned-desc' => 'Se se sente isto é un erro, póñase en contacto co persoal!',
- 'invites-count' => 'Ten: conta contas de invitación',
- 'invites-disabled' => 'Atención: As invitacións están desactivadas debido ao rexistro aberto!',
- 'invites-disabled-desc' => 'Comproba de novo en breve!',
- 'invites-rules' => '- Invita só ás persoas que coñeces e confías.
- Serás responsable persoalmente dos que invitas.
- Non invítense a nós mesmos, revisamos cada usuario convidado.
- Non comerciais nin vendes invitacións.
- Se unha persoa convidada é capturada por trampas, negociación de conta ou venda / negociación de invitacións, será avisado.
',
- 'invites-send' => 'Enviar invitacións',
- 'last-login' => 'Último inicio de sesión',
- 'locked' => 'Bloqueado',
- 'locked-achievements' => 'Logros bloqueados',
- 'member-since' => 'Membro desde',
- 'members-desc' => 'Lista de usuarios rexistrados en: title con todos os grupos. Atopar un usuario agora.',
- 'mention-notification' => '@Mention Settings Settings',
+ 'about' => 'Acerca de',
+ 'about-me' => 'Sobre min',
+ 'accepted-at' => 'Aceptado en',
+ 'accepted-by' => 'Aceptado por',
+ 'account-notification' => 'Configuración de notificación de conta',
+ 'account-notification-follow' => 'Recibe unha notificación cando un usuario segue a túa conta',
+ 'account-notification-unfollow' => 'Recibe unha notificación cando un usuario non realiza a túa conta',
+ 'account-notification-help' => 'Controla as notificacións que se envían respecto da túa conta. Estes parámetros están substituídos se non permite que ningún grupo envíe notificacións sobre a súa conta ou se deshabilita as notificacións',
+ 'account-settings' => 'Axustes da conta',
+ 'achievement-privacy' => 'Configuración do logro',
+ 'achievement-privacy-list' => 'Permitir aos usuarios ver unha lista dos seus logros',
+ 'achievement-help' => 'Controla a compartición de información relacionada coa realización específica con grupos aos que se lle permite acceder ao teu perfil. Esta configuración é substituída se non permite que ningún grupo acceda ás súas realizacións ou se vai privado',
+ 'achievements' => 'Logros',
+ 'active' => 'Activo',
+ 'active-table' => 'A miña táboa activa',
+ 'active-torrents' => 'Torrents activos',
+ 'active-warning' => 'Aviso activo',
+ 'active-warnings' => 'Avisos activos',
+ 'add-seedbox' => 'Engade Seedbox',
+ 'all-torrents' => 'Todos os Torrents',
+ 'article-comments' => 'Comentarios do artigo feitos',
+ 'avatar' => 'Avatar',
+ 'avg-seedtime' => 'Tempo medio de sementeira',
+ 'badges' => 'Insignias',
+ 'ban' => 'Prohibición de usuario',
+ 'ban-log' => 'Ban Log',
+ 'become-hidden' => 'Tornouse oculto',
+ 'become-visible' => 'Tornouse visíbel',
+ 'bon' => 'BON',
+ 'bon-notification' => 'Configuración de notificación BON',
+ 'bon-notification-gift' => 'Recibir unha notificación cando un usuario faino',
+ 'bon-notification-help' => 'Controlar as notificacións que se envían sobre as transaccións de BON. Estes parámetros están substituídos se non permite que ningún grupo envíe notificacións sobre BON ou se deshabilita as notificacións',
+ 'bookmarks' => 'Marcadores',
+ 'bounty-given' => 'Bounty Given',
+ 'bounty-received' => 'Recompensa recibida',
+ 'can-chat' => 'Pode chatear',
+ 'can-comment' => 'Pode comentar',
+ 'can-download' => 'Pode descargar',
+ 'can-invite' => 'Pode invitar',
+ 'can-request' => 'Solicitude de Can',
+ 'can-upload' => 'Pode subir',
+ 'certified-banker' => 'Banqueiro certificado',
+ 'certified-banker-desc' => 'Ten 50.000 ou máis BON In Bank',
+ 'certified-downloader' => 'Descarga certificada',
+ 'certified-downloader-desc' => 'Descargados 100 ou máis Torrents!',
+ 'certified-seeder' => 'Sementeira certificada',
+ 'certified-seeder-desc' => 'Sementando 150 ou máis Torrents!',
+ 'change-email' => 'Cambiar o correo electrónico',
+ 'change-email-help' => 'Terá que confirmar de novo a súa conta despois de cambiar o seu correo electrónico',
+ 'change-password' => 'Cambie o contrasinal',
+ 'change-password-help' => 'Terás que rexistrarte de novo despois de cambiar o teu contrasinal',
+ 'client-ip-address' => 'Enderezo IP do cliente',
+ 'code' => 'Código',
+ 'comments' => 'Comentarios',
+ 'created-on' => 'Creado en',
+ 'credited-download' => 'Descarga acreditada',
+ 'credited-upload' => 'Envío acreditado',
+ 'current-password' => 'Contrasinal actual',
+ 'custom-title' => 'Título personalizado',
+ 'delete' => 'Eliminar usuario',
+ 'disable-notifications' => 'Deshabilitar notificacións',
+ 'disclaimer' => 'Renuncia',
+ 'disclaimer-info' => 'Por defecto, non rexistramos enderezos IP de usuarios como a maioría dos seguidores. Ao engadir o seu seedbox IP a continuación, espérase que os seus IP listados a continuación estean almacenados na nosa base de datos a menos que elimine os rexistros.',
+ 'disclaimer-info-bordered' => 'As IP de Seedbox engadidas desencadearán a etiqueta de torrent de alta velocidade nos torrents producidos en IP listados a continuación',
+ 'download-bon' => 'Descarga eliminada da tenda BON',
+ 'download-recorded' => 'Descarga gravada',
+ 'download-true' => 'Descarga verdadeira',
+ 'downloads' => 'Descargas',
+ 'edit' => 'Editar usuario',
+ 'edit-profile' => 'Editar perfil',
+ 'enable-notifications' => 'Activar notificacións',
+ 'expired' => 'Caducado',
+ 'expires-on' => 'Caduca',
+ 'extra' => 'Extra',
+ 'filled-request' => 'Solicitudes de membros cubertos',
+ 'follow' => 'Siga',
+ 'follower-privacy' => 'Configuración do seguidor',
+ 'follower-privacy-list' => 'Permite aos usuarios ver unha lista dos teus seguidores',
+ 'follower-help' => 'Controla a compartición de información relacionada co seguidor específico con grupos aos que se lle permite acceder ao teu perfil. Esta configuración é substituída se non permite que ningún grupo acceda aos seus seguidores ou se vai privado',
+ 'followers' => 'Seguidores',
+ 'following-notification' => 'Configuración de notificación de usuario seguida',
+ 'following-notification-upload' => 'Recibe unha notificación cando un usuario seguido carga un torrent',
+ 'following-notification-help' => 'Controlar as notificacións que se envían sobre as accións seguidas do sitio web do usuario. Estes parámetros están substituídos se non permite que ningún grupo envíe notificacións sobre usuarios seguidos ou se deshabilita as notificacións',
+ 'formats-are-supported' => ': os formatos son compatibles',
+ 'forum-notification' => 'Configuración de notificación do foro',
+ 'forum-notification-topic' => 'Reciba unha notificación cando un tema que iniciou recibe unha nova publicación',
+ 'forum-notification-help' => 'Controlar as notificacións que se envían sobre as actividades do foro. Estes parámetros están substituídos se non permite que ningún grupo envíe notificacións sobre actividades do foro ou se deshabilita as notificacións',
+ 'forum-privacy' => 'Configuración do foro',
+ 'forum-privacy-post' => 'Permitir aos usuarios ver unha lista de mensaxes do foro que publicaches',
+ 'forum-privacy-topic' => 'Permitir aos usuarios ver unha lista de temas do foro que comezaches',
+ 'forum-help' => 'Controlar a compartición de estatísticas e información específicas relacionadas co foro con grupos que teñen acceso ao seu perfil. Estes parámetros están substituídos se non permite que ningún grupo acceda á súa información e estatísticas relacionadas co foro ou se vai privado',
+ 'forum-signature' => 'Firma do foro',
+ 'forums' => 'Foros',
+ 'general' => 'Xeral',
+ 'general-settings' => 'Configuración xeral',
+ 'gift-given' => 'Regalo dado',
+ 'gift-received' => 'Agasallo recibido',
+ 'go-public' => 'Ir público',
+ 'go-private' => 'Ir privado',
+ 'history' => 'Historia',
+ 'history-table' => 'Táboa do meu historial',
+ 'hit-n-runs' => 'Bate e corre',
+ 'hit-n-runs-count' => 'Conta de golpe e execución (todo o tempo)',
+ 'hit-n-runs-history' => 'Torrent Hit and Runs History',
+ 'image' => 'Imaxe',
+ 'important' => 'Importante',
+ 'important-info' => 'Información importante',
+ 'information' => 'Información',
+ 'invite-friend' => 'Invita o teu amigo (correo electrónico + mensaxe necesaria)',
+ 'invite-tree' => 'Invitar á árbore',
+ 'invites' => 'Invitacións',
+ 'invites-banned' => 'Erro: os seus dereitos de invitación foron desactivados',
+ 'invites-banned-desc' => 'Se se sente isto é un erro, póñase en contacto co persoal!',
+ 'invites-count' => 'Ten: conta contas de invitación',
+ 'invites-disabled' => 'Atención: As invitacións están desactivadas debido ao rexistro aberto!',
+ 'invites-disabled-desc' => 'Comproba de novo en breve!',
+ 'invites-rules' => '- Invita só ás persoas que coñeces e confías.
- Serás responsable persoalmente dos que invitas.
- Non invítense a nós mesmos, revisamos cada usuario convidado.
- Non comerciais nin vendes invitacións.
- Se unha persoa convidada é capturada por trampas, negociación de conta ou venda / negociación de invitacións, será avisado.
',
+ 'invites-send' => 'Enviar invitacións',
+ 'last-login' => 'Último inicio de sesión',
+ 'locked' => 'Bloqueado',
+ 'locked-achievements' => 'Logros bloqueados',
+ 'member-since' => 'Membro desde',
+ 'members-desc' => 'Lista de usuarios rexistrados en: title con todos os grupos. Atopar un usuario agora.',
+ 'mention-notification' => '@Mention Settings Settings',
'mention-notification-article-comment' => 'Reciba unha notificación cando se menciona nun comentario do artigo',
'mention-notification-torrent-comment' => 'Recibir unha notificación cando estea @mentioned nun comentario de torrent',
'mention-notification-request-comment' => 'Recibir unha notificación cando se mencione nun comentario de solicitude',
- 'mention-notification-forum-post' => 'Recibir unha notificación cando estea @mentioned nunha publicación do foro',
- 'mention-notification-help' => 'Controla as notificacións que se envían cando un usuario che @mentions. Estes parámetros están substituídos se non permite que ningún grupo envíe notificacións se un usuario o @senta ou se desactiva as notificacións',
- 'moderated-by' => 'Moderado por: mod on',
- 'my-bonus-points' => 'Os meus puntos de bonos',
- 'my-bookmarks' => 'Os meus favoritos',
- 'my-fl-tokens' => 'Os meus tokens FL',
- 'my-general-settings' => 'As miñas opcións xerais',
- 'my-notification' => 'A miña notificación',
- 'my-notification-settings' => 'A miña configuración de notificación',
- 'my-privacy' => 'A miña privacidade',
- 'my-privacy-settings' => 'Os meus axustes de privacidade',
- 'my-profile' => 'O meu perfil',
- 'my-requested' => 'O meu pedido',
- 'my-security' => 'A miña seguridade',
- 'my-security-settings' => 'Os meus axustes de seguridade',
- 'my-seedboxes' => 'As miñas caixas de sementes',
- 'my-settings' => 'Os meus axustes',
- 'my-wishlist' => 'A miña lista de desexos',
- 'no-logs' => 'Non hai rexistros de invitación na base de datos deste usuario.',
- 'no-seedboxes' => 'Non hai seedboxes 😔',
- 'not-authorized' => 'Non estás autorizado para ver esta páxina. Este membro prefire estar oculto coma un ninja!',
- 'note' => 'Nota',
- 'notification' => 'Notificación',
- 'notification-settings' => 'Configuración de notificación',
- 'notification-from-account' => 'Recibir notificacións de conta desde',
- 'notification-from-account-help' => 'Só recibirás notificacións de contas do sistema, o persoal e os seguintes grupos. Esta configuración é substituída se desactiva as notificacións',
- 'notification-from-bon' => 'Recibir notificacións BON',
- 'notification-from-bon-help' => 'Só recibirás notificacións BON do sistema, o persoal e os seguintes grupos. Esta configuración é substituída se desactiva as notificacións',
- 'notification-from-following' => 'Recibir notificacións de usuario seguidas',
- 'notification-from-following-help' => 'Só recibirás as notificacións seguidas dos usuarios dos seguintes grupos. Esta configuración é substituída se desactiva as notificacións',
- 'notification-from-forum' => 'Recibir notificacións do foro desde',
- 'notification-from-forum-help' => 'Só recibirás notificacións do foro do sistema, o persoal e os seguintes grupos. Esta configuración é substituída se desactiva as notificacións',
- 'notification-from-subscription' => 'Recibir notificacións de subscrición',
- 'notification-from-subscription-help' => 'Só recibirás notificacións do foro do sistema, o persoal e os seguintes grupos. Esta configuración é substituída se desactiva as notificacións',
- 'notification-from-torrent' => 'Recibir notificacións de Torrent desde',
- 'notification-from-torrent-help' => 'Só recibirás notificacións de torrentes do sistema, o persoal e os seguintes grupos. Esta configuración é substituída se desactiva as notificacións',
- 'notification-from-mention' => 'Recibir notificacións de @Mention desde',
- 'notification-from-mention-help' => 'Só recibirás notificacións @mention do sistema, o persoal e os seguintes grupos. Esta configuración é substituída se desactiva as notificacións',
- 'notification-from-request' => 'Recibir notificacións de solicitude',
- 'notification-from-request-help' => 'Só recibirás notificacións de solicitude do sistema, o persoal e os seguintes grupos. Esta configuración é substituída se desactiva as notificacións',
- 'notifications' => 'Notificacións',
- 'offline' => 'O usuario está fóra de liña!',
- 'online' => 'O usuario está en liña!',
- 'options' => 'Opcións',
- 'other-help' => 'Controla a compartición doutras estatísticas e información con grupos que teñen acceso ao teu perfil. Estes parámetros están substituídos se non permite que ningún grupo acceda ás súas outras estatísticas e información ou se vai privado',
- 'other-privacy' => 'Outras configuracións',
- 'other-privacy-online' => 'Permite aos usuarios verte no bloque de usuarios en liña',
- 'passkey' => 'PID',
- 'passkey-warning' => 'PID é como o teu contrasinal, debes mantelo seguro.',
- 'pending-achievements' => 'Logros pendentes',
- 'per-torrent' => 'Por Torrent',
- 'posts' => 'Mensaxes',
- 'posts-posted' => 'Mensaxes do foro publicadas',
- 'privacy' => 'Privacidade',
- 'privacy-settings' => 'Configuración de privacidade',
- 'private-info' => 'Información privada',
- 'private-forum-profile' => 'Atención: Este tema dos membros e o historial de publicacións fixáronse como privados!',
- 'private-profile' => 'Atención: este perfil estivo configurado como PRIVADO!',
- 'profile' => 'Perfil',
- 'profile-desc' => 'Usuario: perfil de usuario rexistrado en: título',
- 'profile-privacy' => 'Configuración do perfil',
- 'profile-privacy-torrent-count' => 'Comparte o teu número total de descargas, subidas, sementes e sanguessugas',
- 'profile-privacy-torrent-ratio' => 'Comparte os teus datos de subida / descarga total xunto coa relación rexistrada',
- 'profile-privacy-torrent-seed' => 'Comparte o tempo e a media total de sementeira',
- 'profile-privacy-title' => 'Comparte a información do teu título persoal',
- 'profile-privacy-about' => 'Comparte a túa información persoal sobre min',
- 'profile-privacy-bon-extra' => 'Comparte as túas estatísticas de BON',
- 'profile-privacy-comment-extra' => 'Comparte as túas estatísticas de comentarios',
- 'profile-privacy-forum-extra' => 'Comparte as estatísticas do foro',
- 'profile-privacy-request-extra' => 'Comparte as túas estatísticas de solicitude',
- 'profile-privacy-torrent-extra' => 'Comparte as túas estatísticas de torrent',
- 'profile-privacy-badge' => 'Comparte as insignias gañadas',
- 'profile-privacy-achievement' => 'Comparte os teus logros recentes',
- 'profile-privacy-follower' => 'Comparte os teus seguidores recentes',
- 'profile-privacy-warning' => 'Comparte os teus avisos de H&R',
- 'profile-privacy-help' => 'Controla as estatísticas e información que aparecen no seu perfil. Esta configuración é substituída se non permite que ningún grupo acceda ao seu perfil ou se vai privado',
- 'public-info' => 'Información pública',
- 'recent-achievements' => 'Logros recentes',
- 'recent-followers' => 'Seguidores recentes',
- 'registration-date' => 'Data de inscrición',
- 'report' => 'Informe',
- 'request-help' => 'Controla a compartición de estatísticas relacionadas coa solicitude específica e información con grupos aos que se lle permite acceder ao teu perfil. Estes parámetros están substituídos se non permite que ningún grupo acceda ás estatísticas e información relacionadas solicitadas ou se vai privado',
- 'request' => 'Solicitude',
- 'requested' => 'Solicitado',
- 'requests' => 'Solicitudes',
- 'request-comments' => 'Solicitar comentarios feitos',
- 'request-notification' => 'Solicitar configuración de notificación',
- 'request-notification-bounty' => 'Recibir unha notificación cando un torrent solicitado obteña unha nova recompensa',
- 'request-notification-comment' => 'Recibe unha notificación cando un torrent solicitado recibe un novo comentario',
- 'request-notification-fill' => 'Recibe unha notificación cando se enche un torrent solicitado',
- 'request-notification-fill-approve' => 'Recibe unha notificación cando se aproba un recheo de torrent solicitado',
- 'request-notification-fill-reject' => 'Recibir unha notificación cando se rexeite un recheo de torrent solicitado',
- 'request-notification-claim' => 'Recibir unha notificación cando se solicite un torrent solicitado',
- 'request-notification-unclaim' => 'Recibir unha notificación cando non se reclama un torrent solicitado',
- 'request-notification-help' => 'Controlar as notificacións que se envían sobre as actividades de solicitude. Estes parámetros están substituídos se non permite que ningún grupo envíe notificacións sobre actividades de solicitude ou se deshabilita as notificacións',
- 'request-privacy' => 'Configuración de solicitude',
- 'request-privacy-requested' => 'Permitir aos usuarios ver unha lista de solicitudes que fixeches',
- 'reset-passkey' => 'Restablecer clave de paso (PID)',
- 'reset-passkey-help' => 'Terá que baixar de novo / volver cargar todos os seus torrentes activos despois de restablecer o PID',
- 'reset-rss' => 'Restablecer a chave RSS (RID)',
- 'reset-rss-help' => 'Terás que volver cargar todas as túas fontes RSS activas, despois de restablecer o RID',
- 'resurrections' => 'Resurreccións',
- 'search' => 'Busca rápida por nome de usuario',
- 'security' => 'Seguridade',
- 'security-settings' => 'Configuración de seguridade',
- 'seedboxes' => 'Caixas de semente',
- 'seeds' => 'Sementes',
- 'send-invite' => 'Enviar invitación',
- 'sender' => 'Remitente',
- 'settings' => 'Configuración',
- 'show-passkey' => 'Amosar PID',
- 'staff-noted' => 'Conta de persoal notada',
- 'statistics' => 'Estatísticas',
- 'subscription-notification' => 'Configuración de notificación de subscrición',
- 'subscription-notification-forum' => 'Recibir unha notificación cando un foro subscrito obteña un novo tema',
- 'subscription-notification-topic' => 'Recibe unha notificación cando un tema subscrito recibe unha nova publicación',
- 'subscription-notification-help' => 'Controla as notificacións que se envían sobre as súas subscricións. Estes parámetros están substituídos se non permite que ningún grupo envíe notificacións relativas ás súas subscricións ou se deshabilita as notificacións',
- 'thanks-given' => 'Grazas dada',
- 'thanks-received' => 'Grazas recibida',
- 'tips-given' => 'Consellos dados',
- 'tips-received' => 'Consellos recibidas',
- 'title' => 'Título',
- 'top-bankers' => 'Mellores banqueiros',
- 'top-downloaders-data' => 'Top Downloaders (Data)',
- 'top-leechers' => 'Top Leechers',
- 'top-leechers-count' => 'Top Leechers (Count)',
- 'top-seeders' => 'Mellores sementes',
- 'top-seeders-count' => 'Top Seeders (Count)',
- 'top-seeding-size' => 'Sementeira superior (tamaño)',
- 'top-seedtime' => 'Primeira Semana',
- 'top-uploaders-data' => 'Cargadores superiores (datos)',
- 'top-uploaders-count' => 'Cargadores superiores (conta)',
- 'topics' => 'Temas',
- 'topics-started' => 'Temas do foro iniciados',
- 'torrent-comments' => 'Comentarios de Torrent realizados',
- 'torrent-help' => 'Controla a compartición de estatísticas e información específicas relacionadas co torrent con grupos aos que se lle permite acceder ao teu perfil. Estes parámetros están substituídos se non permite que ningún grupo acceda ás súas estatísticas e información relacionadas co torrent ou se vai privado',
- 'torrent-notification' => 'Configuración de notificación de Torrent',
- 'torrent-notification-comment' => 'Recibe unha notificación cando un torrente subido recibe un novo comentario',
- 'torrent-notification-thank' => 'Recibe unha notificación cando un torrente subido recibe un novo agradecemento',
- 'torrent-notification-tip' => 'Recibir unha notificación cando un torrent subido consiga unha nova información',
- 'torrent-notification-help' => 'Controlar as notificacións que se envían sobre as actividades do torrent. Esta configuración é substituída se non permite que ningún grupo envíe notificacións sobre actividades de torrent ou se desactiva as notificacións',
- 'torrent-privacy' => 'Configuración de Torrent',
- 'torrent-privacy-download' => 'Permite aos usuarios ver unha lista de torrentes que descargou',
- 'torrent-privacy-upload' => 'Permitir aos usuarios ver unha lista de torrentes que cargaches',
- 'torrent-privacy-peer' => 'Permite aos usuarios verte na táboa de historial de pares de torrent',
- 'torrents' => 'Torrents',
- 'torrents-history' => 'Historia de Torrents',
- 'total-download' => 'Descarga total',
- 'total-downloads' => 'Total de descargas',
- 'total-leeching' => 'Leeching total',
- 'total-seeding' => 'Sementeira total',
- 'total-seedtime' => 'Tempo total de sementeira',
- 'total-upload' => 'Carga total',
- 'total-uploads' => 'Total de cargas',
- 'unban' => 'Unban usuario',
- 'unfollow' => 'Non seguir',
- 'unlocked' => 'Desbloqueado',
- 'unlocked-achievements' => 'Logros desbloqueados',
- 'unsatisfieds' => 'Unsatisfieds',
- 'upload-bon' => 'Cargado engadido desde a tenda BON',
- 'upload-recorded' => 'Carga gravada',
- 'upload-true' => 'Cargar verdadeiro',
- 'uploads' => 'Cargas',
- 'uploads-table' => 'Táboa de cargas',
- 'user' => 'Usuario',
- 'user-id' => 'ID do usuario',
- 'username-seedbox' => 'Nome de usuario Seedbox',
- 'visible-to-achievement' => 'Logros visibles para',
- 'visible-to-achievement-help' => 'Os seus logros só serán visibles para o persoal e os seguintes grupos. Esta configuración está anulada se vai en privado',
- 'visible-to-follower' => 'Seguidores visibles para',
- 'visible-to-follower-help' => 'Os teus seguidores só serán visibles para o persoal e os seguintes grupos. Esta configuración está anulada se vai en privado',
- 'visible-to-forum' => 'Información do foro Visible To',
- 'visible-to-forum-help' => 'A información do foro só será visible para o persoal e os seguintes grupos. Esta configuración está anulada se vai en privado',
- 'visible-to-other' => 'Outra visibilidade para',
- 'visible-to-other-help' => 'Outra información relativa á túa conta só será visible para o persoal e os seguintes grupos. Estes parámetros están substituídos se vai privado ou se esconde',
- 'visible-to-profile' => 'Perfil visible para',
- 'visible-to-profile-help' => 'O teu perfil só será visible para o persoal e os seguintes grupos. Esta configuración está anulada se vai en privado',
- 'visible-to-request' => 'Solicitar información visíbel para',
- 'visible-to-request-help' => 'A información da túa solicitude só será visible para o persoal e os seguintes grupos. Esta configuración está anulada se vai en privado',
- 'visible-to-torrent' => 'Información de Torrent Visible To',
- 'visible-to-torrent-help' => 'A información do teu torrent só será visible para o persoal e os seguintes grupos. Estes parámetros están substituídos se vai privado ou se esconde',
- 'warned-on' => 'Avisado',
- 'warning' => 'Aviso',
- 'warning-log' => 'Rexistro de advertencia',
- 'wishlist' => 'Lista de desexos',
+ 'mention-notification-forum-post' => 'Recibir unha notificación cando estea @mentioned nunha publicación do foro',
+ 'mention-notification-help' => 'Controla as notificacións que se envían cando un usuario che @mentions. Estes parámetros están substituídos se non permite que ningún grupo envíe notificacións se un usuario o @senta ou se desactiva as notificacións',
+ 'moderated-by' => 'Moderado por: mod on',
+ 'my-bonus-points' => 'Os meus puntos de bonos',
+ 'my-bookmarks' => 'Os meus favoritos',
+ 'my-fl-tokens' => 'Os meus tokens FL',
+ 'my-general-settings' => 'As miñas opcións xerais',
+ 'my-notification' => 'A miña notificación',
+ 'my-notification-settings' => 'A miña configuración de notificación',
+ 'my-privacy' => 'A miña privacidade',
+ 'my-privacy-settings' => 'Os meus axustes de privacidade',
+ 'my-profile' => 'O meu perfil',
+ 'my-requested' => 'O meu pedido',
+ 'my-security' => 'A miña seguridade',
+ 'my-security-settings' => 'Os meus axustes de seguridade',
+ 'my-seedboxes' => 'As miñas caixas de sementes',
+ 'my-settings' => 'Os meus axustes',
+ 'my-wishlist' => 'A miña lista de desexos',
+ 'no-logs' => 'Non hai rexistros de invitación na base de datos deste usuario.',
+ 'no-seedboxes' => 'Non hai seedboxes 😔',
+ 'not-authorized' => 'Non estás autorizado para ver esta páxina. Este membro prefire estar oculto coma un ninja!',
+ 'note' => 'Nota',
+ 'notification' => 'Notificación',
+ 'notification-settings' => 'Configuración de notificación',
+ 'notification-from-account' => 'Recibir notificacións de conta desde',
+ 'notification-from-account-help' => 'Só recibirás notificacións de contas do sistema, o persoal e os seguintes grupos. Esta configuración é substituída se desactiva as notificacións',
+ 'notification-from-bon' => 'Recibir notificacións BON',
+ 'notification-from-bon-help' => 'Só recibirás notificacións BON do sistema, o persoal e os seguintes grupos. Esta configuración é substituída se desactiva as notificacións',
+ 'notification-from-following' => 'Recibir notificacións de usuario seguidas',
+ 'notification-from-following-help' => 'Só recibirás as notificacións seguidas dos usuarios dos seguintes grupos. Esta configuración é substituída se desactiva as notificacións',
+ 'notification-from-forum' => 'Recibir notificacións do foro desde',
+ 'notification-from-forum-help' => 'Só recibirás notificacións do foro do sistema, o persoal e os seguintes grupos. Esta configuración é substituída se desactiva as notificacións',
+ 'notification-from-subscription' => 'Recibir notificacións de subscrición',
+ 'notification-from-subscription-help' => 'Só recibirás notificacións do foro do sistema, o persoal e os seguintes grupos. Esta configuración é substituída se desactiva as notificacións',
+ 'notification-from-torrent' => 'Recibir notificacións de Torrent desde',
+ 'notification-from-torrent-help' => 'Só recibirás notificacións de torrentes do sistema, o persoal e os seguintes grupos. Esta configuración é substituída se desactiva as notificacións',
+ 'notification-from-mention' => 'Recibir notificacións de @Mention desde',
+ 'notification-from-mention-help' => 'Só recibirás notificacións @mention do sistema, o persoal e os seguintes grupos. Esta configuración é substituída se desactiva as notificacións',
+ 'notification-from-request' => 'Recibir notificacións de solicitude',
+ 'notification-from-request-help' => 'Só recibirás notificacións de solicitude do sistema, o persoal e os seguintes grupos. Esta configuración é substituída se desactiva as notificacións',
+ 'notifications' => 'Notificacións',
+ 'offline' => 'O usuario está fóra de liña!',
+ 'online' => 'O usuario está en liña!',
+ 'options' => 'Opcións',
+ 'other-help' => 'Controla a compartición doutras estatísticas e información con grupos que teñen acceso ao teu perfil. Estes parámetros están substituídos se non permite que ningún grupo acceda ás súas outras estatísticas e información ou se vai privado',
+ 'other-privacy' => 'Outras configuracións',
+ 'other-privacy-online' => 'Permite aos usuarios verte no bloque de usuarios en liña',
+ 'passkey' => 'PID',
+ 'passkey-warning' => 'PID é como o teu contrasinal, debes mantelo seguro.',
+ 'pending-achievements' => 'Logros pendentes',
+ 'per-torrent' => 'Por Torrent',
+ 'posts' => 'Mensaxes',
+ 'posts-posted' => 'Mensaxes do foro publicadas',
+ 'privacy' => 'Privacidade',
+ 'privacy-settings' => 'Configuración de privacidade',
+ 'private-info' => 'Información privada',
+ 'private-forum-profile' => 'Atención: Este tema dos membros e o historial de publicacións fixáronse como privados!',
+ 'private-profile' => 'Atención: este perfil estivo configurado como PRIVADO!',
+ 'profile' => 'Perfil',
+ 'profile-desc' => 'Usuario: perfil de usuario rexistrado en: título',
+ 'profile-privacy' => 'Configuración do perfil',
+ 'profile-privacy-torrent-count' => 'Comparte o teu número total de descargas, subidas, sementes e sanguessugas',
+ 'profile-privacy-torrent-ratio' => 'Comparte os teus datos de subida / descarga total xunto coa relación rexistrada',
+ 'profile-privacy-torrent-seed' => 'Comparte o tempo e a media total de sementeira',
+ 'profile-privacy-title' => 'Comparte a información do teu título persoal',
+ 'profile-privacy-about' => 'Comparte a túa información persoal sobre min',
+ 'profile-privacy-bon-extra' => 'Comparte as túas estatísticas de BON',
+ 'profile-privacy-comment-extra' => 'Comparte as túas estatísticas de comentarios',
+ 'profile-privacy-forum-extra' => 'Comparte as estatísticas do foro',
+ 'profile-privacy-request-extra' => 'Comparte as túas estatísticas de solicitude',
+ 'profile-privacy-torrent-extra' => 'Comparte as túas estatísticas de torrent',
+ 'profile-privacy-badge' => 'Comparte as insignias gañadas',
+ 'profile-privacy-achievement' => 'Comparte os teus logros recentes',
+ 'profile-privacy-follower' => 'Comparte os teus seguidores recentes',
+ 'profile-privacy-warning' => 'Comparte os teus avisos de H&R',
+ 'profile-privacy-help' => 'Controla as estatísticas e información que aparecen no seu perfil. Esta configuración é substituída se non permite que ningún grupo acceda ao seu perfil ou se vai privado',
+ 'public-info' => 'Información pública',
+ 'recent-achievements' => 'Logros recentes',
+ 'recent-followers' => 'Seguidores recentes',
+ 'registration-date' => 'Data de inscrición',
+ 'report' => 'Informe',
+ 'request-help' => 'Controla a compartición de estatísticas relacionadas coa solicitude específica e información con grupos aos que se lle permite acceder ao teu perfil. Estes parámetros están substituídos se non permite que ningún grupo acceda ás estatísticas e información relacionadas solicitadas ou se vai privado',
+ 'request' => 'Solicitude',
+ 'requested' => 'Solicitado',
+ 'requests' => 'Solicitudes',
+ 'request-comments' => 'Solicitar comentarios feitos',
+ 'request-notification' => 'Solicitar configuración de notificación',
+ 'request-notification-bounty' => 'Recibir unha notificación cando un torrent solicitado obteña unha nova recompensa',
+ 'request-notification-comment' => 'Recibe unha notificación cando un torrent solicitado recibe un novo comentario',
+ 'request-notification-fill' => 'Recibe unha notificación cando se enche un torrent solicitado',
+ 'request-notification-fill-approve' => 'Recibe unha notificación cando se aproba un recheo de torrent solicitado',
+ 'request-notification-fill-reject' => 'Recibir unha notificación cando se rexeite un recheo de torrent solicitado',
+ 'request-notification-claim' => 'Recibir unha notificación cando se solicite un torrent solicitado',
+ 'request-notification-unclaim' => 'Recibir unha notificación cando non se reclama un torrent solicitado',
+ 'request-notification-help' => 'Controlar as notificacións que se envían sobre as actividades de solicitude. Estes parámetros están substituídos se non permite que ningún grupo envíe notificacións sobre actividades de solicitude ou se deshabilita as notificacións',
+ 'request-privacy' => 'Configuración de solicitude',
+ 'request-privacy-requested' => 'Permitir aos usuarios ver unha lista de solicitudes que fixeches',
+ 'reset-passkey' => 'Restablecer clave de paso (PID)',
+ 'reset-passkey-help' => 'Terá que baixar de novo / volver cargar todos os seus torrentes activos despois de restablecer o PID',
+ 'reset-rss' => 'Restablecer a chave RSS (RID)',
+ 'reset-rss-help' => 'Terás que volver cargar todas as túas fontes RSS activas, despois de restablecer o RID',
+ 'resurrections' => 'Resurreccións',
+ 'search' => 'Busca rápida por nome de usuario',
+ 'security' => 'Seguridade',
+ 'security-settings' => 'Configuración de seguridade',
+ 'seedboxes' => 'Caixas de semente',
+ 'seeds' => 'Sementes',
+ 'send-invite' => 'Enviar invitación',
+ 'sender' => 'Remitente',
+ 'settings' => 'Configuración',
+ 'show-passkey' => 'Amosar PID',
+ 'staff-noted' => 'Conta de persoal notada',
+ 'statistics' => 'Estatísticas',
+ 'subscription-notification' => 'Configuración de notificación de subscrición',
+ 'subscription-notification-forum' => 'Recibir unha notificación cando un foro subscrito obteña un novo tema',
+ 'subscription-notification-topic' => 'Recibe unha notificación cando un tema subscrito recibe unha nova publicación',
+ 'subscription-notification-help' => 'Controla as notificacións que se envían sobre as súas subscricións. Estes parámetros están substituídos se non permite que ningún grupo envíe notificacións relativas ás súas subscricións ou se deshabilita as notificacións',
+ 'thanks-given' => 'Grazas dada',
+ 'thanks-received' => 'Grazas recibida',
+ 'tips-given' => 'Consellos dados',
+ 'tips-received' => 'Consellos recibidas',
+ 'title' => 'Título',
+ 'top-bankers' => 'Mellores banqueiros',
+ 'top-downloaders-data' => 'Top Downloaders (Data)',
+ 'top-leechers' => 'Top Leechers',
+ 'top-leechers-count' => 'Top Leechers (Count)',
+ 'top-seeders' => 'Mellores sementes',
+ 'top-seeders-count' => 'Top Seeders (Count)',
+ 'top-seeding-size' => 'Sementeira superior (tamaño)',
+ 'top-seedtime' => 'Primeira Semana',
+ 'top-uploaders-data' => 'Cargadores superiores (datos)',
+ 'top-uploaders-count' => 'Cargadores superiores (conta)',
+ 'topics' => 'Temas',
+ 'topics-started' => 'Temas do foro iniciados',
+ 'torrent-comments' => 'Comentarios de Torrent realizados',
+ 'torrent-help' => 'Controla a compartición de estatísticas e información específicas relacionadas co torrent con grupos aos que se lle permite acceder ao teu perfil. Estes parámetros están substituídos se non permite que ningún grupo acceda ás súas estatísticas e información relacionadas co torrent ou se vai privado',
+ 'torrent-notification' => 'Configuración de notificación de Torrent',
+ 'torrent-notification-comment' => 'Recibe unha notificación cando un torrente subido recibe un novo comentario',
+ 'torrent-notification-thank' => 'Recibe unha notificación cando un torrente subido recibe un novo agradecemento',
+ 'torrent-notification-tip' => 'Recibir unha notificación cando un torrent subido consiga unha nova información',
+ 'torrent-notification-help' => 'Controlar as notificacións que se envían sobre as actividades do torrent. Esta configuración é substituída se non permite que ningún grupo envíe notificacións sobre actividades de torrent ou se desactiva as notificacións',
+ 'torrent-privacy' => 'Configuración de Torrent',
+ 'torrent-privacy-download' => 'Permite aos usuarios ver unha lista de torrentes que descargou',
+ 'torrent-privacy-upload' => 'Permitir aos usuarios ver unha lista de torrentes que cargaches',
+ 'torrent-privacy-peer' => 'Permite aos usuarios verte na táboa de historial de pares de torrent',
+ 'torrents' => 'Torrents',
+ 'torrents-history' => 'Historia de Torrents',
+ 'total-download' => 'Descarga total',
+ 'total-downloads' => 'Total de descargas',
+ 'total-leeching' => 'Leeching total',
+ 'total-seeding' => 'Sementeira total',
+ 'total-seedtime' => 'Tempo total de sementeira',
+ 'total-upload' => 'Carga total',
+ 'total-uploads' => 'Total de cargas',
+ 'unban' => 'Unban usuario',
+ 'unfollow' => 'Non seguir',
+ 'unlocked' => 'Desbloqueado',
+ 'unlocked-achievements' => 'Logros desbloqueados',
+ 'unsatisfieds' => 'Unsatisfieds',
+ 'upload-bon' => 'Cargado engadido desde a tenda BON',
+ 'upload-recorded' => 'Carga gravada',
+ 'upload-true' => 'Cargar verdadeiro',
+ 'uploads' => 'Cargas',
+ 'uploads-table' => 'Táboa de cargas',
+ 'user' => 'Usuario',
+ 'user-id' => 'ID do usuario',
+ 'username-seedbox' => 'Nome de usuario Seedbox',
+ 'visible-to-achievement' => 'Logros visibles para',
+ 'visible-to-achievement-help' => 'Os seus logros só serán visibles para o persoal e os seguintes grupos. Esta configuración está anulada se vai en privado',
+ 'visible-to-follower' => 'Seguidores visibles para',
+ 'visible-to-follower-help' => 'Os teus seguidores só serán visibles para o persoal e os seguintes grupos. Esta configuración está anulada se vai en privado',
+ 'visible-to-forum' => 'Información do foro Visible To',
+ 'visible-to-forum-help' => 'A información do foro só será visible para o persoal e os seguintes grupos. Esta configuración está anulada se vai en privado',
+ 'visible-to-other' => 'Outra visibilidade para',
+ 'visible-to-other-help' => 'Outra información relativa á túa conta só será visible para o persoal e os seguintes grupos. Estes parámetros están substituídos se vai privado ou se esconde',
+ 'visible-to-profile' => 'Perfil visible para',
+ 'visible-to-profile-help' => 'O teu perfil só será visible para o persoal e os seguintes grupos. Esta configuración está anulada se vai en privado',
+ 'visible-to-request' => 'Solicitar información visíbel para',
+ 'visible-to-request-help' => 'A información da túa solicitude só será visible para o persoal e os seguintes grupos. Esta configuración está anulada se vai en privado',
+ 'visible-to-torrent' => 'Información de Torrent Visible To',
+ 'visible-to-torrent-help' => 'A información do teu torrent só será visible para o persoal e os seguintes grupos. Estes parámetros están substituídos se vai privado ou se esconde',
+ 'warned-on' => 'Avisado',
+ 'warning' => 'Aviso',
+ 'warning-log' => 'Rexistro de advertencia',
+ 'wishlist' => 'Lista de desexos',
];
diff --git a/lang/gl/validation.php b/lang/gl/validation.php
index fd9a7a995..9a5da3b0d 100644
--- a/lang/gl/validation.php
+++ b/lang/gl/validation.php
@@ -23,108 +23,108 @@ return [
|
*/
- 'accepted' => ':attribute debe ser aceptado.',
- 'active_url' => ':attribute non é unha URL válida.',
- 'after' => ':attribute debe ser unha data posterior a :date.',
- 'after_or_equal' => 'O :attribute debe ser unha data posterior ou igual a :date.',
- 'alpha' => ':attribute só debe conter letras.',
- 'alpha_dash' => ':attribute só debe conter letras, números e guións.',
- 'alpha_num' => ':attribute só debe conter letras e números.',
- 'array' => ':attribute debe ser un conxunto.',
- 'before' => ':attribute debe ser unha data anterior a :date.',
- 'before_or_equal' => 'O :attribute debe ser unha data previa ou igual a :date.',
- 'between' => [
+ 'accepted' => ':attribute debe ser aceptado.',
+ 'active_url' => ':attribute non é unha URL válida.',
+ 'after' => ':attribute debe ser unha data posterior a :date.',
+ 'after_or_equal' => 'O :attribute debe ser unha data posterior ou igual a :date.',
+ 'alpha' => ':attribute só debe conter letras.',
+ 'alpha_dash' => ':attribute só debe conter letras, números e guións.',
+ 'alpha_num' => ':attribute só debe conter letras e números.',
+ 'array' => ':attribute debe ser un conxunto.',
+ 'before' => ':attribute debe ser unha data anterior a :date.',
+ 'before_or_equal' => 'O :attribute debe ser unha data previa ou igual a :date.',
+ 'between' => [
'numeric' => ':attribute debe estar entre :min e :max.',
- 'file' => 'O tamaño de :attribute debe estar entre :min e :max quilobites.',
- 'string' => ':attribute debe ter entre :min e :max caracteres.',
- 'array' => ':attribute debe conter entre :min e :max elementos.',
+ 'file' => 'O tamaño de :attribute debe estar entre :min e :max quilobites.',
+ 'string' => ':attribute debe ter entre :min e :max caracteres.',
+ 'array' => ':attribute debe conter entre :min e :max elementos.',
],
- 'boolean' => 'O campo :attribute debe ser verdadeiro ou falso.',
- 'confirmed' => 'A confirmación de :attribute non coincide.',
- 'date' => ':attribute non é unha data válida.',
- 'date_equals' => 'The :attribute must be a date equal to :date.',
- 'date_format' => ':attribute non concorda co formato :format.',
- 'different' => ':attribute e :other deben ser diferentes.',
- 'digits' => ':attribute debe ter :digits díxitos.',
- 'digits_between' => ':attribute debe ter entre :min e :max díxitos.',
- 'dimensions' => 'The :attribute has invalid image dimensions.',
- 'distinct' => 'The :attribute field has a duplicate value.',
- 'email' => ':attribute debe ser unha dirección de correo electrónico válida.',
- 'exists' => 'O :attribute seleccionado non é válido.',
- 'file' => 'The :attribute must be a file.',
- 'filled' => 'O campo :attribute é obrigatorio.',
- 'gt' => [
+ 'boolean' => 'O campo :attribute debe ser verdadeiro ou falso.',
+ 'confirmed' => 'A confirmación de :attribute non coincide.',
+ 'date' => ':attribute non é unha data válida.',
+ 'date_equals' => 'The :attribute must be a date equal to :date.',
+ 'date_format' => ':attribute non concorda co formato :format.',
+ 'different' => ':attribute e :other deben ser diferentes.',
+ 'digits' => ':attribute debe ter :digits díxitos.',
+ 'digits_between' => ':attribute debe ter entre :min e :max díxitos.',
+ 'dimensions' => 'The :attribute has invalid image dimensions.',
+ 'distinct' => 'The :attribute field has a duplicate value.',
+ 'email' => ':attribute debe ser unha dirección de correo electrónico válida.',
+ 'exists' => 'O :attribute seleccionado non é válido.',
+ 'file' => 'The :attribute must be a file.',
+ 'filled' => 'O campo :attribute é obrigatorio.',
+ 'gt' => [
'numeric' => 'O :attribute debe ser maior que :value.',
- 'file' => 'O :attribute debe ter máis de :value quilobytes.',
- 'string' => 'O :attribute debe ter máis de :value caracteres.',
- 'array' => 'O :attribute debe ter máis de :value elementos.',
+ 'file' => 'O :attribute debe ter máis de :value quilobytes.',
+ 'string' => 'O :attribute debe ter máis de :value caracteres.',
+ 'array' => 'O :attribute debe ter máis de :value elementos.',
],
- 'gte' => [
+ 'gte' => [
'numeric' => 'O :attribute debe ser polo menos :value.',
- 'file' => 'O :attribute debe ter polo menos de :value quilobytes.',
- 'string' => 'O :attribute debe ter polo menos :value caracteres.',
- 'array' => 'O :attribute deber ter polo menos :value elementos.',
+ 'file' => 'O :attribute debe ter polo menos de :value quilobytes.',
+ 'string' => 'O :attribute debe ter polo menos :value caracteres.',
+ 'array' => 'O :attribute deber ter polo menos :value elementos.',
],
- 'image' => ':attribute debe ser unha imaxe.',
- 'in' => 'O :attribute seleccionado non é válido.',
- 'in_array' => 'The :attribute field does not exist in :other.',
- 'integer' => ':attribute debe ser un número enteiro.',
- 'ip' => ':attribute debe ser unha dirección IP válida.',
- 'ipv4' => 'O :attribute debe ser unha dirección IPv4 válida.',
- 'ipv6' => 'O :attribute debe ser unha dirección IPv6 válida.',
- 'json' => ':attribute debe ser unha cadea JSON válida.',
- 'lt' => [
+ 'image' => ':attribute debe ser unha imaxe.',
+ 'in' => 'O :attribute seleccionado non é válido.',
+ 'in_array' => 'The :attribute field does not exist in :other.',
+ 'integer' => ':attribute debe ser un número enteiro.',
+ 'ip' => ':attribute debe ser unha dirección IP válida.',
+ 'ipv4' => 'O :attribute debe ser unha dirección IPv4 válida.',
+ 'ipv6' => 'O :attribute debe ser unha dirección IPv6 válida.',
+ 'json' => ':attribute debe ser unha cadea JSON válida.',
+ 'lt' => [
'numeric' => 'O :attribute debe ser menor que :value.',
- 'file' => 'O :attribute debe ter menos de :value quilobytes.',
- 'string' => 'O :attribute debe ter menos de :value caracteres.',
- 'array' => 'O :attribute debe ter menos de :value elementos.',
+ 'file' => 'O :attribute debe ter menos de :value quilobytes.',
+ 'string' => 'O :attribute debe ter menos de :value caracteres.',
+ 'array' => 'O :attribute debe ter menos de :value elementos.',
],
- 'lte' => [
+ 'lte' => [
'numeric' => 'O :attribute debe ser como moito :value.',
- 'file' => 'O :attribute debe ter como moito :value quilobytes.',
- 'string' => 'O :attribute debe ter como moito :value caracteres.',
- 'array' => 'O :attribute non debe ter máis de :value elementos.',
+ 'file' => 'O :attribute debe ter como moito :value quilobytes.',
+ 'string' => 'O :attribute debe ter como moito :value caracteres.',
+ 'array' => 'O :attribute non debe ter máis de :value elementos.',
],
- 'max' => [
+ 'max' => [
'numeric' => ':attribute non debe ser maior de :max.',
- 'file' => 'O tamaño de :attribute non debe ser maior de :max quilobites.',
- 'string' => ':attribute non debe ter máis de :max caracteres.',
- 'array' => ':attribute non debe conter máis de :max elementos.',
+ 'file' => 'O tamaño de :attribute non debe ser maior de :max quilobites.',
+ 'string' => ':attribute non debe ter máis de :max caracteres.',
+ 'array' => ':attribute non debe conter máis de :max elementos.',
],
- 'mimes' => ':attribute debe ser un arquivo de tipo: :values.',
- 'mimetypes' => ':attribute debe ser un arquivo de tipo: :values.',
- 'min' => [
+ 'mimes' => ':attribute debe ser un arquivo de tipo: :values.',
+ 'mimetypes' => ':attribute debe ser un arquivo de tipo: :values.',
+ 'min' => [
'numeric' => ':attribute debe ser polo menos :min.',
- 'file' => 'O tamaño de :attribute debe ser polo menos de :min quilobites.',
- 'string' => ':attribute debe ter polo menos :min caracteres.',
- 'array' => ':attribute debe conter polo menos :min elementos.',
+ 'file' => 'O tamaño de :attribute debe ser polo menos de :min quilobites.',
+ 'string' => ':attribute debe ter polo menos :min caracteres.',
+ 'array' => ':attribute debe conter polo menos :min elementos.',
],
- 'not_in' => ':attribute non é válido.',
- 'not_regex' => 'O formato de :attribute non é válido.',
- 'numeric' => ':attribute debe de ser un número.',
- 'present' => 'The :attribute field must be present.',
- 'regex' => 'O formato de :attribute non é válido.',
- 'required' => 'O campo :attribute é obrigatorio.',
- 'required_if' => 'O campo :attribute é obrigatorio cando :other é :value.',
- 'required_unless' => 'O campo :attribute é obrigatorio excepto que :other estea en :values.',
- 'required_with' => 'O campo :attribute é obrigatorio cando :values está presente.',
- 'required_with_all' => 'O campo :attribute é obrigatorio cando :values está presente',
- 'required_without' => 'O campo :attribute é obrigatorio cando :values non está presente.',
+ 'not_in' => ':attribute non é válido.',
+ 'not_regex' => 'O formato de :attribute non é válido.',
+ 'numeric' => ':attribute debe de ser un número.',
+ 'present' => 'The :attribute field must be present.',
+ 'regex' => 'O formato de :attribute non é válido.',
+ 'required' => 'O campo :attribute é obrigatorio.',
+ 'required_if' => 'O campo :attribute é obrigatorio cando :other é :value.',
+ 'required_unless' => 'O campo :attribute é obrigatorio excepto que :other estea en :values.',
+ 'required_with' => 'O campo :attribute é obrigatorio cando :values está presente.',
+ 'required_with_all' => 'O campo :attribute é obrigatorio cando :values está presente',
+ 'required_without' => 'O campo :attribute é obrigatorio cando :values non está presente.',
'required_without_all' => 'O campo :attribute é obrigatorio cando ningún de :values están presentes.',
- 'same' => 'O campo :attribute e :other deben coincidir.',
- 'size' => [
+ 'same' => 'O campo :attribute e :other deben coincidir.',
+ 'size' => [
'numeric' => ':attribute debe ser :size.',
- 'file' => 'O tamaño de :attribute debe ser :size quilobites.',
- 'string' => ':attribute debe ter :size caracteres.',
- 'array' => ':attribute debe conter :size elementos.',
+ 'file' => 'O tamaño de :attribute debe ser :size quilobites.',
+ 'string' => ':attribute debe ter :size caracteres.',
+ 'array' => ':attribute debe conter :size elementos.',
],
- 'starts_with' => 'The :attribute must start with one of the following: :values',
- 'string' => ':attribute debe ser unha cadea de caracteres.',
- 'timezone' => ':attribute debe ser unha zona válida.',
- 'unique' => ':attribute xa foi empregado.',
- 'uploaded' => 'O :attribute fallou na subida.',
- 'url' => 'O formato de :attribute é inválido.',
- 'uuid' => 'The :attribute must be a valid UUID.',
+ 'starts_with' => 'The :attribute must start with one of the following: :values',
+ 'string' => ':attribute debe ser unha cadea de caracteres.',
+ 'timezone' => ':attribute debe ser unha zona válida.',
+ 'unique' => ':attribute xa foi empregado.',
+ 'uploaded' => 'O :attribute fallou na subida.',
+ 'url' => 'O formato de :attribute é inválido.',
+ 'uuid' => 'The :attribute must be a valid UUID.',
/*
|--------------------------------------------------------------------------
diff --git a/lang/hi/articles.php b/lang/hi/articles.php
index 775d513ad..ba1978015 100644
--- a/lang/hi/articles.php
+++ b/lang/hi/articles.php
@@ -12,8 +12,8 @@
*/
return [
- 'articles' => 'सामग्री',
+ 'articles' => 'सामग्री',
'meta-articles' => 'ट्रैकर और समुदाय पर लेख और समाचार',
- 'published-at' => 'पर प्रकाशित',
- 'read-more' => 'और पढो',
+ 'published-at' => 'पर प्रकाशित',
+ 'read-more' => 'और पढो',
];
diff --git a/lang/hi/auth.php b/lang/hi/auth.php
index dd3b21a38..622f11be9 100644
--- a/lang/hi/auth.php
+++ b/lang/hi/auth.php
@@ -23,6 +23,6 @@ return [
|
*/
- 'failed' => 'ये साख हमारे रिकॉर्ड से मेल नहीं खा रहे हैं।',
+ 'failed' => 'ये साख हमारे रिकॉर्ड से मेल नहीं खा रहे हैं।',
'throttle' => 'बहुत सारे लॉगिन प्रयास। :seconds सेकंड में फिर से कोशिश करें।',
];
diff --git a/lang/hi/backup.php b/lang/hi/backup.php
index 2ebac5d2b..1b2b7b10a 100644
--- a/lang/hi/backup.php
+++ b/lang/hi/backup.php
@@ -12,32 +12,32 @@
*/
return [
- 'actions' => 'क्रिया',
- 'backup' => 'बैकअप',
- 'backup_doesnt_exist' => 'बैकअप फ़ाइल मौजूद नहीं है।',
- 'create_a_new_backup' => 'पूर्ण बैकअप बनाएँ',
- 'create_a_new_files_backup' => 'फ़ाइलें बैकअप बनाएँ',
- 'create_a_new_db_backup' => 'डेटाबेस बैकअप बनाएँ',
- 'create_confirmation_message' => 'पृष्ठ को 3 सेकंड में पुनः लोड कर रहा है।',
- 'create_confirmation_title' => 'बैकअप पूर्ण',
- 'create_error_message' => 'बैकअप फ़ाइल नहीं बनाई जा सकी।',
- 'create_error_title' => 'बैकअप त्रुटि',
- 'create_warning_message' => 'आपका बैकअप नहीं बनाया गया है। कृपया विवरण के लिए लॉग फ़ाइलों की जाँच करें।',
- 'create_warning_title' => 'अज्ञात त्रुटि',
- 'date' => 'दिनांक',
- 'delete' => 'हटाना',
- 'delete_cancel_message' => 'बैकअप फ़ाइल को हटाया नहीं गया है।',
- 'delete_cancel_title' => 'यह ठीक है',
- 'delete_confirm' => 'क्या आप वाकई इस बैकअप फ़ाइल को हटाना चाहते हैं?',
- 'delete_confirmation_message' => 'बैकअप फ़ाइल को हटा दिया गया था।',
- 'delete_confirmation_title' => 'किया हुआ',
- 'delete_error_message' => 'बैकअप फ़ाइल को हटाया नहीं गया है।',
- 'delete_error_title' => 'त्रुटि',
- 'download' => 'डाउनलोड',
- 'existing_backups' => 'मौजूदा बैकअप',
- 'file_size' => 'फाइल का आकार',
- 'location' => 'स्थान',
- 'manager' => 'मैनेजर',
- 'no_disks_configured' => 'कोई बैकअप डिस्क config / backup.php में कॉन्फ़िगर नहीं किया गया है',
+ 'actions' => 'क्रिया',
+ 'backup' => 'बैकअप',
+ 'backup_doesnt_exist' => 'बैकअप फ़ाइल मौजूद नहीं है।',
+ 'create_a_new_backup' => 'पूर्ण बैकअप बनाएँ',
+ 'create_a_new_files_backup' => 'फ़ाइलें बैकअप बनाएँ',
+ 'create_a_new_db_backup' => 'डेटाबेस बैकअप बनाएँ',
+ 'create_confirmation_message' => 'पृष्ठ को 3 सेकंड में पुनः लोड कर रहा है।',
+ 'create_confirmation_title' => 'बैकअप पूर्ण',
+ 'create_error_message' => 'बैकअप फ़ाइल नहीं बनाई जा सकी।',
+ 'create_error_title' => 'बैकअप त्रुटि',
+ 'create_warning_message' => 'आपका बैकअप नहीं बनाया गया है। कृपया विवरण के लिए लॉग फ़ाइलों की जाँच करें।',
+ 'create_warning_title' => 'अज्ञात त्रुटि',
+ 'date' => 'दिनांक',
+ 'delete' => 'हटाना',
+ 'delete_cancel_message' => 'बैकअप फ़ाइल को हटाया नहीं गया है।',
+ 'delete_cancel_title' => 'यह ठीक है',
+ 'delete_confirm' => 'क्या आप वाकई इस बैकअप फ़ाइल को हटाना चाहते हैं?',
+ 'delete_confirmation_message' => 'बैकअप फ़ाइल को हटा दिया गया था।',
+ 'delete_confirmation_title' => 'किया हुआ',
+ 'delete_error_message' => 'बैकअप फ़ाइल को हटाया नहीं गया है।',
+ 'delete_error_title' => 'त्रुटि',
+ 'download' => 'डाउनलोड',
+ 'existing_backups' => 'मौजूदा बैकअप',
+ 'file_size' => 'फाइल का आकार',
+ 'location' => 'स्थान',
+ 'manager' => 'मैनेजर',
+ 'no_disks_configured' => 'कोई बैकअप डिस्क config / backup.php में कॉन्फ़िगर नहीं किया गया है',
'only_local_downloads_supported' => 'केवल स्थानीय फ़ाइल सिस्टम से डाउनलोड समर्थित हैं।',
];
diff --git a/lang/hi/blocks.php b/lang/hi/blocks.php
index 2fba846c8..7719ee237 100644
--- a/lang/hi/blocks.php
+++ b/lang/hi/blocks.php
@@ -12,19 +12,19 @@
*/
return [
- 'chatbox' => 'चैट बॉक्स',
- 'click' => 'क्लिक करें',
- 'to-enable-editor' => 'संपादक को सक्षम करने के लिए',
- 'featured-by' => 'द्वारा विशेष रूप से प्रदर्शित',
- 'featured-torrents' => 'फीचर्ड टोरेंट',
+ 'chatbox' => 'चैट बॉक्स',
+ 'click' => 'क्लिक करें',
+ 'to-enable-editor' => 'संपादक को सक्षम करने के लिए',
+ 'featured-by' => 'द्वारा विशेष रूप से प्रदर्शित',
+ 'featured-torrents' => 'फीचर्ड टोरेंट',
'featured-torrents-intro' => 'जब तक आप कर सकते हैं उन्हें पकड़ें!',
- 'featured-until' => 'यह तब तक चित्रित किया जाता है जब तक कि यह धार न हो',
- 'top-torrents' => 'शीर्ष धार',
- 'latest-posts' => 'नवीनतम पोस्ट',
- 'latest-topics' => 'नवीनतम विषय',
- 'active-in-last' => 'आखिरी में सक्रिय',
- 'users-online' => 'प्रयोगकर्ता ऑनलाइन हैं',
- 'check-news' => 'समाचार (दैनिक जांच करें)',
- 'new-news' => 'नयी खबर',
- 'new-torrents' => 'नई धार',
+ 'featured-until' => 'यह तब तक चित्रित किया जाता है जब तक कि यह धार न हो',
+ 'top-torrents' => 'शीर्ष धार',
+ 'latest-posts' => 'नवीनतम पोस्ट',
+ 'latest-topics' => 'नवीनतम विषय',
+ 'active-in-last' => 'आखिरी में सक्रिय',
+ 'users-online' => 'प्रयोगकर्ता ऑनलाइन हैं',
+ 'check-news' => 'समाचार (दैनिक जांच करें)',
+ 'new-news' => 'नयी खबर',
+ 'new-torrents' => 'नई धार',
];
diff --git a/lang/hi/bon.php b/lang/hi/bon.php
index 521f19fbc..3006ddd4b 100644
--- a/lang/hi/bon.php
+++ b/lang/hi/bon.php
@@ -12,44 +12,44 @@
*/
return [
- 'activated' => 'सक्रिय',
- 'active' => 'सक्रिय की गई!',
- 'amount' => 'रकम',
- 'bon' => 'बोन',
- 'bonus' => 'बोनस',
- 'date' => 'दिनांक',
- 'earning' => 'कमाई',
- 'earning-rate' => 'कमाई की इस दर पर आप निम्नलिखित प्रति समय सीमा अर्जित करेंगे।',
- 'earnings' => 'कमाई',
- 'exchange' => 'अदला बदली',
- 'exchange-warning' => 'एक्सचेंज अंतिम हैं, विनिमय करने से पहले कृपया अपनी पसंद की दोबारा जांच करें।',
- 'extended-stats' => 'विस्तारित आँकड़े',
- 'gift' => 'उपहार',
- 'gift-bonus' => 'उपहार बोनस अंक',
- 'gift-to' => 'उपहार बोनस अंक',
- 'gifts' => 'उपहार',
- 'item' => 'मद',
- 'no-refund' => 'कोई रिफंड नहीं!',
- 'per-day' => 'प्रति दिन अंक',
- 'per-hour' => 'प्रति घंटे अंक',
- 'per-minute' => 'अंक प्रति मिनट',
- 'per-month' => 'प्रति माह अंक',
- 'per-second' => 'अंक प्रति सेकंड',
- 'per-week' => 'प्रति सप्ताह अंक',
- 'per-year' => 'प्रति वर्ष अंक',
- 'points' => 'अंक',
- 'receiver' => 'रिसीवर',
- 'review-seeds' => 'सभी बीज टॉरेंट्स की समीक्षा करें',
- 'send-gift' => 'उपहार भेजें',
- 'sender' => 'प्रेषक',
- 'store' => 'दुकान',
- 'tips' => 'टिप्स',
- 'total' => 'कुल आय',
- 'total-gifts' => 'कुल बॉन उपहार में',
- 'total-tips' => 'टोटल बोन टिप्स में',
+ 'activated' => 'सक्रिय',
+ 'active' => 'सक्रिय की गई!',
+ 'amount' => 'रकम',
+ 'bon' => 'बोन',
+ 'bonus' => 'बोनस',
+ 'date' => 'दिनांक',
+ 'earning' => 'कमाई',
+ 'earning-rate' => 'कमाई की इस दर पर आप निम्नलिखित प्रति समय सीमा अर्जित करेंगे।',
+ 'earnings' => 'कमाई',
+ 'exchange' => 'अदला बदली',
+ 'exchange-warning' => 'एक्सचेंज अंतिम हैं, विनिमय करने से पहले कृपया अपनी पसंद की दोबारा जांच करें।',
+ 'extended-stats' => 'विस्तारित आँकड़े',
+ 'gift' => 'उपहार',
+ 'gift-bonus' => 'उपहार बोनस अंक',
+ 'gift-to' => 'उपहार बोनस अंक',
+ 'gifts' => 'उपहार',
+ 'item' => 'मद',
+ 'no-refund' => 'कोई रिफंड नहीं!',
+ 'per-day' => 'प्रति दिन अंक',
+ 'per-hour' => 'प्रति घंटे अंक',
+ 'per-minute' => 'अंक प्रति मिनट',
+ 'per-month' => 'प्रति माह अंक',
+ 'per-second' => 'अंक प्रति सेकंड',
+ 'per-week' => 'प्रति सप्ताह अंक',
+ 'per-year' => 'प्रति वर्ष अंक',
+ 'points' => 'अंक',
+ 'receiver' => 'रिसीवर',
+ 'review-seeds' => 'सभी बीज टॉरेंट्स की समीक्षा करें',
+ 'send-gift' => 'उपहार भेजें',
+ 'sender' => 'प्रेषक',
+ 'store' => 'दुकान',
+ 'tips' => 'टिप्स',
+ 'total' => 'कुल आय',
+ 'total-gifts' => 'कुल बॉन उपहार में',
+ 'total-tips' => 'टोटल बोन टिप्स में',
'you-have-received-gifts' => 'आपको प्राप्त हुआ है',
- 'you-have-sent-gifts' => 'तुमने भेज दिया',
- 'you-have-received-tips' => 'आपको प्राप्त हुआ है',
- 'you-have-sent-tips' => 'तुमने भेज दिया',
- 'your-points' => 'आपके अंक',
+ 'you-have-sent-gifts' => 'तुमने भेज दिया',
+ 'you-have-received-tips' => 'आपको प्राप्त हुआ है',
+ 'you-have-sent-tips' => 'तुमने भेज दिया',
+ 'your-points' => 'आपके अंक',
];
diff --git a/lang/hi/bot.php b/lang/hi/bot.php
index 347d01e19..ab205b7b0 100644
--- a/lang/hi/bot.php
+++ b/lang/hi/bot.php
@@ -12,15 +12,15 @@
*/
return [
- 'about' => 'के बारे में',
- 'bot' => 'बॉट',
- 'bots' => 'बॉट',
- 'color' => 'रंग',
- 'command' => 'आदेश',
- 'edit-bot' => 'बॉट संपादित करें',
+ 'about' => 'के बारे में',
+ 'bot' => 'बॉट',
+ 'bots' => 'बॉट',
+ 'color' => 'रंग',
+ 'command' => 'आदेश',
+ 'edit-bot' => 'बॉट संपादित करें',
'emoji-code' => 'इमोजी कोड',
- 'help' => 'मदद',
- 'icon' => 'चिह्न',
- 'info' => 'जानकारी',
- 'name' => 'नाम',
+ 'help' => 'मदद',
+ 'icon' => 'चिह्न',
+ 'info' => 'जानकारी',
+ 'name' => 'नाम',
];
diff --git a/lang/hi/bug.php b/lang/hi/bug.php
index 2ec312d38..8eba2d1fc 100644
--- a/lang/hi/bug.php
+++ b/lang/hi/bug.php
@@ -12,15 +12,15 @@
*/
return [
- 'bug-report' => 'बग रिपोर्ट',
+ 'bug-report' => 'बग रिपोर्ट',
'bug-report-description' => 'साइट बग की रिपोर्ट करें',
- 'enter-description' => 'यथासंभव समस्या का वर्णन करें',
- 'enter-email' => 'अपना ईमेल दर्ज करें',
- 'enter-title' => 'कृपया एक उचित शीर्षक चुनें',
- 'enter-username' => 'अपने उपयोगकर्ता नाम दर्ज करें',
- 'high' => 'उच्च',
- 'low' => 'कम',
- 'priority' => 'प्राथमिकता',
- 'priority-description' => 'यदि साइट वास्तव में उपयोग करने के लिए बग एक समस्या है, तो केवल बहुत अधिक चुनें।',
- 'very-high' => 'बहुत ऊँचा',
+ 'enter-description' => 'यथासंभव समस्या का वर्णन करें',
+ 'enter-email' => 'अपना ईमेल दर्ज करें',
+ 'enter-title' => 'कृपया एक उचित शीर्षक चुनें',
+ 'enter-username' => 'अपने उपयोगकर्ता नाम दर्ज करें',
+ 'high' => 'उच्च',
+ 'low' => 'कम',
+ 'priority' => 'प्राथमिकता',
+ 'priority-description' => 'यदि साइट वास्तव में उपयोग करने के लिए बग एक समस्या है, तो केवल बहुत अधिक चुनें।',
+ 'very-high' => 'बहुत ऊँचा',
];
diff --git a/lang/hi/common.php b/lang/hi/common.php
index dc2e8f9a6..08ddec9d0 100644
--- a/lang/hi/common.php
+++ b/lang/hi/common.php
@@ -12,179 +12,179 @@
*/
return [
- 'a-an-art' => '',
- 'about' => 'हमारे बारे में',
- 'account' => 'लेखा',
- 'achievement-title' => 'बहुत बढ़िया',
+ 'a-an-art' => '',
+ 'about' => 'हमारे बारे में',
+ 'account' => 'लेखा',
+ 'achievement-title' => 'बहुत बढ़िया',
'achievement-unlocked' => 'आपने "उपलब्धि: नाम" को अनलॉक किया',
- 'active' => 'सक्रिय',
- 'active-warning' => 'सक्रिय चेतावनी',
- 'add' => 'जोड़ना',
- 'added' => 'जोड़ा गया',
- 'amount' => 'रकम',
- 'anonymous' => 'गुमनाम',
- 'author' => 'लेखक',
- 'balance' => 'संतुलन',
- 'blacklist' => 'ग्राहक ब्लैक लिस्ट',
- 'buffer' => 'बफर',
- 'bug' => 'गलती सूचित करें',
- 'but' => 'परंतु',
- 'cancel' => 'रद्द करना',
- 'category' => 'वर्ग',
- 'categories' => 'श्रेणियाँ',
- 'close' => 'बंद करे',
- 'comment' => 'टिप्पणी',
- 'comments' => 'टिप्पणियाँ',
- 'community' => 'समुदाय',
- 'contact' => 'संपर्क करें',
- 'contact-desc' => 'यह संपर्क अनुरोध स्वामी को भेजा जाएगा और जितनी जल्दी हो सके आपके पास वापस आ जाएगा',
- 'contact-header' => 'नमस्ते',
- 'create' => 'सर्जन करना',
- 'created_at' => 'पर बनाया गया',
- 'day' => 'दिन',
- 'delete' => 'हटाना',
- 'delete-your-comment' => 'अपनी टिप्पणी हटाएं',
- 'description' => 'विवरण',
- 'direction' => 'दिशा',
- 'disable' => 'अक्षम',
- 'doubleup_activated' => 'ग्लोबल डबल अपलोड मोड सक्रिय',
- 'download' => 'डाउनलोड',
- 'edit' => 'संपादित करें',
- 'edit-your-comment' => 'अपनी टिप्पणी संपादित करें',
- 'email' => 'ईमेल',
- 'email-blacklist' => 'ईमेल ब्लैकलिस्ट करें',
- 'email-whitelist' => 'ईमेल श्वेतसूची',
+ 'active' => 'सक्रिय',
+ 'active-warning' => 'सक्रिय चेतावनी',
+ 'add' => 'जोड़ना',
+ 'added' => 'जोड़ा गया',
+ 'amount' => 'रकम',
+ 'anonymous' => 'गुमनाम',
+ 'author' => 'लेखक',
+ 'balance' => 'संतुलन',
+ 'blacklist' => 'ग्राहक ब्लैक लिस्ट',
+ 'buffer' => 'बफर',
+ 'bug' => 'गलती सूचित करें',
+ 'but' => 'परंतु',
+ 'cancel' => 'रद्द करना',
+ 'category' => 'वर्ग',
+ 'categories' => 'श्रेणियाँ',
+ 'close' => 'बंद करे',
+ 'comment' => 'टिप्पणी',
+ 'comments' => 'टिप्पणियाँ',
+ 'community' => 'समुदाय',
+ 'contact' => 'संपर्क करें',
+ 'contact-desc' => 'यह संपर्क अनुरोध स्वामी को भेजा जाएगा और जितनी जल्दी हो सके आपके पास वापस आ जाएगा',
+ 'contact-header' => 'नमस्ते',
+ 'create' => 'सर्जन करना',
+ 'created_at' => 'पर बनाया गया',
+ 'day' => 'दिन',
+ 'delete' => 'हटाना',
+ 'delete-your-comment' => 'अपनी टिप्पणी हटाएं',
+ 'description' => 'विवरण',
+ 'direction' => 'दिशा',
+ 'disable' => 'अक्षम',
+ 'doubleup_activated' => 'ग्लोबल डबल अपलोड मोड सक्रिय',
+ 'download' => 'डाउनलोड',
+ 'edit' => 'संपादित करें',
+ 'edit-your-comment' => 'अपनी टिप्पणी संपादित करें',
+ 'email' => 'ईमेल',
+ 'email-blacklist' => 'ईमेल ब्लैकलिस्ट करें',
+ 'email-whitelist' => 'ईमेल श्वेतसूची',
'email-list-notactive' => 'ईमेल श्वेतसूची / ब्लैकलिस्ट प्रणाली सक्रिय नहीं है',
- 'enable' => 'सक्षम करें',
- 'enter' => 'दर्ज',
- 'error' => 'त्रुटि',
- 'everyday' => 'रोज रोज',
- 'expired' => 'समय सीमा समाप्त',
- 'extra' => 'अतिरिक्त',
- 'extra-stats' => 'अतिरिक्त आँकड़े',
- 'faq' => 'सामान्य प्रश्न',
- 'files' => 'फ़ाइलें',
- 'fl_token' => 'फ्रीलेक टोकन',
- 'fl_tokens' => 'फ़्रीलेक टोकन',
- 'for' => 'के लिये',
- 'forum' => 'मंच',
- 'free' => 'मुक्त',
- 'freeleech_activated' => 'ग्लोबल फ्रीलेक मोड सक्रिय',
- 'global' => 'वैश्विक',
- 'group' => 'समूह',
- 'groups' => 'समूह',
- 'hidden' => 'छिपा हुआ',
- 'high-speeds' => 'उच्च गति',
- 'home' => 'होम',
- 'hot' => 'गरम!',
- 'hour' => 'घंटा',
- 'huge' => 'विशाल',
- 'info' => 'जानकारी',
- 'internal' => 'अंदर का',
- 'ip' => 'आईपी',
- 'is-allowed' => 'की अनुमति है',
- 'large' => 'विशाल',
- 'latest' => 'नवीनतम',
- 'latest-posts' => 'नवीनतम पोस्ट',
- 'latest-topics' => 'नवीनतम विषय',
- 'legal' => 'कानूनी',
- 'legend' => 'किंवदंती',
- 'lists' => 'सूचियाँ',
- 'lock-account' => 'खाता लॉक करें',
- 'logout' => 'लोग आउट',
- 'members' => 'सदस्य',
- 'message' => 'संदेश',
- 'minute' => 'मिनट',
- 'moderated-by' => 'द्वारा संचालित',
- 'moderation' => 'संयम',
- 'moderation-approve' => 'मंजूर',
- 'moderation-postpone' => 'टाल देना',
- 'moderation-reject' => 'अस्वीकार',
- 'month' => 'महीना',
- 'months' => 'महीने',
- 'my' => 'मेरे',
- 'name' => 'नाम',
- 'navigation' => 'पथ प्रदर्शन',
- 'new' => 'नया!',
- 'new-adj' => 'नया',
- 'news' => 'समाचार',
- 'next' => 'आगामी',
- 'no' => 'नहीं',
- 'no-comments' => 'अभी कोई टिप्पणी नही',
- 'no-result' => 'क्वेरी के लिए डेटाबेस में कोई परिणाम नहीं है',
- 'notifications' => 'सूचनाएं',
- 'older-than' => 'से अधिक पुराना',
- 'oldest' => 'सबसे पुराना',
- 'openreg_activated' => 'खुला पंजीकरण सक्रिय है',
- 'order-by' => 'द्वारा आदेश',
- 'other' => 'अन्य',
- 'pages' => 'पेज',
- 'password' => 'पारण शब्द',
- 'patron' => 'एक संरक्षक बनें',
- 'pending-torrents' => 'लंबित धार',
- 'personal' => 'निजी',
- 'plural-suffix' => 'रों',
- 'port' => 'बंदरगाह',
- 'position' => 'पद',
- 'posts' => 'पोस्ट',
- 'powered-by' => 'UNIT3D द्वारा संचालित',
- 'preview' => 'पूर्वावलोकन',
- 'previous' => 'पिछला',
- 'progress' => 'प्रगति',
- 'publish' => 'प्रकाशित करना',
- 'quantity' => 'मात्रा',
- 'quick-search' => 'त्वरित खोज',
- 'ratio' => 'अनुपात',
- 'reason' => 'कारण',
- 'remove' => 'हटाना',
- 'report' => 'रिपोर्ट',
- 'resend' => 'पुन: भेजें',
- 'reporter' => 'रिपोर्टर',
- 'required' => 'अपेक्षित',
- 'results' => 'परिणाम',
- 'rss-system' => 'आरएसएस प्रणाली',
- 'rules' => 'नियम',
- 'save' => 'बचाना',
- 'search' => 'खोज',
- 'search-results' => 'खोज परिणाम',
- 'search-results-desc' => 'कृपया नीचे अपना परिणाम देखें',
- 'second' => 'दूसरा',
- 'select' => 'चुनते हैं',
- 'sort' => 'तरह',
- 'special' => 'विशेष',
- 'staff' => 'कर्मचारी',
- 'staff-tools' => 'स्टाफ उपकरण',
- 'stats' => 'आँकड़े',
- 'status' => 'स्थिति',
- 'sticked' => 'स्टिक किया',
- 'submit' => 'जमा करें',
- 'subscriptions' => 'सदस्यता',
- 'teams' => 'टीमें',
- 'terms' => 'उपयोग की शर्तें',
- 'times' => 'टाइम्स',
- 'title' => 'शीर्षक',
- 'top-bountied' => 'शीर्ष बाउंटेड',
- 'topics' => 'विषय',
- 'tracker-codes' => 'ट्रैकर कोड',
- 'type' => 'प्रकार',
- 'type-verb' => 'प्रकार',
- 'types' => 'प्रकार',
- 'genre' => 'शैली',
- 'genres' => 'शैलियां',
- 'action' => 'कार्य',
- 'actions' => 'क्रिया',
- 'unknown' => 'अनजान',
+ 'enable' => 'सक्षम करें',
+ 'enter' => 'दर्ज',
+ 'error' => 'त्रुटि',
+ 'everyday' => 'रोज रोज',
+ 'expired' => 'समय सीमा समाप्त',
+ 'extra' => 'अतिरिक्त',
+ 'extra-stats' => 'अतिरिक्त आँकड़े',
+ 'faq' => 'सामान्य प्रश्न',
+ 'files' => 'फ़ाइलें',
+ 'fl_token' => 'फ्रीलेक टोकन',
+ 'fl_tokens' => 'फ़्रीलेक टोकन',
+ 'for' => 'के लिये',
+ 'forum' => 'मंच',
+ 'free' => 'मुक्त',
+ 'freeleech_activated' => 'ग्लोबल फ्रीलेक मोड सक्रिय',
+ 'global' => 'वैश्विक',
+ 'group' => 'समूह',
+ 'groups' => 'समूह',
+ 'hidden' => 'छिपा हुआ',
+ 'high-speeds' => 'उच्च गति',
+ 'home' => 'होम',
+ 'hot' => 'गरम!',
+ 'hour' => 'घंटा',
+ 'huge' => 'विशाल',
+ 'info' => 'जानकारी',
+ 'internal' => 'अंदर का',
+ 'ip' => 'आईपी',
+ 'is-allowed' => 'की अनुमति है',
+ 'large' => 'विशाल',
+ 'latest' => 'नवीनतम',
+ 'latest-posts' => 'नवीनतम पोस्ट',
+ 'latest-topics' => 'नवीनतम विषय',
+ 'legal' => 'कानूनी',
+ 'legend' => 'किंवदंती',
+ 'lists' => 'सूचियाँ',
+ 'lock-account' => 'खाता लॉक करें',
+ 'logout' => 'लोग आउट',
+ 'members' => 'सदस्य',
+ 'message' => 'संदेश',
+ 'minute' => 'मिनट',
+ 'moderated-by' => 'द्वारा संचालित',
+ 'moderation' => 'संयम',
+ 'moderation-approve' => 'मंजूर',
+ 'moderation-postpone' => 'टाल देना',
+ 'moderation-reject' => 'अस्वीकार',
+ 'month' => 'महीना',
+ 'months' => 'महीने',
+ 'my' => 'मेरे',
+ 'name' => 'नाम',
+ 'navigation' => 'पथ प्रदर्शन',
+ 'new' => 'नया!',
+ 'new-adj' => 'नया',
+ 'news' => 'समाचार',
+ 'next' => 'आगामी',
+ 'no' => 'नहीं',
+ 'no-comments' => 'अभी कोई टिप्पणी नही',
+ 'no-result' => 'क्वेरी के लिए डेटाबेस में कोई परिणाम नहीं है',
+ 'notifications' => 'सूचनाएं',
+ 'older-than' => 'से अधिक पुराना',
+ 'oldest' => 'सबसे पुराना',
+ 'openreg_activated' => 'खुला पंजीकरण सक्रिय है',
+ 'order-by' => 'द्वारा आदेश',
+ 'other' => 'अन्य',
+ 'pages' => 'पेज',
+ 'password' => 'पारण शब्द',
+ 'patron' => 'एक संरक्षक बनें',
+ 'pending-torrents' => 'लंबित धार',
+ 'personal' => 'निजी',
+ 'plural-suffix' => 'रों',
+ 'port' => 'बंदरगाह',
+ 'position' => 'पद',
+ 'posts' => 'पोस्ट',
+ 'powered-by' => 'UNIT3D द्वारा संचालित',
+ 'preview' => 'पूर्वावलोकन',
+ 'previous' => 'पिछला',
+ 'progress' => 'प्रगति',
+ 'publish' => 'प्रकाशित करना',
+ 'quantity' => 'मात्रा',
+ 'quick-search' => 'त्वरित खोज',
+ 'ratio' => 'अनुपात',
+ 'reason' => 'कारण',
+ 'remove' => 'हटाना',
+ 'report' => 'रिपोर्ट',
+ 'resend' => 'पुन: भेजें',
+ 'reporter' => 'रिपोर्टर',
+ 'required' => 'अपेक्षित',
+ 'results' => 'परिणाम',
+ 'rss-system' => 'आरएसएस प्रणाली',
+ 'rules' => 'नियम',
+ 'save' => 'बचाना',
+ 'search' => 'खोज',
+ 'search-results' => 'खोज परिणाम',
+ 'search-results-desc' => 'कृपया नीचे अपना परिणाम देखें',
+ 'second' => 'दूसरा',
+ 'select' => 'चुनते हैं',
+ 'sort' => 'तरह',
+ 'special' => 'विशेष',
+ 'staff' => 'कर्मचारी',
+ 'staff-tools' => 'स्टाफ उपकरण',
+ 'stats' => 'आँकड़े',
+ 'status' => 'स्थिति',
+ 'sticked' => 'स्टिक किया',
+ 'submit' => 'जमा करें',
+ 'subscriptions' => 'सदस्यता',
+ 'teams' => 'टीमें',
+ 'terms' => 'उपयोग की शर्तें',
+ 'times' => 'टाइम्स',
+ 'title' => 'शीर्षक',
+ 'top-bountied' => 'शीर्ष बाउंटेड',
+ 'topics' => 'विषय',
+ 'tracker-codes' => 'ट्रैकर कोड',
+ 'type' => 'प्रकार',
+ 'type-verb' => 'प्रकार',
+ 'types' => 'प्रकार',
+ 'genre' => 'शैली',
+ 'genres' => 'शैलियां',
+ 'action' => 'कार्य',
+ 'actions' => 'क्रिया',
+ 'unknown' => 'अनजान',
'unlocked-achievement' => 'आपने अनलॉक किया: उपलब्धि उपलब्धि',
- 'upload' => 'अपलोड',
- 'upload-guide' => 'गाइड अपलोड करें',
- 'user' => 'उपयोगकर्ता',
- 'username' => 'उपयोगकर्ता नाम',
- 'users' => 'उपयोगकर्ता',
- 'view' => 'राय',
- 'view-all' => 'सभी को देखें',
- 'warnings' => 'चेतावनी',
- 'year' => 'साल',
- 'yes' => 'हाँ',
- 'your' => 'तुंहारे',
- 'your-comment' => 'आपकी टिप्पणी',
+ 'upload' => 'अपलोड',
+ 'upload-guide' => 'गाइड अपलोड करें',
+ 'user' => 'उपयोगकर्ता',
+ 'username' => 'उपयोगकर्ता नाम',
+ 'users' => 'उपयोगकर्ता',
+ 'view' => 'राय',
+ 'view-all' => 'सभी को देखें',
+ 'warnings' => 'चेतावनी',
+ 'year' => 'साल',
+ 'yes' => 'हाँ',
+ 'your' => 'तुंहारे',
+ 'your-comment' => 'आपकी टिप्पणी',
];
diff --git a/lang/hi/email.php b/lang/hi/email.php
index dc7fd1bf8..b768c7d27 100644
--- a/lang/hi/email.php
+++ b/lang/hi/email.php
@@ -12,46 +12,46 @@
*/
return [
- 'activate-account' => 'खाते को सक्रिय करें',
- 'ban-reason' => 'कारण',
- 'banned-footer' => 'नियमों का पालन न करने के लिए आपको जो कुछ मिलता है',
- 'banned-header' => 'आप पर प्रतिबंध लगा दिया गया है',
- 'bug-description' => 'संकट',
- 'bug-footer' => 'उस गंदगी को ठीक करो',
- 'bug-header' => 'से नई बग रिपोर्ट',
- 'bug-priority' => 'प्राथमिकता',
- 'bug-title' => 'बग शीर्षक',
- 'contact-header' => 'से नया संपर्क मेल',
- 'contact-message' => 'संदेश',
- 'contact-name' => 'नाम',
+ 'activate-account' => 'खाते को सक्रिय करें',
+ 'ban-reason' => 'कारण',
+ 'banned-footer' => 'नियमों का पालन न करने के लिए आपको जो कुछ मिलता है',
+ 'banned-header' => 'आप पर प्रतिबंध लगा दिया गया है',
+ 'bug-description' => 'संकट',
+ 'bug-footer' => 'उस गंदगी को ठीक करो',
+ 'bug-header' => 'से नई बग रिपोर्ट',
+ 'bug-priority' => 'प्राथमिकता',
+ 'bug-title' => 'बग शीर्षक',
+ 'contact-header' => 'से नया संपर्क मेल',
+ 'contact-message' => 'संदेश',
+ 'contact-name' => 'नाम',
'fail-login-greeting' => 'खाता लॉगिन विफल!',
- 'fail-login-line1' => 'आपके खाते के लिए एक असफल लॉगिन का पता चला था।',
- 'fail-login-line2' => 'यह अनुरोध उस समय: ip (: host) से उत्पन्न हुआ है',
- 'fail-login-subject' => 'लॉग इन अधिसूचना को विफल कर दिया',
- 'footer-link' => 'यदि आपको क्लिक करने में समस्या हो रही है: कार्रवाईटेक्स्ट बटन, नीचे दिए गए URL को अपने वेब ब्राउज़र में कॉपी और पेस्ट करें:',
- 'invite-header' => 'को निमंत्रण',
- 'invite-invited' => 'आपको आमंत्रित किया गया है',
- 'invite-message' => 'संदेश',
- 'invite-signup' => 'अभी साइनअप करें',
- 'newreply-header' => 'आपके विषय में नया उत्तर है',
- 'newreply-message' => 'संदेश',
- 'newreply-replied' => 'अपने विषय पर उत्तर दिया है',
- 'newreply-view' => 'अब इसे देखो',
- 'no-email-found' => 'हमें यह ईमेल हमारे सिस्टम में नहीं मिला!',
- 'register-code' => 'अपना खाता सक्रियण पूरा करने के लिए नीचे दिए गए बटन पर क्लिक करें',
- 'register-footer' => 'यदि ऊपर दिया गया बटन काम नहीं करता है, तो URL को अपने ब्राउज़र एड्रेस बार में कॉपी और पेस्ट करें',
- 'register-header' => 'नमस्ते! साइन अप करने के लिए धन्यवाद',
- 'report-comment' => 'टिप्पणी',
- 'report-email' => 'ईमेल',
- 'report-header' => 'Hi Admin, A लिंक पर सूचना दी गई है',
- 'report-link' => 'संपर्क',
- 'report-link-hash' => 'वास्तविक लिंक',
- 'thanks' => 'उपयोग करने के लिए आपका धन्यवाद',
- 'unban-footer' => 'वापसी पर स्वागत है!',
- 'unban-header' => 'यू अनबिनडेड',
- 'unban-reason' => 'कारण',
- 'username-reminder' => 'आपने हाल ही में हमें अपने ऐप पर अपने उपयोगकर्ता नाम के लिए एक अनुरोध भेजा है। आपका यूज़रनेम है',
- 'username-sent' => 'आपका उपयोगकर्ता नाम आपके ईमेल पते पर भेज दिया गया है!',
- 'disabled-header' => 'आपके खाते को निष्क्रिय कर दिया गया है',
- 'pruned-header' => 'आपका खाता बन गया है',
+ 'fail-login-line1' => 'आपके खाते के लिए एक असफल लॉगिन का पता चला था।',
+ 'fail-login-line2' => 'यह अनुरोध उस समय: ip (: host) से उत्पन्न हुआ है',
+ 'fail-login-subject' => 'लॉग इन अधिसूचना को विफल कर दिया',
+ 'footer-link' => 'यदि आपको क्लिक करने में समस्या हो रही है: कार्रवाईटेक्स्ट बटन, नीचे दिए गए URL को अपने वेब ब्राउज़र में कॉपी और पेस्ट करें:',
+ 'invite-header' => 'को निमंत्रण',
+ 'invite-invited' => 'आपको आमंत्रित किया गया है',
+ 'invite-message' => 'संदेश',
+ 'invite-signup' => 'अभी साइनअप करें',
+ 'newreply-header' => 'आपके विषय में नया उत्तर है',
+ 'newreply-message' => 'संदेश',
+ 'newreply-replied' => 'अपने विषय पर उत्तर दिया है',
+ 'newreply-view' => 'अब इसे देखो',
+ 'no-email-found' => 'हमें यह ईमेल हमारे सिस्टम में नहीं मिला!',
+ 'register-code' => 'अपना खाता सक्रियण पूरा करने के लिए नीचे दिए गए बटन पर क्लिक करें',
+ 'register-footer' => 'यदि ऊपर दिया गया बटन काम नहीं करता है, तो URL को अपने ब्राउज़र एड्रेस बार में कॉपी और पेस्ट करें',
+ 'register-header' => 'नमस्ते! साइन अप करने के लिए धन्यवाद',
+ 'report-comment' => 'टिप्पणी',
+ 'report-email' => 'ईमेल',
+ 'report-header' => 'Hi Admin, A लिंक पर सूचना दी गई है',
+ 'report-link' => 'संपर्क',
+ 'report-link-hash' => 'वास्तविक लिंक',
+ 'thanks' => 'उपयोग करने के लिए आपका धन्यवाद',
+ 'unban-footer' => 'वापसी पर स्वागत है!',
+ 'unban-header' => 'यू अनबिनडेड',
+ 'unban-reason' => 'कारण',
+ 'username-reminder' => 'आपने हाल ही में हमें अपने ऐप पर अपने उपयोगकर्ता नाम के लिए एक अनुरोध भेजा है। आपका यूज़रनेम है',
+ 'username-sent' => 'आपका उपयोगकर्ता नाम आपके ईमेल पते पर भेज दिया गया है!',
+ 'disabled-header' => 'आपके खाते को निष्क्रिय कर दिया गया है',
+ 'pruned-header' => 'आपका खाता बन गया है',
];
diff --git a/lang/hi/forum.php b/lang/hi/forum.php
index 004352670..53576f2e9 100644
--- a/lang/hi/forum.php
+++ b/lang/hi/forum.php
@@ -12,63 +12,63 @@
*/
return [
- 'action' => 'कार्य',
- 'activity' => 'गतिविधि',
- 'approved' => 'मंजूर की',
- 'author' => 'लेखक',
- 'bug' => 'बग',
- 'category-quick-search' => 'विषय का नाम त्वरित खोज (श्रेणी के भीतर)',
- 'close-topic' => 'टॉपिक को लॉक करें',
- 'closed' => 'बन्द है',
- 'create-new-topic' => 'नया विषय बनाएँ',
- 'created' => 'बनाया था',
- 'current' => 'वर्तमान',
- 'delete-topic' => 'यह विषय हटाएं',
- 'denied' => 'निषेध',
- 'dislike-post' => 'इस पोस्ट को डाउनलोड करें',
- 'display-forum' => 'में विषय दिखाएं',
- 'edit-post' => 'संपादित पोस्ट',
- 'edit-topic' => 'विषय संपादित करें',
- 'forum' => 'मंच',
- 'forums' => 'मंच',
- 'implemented' => 'कार्यान्वित',
- 'in' => 'में',
- 'invalid' => 'अमान्य',
- 'label' => 'लेबल',
- 'label-system' => 'लेबल प्रणाली',
- 'last-message' => 'आखिरी सन्देश',
- 'last-post-info' => 'अंतिम पोस्ट की जानकारी',
- 'latest' => 'नवीनतम',
- 'like-post' => 'इस डाक की तरह',
- 'meta-category' => 'श्रेणी में मंचों की सूची',
- 'moderation' => 'संयम',
- 'name' => 'नाम',
- 'not-connected' => 'आप कनेक्ट होना चाहिए',
- 'not-subscribed' => 'सब्स्क्राइब्ड नहीं',
- 'open' => 'खुला',
- 'open-topic' => 'इस विषय को खोलें',
- 'permalink' => 'Permalink',
- 'pin' => 'पिन',
- 'post' => 'पद',
- 'post-quick-search' => 'पोस्ट बॉडी क्विक सर्च',
- 'posts' => 'पोस्ट',
- 'quote' => 'उद्धरण',
- 'read-topic' => 'टॉपिक पढ़ें',
- 'replies' => 'जवाब',
- 'send-new-topic' => 'इस विषय को बचाएं',
- 'solved' => 'हल किया',
- 'state' => 'राज्य',
- 'stats' => 'आँकड़े',
- 'subscribed' => 'सदस्यता लिया',
+ 'action' => 'कार्य',
+ 'activity' => 'गतिविधि',
+ 'approved' => 'मंजूर की',
+ 'author' => 'लेखक',
+ 'bug' => 'बग',
+ 'category-quick-search' => 'विषय का नाम त्वरित खोज (श्रेणी के भीतर)',
+ 'close-topic' => 'टॉपिक को लॉक करें',
+ 'closed' => 'बन्द है',
+ 'create-new-topic' => 'नया विषय बनाएँ',
+ 'created' => 'बनाया था',
+ 'current' => 'वर्तमान',
+ 'delete-topic' => 'यह विषय हटाएं',
+ 'denied' => 'निषेध',
+ 'dislike-post' => 'इस पोस्ट को डाउनलोड करें',
+ 'display-forum' => 'में विषय दिखाएं',
+ 'edit-post' => 'संपादित पोस्ट',
+ 'edit-topic' => 'विषय संपादित करें',
+ 'forum' => 'मंच',
+ 'forums' => 'मंच',
+ 'implemented' => 'कार्यान्वित',
+ 'in' => 'में',
+ 'invalid' => 'अमान्य',
+ 'label' => 'लेबल',
+ 'label-system' => 'लेबल प्रणाली',
+ 'last-message' => 'आखिरी सन्देश',
+ 'last-post-info' => 'अंतिम पोस्ट की जानकारी',
+ 'latest' => 'नवीनतम',
+ 'like-post' => 'इस डाक की तरह',
+ 'meta-category' => 'श्रेणी में मंचों की सूची',
+ 'moderation' => 'संयम',
+ 'name' => 'नाम',
+ 'not-connected' => 'आप कनेक्ट होना चाहिए',
+ 'not-subscribed' => 'सब्स्क्राइब्ड नहीं',
+ 'open' => 'खुला',
+ 'open-topic' => 'इस विषय को खोलें',
+ 'permalink' => 'Permalink',
+ 'pin' => 'पिन',
+ 'post' => 'पद',
+ 'post-quick-search' => 'पोस्ट बॉडी क्विक सर्च',
+ 'posts' => 'पोस्ट',
+ 'quote' => 'उद्धरण',
+ 'read-topic' => 'टॉपिक पढ़ें',
+ 'replies' => 'जवाब',
+ 'send-new-topic' => 'इस विषय को बचाएं',
+ 'solved' => 'हल किया',
+ 'state' => 'राज्य',
+ 'stats' => 'आँकड़े',
+ 'subscribed' => 'सदस्यता लिया',
'subscription-quick-search' => 'विषय का नाम त्वरित खोज (सदस्यता के भीतर)',
- 'suggestion' => 'सुझाव',
- 'topic' => 'विषय',
- 'topic-closed' => 'यह विषय बंद है',
- 'topic-name' => 'विषय का नाम',
- 'topic-quick-search' => 'विषय नाम त्वरित खोज',
- 'topic-title' => 'इस विषय का शीर्षक',
- 'topics' => 'विषय',
- 'unpin' => 'अनपिन',
- 'view-all' => 'सभी विषय देखें',
- 'views' => 'दृश्य',
+ 'suggestion' => 'सुझाव',
+ 'topic' => 'विषय',
+ 'topic-closed' => 'यह विषय बंद है',
+ 'topic-name' => 'विषय का नाम',
+ 'topic-quick-search' => 'विषय नाम त्वरित खोज',
+ 'topic-title' => 'इस विषय का शीर्षक',
+ 'topics' => 'विषय',
+ 'unpin' => 'अनपिन',
+ 'view-all' => 'सभी विषय देखें',
+ 'views' => 'दृश्य',
];
diff --git a/lang/hi/graveyard.php b/lang/hi/graveyard.php
index 029c1aded..2b4288f85 100644
--- a/lang/hi/graveyard.php
+++ b/lang/hi/graveyard.php
@@ -12,15 +12,15 @@
*/
return [
- 'dead' => 'मृत',
- 'graveyard' => 'कब्रस्तान',
- 'guidelines' => 'दिशा-निर्देश',
+ 'dead' => 'मृत',
+ 'graveyard' => 'कब्रस्तान',
+ 'guidelines' => 'दिशा-निर्देश',
'guidelines-content' => '1) आप अपने खुद के अपलोड को फिर से जीवित नहीं कर सकते।
2) कुछ ऐसा न करें जिसे आप भी नहीं कर सकते।',
- 'howto' => 'विधर्म नियम',
- 'howto-desc1' => 'आपको बीज देना चाहिए : एक रसीले चकत्ते के लिए 30 दिनों का नाम । जिस स्थिति में जब आपका वर्तमान समय',
- 'howto-desc2' => 'आपको पुण्य मिलेगा',
- 'howto-hits' => 'हिट्स',
- 'pending' => 'अपूर्ण',
- 'resurrect' => 'पुनर्निर्माण करें',
- 'reward' => 'फ़्रीलेक टोकन',
+ 'howto' => 'विधर्म नियम',
+ 'howto-desc1' => 'आपको बीज देना चाहिए : एक रसीले चकत्ते के लिए 30 दिनों का नाम । जिस स्थिति में जब आपका वर्तमान समय',
+ 'howto-desc2' => 'आपको पुण्य मिलेगा',
+ 'howto-hits' => 'हिट्स',
+ 'pending' => 'अपूर्ण',
+ 'resurrect' => 'पुनर्निर्माण करें',
+ 'reward' => 'फ़्रीलेक टोकन',
];
diff --git a/lang/hi/notification.php b/lang/hi/notification.php
index d8898de5e..9e15093e1 100644
--- a/lang/hi/notification.php
+++ b/lang/hi/notification.php
@@ -12,14 +12,14 @@
*/
return [
- 'date' => 'दिनांक',
- 'delete' => 'हटाना',
- 'delete-all' => 'सभी सूचनाएं हटाएं',
- 'mark-all-read' => 'सभी को पढ़ा हुआ मार्क करें',
- 'mark-read' => 'पढ़े हुए का चिह्न',
- 'message' => 'संदेश',
+ 'date' => 'दिनांक',
+ 'delete' => 'हटाना',
+ 'delete-all' => 'सभी सूचनाएं हटाएं',
+ 'mark-all-read' => 'सभी को पढ़ा हुआ मार्क करें',
+ 'mark-read' => 'पढ़े हुए का चिह्न',
+ 'message' => 'संदेश',
'no-notifications' => 'कोई सूचना नहीं मिली',
- 'notifications' => 'सूचनाएं',
- 'read' => 'पढ़ना',
- 'title' => 'शीर्षक',
+ 'notifications' => 'सूचनाएं',
+ 'read' => 'पढ़ना',
+ 'title' => 'शीर्षक',
];
diff --git a/lang/hi/page.php b/lang/hi/page.php
index b0861d2d5..89154d8bf 100644
--- a/lang/hi/page.php
+++ b/lang/hi/page.php
@@ -12,28 +12,28 @@
*/
return [
- 'aboutus-advantage' => 'लाभ',
- 'aboutus-advantage1' => 'हमारे पास अनुभवी सदस्य और कर्मचारी हैं जो HD वीडियो / ऑडियो और तकनीकी सहायता की दुनिया में पारंगत हैं।',
- 'aboutus-advantage2' => 'फिल्मों और टीवी शो के लिए हमारे व्यापक जुनून के साथ, हम एक ऐसी चीज का सबसे अच्छा चयन भी करते हैं जो सबसे ज्यादा नहीं है - FANRES! एक बड़ा धन्यवाद आप हमारी सामग्री लाने वालों के लिए।',
- 'aboutus-advantage3' => 'जबकि हम साइट को चालू रखने के लिए दान स्वीकार नहीं करते हैं और साइट पर कोई भी पीएम या बैनर नहीं होंगे। हमसे कोई भीख नहीं।',
- 'aboutus-advantage4' => 'हमारा समुदाय अपनी कम उम्र के लिए किसी से पीछे नहीं है। हमारे कर्मचारियों और उपयोगकर्ता के बीच, हमेशा मदद के लिए यहां थे। अपने अनुभव को सुनिश्चित करने के बारे में भावुक थे: शीर्षक कुछ भी अद्भुत नहीं है',
- 'aboutus-advantage5' => 'हमारी सेवा दुनिया भर में कई लोगों द्वारा दैनिक उपयोग की जाती है। Weve ने साबित किया कि हम अपने कोडबेस की कार्यक्षमता और सुरक्षा के बारे में परवाह करते हैं और इस पर भरोसा किया जा सकता है। हमारे डेवलपर्स रोजाना काम करते हैं ताकि वास्तव में नेक्स-जीन कोडबेस प्रदान किया जा सके।',
- 'aboutus-header' => 'नमस्ते',
- 'aboutus-rules' => 'हमें आपसे क्या चाहिए',
- 'aboutus-rules1' => 'समुदाय का एक सक्रिय सदस्य बनने के लिए! इसका मतलब यह है कि उत्पाद में वार्तालाप में शामिल होना, स्वीकृत सामग्री जोड़ना और यदि आप सक्षम हैं तो अन्य उपयोगकर्ताओं की मदद करना',
- 'aboutus-rules2' => 'नियमों को पूरा पढ़ने के लिए और कृपया उनका सम्मान करें!',
- 'aboutus-rules3' => 'सुझाव दें! हम प्रत्येक दिन बेहतर करने के लिए प्रयास कर रहे हैं। हम कहते हैं कि हर सुझाव का उपयोग किया जाएगा, लेकिन यह नए विचारों को देखने के लिए कभी दर्द नहीं होता है।',
- 'aboutus-welcome' => 'के बारे में बात करते हैं',
- 'aboutus-welcome-desc' => ': शीर्षक एक समुदाय-निर्मित मूवी / टीवी / FANRES डेटाबेस है। 2017 के बाद से हमारे अद्भुत समुदाय द्वारा डेटा के हर टुकड़े को जोड़ा गया है: खिताब मजबूत फोकस एचडी सामग्री, एक सक्रिय उपयोगकर्ताबेस, एक भयानक / सुरक्षित कोडबेस और एक सहायक और मैत्रीपूर्ण स्टाफ टीम पर है।',
- 'blacklist-browsers' => 'ब्राउज़र्स',
- 'blacklist-btclient' => 'बिटटोरेंट क्लाइंट',
- 'blacklist-clients' => 'ग्राहकों',
- 'blacklist-desc' => 'निम्नलिखित ब्राउज़रों और बिटटोरेंट ग्राहकों को ब्लैक लिस्टेड / फॉरबिडन फ्रॉम अनाउंसिंग टू: शीर्षक',
- 'blacklist-webbrowser' => 'वेब ब्राउज़र',
+ 'aboutus-advantage' => 'लाभ',
+ 'aboutus-advantage1' => 'हमारे पास अनुभवी सदस्य और कर्मचारी हैं जो HD वीडियो / ऑडियो और तकनीकी सहायता की दुनिया में पारंगत हैं।',
+ 'aboutus-advantage2' => 'फिल्मों और टीवी शो के लिए हमारे व्यापक जुनून के साथ, हम एक ऐसी चीज का सबसे अच्छा चयन भी करते हैं जो सबसे ज्यादा नहीं है - FANRES! एक बड़ा धन्यवाद आप हमारी सामग्री लाने वालों के लिए।',
+ 'aboutus-advantage3' => 'जबकि हम साइट को चालू रखने के लिए दान स्वीकार नहीं करते हैं और साइट पर कोई भी पीएम या बैनर नहीं होंगे। हमसे कोई भीख नहीं।',
+ 'aboutus-advantage4' => 'हमारा समुदाय अपनी कम उम्र के लिए किसी से पीछे नहीं है। हमारे कर्मचारियों और उपयोगकर्ता के बीच, हमेशा मदद के लिए यहां थे। अपने अनुभव को सुनिश्चित करने के बारे में भावुक थे: शीर्षक कुछ भी अद्भुत नहीं है',
+ 'aboutus-advantage5' => 'हमारी सेवा दुनिया भर में कई लोगों द्वारा दैनिक उपयोग की जाती है। Weve ने साबित किया कि हम अपने कोडबेस की कार्यक्षमता और सुरक्षा के बारे में परवाह करते हैं और इस पर भरोसा किया जा सकता है। हमारे डेवलपर्स रोजाना काम करते हैं ताकि वास्तव में नेक्स-जीन कोडबेस प्रदान किया जा सके।',
+ 'aboutus-header' => 'नमस्ते',
+ 'aboutus-rules' => 'हमें आपसे क्या चाहिए',
+ 'aboutus-rules1' => 'समुदाय का एक सक्रिय सदस्य बनने के लिए! इसका मतलब यह है कि उत्पाद में वार्तालाप में शामिल होना, स्वीकृत सामग्री जोड़ना और यदि आप सक्षम हैं तो अन्य उपयोगकर्ताओं की मदद करना',
+ 'aboutus-rules2' => 'नियमों को पूरा पढ़ने के लिए और कृपया उनका सम्मान करें!',
+ 'aboutus-rules3' => 'सुझाव दें! हम प्रत्येक दिन बेहतर करने के लिए प्रयास कर रहे हैं। हम कहते हैं कि हर सुझाव का उपयोग किया जाएगा, लेकिन यह नए विचारों को देखने के लिए कभी दर्द नहीं होता है।',
+ 'aboutus-welcome' => 'के बारे में बात करते हैं',
+ 'aboutus-welcome-desc' => ': शीर्षक एक समुदाय-निर्मित मूवी / टीवी / FANRES डेटाबेस है। 2017 के बाद से हमारे अद्भुत समुदाय द्वारा डेटा के हर टुकड़े को जोड़ा गया है: खिताब मजबूत फोकस एचडी सामग्री, एक सक्रिय उपयोगकर्ताबेस, एक भयानक / सुरक्षित कोडबेस और एक सहायक और मैत्रीपूर्ण स्टाफ टीम पर है।',
+ 'blacklist-browsers' => 'ब्राउज़र्स',
+ 'blacklist-btclient' => 'बिटटोरेंट क्लाइंट',
+ 'blacklist-clients' => 'ग्राहकों',
+ 'blacklist-desc' => 'निम्नलिखित ब्राउज़रों और बिटटोरेंट ग्राहकों को ब्लैक लिस्टेड / फॉरबिडन फ्रॉम अनाउंसिंग टू: शीर्षक',
+ 'blacklist-webbrowser' => 'वेब ब्राउज़र',
'blacklist-emaildomain' => 'अवरुद्ध डोमेन',
- 'email-blacklist-desc' => 'ईमेल ईमेल के बाद इस्तेमाल किया जा रहा से अवरुद्ध कर रहे हैं। आप रजिस्टर या निम्नलिखित के लिए एक आमंत्रण नहीं भेज सकते।',
- 'email-whitelist-desc' => 'निम्नलिखित ईमेल डोमेन का उपयोग करने के लिए अनुमति केवल ईमेल डोमेन हैं। आप केवल रजिस्टर या निम्नलिखित का उपयोग कर एक निमंत्रण भेज सकते हैं।',
- 'staff-group' => 'समूह',
- 'staff-title' => 'शीर्षक',
+ 'email-blacklist-desc' => 'ईमेल ईमेल के बाद इस्तेमाल किया जा रहा से अवरुद्ध कर रहे हैं। आप रजिस्टर या निम्नलिखित के लिए एक आमंत्रण नहीं भेज सकते।',
+ 'email-whitelist-desc' => 'निम्नलिखित ईमेल डोमेन का उपयोग करने के लिए अनुमति केवल ईमेल डोमेन हैं। आप केवल रजिस्टर या निम्नलिखित का उपयोग कर एक निमंत्रण भेज सकते हैं।',
+ 'staff-group' => 'समूह',
+ 'staff-title' => 'शीर्षक',
'whitelist-emaildomain' => 'विश्वसनीय डोमेन',
];
diff --git a/lang/hi/pagination.php b/lang/hi/pagination.php
index a3349173b..4d4402cd9 100644
--- a/lang/hi/pagination.php
+++ b/lang/hi/pagination.php
@@ -24,5 +24,5 @@ return [
*/
'previous' => '« पिछला',
- 'next' => 'अगला »',
+ 'next' => 'अगला »',
];
diff --git a/lang/hi/passwords.php b/lang/hi/passwords.php
index 7e8edd600..c9f6e3190 100644
--- a/lang/hi/passwords.php
+++ b/lang/hi/passwords.php
@@ -24,8 +24,8 @@ return [
*/
'password' => 'पासवर्ड में कम से कम छः वर्ण होने चाहिए और पुष्टि से मेल खाने चाहिए।',
- 'reset' => 'आपका पासवर्ड रीसेट कर दिया गया है!',
- 'sent' => 'हमने आपको एक पासवर्ड रीसेट लिंक ई-मेल किया है!',
- 'token' => 'यह पासवर्ड रीसेट टोकन अमान्य है।',
- 'user' => 'हमें उस ई-मेल पते के साथ एक उपयोगकर्ता नहीं मिल सकता है।',
+ 'reset' => 'आपका पासवर्ड रीसेट कर दिया गया है!',
+ 'sent' => 'हमने आपको एक पासवर्ड रीसेट लिंक ई-मेल किया है!',
+ 'token' => 'यह पासवर्ड रीसेट टोकन अमान्य है।',
+ 'user' => 'हमें उस ई-मेल पते के साथ एक उपयोगकर्ता नहीं मिल सकता है।',
];
diff --git a/lang/hi/pm.php b/lang/hi/pm.php
index 94ae1da75..34762c3e9 100644
--- a/lang/hi/pm.php
+++ b/lang/hi/pm.php
@@ -12,28 +12,28 @@
*/
return [
- 'create' => 'सर्जन करना',
- 'delete' => 'हटाना',
+ 'create' => 'सर्जन करना',
+ 'delete' => 'हटाना',
'enter-subject' => 'विषय दर्ज करें',
- 'from' => 'से',
- 'inbox' => 'इनबॉक्स',
+ 'from' => 'से',
+ 'inbox' => 'इनबॉक्स',
'mark-all-read' => 'पढ़े हुए सभी संदेशों को चिह्नित करें',
- 'message' => 'संदेश',
- 'messages' => 'संदेश',
- 'new' => 'नया संदेश',
- 'outbox' => 'आउटबॉक्स',
- 'private' => 'निजी',
- 'read' => 'पढ़ना',
- 'received-at' => 'पर प्राप्त किया',
- 'refresh' => 'ताज़ा करना',
- 'reply' => 'जवाब दे दो',
- 'search' => 'विषय द्वारा खोजें',
- 'select' => 'एक उपयोगकर्ता का चयन करें',
- 'send' => 'पीएम को भेजें',
- 'send-to' => 'पीएम को भेजें',
- 'sent' => 'भेज दिया',
- 'sent-at' => 'पर भेजा गया',
- 'subject' => 'विषय',
- 'to' => 'सेवा मेरे',
- 'unread' => 'अपठित ग',
+ 'message' => 'संदेश',
+ 'messages' => 'संदेश',
+ 'new' => 'नया संदेश',
+ 'outbox' => 'आउटबॉक्स',
+ 'private' => 'निजी',
+ 'read' => 'पढ़ना',
+ 'received-at' => 'पर प्राप्त किया',
+ 'refresh' => 'ताज़ा करना',
+ 'reply' => 'जवाब दे दो',
+ 'search' => 'विषय द्वारा खोजें',
+ 'select' => 'एक उपयोगकर्ता का चयन करें',
+ 'send' => 'पीएम को भेजें',
+ 'send-to' => 'पीएम को भेजें',
+ 'sent' => 'भेज दिया',
+ 'sent-at' => 'पर भेजा गया',
+ 'subject' => 'विषय',
+ 'to' => 'सेवा मेरे',
+ 'unread' => 'अपठित ग',
];
diff --git a/lang/hi/poll.php b/lang/hi/poll.php
index 6737dfda0..eb9269989 100644
--- a/lang/hi/poll.php
+++ b/lang/hi/poll.php
@@ -12,18 +12,18 @@
*/
return [
- 'add-option' => 'विकल्प जोड़ें',
- 'create-poll' => 'जनमत बनाएं',
- 'current' => 'वर्तमान पोल',
- 'delete-option' => 'हटाने का विकल्प',
+ 'add-option' => 'विकल्प जोड़ें',
+ 'create-poll' => 'जनमत बनाएं',
+ 'current' => 'वर्तमान पोल',
+ 'delete-option' => 'हटाने का विकल्प',
'multiple-choice' => 'यह बहुविकल्पी चुनाव है। जितने चाहे उतने जवाब चुनिए',
- 'option' => 'विकल्प',
- 'poll' => 'मतदान',
- 'polls' => 'पोल',
- 'results' => 'मतदान के परिणाम',
- 'title' => 'शीर्षक',
- 'total' => 'कुल वोट कभी',
- 'vote' => 'वोट',
- 'vote-now' => 'अब में अपना वोट प्राप्त करें!',
- 'votes' => 'वोट',
+ 'option' => 'विकल्प',
+ 'poll' => 'मतदान',
+ 'polls' => 'पोल',
+ 'results' => 'मतदान के परिणाम',
+ 'title' => 'शीर्षक',
+ 'total' => 'कुल वोट कभी',
+ 'vote' => 'वोट',
+ 'vote-now' => 'अब में अपना वोट प्राप्त करें!',
+ 'votes' => 'वोट',
];
diff --git a/lang/hi/request.php b/lang/hi/request.php
index 426e2f37a..e368e2356 100644
--- a/lang/hi/request.php
+++ b/lang/hi/request.php
@@ -12,67 +12,67 @@
*/
return [
- 'add-request' => 'अनुरोध जोड़ें',
- 'age' => 'आयु',
- 'all-requests' => 'सभी अनुरोध',
- 'approve' => 'मंजूर',
- 'bounty' => 'इनाम',
- 'bounty-claimed' => 'बाउंटी ने दावा किया',
- 'bounty-unclaimed' => 'बाउंटी लावारिस मिले',
- 'category' => 'वर्ग',
- 'claim' => 'दावा',
- 'claim-anon-choose' => 'कृपया बुद्धिमानी से चुनें',
- 'claim-as-anon' => 'क्या आप इस तरह से दावा करना चाहेंगे',
- 'claim-now' => 'अब दावा करो',
- 'claimed' => 'दावा किया',
- 'current' => 'वर्तमान',
- 'delete' => 'इस अनुरोध को हटाएं',
+ 'add-request' => 'अनुरोध जोड़ें',
+ 'age' => 'आयु',
+ 'all-requests' => 'सभी अनुरोध',
+ 'approve' => 'मंजूर',
+ 'bounty' => 'इनाम',
+ 'bounty-claimed' => 'बाउंटी ने दावा किया',
+ 'bounty-unclaimed' => 'बाउंटी लावारिस मिले',
+ 'category' => 'वर्ग',
+ 'claim' => 'दावा',
+ 'claim-anon-choose' => 'कृपया बुद्धिमानी से चुनें',
+ 'claim-as-anon' => 'क्या आप इस तरह से दावा करना चाहेंगे',
+ 'claim-now' => 'अब दावा करो',
+ 'claimed' => 'दावा किया',
+ 'current' => 'वर्तमान',
+ 'delete' => 'इस अनुरोध को हटाएं',
'delete-confirmation' => 'क्या आप वाकई इस अनुरोध को हटाना चाहते हैं?',
- 'delete-filled' => 'यह अनुरोध केवल तभी हटाया जा सकता है जब इसे भरा नहीं गया हो',
- 'description' => 'विवरण',
- 'dont-have-bps' => 'आपके पास पर्याप्त बोनस नहीं है',
- 'edit-request' => 'अनुरोध संपादित करें',
- 'enter-bp' => 'बोनस अंक दर्ज करें (न्यूनतम 100)',
- 'enter-hash' => 'अपलोड की गई टोरेंट की जानकारी हैश दर्ज करें',
- 'fill' => 'भरना',
- 'fill-request' => 'इस अनुरोध को भरें',
- 'filled' => 'भर ग्या',
- 'filled-by' => 'द्वारा भरा गया',
- 'for' => 'के लिये',
- 'fulfill' => 'पूरा',
- 'last-vote' => 'आखिरी वोट',
- 'my-requests' => 'मेरा अनुभव',
- 'no' => 'नहीं,',
- 'no-imdb-id' => 'सभी अनुरोधों में एक IMDB नंबर होना चाहिए',
- 'no-privileges' => 'त्रुटि: आपके अनुरोध अधिकार अक्षम कर दिए गए हैं',
- 'no-privileges-desc' => 'यदि आपको लगता है कि यह त्रुटि है, तो कृपया कर्मचारियों से संपर्क करें',
- 'no-refunds' => 'बीओएन एक्सचेंज बनाने, भरने और इनामों पर अंतिम हैं!
कोई रिफंड नहीं!',
- 'pending' => 'अपूर्ण',
- 'reason' => 'कारण',
- 'reject' => 'अस्वीकार',
- 'report' => 'रिपोर्ट का अनुरोध',
- 'request' => 'निवेदन',
- 'request-details' => 'अनुरोध विवरण',
- 'requested-by' => 'द्वारा अनुरोध किया गया',
- 'requests' => 'अनुरोध',
- 'required' => 'अपेक्षित',
- 'reset' => 'रीसेट',
- 'reset-confirmation' => 'क्या आप वाकई इस अनुरोध को रीसेट करना चाहते हैं',
- 'reset-request' => 'इस अनुरोध को रीसेट करें',
- 'reward' => 'इनाम',
- 'reward-desc' => 'आप कितना बोनस पॉइंट देना चाहेंगे? न्यूनतम 100 बी.पी.',
- 'reward-from' => 'से',
- 'title' => 'शीर्षक',
- 'torrent-hash' => 'टॉरेंट हैश',
- 'total-bounty' => 'कुल इनाम',
- 'type' => 'प्रकार',
- 'unclaim' => 'इस अनुरोध को अस्वीकार करें',
- 'unfilled' => 'न भरे गए',
- 'view-filled' => 'भरा हुआ देखें',
- 'view-unfilled' => 'अधूरा देखें',
- 'vote' => 'वोट',
- 'vote-that' => 'इस अनुरोध को वोट करें',
- 'voters' => 'मतदाता',
- 'votes' => 'वोट',
- 'yes' => 'हाँ',
+ 'delete-filled' => 'यह अनुरोध केवल तभी हटाया जा सकता है जब इसे भरा नहीं गया हो',
+ 'description' => 'विवरण',
+ 'dont-have-bps' => 'आपके पास पर्याप्त बोनस नहीं है',
+ 'edit-request' => 'अनुरोध संपादित करें',
+ 'enter-bp' => 'बोनस अंक दर्ज करें (न्यूनतम 100)',
+ 'enter-hash' => 'अपलोड की गई टोरेंट की जानकारी हैश दर्ज करें',
+ 'fill' => 'भरना',
+ 'fill-request' => 'इस अनुरोध को भरें',
+ 'filled' => 'भर ग्या',
+ 'filled-by' => 'द्वारा भरा गया',
+ 'for' => 'के लिये',
+ 'fulfill' => 'पूरा',
+ 'last-vote' => 'आखिरी वोट',
+ 'my-requests' => 'मेरा अनुभव',
+ 'no' => 'नहीं,',
+ 'no-imdb-id' => 'सभी अनुरोधों में एक IMDB नंबर होना चाहिए',
+ 'no-privileges' => 'त्रुटि: आपके अनुरोध अधिकार अक्षम कर दिए गए हैं',
+ 'no-privileges-desc' => 'यदि आपको लगता है कि यह त्रुटि है, तो कृपया कर्मचारियों से संपर्क करें',
+ 'no-refunds' => 'बीओएन एक्सचेंज बनाने, भरने और इनामों पर अंतिम हैं!
कोई रिफंड नहीं!',
+ 'pending' => 'अपूर्ण',
+ 'reason' => 'कारण',
+ 'reject' => 'अस्वीकार',
+ 'report' => 'रिपोर्ट का अनुरोध',
+ 'request' => 'निवेदन',
+ 'request-details' => 'अनुरोध विवरण',
+ 'requested-by' => 'द्वारा अनुरोध किया गया',
+ 'requests' => 'अनुरोध',
+ 'required' => 'अपेक्षित',
+ 'reset' => 'रीसेट',
+ 'reset-confirmation' => 'क्या आप वाकई इस अनुरोध को रीसेट करना चाहते हैं',
+ 'reset-request' => 'इस अनुरोध को रीसेट करें',
+ 'reward' => 'इनाम',
+ 'reward-desc' => 'आप कितना बोनस पॉइंट देना चाहेंगे? न्यूनतम 100 बी.पी.',
+ 'reward-from' => 'से',
+ 'title' => 'शीर्षक',
+ 'torrent-hash' => 'टॉरेंट हैश',
+ 'total-bounty' => 'कुल इनाम',
+ 'type' => 'प्रकार',
+ 'unclaim' => 'इस अनुरोध को अस्वीकार करें',
+ 'unfilled' => 'न भरे गए',
+ 'view-filled' => 'भरा हुआ देखें',
+ 'view-unfilled' => 'अधूरा देखें',
+ 'vote' => 'वोट',
+ 'vote-that' => 'इस अनुरोध को वोट करें',
+ 'voters' => 'मतदाता',
+ 'votes' => 'वोट',
+ 'yes' => 'हाँ',
];
diff --git a/lang/hi/rss.php b/lang/hi/rss.php
index 0d035f66e..cda684d64 100644
--- a/lang/hi/rss.php
+++ b/lang/hi/rss.php
@@ -12,19 +12,19 @@
*/
return [
- 'create' => 'सर्जन करना',
+ 'create' => 'सर्जन करना',
'create-private-feed' => 'निजी RSS फ़ीड बनाएं',
- 'create-public-feed' => 'सार्वजनिक RSS फ़ीड बनाएं',
- 'delete' => 'हटाना',
- 'edit' => 'संपादित करें',
- 'edit-private-feed' => 'निजी RSS फ़ीड संपादित करें',
- 'edit-public-feed' => 'सार्वजनिक RSS फ़ीड संपादित करें',
- 'feed' => 'चारा',
- 'feeds' => 'फ़ीड',
- 'name' => 'नाम',
- 'public' => 'जनता',
- 'private' => 'निजी',
- 'rss' => 'आरएसएस',
- 'rss-feed' => 'आरएसएस फ़ीड',
- 'type' => 'प्रकार',
+ 'create-public-feed' => 'सार्वजनिक RSS फ़ीड बनाएं',
+ 'delete' => 'हटाना',
+ 'edit' => 'संपादित करें',
+ 'edit-private-feed' => 'निजी RSS फ़ीड संपादित करें',
+ 'edit-public-feed' => 'सार्वजनिक RSS फ़ीड संपादित करें',
+ 'feed' => 'चारा',
+ 'feeds' => 'फ़ीड',
+ 'name' => 'नाम',
+ 'public' => 'जनता',
+ 'private' => 'निजी',
+ 'rss' => 'आरएसएस',
+ 'rss-feed' => 'आरएसएस फ़ीड',
+ 'type' => 'प्रकार',
];
diff --git a/lang/hi/staff.php b/lang/hi/staff.php
index 363cd1cce..36b3e07d8 100644
--- a/lang/hi/staff.php
+++ b/lang/hi/staff.php
@@ -12,48 +12,48 @@
*/
return [
- 'audit-log' => 'गतिविधि लॉग',
- 'articles' => 'सामग्री',
- 'applications' => 'अनुप्रयोगों',
- 'bans-log' => 'बंस लॉग',
- 'blocks' => 'ब्लाकों',
- 'bot' => 'बॉट',
- 'bots' => 'बॉट',
- 'chat' => 'बातचीत',
- 'config-manager' => 'कॉन्फ़िगरेशन प्रबंधक',
- 'dashboard' => 'डैशबोर्ड',
- 'failed-login-log' => 'लॉग लॉग में विफल',
- 'flush-ghost-peers' => 'फ्लश घोस्ट पीयर',
- 'forums' => 'मंच',
- 'frontend' => 'फ़्रंट एंड',
- 'general-tools' => 'सामान्य उपकरण',
- 'groups' => 'समूह',
- 'invites-log' => 'लॉग आमंत्रित करता है',
- 'laravel-log' => 'लारवेल लॉग',
- 'links' => 'लिंक',
- 'logs' => 'लॉग्स',
- 'mass-pm' => 'मास पी.एम.',
- 'mass-validate-users' => 'बड़े पैमाने पर उपयोगकर्ताओं को वैध',
- 'moderation' => 'संयम',
- 'pages' => 'पेज',
- 'please-moderate' => 'कृपया इस धार को मॉडरेट करें!',
- 'polls' => 'पोल',
- 'reports-log' => 'रिपोर्ट लॉग',
- 'rss' => 'आरएसएस',
- 'staff-dashboard' => 'स्टाफ डैशबोर्ड',
- 'torrent-categories' => 'धार श्रेणियाँ',
- 'torrent-moderation' => 'टोरेंट मॉडरेशन',
- 'torrent-tools' => 'धार उपकरण',
- 'torrent-types' => 'धार के प्रकार',
- 'torrents' => 'टोरेंट',
- 'user-gifting' => 'उपयोगकर्ता उपहार',
- 'user-notes' => 'उपयोगकर्ता नोट्स लॉग',
- 'user-search' => 'उपयोगकर्ता खोज',
- 'user-tools' => 'उपयोगकर्ता उपकरण',
- 'warnings-log' => 'चेतावनी लॉग',
- 'you-have' => 'आपके पास',
+ 'audit-log' => 'गतिविधि लॉग',
+ 'articles' => 'सामग्री',
+ 'applications' => 'अनुप्रयोगों',
+ 'bans-log' => 'बंस लॉग',
+ 'blocks' => 'ब्लाकों',
+ 'bot' => 'बॉट',
+ 'bots' => 'बॉट',
+ 'chat' => 'बातचीत',
+ 'config-manager' => 'कॉन्फ़िगरेशन प्रबंधक',
+ 'dashboard' => 'डैशबोर्ड',
+ 'failed-login-log' => 'लॉग लॉग में विफल',
+ 'flush-ghost-peers' => 'फ्लश घोस्ट पीयर',
+ 'forums' => 'मंच',
+ 'frontend' => 'फ़्रंट एंड',
+ 'general-tools' => 'सामान्य उपकरण',
+ 'groups' => 'समूह',
+ 'invites-log' => 'लॉग आमंत्रित करता है',
+ 'laravel-log' => 'लारवेल लॉग',
+ 'links' => 'लिंक',
+ 'logs' => 'लॉग्स',
+ 'mass-pm' => 'मास पी.एम.',
+ 'mass-validate-users' => 'बड़े पैमाने पर उपयोगकर्ताओं को वैध',
+ 'moderation' => 'संयम',
+ 'pages' => 'पेज',
+ 'please-moderate' => 'कृपया इस धार को मॉडरेट करें!',
+ 'polls' => 'पोल',
+ 'reports-log' => 'रिपोर्ट लॉग',
+ 'rss' => 'आरएसएस',
+ 'staff-dashboard' => 'स्टाफ डैशबोर्ड',
+ 'torrent-categories' => 'धार श्रेणियाँ',
+ 'torrent-moderation' => 'टोरेंट मॉडरेशन',
+ 'torrent-tools' => 'धार उपकरण',
+ 'torrent-types' => 'धार के प्रकार',
+ 'torrents' => 'टोरेंट',
+ 'user-gifting' => 'उपयोगकर्ता उपहार',
+ 'user-notes' => 'उपयोगकर्ता नोट्स लॉग',
+ 'user-search' => 'उपयोगकर्ता खोज',
+ 'user-tools' => 'उपयोगकर्ता उपकरण',
+ 'warnings-log' => 'चेतावनी लॉग',
+ 'you-have' => 'आपके पास',
'possible-leech-cheaters' => 'संभव थिएटर',
- 'chat-tools' => 'चैट टूल',
- 'flush-chat' => 'फ्लश चैटबॉक्स',
- 'seedboxes' => 'पंजीकृत सीडबॉक्स',
+ 'chat-tools' => 'चैट टूल',
+ 'flush-chat' => 'फ्लश चैटबॉक्स',
+ 'seedboxes' => 'पंजीकृत सीडबॉक्स',
];
diff --git a/lang/hi/stat.php b/lang/hi/stat.php
index 70448ef68..55fb56ec4 100644
--- a/lang/hi/stat.php
+++ b/lang/hi/stat.php
@@ -12,40 +12,40 @@
*/
return [
- 'by-count' => 'गणना द्वारा',
- 'by-data' => 'डेटा द्वारा',
- 'by-volume' => 'मात्रा से',
- 'group' => 'समूह',
- 'groups' => 'समूह',
- 'nerd-stats' => 'बेवकूफ आँकड़े',
- 'nerd-stats-desc' => 'हम सभी आँकड़े प्यार करते हैं। यहाँ कुछ हैं जो हमें महत्वपूर्ण लगते हैं',
- 'registration-date' => 'पंजीकरण की तारीख',
- 'request-fulfilled' => 'अनुरोध पूरा हुआ',
- 'request-not-fulfilled' => 'अनुरोध पूरा नहीं हुआ',
+ 'by-count' => 'गणना द्वारा',
+ 'by-data' => 'डेटा द्वारा',
+ 'by-volume' => 'मात्रा से',
+ 'group' => 'समूह',
+ 'groups' => 'समूह',
+ 'nerd-stats' => 'बेवकूफ आँकड़े',
+ 'nerd-stats-desc' => 'हम सभी आँकड़े प्यार करते हैं। यहाँ कुछ हैं जो हमें महत्वपूर्ण लगते हैं',
+ 'registration-date' => 'पंजीकरण की तारीख',
+ 'request-fulfilled' => 'अनुरोध पूरा हुआ',
+ 'request-not-fulfilled' => 'अनुरोध पूरा नहीं हुआ',
'request-pending-aproval' => 'अनुरोध लंबित aproval',
- 'select-category' => 'कृपया नीचे एक श्रेणी चुनें',
- 'site-stats' => 'साइट आँकड़े',
- 'stats' => 'आँकड़े',
- 'stats-format' => 'शीर्ष 100 प्रारूप में प्रदर्शित सभी आँकड़े',
- 'top-bankers' => 'शीर्ष बैंकर',
- 'top-bountied' => 'शीर्ष बाउंटेड',
- 'top-completed' => 'शीर्ष पूर्ण',
- 'top-dead' => 'शीर्ष मृत',
- 'top-downloaded' => 'शीर्ष डाउनलोड टोरेंट',
- 'top-downloaders' => 'शीर्ष डाउनलोडर',
- 'top-dying' => 'शीर्ष मर रहा है',
- 'top-leeched' => 'शीर्ष लीकेज',
- 'top-leechers' => 'शीर्ष लेकर्स',
- 'top-seeded' => 'टॉप सीडेड',
- 'top-seeding' => 'टॉप सीडिंग',
- 'top-seeders' => 'शीर्ष सीडर्स',
- 'top-seedsize' => 'टॉप सीडाइज़',
- 'top-seedtime' => 'शीर्ष बीजपत्र',
- 'top-uploaders' => 'शीर्ष अपलोडर',
- 'total-download' => 'कुल डाउनलोड',
- 'total-torrents' => 'कुल टोरेंट',
- 'total-traffic' => 'कुल आवागमन',
- 'total-upload' => 'कुल अपलोड',
- 'users-in-group' => 'उपयोगकर्ता समूह में',
- 'users-per-group' => 'उपयोगकर्ता प्रति समूह',
+ 'select-category' => 'कृपया नीचे एक श्रेणी चुनें',
+ 'site-stats' => 'साइट आँकड़े',
+ 'stats' => 'आँकड़े',
+ 'stats-format' => 'शीर्ष 100 प्रारूप में प्रदर्शित सभी आँकड़े',
+ 'top-bankers' => 'शीर्ष बैंकर',
+ 'top-bountied' => 'शीर्ष बाउंटेड',
+ 'top-completed' => 'शीर्ष पूर्ण',
+ 'top-dead' => 'शीर्ष मृत',
+ 'top-downloaded' => 'शीर्ष डाउनलोड टोरेंट',
+ 'top-downloaders' => 'शीर्ष डाउनलोडर',
+ 'top-dying' => 'शीर्ष मर रहा है',
+ 'top-leeched' => 'शीर्ष लीकेज',
+ 'top-leechers' => 'शीर्ष लेकर्स',
+ 'top-seeded' => 'टॉप सीडेड',
+ 'top-seeding' => 'टॉप सीडिंग',
+ 'top-seeders' => 'शीर्ष सीडर्स',
+ 'top-seedsize' => 'टॉप सीडाइज़',
+ 'top-seedtime' => 'शीर्ष बीजपत्र',
+ 'top-uploaders' => 'शीर्ष अपलोडर',
+ 'total-download' => 'कुल डाउनलोड',
+ 'total-torrents' => 'कुल टोरेंट',
+ 'total-traffic' => 'कुल आवागमन',
+ 'total-upload' => 'कुल अपलोड',
+ 'users-in-group' => 'उपयोगकर्ता समूह में',
+ 'users-per-group' => 'उपयोगकर्ता प्रति समूह',
];
diff --git a/lang/hi/torrent.php b/lang/hi/torrent.php
index 500b7b6fa..774f08c1e 100644
--- a/lang/hi/torrent.php
+++ b/lang/hi/torrent.php
@@ -12,197 +12,197 @@
*/
return [
- 'activity' => 'गतिविधि',
- 'age' => 'आयु',
- 'agent' => 'एजेंट',
- 'alive' => 'ज़िंदा',
- 'announce-url' => 'URL की घोषणा करें',
- 'announce-url-desc' => 'कृपया एक नई धार बनाते समय उपरोक्त URL का उपयोग करें। यदि आप अपने टोरेंट का उपयोग उस साइट से डाउनलोड किए बिना करना चाहते हैं, जिसके लिए आपको निजी ध्वज और स्रोत: स्रोत सेट करना होगा',
- 'announce-url-desc-url' => 'परेशानी है? हमारी गाइड यहाँ देखें',
- 'announce-url-desc2' => 'सभी अपलोड के लिए TMDB और IMDB आवश्यक है! इसका उपयोग Posters / Backdrops और ExtraInfo को पकड़ने के लिए किया जाता है',
- 'approved' => 'मंजूर की',
- 'audio' => 'ऑडियो',
- 'bon-tipped' => 'बॉन ने इत्तला दे दी',
- 'bookmark' => 'बुकमार्क',
- 'bookmarks' => 'बुकमार्क',
- 'bump' => 'टक्कर',
- 'cant-upload' => 'त्रुटि: आपके अपलोड अधिकार अक्षम हैं',
- 'cant-upload-desc' => 'अगर आपको लगता है कि यह त्रुटि है, तो कृपया कर्मचारियों से संपर्क करें',
- 'cards' => 'पत्ते',
- 'cards-view' => 'टोरेंट कार्ड्स देखें',
- 'categories' => 'श्रेणियाँ',
- 'category' => 'वर्ग',
- 'client' => 'ग्राहक',
- 'commited' => 'प्रति प्रतिबद्ध',
- 'completed' => 'पूरा कर लिया है',
- 'completed_at' => 'पर पूरा हुआ',
- 'completed-not-seeding' => 'आपने यह डाउनलोड पूरा कर लिया है लेकिन क्या यह कोई लंबा बीज है',
- 'created_at' => 'पर बनाया गया',
- 'credited' => 'श्रेय',
- 'current' => 'वर्तमान',
- 'current-filters' => 'वर्तमान फ़िल्टर',
- 'currently-leeching' => 'वर्तमान में लीचिंग',
- 'currently-seeding' => 'वर्तमान में सीडिंग',
- 'dead-torrent' => 'मृत धार',
- 'dead-torrents' => 'मृत धार',
- 'delete-bookmark' => 'यह बुकमार्क हटाएं',
- 'description' => 'विवरण',
- 'discounts' => 'छूट',
- 'double-upload' => 'डबल अपलोड',
- 'download-all' => 'सभी डाउनलोड',
- 'download-check' => 'चेक डाउनलोड करें',
- 'downloaded' => 'डाउनलोड की गई',
- 'dying-torrent' => 'मरणासन्न धार',
- 'dying-torrents' => 'मरने वाले टोरेंट',
- 'encode-settings' => 'सांकेतिक शब्दों में बदलना सेटिंग्स',
- 'estimated-ratio' => 'डाउनलोड के बाद अनुमानित अनुपात',
- 'failed' => 'अनुत्तीर्ण होना',
- 'feature' => 'फ़ीचर',
- 'featured' => 'विशेष रुप से प्रदर्शित',
- 'featured-desc' => 'फीचर्ड टॉरेंट हैं 100% नि: शुल्क और डबल अपलोड!',
- 'featured-until' => 'यह तब तक एक फीचर्ड टॉरेंट है',
- 'file' => 'फ़ाइल',
- 'filters' => 'फिल्टर',
- 'fl-tokens-left' => 'आपके पास : टोकन बचे',
- 'freeleech' => 'Freeleech',
- 'freeleech-token' => 'फ्रीलेक टोकन',
- 'general' => 'सामान्य',
- 'genre' => 'शैली',
- 'global-double-upload' => 'ग्लोबल डबल अपलोड',
- 'global-freeleech' => 'ग्लोबल फ्रीलेच',
- 'grant' => 'अनुदान',
- 'greater-than' => 'से अधिक',
- 'grouping' => 'समूहीकरण',
- 'groupings' => 'ग्रुपिंग',
- 'grouping-categories' => 'समूह बनाना',
+ 'activity' => 'गतिविधि',
+ 'age' => 'आयु',
+ 'agent' => 'एजेंट',
+ 'alive' => 'ज़िंदा',
+ 'announce-url' => 'URL की घोषणा करें',
+ 'announce-url-desc' => 'कृपया एक नई धार बनाते समय उपरोक्त URL का उपयोग करें। यदि आप अपने टोरेंट का उपयोग उस साइट से डाउनलोड किए बिना करना चाहते हैं, जिसके लिए आपको निजी ध्वज और स्रोत: स्रोत सेट करना होगा',
+ 'announce-url-desc-url' => 'परेशानी है? हमारी गाइड यहाँ देखें',
+ 'announce-url-desc2' => 'सभी अपलोड के लिए TMDB और IMDB आवश्यक है! इसका उपयोग Posters / Backdrops और ExtraInfo को पकड़ने के लिए किया जाता है',
+ 'approved' => 'मंजूर की',
+ 'audio' => 'ऑडियो',
+ 'bon-tipped' => 'बॉन ने इत्तला दे दी',
+ 'bookmark' => 'बुकमार्क',
+ 'bookmarks' => 'बुकमार्क',
+ 'bump' => 'टक्कर',
+ 'cant-upload' => 'त्रुटि: आपके अपलोड अधिकार अक्षम हैं',
+ 'cant-upload-desc' => 'अगर आपको लगता है कि यह त्रुटि है, तो कृपया कर्मचारियों से संपर्क करें',
+ 'cards' => 'पत्ते',
+ 'cards-view' => 'टोरेंट कार्ड्स देखें',
+ 'categories' => 'श्रेणियाँ',
+ 'category' => 'वर्ग',
+ 'client' => 'ग्राहक',
+ 'commited' => 'प्रति प्रतिबद्ध',
+ 'completed' => 'पूरा कर लिया है',
+ 'completed_at' => 'पर पूरा हुआ',
+ 'completed-not-seeding' => 'आपने यह डाउनलोड पूरा कर लिया है लेकिन क्या यह कोई लंबा बीज है',
+ 'created_at' => 'पर बनाया गया',
+ 'credited' => 'श्रेय',
+ 'current' => 'वर्तमान',
+ 'current-filters' => 'वर्तमान फ़िल्टर',
+ 'currently-leeching' => 'वर्तमान में लीचिंग',
+ 'currently-seeding' => 'वर्तमान में सीडिंग',
+ 'dead-torrent' => 'मृत धार',
+ 'dead-torrents' => 'मृत धार',
+ 'delete-bookmark' => 'यह बुकमार्क हटाएं',
+ 'description' => 'विवरण',
+ 'discounts' => 'छूट',
+ 'double-upload' => 'डबल अपलोड',
+ 'download-all' => 'सभी डाउनलोड',
+ 'download-check' => 'चेक डाउनलोड करें',
+ 'downloaded' => 'डाउनलोड की गई',
+ 'dying-torrent' => 'मरणासन्न धार',
+ 'dying-torrents' => 'मरने वाले टोरेंट',
+ 'encode-settings' => 'सांकेतिक शब्दों में बदलना सेटिंग्स',
+ 'estimated-ratio' => 'डाउनलोड के बाद अनुमानित अनुपात',
+ 'failed' => 'अनुत्तीर्ण होना',
+ 'feature' => 'फ़ीचर',
+ 'featured' => 'विशेष रुप से प्रदर्शित',
+ 'featured-desc' => 'फीचर्ड टॉरेंट हैं 100% नि: शुल्क और डबल अपलोड!',
+ 'featured-until' => 'यह तब तक एक फीचर्ड टॉरेंट है',
+ 'file' => 'फ़ाइल',
+ 'filters' => 'फिल्टर',
+ 'fl-tokens-left' => 'आपके पास : टोकन बचे',
+ 'freeleech' => 'Freeleech',
+ 'freeleech-token' => 'फ्रीलेक टोकन',
+ 'general' => 'सामान्य',
+ 'genre' => 'शैली',
+ 'global-double-upload' => 'ग्लोबल डबल अपलोड',
+ 'global-freeleech' => 'ग्लोबल फ्रीलेच',
+ 'grant' => 'अनुदान',
+ 'greater-than' => 'से अधिक',
+ 'grouping' => 'समूहीकरण',
+ 'groupings' => 'ग्रुपिंग',
+ 'grouping-categories' => 'समूह बनाना',
'grouping-categories-desc' => 'आप किस श्रेणी में समूह बनाना चाहेंगे?',
- 'grouping-results' => 'समूहन परिणाम',
- 'groupings-view' => 'समूह देखें',
- 'have-completed' => 'पूरा कर लिया है',
- 'have-downloaded' => 'डाउनलोड की गई',
- 'have-not-completed' => 'पूरा नहीं',
- 'have-not-downloaded' => 'डाउनलोड नहीं हुआ',
- 'health' => 'स्वास्थ्य',
- 'history' => 'इतिहास',
- 'hitrun' => 'एच एंड आर?',
- 'hit-and-runs' => 'हिट और रन मायने रखता है',
- 'immune' => 'इम्यून?',
- 'info' => 'जानकारी',
- 'internal' => 'अंदर का',
- 'internal-release' => 'आंतरिक रिलीज',
- 'last-seed-activity' => 'अंतिम बीज गतिविधि',
- 'last-seeder' => 'आप अंतिम शेष बीज हैं! (कम से कम 3 बार डाउनलोड किया गया है)',
- 'last-update' => 'आखिरी अपडेट',
- 'leave-tip' => 'टिप छोड़ दें',
- 'leecher' => 'leecher',
- 'leechers' => 'leechers',
- 'leeching' => 'leeching',
- 'left' => 'बाएं',
- 'legendary-seeder' => 'पौराणिक बीजक',
- 'legendary-torrent' => 'पौराणिक धार',
- 'list' => 'सूची',
- 'me' => 'मुझे',
- 'media-info' => 'मीडिया की जानकारी',
- 'media-info-parser' => 'मीडियाइंफो पार्सर',
- 'media-info-paste' => 'MediaInfo को यहां पेस्ट करें',
- 'meta-desc' => 'डाउनलोड करें: अधिकतम गति पर नाम',
- 'moderation' => 'संयम',
- 'movies' => 'चलचित्र',
- 'mvp' => 'एमवीपी',
- 'my-active-torrents' => 'मेरी सक्रिय धार',
- 'name' => 'नाम',
- 'no-bookmarks' => 'कोई बुकमार्क नहीं मिले हैं।',
- 'no-discounts' => 'वर्तमान में कोई छूट नहीं',
- 'no-meta' => 'कोई मेटाडेटा नहीं मिला',
- 'no-privileges' => 'आप इस फ़ाइल को डाउनलोड करने में सक्षम नहीं हैं - कृपया अधिक जानकारी के लिए नीचे देखें',
- 'no-privileges-desc' => 'कृपया डाउनलोड बटन दिखाई देने के लिए ऊपर दिए गए विफल परिणामों को हल करें',
- 'not-completed' => 'डाउनलोडिंग शुरू की, लेकिन कभी पूरी नहीं हुई',
- 'not-downloaded' => 'डाउनलोड नहीं हुआ',
- 'old-torrent' => 'पुरानी धार',
- 'optional' => 'ऐच्छिक',
- 'original-output' => 'मूल आउटपुट दिखाएँ / छिपाएँ',
- 'participant' => 'भाग लेने वाला',
- 'passed' => 'बीतने के',
- 'peers' => 'साथियों',
- 'pending' => 'अपूर्ण',
- 'personal-freeleech' => 'वैयक्तिक फ्रीलेक',
- 'poster' => 'पोस्टर',
- 'poster-view' => 'पोस्टर का दृश्य',
- 'posters' => 'पोस्टर',
- 'prewarn' => 'Prewarned?',
- 'progress' => 'प्रगति',
- 'quick-comment' => 'त्वरित टिप्पणी',
- 'quick-tip' => 'त्वरित टिप मात्रा',
- 'rated' => 'रेटेड',
- 'rating' => 'रेटिंग',
- 'ready' => 'यह फाइल डाउनलोड के लिए तैयार है',
- 'rejected' => 'अस्वीकृत',
- 'released' => 'रिहा',
- 'remaining' => 'शेष',
- 'request-reseed' => 'अनुरोध किया गया',
- 'requires-reseed' => 'की आवश्यकता है',
- 'resurrections' => 'पुनरुत्थान',
- 'revoke' => 'वापस लेना',
- 'rss' => 'आरएसएस',
- 'runtime' => 'क्रम',
- 'satisfied_in' => 'में संतुष्ट',
- 'say-thanks' => 'कृपया जब तक आप कर सकते हैं तब तक धन्यवाद और बीज कहने के लिए याद रखें',
- 'sd-content' => 'एसडी सामग्री',
- 'search' => 'खोज',
- 'seed-time' => 'बीज समय',
- 'seeder' => 'बोने की मशीन',
- 'seeders' => 'seeders',
- 'seeding' => 'बीज बोने की क्रिया',
- 'seedsize' => 'Seedsize',
- 'seedtime' => 'बोने का समय',
- 'short-completed' => 'सी',
- 'short-leechs' => 'एल',
- 'short-seeds' => 'एस',
- 'show-files' => 'फ़ाइलें दिखाएँ',
- 'similar' => 'इसी तरह के टोरेंट',
- 'size' => 'आकार',
- 'special' => 'विशेष',
- 'special-freeleech' => 'विशेष फ्रीलेच',
- 'started' => 'शुरू कर दिया है',
- 'status' => 'स्थिति',
- 'statistics' => 'आंकड़े',
- 'stats' => 'आँकड़े',
- 'sticky' => 'चिपचिपा',
- 'stream-optimized' => 'स्ट्रीम अनुकूलित',
- 'subtitle' => 'उपशीर्षक',
- 'team-player' => 'टीम के खिलाड़ी',
- 'thank' => 'धन्यवाद',
- 'thanked' => 'धन्यवाद दिया',
- 'thanks' => 'धन्यवाद',
- 'thanks-given' => 'धन्यवाद दिया गया',
- 'times' => 'टाइम्स',
- 'tip-jar' => 'टिप पात्र',
- 'title' => 'शीर्षक',
- 'titles' => 'टाइटल',
- 'top-completed' => 'शीर्ष पूरा किया',
- 'top-dead' => 'शीर्ष मृत',
- 'top-dying' => 'शीर्ष मर रहा है',
- 'top-leeched' => 'शीर्ष शंकु',
- 'top-seeded' => 'शीर्ष वरीयता प्राप्त',
- 'torrent' => 'धार',
- 'torrent-request' => 'टोरेंट अनुरोध',
- 'torrent-tips' => 'टोटल : टोटल BON को अपलोडर पर टैप किया गया है, जिनमें से : यूजर आप से हैं',
- 'torrent-tips-desc' => 'यह आपके उपलब्ध बोनस अंकों से काट लिया जाएगा',
- 'torrents' => 'टोरेंट',
- 'trailer' => 'ट्रेलर देखें',
- 'type' => 'प्रकार',
- 'types' => 'प्रकार',
- 'unbookmark' => 'Unbookmark',
- 'unsatisfieds' => 'Unsatisfieds',
- 'unsticky' => 'Unsticky',
- 'updated' => 'अपडेट किया गया',
- 'updated_at' => 'पर अपडेट किया गया',
- 'uploaded' => 'अपलोड की गई',
- 'uploaded-by' => 'द्वारा डाली गई',
- 'uploader' => 'अपलोडर',
- 'use-fl-token' => 'एक फ्रीलेक टोकन का उपयोग करें',
- 'video' => 'वीडियो',
- 'view-more' => 'और देखो',
- 'view-trailer' => 'ट्रेलर देखें',
- 'votes' => 'वोट',
+ 'grouping-results' => 'समूहन परिणाम',
+ 'groupings-view' => 'समूह देखें',
+ 'have-completed' => 'पूरा कर लिया है',
+ 'have-downloaded' => 'डाउनलोड की गई',
+ 'have-not-completed' => 'पूरा नहीं',
+ 'have-not-downloaded' => 'डाउनलोड नहीं हुआ',
+ 'health' => 'स्वास्थ्य',
+ 'history' => 'इतिहास',
+ 'hitrun' => 'एच एंड आर?',
+ 'hit-and-runs' => 'हिट और रन मायने रखता है',
+ 'immune' => 'इम्यून?',
+ 'info' => 'जानकारी',
+ 'internal' => 'अंदर का',
+ 'internal-release' => 'आंतरिक रिलीज',
+ 'last-seed-activity' => 'अंतिम बीज गतिविधि',
+ 'last-seeder' => 'आप अंतिम शेष बीज हैं! (कम से कम 3 बार डाउनलोड किया गया है)',
+ 'last-update' => 'आखिरी अपडेट',
+ 'leave-tip' => 'टिप छोड़ दें',
+ 'leecher' => 'leecher',
+ 'leechers' => 'leechers',
+ 'leeching' => 'leeching',
+ 'left' => 'बाएं',
+ 'legendary-seeder' => 'पौराणिक बीजक',
+ 'legendary-torrent' => 'पौराणिक धार',
+ 'list' => 'सूची',
+ 'me' => 'मुझे',
+ 'media-info' => 'मीडिया की जानकारी',
+ 'media-info-parser' => 'मीडियाइंफो पार्सर',
+ 'media-info-paste' => 'MediaInfo को यहां पेस्ट करें',
+ 'meta-desc' => 'डाउनलोड करें: अधिकतम गति पर नाम',
+ 'moderation' => 'संयम',
+ 'movies' => 'चलचित्र',
+ 'mvp' => 'एमवीपी',
+ 'my-active-torrents' => 'मेरी सक्रिय धार',
+ 'name' => 'नाम',
+ 'no-bookmarks' => 'कोई बुकमार्क नहीं मिले हैं।',
+ 'no-discounts' => 'वर्तमान में कोई छूट नहीं',
+ 'no-meta' => 'कोई मेटाडेटा नहीं मिला',
+ 'no-privileges' => 'आप इस फ़ाइल को डाउनलोड करने में सक्षम नहीं हैं - कृपया अधिक जानकारी के लिए नीचे देखें',
+ 'no-privileges-desc' => 'कृपया डाउनलोड बटन दिखाई देने के लिए ऊपर दिए गए विफल परिणामों को हल करें',
+ 'not-completed' => 'डाउनलोडिंग शुरू की, लेकिन कभी पूरी नहीं हुई',
+ 'not-downloaded' => 'डाउनलोड नहीं हुआ',
+ 'old-torrent' => 'पुरानी धार',
+ 'optional' => 'ऐच्छिक',
+ 'original-output' => 'मूल आउटपुट दिखाएँ / छिपाएँ',
+ 'participant' => 'भाग लेने वाला',
+ 'passed' => 'बीतने के',
+ 'peers' => 'साथियों',
+ 'pending' => 'अपूर्ण',
+ 'personal-freeleech' => 'वैयक्तिक फ्रीलेक',
+ 'poster' => 'पोस्टर',
+ 'poster-view' => 'पोस्टर का दृश्य',
+ 'posters' => 'पोस्टर',
+ 'prewarn' => 'Prewarned?',
+ 'progress' => 'प्रगति',
+ 'quick-comment' => 'त्वरित टिप्पणी',
+ 'quick-tip' => 'त्वरित टिप मात्रा',
+ 'rated' => 'रेटेड',
+ 'rating' => 'रेटिंग',
+ 'ready' => 'यह फाइल डाउनलोड के लिए तैयार है',
+ 'rejected' => 'अस्वीकृत',
+ 'released' => 'रिहा',
+ 'remaining' => 'शेष',
+ 'request-reseed' => 'अनुरोध किया गया',
+ 'requires-reseed' => 'की आवश्यकता है',
+ 'resurrections' => 'पुनरुत्थान',
+ 'revoke' => 'वापस लेना',
+ 'rss' => 'आरएसएस',
+ 'runtime' => 'क्रम',
+ 'satisfied_in' => 'में संतुष्ट',
+ 'say-thanks' => 'कृपया जब तक आप कर सकते हैं तब तक धन्यवाद और बीज कहने के लिए याद रखें',
+ 'sd-content' => 'एसडी सामग्री',
+ 'search' => 'खोज',
+ 'seed-time' => 'बीज समय',
+ 'seeder' => 'बोने की मशीन',
+ 'seeders' => 'seeders',
+ 'seeding' => 'बीज बोने की क्रिया',
+ 'seedsize' => 'Seedsize',
+ 'seedtime' => 'बोने का समय',
+ 'short-completed' => 'सी',
+ 'short-leechs' => 'एल',
+ 'short-seeds' => 'एस',
+ 'show-files' => 'फ़ाइलें दिखाएँ',
+ 'similar' => 'इसी तरह के टोरेंट',
+ 'size' => 'आकार',
+ 'special' => 'विशेष',
+ 'special-freeleech' => 'विशेष फ्रीलेच',
+ 'started' => 'शुरू कर दिया है',
+ 'status' => 'स्थिति',
+ 'statistics' => 'आंकड़े',
+ 'stats' => 'आँकड़े',
+ 'sticky' => 'चिपचिपा',
+ 'stream-optimized' => 'स्ट्रीम अनुकूलित',
+ 'subtitle' => 'उपशीर्षक',
+ 'team-player' => 'टीम के खिलाड़ी',
+ 'thank' => 'धन्यवाद',
+ 'thanked' => 'धन्यवाद दिया',
+ 'thanks' => 'धन्यवाद',
+ 'thanks-given' => 'धन्यवाद दिया गया',
+ 'times' => 'टाइम्स',
+ 'tip-jar' => 'टिप पात्र',
+ 'title' => 'शीर्षक',
+ 'titles' => 'टाइटल',
+ 'top-completed' => 'शीर्ष पूरा किया',
+ 'top-dead' => 'शीर्ष मृत',
+ 'top-dying' => 'शीर्ष मर रहा है',
+ 'top-leeched' => 'शीर्ष शंकु',
+ 'top-seeded' => 'शीर्ष वरीयता प्राप्त',
+ 'torrent' => 'धार',
+ 'torrent-request' => 'टोरेंट अनुरोध',
+ 'torrent-tips' => 'टोटल : टोटल BON को अपलोडर पर टैप किया गया है, जिनमें से : यूजर आप से हैं',
+ 'torrent-tips-desc' => 'यह आपके उपलब्ध बोनस अंकों से काट लिया जाएगा',
+ 'torrents' => 'टोरेंट',
+ 'trailer' => 'ट्रेलर देखें',
+ 'type' => 'प्रकार',
+ 'types' => 'प्रकार',
+ 'unbookmark' => 'Unbookmark',
+ 'unsatisfieds' => 'Unsatisfieds',
+ 'unsticky' => 'Unsticky',
+ 'updated' => 'अपडेट किया गया',
+ 'updated_at' => 'पर अपडेट किया गया',
+ 'uploaded' => 'अपलोड की गई',
+ 'uploaded-by' => 'द्वारा डाली गई',
+ 'uploader' => 'अपलोडर',
+ 'use-fl-token' => 'एक फ्रीलेक टोकन का उपयोग करें',
+ 'video' => 'वीडियो',
+ 'view-more' => 'और देखो',
+ 'view-trailer' => 'ट्रेलर देखें',
+ 'votes' => 'वोट',
];
diff --git a/lang/hi/user.php b/lang/hi/user.php
index d11026a0d..70eab3347 100644
--- a/lang/hi/user.php
+++ b/lang/hi/user.php
@@ -12,316 +12,316 @@
*/
return [
- 'about' => 'के बारे में',
- 'about-me' => 'मेरे बारे में',
- 'accepted-at' => 'पर स्वीकार किया गया',
- 'accepted-by' => 'इसके द्वारा स्वीकृत',
- 'account-notification' => 'खाता अधिसूचना सेटिंग्स',
- 'account-notification-follow' => 'जब कोई उपयोगकर्ता आपके खाते का अनुसरण करता है, तो एक सूचना प्राप्त करें',
- 'account-notification-unfollow' => 'जब कोई उपयोगकर्ता आपके खाते को अनफ़ॉलो करता है तो एक सूचना प्राप्त करें',
- 'account-notification-help' => 'अपने खाते से संबंधित सूचनाओं को नियंत्रित करें। यदि आप किसी समूह को अपने खाते से संबंधित सूचनाएं भेजने की अनुमति नहीं देते हैं या यदि आप सूचनाएं अक्षम करते हैं तो ये सेटिंग्स ओवरराइड की जाती हैं',
- 'account-settings' => 'अकाउंट सेटिंग',
- 'achievement-privacy' => 'उपलब्धि सेटिंग्स',
- 'achievement-privacy-list' => 'उपयोगकर्ताओं को अपनी उपलब्धियों की सूची देखने की अनुमति दें',
- 'achievement-help' => 'उन समूहों के साथ विशिष्ट उपलब्धि संबंधी जानकारी साझा करने को नियंत्रित करें, जिन्हें आपकी प्रोफ़ाइल तक पहुंचने की अनुमति है। यदि आप किसी समूह को अपनी उपलब्धियों का उपयोग करने की अनुमति नहीं देते हैं या यदि आप निजी जाते हैं तो इन सेटिंग्स को ओवरराइड किया जाता है',
- 'achievements' => 'उपलब्धियां',
- 'active' => 'सक्रिय',
- 'active-table' => 'मेरी सक्रिय तालिका',
- 'active-torrents' => 'सक्रिय धार',
- 'active-warning' => 'सक्रिय चेतावनी',
- 'active-warnings' => 'सक्रिय चेतावनी',
- 'add-seedbox' => 'सीडबॉक्स जोड़ें',
- 'all-torrents' => 'सभी टोरेंट',
- 'article-comments' => 'लेख टिप्पणियाँ',
- 'avatar' => 'अवतार',
- 'avg-seedtime' => 'औसत बीजक',
- 'badges' => 'बैज',
- 'ban' => 'प्रतिबंध उपयोगकर्ता',
- 'ban-log' => 'बैन लॉग',
- 'become-hidden' => 'छिपे रहो',
- 'become-visible' => 'दिखाई पड़ना',
- 'bon' => 'बोन',
- 'bon-notification' => 'बॉन अधिसूचना सेटिंग्स',
- 'bon-notification-gift' => 'जब कोई उपयोगकर्ता आपको उपहार देता है तो एक अधिसूचना प्राप्त करें',
- 'bon-notification-help' => 'नियंत्रण जो सूचनाएँ BON लेनदेन के संबंध में भेजी जाती हैं। यदि आप किसी भी समूह को BON से संबंधित सूचनाएं भेजने की अनुमति नहीं देते हैं या यदि आप सूचनाएं अक्षम करते हैं तो ये सेटिंग्स ओवरराइड की जाती हैं',
- 'bookmarks' => 'बुकमार्क',
- 'bounty-given' => 'बाउंटी दिया',
- 'bounty-received' => 'बाउंटी ने प्राप्त किया',
- 'can-chat' => 'चैट कर सकते हैं',
- 'can-comment' => 'टिप्पणी कर सकते हैं',
- 'can-download' => 'डाउनलोड कर सकते हैं',
- 'can-invite' => 'आमंत्रित कर सकते हैं',
- 'can-request' => 'निवेदन कर सकते हैं',
- 'can-upload' => 'अपलोड कर सकते हैं',
- 'certified-banker' => 'प्रमाणित बैंकर',
- 'certified-banker-desc' => '50,000 या उससे अधिक बैंक में है',
- 'certified-downloader' => 'प्रमाणित डाउनलोडर',
- 'certified-downloader-desc' => '100 या अधिक Torrents डाउनलोड किया!',
- 'certified-seeder' => 'प्रमाणित बीजक',
- 'certified-seeder-desc' => 'सीडिंग 150 या अधिक टोरेंट!',
- 'change-email' => 'ई - मेल बदलें',
- 'change-email-help' => 'अपना ईमेल बदलने के बाद, आपको अपने खाते की फिर से पुष्टि करनी होगी',
- 'change-password' => 'पासवर्ड बदलें',
- 'change-password-help' => 'पासवर्ड बदलने के बाद आपको फिर से लॉगिन करना होगा',
- 'client-ip-address' => 'क्लाइंट IP पता',
- 'code' => 'कोड',
- 'comments' => 'टिप्पणियाँ',
- 'created-on' => 'को निर्मित',
- 'credited-download' => 'साभार डाउनलोड',
- 'credited-upload' => 'साभार अपलोड',
- 'current-password' => 'वर्तमान पासवर्ड',
- 'custom-title' => 'कस्टम शीर्षक',
- 'delete' => 'उपभोक्ता मिटायें',
- 'disable-notifications' => 'नोटीफिकेशन निष्क्रिय किया गया',
- 'disclaimer' => 'अस्वीकरण',
- 'disclaimer-info' => 'हम डिफ़ॉल्ट रूप से अधिकांश ट्रैकर्स की तरह उपयोगकर्ताओं के आईपी पते लॉग नहीं करते हैं। नीचे अपना सीडबॉक्स आईपी जोड़कर यह उम्मीद की जाती है कि आप जानते हैं कि नीचे सूचीबद्ध आपके आईपी अब हमारे डेटाबेस में संग्रहीत हैं जब तक कि आप रिकॉर्ड को हटा नहीं देते।',
- 'disclaimer-info-bordered' => 'इसके बाद सीडबॉक्स आईपीएस को सूचीबद्ध किए गए आईपी से बोले जाने वाले टोरेंट्स पर हाई स्पीड टोरेंट टैग को ट्रिगर किया जाएगा',
- 'download-bon' => 'बीओएन स्टोर से हटाए गए डाउनलोड करें',
- 'download-recorded' => 'रिकॉर्डेड डाउनलोड',
- 'download-true' => 'सही डाउनलोड',
- 'downloads' => 'डाउनलोड',
- 'edit' => 'यूजर को संपादित करो',
- 'edit-profile' => 'प्रोफाइल एडिट करें',
- 'enable-notifications' => 'सूचनाएं सक्षम करें',
- 'expired' => 'समय सीमा समाप्त',
- 'expires-on' => 'पर समय सीमा समाप्त',
- 'extra' => 'अतिरिक्त',
- 'filled-request' => 'भरे हुए सदस्य अनुरोध',
- 'follow' => 'का पालन करें',
- 'follower-privacy' => 'अनुयायी सेटिंग्स',
- 'follower-privacy-list' => 'उपयोगकर्ताओं को अपने अनुयायियों की सूची देखने की अनुमति दें',
- 'follower-help' => 'उन समूहों के साथ विशिष्ट अनुवर्ती संबंधित जानकारी को साझा करने को नियंत्रित करें जिन्हें आपकी प्रोफ़ाइल तक पहुंचने की अनुमति है। यदि आप किसी भी समूह को अपने अनुयायियों तक पहुंचने की अनुमति नहीं देते हैं या यदि आप निजी जाते हैं तो ये सेटिंग्स ओवरराइड की जाती हैं',
- 'followers' => 'समर्थक',
- 'following-notification' => 'उपयोगकर्ता अधिसूचना सेटिंग्स का पालन किया',
- 'following-notification-upload' => 'उपयोगकर्ता द्वारा एक धार अपलोड करने पर एक अधिसूचना प्राप्त करें',
- 'following-notification-help' => 'उपयोगकर्ता साइट की क्रियाओं के बारे में सूचनाएँ नियंत्रित करने के लिए जो सूचनाएँ भेजी जाती हैं। ये सेटिंग्स ओवरराइड हैं यदि आप किसी भी समूह को अनुसरण करने वाले उपयोगकर्ताओं से संबंधित सूचनाएं भेजने की अनुमति नहीं देते हैं या यदि आप सूचना अक्षम करते हैं',
- 'formats-are-supported' => ': प्रारूप समर्थित हैं',
- 'forum-notification' => 'फोरम अधिसूचना सेटिंग्स',
- 'forum-notification-topic' => 'जब आप जिस विषय को शुरू करते हैं, तो एक अधिसूचना प्राप्त करें जिससे आपको एक नया पद मिले',
- 'forum-notification-help' => 'फ़ोरम गतिविधियों से संबंधित सूचनाओं को नियंत्रित करें। यदि आप किसी भी समूह को मंच की गतिविधियों से संबंधित सूचनाएं भेजने की अनुमति नहीं देते हैं या यदि आप सूचनाएं अक्षम करते हैं तो ये सेटिंग्स ओवरराइड होती हैं',
- 'forum-privacy' => 'फोरम सेटिंग्स',
- 'forum-privacy-post' => 'उपयोगकर्ताओं को आपके द्वारा पोस्ट किए गए फ़ोरम पोस्ट की सूची देखने की अनुमति दें',
- 'forum-privacy-topic' => 'उपयोगकर्ताओं को आपके द्वारा शुरू किए गए मंच विषयों की एक सूची देखने की अनुमति दें',
- 'forum-help' => 'उन समूहों के साथ विशिष्ट फ़ोरम संबंधित आँकड़ों और सूचनाओं को साझा करने को नियंत्रित करें जिन्हें आपकी प्रोफ़ाइल तक पहुँचने की अनुमति है। यदि आप किसी भी समूह को अपने फ़ोरम से संबंधित आँकड़ों और जानकारी तक पहुँचने की अनुमति नहीं देते हैं या यदि आप निजी जाते हैं तो ये सेटिंग्स ओवरराइड होती हैं',
- 'forum-signature' => 'फोरम हस्ताक्षर',
- 'forums' => 'मंच',
- 'general' => 'सामान्य',
- 'general-settings' => 'सामान्य सेटिंग्स',
- 'gift-given' => 'उपहार दिया',
- 'gift-received' => 'उपहार प्राप्त हुआ',
- 'go-public' => 'सार्वजनिक होना',
- 'go-private' => 'निजी जाओ',
- 'history' => 'इतिहास',
- 'history-table' => 'माई हिस्ट्री टेबल',
- 'hit-n-runs' => 'हिट एंड रन',
- 'hit-n-runs-count' => 'हिट एंड रन काउंट (ऑल टाइम)',
- 'hit-n-runs-history' => 'टोरेंट हिट एंड रन हिस्ट्री',
- 'image' => 'छवि',
- 'important' => 'जरूरी',
- 'important-info' => 'महत्वपूर्ण जानकारी',
- 'information' => 'जानकारी',
- 'invite-friend' => 'अपने मित्र को आमंत्रित करें (ईमेल + संदेश आवश्यक)',
- 'invite-tree' => 'वृक्ष को आमंत्रित करें',
- 'invites' => 'आमंत्रण',
- 'invites-banned' => 'त्रुटि: आपके आमंत्रित अधिकार अक्षम कर दिए गए हैं',
- 'invites-banned-desc' => 'अगर आपको लगता है कि यह त्रुटि है, तो कृपया कर्मचारियों से संपर्क करें!',
- 'invites-count' => 'यू हैव: काउंट इनविटेड टोकन',
- 'invites-disabled' => 'ध्यान दें: खुले पंजीकरण के कारण आमंत्रित अक्षम हैं!',
- 'invites-disabled-desc' => 'कृपया कुछ समय बाद दोबारा देखें!',
- 'invites-rules' => '- केवल उन लोगों को आमंत्रित करें जिन्हें आप जानते हैं और विश्वास करते हैं।
- आपके द्वारा आमंत्रित किए जाने के लिए आपको व्यक्तिगत रूप से जिम्मेदार ठहराया जाएगा।
- खुद को आमंत्रित न करें, हम प्रत्येक आमंत्रित उपयोगकर्ता की जांच करते हैं।
- व्यापार या आमंत्रण न बेचें।
- यदि आपके द्वारा आमंत्रित किया गया कोई व्यक्ति धोखा दे रहा है, ट्रेडिंग खाता या बिक्री / ट्रेडिंग आमंत्रित करता है, तो आपको चेतावनी दी जाएगी।
',
- 'invites-send' => 'आमंत्रण भेजते हैं',
- 'last-login' => 'अंतिम लॉगइन',
- 'locked' => 'बंद',
- 'locked-achievements' => 'बंद उपलब्धियों',
- 'member-since' => 'से सदस्ये',
- 'members-desc' => 'पर पंजीकृत उपयोगकर्ताओं की सूची: सभी समूहों के साथ शीर्षक। अब एक उपयोगकर्ता खोजें।',
- 'mention-notification' => '@ नोटिफ़िकेशन सेटिंग्स',
+ 'about' => 'के बारे में',
+ 'about-me' => 'मेरे बारे में',
+ 'accepted-at' => 'पर स्वीकार किया गया',
+ 'accepted-by' => 'इसके द्वारा स्वीकृत',
+ 'account-notification' => 'खाता अधिसूचना सेटिंग्स',
+ 'account-notification-follow' => 'जब कोई उपयोगकर्ता आपके खाते का अनुसरण करता है, तो एक सूचना प्राप्त करें',
+ 'account-notification-unfollow' => 'जब कोई उपयोगकर्ता आपके खाते को अनफ़ॉलो करता है तो एक सूचना प्राप्त करें',
+ 'account-notification-help' => 'अपने खाते से संबंधित सूचनाओं को नियंत्रित करें। यदि आप किसी समूह को अपने खाते से संबंधित सूचनाएं भेजने की अनुमति नहीं देते हैं या यदि आप सूचनाएं अक्षम करते हैं तो ये सेटिंग्स ओवरराइड की जाती हैं',
+ 'account-settings' => 'अकाउंट सेटिंग',
+ 'achievement-privacy' => 'उपलब्धि सेटिंग्स',
+ 'achievement-privacy-list' => 'उपयोगकर्ताओं को अपनी उपलब्धियों की सूची देखने की अनुमति दें',
+ 'achievement-help' => 'उन समूहों के साथ विशिष्ट उपलब्धि संबंधी जानकारी साझा करने को नियंत्रित करें, जिन्हें आपकी प्रोफ़ाइल तक पहुंचने की अनुमति है। यदि आप किसी समूह को अपनी उपलब्धियों का उपयोग करने की अनुमति नहीं देते हैं या यदि आप निजी जाते हैं तो इन सेटिंग्स को ओवरराइड किया जाता है',
+ 'achievements' => 'उपलब्धियां',
+ 'active' => 'सक्रिय',
+ 'active-table' => 'मेरी सक्रिय तालिका',
+ 'active-torrents' => 'सक्रिय धार',
+ 'active-warning' => 'सक्रिय चेतावनी',
+ 'active-warnings' => 'सक्रिय चेतावनी',
+ 'add-seedbox' => 'सीडबॉक्स जोड़ें',
+ 'all-torrents' => 'सभी टोरेंट',
+ 'article-comments' => 'लेख टिप्पणियाँ',
+ 'avatar' => 'अवतार',
+ 'avg-seedtime' => 'औसत बीजक',
+ 'badges' => 'बैज',
+ 'ban' => 'प्रतिबंध उपयोगकर्ता',
+ 'ban-log' => 'बैन लॉग',
+ 'become-hidden' => 'छिपे रहो',
+ 'become-visible' => 'दिखाई पड़ना',
+ 'bon' => 'बोन',
+ 'bon-notification' => 'बॉन अधिसूचना सेटिंग्स',
+ 'bon-notification-gift' => 'जब कोई उपयोगकर्ता आपको उपहार देता है तो एक अधिसूचना प्राप्त करें',
+ 'bon-notification-help' => 'नियंत्रण जो सूचनाएँ BON लेनदेन के संबंध में भेजी जाती हैं। यदि आप किसी भी समूह को BON से संबंधित सूचनाएं भेजने की अनुमति नहीं देते हैं या यदि आप सूचनाएं अक्षम करते हैं तो ये सेटिंग्स ओवरराइड की जाती हैं',
+ 'bookmarks' => 'बुकमार्क',
+ 'bounty-given' => 'बाउंटी दिया',
+ 'bounty-received' => 'बाउंटी ने प्राप्त किया',
+ 'can-chat' => 'चैट कर सकते हैं',
+ 'can-comment' => 'टिप्पणी कर सकते हैं',
+ 'can-download' => 'डाउनलोड कर सकते हैं',
+ 'can-invite' => 'आमंत्रित कर सकते हैं',
+ 'can-request' => 'निवेदन कर सकते हैं',
+ 'can-upload' => 'अपलोड कर सकते हैं',
+ 'certified-banker' => 'प्रमाणित बैंकर',
+ 'certified-banker-desc' => '50,000 या उससे अधिक बैंक में है',
+ 'certified-downloader' => 'प्रमाणित डाउनलोडर',
+ 'certified-downloader-desc' => '100 या अधिक Torrents डाउनलोड किया!',
+ 'certified-seeder' => 'प्रमाणित बीजक',
+ 'certified-seeder-desc' => 'सीडिंग 150 या अधिक टोरेंट!',
+ 'change-email' => 'ई - मेल बदलें',
+ 'change-email-help' => 'अपना ईमेल बदलने के बाद, आपको अपने खाते की फिर से पुष्टि करनी होगी',
+ 'change-password' => 'पासवर्ड बदलें',
+ 'change-password-help' => 'पासवर्ड बदलने के बाद आपको फिर से लॉगिन करना होगा',
+ 'client-ip-address' => 'क्लाइंट IP पता',
+ 'code' => 'कोड',
+ 'comments' => 'टिप्पणियाँ',
+ 'created-on' => 'को निर्मित',
+ 'credited-download' => 'साभार डाउनलोड',
+ 'credited-upload' => 'साभार अपलोड',
+ 'current-password' => 'वर्तमान पासवर्ड',
+ 'custom-title' => 'कस्टम शीर्षक',
+ 'delete' => 'उपभोक्ता मिटायें',
+ 'disable-notifications' => 'नोटीफिकेशन निष्क्रिय किया गया',
+ 'disclaimer' => 'अस्वीकरण',
+ 'disclaimer-info' => 'हम डिफ़ॉल्ट रूप से अधिकांश ट्रैकर्स की तरह उपयोगकर्ताओं के आईपी पते लॉग नहीं करते हैं। नीचे अपना सीडबॉक्स आईपी जोड़कर यह उम्मीद की जाती है कि आप जानते हैं कि नीचे सूचीबद्ध आपके आईपी अब हमारे डेटाबेस में संग्रहीत हैं जब तक कि आप रिकॉर्ड को हटा नहीं देते।',
+ 'disclaimer-info-bordered' => 'इसके बाद सीडबॉक्स आईपीएस को सूचीबद्ध किए गए आईपी से बोले जाने वाले टोरेंट्स पर हाई स्पीड टोरेंट टैग को ट्रिगर किया जाएगा',
+ 'download-bon' => 'बीओएन स्टोर से हटाए गए डाउनलोड करें',
+ 'download-recorded' => 'रिकॉर्डेड डाउनलोड',
+ 'download-true' => 'सही डाउनलोड',
+ 'downloads' => 'डाउनलोड',
+ 'edit' => 'यूजर को संपादित करो',
+ 'edit-profile' => 'प्रोफाइल एडिट करें',
+ 'enable-notifications' => 'सूचनाएं सक्षम करें',
+ 'expired' => 'समय सीमा समाप्त',
+ 'expires-on' => 'पर समय सीमा समाप्त',
+ 'extra' => 'अतिरिक्त',
+ 'filled-request' => 'भरे हुए सदस्य अनुरोध',
+ 'follow' => 'का पालन करें',
+ 'follower-privacy' => 'अनुयायी सेटिंग्स',
+ 'follower-privacy-list' => 'उपयोगकर्ताओं को अपने अनुयायियों की सूची देखने की अनुमति दें',
+ 'follower-help' => 'उन समूहों के साथ विशिष्ट अनुवर्ती संबंधित जानकारी को साझा करने को नियंत्रित करें जिन्हें आपकी प्रोफ़ाइल तक पहुंचने की अनुमति है। यदि आप किसी भी समूह को अपने अनुयायियों तक पहुंचने की अनुमति नहीं देते हैं या यदि आप निजी जाते हैं तो ये सेटिंग्स ओवरराइड की जाती हैं',
+ 'followers' => 'समर्थक',
+ 'following-notification' => 'उपयोगकर्ता अधिसूचना सेटिंग्स का पालन किया',
+ 'following-notification-upload' => 'उपयोगकर्ता द्वारा एक धार अपलोड करने पर एक अधिसूचना प्राप्त करें',
+ 'following-notification-help' => 'उपयोगकर्ता साइट की क्रियाओं के बारे में सूचनाएँ नियंत्रित करने के लिए जो सूचनाएँ भेजी जाती हैं। ये सेटिंग्स ओवरराइड हैं यदि आप किसी भी समूह को अनुसरण करने वाले उपयोगकर्ताओं से संबंधित सूचनाएं भेजने की अनुमति नहीं देते हैं या यदि आप सूचना अक्षम करते हैं',
+ 'formats-are-supported' => ': प्रारूप समर्थित हैं',
+ 'forum-notification' => 'फोरम अधिसूचना सेटिंग्स',
+ 'forum-notification-topic' => 'जब आप जिस विषय को शुरू करते हैं, तो एक अधिसूचना प्राप्त करें जिससे आपको एक नया पद मिले',
+ 'forum-notification-help' => 'फ़ोरम गतिविधियों से संबंधित सूचनाओं को नियंत्रित करें। यदि आप किसी भी समूह को मंच की गतिविधियों से संबंधित सूचनाएं भेजने की अनुमति नहीं देते हैं या यदि आप सूचनाएं अक्षम करते हैं तो ये सेटिंग्स ओवरराइड होती हैं',
+ 'forum-privacy' => 'फोरम सेटिंग्स',
+ 'forum-privacy-post' => 'उपयोगकर्ताओं को आपके द्वारा पोस्ट किए गए फ़ोरम पोस्ट की सूची देखने की अनुमति दें',
+ 'forum-privacy-topic' => 'उपयोगकर्ताओं को आपके द्वारा शुरू किए गए मंच विषयों की एक सूची देखने की अनुमति दें',
+ 'forum-help' => 'उन समूहों के साथ विशिष्ट फ़ोरम संबंधित आँकड़ों और सूचनाओं को साझा करने को नियंत्रित करें जिन्हें आपकी प्रोफ़ाइल तक पहुँचने की अनुमति है। यदि आप किसी भी समूह को अपने फ़ोरम से संबंधित आँकड़ों और जानकारी तक पहुँचने की अनुमति नहीं देते हैं या यदि आप निजी जाते हैं तो ये सेटिंग्स ओवरराइड होती हैं',
+ 'forum-signature' => 'फोरम हस्ताक्षर',
+ 'forums' => 'मंच',
+ 'general' => 'सामान्य',
+ 'general-settings' => 'सामान्य सेटिंग्स',
+ 'gift-given' => 'उपहार दिया',
+ 'gift-received' => 'उपहार प्राप्त हुआ',
+ 'go-public' => 'सार्वजनिक होना',
+ 'go-private' => 'निजी जाओ',
+ 'history' => 'इतिहास',
+ 'history-table' => 'माई हिस्ट्री टेबल',
+ 'hit-n-runs' => 'हिट एंड रन',
+ 'hit-n-runs-count' => 'हिट एंड रन काउंट (ऑल टाइम)',
+ 'hit-n-runs-history' => 'टोरेंट हिट एंड रन हिस्ट्री',
+ 'image' => 'छवि',
+ 'important' => 'जरूरी',
+ 'important-info' => 'महत्वपूर्ण जानकारी',
+ 'information' => 'जानकारी',
+ 'invite-friend' => 'अपने मित्र को आमंत्रित करें (ईमेल + संदेश आवश्यक)',
+ 'invite-tree' => 'वृक्ष को आमंत्रित करें',
+ 'invites' => 'आमंत्रण',
+ 'invites-banned' => 'त्रुटि: आपके आमंत्रित अधिकार अक्षम कर दिए गए हैं',
+ 'invites-banned-desc' => 'अगर आपको लगता है कि यह त्रुटि है, तो कृपया कर्मचारियों से संपर्क करें!',
+ 'invites-count' => 'यू हैव: काउंट इनविटेड टोकन',
+ 'invites-disabled' => 'ध्यान दें: खुले पंजीकरण के कारण आमंत्रित अक्षम हैं!',
+ 'invites-disabled-desc' => 'कृपया कुछ समय बाद दोबारा देखें!',
+ 'invites-rules' => '- केवल उन लोगों को आमंत्रित करें जिन्हें आप जानते हैं और विश्वास करते हैं।
- आपके द्वारा आमंत्रित किए जाने के लिए आपको व्यक्तिगत रूप से जिम्मेदार ठहराया जाएगा।
- खुद को आमंत्रित न करें, हम प्रत्येक आमंत्रित उपयोगकर्ता की जांच करते हैं।
- व्यापार या आमंत्रण न बेचें।
- यदि आपके द्वारा आमंत्रित किया गया कोई व्यक्ति धोखा दे रहा है, ट्रेडिंग खाता या बिक्री / ट्रेडिंग आमंत्रित करता है, तो आपको चेतावनी दी जाएगी।
',
+ 'invites-send' => 'आमंत्रण भेजते हैं',
+ 'last-login' => 'अंतिम लॉगइन',
+ 'locked' => 'बंद',
+ 'locked-achievements' => 'बंद उपलब्धियों',
+ 'member-since' => 'से सदस्ये',
+ 'members-desc' => 'पर पंजीकृत उपयोगकर्ताओं की सूची: सभी समूहों के साथ शीर्षक। अब एक उपयोगकर्ता खोजें।',
+ 'mention-notification' => '@ नोटिफ़िकेशन सेटिंग्स',
'mention-notification-article-comment' => 'जब आप लेख टिप्पणी में @mentioned होते हैं तो एक सूचना प्राप्त करें',
'mention-notification-torrent-comment' => 'एक टिप्पणी प्राप्त करें जब आप एक धारदार टिप्पणी में @mentioned हैं',
'mention-notification-request-comment' => 'अनुरोध टिप्पणी में @mentioned होने पर एक सूचना प्राप्त करें',
- 'mention-notification-forum-post' => 'जब आप फ़ोरम पोस्ट में @mentioned होते हैं, तो एक सूचना प्राप्त करें',
- 'mention-notification-help' => 'जब कोई उपयोगकर्ता @ आप को सूचित करता है तो नियंत्रण को सूचनाएँ भेजी जाती हैं। यदि आप किसी समूह को सूचनाएँ भेजने की अनुमति नहीं देते हैं, तो यदि उपयोगकर्ता आपको @ या यदि आप सूचनाएँ अक्षम करते हैं, तो ये सेटिंग्स ओवरराइड हो जाती हैं',
- 'moderated-by' => 'द्वारा संचालित: mod पर',
- 'my-bonus-points' => 'मेरे बोनस अंक',
- 'my-bookmarks' => 'मेरे बुकमार्क्स',
- 'my-fl-tokens' => 'मेरे FL टोकन',
- 'my-general-settings' => 'मेरी सामान्य सेटिंग्स',
- 'my-notification' => 'मेरी अधिसूचना',
- 'my-notification-settings' => 'मेरी अधिसूचना सेटिंग्स',
- 'my-privacy' => 'मेरी गोपनीयता',
- 'my-privacy-settings' => 'मेरी गोपनीयता सेटिंग्स',
- 'my-profile' => 'मेरी प्रोफाइल',
- 'my-requested' => 'मेरा अनुरोध है',
- 'my-security' => 'मेरी सुरक्षा',
- 'my-security-settings' => 'मेरी सुरक्षा सेटिंग्स',
- 'my-seedboxes' => 'मेरा सीडबॉक्स',
- 'my-settings' => 'मेरी सेटिंग्स',
- 'my-wishlist' => 'मेरी इच्छा सूची',
- 'no-logs' => 'इस उपयोगकर्ता के लिए डेटाबेस में कोई आमंत्रित लॉग नहीं हैं!',
- 'no-seedboxes' => 'सीडबॉक्स नहीं 😔',
- 'not-authorized' => 'आप इस पृष्ठ को देखने के लिए अधिकृत नहीं हैं। यह सदस्य निंजा की तरह छिपना पसंद करता है!',
- 'note' => 'ध्यान दें',
- 'notification' => 'अधिसूचना',
- 'notification-settings' => 'अधिसूचना सेटिंग',
- 'notification-from-account' => 'से खाता सूचनाएं प्राप्त करें',
- 'notification-from-account-help' => 'आपको केवल सिस्टम, कर्मचारियों और निम्नलिखित समूहों से खाता सूचनाएं प्राप्त होंगी। यदि आप सूचनाएं अक्षम करते हैं तो ये सेटिंग्स ओवरराइड हो जाती हैं',
- 'notification-from-bon' => 'से बॉन सूचनाएँ प्राप्त करें',
- 'notification-from-bon-help' => 'आप केवल सिस्टम, कर्मचारियों और निम्नलिखित समूहों से बीओएन सूचनाएं प्राप्त करेंगे। यदि आप सूचनाएं अक्षम करते हैं तो ये सेटिंग्स ओवरराइड हो जाती हैं',
- 'notification-from-following' => 'उपयोगकर्ता से प्राप्त सूचनाओं का अनुसरण करें',
- 'notification-from-following-help' => 'आपको निम्नलिखित समूहों से केवल उपयोगकर्ता सूचनाएँ प्राप्त होंगी। यदि आप सूचनाएं अक्षम करते हैं तो ये सेटिंग्स ओवरराइड हो जाती हैं',
- 'notification-from-forum' => 'से फोरम सूचनाएं प्राप्त करें',
- 'notification-from-forum-help' => 'आप केवल सिस्टम, कर्मचारियों और निम्नलिखित समूहों से फोरम की सूचनाएं प्राप्त करेंगे। यदि आप सूचनाएं अक्षम करते हैं तो ये सेटिंग्स ओवरराइड हो जाती हैं',
- 'notification-from-subscription' => 'सदस्यता से सूचनाएं प्राप्त करें',
- 'notification-from-subscription-help' => 'आप केवल सिस्टम, कर्मचारियों और निम्नलिखित समूहों से फोरम की सूचनाएं प्राप्त करेंगे। यदि आप सूचनाएं अक्षम करते हैं तो ये सेटिंग्स ओवरराइड हो जाती हैं',
- 'notification-from-torrent' => 'से टोरेंट नोटिफिकेशन प्राप्त करें',
- 'notification-from-torrent-help' => 'आप केवल सिस्टम, कर्मचारियों और निम्नलिखित समूहों से टोरेंट नोटिफिकेशन प्राप्त करेंगे। यदि आप सूचनाएं अक्षम करते हैं तो ये सेटिंग्स ओवरराइड हो जाती हैं',
- 'notification-from-mention' => '@ नोटिफिकेशन से प्राप्त करें',
- 'notification-from-mention-help' => 'आपको सिस्टम, कर्मचारियों और निम्नलिखित समूहों से केवल @ नोटिफिकेशन सूचनाएं प्राप्त होंगी। यदि आप सूचनाएं अक्षम करते हैं तो ये सेटिंग्स ओवरराइड हो जाती हैं',
- 'notification-from-request' => 'से अनुरोध सूचनाएं प्राप्त करें',
- 'notification-from-request-help' => 'आपको केवल सिस्टम, कर्मचारियों और निम्नलिखित समूहों से अनुरोध सूचनाएं प्राप्त होंगी। यदि आप सूचनाएं अक्षम करते हैं तो ये सेटिंग्स ओवरराइड हो जाती हैं',
- 'notifications' => 'सूचनाएं',
- 'offline' => 'उपयोगकर्ता ऑफ़लाइन है!',
- 'online' => 'उपयोगकर्ता ऑनलाइन है!',
- 'options' => 'विकल्प',
- 'other-help' => 'उन समूहों के साथ अन्य आँकड़ों और सूचनाओं को साझा करने को नियंत्रित करें, जिन्हें आपकी प्रोफ़ाइल तक पहुँचने की अनुमति है। यदि आप किसी भी समूह को अपने अन्य आँकड़ों और सूचनाओं का उपयोग करने की अनुमति नहीं देते हैं या यदि आप निजी जाते हैं तो ये सेटिंग्स ओवरराइड होती हैं',
- 'other-privacy' => 'अन्य सेटिंग',
- 'other-privacy-online' => 'उपयोगकर्ताओं को आपको ऑनलाइन उपयोगकर्ता ब्लॉक में देखने की अनुमति देता है',
- 'passkey' => 'पीआईडी',
- 'passkey-warning' => 'PID आपके पासवर्ड की तरह है, आपको इसे सुरक्षित रखना होगा!',
- 'pending-achievements' => 'लंबित उपलब्धियां',
- 'per-torrent' => 'प्रति टोरेंट',
- 'posts' => 'पोस्ट',
- 'posts-posted' => 'मंच पोस्ट',
- 'privacy' => 'एकांत',
- 'privacy-settings' => 'गोपनीय सेटिंग',
- 'private-info' => 'निजी जानकारी',
- 'private-forum-profile' => 'ध्यान दें: यह सदस्य विषय और पोस्ट इतिहास के लिए निर्धारित किया गया है!',
- 'private-profile' => 'ध्यान दें: इस प्रोफ़ाइल को निजी करने के लिए सेट कर दिया गया है!',
- 'profile' => 'प्रोफाइल',
- 'profile-desc' => 'उपयोगकर्ता: उपयोगकर्ता प्रोफ़ाइल पर पंजीकृत: शीर्षक',
- 'profile-privacy' => 'पार्श्वचित्र समायोजन',
- 'profile-privacy-torrent-count' => 'अपने कुल डाउनलोड, अपलोड, बीज और लीचे साझा करें',
- 'profile-privacy-torrent-ratio' => 'दर्ज अनुपात के साथ अपना कुल अपलोड / डाउनलोड डेटा साझा करें',
- 'profile-privacy-torrent-seed' => 'अपने कुल बोने का समय और औसत साझा करें',
- 'profile-privacy-title' => 'अपनी व्यक्तिगत शीर्षक जानकारी साझा करें',
- 'profile-privacy-about' => 'मेरे बारे में अपनी निजी जानकारी साझा करें',
- 'profile-privacy-bon-extra' => 'अपने BON आंकड़े साझा करें',
- 'profile-privacy-comment-extra' => 'अपनी टिप्पणी के आँकड़े साझा करें',
- 'profile-privacy-forum-extra' => 'अपने मंच के आँकड़े साझा करें',
- 'profile-privacy-request-extra' => 'अपने अनुरोध के आंकड़े साझा करें',
- 'profile-privacy-torrent-extra' => 'अपने टोरेंट आँकड़े साझा करें',
- 'profile-privacy-badge' => 'अपने अर्जित बैज साझा करें',
- 'profile-privacy-achievement' => 'अपनी हाल की उपलब्धियों को साझा करें',
- 'profile-privacy-follower' => 'अपने हाल के अनुयायियों को साझा करें',
- 'profile-privacy-warning' => 'अपने H & R चेतावनियों को साझा करें',
- 'profile-privacy-help' => 'नियंत्रण और जानकारी के टुकड़े आपकी प्रोफ़ाइल पर दिखाई देते हैं। यदि आप किसी समूह को अपनी प्रोफ़ाइल तक पहुँचने की अनुमति नहीं देते हैं या यदि आप निजी जाते हैं तो ये सेटिंग्स ओवरराइड की जाती हैं',
- 'public-info' => 'सार्वजनिक जानकारी',
- 'recent-achievements' => 'हाल की उपलब्धियां',
- 'recent-followers' => 'हाल के अनुयायी',
- 'registration-date' => 'पंजीकरण की तारीख',
- 'report' => 'रिपोर्ट',
- 'request-help' => 'विशिष्ट प्रोफ़ाइल से संबंधित आँकड़ों और जानकारी को उन समूहों के साथ साझा करने को नियंत्रित करें जिन्हें आपकी प्रोफ़ाइल तक पहुँचने की अनुमति है। यदि आप किसी समूह को आपके अनुरोधित आँकड़ों और सूचनाओं का उपयोग करने की अनुमति नहीं देते हैं या यदि आप निजी जाते हैं तो ये सेटिंग्स ओवरराइड होती हैं',
- 'request' => 'निवेदन',
- 'requested' => 'का अनुरोध किया',
- 'requests' => 'अनुरोध',
- 'request-comments' => 'अनुरोध किया टिप्पणियाँ',
- 'request-notification' => 'अधिसूचना सेटिंग्स का अनुरोध करें',
- 'request-notification-bounty' => 'अनुरोधित टोरेंट को एक नया इनाम मिलने पर एक सूचना प्राप्त करें',
- 'request-notification-comment' => 'अनुरोधित टोरेंट को नई टिप्पणी मिलने पर एक सूचना प्राप्त करें',
- 'request-notification-fill' => 'एक अनुरोध प्राप्त करें जब अनुरोधित धार भर जाती है',
- 'request-notification-fill-approve' => 'एक अनुरोध प्राप्त करें जब अनुरोधित धार भराव स्वीकृत हो जाता है',
- 'request-notification-fill-reject' => 'एक अनुरोध प्राप्त करें जब अनुरोधित टोरेंट भरण अस्वीकृत हो जाता है',
- 'request-notification-claim' => 'एक अनुरोध प्राप्त करें जब अनुरोधित धार का दावा किया जाता है',
- 'request-notification-unclaim' => 'एक अनुरोध प्राप्त करें जब अनुरोधित धार लावारिस हो जाती है',
- 'request-notification-help' => 'अनुरोध गतिविधियों के संबंध में सूचनाओं को नियंत्रित किया जाता है। यदि आप किसी समूह को अनुरोध गतिविधियों से संबंधित सूचनाएं भेजने की अनुमति नहीं देते हैं या यदि आप सूचनाएं अक्षम करते हैं तो ये सेटिंग्स ओवरराइड की जाती हैं',
- 'request-privacy' => 'अनुरोध सेटिंग्स',
- 'request-privacy-requested' => 'उपयोगकर्ताओं को आपके द्वारा किए गए अनुरोधों की एक सूची देखने की अनुमति दें',
- 'reset-passkey' => 'रीसेट कुंजी (पीआईडी)',
- 'reset-passkey-help' => 'PID को रीसेट करने के बाद, आपको अपने सभी सक्रिय टॉरेंट्स को फिर से डाउनलोड करना होगा',
- 'reset-rss' => 'RSS कुंजी (RID) रीसेट करें',
- 'reset-rss-help' => 'RID को रीसेट करने के बाद, आपको अपने सभी सक्रिय RSS फीड्स को फिर से लोड करना होगा',
- 'resurrections' => 'पुनरुत्थान',
- 'search' => 'उपयोगकर्ता द्वारा त्वरित खोज',
- 'security' => 'सुरक्षा',
- 'security-settings' => 'सुरक्षा सेटिंग',
- 'seedboxes' => 'seedboxes',
- 'seeds' => 'बीज',
- 'send-invite' => 'आमंत्रण भेजो',
- 'sender' => 'प्रेषक',
- 'settings' => 'सेटिंग्स',
- 'show-passkey' => 'पीआईडी दिखाएं',
- 'staff-noted' => 'स्टाफ नोट किए गए खाते',
- 'statistics' => 'आंकड़े',
- 'subscription-notification' => 'सदस्यता अधिसूचना सेटिंग्स',
- 'subscription-notification-forum' => 'एक सदस्यता प्राप्त मंच को एक नया विषय मिलने पर एक अधिसूचना प्राप्त करें',
- 'subscription-notification-topic' => 'सब्स्क्राइब्ड विषय को नया पद मिलने पर एक अधिसूचना प्राप्त करें',
- 'subscription-notification-help' => 'नियंत्रण जो आपके सदस्यता के संबंध में सूचनाएँ भेजी जाती हैं। यदि आप किसी समूह को अपनी सदस्यता से संबंधित सूचनाएं भेजने की अनुमति नहीं देते हैं या यदि आप सूचनाएं अक्षम करते हैं तो ये सेटिंग्स ओवरराइड की जाती हैं',
- 'thanks-given' => 'धन्यवाद दिया',
- 'thanks-received' => 'धन्यवाद प्राप्त हुआ',
- 'tips-given' => 'टिप्स दिए',
- 'tips-received' => 'युक्तियाँ प्राप्त हुईं',
- 'title' => 'शीर्षक',
- 'top-bankers' => 'शीर्ष बैंकर',
- 'top-downloaders-data' => 'शीर्ष डाउनलोडर (डेटा)',
- 'top-leechers' => 'शीर्ष लेकर्स',
- 'top-leechers-count' => 'शीर्ष भाषी (गणना)',
- 'top-seeders' => 'शीर्ष सीडर्स',
- 'top-seeders-count' => 'शीर्ष बीजक (गणना)',
- 'top-seeding-size' => 'टॉप सीडिंग (आकार)',
- 'top-seedtime' => 'शीर्ष बीजपत्र',
- 'top-uploaders-data' => 'शीर्ष अपलोडर (डेटा)',
- 'top-uploaders-count' => 'शीर्ष अपलोडर (गणना)',
- 'topics' => 'विषय',
- 'topics-started' => 'फोरम विषय शुरू',
- 'torrent-comments' => 'टोरेंट ने टिप्पणियां कीं',
- 'torrent-help' => 'उन विशिष्ट समूहों से संबंधित आँकड़ों और सूचनाओं को साझा करने को नियंत्रित करें, जिन्हें आपकी प्रोफ़ाइल तक पहुँचने की अनुमति है। यदि आप किसी भी समूह को अपने संबंधित आँकड़ों और जानकारी तक पहुँचने की अनुमति नहीं देते हैं या यदि आप निजी जाते हैं तो ये सेटिंग्स ओवरराइड होती हैं',
- 'torrent-notification' => 'टोरेंट अधिसूचना सेटिंग्स',
- 'torrent-notification-comment' => 'जब एक अपलोड की गई टोरेंट को एक नई टिप्पणी मिलती है तो एक अधिसूचना प्राप्त करें',
- 'torrent-notification-thank' => 'जब अपलोड की गई टोरेंट को नया धन्यवाद मिलता है तो एक अधिसूचना प्राप्त करें',
- 'torrent-notification-tip' => 'जब अपलोड की गई धार को एक नया टिप मिलता है, तो एक अधिसूचना प्राप्त करें',
- 'torrent-notification-help' => 'नियंत्रण जो टोरेंट गतिविधियों से संबंधित सूचनाएं भेजी जाती हैं। यदि आप किसी भी समूह को टोरेंट गतिविधियों से संबंधित सूचनाएं भेजने की अनुमति नहीं देते हैं या यदि आप सूचनाएं अक्षम करते हैं तो ये सेटिंग्स ओवरराइड की जाती हैं',
- 'torrent-privacy' => 'धार सेटिंग्स',
- 'torrent-privacy-download' => 'उपयोगकर्ताओं को आपके द्वारा डाउनलोड किए गए टॉरेंट की एक सूची देखने की अनुमति दें',
- 'torrent-privacy-upload' => 'उपयोगकर्ताओं को आपके द्वारा अपलोड किए गए टॉरेंट की एक सूची देखने की अनुमति दें',
- 'torrent-privacy-peer' => 'उपयोगकर्ताओं को आपको टोरेंट पीयर हिस्ट्री टेबल में देखने की अनुमति देता है',
- 'torrents' => 'टोरेंट',
- 'torrents-history' => 'Torrents इतिहास',
- 'total-download' => 'कुल डाउनलोड',
- 'total-downloads' => 'कुल डाउनलोड',
- 'total-leeching' => 'कुल लीचिंग',
- 'total-seeding' => 'कुल सीडिंग',
- 'total-seedtime' => 'कुल बीज',
- 'total-upload' => 'कुल अपलोड',
- 'total-uploads' => 'कुल अपलोड',
- 'unban' => 'अनबन उपयोगकर्ता',
- 'unfollow' => 'करें',
- 'unlocked' => 'खुला',
- 'unlocked-achievements' => 'अनलॉक की गई उपलब्धियां',
- 'unsatisfieds' => 'Unsatisfieds',
- 'upload-bon' => 'अपलोड करें BON स्टोर से',
- 'upload-recorded' => 'रिकॉर्डेड अपलोड',
- 'upload-true' => 'सच अपलोड',
- 'uploads' => 'अपलोड',
- 'uploads-table' => 'अपलोड तालिका',
- 'user' => 'उपयोगकर्ता',
- 'user-id' => 'यूज़र आईडी',
- 'username-seedbox' => 'उपयोगकर्ता नाम Seedbox',
- 'visible-to-achievement' => 'उपलब्धियां दिखाई देती हैं',
- 'visible-to-achievement-help' => 'आपकी उपलब्धियाँ केवल कर्मचारियों और निम्न समूहों को दिखाई देंगी। यदि आप निजी जाते हैं तो इन सेटिंग्स को ओवरराइड किया जाता है',
- 'visible-to-follower' => 'अनुयायियों को दिखाई',
- 'visible-to-follower-help' => 'आपके अनुयायी केवल कर्मचारियों और निम्नलिखित समूहों को दिखाई देंगे यदि आप निजी जाते हैं तो इन सेटिंग्स को ओवरराइड किया जाता है',
- 'visible-to-forum' => 'फोरम की जानकारी',
- 'visible-to-forum-help' => 'आपकी फ़ोरम जानकारी केवल कर्मचारियों और निम्न समूहों को दिखाई देगी। यदि आप निजी जाते हैं तो इन सेटिंग्स को ओवरराइड किया जाता है',
- 'visible-to-other' => 'अन्य दर्शनीय',
- 'visible-to-other-help' => 'आपके खाते से संबंधित अन्य जानकारी केवल कर्मचारियों और निम्न समूहों को दिखाई देगी। यदि आप निजी जाते हैं या यदि आप छिपे हुए हैं तो इन सेटिंग्स को ओवरराइड किया जाता है',
- 'visible-to-profile' => 'प्रोफ़ाइल दर्शनीय है',
- 'visible-to-profile-help' => 'आपकी प्रोफ़ाइल केवल कर्मचारियों और निम्न समूहों को दिखाई देगी। यदि आप निजी जाते हैं तो इन सेटिंग्स को ओवरराइड किया जाता है',
- 'visible-to-request' => 'अनुरोध सूचना दर्शनीय है',
- 'visible-to-request-help' => 'आपकी अनुरोध जानकारी केवल कर्मचारियों और निम्न समूहों को दिखाई देगी। यदि आप निजी जाते हैं तो इन सेटिंग्स को ओवरराइड किया जाता है',
- 'visible-to-torrent' => 'टोरेंट की जानकारी दर्शनीय है',
- 'visible-to-torrent-help' => 'आपकी टोरेंट जानकारी केवल कर्मचारियों और निम्न समूहों को दिखाई देगी। यदि आप निजी जाते हैं या यदि आप छिपे हुए हैं तो इन सेटिंग्स को ओवरराइड किया जाता है',
- 'warned-on' => 'पर चेतावनी दी',
- 'warning' => 'चेतावनी',
- 'warning-log' => 'चेतावनी लॉग',
- 'wishlist' => 'इच्छा-सूची',
+ 'mention-notification-forum-post' => 'जब आप फ़ोरम पोस्ट में @mentioned होते हैं, तो एक सूचना प्राप्त करें',
+ 'mention-notification-help' => 'जब कोई उपयोगकर्ता @ आप को सूचित करता है तो नियंत्रण को सूचनाएँ भेजी जाती हैं। यदि आप किसी समूह को सूचनाएँ भेजने की अनुमति नहीं देते हैं, तो यदि उपयोगकर्ता आपको @ या यदि आप सूचनाएँ अक्षम करते हैं, तो ये सेटिंग्स ओवरराइड हो जाती हैं',
+ 'moderated-by' => 'द्वारा संचालित: mod पर',
+ 'my-bonus-points' => 'मेरे बोनस अंक',
+ 'my-bookmarks' => 'मेरे बुकमार्क्स',
+ 'my-fl-tokens' => 'मेरे FL टोकन',
+ 'my-general-settings' => 'मेरी सामान्य सेटिंग्स',
+ 'my-notification' => 'मेरी अधिसूचना',
+ 'my-notification-settings' => 'मेरी अधिसूचना सेटिंग्स',
+ 'my-privacy' => 'मेरी गोपनीयता',
+ 'my-privacy-settings' => 'मेरी गोपनीयता सेटिंग्स',
+ 'my-profile' => 'मेरी प्रोफाइल',
+ 'my-requested' => 'मेरा अनुरोध है',
+ 'my-security' => 'मेरी सुरक्षा',
+ 'my-security-settings' => 'मेरी सुरक्षा सेटिंग्स',
+ 'my-seedboxes' => 'मेरा सीडबॉक्स',
+ 'my-settings' => 'मेरी सेटिंग्स',
+ 'my-wishlist' => 'मेरी इच्छा सूची',
+ 'no-logs' => 'इस उपयोगकर्ता के लिए डेटाबेस में कोई आमंत्रित लॉग नहीं हैं!',
+ 'no-seedboxes' => 'सीडबॉक्स नहीं 😔',
+ 'not-authorized' => 'आप इस पृष्ठ को देखने के लिए अधिकृत नहीं हैं। यह सदस्य निंजा की तरह छिपना पसंद करता है!',
+ 'note' => 'ध्यान दें',
+ 'notification' => 'अधिसूचना',
+ 'notification-settings' => 'अधिसूचना सेटिंग',
+ 'notification-from-account' => 'से खाता सूचनाएं प्राप्त करें',
+ 'notification-from-account-help' => 'आपको केवल सिस्टम, कर्मचारियों और निम्नलिखित समूहों से खाता सूचनाएं प्राप्त होंगी। यदि आप सूचनाएं अक्षम करते हैं तो ये सेटिंग्स ओवरराइड हो जाती हैं',
+ 'notification-from-bon' => 'से बॉन सूचनाएँ प्राप्त करें',
+ 'notification-from-bon-help' => 'आप केवल सिस्टम, कर्मचारियों और निम्नलिखित समूहों से बीओएन सूचनाएं प्राप्त करेंगे। यदि आप सूचनाएं अक्षम करते हैं तो ये सेटिंग्स ओवरराइड हो जाती हैं',
+ 'notification-from-following' => 'उपयोगकर्ता से प्राप्त सूचनाओं का अनुसरण करें',
+ 'notification-from-following-help' => 'आपको निम्नलिखित समूहों से केवल उपयोगकर्ता सूचनाएँ प्राप्त होंगी। यदि आप सूचनाएं अक्षम करते हैं तो ये सेटिंग्स ओवरराइड हो जाती हैं',
+ 'notification-from-forum' => 'से फोरम सूचनाएं प्राप्त करें',
+ 'notification-from-forum-help' => 'आप केवल सिस्टम, कर्मचारियों और निम्नलिखित समूहों से फोरम की सूचनाएं प्राप्त करेंगे। यदि आप सूचनाएं अक्षम करते हैं तो ये सेटिंग्स ओवरराइड हो जाती हैं',
+ 'notification-from-subscription' => 'सदस्यता से सूचनाएं प्राप्त करें',
+ 'notification-from-subscription-help' => 'आप केवल सिस्टम, कर्मचारियों और निम्नलिखित समूहों से फोरम की सूचनाएं प्राप्त करेंगे। यदि आप सूचनाएं अक्षम करते हैं तो ये सेटिंग्स ओवरराइड हो जाती हैं',
+ 'notification-from-torrent' => 'से टोरेंट नोटिफिकेशन प्राप्त करें',
+ 'notification-from-torrent-help' => 'आप केवल सिस्टम, कर्मचारियों और निम्नलिखित समूहों से टोरेंट नोटिफिकेशन प्राप्त करेंगे। यदि आप सूचनाएं अक्षम करते हैं तो ये सेटिंग्स ओवरराइड हो जाती हैं',
+ 'notification-from-mention' => '@ नोटिफिकेशन से प्राप्त करें',
+ 'notification-from-mention-help' => 'आपको सिस्टम, कर्मचारियों और निम्नलिखित समूहों से केवल @ नोटिफिकेशन सूचनाएं प्राप्त होंगी। यदि आप सूचनाएं अक्षम करते हैं तो ये सेटिंग्स ओवरराइड हो जाती हैं',
+ 'notification-from-request' => 'से अनुरोध सूचनाएं प्राप्त करें',
+ 'notification-from-request-help' => 'आपको केवल सिस्टम, कर्मचारियों और निम्नलिखित समूहों से अनुरोध सूचनाएं प्राप्त होंगी। यदि आप सूचनाएं अक्षम करते हैं तो ये सेटिंग्स ओवरराइड हो जाती हैं',
+ 'notifications' => 'सूचनाएं',
+ 'offline' => 'उपयोगकर्ता ऑफ़लाइन है!',
+ 'online' => 'उपयोगकर्ता ऑनलाइन है!',
+ 'options' => 'विकल्प',
+ 'other-help' => 'उन समूहों के साथ अन्य आँकड़ों और सूचनाओं को साझा करने को नियंत्रित करें, जिन्हें आपकी प्रोफ़ाइल तक पहुँचने की अनुमति है। यदि आप किसी भी समूह को अपने अन्य आँकड़ों और सूचनाओं का उपयोग करने की अनुमति नहीं देते हैं या यदि आप निजी जाते हैं तो ये सेटिंग्स ओवरराइड होती हैं',
+ 'other-privacy' => 'अन्य सेटिंग',
+ 'other-privacy-online' => 'उपयोगकर्ताओं को आपको ऑनलाइन उपयोगकर्ता ब्लॉक में देखने की अनुमति देता है',
+ 'passkey' => 'पीआईडी',
+ 'passkey-warning' => 'PID आपके पासवर्ड की तरह है, आपको इसे सुरक्षित रखना होगा!',
+ 'pending-achievements' => 'लंबित उपलब्धियां',
+ 'per-torrent' => 'प्रति टोरेंट',
+ 'posts' => 'पोस्ट',
+ 'posts-posted' => 'मंच पोस्ट',
+ 'privacy' => 'एकांत',
+ 'privacy-settings' => 'गोपनीय सेटिंग',
+ 'private-info' => 'निजी जानकारी',
+ 'private-forum-profile' => 'ध्यान दें: यह सदस्य विषय और पोस्ट इतिहास के लिए निर्धारित किया गया है!',
+ 'private-profile' => 'ध्यान दें: इस प्रोफ़ाइल को निजी करने के लिए सेट कर दिया गया है!',
+ 'profile' => 'प्रोफाइल',
+ 'profile-desc' => 'उपयोगकर्ता: उपयोगकर्ता प्रोफ़ाइल पर पंजीकृत: शीर्षक',
+ 'profile-privacy' => 'पार्श्वचित्र समायोजन',
+ 'profile-privacy-torrent-count' => 'अपने कुल डाउनलोड, अपलोड, बीज और लीचे साझा करें',
+ 'profile-privacy-torrent-ratio' => 'दर्ज अनुपात के साथ अपना कुल अपलोड / डाउनलोड डेटा साझा करें',
+ 'profile-privacy-torrent-seed' => 'अपने कुल बोने का समय और औसत साझा करें',
+ 'profile-privacy-title' => 'अपनी व्यक्तिगत शीर्षक जानकारी साझा करें',
+ 'profile-privacy-about' => 'मेरे बारे में अपनी निजी जानकारी साझा करें',
+ 'profile-privacy-bon-extra' => 'अपने BON आंकड़े साझा करें',
+ 'profile-privacy-comment-extra' => 'अपनी टिप्पणी के आँकड़े साझा करें',
+ 'profile-privacy-forum-extra' => 'अपने मंच के आँकड़े साझा करें',
+ 'profile-privacy-request-extra' => 'अपने अनुरोध के आंकड़े साझा करें',
+ 'profile-privacy-torrent-extra' => 'अपने टोरेंट आँकड़े साझा करें',
+ 'profile-privacy-badge' => 'अपने अर्जित बैज साझा करें',
+ 'profile-privacy-achievement' => 'अपनी हाल की उपलब्धियों को साझा करें',
+ 'profile-privacy-follower' => 'अपने हाल के अनुयायियों को साझा करें',
+ 'profile-privacy-warning' => 'अपने H & R चेतावनियों को साझा करें',
+ 'profile-privacy-help' => 'नियंत्रण और जानकारी के टुकड़े आपकी प्रोफ़ाइल पर दिखाई देते हैं। यदि आप किसी समूह को अपनी प्रोफ़ाइल तक पहुँचने की अनुमति नहीं देते हैं या यदि आप निजी जाते हैं तो ये सेटिंग्स ओवरराइड की जाती हैं',
+ 'public-info' => 'सार्वजनिक जानकारी',
+ 'recent-achievements' => 'हाल की उपलब्धियां',
+ 'recent-followers' => 'हाल के अनुयायी',
+ 'registration-date' => 'पंजीकरण की तारीख',
+ 'report' => 'रिपोर्ट',
+ 'request-help' => 'विशिष्ट प्रोफ़ाइल से संबंधित आँकड़ों और जानकारी को उन समूहों के साथ साझा करने को नियंत्रित करें जिन्हें आपकी प्रोफ़ाइल तक पहुँचने की अनुमति है। यदि आप किसी समूह को आपके अनुरोधित आँकड़ों और सूचनाओं का उपयोग करने की अनुमति नहीं देते हैं या यदि आप निजी जाते हैं तो ये सेटिंग्स ओवरराइड होती हैं',
+ 'request' => 'निवेदन',
+ 'requested' => 'का अनुरोध किया',
+ 'requests' => 'अनुरोध',
+ 'request-comments' => 'अनुरोध किया टिप्पणियाँ',
+ 'request-notification' => 'अधिसूचना सेटिंग्स का अनुरोध करें',
+ 'request-notification-bounty' => 'अनुरोधित टोरेंट को एक नया इनाम मिलने पर एक सूचना प्राप्त करें',
+ 'request-notification-comment' => 'अनुरोधित टोरेंट को नई टिप्पणी मिलने पर एक सूचना प्राप्त करें',
+ 'request-notification-fill' => 'एक अनुरोध प्राप्त करें जब अनुरोधित धार भर जाती है',
+ 'request-notification-fill-approve' => 'एक अनुरोध प्राप्त करें जब अनुरोधित धार भराव स्वीकृत हो जाता है',
+ 'request-notification-fill-reject' => 'एक अनुरोध प्राप्त करें जब अनुरोधित टोरेंट भरण अस्वीकृत हो जाता है',
+ 'request-notification-claim' => 'एक अनुरोध प्राप्त करें जब अनुरोधित धार का दावा किया जाता है',
+ 'request-notification-unclaim' => 'एक अनुरोध प्राप्त करें जब अनुरोधित धार लावारिस हो जाती है',
+ 'request-notification-help' => 'अनुरोध गतिविधियों के संबंध में सूचनाओं को नियंत्रित किया जाता है। यदि आप किसी समूह को अनुरोध गतिविधियों से संबंधित सूचनाएं भेजने की अनुमति नहीं देते हैं या यदि आप सूचनाएं अक्षम करते हैं तो ये सेटिंग्स ओवरराइड की जाती हैं',
+ 'request-privacy' => 'अनुरोध सेटिंग्स',
+ 'request-privacy-requested' => 'उपयोगकर्ताओं को आपके द्वारा किए गए अनुरोधों की एक सूची देखने की अनुमति दें',
+ 'reset-passkey' => 'रीसेट कुंजी (पीआईडी)',
+ 'reset-passkey-help' => 'PID को रीसेट करने के बाद, आपको अपने सभी सक्रिय टॉरेंट्स को फिर से डाउनलोड करना होगा',
+ 'reset-rss' => 'RSS कुंजी (RID) रीसेट करें',
+ 'reset-rss-help' => 'RID को रीसेट करने के बाद, आपको अपने सभी सक्रिय RSS फीड्स को फिर से लोड करना होगा',
+ 'resurrections' => 'पुनरुत्थान',
+ 'search' => 'उपयोगकर्ता द्वारा त्वरित खोज',
+ 'security' => 'सुरक्षा',
+ 'security-settings' => 'सुरक्षा सेटिंग',
+ 'seedboxes' => 'seedboxes',
+ 'seeds' => 'बीज',
+ 'send-invite' => 'आमंत्रण भेजो',
+ 'sender' => 'प्रेषक',
+ 'settings' => 'सेटिंग्स',
+ 'show-passkey' => 'पीआईडी दिखाएं',
+ 'staff-noted' => 'स्टाफ नोट किए गए खाते',
+ 'statistics' => 'आंकड़े',
+ 'subscription-notification' => 'सदस्यता अधिसूचना सेटिंग्स',
+ 'subscription-notification-forum' => 'एक सदस्यता प्राप्त मंच को एक नया विषय मिलने पर एक अधिसूचना प्राप्त करें',
+ 'subscription-notification-topic' => 'सब्स्क्राइब्ड विषय को नया पद मिलने पर एक अधिसूचना प्राप्त करें',
+ 'subscription-notification-help' => 'नियंत्रण जो आपके सदस्यता के संबंध में सूचनाएँ भेजी जाती हैं। यदि आप किसी समूह को अपनी सदस्यता से संबंधित सूचनाएं भेजने की अनुमति नहीं देते हैं या यदि आप सूचनाएं अक्षम करते हैं तो ये सेटिंग्स ओवरराइड की जाती हैं',
+ 'thanks-given' => 'धन्यवाद दिया',
+ 'thanks-received' => 'धन्यवाद प्राप्त हुआ',
+ 'tips-given' => 'टिप्स दिए',
+ 'tips-received' => 'युक्तियाँ प्राप्त हुईं',
+ 'title' => 'शीर्षक',
+ 'top-bankers' => 'शीर्ष बैंकर',
+ 'top-downloaders-data' => 'शीर्ष डाउनलोडर (डेटा)',
+ 'top-leechers' => 'शीर्ष लेकर्स',
+ 'top-leechers-count' => 'शीर्ष भाषी (गणना)',
+ 'top-seeders' => 'शीर्ष सीडर्स',
+ 'top-seeders-count' => 'शीर्ष बीजक (गणना)',
+ 'top-seeding-size' => 'टॉप सीडिंग (आकार)',
+ 'top-seedtime' => 'शीर्ष बीजपत्र',
+ 'top-uploaders-data' => 'शीर्ष अपलोडर (डेटा)',
+ 'top-uploaders-count' => 'शीर्ष अपलोडर (गणना)',
+ 'topics' => 'विषय',
+ 'topics-started' => 'फोरम विषय शुरू',
+ 'torrent-comments' => 'टोरेंट ने टिप्पणियां कीं',
+ 'torrent-help' => 'उन विशिष्ट समूहों से संबंधित आँकड़ों और सूचनाओं को साझा करने को नियंत्रित करें, जिन्हें आपकी प्रोफ़ाइल तक पहुँचने की अनुमति है। यदि आप किसी भी समूह को अपने संबंधित आँकड़ों और जानकारी तक पहुँचने की अनुमति नहीं देते हैं या यदि आप निजी जाते हैं तो ये सेटिंग्स ओवरराइड होती हैं',
+ 'torrent-notification' => 'टोरेंट अधिसूचना सेटिंग्स',
+ 'torrent-notification-comment' => 'जब एक अपलोड की गई टोरेंट को एक नई टिप्पणी मिलती है तो एक अधिसूचना प्राप्त करें',
+ 'torrent-notification-thank' => 'जब अपलोड की गई टोरेंट को नया धन्यवाद मिलता है तो एक अधिसूचना प्राप्त करें',
+ 'torrent-notification-tip' => 'जब अपलोड की गई धार को एक नया टिप मिलता है, तो एक अधिसूचना प्राप्त करें',
+ 'torrent-notification-help' => 'नियंत्रण जो टोरेंट गतिविधियों से संबंधित सूचनाएं भेजी जाती हैं। यदि आप किसी भी समूह को टोरेंट गतिविधियों से संबंधित सूचनाएं भेजने की अनुमति नहीं देते हैं या यदि आप सूचनाएं अक्षम करते हैं तो ये सेटिंग्स ओवरराइड की जाती हैं',
+ 'torrent-privacy' => 'धार सेटिंग्स',
+ 'torrent-privacy-download' => 'उपयोगकर्ताओं को आपके द्वारा डाउनलोड किए गए टॉरेंट की एक सूची देखने की अनुमति दें',
+ 'torrent-privacy-upload' => 'उपयोगकर्ताओं को आपके द्वारा अपलोड किए गए टॉरेंट की एक सूची देखने की अनुमति दें',
+ 'torrent-privacy-peer' => 'उपयोगकर्ताओं को आपको टोरेंट पीयर हिस्ट्री टेबल में देखने की अनुमति देता है',
+ 'torrents' => 'टोरेंट',
+ 'torrents-history' => 'Torrents इतिहास',
+ 'total-download' => 'कुल डाउनलोड',
+ 'total-downloads' => 'कुल डाउनलोड',
+ 'total-leeching' => 'कुल लीचिंग',
+ 'total-seeding' => 'कुल सीडिंग',
+ 'total-seedtime' => 'कुल बीज',
+ 'total-upload' => 'कुल अपलोड',
+ 'total-uploads' => 'कुल अपलोड',
+ 'unban' => 'अनबन उपयोगकर्ता',
+ 'unfollow' => 'करें',
+ 'unlocked' => 'खुला',
+ 'unlocked-achievements' => 'अनलॉक की गई उपलब्धियां',
+ 'unsatisfieds' => 'Unsatisfieds',
+ 'upload-bon' => 'अपलोड करें BON स्टोर से',
+ 'upload-recorded' => 'रिकॉर्डेड अपलोड',
+ 'upload-true' => 'सच अपलोड',
+ 'uploads' => 'अपलोड',
+ 'uploads-table' => 'अपलोड तालिका',
+ 'user' => 'उपयोगकर्ता',
+ 'user-id' => 'यूज़र आईडी',
+ 'username-seedbox' => 'उपयोगकर्ता नाम Seedbox',
+ 'visible-to-achievement' => 'उपलब्धियां दिखाई देती हैं',
+ 'visible-to-achievement-help' => 'आपकी उपलब्धियाँ केवल कर्मचारियों और निम्न समूहों को दिखाई देंगी। यदि आप निजी जाते हैं तो इन सेटिंग्स को ओवरराइड किया जाता है',
+ 'visible-to-follower' => 'अनुयायियों को दिखाई',
+ 'visible-to-follower-help' => 'आपके अनुयायी केवल कर्मचारियों और निम्नलिखित समूहों को दिखाई देंगे यदि आप निजी जाते हैं तो इन सेटिंग्स को ओवरराइड किया जाता है',
+ 'visible-to-forum' => 'फोरम की जानकारी',
+ 'visible-to-forum-help' => 'आपकी फ़ोरम जानकारी केवल कर्मचारियों और निम्न समूहों को दिखाई देगी। यदि आप निजी जाते हैं तो इन सेटिंग्स को ओवरराइड किया जाता है',
+ 'visible-to-other' => 'अन्य दर्शनीय',
+ 'visible-to-other-help' => 'आपके खाते से संबंधित अन्य जानकारी केवल कर्मचारियों और निम्न समूहों को दिखाई देगी। यदि आप निजी जाते हैं या यदि आप छिपे हुए हैं तो इन सेटिंग्स को ओवरराइड किया जाता है',
+ 'visible-to-profile' => 'प्रोफ़ाइल दर्शनीय है',
+ 'visible-to-profile-help' => 'आपकी प्रोफ़ाइल केवल कर्मचारियों और निम्न समूहों को दिखाई देगी। यदि आप निजी जाते हैं तो इन सेटिंग्स को ओवरराइड किया जाता है',
+ 'visible-to-request' => 'अनुरोध सूचना दर्शनीय है',
+ 'visible-to-request-help' => 'आपकी अनुरोध जानकारी केवल कर्मचारियों और निम्न समूहों को दिखाई देगी। यदि आप निजी जाते हैं तो इन सेटिंग्स को ओवरराइड किया जाता है',
+ 'visible-to-torrent' => 'टोरेंट की जानकारी दर्शनीय है',
+ 'visible-to-torrent-help' => 'आपकी टोरेंट जानकारी केवल कर्मचारियों और निम्न समूहों को दिखाई देगी। यदि आप निजी जाते हैं या यदि आप छिपे हुए हैं तो इन सेटिंग्स को ओवरराइड किया जाता है',
+ 'warned-on' => 'पर चेतावनी दी',
+ 'warning' => 'चेतावनी',
+ 'warning-log' => 'चेतावनी लॉग',
+ 'wishlist' => 'इच्छा-सूची',
];
diff --git a/lang/hi/validation.php b/lang/hi/validation.php
index 4c1f933ef..a174de5ce 100644
--- a/lang/hi/validation.php
+++ b/lang/hi/validation.php
@@ -23,108 +23,108 @@ return [
|
*/
- 'accepted' => ':attribute को स्वीकार किया जाना चाहिए।',
- 'active_url' => ':attribute एक मान्य URL नहीं है।',
- 'after' => ':attribute, :date के बाद की एक तारीख होनी चाहिए।',
- 'after_or_equal' => ':attribute, :date के बाद या उसके बराबर की तारीख होनी चाहिए।',
- 'alpha' => ':attribute में केवल अक्षर हो सकते हैं।',
- 'alpha_dash' => ':attribute में केवल अक्षर, संख्या, और डैश हो सकते हैं।',
- 'alpha_num' => ':attribute में केवल अक्षर और संख्याएं हो सकती हैं।',
- 'array' => ':attribute एक सरणी होनी चाहिए।',
- 'before' => ':attribute, :date से पहले की एक तारीख होनी चाहिए।',
- 'before_or_equal' => ':attribute, :date इससे पहले या उसके बराबर की तारीख होनी चाहिए।',
- 'between' => [
+ 'accepted' => ':attribute को स्वीकार किया जाना चाहिए।',
+ 'active_url' => ':attribute एक मान्य URL नहीं है।',
+ 'after' => ':attribute, :date के बाद की एक तारीख होनी चाहिए।',
+ 'after_or_equal' => ':attribute, :date के बाद या उसके बराबर की तारीख होनी चाहिए।',
+ 'alpha' => ':attribute में केवल अक्षर हो सकते हैं।',
+ 'alpha_dash' => ':attribute में केवल अक्षर, संख्या, और डैश हो सकते हैं।',
+ 'alpha_num' => ':attribute में केवल अक्षर और संख्याएं हो सकती हैं।',
+ 'array' => ':attribute एक सरणी होनी चाहिए।',
+ 'before' => ':attribute, :date से पहले की एक तारीख होनी चाहिए।',
+ 'before_or_equal' => ':attribute, :date इससे पहले या उसके बराबर की तारीख होनी चाहिए।',
+ 'between' => [
'numeric' => ':attribute, :min और :max के बीच होना चाहिए।',
- 'file' => ':attribute, :min और :max किलोबाइट के बीच होना चाहिए।',
- 'string' => ':attribute, :min और :max वर्णों के बीच होना चाहिए।',
- 'array' => ':attribute, :min और :max आइटमों के बीच होनी चाहिए।',
+ 'file' => ':attribute, :min और :max किलोबाइट के बीच होना चाहिए।',
+ 'string' => ':attribute, :min और :max वर्णों के बीच होना चाहिए।',
+ 'array' => ':attribute, :min और :max आइटमों के बीच होनी चाहिए।',
],
- 'boolean' => ':attribute फील्ड सही या गलत होना चाहिए।',
- 'confirmed' => ':attribute पुष्टिकरण मेल नहीं खा रहा है।',
- 'date' => ':attribute एक मान्य दिनांक नहीं है।',
- 'date_equals' => ':attribute, :date के बराबर तारीख होनी चाहिए।',
- 'date_format' => ':attribute फॉर्मेट :format से मेल नहीं खा रहा है।',
- 'different' => ':attribute और :other अलग होना चाहिए।',
- 'digits' => ':attribute, :digits अंक होना चाहिए।',
- 'digits_between' => ':attribute, :min और :max अंकों के बीच होना चाहिए।',
- 'dimensions' => ':attribute का अमान्य चित्त माप है।',
- 'distinct' => ':attribute फील्ड का एक डुप्लिकेट मान होता है।',
- 'email' => ':attribute एक मान्य ईमेल पता होना चाहिए।',
- 'exists' => 'चुना गया :attribute अमान्य है।',
- 'file' => ':attribute एक फ़ाइल होनी चाहिए।',
- 'filled' => ':attribute फील्ड आवश्यक होता है।',
- 'gt' => [
+ 'boolean' => ':attribute फील्ड सही या गलत होना चाहिए।',
+ 'confirmed' => ':attribute पुष्टिकरण मेल नहीं खा रहा है।',
+ 'date' => ':attribute एक मान्य दिनांक नहीं है।',
+ 'date_equals' => ':attribute, :date के बराबर तारीख होनी चाहिए।',
+ 'date_format' => ':attribute फॉर्मेट :format से मेल नहीं खा रहा है।',
+ 'different' => ':attribute और :other अलग होना चाहिए।',
+ 'digits' => ':attribute, :digits अंक होना चाहिए।',
+ 'digits_between' => ':attribute, :min और :max अंकों के बीच होना चाहिए।',
+ 'dimensions' => ':attribute का अमान्य चित्त माप है।',
+ 'distinct' => ':attribute फील्ड का एक डुप्लिकेट मान होता है।',
+ 'email' => ':attribute एक मान्य ईमेल पता होना चाहिए।',
+ 'exists' => 'चुना गया :attribute अमान्य है।',
+ 'file' => ':attribute एक फ़ाइल होनी चाहिए।',
+ 'filled' => ':attribute फील्ड आवश्यक होता है।',
+ 'gt' => [
'numeric' => ':attribute, :value से अधिक होना चाहिए।',
- 'file' => ':attribute, :value kilobytes से अधिक होना चाहिए।',
- 'string' => ':attribute, :value characters से अधिक होना चाहिए।',
- 'array' => ':attribute, :value मद से अधिक होना चाहिए।',
+ 'file' => ':attribute, :value kilobytes से अधिक होना चाहिए।',
+ 'string' => ':attribute, :value characters से अधिक होना चाहिए।',
+ 'array' => ':attribute, :value मद से अधिक होना चाहिए।',
],
- 'gte' => [
+ 'gte' => [
'numeric' => 'The :attribute must be greater than or equal :value.',
- 'file' => 'The :attribute must be greater than or equal :value kilobytes.',
- 'string' => 'The :attribute must be greater than or equal :value characters.',
- 'array' => 'The :attribute must have :value items or more.',
+ 'file' => 'The :attribute must be greater than or equal :value kilobytes.',
+ 'string' => 'The :attribute must be greater than or equal :value characters.',
+ 'array' => 'The :attribute must have :value items or more.',
],
- 'image' => ':attribute एक छवि होनी चाहिए।',
- 'in' => 'चुना गया :attribute अमान्य है।',
- 'in_array' => ':attribute फील्ड, :other में मौजूद नहीं है।',
- 'integer' => ':attribute एक पूर्णांक होना चाहिए।',
- 'ip' => ':attribute एक मान्य IP address होना चाहिए।',
- 'ipv4' => ':attribute एक वैध IPv4 address होना चाहिए।',
- 'ipv6' => ':attribute एक वैध IPv6 address होना चाहिए।',
- 'json' => ':attribute एक मान्य JSON स्ट्रिंग होना चाहिए।',
- 'lt' => [
+ 'image' => ':attribute एक छवि होनी चाहिए।',
+ 'in' => 'चुना गया :attribute अमान्य है।',
+ 'in_array' => ':attribute फील्ड, :other में मौजूद नहीं है।',
+ 'integer' => ':attribute एक पूर्णांक होना चाहिए।',
+ 'ip' => ':attribute एक मान्य IP address होना चाहिए।',
+ 'ipv4' => ':attribute एक वैध IPv4 address होना चाहिए।',
+ 'ipv6' => ':attribute एक वैध IPv6 address होना चाहिए।',
+ 'json' => ':attribute एक मान्य JSON स्ट्रिंग होना चाहिए।',
+ 'lt' => [
'numeric' => 'The :attribute must be less than :value.',
- 'file' => 'The :attribute must be less than :value kilobytes.',
- 'string' => 'The :attribute must be less than :value characters.',
- 'array' => 'The :attribute must have less than :value items.',
+ 'file' => 'The :attribute must be less than :value kilobytes.',
+ 'string' => 'The :attribute must be less than :value characters.',
+ 'array' => 'The :attribute must have less than :value items.',
],
- 'lte' => [
+ 'lte' => [
'numeric' => 'The :attribute must be less than or equal :value.',
- 'file' => 'The :attribute must be less than or equal :value kilobytes.',
- 'string' => 'The :attribute must be less than or equal :value characters.',
- 'array' => 'The :attribute must not have more than :value items.',
+ 'file' => 'The :attribute must be less than or equal :value kilobytes.',
+ 'string' => 'The :attribute must be less than or equal :value characters.',
+ 'array' => 'The :attribute must not have more than :value items.',
],
- 'max' => [
+ 'max' => [
'numeric' => ':attribute, :max से बड़ा नहीं हो सकता है।',
- 'file' => ':attribute :max किलोबाइट से बड़ा नहीं हो सकता है।',
- 'string' => ':attribute, :max वर्णों से बड़ा नहीं हो सकता है।',
- 'array' => ':attribute, :max आइटमों से अधिक नहीं हो सकता है।',
+ 'file' => ':attribute :max किलोबाइट से बड़ा नहीं हो सकता है।',
+ 'string' => ':attribute, :max वर्णों से बड़ा नहीं हो सकता है।',
+ 'array' => ':attribute, :max आइटमों से अधिक नहीं हो सकता है।',
],
- 'mimes' => ':attribute एक प्रकार की फ़ाइल: :values होना चाहिए।',
- 'mimetypes' => ':attribute एक प्रकार की फ़ाइल: :values होना चाहिए।',
- 'min' => [
+ 'mimes' => ':attribute एक प्रकार की फ़ाइल: :values होना चाहिए।',
+ 'mimetypes' => ':attribute एक प्रकार की फ़ाइल: :values होना चाहिए।',
+ 'min' => [
'numeric' => ':attribute कम से कम :min होना चाहिए।',
- 'file' => ':attribute कम से कम :min किलोबाइट होना चाहिए।',
- 'string' => ':attribute कम से कम :min वर्ण होना चाहिए।',
- 'array' => ':attribute कम से कम :min आइटम होना चाहिए।',
+ 'file' => ':attribute कम से कम :min किलोबाइट होना चाहिए।',
+ 'string' => ':attribute कम से कम :min वर्ण होना चाहिए।',
+ 'array' => ':attribute कम से कम :min आइटम होना चाहिए।',
],
- 'not_in' => 'चुना गया :attribute अमान्य है।',
- 'not_regex' => ':attribute प्रारूप अमान्य है।',
- 'numeric' => ':attribute एक संख्या होनी चाहिए।',
- 'present' => ':attribute फील्ड मौजूद होना चाहिए।',
- 'regex' => ':attribute फॉर्मेट अमान्य है।',
- 'required' => ':attribute फील्ड आवश्यक होता है।',
- 'required_if' => ':attribute फ़ील्ड आवश्यक होता है जब :other :value होता है।',
- 'required_unless' => ':attribute फील्ड आवश्यक होता है जब :other, :values में नहीं होता है।',
- 'required_with' => ':attribute फ़ील्ड आवश्यक होता है जब :values मौजूद होता है।',
- 'required_with_all' => ':attribute फ़ील्ड आवश्यक होता है जब :values मौजूद होता है।',
- 'required_without' => ':attribute फील्ड आवश्यक होता है जब :values मौजूद नहीं होता है।',
+ 'not_in' => 'चुना गया :attribute अमान्य है।',
+ 'not_regex' => ':attribute प्रारूप अमान्य है।',
+ 'numeric' => ':attribute एक संख्या होनी चाहिए।',
+ 'present' => ':attribute फील्ड मौजूद होना चाहिए।',
+ 'regex' => ':attribute फॉर्मेट अमान्य है।',
+ 'required' => ':attribute फील्ड आवश्यक होता है।',
+ 'required_if' => ':attribute फ़ील्ड आवश्यक होता है जब :other :value होता है।',
+ 'required_unless' => ':attribute फील्ड आवश्यक होता है जब :other, :values में नहीं होता है।',
+ 'required_with' => ':attribute फ़ील्ड आवश्यक होता है जब :values मौजूद होता है।',
+ 'required_with_all' => ':attribute फ़ील्ड आवश्यक होता है जब :values मौजूद होता है।',
+ 'required_without' => ':attribute फील्ड आवश्यक होता है जब :values मौजूद नहीं होता है।',
'required_without_all' => ':attribute फील्ड आवश्यक होता है जब एक भी :values मौजूद नहीं होता है।',
- 'same' => ':attribute और :other मेल खाना चाहिए।',
- 'size' => [
+ 'same' => ':attribute और :other मेल खाना चाहिए।',
+ 'size' => [
'numeric' => ':attribute, :size होना चाहिए।',
- 'file' => ':attribute, :size किलोबाइट होना चाहिए।',
- 'string' => ':attribute, :size वर्ण होना चाहिए।',
- 'array' => ':attribute में :size आइटम होने चाहिए।',
+ 'file' => ':attribute, :size किलोबाइट होना चाहिए।',
+ 'string' => ':attribute, :size वर्ण होना चाहिए।',
+ 'array' => ':attribute में :size आइटम होने चाहिए।',
],
- 'starts_with' => ':attribute निम्नलिखित में से किसी एक से शुरू करना चाहिए: :values',
- 'string' => ':attribute एक स्ट्रिंग होनी चाहिए।',
- 'timezone' => ':attribute एक मान्य क्षेत्र होना चाहिए।',
- 'unique' => ':attribute को पहले ही ले लिया गया है।',
- 'uploaded' => ':attribute अपलोड करने में विफल।',
- 'url' => ':attribute फॉर्मेट अमान्य है।',
- 'uuid' => ':attribute एक वैध UUID होना चाहिए।',
+ 'starts_with' => ':attribute निम्नलिखित में से किसी एक से शुरू करना चाहिए: :values',
+ 'string' => ':attribute एक स्ट्रिंग होनी चाहिए।',
+ 'timezone' => ':attribute एक मान्य क्षेत्र होना चाहिए।',
+ 'unique' => ':attribute को पहले ही ले लिया गया है।',
+ 'uploaded' => ':attribute अपलोड करने में विफल।',
+ 'url' => ':attribute फॉर्मेट अमान्य है।',
+ 'uuid' => ':attribute एक वैध UUID होना चाहिए।',
/*
|--------------------------------------------------------------------------
@@ -155,11 +155,11 @@ return [
*/
'attributes' => [
- 'test_name' => 'टेस्ट का नाम',
- 'test_description' => 'टेस्ट का विवरण',
- 'test_locale' => 'भाषा',
- 'image' => 'छवि',
+ 'test_name' => 'टेस्ट का नाम',
+ 'test_description' => 'टेस्ट का विवरण',
+ 'test_locale' => 'भाषा',
+ 'image' => 'छवि',
'result_text_under_image' => 'छवि के नीचे परिणाम पाठ',
- 'short_text' => 'लघु पाठ',
+ 'short_text' => 'लघु पाठ',
],
];
diff --git a/lang/hr/articles.php b/lang/hr/articles.php
index 389789dc1..8931ea960 100644
--- a/lang/hr/articles.php
+++ b/lang/hr/articles.php
@@ -12,8 +12,8 @@
*/
return [
- 'articles' => 'Članci',
+ 'articles' => 'Članci',
'meta-articles' => 'Članci i vijesti na tragaču i zajednici',
- 'published-at' => 'Objavljeno dana',
- 'read-more' => 'Čitaj više',
+ 'published-at' => 'Objavljeno dana',
+ 'read-more' => 'Čitaj više',
];
diff --git a/lang/hr/auth.php b/lang/hr/auth.php
index 5815a6754..814d664b6 100644
--- a/lang/hr/auth.php
+++ b/lang/hr/auth.php
@@ -23,6 +23,6 @@ return [
|
*/
- 'failed' => 'Ovi podaci ne odgovaraju našima.',
+ 'failed' => 'Ovi podaci ne odgovaraju našima.',
'throttle' => 'Previše pokušaja prijave. Molim Vas pokušajte ponovno za :seconds sekundi.',
];
diff --git a/lang/hr/backup.php b/lang/hr/backup.php
index b87514423..389a4fdf3 100644
--- a/lang/hr/backup.php
+++ b/lang/hr/backup.php
@@ -12,32 +12,32 @@
*/
return [
- 'actions' => 'akcije',
- 'backup' => 'rezerva',
- 'backup_doesnt_exist' => 'Datoteka sigurnosne kopije ne postoji.',
- 'create_a_new_backup' => 'Stvorite punu sigurnosnu kopiju',
- 'create_a_new_files_backup' => 'Stvaranje sigurnosne kopije datoteka',
- 'create_a_new_db_backup' => 'Stvaranje sigurnosne kopije baze podataka',
- 'create_confirmation_message' => 'Ponovno učitavanje stranice za 3 sekunde.',
- 'create_confirmation_title' => 'Sigurnosna kopija je dovršena',
- 'create_error_message' => 'Rezervna datoteka NIJE mogla biti izrađena.',
- 'create_error_title' => 'Pogreška pri izradi sigurnosne kopije',
- 'create_warning_message' => 'Vaša sigurnosna kopija možda nije izrađena. Provjerite datoteke dnevnika za pojedinosti.',
- 'create_warning_title' => 'Nepoznata pogreška',
- 'date' => 'Datum',
- 'delete' => 'Izbrisati',
- 'delete_cancel_message' => 'Rezervna datoteka NIJE izbrisana.',
- 'delete_cancel_title' => 'U redu je',
- 'delete_confirm' => 'Jeste li sigurni da želite izbrisati ovu datoteku sigurnosne kopije?',
- 'delete_confirmation_message' => 'Datoteka sigurnosne kopije je izbrisana.',
- 'delete_confirmation_title' => 'Gotovo',
- 'delete_error_message' => 'Rezervna datoteka NIJE izbrisana.',
- 'delete_error_title' => 'greška',
- 'download' => 'preuzimanje datoteka',
- 'existing_backups' => 'Postojeće sigurnosne kopije',
- 'file_size' => 'Veličina datoteke',
- 'location' => 'Mjesto',
- 'manager' => 'Menadžer',
- 'no_disks_configured' => 'U config / backup.php nema konfiguriranih diskova za backup',
+ 'actions' => 'akcije',
+ 'backup' => 'rezerva',
+ 'backup_doesnt_exist' => 'Datoteka sigurnosne kopije ne postoji.',
+ 'create_a_new_backup' => 'Stvorite punu sigurnosnu kopiju',
+ 'create_a_new_files_backup' => 'Stvaranje sigurnosne kopije datoteka',
+ 'create_a_new_db_backup' => 'Stvaranje sigurnosne kopije baze podataka',
+ 'create_confirmation_message' => 'Ponovno učitavanje stranice za 3 sekunde.',
+ 'create_confirmation_title' => 'Sigurnosna kopija je dovršena',
+ 'create_error_message' => 'Rezervna datoteka NIJE mogla biti izrađena.',
+ 'create_error_title' => 'Pogreška pri izradi sigurnosne kopije',
+ 'create_warning_message' => 'Vaša sigurnosna kopija možda nije izrađena. Provjerite datoteke dnevnika za pojedinosti.',
+ 'create_warning_title' => 'Nepoznata pogreška',
+ 'date' => 'Datum',
+ 'delete' => 'Izbrisati',
+ 'delete_cancel_message' => 'Rezervna datoteka NIJE izbrisana.',
+ 'delete_cancel_title' => 'U redu je',
+ 'delete_confirm' => 'Jeste li sigurni da želite izbrisati ovu datoteku sigurnosne kopije?',
+ 'delete_confirmation_message' => 'Datoteka sigurnosne kopije je izbrisana.',
+ 'delete_confirmation_title' => 'Gotovo',
+ 'delete_error_message' => 'Rezervna datoteka NIJE izbrisana.',
+ 'delete_error_title' => 'greška',
+ 'download' => 'preuzimanje datoteka',
+ 'existing_backups' => 'Postojeće sigurnosne kopije',
+ 'file_size' => 'Veličina datoteke',
+ 'location' => 'Mjesto',
+ 'manager' => 'Menadžer',
+ 'no_disks_configured' => 'U config / backup.php nema konfiguriranih diskova za backup',
'only_local_downloads_supported' => 'Podržane su samo preuzimanja s lokalnog datotečnog sustava.',
];
diff --git a/lang/hr/blocks.php b/lang/hr/blocks.php
index 18bea4ec1..7b59a7e50 100644
--- a/lang/hr/blocks.php
+++ b/lang/hr/blocks.php
@@ -12,19 +12,19 @@
*/
return [
- 'chatbox' => 'Okvir za chat',
- 'click' => 'Klik',
- 'to-enable-editor' => 'da biste omogućili uređivanje',
- 'featured-by' => 'Predstavlja korisnik',
- 'featured-torrents' => 'Istaknuti torenti',
+ 'chatbox' => 'Okvir za chat',
+ 'click' => 'Klik',
+ 'to-enable-editor' => 'da biste omogućili uređivanje',
+ 'featured-by' => 'Predstavlja korisnik',
+ 'featured-torrents' => 'Istaknuti torenti',
'featured-torrents-intro' => 'Uzmite ih dok možete!',
- 'featured-until' => 'Ovo je značajka torrent do',
- 'top-torrents' => 'Najpopularniji torenti',
- 'latest-posts' => 'Najnoviji postovi',
- 'latest-topics' => 'Najnovije teme',
- 'active-in-last' => 'Aktivan u posljednjem',
- 'users-online' => 'Korisnici na mreži',
- 'check-news' => 'Vijesti (provjerite dnevno)',
- 'new-news' => 'Nove vijesti',
- 'new-torrents' => 'Novi bujici',
+ 'featured-until' => 'Ovo je značajka torrent do',
+ 'top-torrents' => 'Najpopularniji torenti',
+ 'latest-posts' => 'Najnoviji postovi',
+ 'latest-topics' => 'Najnovije teme',
+ 'active-in-last' => 'Aktivan u posljednjem',
+ 'users-online' => 'Korisnici na mreži',
+ 'check-news' => 'Vijesti (provjerite dnevno)',
+ 'new-news' => 'Nove vijesti',
+ 'new-torrents' => 'Novi bujici',
];
diff --git a/lang/hr/bon.php b/lang/hr/bon.php
index fefbfe1b6..601cd84f6 100644
--- a/lang/hr/bon.php
+++ b/lang/hr/bon.php
@@ -12,44 +12,44 @@
*/
return [
- 'activated' => 'aktiviran',
- 'active' => 'Aktiviran!',
- 'amount' => 'Iznos',
- 'bon' => 'BON',
- 'bonus' => 'Bonus',
- 'date' => 'Datum',
- 'earning' => 'zarađivanje',
- 'earning-rate' => 'Na ovoj stopi zarađivanja zaradit ćete sljedeće po vremenskom okviru.',
- 'earnings' => 'Zarada',
- 'exchange' => 'razmjena',
- 'exchange-warning' => 'Razmjene su konačne. Molimo Vas da provjerite svoj izbor prije razmjene.',
- 'extended-stats' => 'Proširena statistika',
- 'gift' => 'Dar',
- 'gift-bonus' => 'Bonus bodovi za poklone',
- 'gift-to' => 'Poklon bonus bodovi za',
- 'gifts' => 'Pokloni',
- 'item' => 'Artikal',
- 'no-refund' => 'NEMA POVRATA!',
- 'per-day' => 'Bodovi po danu',
- 'per-hour' => 'Bodovi po satu',
- 'per-minute' => 'Bodovi po minuti',
- 'per-month' => 'Bodovi po mjesecu',
- 'per-second' => 'Bodovi po sekundi',
- 'per-week' => 'Bodovi tjedno',
- 'per-year' => 'Bodovi po godini',
- 'points' => 'točke',
- 'receiver' => 'Prijamnik',
- 'review-seeds' => 'Pregledajte sve sjetene torente',
- 'send-gift' => 'Pošalji poklon',
- 'sender' => 'pošiljalac',
- 'store' => 'dućan',
- 'tips' => 'Savjet',
- 'total' => 'ukupna zarada',
- 'total-gifts' => 'Ukupno pokloni BON-a',
- 'total-tips' => 'Ukupno BON savjeta',
+ 'activated' => 'aktiviran',
+ 'active' => 'Aktiviran!',
+ 'amount' => 'Iznos',
+ 'bon' => 'BON',
+ 'bonus' => 'Bonus',
+ 'date' => 'Datum',
+ 'earning' => 'zarađivanje',
+ 'earning-rate' => 'Na ovoj stopi zarađivanja zaradit ćete sljedeće po vremenskom okviru.',
+ 'earnings' => 'Zarada',
+ 'exchange' => 'razmjena',
+ 'exchange-warning' => 'Razmjene su konačne. Molimo Vas da provjerite svoj izbor prije razmjene.',
+ 'extended-stats' => 'Proširena statistika',
+ 'gift' => 'Dar',
+ 'gift-bonus' => 'Bonus bodovi za poklone',
+ 'gift-to' => 'Poklon bonus bodovi za',
+ 'gifts' => 'Pokloni',
+ 'item' => 'Artikal',
+ 'no-refund' => 'NEMA POVRATA!',
+ 'per-day' => 'Bodovi po danu',
+ 'per-hour' => 'Bodovi po satu',
+ 'per-minute' => 'Bodovi po minuti',
+ 'per-month' => 'Bodovi po mjesecu',
+ 'per-second' => 'Bodovi po sekundi',
+ 'per-week' => 'Bodovi tjedno',
+ 'per-year' => 'Bodovi po godini',
+ 'points' => 'točke',
+ 'receiver' => 'Prijamnik',
+ 'review-seeds' => 'Pregledajte sve sjetene torente',
+ 'send-gift' => 'Pošalji poklon',
+ 'sender' => 'pošiljalac',
+ 'store' => 'dućan',
+ 'tips' => 'Savjet',
+ 'total' => 'ukupna zarada',
+ 'total-gifts' => 'Ukupno pokloni BON-a',
+ 'total-tips' => 'Ukupno BON savjeta',
'you-have-received-gifts' => 'Primili ste',
- 'you-have-sent-gifts' => 'Poslali ste',
- 'you-have-received-tips' => 'Primili ste',
- 'you-have-sent-tips' => 'Poslali ste',
- 'your-points' => 'Vaši bodovi',
+ 'you-have-sent-gifts' => 'Poslali ste',
+ 'you-have-received-tips' => 'Primili ste',
+ 'you-have-sent-tips' => 'Poslali ste',
+ 'your-points' => 'Vaši bodovi',
];
diff --git a/lang/hr/bot.php b/lang/hr/bot.php
index b6d01fefd..14a2498a0 100644
--- a/lang/hr/bot.php
+++ b/lang/hr/bot.php
@@ -12,15 +12,15 @@
*/
return [
- 'about' => 'Oko',
- 'bot' => 'bot',
- 'bots' => 'Botovi',
- 'color' => 'Boja',
- 'command' => 'naredba',
- 'edit-bot' => 'Uredi Bot',
+ 'about' => 'Oko',
+ 'bot' => 'bot',
+ 'bots' => 'Botovi',
+ 'color' => 'Boja',
+ 'command' => 'naredba',
+ 'edit-bot' => 'Uredi Bot',
'emoji-code' => 'Emoji kod',
- 'help' => 'Pomozite',
- 'icon' => 'Ikona',
- 'info' => 'Informacije',
- 'name' => 'Ime',
+ 'help' => 'Pomozite',
+ 'icon' => 'Ikona',
+ 'info' => 'Informacije',
+ 'name' => 'Ime',
];
diff --git a/lang/hr/bug.php b/lang/hr/bug.php
index 19b31e338..abb0053bd 100644
--- a/lang/hr/bug.php
+++ b/lang/hr/bug.php
@@ -12,15 +12,15 @@
*/
return [
- 'bug-report' => 'Izvješće o pogrešci',
+ 'bug-report' => 'Izvješće o pogrešci',
'bug-report-description' => 'Prijavite grešku web-lokacije',
- 'enter-description' => 'Opišite problem što je bolje moguće',
- 'enter-email' => 'Unesite svoju e-poštu',
- 'enter-title' => 'Odaberite odgovarajući naslov',
- 'enter-username' => 'Unesite svoje korisničko ime',
- 'high' => 'visok',
- 'low' => 'nizak',
- 'priority' => 'Prioritet',
- 'priority-description' => 'Odaberite samo vrlo visok ako je bug stvarno problem za korištenje web-mjesta.',
- 'very-high' => 'Vrlo visoko',
+ 'enter-description' => 'Opišite problem što je bolje moguće',
+ 'enter-email' => 'Unesite svoju e-poštu',
+ 'enter-title' => 'Odaberite odgovarajući naslov',
+ 'enter-username' => 'Unesite svoje korisničko ime',
+ 'high' => 'visok',
+ 'low' => 'nizak',
+ 'priority' => 'Prioritet',
+ 'priority-description' => 'Odaberite samo vrlo visok ako je bug stvarno problem za korištenje web-mjesta.',
+ 'very-high' => 'Vrlo visoko',
];
diff --git a/lang/hr/common.php b/lang/hr/common.php
index b82d385c5..254cc9295 100644
--- a/lang/hr/common.php
+++ b/lang/hr/common.php
@@ -12,179 +12,179 @@
*/
return [
- 'a-an-art' => '',
- 'about' => 'O nama',
- 'account' => 'Račun',
- 'achievement-title' => 'Super',
+ 'a-an-art' => '',
+ 'about' => 'O nama',
+ 'account' => 'Račun',
+ 'achievement-title' => 'Super',
'achievement-unlocked' => 'Otključali ste uspjeh ": name"',
- 'active' => 'Aktivan',
- 'active-warning' => 'Aktivno upozorenje',
- 'add' => 'Dodati',
- 'added' => 'dodano',
- 'amount' => 'Iznos',
- 'anonymous' => 'anoniman',
- 'author' => 'Autor',
- 'balance' => 'ravnoteža',
- 'blacklist' => 'Crna lista za klijente',
- 'buffer' => 'Pufer',
- 'bug' => 'Prijavite pogrešku',
- 'but' => 'Ali',
- 'cancel' => 'Otkazati',
- 'category' => 'Kategorija',
- 'categories' => 'Kategorije',
- 'close' => 'Zatvoriti',
- 'comment' => 'Komentar',
- 'comments' => 'komentari',
- 'community' => 'Zajednica',
- 'contact' => 'Kontakt',
- 'contact-desc' => 'Ovaj zahtjev za kontakt bit će poslan vlasniku i javit će vam se što je prije moguće',
- 'contact-header' => 'zdravo',
- 'create' => 'Stvoriti',
- 'created_at' => 'Izrađeno u',
- 'day' => 'Dan',
- 'delete' => 'Izbrisati',
- 'delete-your-comment' => 'Izbrišite svoj komentar',
- 'description' => 'Opis',
- 'direction' => 'Smjer',
- 'disable' => 'onesposobiti',
- 'doubleup_activated' => 'Aktiviran je globalni način dvostrukog prijenosa',
- 'download' => 'preuzimanje datoteka',
- 'edit' => 'Uredi',
- 'edit-your-comment' => 'Uredite svoj komentar',
- 'email' => 'E-mail',
- 'email-blacklist' => 'Crna lista e-pošte',
- 'email-whitelist' => 'Popis dopuštenih adresa e-pošte',
+ 'active' => 'Aktivan',
+ 'active-warning' => 'Aktivno upozorenje',
+ 'add' => 'Dodati',
+ 'added' => 'dodano',
+ 'amount' => 'Iznos',
+ 'anonymous' => 'anoniman',
+ 'author' => 'Autor',
+ 'balance' => 'ravnoteža',
+ 'blacklist' => 'Crna lista za klijente',
+ 'buffer' => 'Pufer',
+ 'bug' => 'Prijavite pogrešku',
+ 'but' => 'Ali',
+ 'cancel' => 'Otkazati',
+ 'category' => 'Kategorija',
+ 'categories' => 'Kategorije',
+ 'close' => 'Zatvoriti',
+ 'comment' => 'Komentar',
+ 'comments' => 'komentari',
+ 'community' => 'Zajednica',
+ 'contact' => 'Kontakt',
+ 'contact-desc' => 'Ovaj zahtjev za kontakt bit će poslan vlasniku i javit će vam se što je prije moguće',
+ 'contact-header' => 'zdravo',
+ 'create' => 'Stvoriti',
+ 'created_at' => 'Izrađeno u',
+ 'day' => 'Dan',
+ 'delete' => 'Izbrisati',
+ 'delete-your-comment' => 'Izbrišite svoj komentar',
+ 'description' => 'Opis',
+ 'direction' => 'Smjer',
+ 'disable' => 'onesposobiti',
+ 'doubleup_activated' => 'Aktiviran je globalni način dvostrukog prijenosa',
+ 'download' => 'preuzimanje datoteka',
+ 'edit' => 'Uredi',
+ 'edit-your-comment' => 'Uredite svoj komentar',
+ 'email' => 'E-mail',
+ 'email-blacklist' => 'Crna lista e-pošte',
+ 'email-whitelist' => 'Popis dopuštenih adresa e-pošte',
'email-list-notactive' => 'Bijela lista / Crna lista Sustav nije aktiviran',
- 'enable' => 'Omogućiti',
- 'enter' => 'Unesi',
- 'error' => 'greška',
- 'everyday' => 'Svaki dan',
- 'expired' => 'Istekao',
- 'extra' => 'Ekstra',
- 'extra-stats' => 'Pomoćni Statistika',
- 'faq' => 'Pitanja',
- 'files' => 'datoteke',
- 'fl_token' => 'Oznaka slobodnog govora',
- 'fl_tokens' => 'Slobodni žetoni',
- 'for' => 'za',
- 'forum' => 'Forum',
- 'free' => 'Besplatno',
- 'freeleech_activated' => 'Aktiviran je globalni slobodni način',
- 'global' => 'Globalno',
- 'group' => 'Skupina',
- 'groups' => 'grupe',
- 'hidden' => 'Skriven',
- 'high-speeds' => 'Velike brzine',
- 'home' => 'Dom',
- 'hot' => 'Vruće!',
- 'hour' => 'Sat',
- 'huge' => 'Ogroman',
- 'info' => 'Informacije',
- 'internal' => 'interni',
- 'ip' => 'IP',
- 'is-allowed' => 'dopušteno',
- 'large' => 'veliki',
- 'latest' => 'Najnoviji',
- 'latest-posts' => 'Najnoviji postovi',
- 'latest-topics' => 'Najnovije teme',
- 'legal' => 'pravni',
- 'legend' => 'Legenda',
- 'lists' => 'arena',
- 'lock-account' => 'Zaključaj račun',
- 'logout' => 'Odjaviti se',
- 'members' => 'članovi',
- 'message' => 'Poruka',
- 'minute' => 'Minuta',
- 'moderated-by' => 'Moderira',
- 'moderation' => 'Umjerenost',
- 'moderation-approve' => 'Odobriti',
- 'moderation-postpone' => 'Odgoditi',
- 'moderation-reject' => 'Odbiti',
- 'month' => 'Mjesec',
- 'months' => 'mjeseci',
- 'my' => 'Moj',
- 'name' => 'Ime',
- 'navigation' => 'navigacija',
- 'new' => 'Novi!',
- 'new-adj' => 'Novi',
- 'news' => 'Vijesti',
- 'next' => 'Sljedeći',
- 'no' => 'Ne',
- 'no-comments' => 'Jos nema komentara',
- 'no-result' => 'Nema rezultata u bazi podataka za upit',
- 'notifications' => 'Obavijesti',
- 'older-than' => 'Stariji od',
- 'oldest' => 'Najstarije',
- 'openreg_activated' => 'Aktivirana je otvorena registracija',
- 'order-by' => 'Redoslijed po',
- 'other' => 'drugo',
- 'pages' => 'stranice',
- 'password' => 'Zaporka',
- 'patron' => 'Postanite pokrovitelj',
- 'pending-torrents' => 'Tekući torrenti na čekanju',
- 'personal' => 'osobni',
- 'plural-suffix' => 'a',
- 'port' => 'Luka',
- 'position' => 'Položaj',
- 'posts' => 'Postovi',
- 'powered-by' => 'Pokreće UNIT3D',
- 'preview' => 'pregled',
- 'previous' => 'prijašnji',
- 'progress' => 'Napredak',
- 'publish' => 'Objaviti',
- 'quantity' => 'Količina',
- 'quick-search' => 'Brza pretraga',
- 'ratio' => 'Omjer',
- 'reason' => 'Razlog',
- 'remove' => 'Ukloniti',
- 'report' => 'izvješće',
- 'resend' => 'Ponovno pošalji',
- 'reporter' => 'Reporter',
- 'required' => 'Potreban',
- 'results' => 'Rezultati',
- 'rss-system' => 'RSS sustav',
- 'rules' => 'pravila',
- 'save' => 'Uštedjeti',
- 'search' => 'traži',
- 'search-results' => 'Rezultati pretraživanja',
- 'search-results-desc' => 'Pogledajte rezultate ispod',
- 'second' => 'Drugi',
- 'select' => 'Odaberi',
- 'sort' => 'Sortirati',
- 'special' => 'poseban',
- 'staff' => 'Osoblje',
- 'staff-tools' => 'Alati osoblja',
- 'stats' => 'Statistike',
- 'status' => 'Status',
- 'sticked' => 'sticked',
- 'submit' => 'podnijeti',
- 'subscriptions' => 'Pretplate',
- 'teams' => 'timovi',
- 'terms' => 'Uvjeti korištenja',
- 'times' => 'puta',
- 'title' => 'Titula',
- 'top-bountied' => 'Vrhunski',
- 'topics' => 'Teme',
- 'tracker-codes' => 'Kodovi za praćenje',
- 'type' => 'Tip',
- 'type-verb' => 'Tip',
- 'types' => 'vrste',
- 'genre' => 'Žanr',
- 'genres' => 'Žanrovi',
- 'action' => 'Radnja',
- 'actions' => 'akcije',
- 'unknown' => 'Nepoznata',
+ 'enable' => 'Omogućiti',
+ 'enter' => 'Unesi',
+ 'error' => 'greška',
+ 'everyday' => 'Svaki dan',
+ 'expired' => 'Istekao',
+ 'extra' => 'Ekstra',
+ 'extra-stats' => 'Pomoćni Statistika',
+ 'faq' => 'Pitanja',
+ 'files' => 'datoteke',
+ 'fl_token' => 'Oznaka slobodnog govora',
+ 'fl_tokens' => 'Slobodni žetoni',
+ 'for' => 'za',
+ 'forum' => 'Forum',
+ 'free' => 'Besplatno',
+ 'freeleech_activated' => 'Aktiviran je globalni slobodni način',
+ 'global' => 'Globalno',
+ 'group' => 'Skupina',
+ 'groups' => 'grupe',
+ 'hidden' => 'Skriven',
+ 'high-speeds' => 'Velike brzine',
+ 'home' => 'Dom',
+ 'hot' => 'Vruće!',
+ 'hour' => 'Sat',
+ 'huge' => 'Ogroman',
+ 'info' => 'Informacije',
+ 'internal' => 'interni',
+ 'ip' => 'IP',
+ 'is-allowed' => 'dopušteno',
+ 'large' => 'veliki',
+ 'latest' => 'Najnoviji',
+ 'latest-posts' => 'Najnoviji postovi',
+ 'latest-topics' => 'Najnovije teme',
+ 'legal' => 'pravni',
+ 'legend' => 'Legenda',
+ 'lists' => 'arena',
+ 'lock-account' => 'Zaključaj račun',
+ 'logout' => 'Odjaviti se',
+ 'members' => 'članovi',
+ 'message' => 'Poruka',
+ 'minute' => 'Minuta',
+ 'moderated-by' => 'Moderira',
+ 'moderation' => 'Umjerenost',
+ 'moderation-approve' => 'Odobriti',
+ 'moderation-postpone' => 'Odgoditi',
+ 'moderation-reject' => 'Odbiti',
+ 'month' => 'Mjesec',
+ 'months' => 'mjeseci',
+ 'my' => 'Moj',
+ 'name' => 'Ime',
+ 'navigation' => 'navigacija',
+ 'new' => 'Novi!',
+ 'new-adj' => 'Novi',
+ 'news' => 'Vijesti',
+ 'next' => 'Sljedeći',
+ 'no' => 'Ne',
+ 'no-comments' => 'Jos nema komentara',
+ 'no-result' => 'Nema rezultata u bazi podataka za upit',
+ 'notifications' => 'Obavijesti',
+ 'older-than' => 'Stariji od',
+ 'oldest' => 'Najstarije',
+ 'openreg_activated' => 'Aktivirana je otvorena registracija',
+ 'order-by' => 'Redoslijed po',
+ 'other' => 'drugo',
+ 'pages' => 'stranice',
+ 'password' => 'Zaporka',
+ 'patron' => 'Postanite pokrovitelj',
+ 'pending-torrents' => 'Tekući torrenti na čekanju',
+ 'personal' => 'osobni',
+ 'plural-suffix' => 'a',
+ 'port' => 'Luka',
+ 'position' => 'Položaj',
+ 'posts' => 'Postovi',
+ 'powered-by' => 'Pokreće UNIT3D',
+ 'preview' => 'pregled',
+ 'previous' => 'prijašnji',
+ 'progress' => 'Napredak',
+ 'publish' => 'Objaviti',
+ 'quantity' => 'Količina',
+ 'quick-search' => 'Brza pretraga',
+ 'ratio' => 'Omjer',
+ 'reason' => 'Razlog',
+ 'remove' => 'Ukloniti',
+ 'report' => 'izvješće',
+ 'resend' => 'Ponovno pošalji',
+ 'reporter' => 'Reporter',
+ 'required' => 'Potreban',
+ 'results' => 'Rezultati',
+ 'rss-system' => 'RSS sustav',
+ 'rules' => 'pravila',
+ 'save' => 'Uštedjeti',
+ 'search' => 'traži',
+ 'search-results' => 'Rezultati pretraživanja',
+ 'search-results-desc' => 'Pogledajte rezultate ispod',
+ 'second' => 'Drugi',
+ 'select' => 'Odaberi',
+ 'sort' => 'Sortirati',
+ 'special' => 'poseban',
+ 'staff' => 'Osoblje',
+ 'staff-tools' => 'Alati osoblja',
+ 'stats' => 'Statistike',
+ 'status' => 'Status',
+ 'sticked' => 'sticked',
+ 'submit' => 'podnijeti',
+ 'subscriptions' => 'Pretplate',
+ 'teams' => 'timovi',
+ 'terms' => 'Uvjeti korištenja',
+ 'times' => 'puta',
+ 'title' => 'Titula',
+ 'top-bountied' => 'Vrhunski',
+ 'topics' => 'Teme',
+ 'tracker-codes' => 'Kodovi za praćenje',
+ 'type' => 'Tip',
+ 'type-verb' => 'Tip',
+ 'types' => 'vrste',
+ 'genre' => 'Žanr',
+ 'genres' => 'Žanrovi',
+ 'action' => 'Radnja',
+ 'actions' => 'akcije',
+ 'unknown' => 'Nepoznata',
'unlocked-achievement' => 'Otključali ste: postignuće postignuća',
- 'upload' => 'Učitaj',
- 'upload-guide' => 'Prenesite vodič',
- 'user' => 'Korisnik',
- 'username' => 'Korisničko ime',
- 'users' => 'Korisnici',
- 'view' => 'Pogled',
- 'view-all' => 'Pogledaj sve',
- 'warnings' => 'Upozorenja',
- 'year' => 'Godina',
- 'yes' => 'Da',
- 'your' => 'vaš',
- 'your-comment' => 'Tvoj komentar',
+ 'upload' => 'Učitaj',
+ 'upload-guide' => 'Prenesite vodič',
+ 'user' => 'Korisnik',
+ 'username' => 'Korisničko ime',
+ 'users' => 'Korisnici',
+ 'view' => 'Pogled',
+ 'view-all' => 'Pogledaj sve',
+ 'warnings' => 'Upozorenja',
+ 'year' => 'Godina',
+ 'yes' => 'Da',
+ 'your' => 'vaš',
+ 'your-comment' => 'Tvoj komentar',
];
diff --git a/lang/hr/email.php b/lang/hr/email.php
index a9716f635..0490074da 100644
--- a/lang/hr/email.php
+++ b/lang/hr/email.php
@@ -12,46 +12,46 @@
*/
return [
- 'activate-account' => 'Aktivirajte račun',
- 'ban-reason' => 'Razlog',
- 'banned-footer' => 'To je ono što dobivate zbog nepoštivanja pravila',
- 'banned-header' => 'Izbačen si',
- 'bug-description' => 'Problem',
- 'bug-footer' => 'Popravi to sranje',
- 'bug-header' => 'Novo izvješće o pogrešci iz',
- 'bug-priority' => 'Prioritet',
- 'bug-title' => 'Naslov buga',
- 'contact-header' => 'Nova pošta za kontakt od korisnika',
- 'contact-message' => 'Poruka',
- 'contact-name' => 'Ime',
+ 'activate-account' => 'Aktivirajte račun',
+ 'ban-reason' => 'Razlog',
+ 'banned-footer' => 'To je ono što dobivate zbog nepoštivanja pravila',
+ 'banned-header' => 'Izbačen si',
+ 'bug-description' => 'Problem',
+ 'bug-footer' => 'Popravi to sranje',
+ 'bug-header' => 'Novo izvješće o pogrešci iz',
+ 'bug-priority' => 'Prioritet',
+ 'bug-title' => 'Naslov buga',
+ 'contact-header' => 'Nova pošta za kontakt od korisnika',
+ 'contact-message' => 'Poruka',
+ 'contact-name' => 'Ime',
'fail-login-greeting' => 'Prijava na korisnički račun nije uspjela!',
- 'fail-login-line1' => 'Otkrivena je neuspjela prijava za vaš račun.',
- 'fail-login-line2' => 'Ovaj zahtjev potječe iz: ip (: host) u: time',
- 'fail-login-subject' => 'Prijava neuspješnog prijavljivanja',
- 'footer-link' => 'Ako imate problema s klikom na gumb: actionText, kopirajte i zalijepite URL u svoj web-preglednik:',
- 'invite-header' => 'Pozivnica za',
- 'invite-invited' => 'Pozvani ste na',
- 'invite-message' => 'Poruka',
- 'invite-signup' => 'Prijavi se sad',
- 'newreply-header' => 'U vašoj temi postoji novi odgovor',
- 'newreply-message' => 'Poruka',
- 'newreply-replied' => 'Odgovorio je na vašu temu',
- 'newreply-view' => 'Pogledaj odmah',
- 'no-email-found' => 'Nismo mogli pronaći ovu e-poštu u našem sustavu!',
- 'register-code' => 'Da biste dovršili aktivaciju računa, kliknite gumb u nastavku',
- 'register-footer' => 'Ako gore navedeni gumb ne funkcionira, kopirajte i zalijepite URL u adresnu traku preglednika',
- 'register-header' => 'Bok! Hvala što ste se prijavili',
- 'report-comment' => 'Komentar',
- 'report-email' => 'E-mail',
- 'report-header' => 'Bok Admin, na vezi je prijavljena veza',
- 'report-link' => 'Veza',
- 'report-link-hash' => 'Stvarna veza',
- 'thanks' => 'Hvala što koristite',
- 'unban-footer' => 'Dobrodošao natrag!',
- 'unban-header' => 'Vi ste bili zabranjeni',
- 'unban-reason' => 'Razlog',
- 'username-reminder' => 'Nedavno ste nam poslali zahtjev za korisničko ime na našoj aplikaciji. Vaše korisničko ime je',
- 'username-sent' => 'Vaše korisničko ime je poslano na vašu adresu e-pošte!',
- 'disabled-header' => 'Vaš je račun onemogućen',
- 'pruned-header' => 'Vaš je račun ukinut',
+ 'fail-login-line1' => 'Otkrivena je neuspjela prijava za vaš račun.',
+ 'fail-login-line2' => 'Ovaj zahtjev potječe iz: ip (: host) u: time',
+ 'fail-login-subject' => 'Prijava neuspješnog prijavljivanja',
+ 'footer-link' => 'Ako imate problema s klikom na gumb: actionText, kopirajte i zalijepite URL u svoj web-preglednik:',
+ 'invite-header' => 'Pozivnica za',
+ 'invite-invited' => 'Pozvani ste na',
+ 'invite-message' => 'Poruka',
+ 'invite-signup' => 'Prijavi se sad',
+ 'newreply-header' => 'U vašoj temi postoji novi odgovor',
+ 'newreply-message' => 'Poruka',
+ 'newreply-replied' => 'Odgovorio je na vašu temu',
+ 'newreply-view' => 'Pogledaj odmah',
+ 'no-email-found' => 'Nismo mogli pronaći ovu e-poštu u našem sustavu!',
+ 'register-code' => 'Da biste dovršili aktivaciju računa, kliknite gumb u nastavku',
+ 'register-footer' => 'Ako gore navedeni gumb ne funkcionira, kopirajte i zalijepite URL u adresnu traku preglednika',
+ 'register-header' => 'Bok! Hvala što ste se prijavili',
+ 'report-comment' => 'Komentar',
+ 'report-email' => 'E-mail',
+ 'report-header' => 'Bok Admin, na vezi je prijavljena veza',
+ 'report-link' => 'Veza',
+ 'report-link-hash' => 'Stvarna veza',
+ 'thanks' => 'Hvala što koristite',
+ 'unban-footer' => 'Dobrodošao natrag!',
+ 'unban-header' => 'Vi ste bili zabranjeni',
+ 'unban-reason' => 'Razlog',
+ 'username-reminder' => 'Nedavno ste nam poslali zahtjev za korisničko ime na našoj aplikaciji. Vaše korisničko ime je',
+ 'username-sent' => 'Vaše korisničko ime je poslano na vašu adresu e-pošte!',
+ 'disabled-header' => 'Vaš je račun onemogućen',
+ 'pruned-header' => 'Vaš je račun ukinut',
];
diff --git a/lang/hr/forum.php b/lang/hr/forum.php
index 0aafa78a4..a1ab5b54a 100644
--- a/lang/hr/forum.php
+++ b/lang/hr/forum.php
@@ -12,63 +12,63 @@
*/
return [
- 'action' => 'Radnja',
- 'activity' => 'Aktivnost',
- 'approved' => 'Odobren',
- 'author' => 'Autor',
- 'bug' => 'Buba',
- 'category-quick-search' => 'Brzo pretraživanje naziva teme (unutar kategorije)',
- 'close-topic' => 'Zaključaj temu',
- 'closed' => 'Zatvoreno',
- 'create-new-topic' => 'Izradite novu temu',
- 'created' => 'stvoren',
- 'current' => 'Trenutno',
- 'delete-topic' => 'Izbriši ovu temu',
- 'denied' => 'odbijen',
- 'dislike-post' => 'Ne sviđa mi se ovaj post',
- 'display-forum' => 'Prikaži teme na',
- 'edit-post' => 'Uredi post',
- 'edit-topic' => 'Uredi temu',
- 'forum' => 'Forum',
- 'forums' => 'Forum',
- 'implemented' => 'Provodi',
- 'in' => 'U',
- 'invalid' => 'Nevažeći',
- 'label' => 'Označiti',
- 'label-system' => 'Sustav oznaka',
- 'last-message' => 'Posljednja poruka',
- 'last-post-info' => 'Posljednji post informacija',
- 'latest' => 'Najnoviji',
- 'like-post' => 'Kao ovaj post',
- 'meta-category' => 'Popis foruma u kategoriji',
- 'moderation' => 'Umjerenost',
- 'name' => 'Ime',
- 'not-connected' => 'Morate biti povezani',
- 'not-subscribed' => 'Nije pretplaćeno',
- 'open' => 'Otvorena',
- 'open-topic' => 'Otvori ovu temu',
- 'permalink' => 'Permalink',
- 'pin' => 'igla',
- 'post' => 'pošta',
- 'post-quick-search' => 'Brzo pretraživanje tijela',
- 'posts' => 'Postovi',
- 'quote' => 'Citat',
- 'read-topic' => 'Pročitajte temu',
- 'replies' => 'Odgovori',
- 'send-new-topic' => 'Spremi ovu temu',
- 'solved' => 'riješen',
- 'state' => 'država',
- 'stats' => 'Statistike',
- 'subscribed' => 'pretplaćen',
+ 'action' => 'Radnja',
+ 'activity' => 'Aktivnost',
+ 'approved' => 'Odobren',
+ 'author' => 'Autor',
+ 'bug' => 'Buba',
+ 'category-quick-search' => 'Brzo pretraživanje naziva teme (unutar kategorije)',
+ 'close-topic' => 'Zaključaj temu',
+ 'closed' => 'Zatvoreno',
+ 'create-new-topic' => 'Izradite novu temu',
+ 'created' => 'stvoren',
+ 'current' => 'Trenutno',
+ 'delete-topic' => 'Izbriši ovu temu',
+ 'denied' => 'odbijen',
+ 'dislike-post' => 'Ne sviđa mi se ovaj post',
+ 'display-forum' => 'Prikaži teme na',
+ 'edit-post' => 'Uredi post',
+ 'edit-topic' => 'Uredi temu',
+ 'forum' => 'Forum',
+ 'forums' => 'Forum',
+ 'implemented' => 'Provodi',
+ 'in' => 'U',
+ 'invalid' => 'Nevažeći',
+ 'label' => 'Označiti',
+ 'label-system' => 'Sustav oznaka',
+ 'last-message' => 'Posljednja poruka',
+ 'last-post-info' => 'Posljednji post informacija',
+ 'latest' => 'Najnoviji',
+ 'like-post' => 'Kao ovaj post',
+ 'meta-category' => 'Popis foruma u kategoriji',
+ 'moderation' => 'Umjerenost',
+ 'name' => 'Ime',
+ 'not-connected' => 'Morate biti povezani',
+ 'not-subscribed' => 'Nije pretplaćeno',
+ 'open' => 'Otvorena',
+ 'open-topic' => 'Otvori ovu temu',
+ 'permalink' => 'Permalink',
+ 'pin' => 'igla',
+ 'post' => 'pošta',
+ 'post-quick-search' => 'Brzo pretraživanje tijela',
+ 'posts' => 'Postovi',
+ 'quote' => 'Citat',
+ 'read-topic' => 'Pročitajte temu',
+ 'replies' => 'Odgovori',
+ 'send-new-topic' => 'Spremi ovu temu',
+ 'solved' => 'riješen',
+ 'state' => 'država',
+ 'stats' => 'Statistike',
+ 'subscribed' => 'pretplaćen',
'subscription-quick-search' => 'Brzo pretraživanje naziva teme (unutar pretplata)',
- 'suggestion' => 'Prijedlog',
- 'topic' => 'Tema',
- 'topic-closed' => 'Ova tema je zatvorena',
- 'topic-name' => 'Naziv teme',
- 'topic-quick-search' => 'Naziv teme brzo pretraživanje',
- 'topic-title' => 'Naslov ove teme',
- 'topics' => 'Teme',
- 'unpin' => 'Raskovati',
- 'view-all' => 'Prikaži sve teme',
- 'views' => 'Posjeta',
+ 'suggestion' => 'Prijedlog',
+ 'topic' => 'Tema',
+ 'topic-closed' => 'Ova tema je zatvorena',
+ 'topic-name' => 'Naziv teme',
+ 'topic-quick-search' => 'Naziv teme brzo pretraživanje',
+ 'topic-title' => 'Naslov ove teme',
+ 'topics' => 'Teme',
+ 'unpin' => 'Raskovati',
+ 'view-all' => 'Prikaži sve teme',
+ 'views' => 'Posjeta',
];
diff --git a/lang/hr/graveyard.php b/lang/hr/graveyard.php
index eb509d966..e9c3de54d 100644
--- a/lang/hr/graveyard.php
+++ b/lang/hr/graveyard.php
@@ -12,15 +12,15 @@
*/
return [
- 'dead' => 'Mrtav',
- 'graveyard' => 'Groblje',
- 'guidelines' => 'Smjernice',
+ 'dead' => 'Mrtav',
+ 'graveyard' => 'Groblje',
+ 'guidelines' => 'Smjernice',
'guidelines-content' => '1) Ne možete obnoviti vlastite prenose.
2) Ne uskrsavati nešto što ne možete obvezati previše.',
- 'howto' => 'Ovdje je pravilo',
- 'howto-desc1' => 'Morate zasijati : ime za 30 dana za uspješno ponovno spaljivanje. U tom slučaju kada se trenutačno vrijeme sjeme',
- 'howto-desc2' => 'Bit ćete nagrađeni',
- 'howto-hits' => 'Posjeta',
- 'pending' => 'U tijeku',
- 'resurrect' => 'Uskrsnuti',
- 'reward' => 'Slobodni tokeni',
+ 'howto' => 'Ovdje je pravilo',
+ 'howto-desc1' => 'Morate zasijati : ime za 30 dana za uspješno ponovno spaljivanje. U tom slučaju kada se trenutačno vrijeme sjeme',
+ 'howto-desc2' => 'Bit ćete nagrađeni',
+ 'howto-hits' => 'Posjeta',
+ 'pending' => 'U tijeku',
+ 'resurrect' => 'Uskrsnuti',
+ 'reward' => 'Slobodni tokeni',
];
diff --git a/lang/hr/notification.php b/lang/hr/notification.php
index 158a84705..e65e9ecfa 100644
--- a/lang/hr/notification.php
+++ b/lang/hr/notification.php
@@ -12,14 +12,14 @@
*/
return [
- 'date' => 'Datum',
- 'delete' => 'Izbrisati',
- 'delete-all' => 'Izbrišite sve obavijesti',
- 'mark-all-read' => 'Označi sve kao pročitano',
- 'mark-read' => 'Označi kao pročitano',
- 'message' => 'Poruka',
+ 'date' => 'Datum',
+ 'delete' => 'Izbrisati',
+ 'delete-all' => 'Izbrišite sve obavijesti',
+ 'mark-all-read' => 'Označi sve kao pročitano',
+ 'mark-read' => 'Označi kao pročitano',
+ 'message' => 'Poruka',
'no-notifications' => 'Nema obavijesti',
- 'notifications' => 'Obavijesti',
- 'read' => 'Čitati',
- 'title' => 'Titula',
+ 'notifications' => 'Obavijesti',
+ 'read' => 'Čitati',
+ 'title' => 'Titula',
];
diff --git a/lang/hr/page.php b/lang/hr/page.php
index 9cd17c826..9a0355781 100644
--- a/lang/hr/page.php
+++ b/lang/hr/page.php
@@ -12,28 +12,28 @@
*/
return [
- 'aboutus-advantage' => 'Prednost',
- 'aboutus-advantage1' => 'Imamo iskusne članove i osoblje koje dobro poznaje svijet HD video / audio i tehničke podrške.',
- 'aboutus-advantage2' => 'Uz našu veliku strast prema filmovima i TV emisijama, nudimo i jednu od najboljih selekcija nečega što najviše - FANRES! VELIKO HVALA našim donositeljima sadržaja.',
- 'aboutus-advantage3' => 'Iako prihvaćamo donacije kako bismo zadržali web-lokaciju i pokrenuli web-lokaciju, neće biti nikakvih gnjavitelja ili banera na licu mjesta. Ne moliti od nas.',
- 'aboutus-advantage4' => 'Naša zajednica nema premca za ranu dob. Između našeg osoblja i korisničke baze, uvijek smo bili tu da vam pomognemo. Bili smo strastveni u osiguravanju vašeg iskustva na: naslov je ništa manje od nevjerojatna.',
- 'aboutus-advantage5' => 'Naše usluge svakodnevno koriste mnogi ljudi širom svijeta. Dokazali smo da nam je stalo do funkcionalnosti i sigurnosti našeg koda i da se može pouzdati i osloniti se na njega. Naši programeri svakodnevno rade kako bi pružili doista nex-gen kodnu bazu.',
- 'aboutus-header' => 'bok tamo',
- 'aboutus-rules' => 'Ono što trebamo od vas',
- 'aboutus-rules1' => 'Biti aktivan član zajednice! To znači produktivno uključivanje u razgovore, dodavanje odobrenog sadržaja i pomoć drugim korisnicima ako možete.',
- 'aboutus-rules2' => 'Pročitati pravila u cijelosti i poštovati ih!',
- 'aboutus-rules3' => 'Davati prijedloge! Nastojimo svaki dan poboljšati: titulu. Mi ne tvrdimo da će se svaki prijedlog koristiti, ali nikada ne boli vidjeti nove ideje.',
- 'aboutus-welcome' => 'Pričajmo o',
- 'aboutus-welcome-desc' => ': title je baza filmova / TV-a / FANRES -a izgrađena u zajednici . Svaki dio podataka dodan je našoj izvanrednoj zajednici od 2017. godine: naslovi snažan fokus su na HD sadržaju, proaktivnoj korisničkoj bazi, strašnoj / sigurnoj bazi koda i uslužnom timu.',
- 'blacklist-browsers' => 'Preglednici',
- 'blacklist-btclient' => 'BitTorrent klijent',
- 'blacklist-clients' => 'klijenti',
- 'blacklist-desc' => 'Sljedeći preglednici i bittorrent klijenti su na crnoj listi / zabranjeni iz objavljivanja na: naslov',
- 'blacklist-webbrowser' => 'Web-preglednik',
+ 'aboutus-advantage' => 'Prednost',
+ 'aboutus-advantage1' => 'Imamo iskusne članove i osoblje koje dobro poznaje svijet HD video / audio i tehničke podrške.',
+ 'aboutus-advantage2' => 'Uz našu veliku strast prema filmovima i TV emisijama, nudimo i jednu od najboljih selekcija nečega što najviše - FANRES! VELIKO HVALA našim donositeljima sadržaja.',
+ 'aboutus-advantage3' => 'Iako prihvaćamo donacije kako bismo zadržali web-lokaciju i pokrenuli web-lokaciju, neće biti nikakvih gnjavitelja ili banera na licu mjesta. Ne moliti od nas.',
+ 'aboutus-advantage4' => 'Naša zajednica nema premca za ranu dob. Između našeg osoblja i korisničke baze, uvijek smo bili tu da vam pomognemo. Bili smo strastveni u osiguravanju vašeg iskustva na: naslov je ništa manje od nevjerojatna.',
+ 'aboutus-advantage5' => 'Naše usluge svakodnevno koriste mnogi ljudi širom svijeta. Dokazali smo da nam je stalo do funkcionalnosti i sigurnosti našeg koda i da se može pouzdati i osloniti se na njega. Naši programeri svakodnevno rade kako bi pružili doista nex-gen kodnu bazu.',
+ 'aboutus-header' => 'bok tamo',
+ 'aboutus-rules' => 'Ono što trebamo od vas',
+ 'aboutus-rules1' => 'Biti aktivan član zajednice! To znači produktivno uključivanje u razgovore, dodavanje odobrenog sadržaja i pomoć drugim korisnicima ako možete.',
+ 'aboutus-rules2' => 'Pročitati pravila u cijelosti i poštovati ih!',
+ 'aboutus-rules3' => 'Davati prijedloge! Nastojimo svaki dan poboljšati: titulu. Mi ne tvrdimo da će se svaki prijedlog koristiti, ali nikada ne boli vidjeti nove ideje.',
+ 'aboutus-welcome' => 'Pričajmo o',
+ 'aboutus-welcome-desc' => ': title je baza filmova / TV-a / FANRES -a izgrađena u zajednici . Svaki dio podataka dodan je našoj izvanrednoj zajednici od 2017. godine: naslovi snažan fokus su na HD sadržaju, proaktivnoj korisničkoj bazi, strašnoj / sigurnoj bazi koda i uslužnom timu.',
+ 'blacklist-browsers' => 'Preglednici',
+ 'blacklist-btclient' => 'BitTorrent klijent',
+ 'blacklist-clients' => 'klijenti',
+ 'blacklist-desc' => 'Sljedeći preglednici i bittorrent klijenti su na crnoj listi / zabranjeni iz objavljivanja na: naslov',
+ 'blacklist-webbrowser' => 'Web-preglednik',
'blacklist-emaildomain' => 'Blokirana domena',
- 'email-blacklist-desc' => 'Sljedeće domene e-pošte blokirane su od upotrebe. Ne možete se registrirati ili poslati pozivnicu na sljedeće.',
- 'email-whitelist-desc' => 'Sljedeće e-mail domene su jedine domene koje se mogu koristiti. Možete samo registrirati ili poslati pozivnicu pomoću sljedećeg.',
- 'staff-group' => 'Skupina',
- 'staff-title' => 'Titula',
+ 'email-blacklist-desc' => 'Sljedeće domene e-pošte blokirane su od upotrebe. Ne možete se registrirati ili poslati pozivnicu na sljedeće.',
+ 'email-whitelist-desc' => 'Sljedeće e-mail domene su jedine domene koje se mogu koristiti. Možete samo registrirati ili poslati pozivnicu pomoću sljedećeg.',
+ 'staff-group' => 'Skupina',
+ 'staff-title' => 'Titula',
'whitelist-emaildomain' => 'Pouzdana domena',
];
diff --git a/lang/hr/pagination.php b/lang/hr/pagination.php
index 20281d9e4..8c1095558 100644
--- a/lang/hr/pagination.php
+++ b/lang/hr/pagination.php
@@ -24,5 +24,5 @@ return [
*/
'previous' => '« Prethodna',
- 'next' => 'Sljedeća »',
+ 'next' => 'Sljedeća »',
];
diff --git a/lang/hr/passwords.php b/lang/hr/passwords.php
index f71e96cd6..e9a0a861b 100644
--- a/lang/hr/passwords.php
+++ b/lang/hr/passwords.php
@@ -24,8 +24,8 @@ return [
*/
'password' => 'Lozinke moraju biti duge barem 6 znakova i moraju odgovarati potvrdi.',
- 'reset' => 'Lozinka je postavljena!',
- 'sent' => 'Poveznica za ponovono postavljanje lozinke je poslana!',
- 'token' => 'Oznaka za ponovno postavljanje lozinke više nije važeća.',
- 'user' => 'Korisnik nije pronađen.',
+ 'reset' => 'Lozinka je postavljena!',
+ 'sent' => 'Poveznica za ponovono postavljanje lozinke je poslana!',
+ 'token' => 'Oznaka za ponovno postavljanje lozinke više nije važeća.',
+ 'user' => 'Korisnik nije pronađen.',
];
diff --git a/lang/hr/pm.php b/lang/hr/pm.php
index c285cd8be..3a51d3f31 100644
--- a/lang/hr/pm.php
+++ b/lang/hr/pm.php
@@ -12,28 +12,28 @@
*/
return [
- 'create' => 'Stvoriti',
- 'delete' => 'Izbrisati',
+ 'create' => 'Stvoriti',
+ 'delete' => 'Izbrisati',
'enter-subject' => 'Unesite predmet',
- 'from' => 'Iz',
- 'inbox' => 'Ulazni spremnik',
+ 'from' => 'Iz',
+ 'inbox' => 'Ulazni spremnik',
'mark-all-read' => 'Označite sve poruke kao pročitane',
- 'message' => 'Poruka',
- 'messages' => 'poruke',
- 'new' => 'Nova poruka',
- 'outbox' => 'nadmašiti u boksu',
- 'private' => 'Privatna',
- 'read' => 'Čitati',
- 'received-at' => 'Primljeno na',
- 'refresh' => 'Osvježiti',
- 'reply' => 'Odgovor',
- 'search' => 'Traži po predmetu',
- 'select' => 'Odaberite korisnika',
- 'send' => 'Pošalji PM',
- 'send-to' => 'Pošalji PM',
- 'sent' => 'Poslano',
- 'sent-at' => 'Poslano u',
- 'subject' => 'predmet',
- 'to' => 'Do',
- 'unread' => 'nepročitan',
+ 'message' => 'Poruka',
+ 'messages' => 'poruke',
+ 'new' => 'Nova poruka',
+ 'outbox' => 'nadmašiti u boksu',
+ 'private' => 'Privatna',
+ 'read' => 'Čitati',
+ 'received-at' => 'Primljeno na',
+ 'refresh' => 'Osvježiti',
+ 'reply' => 'Odgovor',
+ 'search' => 'Traži po predmetu',
+ 'select' => 'Odaberite korisnika',
+ 'send' => 'Pošalji PM',
+ 'send-to' => 'Pošalji PM',
+ 'sent' => 'Poslano',
+ 'sent-at' => 'Poslano u',
+ 'subject' => 'predmet',
+ 'to' => 'Do',
+ 'unread' => 'nepročitan',
];
diff --git a/lang/hr/poll.php b/lang/hr/poll.php
index 8b99e5422..cdbca6310 100644
--- a/lang/hr/poll.php
+++ b/lang/hr/poll.php
@@ -12,18 +12,18 @@
*/
return [
- 'add-option' => 'Dodaj opciju',
- 'create-poll' => 'Izradite anketu',
- 'current' => 'Trenutna anketa',
- 'delete-option' => 'Izbriši opciju',
+ 'add-option' => 'Dodaj opciju',
+ 'create-poll' => 'Izradite anketu',
+ 'current' => 'Trenutna anketa',
+ 'delete-option' => 'Izbriši opciju',
'multiple-choice' => 'Ovo je anketa s višestrukim izborom. Odaberite onoliko odgovora koliko želite.',
- 'option' => 'Opcija',
- 'poll' => 'Anketa',
- 'polls' => 'Ankete',
- 'results' => 'Rezultati ankete',
- 'title' => 'Titula',
- 'total' => 'Ukupno glasova ikad',
- 'vote' => 'Glas',
- 'vote-now' => 'Uzmite svoj glas odmah!',
- 'votes' => 'glasova',
+ 'option' => 'Opcija',
+ 'poll' => 'Anketa',
+ 'polls' => 'Ankete',
+ 'results' => 'Rezultati ankete',
+ 'title' => 'Titula',
+ 'total' => 'Ukupno glasova ikad',
+ 'vote' => 'Glas',
+ 'vote-now' => 'Uzmite svoj glas odmah!',
+ 'votes' => 'glasova',
];
diff --git a/lang/hr/request.php b/lang/hr/request.php
index c28f2a4f4..31662065f 100644
--- a/lang/hr/request.php
+++ b/lang/hr/request.php
@@ -12,67 +12,67 @@
*/
return [
- 'add-request' => 'Dodaj zahtjev',
- 'age' => 'Dob',
- 'all-requests' => 'Svi zahtjevi',
- 'approve' => 'Odobriti',
- 'bounty' => 'Nagrada',
- 'bounty-claimed' => 'Bounty je tvrdio',
- 'bounty-unclaimed' => 'Bounty nije zatražen',
- 'category' => 'Kategorija',
- 'claim' => 'Zahtjev',
- 'claim-anon-choose' => 'Odaberite mudro',
- 'claim-as-anon' => 'Želite li ovo tvrditi samostalno',
- 'claim-now' => 'Zatražite odmah',
- 'claimed' => 'tvrdio',
- 'current' => 'Trenutno',
- 'delete' => 'Izbrišite ovaj zahtjev',
+ 'add-request' => 'Dodaj zahtjev',
+ 'age' => 'Dob',
+ 'all-requests' => 'Svi zahtjevi',
+ 'approve' => 'Odobriti',
+ 'bounty' => 'Nagrada',
+ 'bounty-claimed' => 'Bounty je tvrdio',
+ 'bounty-unclaimed' => 'Bounty nije zatražen',
+ 'category' => 'Kategorija',
+ 'claim' => 'Zahtjev',
+ 'claim-anon-choose' => 'Odaberite mudro',
+ 'claim-as-anon' => 'Želite li ovo tvrditi samostalno',
+ 'claim-now' => 'Zatražite odmah',
+ 'claimed' => 'tvrdio',
+ 'current' => 'Trenutno',
+ 'delete' => 'Izbrišite ovaj zahtjev',
'delete-confirmation' => 'Jeste li sigurni da želite izbrisati ovaj zahtjev',
- 'delete-filled' => 'Ovaj se zahtjev može izbrisati samo ako nije ispunjen',
- 'description' => 'Opis',
- 'dont-have-bps' => 'Nemate dovoljno bonusa',
- 'edit-request' => 'Uređivanje zahtjeva',
- 'enter-bp' => 'Unesite bonus bodove (najmanje 100)',
- 'enter-hash' => 'Unesite Info hash za učitani Torrent',
- 'fill' => 'ispuniti',
- 'fill-request' => 'Ispunite zahtjev',
- 'filled' => 'ispunjen',
- 'filled-by' => 'Ispunjen',
- 'for' => 'za',
- 'fulfill' => 'Ispuniti',
- 'last-vote' => 'Zadnje glasovanje',
- 'my-requests' => 'Moji zahtjevi',
- 'no' => 'Ne,',
- 'no-imdb-id' => 'Svi zahtjevi moraju sadržavati IMDB broj',
- 'no-privileges' => 'Pogreška: Vaša su prava za zahtjev onemogućena',
- 'no-privileges-desc' => 'Ako smatrate da je to pogreška, obratite se osoblju',
- 'no-refunds' => 'BON razmjene o stvaranju, punjenju i nagradama su konačne!
NEMA POVRATA!',
- 'pending' => 'U tijeku',
- 'reason' => 'Razlog',
- 'reject' => 'Odbiti',
- 'report' => 'Prijavi zahtjev',
- 'request' => 'Zahtjev',
- 'request-details' => 'Zatražite pojedinosti',
- 'requested-by' => 'Traženo od',
- 'requests' => 'Zahtjevi',
- 'required' => 'Potreban',
- 'reset' => 'Reset',
- 'reset-confirmation' => 'Jeste li sigurni da želite poništiti ovaj zahtjev',
- 'reset-request' => 'Poništite ovaj zahtjev',
- 'reward' => 'Nagrada',
- 'reward-desc' => 'Koliko bonus bodova želite nagraditi? Najmanje 100 BP',
- 'reward-from' => 'Iz',
- 'title' => 'Titula',
- 'torrent-hash' => 'Torrent Hash',
- 'total-bounty' => 'Ukupna nagrada',
- 'type' => 'Tip',
- 'unclaim' => 'Odustani od ovog zahtjeva',
- 'unfilled' => 'Neispunjen',
- 'view-filled' => 'Prikaz ispunjen',
- 'view-unfilled' => 'Pogled nije ispunjen',
- 'vote' => 'Glas',
- 'vote-that' => 'Glasajte za ovaj zahtjev',
- 'voters' => 'glasači',
- 'votes' => 'glasova',
- 'yes' => 'Da',
+ 'delete-filled' => 'Ovaj se zahtjev može izbrisati samo ako nije ispunjen',
+ 'description' => 'Opis',
+ 'dont-have-bps' => 'Nemate dovoljno bonusa',
+ 'edit-request' => 'Uređivanje zahtjeva',
+ 'enter-bp' => 'Unesite bonus bodove (najmanje 100)',
+ 'enter-hash' => 'Unesite Info hash za učitani Torrent',
+ 'fill' => 'ispuniti',
+ 'fill-request' => 'Ispunite zahtjev',
+ 'filled' => 'ispunjen',
+ 'filled-by' => 'Ispunjen',
+ 'for' => 'za',
+ 'fulfill' => 'Ispuniti',
+ 'last-vote' => 'Zadnje glasovanje',
+ 'my-requests' => 'Moji zahtjevi',
+ 'no' => 'Ne,',
+ 'no-imdb-id' => 'Svi zahtjevi moraju sadržavati IMDB broj',
+ 'no-privileges' => 'Pogreška: Vaša su prava za zahtjev onemogućena',
+ 'no-privileges-desc' => 'Ako smatrate da je to pogreška, obratite se osoblju',
+ 'no-refunds' => 'BON razmjene o stvaranju, punjenju i nagradama su konačne!
NEMA POVRATA!',
+ 'pending' => 'U tijeku',
+ 'reason' => 'Razlog',
+ 'reject' => 'Odbiti',
+ 'report' => 'Prijavi zahtjev',
+ 'request' => 'Zahtjev',
+ 'request-details' => 'Zatražite pojedinosti',
+ 'requested-by' => 'Traženo od',
+ 'requests' => 'Zahtjevi',
+ 'required' => 'Potreban',
+ 'reset' => 'Reset',
+ 'reset-confirmation' => 'Jeste li sigurni da želite poništiti ovaj zahtjev',
+ 'reset-request' => 'Poništite ovaj zahtjev',
+ 'reward' => 'Nagrada',
+ 'reward-desc' => 'Koliko bonus bodova želite nagraditi? Najmanje 100 BP',
+ 'reward-from' => 'Iz',
+ 'title' => 'Titula',
+ 'torrent-hash' => 'Torrent Hash',
+ 'total-bounty' => 'Ukupna nagrada',
+ 'type' => 'Tip',
+ 'unclaim' => 'Odustani od ovog zahtjeva',
+ 'unfilled' => 'Neispunjen',
+ 'view-filled' => 'Prikaz ispunjen',
+ 'view-unfilled' => 'Pogled nije ispunjen',
+ 'vote' => 'Glas',
+ 'vote-that' => 'Glasajte za ovaj zahtjev',
+ 'voters' => 'glasači',
+ 'votes' => 'glasova',
+ 'yes' => 'Da',
];
diff --git a/lang/hr/rss.php b/lang/hr/rss.php
index 35b370bbe..aa8bb891b 100644
--- a/lang/hr/rss.php
+++ b/lang/hr/rss.php
@@ -12,19 +12,19 @@
*/
return [
- 'create' => 'Stvoriti',
+ 'create' => 'Stvoriti',
'create-private-feed' => 'Stvorite privatni RSS feed',
- 'create-public-feed' => 'Stvorite javni RSS feed',
- 'delete' => 'Izbrisati',
- 'edit' => 'Uredi',
- 'edit-private-feed' => 'Uredi privatni RSS feed',
- 'edit-public-feed' => 'Uredi javni RSS feed',
- 'feed' => 'stočna hrana',
- 'feeds' => 'Tekuće',
- 'name' => 'Ime',
- 'public' => 'Javnost',
- 'private' => 'Privatna',
- 'rss' => 'RSS',
- 'rss-feed' => 'RSS feed',
- 'type' => 'Tip',
+ 'create-public-feed' => 'Stvorite javni RSS feed',
+ 'delete' => 'Izbrisati',
+ 'edit' => 'Uredi',
+ 'edit-private-feed' => 'Uredi privatni RSS feed',
+ 'edit-public-feed' => 'Uredi javni RSS feed',
+ 'feed' => 'stočna hrana',
+ 'feeds' => 'Tekuće',
+ 'name' => 'Ime',
+ 'public' => 'Javnost',
+ 'private' => 'Privatna',
+ 'rss' => 'RSS',
+ 'rss-feed' => 'RSS feed',
+ 'type' => 'Tip',
];
diff --git a/lang/hr/staff.php b/lang/hr/staff.php
index 670ddbb03..58a5119cb 100644
--- a/lang/hr/staff.php
+++ b/lang/hr/staff.php
@@ -12,48 +12,48 @@
*/
return [
- 'audit-log' => 'Dnevnik aktivnosti',
- 'articles' => 'Članci',
- 'applications' => 'Prijave',
- 'bans-log' => 'Dnevnik zabrana',
- 'blocks' => 'blokovi',
- 'bot' => 'bot',
- 'bots' => 'Botovi',
- 'chat' => 'razgovor',
- 'config-manager' => 'Config Manager',
- 'dashboard' => 'kontrolna ploča',
- 'failed-login-log' => 'Zapis nije uspio',
- 'flush-ghost-peers' => 'Flush Ghost Peers',
- 'forums' => 'Forum',
- 'frontend' => 'sučelja',
- 'general-tools' => 'Opći alati',
- 'groups' => 'grupe',
- 'invites-log' => 'Dnevnik poziva',
- 'laravel-log' => 'Laravel Log',
- 'links' => 'linkovi',
- 'logs' => 'drva',
- 'mass-pm' => 'Mass PM',
- 'mass-validate-users' => 'Korisnici s valjanom masom',
- 'moderation' => 'Umjerenost',
- 'pages' => 'stranice',
- 'please-moderate' => 'Molimo moderirajte ovaj torrent!',
- 'polls' => 'Ankete',
- 'reports-log' => 'Dnevnik izvješća',
- 'rss' => 'RSS',
- 'staff-dashboard' => 'Nadzorna ploča osoblja',
- 'torrent-categories' => 'Torrent kategorije',
- 'torrent-moderation' => 'Moderiranje toka',
- 'torrent-tools' => 'Alati za buđenje',
- 'torrent-types' => 'Vrste bujica',
- 'torrents' => 'torrents',
- 'user-gifting' => 'Poklon za korisnika',
- 'user-notes' => 'Dnevnik korisničkih bilješki',
- 'user-search' => 'Pretraživanje korisnika',
- 'user-tools' => 'Korisnički alati',
- 'warnings-log' => 'Dnevnik upozorenja',
- 'you-have' => 'Imaš',
+ 'audit-log' => 'Dnevnik aktivnosti',
+ 'articles' => 'Članci',
+ 'applications' => 'Prijave',
+ 'bans-log' => 'Dnevnik zabrana',
+ 'blocks' => 'blokovi',
+ 'bot' => 'bot',
+ 'bots' => 'Botovi',
+ 'chat' => 'razgovor',
+ 'config-manager' => 'Config Manager',
+ 'dashboard' => 'kontrolna ploča',
+ 'failed-login-log' => 'Zapis nije uspio',
+ 'flush-ghost-peers' => 'Flush Ghost Peers',
+ 'forums' => 'Forum',
+ 'frontend' => 'sučelja',
+ 'general-tools' => 'Opći alati',
+ 'groups' => 'grupe',
+ 'invites-log' => 'Dnevnik poziva',
+ 'laravel-log' => 'Laravel Log',
+ 'links' => 'linkovi',
+ 'logs' => 'drva',
+ 'mass-pm' => 'Mass PM',
+ 'mass-validate-users' => 'Korisnici s valjanom masom',
+ 'moderation' => 'Umjerenost',
+ 'pages' => 'stranice',
+ 'please-moderate' => 'Molimo moderirajte ovaj torrent!',
+ 'polls' => 'Ankete',
+ 'reports-log' => 'Dnevnik izvješća',
+ 'rss' => 'RSS',
+ 'staff-dashboard' => 'Nadzorna ploča osoblja',
+ 'torrent-categories' => 'Torrent kategorije',
+ 'torrent-moderation' => 'Moderiranje toka',
+ 'torrent-tools' => 'Alati za buđenje',
+ 'torrent-types' => 'Vrste bujica',
+ 'torrents' => 'torrents',
+ 'user-gifting' => 'Poklon za korisnika',
+ 'user-notes' => 'Dnevnik korisničkih bilješki',
+ 'user-search' => 'Pretraživanje korisnika',
+ 'user-tools' => 'Korisnički alati',
+ 'warnings-log' => 'Dnevnik upozorenja',
+ 'you-have' => 'Imaš',
'possible-leech-cheaters' => 'Mogući varalice',
- 'chat-tools' => 'Alati za chat',
- 'flush-chat' => 'Isprazni Chatbox',
- 'seedboxes' => 'Registrirani Seedboxes',
+ 'chat-tools' => 'Alati za chat',
+ 'flush-chat' => 'Isprazni Chatbox',
+ 'seedboxes' => 'Registrirani Seedboxes',
];
diff --git a/lang/hr/stat.php b/lang/hr/stat.php
index ff08f0ff1..102d96049 100644
--- a/lang/hr/stat.php
+++ b/lang/hr/stat.php
@@ -12,40 +12,40 @@
*/
return [
- 'by-count' => 'Po Countu',
- 'by-data' => 'Po podacima',
- 'by-volume' => 'Po volumenu',
- 'group' => 'Skupina',
- 'groups' => 'grupe',
- 'nerd-stats' => 'Nerd statistika',
- 'nerd-stats-desc' => 'Svi volimo statistiku. Evo nekoliko koje smatramo važnima',
- 'registration-date' => 'Datum registracije',
- 'request-fulfilled' => 'Zahtjev je ispunjen',
- 'request-not-fulfilled' => 'Zahtjev nije ispunjen',
+ 'by-count' => 'Po Countu',
+ 'by-data' => 'Po podacima',
+ 'by-volume' => 'Po volumenu',
+ 'group' => 'Skupina',
+ 'groups' => 'grupe',
+ 'nerd-stats' => 'Nerd statistika',
+ 'nerd-stats-desc' => 'Svi volimo statistiku. Evo nekoliko koje smatramo važnima',
+ 'registration-date' => 'Datum registracije',
+ 'request-fulfilled' => 'Zahtjev je ispunjen',
+ 'request-not-fulfilled' => 'Zahtjev nije ispunjen',
'request-pending-aproval' => 'Zahtjev za odobrenje na čekanju',
- 'select-category' => 'Odaberite kategoriju u nastavku',
- 'site-stats' => 'Statistika web-lokacije',
- 'stats' => 'Statistike',
- 'stats-format' => 'Sve statistike prikazane u Top 100 formatu',
- 'top-bankers' => 'Najbolji bankari',
- 'top-bountied' => 'Vrhunski',
- 'top-completed' => 'Na vrhu je dovršeno',
- 'top-dead' => 'Top mrtvi',
- 'top-downloaded' => 'Najnovije preuzete torente',
- 'top-downloaders' => 'Najbolji preuzimatelji',
- 'top-dying' => 'Top Dying',
- 'top-leeched' => 'Vrhunski',
- 'top-leechers' => 'Vrhunski Leechers',
- 'top-seeded' => 'Najviše sjeme',
- 'top-seeding' => 'Vrh sjetve',
- 'top-seeders' => 'Vrhunske sijačice',
- 'top-seedsize' => 'Top Seedsize',
- 'top-seedtime' => 'Top Seedtime',
- 'top-uploaders' => 'Najpopularniji korisnici',
- 'total-download' => 'Ukupno preuzimanje',
- 'total-torrents' => 'Ukupno torente',
- 'total-traffic' => 'Ukupni promet',
- 'total-upload' => 'Ukupni prijenos',
- 'users-in-group' => 'Korisnici u grupi',
- 'users-per-group' => 'Korisnici po grupi',
+ 'select-category' => 'Odaberite kategoriju u nastavku',
+ 'site-stats' => 'Statistika web-lokacije',
+ 'stats' => 'Statistike',
+ 'stats-format' => 'Sve statistike prikazane u Top 100 formatu',
+ 'top-bankers' => 'Najbolji bankari',
+ 'top-bountied' => 'Vrhunski',
+ 'top-completed' => 'Na vrhu je dovršeno',
+ 'top-dead' => 'Top mrtvi',
+ 'top-downloaded' => 'Najnovije preuzete torente',
+ 'top-downloaders' => 'Najbolji preuzimatelji',
+ 'top-dying' => 'Top Dying',
+ 'top-leeched' => 'Vrhunski',
+ 'top-leechers' => 'Vrhunski Leechers',
+ 'top-seeded' => 'Najviše sjeme',
+ 'top-seeding' => 'Vrh sjetve',
+ 'top-seeders' => 'Vrhunske sijačice',
+ 'top-seedsize' => 'Top Seedsize',
+ 'top-seedtime' => 'Top Seedtime',
+ 'top-uploaders' => 'Najpopularniji korisnici',
+ 'total-download' => 'Ukupno preuzimanje',
+ 'total-torrents' => 'Ukupno torente',
+ 'total-traffic' => 'Ukupni promet',
+ 'total-upload' => 'Ukupni prijenos',
+ 'users-in-group' => 'Korisnici u grupi',
+ 'users-per-group' => 'Korisnici po grupi',
];
diff --git a/lang/hr/torrent.php b/lang/hr/torrent.php
index d682fb49a..5fab78256 100644
--- a/lang/hr/torrent.php
+++ b/lang/hr/torrent.php
@@ -12,197 +12,197 @@
*/
return [
- 'activity' => 'Aktivnost',
- 'age' => 'Dob',
- 'agent' => 'Agent',
- 'alive' => 'Živ',
- 'announce-url' => 'Najavite URL',
- 'announce-url-desc' => 'Molimo koristite gornji URL za objavljivanje prilikom izrade novog torrenta. Ako želite koristiti svoj torrent bez preuzimanja s web-mjesta, morate postaviti privatnu zastavu i izvor na: source',
- 'announce-url-desc-url' => 'Imate problema? Pogledajte naš Vodič OVDJE',
- 'announce-url-desc2' => 'TMDB i IMDB su potrebni za sve prijenose! Koristi se za hvatanje plakata / pozadina i ExtraInfo',
- 'approved' => 'Odobren',
- 'audio' => 'zvučni',
- 'bon-tipped' => 'Tvrtka BON',
- 'bookmark' => 'Označite',
- 'bookmarks' => 'Oznake',
- 'bump' => 'džomba',
- 'cant-upload' => 'Pogreška: Vaša prava prijenosa su onemogućena',
- 'cant-upload-desc' => 'Ako osjećate da je to u pogrešci, obratite se osoblju',
- 'cards' => 'Kartice',
- 'cards-view' => 'Pregled kartica s popisa',
- 'categories' => 'Kategorije',
- 'category' => 'Kategorija',
- 'client' => 'Klijent',
- 'commited' => 'počinio',
- 'completed' => 'dovršen',
- 'completed_at' => 'Dovršeno na',
- 'completed-not-seeding' => 'Dovršili ste ovaj download, ali ga više ne sijate',
- 'created_at' => 'Izrađeno na adresi',
- 'credited' => 'U korist',
- 'current' => 'Trenutno',
- 'current-filters' => 'Trenutni filtri',
- 'currently-leeching' => 'Trenutno Leeching',
- 'currently-seeding' => 'Trenutno seje',
- 'dead-torrent' => 'Mrtav Torrent',
- 'dead-torrents' => 'Mrtvi torenti',
- 'delete-bookmark' => 'Izbriši ovu oznaku',
- 'description' => 'Opis',
- 'discounts' => 'Popusti',
- 'double-upload' => 'Dvostruko učitavanje',
- 'download-all' => 'Preuzmi sve',
- 'download-check' => 'Provjera preuzimanja',
- 'downloaded' => 'preuzete',
- 'dying-torrent' => 'Umiranje Torrent',
- 'dying-torrents' => 'Umiranje torente',
- 'encode-settings' => 'Postavke kodiranja',
- 'estimated-ratio' => 'Procijenjeni omjer nakon preuzimanja',
- 'failed' => 'Neuspjeh',
- 'feature' => 'svojstvo',
- 'featured' => 'Istaknuti',
- 'featured-desc' => 'Istaknuti torrenti su 100% besplatno i Dvostruko učitavanje!',
- 'featured-until' => 'To je izdvojen Torrent do',
- 'file' => 'Datoteka',
- 'filters' => 'filteri',
- 'fl-tokens-left' => 'Imaš : preostali tokeni',
- 'freeleech' => 'Freeleech',
- 'freeleech-token' => 'Oznaka slobodnog govora',
- 'general' => 'General',
- 'genre' => 'Žanr',
- 'global-double-upload' => 'Globalno dvostruko učitavanje',
- 'global-freeleech' => 'Globalni slobodni govor',
- 'grant' => 'Grant',
- 'greater-than' => 'Više od',
- 'grouping' => 'Grupiranje',
- 'groupings' => 'grupiranje',
- 'grouping-categories' => 'Kategorije grupiranja',
+ 'activity' => 'Aktivnost',
+ 'age' => 'Dob',
+ 'agent' => 'Agent',
+ 'alive' => 'Živ',
+ 'announce-url' => 'Najavite URL',
+ 'announce-url-desc' => 'Molimo koristite gornji URL za objavljivanje prilikom izrade novog torrenta. Ako želite koristiti svoj torrent bez preuzimanja s web-mjesta, morate postaviti privatnu zastavu i izvor na: source',
+ 'announce-url-desc-url' => 'Imate problema? Pogledajte naš Vodič OVDJE',
+ 'announce-url-desc2' => 'TMDB i IMDB su potrebni za sve prijenose! Koristi se za hvatanje plakata / pozadina i ExtraInfo',
+ 'approved' => 'Odobren',
+ 'audio' => 'zvučni',
+ 'bon-tipped' => 'Tvrtka BON',
+ 'bookmark' => 'Označite',
+ 'bookmarks' => 'Oznake',
+ 'bump' => 'džomba',
+ 'cant-upload' => 'Pogreška: Vaša prava prijenosa su onemogućena',
+ 'cant-upload-desc' => 'Ako osjećate da je to u pogrešci, obratite se osoblju',
+ 'cards' => 'Kartice',
+ 'cards-view' => 'Pregled kartica s popisa',
+ 'categories' => 'Kategorije',
+ 'category' => 'Kategorija',
+ 'client' => 'Klijent',
+ 'commited' => 'počinio',
+ 'completed' => 'dovršen',
+ 'completed_at' => 'Dovršeno na',
+ 'completed-not-seeding' => 'Dovršili ste ovaj download, ali ga više ne sijate',
+ 'created_at' => 'Izrađeno na adresi',
+ 'credited' => 'U korist',
+ 'current' => 'Trenutno',
+ 'current-filters' => 'Trenutni filtri',
+ 'currently-leeching' => 'Trenutno Leeching',
+ 'currently-seeding' => 'Trenutno seje',
+ 'dead-torrent' => 'Mrtav Torrent',
+ 'dead-torrents' => 'Mrtvi torenti',
+ 'delete-bookmark' => 'Izbriši ovu oznaku',
+ 'description' => 'Opis',
+ 'discounts' => 'Popusti',
+ 'double-upload' => 'Dvostruko učitavanje',
+ 'download-all' => 'Preuzmi sve',
+ 'download-check' => 'Provjera preuzimanja',
+ 'downloaded' => 'preuzete',
+ 'dying-torrent' => 'Umiranje Torrent',
+ 'dying-torrents' => 'Umiranje torente',
+ 'encode-settings' => 'Postavke kodiranja',
+ 'estimated-ratio' => 'Procijenjeni omjer nakon preuzimanja',
+ 'failed' => 'Neuspjeh',
+ 'feature' => 'svojstvo',
+ 'featured' => 'Istaknuti',
+ 'featured-desc' => 'Istaknuti torrenti su 100% besplatno i Dvostruko učitavanje!',
+ 'featured-until' => 'To je izdvojen Torrent do',
+ 'file' => 'Datoteka',
+ 'filters' => 'filteri',
+ 'fl-tokens-left' => 'Imaš : preostali tokeni',
+ 'freeleech' => 'Freeleech',
+ 'freeleech-token' => 'Oznaka slobodnog govora',
+ 'general' => 'General',
+ 'genre' => 'Žanr',
+ 'global-double-upload' => 'Globalno dvostruko učitavanje',
+ 'global-freeleech' => 'Globalni slobodni govor',
+ 'grant' => 'Grant',
+ 'greater-than' => 'Više od',
+ 'grouping' => 'Grupiranje',
+ 'groupings' => 'grupiranje',
+ 'grouping-categories' => 'Kategorije grupiranja',
'grouping-categories-desc' => 'Koju kategoriju želite grupirati?',
- 'grouping-results' => 'Rezultati grupiranja',
- 'groupings-view' => 'Prikaz grupiranja',
- 'have-completed' => 'dovršen',
- 'have-downloaded' => 'preuzete',
- 'have-not-completed' => 'Nije dovršeno',
- 'have-not-downloaded' => 'Nije preuzeto',
- 'health' => 'Zdravlje',
- 'history' => 'Povijest',
- 'hitrun' => 'H & R?',
- 'hit-and-runs' => 'Hit i trčanje se računa',
- 'immune' => 'Imun?',
- 'info' => 'Informacije',
- 'internal' => 'interni',
- 'internal-release' => 'Unutarnje oslobađanje',
- 'last-seed-activity' => 'Posljednja aktivnost sjemena',
- 'last-seeder' => 'Vi ste posljednji preostali sjekač! (preuzeto je najmanje 3 puta)',
- 'last-update' => 'Zadnje ažuriranje',
- 'leave-tip' => 'Ostavite savjet',
- 'leecher' => 'leecher',
- 'leechers' => 'Leechers',
- 'leeching' => 'ispiranje',
- 'left' => 'Lijevo',
- 'legendary-seeder' => 'Legendarna sejalica',
- 'legendary-torrent' => 'Legendarni torrent',
- 'list' => 'Popis',
- 'me' => 'Mi',
- 'media-info' => 'MediaInfo',
- 'media-info-parser' => 'MediaInfo Parser',
- 'media-info-paste' => 'Ovdje zalijepite MediaInfo dump',
- 'meta-desc' => 'Preuzimanje: naziv maksimalne brzine',
- 'moderation' => 'Umjerenost',
- 'movies' => 'Filmovi',
- 'mvp' => 'MVP',
- 'my-active-torrents' => 'Moji aktivni tokovi',
- 'name' => 'Ime',
- 'no-bookmarks' => 'Nema pronađenih oznaka.',
- 'no-discounts' => 'Trenutno nema popusta',
- 'no-meta' => 'Nisu pronađeni metapodaci',
- 'no-privileges' => 'Ne možete preuzeti ovu datoteku - provjerite u nastavku za više informacija',
- 'no-privileges-desc' => 'Riješite neuspješne rezultate iznad za prikaz gumba za preuzimanje',
- 'not-completed' => 'Pokrenuo je preuzimanje, ali nikada nije dovršen',
- 'not-downloaded' => 'Nije preuzeto',
- 'old-torrent' => 'Stari bujica',
- 'optional' => 'neobavezan',
- 'original-output' => 'Prikaži / Sakrij izvorni izlaz',
- 'participant' => 'učesnik',
- 'passed' => 'Prošao',
- 'peers' => 'Kolega',
- 'pending' => 'U tijeku',
- 'personal-freeleech' => 'Osobni slobodni govor',
- 'poster' => 'Poster',
- 'poster-view' => 'Prikaz postera',
- 'posters' => 'Plakati',
- 'prewarn' => 'Prewarned?',
- 'progress' => 'Napredak',
- 'quick-comment' => 'Brzi komentar',
- 'quick-tip' => 'Brzi iznos za savjet',
- 'rated' => 'Ocijenjen',
- 'rating' => 'Ocjena',
- 'ready' => 'Ova je datoteka spremna za preuzimanje',
- 'rejected' => 'odbijen',
- 'released' => 'oslobođen',
- 'remaining' => 'ostali',
- 'request-reseed' => 'Zahtjev Reseed',
- 'requires-reseed' => 'Zahtijeva Reseed',
- 'resurrections' => 'uskrsnuća',
- 'revoke' => 'Opozvati',
- 'rss' => 'RSS',
- 'runtime' => 'dužina trajanja',
- 'satisfied_in' => 'Zadovoljan',
- 'say-thanks' => 'Ne zaboravite reći hvala i sjeme koliko god možete',
- 'sd-content' => 'Sadržaj SD-a',
- 'search' => 'traži',
- 'seed-time' => 'Vrijeme sjemena',
- 'seeder' => 'Sejačica',
- 'seeders' => 'Sijačice',
- 'seeding' => 'Sjetva',
- 'seedsize' => 'Seedsize',
- 'seedtime' => 'sjetva',
- 'short-completed' => 'C',
- 'short-leechs' => 'L',
- 'short-seeds' => 'S',
- 'show-files' => 'Prikaži datoteke',
- 'similar' => 'Slični torenti',
- 'size' => 'Veličina',
- 'special' => 'poseban',
- 'special-freeleech' => 'Poseban slobodni govor',
- 'started' => 'počeo',
- 'status' => 'Status',
- 'statistics' => 'statistika',
- 'stats' => 'Statistike',
- 'sticky' => 'Ljepljiv',
- 'stream-optimized' => 'Stream optimiziran',
- 'subtitle' => 'Titl',
- 'team-player' => 'Timski igrač',
- 'thank' => 'Zahvaliti',
- 'thanked' => 'Zahvalio',
- 'thanks' => 'Hvala',
- 'thanks-given' => 'Hvala vam',
- 'times' => 'puta',
- 'tip-jar' => 'Savjet za posudu',
- 'title' => 'Titula',
- 'titles' => 'naslovi',
- 'top-completed' => 'Vrh je dovršen',
- 'top-dead' => 'Vrh mrtvih',
- 'top-dying' => 'Najviše umire',
- 'top-leeched' => 'Vrhunac',
- 'top-seeded' => 'Vrh sjemena',
- 'torrent' => 'Bujica',
- 'torrent-request' => 'Zahtjev za usporavanje',
- 'torrent-tips' => 'Ukupno : ukupni BON je poslan korisniku koji je korisnik: korisnik je od vas',
- 'torrent-tips-desc' => 'To će se oduzeti od vaših dostupnih bonus bodova',
- 'torrents' => 'torrents',
- 'trailer' => 'Pogledajte prikolicu',
- 'type' => 'Tip',
- 'types' => 'vrste',
- 'unbookmark' => 'Unbookmark',
- 'unsatisfieds' => 'Unsatisfieds',
- 'unsticky' => 'Unsticky',
- 'updated' => 'obnovljeno',
- 'updated_at' => 'Ažurirano u',
- 'uploaded' => 'Uploaded',
- 'uploaded-by' => 'Poslao By',
- 'uploader' => 'Pošiljatelj',
- 'use-fl-token' => 'Upotrijebite oznaku slobodnog govora',
- 'video' => 'Video',
- 'view-more' => 'Vidi više',
- 'view-trailer' => 'Pogledajte prikolicu',
- 'votes' => 'glasova',
+ 'grouping-results' => 'Rezultati grupiranja',
+ 'groupings-view' => 'Prikaz grupiranja',
+ 'have-completed' => 'dovršen',
+ 'have-downloaded' => 'preuzete',
+ 'have-not-completed' => 'Nije dovršeno',
+ 'have-not-downloaded' => 'Nije preuzeto',
+ 'health' => 'Zdravlje',
+ 'history' => 'Povijest',
+ 'hitrun' => 'H & R?',
+ 'hit-and-runs' => 'Hit i trčanje se računa',
+ 'immune' => 'Imun?',
+ 'info' => 'Informacije',
+ 'internal' => 'interni',
+ 'internal-release' => 'Unutarnje oslobađanje',
+ 'last-seed-activity' => 'Posljednja aktivnost sjemena',
+ 'last-seeder' => 'Vi ste posljednji preostali sjekač! (preuzeto je najmanje 3 puta)',
+ 'last-update' => 'Zadnje ažuriranje',
+ 'leave-tip' => 'Ostavite savjet',
+ 'leecher' => 'leecher',
+ 'leechers' => 'Leechers',
+ 'leeching' => 'ispiranje',
+ 'left' => 'Lijevo',
+ 'legendary-seeder' => 'Legendarna sejalica',
+ 'legendary-torrent' => 'Legendarni torrent',
+ 'list' => 'Popis',
+ 'me' => 'Mi',
+ 'media-info' => 'MediaInfo',
+ 'media-info-parser' => 'MediaInfo Parser',
+ 'media-info-paste' => 'Ovdje zalijepite MediaInfo dump',
+ 'meta-desc' => 'Preuzimanje: naziv maksimalne brzine',
+ 'moderation' => 'Umjerenost',
+ 'movies' => 'Filmovi',
+ 'mvp' => 'MVP',
+ 'my-active-torrents' => 'Moji aktivni tokovi',
+ 'name' => 'Ime',
+ 'no-bookmarks' => 'Nema pronađenih oznaka.',
+ 'no-discounts' => 'Trenutno nema popusta',
+ 'no-meta' => 'Nisu pronađeni metapodaci',
+ 'no-privileges' => 'Ne možete preuzeti ovu datoteku - provjerite u nastavku za više informacija',
+ 'no-privileges-desc' => 'Riješite neuspješne rezultate iznad za prikaz gumba za preuzimanje',
+ 'not-completed' => 'Pokrenuo je preuzimanje, ali nikada nije dovršen',
+ 'not-downloaded' => 'Nije preuzeto',
+ 'old-torrent' => 'Stari bujica',
+ 'optional' => 'neobavezan',
+ 'original-output' => 'Prikaži / Sakrij izvorni izlaz',
+ 'participant' => 'učesnik',
+ 'passed' => 'Prošao',
+ 'peers' => 'Kolega',
+ 'pending' => 'U tijeku',
+ 'personal-freeleech' => 'Osobni slobodni govor',
+ 'poster' => 'Poster',
+ 'poster-view' => 'Prikaz postera',
+ 'posters' => 'Plakati',
+ 'prewarn' => 'Prewarned?',
+ 'progress' => 'Napredak',
+ 'quick-comment' => 'Brzi komentar',
+ 'quick-tip' => 'Brzi iznos za savjet',
+ 'rated' => 'Ocijenjen',
+ 'rating' => 'Ocjena',
+ 'ready' => 'Ova je datoteka spremna za preuzimanje',
+ 'rejected' => 'odbijen',
+ 'released' => 'oslobođen',
+ 'remaining' => 'ostali',
+ 'request-reseed' => 'Zahtjev Reseed',
+ 'requires-reseed' => 'Zahtijeva Reseed',
+ 'resurrections' => 'uskrsnuća',
+ 'revoke' => 'Opozvati',
+ 'rss' => 'RSS',
+ 'runtime' => 'dužina trajanja',
+ 'satisfied_in' => 'Zadovoljan',
+ 'say-thanks' => 'Ne zaboravite reći hvala i sjeme koliko god možete',
+ 'sd-content' => 'Sadržaj SD-a',
+ 'search' => 'traži',
+ 'seed-time' => 'Vrijeme sjemena',
+ 'seeder' => 'Sejačica',
+ 'seeders' => 'Sijačice',
+ 'seeding' => 'Sjetva',
+ 'seedsize' => 'Seedsize',
+ 'seedtime' => 'sjetva',
+ 'short-completed' => 'C',
+ 'short-leechs' => 'L',
+ 'short-seeds' => 'S',
+ 'show-files' => 'Prikaži datoteke',
+ 'similar' => 'Slični torenti',
+ 'size' => 'Veličina',
+ 'special' => 'poseban',
+ 'special-freeleech' => 'Poseban slobodni govor',
+ 'started' => 'počeo',
+ 'status' => 'Status',
+ 'statistics' => 'statistika',
+ 'stats' => 'Statistike',
+ 'sticky' => 'Ljepljiv',
+ 'stream-optimized' => 'Stream optimiziran',
+ 'subtitle' => 'Titl',
+ 'team-player' => 'Timski igrač',
+ 'thank' => 'Zahvaliti',
+ 'thanked' => 'Zahvalio',
+ 'thanks' => 'Hvala',
+ 'thanks-given' => 'Hvala vam',
+ 'times' => 'puta',
+ 'tip-jar' => 'Savjet za posudu',
+ 'title' => 'Titula',
+ 'titles' => 'naslovi',
+ 'top-completed' => 'Vrh je dovršen',
+ 'top-dead' => 'Vrh mrtvih',
+ 'top-dying' => 'Najviše umire',
+ 'top-leeched' => 'Vrhunac',
+ 'top-seeded' => 'Vrh sjemena',
+ 'torrent' => 'Bujica',
+ 'torrent-request' => 'Zahtjev za usporavanje',
+ 'torrent-tips' => 'Ukupno : ukupni BON je poslan korisniku koji je korisnik: korisnik je od vas',
+ 'torrent-tips-desc' => 'To će se oduzeti od vaših dostupnih bonus bodova',
+ 'torrents' => 'torrents',
+ 'trailer' => 'Pogledajte prikolicu',
+ 'type' => 'Tip',
+ 'types' => 'vrste',
+ 'unbookmark' => 'Unbookmark',
+ 'unsatisfieds' => 'Unsatisfieds',
+ 'unsticky' => 'Unsticky',
+ 'updated' => 'obnovljeno',
+ 'updated_at' => 'Ažurirano u',
+ 'uploaded' => 'Uploaded',
+ 'uploaded-by' => 'Poslao By',
+ 'uploader' => 'Pošiljatelj',
+ 'use-fl-token' => 'Upotrijebite oznaku slobodnog govora',
+ 'video' => 'Video',
+ 'view-more' => 'Vidi više',
+ 'view-trailer' => 'Pogledajte prikolicu',
+ 'votes' => 'glasova',
];
diff --git a/lang/hr/user.php b/lang/hr/user.php
index 0314b8fe0..e82b8af6e 100644
--- a/lang/hr/user.php
+++ b/lang/hr/user.php
@@ -12,316 +12,316 @@
*/
return [
- 'about' => 'Oko',
- 'about-me' => 'O meni',
- 'accepted-at' => 'Prihvaćeno u',
- 'accepted-by' => 'Prihvaćen od',
- 'account-notification' => 'Postavke obavijesti o računu',
- 'account-notification-follow' => 'Primite obavijest kada korisnik prati vaš račun',
- 'account-notification-unfollow' => 'Primite obavijest kada korisnik prestane pratiti vaš račun',
- 'account-notification-help' => 'Kontrolirajte koje se obavijesti šalju u vezi vašeg računa. Te su postavke poništene ako ne dopustite nijednoj grupi da šalju obavijesti o vašem računu ili ako onemogućite obavijesti',
- 'account-settings' => 'Postavke računa',
- 'achievement-privacy' => 'Postavke postignuća',
- 'achievement-privacy-list' => 'Omogućite korisnicima pregled popisa vaših postignuća',
- 'achievement-help' => 'Kontrolirajte dijeljenje informacija o određenim postignućima s grupama kojima je dopušten pristup vašem profilu. Ove postavke su poništene ako ne dopustite nijednoj grupi da pristupi vašim postignućima ili ako idete Privatno',
- 'achievements' => 'Dostignuća',
- 'active' => 'Aktivan',
- 'active-table' => 'Moja aktivna tablica',
- 'active-torrents' => 'Aktivni torrenti',
- 'active-warning' => 'Aktivno upozorenje',
- 'active-warnings' => 'Aktivna upozorenja',
- 'add-seedbox' => 'Dodajte okvir za prikazivanje',
- 'all-torrents' => 'Svi torenti',
- 'article-comments' => 'Članak Napravljen Komentari',
- 'avatar' => 'Avatar',
- 'avg-seedtime' => 'Prosječno vrijeme sjeme',
- 'badges' => 'značke',
- 'ban' => 'Zabrani korisnika',
- 'ban-log' => 'Zapisnik o zabrani',
- 'become-hidden' => 'Postanite skriveni',
- 'become-visible' => 'Postanite vidljivi',
- 'bon' => 'BON',
- 'bon-notification' => 'Postavke obavijesti BON',
- 'bon-notification-gift' => 'Primite obavijest kada vam korisnik pokloni bon',
- 'bon-notification-help' => 'Kontrolirati koje se obavijesti šalju u vezi s BON transakcijama. Ove postavke su poništene ako ne dopuštate nijednoj grupi slanje obavijesti o BON-u ili ako onemogućite obavijesti',
- 'bookmarks' => 'Oznake',
- 'bounty-given' => 'Bounty Given',
- 'bounty-received' => 'Bounty Received',
- 'can-chat' => 'Može razgovarati',
- 'can-comment' => 'Može komentirati',
- 'can-download' => 'Može preuzeti',
- 'can-invite' => 'Može pozvati',
- 'can-request' => 'Može zatražiti',
- 'can-upload' => 'Može se učitati',
- 'certified-banker' => 'Certified Banker',
- 'certified-banker-desc' => 'Ima 50.000 ili više BON-a u banci',
- 'certified-downloader' => 'Certified Downloader',
- 'certified-downloader-desc' => 'Preuzeto 100 ili više torenta!',
- 'certified-seeder' => 'Certified Seeder',
- 'certified-seeder-desc' => 'Sjetva 150 ili više torente!',
- 'change-email' => 'Promijeni e-mail',
- 'change-email-help' => 'Nakon promjene svoje e-pošte morat ćete ponovno potvrditi svoj račun',
- 'change-password' => 'Promijeni zaporku',
- 'change-password-help' => 'Nakon promjene lozinke morat ćete se ponovno prijaviti',
- 'client-ip-address' => 'IP adresa klijenta',
- 'code' => 'Kodirati',
- 'comments' => 'komentari',
- 'created-on' => 'Izrađeno na',
- 'credited-download' => 'Zabilježeno preuzimanje',
- 'credited-upload' => 'Kreditirano učitavanje',
- 'current-password' => 'Trenutna lozinka',
- 'custom-title' => 'Prilagođeni naslov',
- 'delete' => 'Izbriši korisnika',
- 'disable-notifications' => 'Onemogući obavijesti',
- 'disclaimer' => 'odricanje',
- 'disclaimer-info' => 'Podrazumijevano ne prijavljujemo IP adrese korisnika kao većinu trackera. Dodavanjem vašeg IP-a za sjeme očekuje se da znate da su dolje navedeni IP-ovi pohranjeni u našoj bazi podataka ako ne izbrišete zapise.',
- 'disclaimer-info-bordered' => 'Dodani Seedbox IP-ovi će tada pokrenuti high-tag torrent tag na bujicama koje potječu od IP-ova navedenih u nastavku',
- 'download-bon' => 'Preuzimanje je uklonjeno iz BON trgovine',
- 'download-recorded' => 'Snimljeno preuzimanje',
- 'download-true' => 'True Download',
- 'downloads' => 'Preuzimanja',
- 'edit' => 'Uredi korisnika',
- 'edit-profile' => 'Uredi profil',
- 'enable-notifications' => 'Omogući obavijesti',
- 'expired' => 'Istekao',
- 'expires-on' => 'Ističe',
- 'extra' => 'Ekstra',
- 'filled-request' => 'Ispunjeni zahtjevi članova',
- 'follow' => 'slijediti',
- 'follower-privacy' => 'Postavke sljedbenika',
- 'follower-privacy-list' => 'Dopusti korisnicima pregled popisa sljedbenika',
- 'follower-help' => 'Kontrolirajte dijeljenje informacija povezanih s određenim sljedbenicima grupama kojima je dopušten pristup vašem profilu. Ove postavke su poništene ako ne dopustite nijednoj grupi da pristupe vašim sljedbenicima ili ako idete Privatno',
- 'followers' => 'sljedbenici',
- 'following-notification' => 'Slijedi Postavke obavijesti korisnika',
- 'following-notification-upload' => 'Primite obavijest kada korisnik koji slijedi prenosi torrent',
- 'following-notification-help' => 'Kontrolirajte koje se obavijesti šalju u svezi s postupcima korisničke web-lokacije. Te se postavke poništavaju ako ne dopustite nijednoj grupi da šalju obavijesti koje se odnose na sljedeće korisnike ili ako onemogućite obavijesti',
- 'formats-are-supported' => ': podržani su formati',
- 'forum-notification' => 'Postavke obavijesti foruma',
- 'forum-notification-topic' => 'Primite obavijest kada tema koju ste pokrenuli dobije novi post',
- 'forum-notification-help' => 'Kontrolirati koje se obavijesti šalju u vezi aktivnosti foruma. Ove postavke su poništene ako ne dopuštate nijednoj grupi slanje obavijesti o aktivnostima foruma ili ako onemogućite obavijesti',
- 'forum-privacy' => 'Postavke foruma',
- 'forum-privacy-post' => 'Dopusti korisnicima pregled popisa postova na forumu koje ste objavili',
- 'forum-privacy-topic' => 'Dopusti korisnicima pregled popisa tema na forumu koje ste pokrenuli',
- 'forum-help' => 'Kontrolirajte dijeljenje statističkih podataka vezanih uz forum i informacije s grupama kojima je dopušten pristup vašem profilu. Te su postavke poništene ako ne dopustite nijednoj grupi da pristupaju statistici i informacijama vezanim uz forum ili ako idete Privatno',
- 'forum-signature' => 'Potpis foruma',
- 'forums' => 'Forum',
- 'general' => 'General',
- 'general-settings' => 'Opće postavke',
- 'gift-given' => 'Darovana',
- 'gift-received' => 'Primljen dar',
- 'go-public' => 'Go Public',
- 'go-private' => 'Idi privatno',
- 'history' => 'Povijest',
- 'history-table' => 'Tablica moje povijesti',
- 'hit-n-runs' => 'Hit i trčanje',
- 'hit-n-runs-count' => 'Hit i pokretanje (sve vrijeme)',
- 'hit-n-runs-history' => 'Torrent Hit i pokreće povijest',
- 'image' => 'Slika',
- 'important' => 'Važno',
- 'important-info' => 'Važne informacije',
- 'information' => 'Informacija',
- 'invite-friend' => 'Pozovite prijatelja (e-pošta + obavezna poruka)',
- 'invite-tree' => 'Pozovi drvo',
- 'invites' => 'Pozivnice',
- 'invites-banned' => 'Pogreška: Vaša prava na poziv su onemogućena',
- 'invites-banned-desc' => 'Ako osjećate da je to u pogrešci, kontaktirajte osoblje!',
- 'invites-count' => 'Imate: brojite pozive žetona',
- 'invites-disabled' => 'Pažnja: Pozivi su onemogućeni zbog otvorene registracije!',
- 'invites-disabled-desc' => 'Molimo provjerite uskoro!',
- 'invites-rules' => '- Pozivajte samo osobe koje poznajete i kojima vjerujete.
- Vi ćete biti osobno odgovorni za one koje pozovete.
- Nemojte se pozivati, provjeravamo svakog pozvanog korisnika.
- Nemojte trgovati niti prodavati Invites.
- Ako je osoba koju ste pozvali uhvaćena u varanju, trgovanju ili prodaji / trgovanju, bit ćete upozoreni.
',
- 'invites-send' => 'Poziva Pošalji',
- 'last-login' => 'Zadnja prijava',
- 'locked' => 'Zaključan',
- 'locked-achievements' => 'Zaključana postignuća',
- 'member-since' => 'Član od',
- 'members-desc' => 'Popis korisnika registriranih na: naslov sa svim skupinama. Pronađite korisnika sada.',
- 'mention-notification' => '@ Postavke obavijesti upozorenja',
+ 'about' => 'Oko',
+ 'about-me' => 'O meni',
+ 'accepted-at' => 'Prihvaćeno u',
+ 'accepted-by' => 'Prihvaćen od',
+ 'account-notification' => 'Postavke obavijesti o računu',
+ 'account-notification-follow' => 'Primite obavijest kada korisnik prati vaš račun',
+ 'account-notification-unfollow' => 'Primite obavijest kada korisnik prestane pratiti vaš račun',
+ 'account-notification-help' => 'Kontrolirajte koje se obavijesti šalju u vezi vašeg računa. Te su postavke poništene ako ne dopustite nijednoj grupi da šalju obavijesti o vašem računu ili ako onemogućite obavijesti',
+ 'account-settings' => 'Postavke računa',
+ 'achievement-privacy' => 'Postavke postignuća',
+ 'achievement-privacy-list' => 'Omogućite korisnicima pregled popisa vaših postignuća',
+ 'achievement-help' => 'Kontrolirajte dijeljenje informacija o određenim postignućima s grupama kojima je dopušten pristup vašem profilu. Ove postavke su poništene ako ne dopustite nijednoj grupi da pristupi vašim postignućima ili ako idete Privatno',
+ 'achievements' => 'Dostignuća',
+ 'active' => 'Aktivan',
+ 'active-table' => 'Moja aktivna tablica',
+ 'active-torrents' => 'Aktivni torrenti',
+ 'active-warning' => 'Aktivno upozorenje',
+ 'active-warnings' => 'Aktivna upozorenja',
+ 'add-seedbox' => 'Dodajte okvir za prikazivanje',
+ 'all-torrents' => 'Svi torenti',
+ 'article-comments' => 'Članak Napravljen Komentari',
+ 'avatar' => 'Avatar',
+ 'avg-seedtime' => 'Prosječno vrijeme sjeme',
+ 'badges' => 'značke',
+ 'ban' => 'Zabrani korisnika',
+ 'ban-log' => 'Zapisnik o zabrani',
+ 'become-hidden' => 'Postanite skriveni',
+ 'become-visible' => 'Postanite vidljivi',
+ 'bon' => 'BON',
+ 'bon-notification' => 'Postavke obavijesti BON',
+ 'bon-notification-gift' => 'Primite obavijest kada vam korisnik pokloni bon',
+ 'bon-notification-help' => 'Kontrolirati koje se obavijesti šalju u vezi s BON transakcijama. Ove postavke su poništene ako ne dopuštate nijednoj grupi slanje obavijesti o BON-u ili ako onemogućite obavijesti',
+ 'bookmarks' => 'Oznake',
+ 'bounty-given' => 'Bounty Given',
+ 'bounty-received' => 'Bounty Received',
+ 'can-chat' => 'Može razgovarati',
+ 'can-comment' => 'Može komentirati',
+ 'can-download' => 'Može preuzeti',
+ 'can-invite' => 'Može pozvati',
+ 'can-request' => 'Može zatražiti',
+ 'can-upload' => 'Može se učitati',
+ 'certified-banker' => 'Certified Banker',
+ 'certified-banker-desc' => 'Ima 50.000 ili više BON-a u banci',
+ 'certified-downloader' => 'Certified Downloader',
+ 'certified-downloader-desc' => 'Preuzeto 100 ili više torenta!',
+ 'certified-seeder' => 'Certified Seeder',
+ 'certified-seeder-desc' => 'Sjetva 150 ili više torente!',
+ 'change-email' => 'Promijeni e-mail',
+ 'change-email-help' => 'Nakon promjene svoje e-pošte morat ćete ponovno potvrditi svoj račun',
+ 'change-password' => 'Promijeni zaporku',
+ 'change-password-help' => 'Nakon promjene lozinke morat ćete se ponovno prijaviti',
+ 'client-ip-address' => 'IP adresa klijenta',
+ 'code' => 'Kodirati',
+ 'comments' => 'komentari',
+ 'created-on' => 'Izrađeno na',
+ 'credited-download' => 'Zabilježeno preuzimanje',
+ 'credited-upload' => 'Kreditirano učitavanje',
+ 'current-password' => 'Trenutna lozinka',
+ 'custom-title' => 'Prilagođeni naslov',
+ 'delete' => 'Izbriši korisnika',
+ 'disable-notifications' => 'Onemogući obavijesti',
+ 'disclaimer' => 'odricanje',
+ 'disclaimer-info' => 'Podrazumijevano ne prijavljujemo IP adrese korisnika kao većinu trackera. Dodavanjem vašeg IP-a za sjeme očekuje se da znate da su dolje navedeni IP-ovi pohranjeni u našoj bazi podataka ako ne izbrišete zapise.',
+ 'disclaimer-info-bordered' => 'Dodani Seedbox IP-ovi će tada pokrenuti high-tag torrent tag na bujicama koje potječu od IP-ova navedenih u nastavku',
+ 'download-bon' => 'Preuzimanje je uklonjeno iz BON trgovine',
+ 'download-recorded' => 'Snimljeno preuzimanje',
+ 'download-true' => 'True Download',
+ 'downloads' => 'Preuzimanja',
+ 'edit' => 'Uredi korisnika',
+ 'edit-profile' => 'Uredi profil',
+ 'enable-notifications' => 'Omogući obavijesti',
+ 'expired' => 'Istekao',
+ 'expires-on' => 'Ističe',
+ 'extra' => 'Ekstra',
+ 'filled-request' => 'Ispunjeni zahtjevi članova',
+ 'follow' => 'slijediti',
+ 'follower-privacy' => 'Postavke sljedbenika',
+ 'follower-privacy-list' => 'Dopusti korisnicima pregled popisa sljedbenika',
+ 'follower-help' => 'Kontrolirajte dijeljenje informacija povezanih s određenim sljedbenicima grupama kojima je dopušten pristup vašem profilu. Ove postavke su poništene ako ne dopustite nijednoj grupi da pristupe vašim sljedbenicima ili ako idete Privatno',
+ 'followers' => 'sljedbenici',
+ 'following-notification' => 'Slijedi Postavke obavijesti korisnika',
+ 'following-notification-upload' => 'Primite obavijest kada korisnik koji slijedi prenosi torrent',
+ 'following-notification-help' => 'Kontrolirajte koje se obavijesti šalju u svezi s postupcima korisničke web-lokacije. Te se postavke poništavaju ako ne dopustite nijednoj grupi da šalju obavijesti koje se odnose na sljedeće korisnike ili ako onemogućite obavijesti',
+ 'formats-are-supported' => ': podržani su formati',
+ 'forum-notification' => 'Postavke obavijesti foruma',
+ 'forum-notification-topic' => 'Primite obavijest kada tema koju ste pokrenuli dobije novi post',
+ 'forum-notification-help' => 'Kontrolirati koje se obavijesti šalju u vezi aktivnosti foruma. Ove postavke su poništene ako ne dopuštate nijednoj grupi slanje obavijesti o aktivnostima foruma ili ako onemogućite obavijesti',
+ 'forum-privacy' => 'Postavke foruma',
+ 'forum-privacy-post' => 'Dopusti korisnicima pregled popisa postova na forumu koje ste objavili',
+ 'forum-privacy-topic' => 'Dopusti korisnicima pregled popisa tema na forumu koje ste pokrenuli',
+ 'forum-help' => 'Kontrolirajte dijeljenje statističkih podataka vezanih uz forum i informacije s grupama kojima je dopušten pristup vašem profilu. Te su postavke poništene ako ne dopustite nijednoj grupi da pristupaju statistici i informacijama vezanim uz forum ili ako idete Privatno',
+ 'forum-signature' => 'Potpis foruma',
+ 'forums' => 'Forum',
+ 'general' => 'General',
+ 'general-settings' => 'Opće postavke',
+ 'gift-given' => 'Darovana',
+ 'gift-received' => 'Primljen dar',
+ 'go-public' => 'Go Public',
+ 'go-private' => 'Idi privatno',
+ 'history' => 'Povijest',
+ 'history-table' => 'Tablica moje povijesti',
+ 'hit-n-runs' => 'Hit i trčanje',
+ 'hit-n-runs-count' => 'Hit i pokretanje (sve vrijeme)',
+ 'hit-n-runs-history' => 'Torrent Hit i pokreće povijest',
+ 'image' => 'Slika',
+ 'important' => 'Važno',
+ 'important-info' => 'Važne informacije',
+ 'information' => 'Informacija',
+ 'invite-friend' => 'Pozovite prijatelja (e-pošta + obavezna poruka)',
+ 'invite-tree' => 'Pozovi drvo',
+ 'invites' => 'Pozivnice',
+ 'invites-banned' => 'Pogreška: Vaša prava na poziv su onemogućena',
+ 'invites-banned-desc' => 'Ako osjećate da je to u pogrešci, kontaktirajte osoblje!',
+ 'invites-count' => 'Imate: brojite pozive žetona',
+ 'invites-disabled' => 'Pažnja: Pozivi su onemogućeni zbog otvorene registracije!',
+ 'invites-disabled-desc' => 'Molimo provjerite uskoro!',
+ 'invites-rules' => '- Pozivajte samo osobe koje poznajete i kojima vjerujete.
- Vi ćete biti osobno odgovorni za one koje pozovete.
- Nemojte se pozivati, provjeravamo svakog pozvanog korisnika.
- Nemojte trgovati niti prodavati Invites.
- Ako je osoba koju ste pozvali uhvaćena u varanju, trgovanju ili prodaji / trgovanju, bit ćete upozoreni.
',
+ 'invites-send' => 'Poziva Pošalji',
+ 'last-login' => 'Zadnja prijava',
+ 'locked' => 'Zaključan',
+ 'locked-achievements' => 'Zaključana postignuća',
+ 'member-since' => 'Član od',
+ 'members-desc' => 'Popis korisnika registriranih na: naslov sa svim skupinama. Pronađite korisnika sada.',
+ 'mention-notification' => '@ Postavke obavijesti upozorenja',
'mention-notification-article-comment' => 'Primite obavijest kada ste u komentaru članka',
'mention-notification-torrent-comment' => 'Primite obavijest kad ste u komentarima o torrentu',
'mention-notification-request-comment' => 'Primite obavijest kada ste u komentarima sa zahtjevom',
- 'mention-notification-forum-post' => 'Primite obavijest kada se @odgovorite na postu na forumu',
- 'mention-notification-help' => 'Kontrolirajte koje se obavijesti šalju kada vam korisnik @mentions Ove postavke su poništene ako ne dopustite nijednoj grupi da šalju obavijesti ako vas korisnik @supituje ili ako onemogućite obavijesti',
- 'moderated-by' => 'Moderator: mod on',
- 'my-bonus-points' => 'Moji bonus bodovi',
- 'my-bookmarks' => 'Moje oznake',
- 'my-fl-tokens' => 'Moji FL žetoni',
- 'my-general-settings' => 'Moje opće postavke',
- 'my-notification' => 'Moja obavijest',
- 'my-notification-settings' => 'Moje postavke obavijesti',
- 'my-privacy' => 'Moja privatnost',
- 'my-privacy-settings' => 'Moje postavke privatnosti',
- 'my-profile' => 'Moj profil',
- 'my-requested' => 'Moj zahtjev',
- 'my-security' => 'Moja sigurnost',
- 'my-security-settings' => 'Moje sigurnosne postavke',
- 'my-seedboxes' => 'Moji Seedboxes',
- 'my-settings' => 'Moje postavke',
- 'my-wishlist' => 'moja lista želja',
- 'no-logs' => 'Nema prijavljenih logova u bazi podataka za ovog korisnika!',
- 'no-seedboxes' => 'Nema kutija za sjeme',
- 'not-authorized' => 'Nemate ovlaštenje za pregled ove stranice. Ovaj član voli biti skriven poput ninje!',
- 'note' => 'Bilješka',
- 'notification' => 'Obavijest',
- 'notification-settings' => 'Postavke obavijesti',
- 'notification-from-account' => 'Primajte obavijesti o računu od',
- 'notification-from-account-help' => 'Obavijesti o računu primat ćete samo od sustava, osoblja i sljedećih grupa. Ove postavke su poništene ako onemogućite obavijesti',
- 'notification-from-bon' => 'Primajte BON obavijesti od korisnika',
- 'notification-from-bon-help' => 'BON obavijesti ćete primati samo od sustava, osoblja i sljedećih grupa. Ove postavke su poništene ako onemogućite obavijesti',
- 'notification-from-following' => 'Primanje obavijesti korisnika',
- 'notification-from-following-help' => 'Primljene obavijesti od korisnika primat ćete samo od sljedećih grupa. Ove postavke su poništene ako onemogućite obavijesti',
- 'notification-from-forum' => 'Primajte obavijesti na forumu od',
- 'notification-from-forum-help' => 'Obavijesti o forumu dobit ćete samo od sustava, osoblja i sljedećih grupa. Ove postavke su poništene ako onemogućite obavijesti',
- 'notification-from-subscription' => 'Primajte obavijesti o pretplati od',
- 'notification-from-subscription-help' => 'Obavijesti o forumu dobit ćete samo od sustava, osoblja i sljedećih grupa. Ove postavke su poništene ako onemogućite obavijesti',
- 'notification-from-torrent' => 'Primajte obavijesti s popisa od',
- 'notification-from-torrent-help' => 'Vi ćete primati samo obavijesti iz sustava, osoblje i sljedeće grupe. Ove postavke su poništene ako onemogućite obavijesti',
- 'notification-from-mention' => 'Primajte obavijesti o upozorenjima od korisnika',
- 'notification-from-mention-help' => 'Primit ćete samo @mention obavijesti od sustava, osoblja i sljedećih grupa. Ove postavke su poništene ako onemogućite obavijesti',
- 'notification-from-request' => 'Primajte obavijesti o zahtjevima od',
- 'notification-from-request-help' => 'Obavijesti o zahtjevima primat ćete samo od sustava, osoblja i sljedećih grupa. Ove postavke su poništene ako onemogućite obavijesti',
- 'notifications' => 'Obavijesti',
- 'offline' => 'Korisnik je izvan mreže!',
- 'online' => 'Korisnik je online!',
- 'options' => 'Opcije',
- 'other-help' => 'Kontrolirajte dijeljenje drugih statistika i informacija s grupama kojima je dopušten pristup vašem profilu. Ove postavke su poništene ako ne dopustite nijednoj grupi da pristupe vašim drugim statistikama i informacijama ili ako idete Privatno',
- 'other-privacy' => 'Ostale postavke',
- 'other-privacy-online' => 'Dopustite korisnicima da vas vide u blokiranju korisnika na mreži',
- 'passkey' => 'PID',
- 'passkey-warning' => 'PID je kao vaša zaporka, morate ga čuvati!',
- 'pending-achievements' => 'Očekivana postignuća',
- 'per-torrent' => 'Per Torrent',
- 'posts' => 'Postovi',
- 'posts-posted' => 'Postovi na forumu',
- 'privacy' => 'Privatnost',
- 'privacy-settings' => 'Postavke privatnosti',
- 'private-info' => 'Privatne informacije',
- 'private-forum-profile' => 'Pažnja: Ovo Članovi Tema & Povijest posta je postavljen na PRIVATE!',
- 'private-profile' => 'Pažnja: ovaj profil je postavljen na PRIVATE!',
- 'profile' => 'Profil',
- 'profile-desc' => 'Korisnik: korisnički profil registriran na: naslov',
- 'profile-privacy' => 'Postavke profila',
- 'profile-privacy-torrent-count' => 'Podijelite svoj ukupni broj preuzimanja, prijenosa, sjemena i pijavica',
- 'profile-privacy-torrent-ratio' => 'Podijelite svoje ukupne podatke za prijenos / preuzimanje zajedno sa zabilježenim omjerom',
- 'profile-privacy-torrent-seed' => 'Podijelite svoje ukupno vrijeme sjetve i prosjek',
- 'profile-privacy-title' => 'Podijelite svoje osobne podatke o naslovu',
- 'profile-privacy-about' => 'Podijelite svoje osobne informacije o meni',
- 'profile-privacy-bon-extra' => 'Podijelite svoju BON statistiku',
- 'profile-privacy-comment-extra' => 'Podijelite statistiku komentara',
- 'profile-privacy-forum-extra' => 'Podijelite statistiku foruma',
- 'profile-privacy-request-extra' => 'Podijelite statistiku zahtjeva',
- 'profile-privacy-torrent-extra' => 'Podijelite svoje statistike o torrentima',
- 'profile-privacy-badge' => 'Podijelite svoje zarađene značke',
- 'profile-privacy-achievement' => 'Podijelite svoja nedavna postignuća',
- 'profile-privacy-follower' => 'Dijelite svoje nedavne sljedbenike',
- 'profile-privacy-warning' => 'Podijelite svoja upozorenja za H&R',
- 'profile-privacy-help' => 'Kontrolirajte koje se statistike i dijelovi informacija pojavljuju na vašem profilu. Ove postavke su poništene ako ne dopustite bilo kojoj grupi da pristupi vašem profilu ili ako idete Privatno',
- 'public-info' => 'Javne informacije',
- 'recent-achievements' => 'Nedavna postignuća',
- 'recent-followers' => 'Nedavni sljedbenici',
- 'registration-date' => 'Datum registracije',
- 'report' => 'izvješće',
- 'request-help' => 'Kontrolirajte dijeljenje specifičnih statističkih podataka vezanih uz zahtjev i informacije s grupama kojima je dopušten pristup vašem profilu. Te su postavke poništene ako ne dopustite nijednoj grupi da pristupaju traženoj povezanim statistikama i informacijama ili ako idete Privatno',
- 'request' => 'Zahtjev',
- 'requested' => 'Traženi',
- 'requests' => 'Zahtjevi',
- 'request-comments' => 'Zahtjev za komentare',
- 'request-notification' => 'Zatražite postavke obavijesti',
- 'request-notification-bounty' => 'Primite obavijest kada zatraženi torrent dobije novu nagradu',
- 'request-notification-comment' => 'Primite obavijest kada traženi torrent dobije novi komentar',
- 'request-notification-fill' => 'Primite obavijest kada se popuni traženi torrent',
- 'request-notification-fill-approve' => 'Primite obavijest kada se odobri traženo popunjavanje torrenta',
- 'request-notification-fill-reject' => 'Primite obavijest kada se zahtjev za popunjavanje torrenta odbije',
- 'request-notification-claim' => 'Primite obavijest kada se zatraže traženi torrent',
- 'request-notification-unclaim' => 'Primite obavijest kada zatraženi torrent ne bude zatražen',
- 'request-notification-help' => 'Kontrolirati koje se obavijesti šalju o aktivnostima zahtjeva. Ove postavke su poništene ako ne dopustite nijednoj grupi da šalju obavijesti o aktivnostima zahtjeva ili ako onemogućite obavijesti',
- 'request-privacy' => 'Postavke zahtjeva',
- 'request-privacy-requested' => 'Dopusti korisnicima pregled popisa zahtjeva koje ste unijeli',
- 'reset-passkey' => 'Ponovo postavi ključ za prolaz (PID)',
- 'reset-passkey-help' => 'Morat ćete ponovno preuzeti / ponovno učitati sve svoje aktivne bujice, nakon resetiranja PID-a',
- 'reset-rss' => 'Poništi RSS ključ (RID)',
- 'reset-rss-help' => 'Morat ćete ponovno učitati sve aktivne RSS izvore nakon resetiranja RID-a',
- 'resurrections' => 'uskrsnuća',
- 'search' => 'Brzo pretraživanje po korisničkom imenu',
- 'security' => 'sigurnosti',
- 'security-settings' => 'Sigurnosne postavke',
- 'seedboxes' => 'Seedboxes',
- 'seeds' => 'sjemenke',
- 'send-invite' => 'Pošalji pozivnicu',
- 'sender' => 'pošiljalac',
- 'settings' => 'postavke',
- 'show-passkey' => 'Prikaži PID',
- 'staff-noted' => 'Račun s obilježenim osobljem',
- 'statistics' => 'statistika',
- 'subscription-notification' => 'Postavke obavijesti o pretplati',
- 'subscription-notification-forum' => 'Primite obavijest kada forum na koji ste pretplaćeni dobije novu temu',
- 'subscription-notification-topic' => 'Primite obavijest kada nova tema primi novu poruku',
- 'subscription-notification-help' => 'Kontrolirajte koje se obavijesti šalju u vezi vaših pretplata. Ove postavke su poništene ako ne dopustite nijednoj grupi da šalju obavijesti o vašim pretplatama ili ako onemogućite obavijesti',
- 'thanks-given' => 'Hvala',
- 'thanks-received' => 'Hvala primljeno',
- 'tips-given' => 'Dani savjeti',
- 'tips-received' => 'Primljeni savjeti',
- 'title' => 'Titula',
- 'top-bankers' => 'Najbolji bankari',
- 'top-downloaders-data' => 'Najbolji preuzimatelji (podaci)',
- 'top-leechers' => 'Vrhunski Leechers',
- 'top-leechers-count' => 'Vrhunski leechers (broj)',
- 'top-seeders' => 'Vrhunske sijačice',
- 'top-seeders-count' => 'Najviše sjetva (broj)',
- 'top-seeding-size' => 'Vrh sjetve (veličina)',
- 'top-seedtime' => 'Top Seedtime',
- 'top-uploaders-data' => 'Najveći korisnici (podaci)',
- 'top-uploaders-count' => 'Najveći korisnici (broj)',
- 'topics' => 'Teme',
- 'topics-started' => 'Započete teme na forumu',
- 'torrent-comments' => 'Komentari su napravljeni',
- 'torrent-help' => 'Kontrolirajte dijeljenje određenih statistika povezanih s bujicom i informacije s grupama kojima je dopušten pristup vašem profilu. Ove postavke su poništene ako ne dopustite bilo kojoj grupi da pristupaju statistikama i informacijama vezanim uz torrent, ili ako idete Privatno',
- 'torrent-notification' => 'Postavke obavijesti popisa',
- 'torrent-notification-comment' => 'Primite obavijest kada preneseni torrent dobije novi komentar',
- 'torrent-notification-thank' => 'Primite obavijest kada preneseni torrent dobije novu zahvalnicu',
- 'torrent-notification-tip' => 'Primite obavijest kada preneseni torrent dobije novi savjet',
- 'torrent-notification-help' => 'Kontrolirati koje se obavijesti šalju u vezi s aktivnostima torrenta. Ove postavke su poništene ako ne dopustite nijednoj grupi da šalju obavijesti o aktivnostima torrenta ili ako onemogućite obavijesti',
- 'torrent-privacy' => 'Postavke torenta',
- 'torrent-privacy-download' => 'Omogućite korisnicima pregled popisa bujica koje ste preuzeli',
- 'torrent-privacy-upload' => 'Dopusti korisnicima pregled popisa bujica koje ste prenijeli',
- 'torrent-privacy-peer' => 'Dopustite korisnicima da vas vide u tablici povijesti istovremenih bujica',
- 'torrents' => 'torrents',
- 'torrents-history' => 'Povijest torenta',
- 'total-download' => 'Ukupno preuzimanje',
- 'total-downloads' => 'Ukupno preuzimanja',
- 'total-leeching' => 'Ukupno Leeching',
- 'total-seeding' => 'Ukupno zasijavanje',
- 'total-seedtime' => 'Ukupno vrijeme sjeme',
- 'total-upload' => 'Ukupni prijenos',
- 'total-uploads' => 'Ukupno učitavanja',
- 'unban' => 'Ukloni korisnika',
- 'unfollow' => 'Prestani pratiti',
- 'unlocked' => 'Otključan',
- 'unlocked-achievements' => 'Otključana postignuća',
- 'unsatisfieds' => 'Unsatisfieds',
- 'upload-bon' => 'Dodaj u BON Store',
- 'upload-recorded' => 'Snimljeni prijenos',
- 'upload-true' => 'True Upload',
- 'uploads' => 'slike',
- 'uploads-table' => 'Učitana tablica',
- 'user' => 'Korisnik',
- 'user-id' => 'ID korisnika',
- 'username-seedbox' => 'Okvir za pretraživanje s korisničkim imenom',
- 'visible-to-achievement' => 'Postignuća vidljiva',
- 'visible-to-achievement-help' => 'Vaša dostignuća bit će vidljiva samo osoblju i sljedećim skupinama. Ove postavke su poništene ako idete Privatno',
- 'visible-to-follower' => 'Sljedbenici su vidljivi',
- 'visible-to-follower-help' => 'Vaši sljedbenici bit će vidljivi samo osoblju i sljedećim grupama. Ove postavke su poništene ako idete Privatno',
- 'visible-to-forum' => 'Informacije o forumu vidljive su za',
- 'visible-to-forum-help' => 'Informacije o forumu bit će vidljive samo osoblju i sljedećim skupinama. Ove postavke su poništene ako idete Privatno',
- 'visible-to-other' => 'Ostalo vidljivo za',
- 'visible-to-other-help' => 'Ostale informacije o vašem računu bit će vidljive samo osoblju i sljedećim skupinama. Ove postavke su poništene ako idete Privatno ili ako ste skriveni',
- 'visible-to-profile' => 'Profil je vidljiv za',
- 'visible-to-profile-help' => 'Vaš će profil biti vidljiv samo osoblju i sljedećim skupinama. Ove postavke su poništene ako idete Privatno',
- 'visible-to-request' => 'Zahtijevanje informacija vidljivo za',
- 'visible-to-request-help' => 'Informacije o vašem zahtjevu bit će vidljive samo osoblju i sljedećim skupinama. Ove postavke su poništene ako idete Privatno',
- 'visible-to-torrent' => 'Informacije o tokovima vidljive su za',
- 'visible-to-torrent-help' => 'Informacije o torrentu bit će vidljive samo osoblju i sljedećim skupinama. Ove postavke su poništene ako idete Privatno ili ako ste skriveni',
- 'warned-on' => 'Upozoreno',
- 'warning' => 'Upozorenje',
- 'warning-log' => 'Dnevnik upozorenja',
- 'wishlist' => 'Moj izbor',
+ 'mention-notification-forum-post' => 'Primite obavijest kada se @odgovorite na postu na forumu',
+ 'mention-notification-help' => 'Kontrolirajte koje se obavijesti šalju kada vam korisnik @mentions Ove postavke su poništene ako ne dopustite nijednoj grupi da šalju obavijesti ako vas korisnik @supituje ili ako onemogućite obavijesti',
+ 'moderated-by' => 'Moderator: mod on',
+ 'my-bonus-points' => 'Moji bonus bodovi',
+ 'my-bookmarks' => 'Moje oznake',
+ 'my-fl-tokens' => 'Moji FL žetoni',
+ 'my-general-settings' => 'Moje opće postavke',
+ 'my-notification' => 'Moja obavijest',
+ 'my-notification-settings' => 'Moje postavke obavijesti',
+ 'my-privacy' => 'Moja privatnost',
+ 'my-privacy-settings' => 'Moje postavke privatnosti',
+ 'my-profile' => 'Moj profil',
+ 'my-requested' => 'Moj zahtjev',
+ 'my-security' => 'Moja sigurnost',
+ 'my-security-settings' => 'Moje sigurnosne postavke',
+ 'my-seedboxes' => 'Moji Seedboxes',
+ 'my-settings' => 'Moje postavke',
+ 'my-wishlist' => 'moja lista želja',
+ 'no-logs' => 'Nema prijavljenih logova u bazi podataka za ovog korisnika!',
+ 'no-seedboxes' => 'Nema kutija za sjeme',
+ 'not-authorized' => 'Nemate ovlaštenje za pregled ove stranice. Ovaj član voli biti skriven poput ninje!',
+ 'note' => 'Bilješka',
+ 'notification' => 'Obavijest',
+ 'notification-settings' => 'Postavke obavijesti',
+ 'notification-from-account' => 'Primajte obavijesti o računu od',
+ 'notification-from-account-help' => 'Obavijesti o računu primat ćete samo od sustava, osoblja i sljedećih grupa. Ove postavke su poništene ako onemogućite obavijesti',
+ 'notification-from-bon' => 'Primajte BON obavijesti od korisnika',
+ 'notification-from-bon-help' => 'BON obavijesti ćete primati samo od sustava, osoblja i sljedećih grupa. Ove postavke su poništene ako onemogućite obavijesti',
+ 'notification-from-following' => 'Primanje obavijesti korisnika',
+ 'notification-from-following-help' => 'Primljene obavijesti od korisnika primat ćete samo od sljedećih grupa. Ove postavke su poništene ako onemogućite obavijesti',
+ 'notification-from-forum' => 'Primajte obavijesti na forumu od',
+ 'notification-from-forum-help' => 'Obavijesti o forumu dobit ćete samo od sustava, osoblja i sljedećih grupa. Ove postavke su poništene ako onemogućite obavijesti',
+ 'notification-from-subscription' => 'Primajte obavijesti o pretplati od',
+ 'notification-from-subscription-help' => 'Obavijesti o forumu dobit ćete samo od sustava, osoblja i sljedećih grupa. Ove postavke su poništene ako onemogućite obavijesti',
+ 'notification-from-torrent' => 'Primajte obavijesti s popisa od',
+ 'notification-from-torrent-help' => 'Vi ćete primati samo obavijesti iz sustava, osoblje i sljedeće grupe. Ove postavke su poništene ako onemogućite obavijesti',
+ 'notification-from-mention' => 'Primajte obavijesti o upozorenjima od korisnika',
+ 'notification-from-mention-help' => 'Primit ćete samo @mention obavijesti od sustava, osoblja i sljedećih grupa. Ove postavke su poništene ako onemogućite obavijesti',
+ 'notification-from-request' => 'Primajte obavijesti o zahtjevima od',
+ 'notification-from-request-help' => 'Obavijesti o zahtjevima primat ćete samo od sustava, osoblja i sljedećih grupa. Ove postavke su poništene ako onemogućite obavijesti',
+ 'notifications' => 'Obavijesti',
+ 'offline' => 'Korisnik je izvan mreže!',
+ 'online' => 'Korisnik je online!',
+ 'options' => 'Opcije',
+ 'other-help' => 'Kontrolirajte dijeljenje drugih statistika i informacija s grupama kojima je dopušten pristup vašem profilu. Ove postavke su poništene ako ne dopustite nijednoj grupi da pristupe vašim drugim statistikama i informacijama ili ako idete Privatno',
+ 'other-privacy' => 'Ostale postavke',
+ 'other-privacy-online' => 'Dopustite korisnicima da vas vide u blokiranju korisnika na mreži',
+ 'passkey' => 'PID',
+ 'passkey-warning' => 'PID je kao vaša zaporka, morate ga čuvati!',
+ 'pending-achievements' => 'Očekivana postignuća',
+ 'per-torrent' => 'Per Torrent',
+ 'posts' => 'Postovi',
+ 'posts-posted' => 'Postovi na forumu',
+ 'privacy' => 'Privatnost',
+ 'privacy-settings' => 'Postavke privatnosti',
+ 'private-info' => 'Privatne informacije',
+ 'private-forum-profile' => 'Pažnja: Ovo Članovi Tema & Povijest posta je postavljen na PRIVATE!',
+ 'private-profile' => 'Pažnja: ovaj profil je postavljen na PRIVATE!',
+ 'profile' => 'Profil',
+ 'profile-desc' => 'Korisnik: korisnički profil registriran na: naslov',
+ 'profile-privacy' => 'Postavke profila',
+ 'profile-privacy-torrent-count' => 'Podijelite svoj ukupni broj preuzimanja, prijenosa, sjemena i pijavica',
+ 'profile-privacy-torrent-ratio' => 'Podijelite svoje ukupne podatke za prijenos / preuzimanje zajedno sa zabilježenim omjerom',
+ 'profile-privacy-torrent-seed' => 'Podijelite svoje ukupno vrijeme sjetve i prosjek',
+ 'profile-privacy-title' => 'Podijelite svoje osobne podatke o naslovu',
+ 'profile-privacy-about' => 'Podijelite svoje osobne informacije o meni',
+ 'profile-privacy-bon-extra' => 'Podijelite svoju BON statistiku',
+ 'profile-privacy-comment-extra' => 'Podijelite statistiku komentara',
+ 'profile-privacy-forum-extra' => 'Podijelite statistiku foruma',
+ 'profile-privacy-request-extra' => 'Podijelite statistiku zahtjeva',
+ 'profile-privacy-torrent-extra' => 'Podijelite svoje statistike o torrentima',
+ 'profile-privacy-badge' => 'Podijelite svoje zarađene značke',
+ 'profile-privacy-achievement' => 'Podijelite svoja nedavna postignuća',
+ 'profile-privacy-follower' => 'Dijelite svoje nedavne sljedbenike',
+ 'profile-privacy-warning' => 'Podijelite svoja upozorenja za H&R',
+ 'profile-privacy-help' => 'Kontrolirajte koje se statistike i dijelovi informacija pojavljuju na vašem profilu. Ove postavke su poništene ako ne dopustite bilo kojoj grupi da pristupi vašem profilu ili ako idete Privatno',
+ 'public-info' => 'Javne informacije',
+ 'recent-achievements' => 'Nedavna postignuća',
+ 'recent-followers' => 'Nedavni sljedbenici',
+ 'registration-date' => 'Datum registracije',
+ 'report' => 'izvješće',
+ 'request-help' => 'Kontrolirajte dijeljenje specifičnih statističkih podataka vezanih uz zahtjev i informacije s grupama kojima je dopušten pristup vašem profilu. Te su postavke poništene ako ne dopustite nijednoj grupi da pristupaju traženoj povezanim statistikama i informacijama ili ako idete Privatno',
+ 'request' => 'Zahtjev',
+ 'requested' => 'Traženi',
+ 'requests' => 'Zahtjevi',
+ 'request-comments' => 'Zahtjev za komentare',
+ 'request-notification' => 'Zatražite postavke obavijesti',
+ 'request-notification-bounty' => 'Primite obavijest kada zatraženi torrent dobije novu nagradu',
+ 'request-notification-comment' => 'Primite obavijest kada traženi torrent dobije novi komentar',
+ 'request-notification-fill' => 'Primite obavijest kada se popuni traženi torrent',
+ 'request-notification-fill-approve' => 'Primite obavijest kada se odobri traženo popunjavanje torrenta',
+ 'request-notification-fill-reject' => 'Primite obavijest kada se zahtjev za popunjavanje torrenta odbije',
+ 'request-notification-claim' => 'Primite obavijest kada se zatraže traženi torrent',
+ 'request-notification-unclaim' => 'Primite obavijest kada zatraženi torrent ne bude zatražen',
+ 'request-notification-help' => 'Kontrolirati koje se obavijesti šalju o aktivnostima zahtjeva. Ove postavke su poništene ako ne dopustite nijednoj grupi da šalju obavijesti o aktivnostima zahtjeva ili ako onemogućite obavijesti',
+ 'request-privacy' => 'Postavke zahtjeva',
+ 'request-privacy-requested' => 'Dopusti korisnicima pregled popisa zahtjeva koje ste unijeli',
+ 'reset-passkey' => 'Ponovo postavi ključ za prolaz (PID)',
+ 'reset-passkey-help' => 'Morat ćete ponovno preuzeti / ponovno učitati sve svoje aktivne bujice, nakon resetiranja PID-a',
+ 'reset-rss' => 'Poništi RSS ključ (RID)',
+ 'reset-rss-help' => 'Morat ćete ponovno učitati sve aktivne RSS izvore nakon resetiranja RID-a',
+ 'resurrections' => 'uskrsnuća',
+ 'search' => 'Brzo pretraživanje po korisničkom imenu',
+ 'security' => 'sigurnosti',
+ 'security-settings' => 'Sigurnosne postavke',
+ 'seedboxes' => 'Seedboxes',
+ 'seeds' => 'sjemenke',
+ 'send-invite' => 'Pošalji pozivnicu',
+ 'sender' => 'pošiljalac',
+ 'settings' => 'postavke',
+ 'show-passkey' => 'Prikaži PID',
+ 'staff-noted' => 'Račun s obilježenim osobljem',
+ 'statistics' => 'statistika',
+ 'subscription-notification' => 'Postavke obavijesti o pretplati',
+ 'subscription-notification-forum' => 'Primite obavijest kada forum na koji ste pretplaćeni dobije novu temu',
+ 'subscription-notification-topic' => 'Primite obavijest kada nova tema primi novu poruku',
+ 'subscription-notification-help' => 'Kontrolirajte koje se obavijesti šalju u vezi vaših pretplata. Ove postavke su poništene ako ne dopustite nijednoj grupi da šalju obavijesti o vašim pretplatama ili ako onemogućite obavijesti',
+ 'thanks-given' => 'Hvala',
+ 'thanks-received' => 'Hvala primljeno',
+ 'tips-given' => 'Dani savjeti',
+ 'tips-received' => 'Primljeni savjeti',
+ 'title' => 'Titula',
+ 'top-bankers' => 'Najbolji bankari',
+ 'top-downloaders-data' => 'Najbolji preuzimatelji (podaci)',
+ 'top-leechers' => 'Vrhunski Leechers',
+ 'top-leechers-count' => 'Vrhunski leechers (broj)',
+ 'top-seeders' => 'Vrhunske sijačice',
+ 'top-seeders-count' => 'Najviše sjetva (broj)',
+ 'top-seeding-size' => 'Vrh sjetve (veličina)',
+ 'top-seedtime' => 'Top Seedtime',
+ 'top-uploaders-data' => 'Najveći korisnici (podaci)',
+ 'top-uploaders-count' => 'Najveći korisnici (broj)',
+ 'topics' => 'Teme',
+ 'topics-started' => 'Započete teme na forumu',
+ 'torrent-comments' => 'Komentari su napravljeni',
+ 'torrent-help' => 'Kontrolirajte dijeljenje određenih statistika povezanih s bujicom i informacije s grupama kojima je dopušten pristup vašem profilu. Ove postavke su poništene ako ne dopustite bilo kojoj grupi da pristupaju statistikama i informacijama vezanim uz torrent, ili ako idete Privatno',
+ 'torrent-notification' => 'Postavke obavijesti popisa',
+ 'torrent-notification-comment' => 'Primite obavijest kada preneseni torrent dobije novi komentar',
+ 'torrent-notification-thank' => 'Primite obavijest kada preneseni torrent dobije novu zahvalnicu',
+ 'torrent-notification-tip' => 'Primite obavijest kada preneseni torrent dobije novi savjet',
+ 'torrent-notification-help' => 'Kontrolirati koje se obavijesti šalju u vezi s aktivnostima torrenta. Ove postavke su poništene ako ne dopustite nijednoj grupi da šalju obavijesti o aktivnostima torrenta ili ako onemogućite obavijesti',
+ 'torrent-privacy' => 'Postavke torenta',
+ 'torrent-privacy-download' => 'Omogućite korisnicima pregled popisa bujica koje ste preuzeli',
+ 'torrent-privacy-upload' => 'Dopusti korisnicima pregled popisa bujica koje ste prenijeli',
+ 'torrent-privacy-peer' => 'Dopustite korisnicima da vas vide u tablici povijesti istovremenih bujica',
+ 'torrents' => 'torrents',
+ 'torrents-history' => 'Povijest torenta',
+ 'total-download' => 'Ukupno preuzimanje',
+ 'total-downloads' => 'Ukupno preuzimanja',
+ 'total-leeching' => 'Ukupno Leeching',
+ 'total-seeding' => 'Ukupno zasijavanje',
+ 'total-seedtime' => 'Ukupno vrijeme sjeme',
+ 'total-upload' => 'Ukupni prijenos',
+ 'total-uploads' => 'Ukupno učitavanja',
+ 'unban' => 'Ukloni korisnika',
+ 'unfollow' => 'Prestani pratiti',
+ 'unlocked' => 'Otključan',
+ 'unlocked-achievements' => 'Otključana postignuća',
+ 'unsatisfieds' => 'Unsatisfieds',
+ 'upload-bon' => 'Dodaj u BON Store',
+ 'upload-recorded' => 'Snimljeni prijenos',
+ 'upload-true' => 'True Upload',
+ 'uploads' => 'slike',
+ 'uploads-table' => 'Učitana tablica',
+ 'user' => 'Korisnik',
+ 'user-id' => 'ID korisnika',
+ 'username-seedbox' => 'Okvir za pretraživanje s korisničkim imenom',
+ 'visible-to-achievement' => 'Postignuća vidljiva',
+ 'visible-to-achievement-help' => 'Vaša dostignuća bit će vidljiva samo osoblju i sljedećim skupinama. Ove postavke su poništene ako idete Privatno',
+ 'visible-to-follower' => 'Sljedbenici su vidljivi',
+ 'visible-to-follower-help' => 'Vaši sljedbenici bit će vidljivi samo osoblju i sljedećim grupama. Ove postavke su poništene ako idete Privatno',
+ 'visible-to-forum' => 'Informacije o forumu vidljive su za',
+ 'visible-to-forum-help' => 'Informacije o forumu bit će vidljive samo osoblju i sljedećim skupinama. Ove postavke su poništene ako idete Privatno',
+ 'visible-to-other' => 'Ostalo vidljivo za',
+ 'visible-to-other-help' => 'Ostale informacije o vašem računu bit će vidljive samo osoblju i sljedećim skupinama. Ove postavke su poništene ako idete Privatno ili ako ste skriveni',
+ 'visible-to-profile' => 'Profil je vidljiv za',
+ 'visible-to-profile-help' => 'Vaš će profil biti vidljiv samo osoblju i sljedećim skupinama. Ove postavke su poništene ako idete Privatno',
+ 'visible-to-request' => 'Zahtijevanje informacija vidljivo za',
+ 'visible-to-request-help' => 'Informacije o vašem zahtjevu bit će vidljive samo osoblju i sljedećim skupinama. Ove postavke su poništene ako idete Privatno',
+ 'visible-to-torrent' => 'Informacije o tokovima vidljive su za',
+ 'visible-to-torrent-help' => 'Informacije o torrentu bit će vidljive samo osoblju i sljedećim skupinama. Ove postavke su poništene ako idete Privatno ili ako ste skriveni',
+ 'warned-on' => 'Upozoreno',
+ 'warning' => 'Upozorenje',
+ 'warning-log' => 'Dnevnik upozorenja',
+ 'wishlist' => 'Moj izbor',
];
diff --git a/lang/hr/validation.php b/lang/hr/validation.php
index 3f8978790..3a51d26ed 100644
--- a/lang/hr/validation.php
+++ b/lang/hr/validation.php
@@ -23,108 +23,108 @@ return [
|
*/
- 'accepted' => 'Polje :attribute mora biti prihvaćeno.',
- 'active_url' => 'Polje :attribute nije ispravan URL.',
- 'after' => 'Polje :attribute mora biti datum nakon :date.',
- 'after_or_equal' => 'Polje :attribute mora biti datum veći ili jednak :date.',
- 'alpha' => 'Polje :attribute smije sadržavati samo slova.',
- 'alpha_dash' => 'Polje :attribute smije sadržavati samo slova, brojeve i crtice.',
- 'alpha_num' => 'Polje :attribute smije sadržavati samo slova i brojeve.',
- 'array' => 'Polje :attribute mora biti niz.',
- 'before' => 'Polje :attribute mora biti datum prije :date.',
- 'before_or_equal' => 'Polje :attribute mora biti datum manji ili jednak :date.',
- 'between' => [
+ 'accepted' => 'Polje :attribute mora biti prihvaćeno.',
+ 'active_url' => 'Polje :attribute nije ispravan URL.',
+ 'after' => 'Polje :attribute mora biti datum nakon :date.',
+ 'after_or_equal' => 'Polje :attribute mora biti datum veći ili jednak :date.',
+ 'alpha' => 'Polje :attribute smije sadržavati samo slova.',
+ 'alpha_dash' => 'Polje :attribute smije sadržavati samo slova, brojeve i crtice.',
+ 'alpha_num' => 'Polje :attribute smije sadržavati samo slova i brojeve.',
+ 'array' => 'Polje :attribute mora biti niz.',
+ 'before' => 'Polje :attribute mora biti datum prije :date.',
+ 'before_or_equal' => 'Polje :attribute mora biti datum manji ili jednak :date.',
+ 'between' => [
'numeric' => 'Polje :attribute mora biti između :min - :max.',
- 'file' => 'Polje :attribute mora biti između :min - :max kilobajta.',
- 'string' => 'Polje :attribute mora biti između :min - :max znakova.',
- 'array' => 'Polje :attribute mora imati između :min - :max stavki.',
+ 'file' => 'Polje :attribute mora biti između :min - :max kilobajta.',
+ 'string' => 'Polje :attribute mora biti između :min - :max znakova.',
+ 'array' => 'Polje :attribute mora imati između :min - :max stavki.',
],
- 'boolean' => 'Polje :attribute mora biti false ili true.',
- 'confirmed' => 'Potvrda polja :attribute se ne podudara.',
- 'date' => 'Polje :attribute nije ispravan datum.',
- 'date_equals' => 'The :attribute must be a date equal to :date.',
- 'date_format' => 'Polje :attribute ne podudara s formatom :format.',
- 'different' => 'Polja :attribute i :other moraju biti različita.',
- 'digits' => 'Polje :attribute mora sadržavati :digits znamenki.',
- 'digits_between' => 'Polje :attribute mora imati između :min i :max znamenki.',
- 'dimensions' => 'Polje :attribute ima neispravne dimenzije slike.',
- 'distinct' => 'Polje :attribute ima dupliciranu vrijednost.',
- 'email' => 'Polje :attribute mora biti ispravna e-mail adresa.',
- 'exists' => 'Odabrano polje :attribute nije ispravno.',
- 'file' => 'Polje :attribute mora biti datoteka.',
- 'filled' => 'Polje :attribute je obavezno.',
- 'gt' => [
+ 'boolean' => 'Polje :attribute mora biti false ili true.',
+ 'confirmed' => 'Potvrda polja :attribute se ne podudara.',
+ 'date' => 'Polje :attribute nije ispravan datum.',
+ 'date_equals' => 'The :attribute must be a date equal to :date.',
+ 'date_format' => 'Polje :attribute ne podudara s formatom :format.',
+ 'different' => 'Polja :attribute i :other moraju biti različita.',
+ 'digits' => 'Polje :attribute mora sadržavati :digits znamenki.',
+ 'digits_between' => 'Polje :attribute mora imati između :min i :max znamenki.',
+ 'dimensions' => 'Polje :attribute ima neispravne dimenzije slike.',
+ 'distinct' => 'Polje :attribute ima dupliciranu vrijednost.',
+ 'email' => 'Polje :attribute mora biti ispravna e-mail adresa.',
+ 'exists' => 'Odabrano polje :attribute nije ispravno.',
+ 'file' => 'Polje :attribute mora biti datoteka.',
+ 'filled' => 'Polje :attribute je obavezno.',
+ 'gt' => [
'numeric' => 'Polje :attribute mora biti veće od :value.',
- 'file' => 'Polje :attribute mora biti veće od :value kilobajta.',
- 'string' => 'Polje :attribute mora biti veće od :value karaktera.',
- 'array' => 'Polje :attribute mora biti veće od :value stavki.',
+ 'file' => 'Polje :attribute mora biti veće od :value kilobajta.',
+ 'string' => 'Polje :attribute mora biti veće od :value karaktera.',
+ 'array' => 'Polje :attribute mora biti veće od :value stavki.',
],
- 'gte' => [
+ 'gte' => [
'numeric' => 'Polje :attribute mora biti veće ili jednako :value.',
- 'file' => 'Polje :attribute mora biti veće ili jednako :value kilobajta.',
- 'string' => 'Polje :attribute mora biti veće ili jednako :value znakova.',
- 'array' => 'Polje :attribute mora imati :value stavki ili više.',
+ 'file' => 'Polje :attribute mora biti veće ili jednako :value kilobajta.',
+ 'string' => 'Polje :attribute mora biti veće ili jednako :value znakova.',
+ 'array' => 'Polje :attribute mora imati :value stavki ili više.',
],
- 'image' => 'Polje :attribute mora biti slika.',
- 'in' => 'Odabrano polje :attribute nije ispravno.',
- 'in_array' => 'Polje :attribute ne postoji u :other.',
- 'integer' => 'Polje :attribute mora biti broj.',
- 'ip' => 'Polje :attribute mora biti ispravna IP adresa.',
- 'ipv4' => 'Polje :attribute mora biti ispravna IPv4 adresa.',
- 'ipv6' => 'Polje :attribute mora biti ispravna IPv6 adresa.',
- 'json' => 'Polje :attribute mora biti ispravan JSON string.',
- 'lt' => [
+ 'image' => 'Polje :attribute mora biti slika.',
+ 'in' => 'Odabrano polje :attribute nije ispravno.',
+ 'in_array' => 'Polje :attribute ne postoji u :other.',
+ 'integer' => 'Polje :attribute mora biti broj.',
+ 'ip' => 'Polje :attribute mora biti ispravna IP adresa.',
+ 'ipv4' => 'Polje :attribute mora biti ispravna IPv4 adresa.',
+ 'ipv6' => 'Polje :attribute mora biti ispravna IPv6 adresa.',
+ 'json' => 'Polje :attribute mora biti ispravan JSON string.',
+ 'lt' => [
'numeric' => 'Polje :attribute mora biti manje od :value.',
- 'file' => 'Polje :attribute mora biti manje od :value kilobajta.',
- 'string' => 'Polje :attribute mora biti manje od :value znakova.',
- 'array' => 'Polje :attribute mora biti manje od :value stavki.',
+ 'file' => 'Polje :attribute mora biti manje od :value kilobajta.',
+ 'string' => 'Polje :attribute mora biti manje od :value znakova.',
+ 'array' => 'Polje :attribute mora biti manje od :value stavki.',
],
- 'lte' => [
+ 'lte' => [
'numeric' => 'Polje :attribute mora biti manje ili jednako :value.',
- 'file' => 'Polje :attribute mora biti manje ili jednako :value kilobajta.',
- 'string' => 'Polje :attribute mora biti manje ili jednako :value znakova.',
- 'array' => 'Polje :attribute ne smije imati više od :value stavki.',
+ 'file' => 'Polje :attribute mora biti manje ili jednako :value kilobajta.',
+ 'string' => 'Polje :attribute mora biti manje ili jednako :value znakova.',
+ 'array' => 'Polje :attribute ne smije imati više od :value stavki.',
],
- 'max' => [
+ 'max' => [
'numeric' => 'Polje :attribute mora biti manje od :max.',
- 'file' => 'Polje :attribute mora biti manje od :max kilobajta.',
- 'string' => 'Polje :attribute mora sadržavati manje od :max znakova.',
- 'array' => 'Polje :attribute ne smije imati više od :max stavki.',
+ 'file' => 'Polje :attribute mora biti manje od :max kilobajta.',
+ 'string' => 'Polje :attribute mora sadržavati manje od :max znakova.',
+ 'array' => 'Polje :attribute ne smije imati više od :max stavki.',
],
- 'mimes' => 'Polje :attribute mora biti datoteka tipa: :values.',
- 'mimetypes' => 'Polje :attribute mora biti datoteka tipa: :values.',
- 'min' => [
+ 'mimes' => 'Polje :attribute mora biti datoteka tipa: :values.',
+ 'mimetypes' => 'Polje :attribute mora biti datoteka tipa: :values.',
+ 'min' => [
'numeric' => 'Polje :attribute mora biti najmanje :min.',
- 'file' => 'Polje :attribute mora biti najmanje :min kilobajta.',
- 'string' => 'Polje :attribute mora sadržavati najmanje :min znakova.',
- 'array' => 'Polje :attribute mora sadržavati najmanje :min stavki.',
+ 'file' => 'Polje :attribute mora biti najmanje :min kilobajta.',
+ 'string' => 'Polje :attribute mora sadržavati najmanje :min znakova.',
+ 'array' => 'Polje :attribute mora sadržavati najmanje :min stavki.',
],
- 'not_in' => 'Odabrano polje :attribute nije ispravno.',
- 'not_regex' => 'Format polja :attribute je neispravan.',
- 'numeric' => 'Polje :attribute mora biti broj.',
- 'present' => 'Polje :attribute mora biti prisutno.',
- 'regex' => 'Polje :attribute se ne podudara s formatom.',
- 'required' => 'Polje :attribute je obavezno.',
- 'required_if' => 'Polje :attribute je obavezno kada polje :other sadrži :value.',
- 'required_unless' => 'Polje :attribute je obavezno osim :other je u :values.',
- 'required_with' => 'Polje :attribute je obavezno kada postoji polje :values.',
- 'required_with_all' => 'Polje :attribute je obavezno kada postje polja :values.',
- 'required_without' => 'Polje :attribute je obavezno kada ne postoji polje :values.',
+ 'not_in' => 'Odabrano polje :attribute nije ispravno.',
+ 'not_regex' => 'Format polja :attribute je neispravan.',
+ 'numeric' => 'Polje :attribute mora biti broj.',
+ 'present' => 'Polje :attribute mora biti prisutno.',
+ 'regex' => 'Polje :attribute se ne podudara s formatom.',
+ 'required' => 'Polje :attribute je obavezno.',
+ 'required_if' => 'Polje :attribute je obavezno kada polje :other sadrži :value.',
+ 'required_unless' => 'Polje :attribute je obavezno osim :other je u :values.',
+ 'required_with' => 'Polje :attribute je obavezno kada postoji polje :values.',
+ 'required_with_all' => 'Polje :attribute je obavezno kada postje polja :values.',
+ 'required_without' => 'Polje :attribute je obavezno kada ne postoji polje :values.',
'required_without_all' => 'Polje :attribute je obavezno kada nijedno od polja :values ne postoji.',
- 'same' => 'Polja :attribute i :other se moraju podudarati.',
- 'size' => [
+ 'same' => 'Polja :attribute i :other se moraju podudarati.',
+ 'size' => [
'numeric' => 'Polje :attribute mora biti :size.',
- 'file' => 'Polje :attribute mora biti :size kilobajta.',
- 'string' => 'Polje :attribute mora biti :size znakova.',
- 'array' => 'Polje :attribute mora sadržavati :size stavki.',
+ 'file' => 'Polje :attribute mora biti :size kilobajta.',
+ 'string' => 'Polje :attribute mora biti :size znakova.',
+ 'array' => 'Polje :attribute mora sadržavati :size stavki.',
],
- 'starts_with' => 'The :attribute must start with one of the following: :values',
- 'string' => 'Polje :attribute mora biti string.',
- 'timezone' => 'Polje :attribute mora biti ispravna vremenska zona.',
- 'unique' => 'Polje :attribute već postoji.',
- 'uploaded' => 'Polje :attribute nije uspešno učitano.',
- 'url' => 'Polje :attribute nije ispravnog formata.',
- 'uuid' => 'The :attribute must be a valid UUID.',
+ 'starts_with' => 'The :attribute must start with one of the following: :values',
+ 'string' => 'Polje :attribute mora biti string.',
+ 'timezone' => 'Polje :attribute mora biti ispravna vremenska zona.',
+ 'unique' => 'Polje :attribute već postoji.',
+ 'uploaded' => 'Polje :attribute nije uspešno učitano.',
+ 'url' => 'Polje :attribute nije ispravnog formata.',
+ 'uuid' => 'The :attribute must be a valid UUID.',
/*
|--------------------------------------------------------------------------
diff --git a/lang/hu/articles.php b/lang/hu/articles.php
index eca87f701..d89a5a656 100644
--- a/lang/hu/articles.php
+++ b/lang/hu/articles.php
@@ -12,8 +12,8 @@
*/
return [
- 'articles' => 'Cikkek',
+ 'articles' => 'Cikkek',
'meta-articles' => 'Cikkek és hírek a trackerről és a közösségről',
- 'published-at' => 'Megjelent:',
- 'read-more' => 'Olvass tovább',
+ 'published-at' => 'Megjelent:',
+ 'read-more' => 'Olvass tovább',
];
diff --git a/lang/hu/auth.php b/lang/hu/auth.php
index e816c0b01..4d1657e9e 100644
--- a/lang/hu/auth.php
+++ b/lang/hu/auth.php
@@ -23,6 +23,6 @@ return [
|
*/
- 'failed' => 'Rossz email-jelszó páros.',
+ 'failed' => 'Rossz email-jelszó páros.',
'throttle' => 'Túl sok próbálkozás. Kérjük próbálja újra :seconds másodperc múlva.',
];
diff --git a/lang/hu/backup.php b/lang/hu/backup.php
index 3b2c299f5..bac17d170 100644
--- a/lang/hu/backup.php
+++ b/lang/hu/backup.php
@@ -12,32 +12,32 @@
*/
return [
- 'actions' => 'Hozzászólások',
- 'backup' => 'biztonsági mentés',
- 'backup_doesnt_exist' => 'A mentési fájl nem létezik.',
- 'create_a_new_backup' => 'Teljes biztonsági mentés létrehozása',
- 'create_a_new_files_backup' => 'Fájlok biztonsági mentése',
- 'create_a_new_db_backup' => 'Adatbázis-biztonsági mentés létrehozása',
- 'create_confirmation_message' => 'Az oldal újratöltése 3 másodperc múlva.',
- 'create_confirmation_title' => 'A biztonsági mentés befejeződött',
- 'create_error_message' => 'A biztonsági mentés fájl nem hozható létre.',
- 'create_error_title' => 'Biztonsági mentési hiba',
- 'create_warning_message' => 'A biztonsági másolat NEM lehet létrehozva. Kérjük, ellenőrizze a naplófájlokat a részletekért.',
- 'create_warning_title' => 'Ismeretlen hiba',
- 'date' => 'Dátum',
- 'delete' => 'Töröl',
- 'delete_cancel_message' => 'A biztonsági mentési fájl NEM törölve.',
- 'delete_cancel_title' => 'Jól van',
- 'delete_confirm' => 'Biztosan törli ezt a biztonsági mentési fájlt?',
- 'delete_confirmation_message' => 'A mentési fájl törölve lett.',
- 'delete_confirmation_title' => 'Kész',
- 'delete_error_message' => 'A biztonsági mentési fájl NEM törölve.',
- 'delete_error_title' => 'Hiba',
- 'download' => 'Letöltés',
- 'existing_backups' => 'Meglévő biztonsági másolatok',
- 'file_size' => 'Fájl méret',
- 'location' => 'Elhelyezkedés',
- 'manager' => 'Menedzser',
- 'no_disks_configured' => 'A config / backup.php fájlban nincsenek biztonsági másolatok',
+ 'actions' => 'Hozzászólások',
+ 'backup' => 'biztonsági mentés',
+ 'backup_doesnt_exist' => 'A mentési fájl nem létezik.',
+ 'create_a_new_backup' => 'Teljes biztonsági mentés létrehozása',
+ 'create_a_new_files_backup' => 'Fájlok biztonsági mentése',
+ 'create_a_new_db_backup' => 'Adatbázis-biztonsági mentés létrehozása',
+ 'create_confirmation_message' => 'Az oldal újratöltése 3 másodperc múlva.',
+ 'create_confirmation_title' => 'A biztonsági mentés befejeződött',
+ 'create_error_message' => 'A biztonsági mentés fájl nem hozható létre.',
+ 'create_error_title' => 'Biztonsági mentési hiba',
+ 'create_warning_message' => 'A biztonsági másolat NEM lehet létrehozva. Kérjük, ellenőrizze a naplófájlokat a részletekért.',
+ 'create_warning_title' => 'Ismeretlen hiba',
+ 'date' => 'Dátum',
+ 'delete' => 'Töröl',
+ 'delete_cancel_message' => 'A biztonsági mentési fájl NEM törölve.',
+ 'delete_cancel_title' => 'Jól van',
+ 'delete_confirm' => 'Biztosan törli ezt a biztonsági mentési fájlt?',
+ 'delete_confirmation_message' => 'A mentési fájl törölve lett.',
+ 'delete_confirmation_title' => 'Kész',
+ 'delete_error_message' => 'A biztonsági mentési fájl NEM törölve.',
+ 'delete_error_title' => 'Hiba',
+ 'download' => 'Letöltés',
+ 'existing_backups' => 'Meglévő biztonsági másolatok',
+ 'file_size' => 'Fájl méret',
+ 'location' => 'Elhelyezkedés',
+ 'manager' => 'Menedzser',
+ 'no_disks_configured' => 'A config / backup.php fájlban nincsenek biztonsági másolatok',
'only_local_downloads_supported' => 'Csak a helyi fájlrendszerről érkező letöltések támogatottak.',
];
diff --git a/lang/hu/blocks.php b/lang/hu/blocks.php
index 7d4124479..87d3d3216 100644
--- a/lang/hu/blocks.php
+++ b/lang/hu/blocks.php
@@ -12,19 +12,19 @@
*/
return [
- 'chatbox' => 'Chat doboz',
- 'click' => 'Kattints',
- 'to-enable-editor' => 'a szerkesztő engedélyezéséhez',
- 'featured-by' => 'Kiemelt',
- 'featured-torrents' => 'Kiemelt torrentek',
+ 'chatbox' => 'Chat doboz',
+ 'click' => 'Kattints',
+ 'to-enable-editor' => 'a szerkesztő engedélyezéséhez',
+ 'featured-by' => 'Kiemelt',
+ 'featured-torrents' => 'Kiemelt torrentek',
'featured-torrents-intro' => 'Szerezd meg őket!',
- 'featured-until' => 'Ez addig látható',
- 'top-torrents' => 'Legjobb torrentek',
- 'latest-posts' => 'Legutóbbi bejegyzések',
- 'latest-topics' => 'Legfrissebb témák',
- 'active-in-last' => 'Utoljára aktív',
- 'users-online' => 'Online felhasználók',
- 'check-news' => 'Hírek (naponta ellenőrizze)',
- 'new-news' => 'Új hírek',
- 'new-torrents' => 'Új torrentek',
+ 'featured-until' => 'Ez addig látható',
+ 'top-torrents' => 'Legjobb torrentek',
+ 'latest-posts' => 'Legutóbbi bejegyzések',
+ 'latest-topics' => 'Legfrissebb témák',
+ 'active-in-last' => 'Utoljára aktív',
+ 'users-online' => 'Online felhasználók',
+ 'check-news' => 'Hírek (naponta ellenőrizze)',
+ 'new-news' => 'Új hírek',
+ 'new-torrents' => 'Új torrentek',
];
diff --git a/lang/hu/bon.php b/lang/hu/bon.php
index f8d2ec064..78929dfbe 100644
--- a/lang/hu/bon.php
+++ b/lang/hu/bon.php
@@ -12,44 +12,44 @@
*/
return [
- 'activated' => 'Aktív',
- 'active' => 'Aktív!',
- 'amount' => 'Összeg',
- 'bon' => 'BON',
- 'bonus' => 'pótlék',
- 'date' => 'Dátum',
- 'earning' => 'bevételt hozó',
- 'earning-rate' => 'Ezen a keresési arányon belül a következő időszakonkénti keresetet kapja.',
- 'earnings' => 'Kereset',
- 'exchange' => 'Csere',
- 'exchange-warning' => 'A csere végleges, kérjük, ellenőrizze a választásait, mielőtt kicserélne.',
- 'extended-stats' => 'Bővített statisztikák',
- 'gift' => 'Ajándék',
- 'gift-bonus' => 'Ajándékbónusz pontok',
- 'gift-to' => 'Ajándékbónusz pontok',
- 'gifts' => 'Ajándékok',
- 'item' => 'Tétel',
- 'no-refund' => 'NINCS VISSZATÉRÍTÉS!',
- 'per-day' => 'Pontok naponta',
- 'per-hour' => 'Pontok óránként',
- 'per-minute' => 'Pontok percenként',
- 'per-month' => 'Pontok havonta',
- 'per-second' => 'Pontok másodpercenként',
- 'per-week' => 'Pontok hetente',
- 'per-year' => 'Pontok évente',
- 'points' => 'Pont',
- 'receiver' => 'Receiver',
- 'review-seeds' => 'Tekintse át az összes vetőmagot',
- 'send-gift' => 'Küldj ajándékot',
- 'sender' => 'Feladó',
- 'store' => 'Bolt',
- 'tips' => 'tippek',
- 'total' => 'Teljes nyereség',
- 'total-gifts' => 'Az összes BON ajándékban',
- 'total-tips' => 'Az összes BON tippben',
+ 'activated' => 'Aktív',
+ 'active' => 'Aktív!',
+ 'amount' => 'Összeg',
+ 'bon' => 'BON',
+ 'bonus' => 'pótlék',
+ 'date' => 'Dátum',
+ 'earning' => 'bevételt hozó',
+ 'earning-rate' => 'Ezen a keresési arányon belül a következő időszakonkénti keresetet kapja.',
+ 'earnings' => 'Kereset',
+ 'exchange' => 'Csere',
+ 'exchange-warning' => 'A csere végleges, kérjük, ellenőrizze a választásait, mielőtt kicserélne.',
+ 'extended-stats' => 'Bővített statisztikák',
+ 'gift' => 'Ajándék',
+ 'gift-bonus' => 'Ajándékbónusz pontok',
+ 'gift-to' => 'Ajándékbónusz pontok',
+ 'gifts' => 'Ajándékok',
+ 'item' => 'Tétel',
+ 'no-refund' => 'NINCS VISSZATÉRÍTÉS!',
+ 'per-day' => 'Pontok naponta',
+ 'per-hour' => 'Pontok óránként',
+ 'per-minute' => 'Pontok percenként',
+ 'per-month' => 'Pontok havonta',
+ 'per-second' => 'Pontok másodpercenként',
+ 'per-week' => 'Pontok hetente',
+ 'per-year' => 'Pontok évente',
+ 'points' => 'Pont',
+ 'receiver' => 'Receiver',
+ 'review-seeds' => 'Tekintse át az összes vetőmagot',
+ 'send-gift' => 'Küldj ajándékot',
+ 'sender' => 'Feladó',
+ 'store' => 'Bolt',
+ 'tips' => 'tippek',
+ 'total' => 'Teljes nyereség',
+ 'total-gifts' => 'Az összes BON ajándékban',
+ 'total-tips' => 'Az összes BON tippben',
'you-have-received-gifts' => 'Kaptál',
- 'you-have-sent-gifts' => 'Elküldted',
- 'you-have-received-tips' => 'Kaptál',
- 'you-have-sent-tips' => 'Elküldted',
- 'your-points' => 'Pontok',
+ 'you-have-sent-gifts' => 'Elküldted',
+ 'you-have-received-tips' => 'Kaptál',
+ 'you-have-sent-tips' => 'Elküldted',
+ 'your-points' => 'Pontok',
];
diff --git a/lang/hu/bot.php b/lang/hu/bot.php
index 51f3891da..15090527f 100644
--- a/lang/hu/bot.php
+++ b/lang/hu/bot.php
@@ -12,15 +12,15 @@
*/
return [
- 'about' => 'Ról ről',
- 'bot' => 'Bot',
- 'bots' => 'Botok',
- 'color' => 'Szín',
- 'command' => 'Parancs',
- 'edit-bot' => 'Bot szerkesztése',
+ 'about' => 'Ról ről',
+ 'bot' => 'Bot',
+ 'bots' => 'Botok',
+ 'color' => 'Szín',
+ 'command' => 'Parancs',
+ 'edit-bot' => 'Bot szerkesztése',
'emoji-code' => 'Emoji kód',
- 'help' => 'Segítség',
- 'icon' => 'Ikon',
- 'info' => 'Info',
- 'name' => 'Név',
+ 'help' => 'Segítség',
+ 'icon' => 'Ikon',
+ 'info' => 'Info',
+ 'name' => 'Név',
];
diff --git a/lang/hu/bug.php b/lang/hu/bug.php
index e675ba873..215b8ad68 100644
--- a/lang/hu/bug.php
+++ b/lang/hu/bug.php
@@ -12,15 +12,15 @@
*/
return [
- 'bug-report' => 'Hibajelentés',
+ 'bug-report' => 'Hibajelentés',
'bug-report-description' => 'Jelentés a webhelyhibáról',
- 'enter-description' => 'Ismertesse a problémát a lehető legjobban',
- 'enter-email' => 'Kérem, írja be az e-mail címét',
- 'enter-title' => 'Kérjük, válasszon megfelelő címet',
- 'enter-username' => 'Kérjük, adja meg felhasználónevét',
- 'high' => 'Magas',
- 'low' => 'Alacsony',
- 'priority' => 'Kiemelten fontos',
- 'priority-description' => 'Válasszon csak nagyon magas értéket, ha a hiba valóban probléma a webhely használatakor.',
- 'very-high' => 'Nagyon magas',
+ 'enter-description' => 'Ismertesse a problémát a lehető legjobban',
+ 'enter-email' => 'Kérem, írja be az e-mail címét',
+ 'enter-title' => 'Kérjük, válasszon megfelelő címet',
+ 'enter-username' => 'Kérjük, adja meg felhasználónevét',
+ 'high' => 'Magas',
+ 'low' => 'Alacsony',
+ 'priority' => 'Kiemelten fontos',
+ 'priority-description' => 'Válasszon csak nagyon magas értéket, ha a hiba valóban probléma a webhely használatakor.',
+ 'very-high' => 'Nagyon magas',
];
diff --git a/lang/hu/common.php b/lang/hu/common.php
index 91b116b9d..147c0bc0c 100644
--- a/lang/hu/common.php
+++ b/lang/hu/common.php
@@ -12,179 +12,179 @@
*/
return [
- 'a-an-art' => '',
- 'about' => 'Rólunk',
- 'account' => 'számla',
- 'achievement-title' => 'Fantasztikus',
+ 'a-an-art' => '',
+ 'about' => 'Rólunk',
+ 'account' => 'számla',
+ 'achievement-title' => 'Fantasztikus',
'achievement-unlocked' => 'Ön kinyitotta: "név" elérését',
- 'active' => 'Aktív',
- 'active-warning' => 'Aktív figyelmeztetés',
- 'add' => 'hozzáad',
- 'added' => 'Hozzáadott',
- 'amount' => 'Összeg',
- 'anonymous' => 'Névtelen',
- 'author' => 'Szerző',
- 'balance' => 'Egyensúly',
- 'blacklist' => 'Ügyfélfeketelista',
- 'buffer' => 'ütköző',
- 'bug' => 'Jelentés a hibáról',
- 'but' => 'De',
- 'cancel' => 'Megszünteti',
- 'category' => 'Kategória',
- 'categories' => 'Kategóriák',
- 'close' => 'Bezárás',
- 'comment' => 'Megjegyzés',
- 'comments' => 'Hozzászólások',
- 'community' => 'Közösség',
- 'contact' => 'Kapcsolatba lépni',
- 'contact-desc' => 'Ezt a kapcsolattartó kérést elküldi a tulajdonosnak, és a lehető leghamarabb visszatér Önhöz',
- 'contact-header' => 'Szia',
- 'create' => 'teremt',
- 'created_at' => 'Létrehozta At',
- 'day' => 'Nap',
- 'delete' => 'Töröl',
- 'delete-your-comment' => 'Törölje a megjegyzést',
- 'description' => 'Leírás',
- 'direction' => 'Irány',
- 'disable' => 'Kikapcsolja',
- 'doubleup_activated' => 'Globális dupla feltöltési mód aktiválva',
- 'download' => 'Letöltés',
- 'edit' => 'szerkesztése',
- 'edit-your-comment' => 'Szerkessze meg véleményét',
- 'email' => 'Email',
- 'email-blacklist' => 'E-mail fekete lista',
- 'email-whitelist' => 'E-mail fehérlistája',
+ 'active' => 'Aktív',
+ 'active-warning' => 'Aktív figyelmeztetés',
+ 'add' => 'hozzáad',
+ 'added' => 'Hozzáadott',
+ 'amount' => 'Összeg',
+ 'anonymous' => 'Névtelen',
+ 'author' => 'Szerző',
+ 'balance' => 'Egyensúly',
+ 'blacklist' => 'Ügyfélfeketelista',
+ 'buffer' => 'ütköző',
+ 'bug' => 'Jelentés a hibáról',
+ 'but' => 'De',
+ 'cancel' => 'Megszünteti',
+ 'category' => 'Kategória',
+ 'categories' => 'Kategóriák',
+ 'close' => 'Bezárás',
+ 'comment' => 'Megjegyzés',
+ 'comments' => 'Hozzászólások',
+ 'community' => 'Közösség',
+ 'contact' => 'Kapcsolatba lépni',
+ 'contact-desc' => 'Ezt a kapcsolattartó kérést elküldi a tulajdonosnak, és a lehető leghamarabb visszatér Önhöz',
+ 'contact-header' => 'Szia',
+ 'create' => 'teremt',
+ 'created_at' => 'Létrehozta At',
+ 'day' => 'Nap',
+ 'delete' => 'Töröl',
+ 'delete-your-comment' => 'Törölje a megjegyzést',
+ 'description' => 'Leírás',
+ 'direction' => 'Irány',
+ 'disable' => 'Kikapcsolja',
+ 'doubleup_activated' => 'Globális dupla feltöltési mód aktiválva',
+ 'download' => 'Letöltés',
+ 'edit' => 'szerkesztése',
+ 'edit-your-comment' => 'Szerkessze meg véleményét',
+ 'email' => 'Email',
+ 'email-blacklist' => 'E-mail fekete lista',
+ 'email-whitelist' => 'E-mail fehérlistája',
'email-list-notactive' => 'E-mail fehérlistája / fekete lista rendszer nincs aktiválva',
- 'enable' => 'Engedélyezze',
- 'enter' => 'Belép',
- 'error' => 'Hiba',
- 'everyday' => 'Minden nap',
- 'expired' => 'Lejárt',
- 'extra' => 'Külön',
- 'extra-stats' => 'Extra-statisztika',
- 'faq' => 'GYIK',
- 'files' => 'Files',
- 'fl_token' => 'Freeleech Token',
- 'fl_tokens' => 'Freeleech tokenek',
- 'for' => 'mert',
- 'forum' => 'Fórum',
- 'free' => 'Ingyenes',
- 'freeleech_activated' => 'A globális Freeleech mód aktiválva van',
- 'global' => 'Globális',
- 'group' => 'Csoport',
- 'groups' => 'csoportok',
- 'hidden' => 'Rejtett',
- 'high-speeds' => 'Nagy sebesség',
- 'home' => 'itthon',
- 'hot' => 'Forró!',
- 'hour' => 'Óra',
- 'huge' => 'Hatalmas',
- 'info' => 'Info',
- 'internal' => 'Belső',
- 'ip' => 'IP',
- 'is-allowed' => 'megengedett',
- 'large' => 'Nagy',
- 'latest' => 'Legújabb',
- 'latest-posts' => 'Legutóbbi bejegyzések',
- 'latest-topics' => 'Legfrissebb témák',
- 'legal' => 'Jogi',
- 'legend' => 'Legenda',
- 'lists' => 'List',
- 'lock-account' => 'Fiók zárolása',
- 'logout' => 'Kijelentkezés',
- 'members' => 'Belépés',
- 'message' => 'Üzenet',
- 'minute' => 'Perc',
- 'moderated-by' => 'Módosította:',
- 'moderation' => 'mérséklet',
- 'moderation-approve' => 'Jóváhagy',
- 'moderation-postpone' => 'elhalasztani',
- 'moderation-reject' => 'Elutasít',
- 'month' => 'Hónap',
- 'months' => 'hónapok',
- 'my' => 'Az én',
- 'name' => 'Név',
- 'navigation' => 'Navigáció',
- 'new' => 'Új!',
- 'new-adj' => 'Új',
- 'news' => 'hírek',
- 'next' => 'Következő',
- 'no' => 'Nem',
- 'no-comments' => 'Még nincsenek hozzászólások',
- 'no-result' => 'Nincs eredmény az adatbázisban a lekérdezéshez',
- 'notifications' => 'értesítések',
- 'older-than' => 'Idősebb mint',
- 'oldest' => 'Legrégebbi',
- 'openreg_activated' => 'Nyitott regisztráció aktiválva',
- 'order-by' => 'Rendezés',
- 'other' => 'Más',
- 'pages' => 'Oldalak',
- 'password' => 'Jelszó',
- 'patron' => 'Legyél védő',
- 'pending-torrents' => 'Függőben lévő torrentek',
- 'personal' => 'Személyes',
- 'plural-suffix' => 's',
- 'port' => 'Kikötő',
- 'position' => 'Pozíció',
- 'posts' => 'Hozzászólások',
- 'powered-by' => 'Powered by UNIT3D',
- 'preview' => 'Előnézet',
- 'previous' => 'Előző',
- 'progress' => 'Haladás',
- 'publish' => 'közzétesz',
- 'quantity' => 'Mennyiség',
- 'quick-search' => 'Gyors keresés',
- 'ratio' => 'Hányados',
- 'reason' => 'Ok',
- 'remove' => 'eltávolít',
- 'report' => 'Jelentés',
- 'resend' => 'újraküldése',
- 'reporter' => 'Riporter',
- 'required' => 'Kívánt',
- 'results' => 'Eredmények',
- 'rss-system' => 'RSS rendszer',
- 'rules' => 'szabályok',
- 'save' => 'Mentés',
- 'search' => 'Keresés',
- 'search-results' => 'Keresési eredmények',
- 'search-results-desc' => 'Kérjük, tekintse meg az alábbi eredményeket',
- 'second' => 'Második',
- 'select' => 'választ',
- 'sort' => 'Fajta',
- 'special' => 'Különleges',
- 'staff' => 'Személyzet',
- 'staff-tools' => 'Személyzeti eszközök',
- 'stats' => 'statisztikák',
- 'status' => 'Állapot',
- 'sticked' => 'ragasztott',
- 'submit' => 'beküldése',
- 'subscriptions' => 'Előfizetői',
- 'teams' => 'csapatok',
- 'terms' => 'Használati feltételek',
- 'times' => 'Times',
- 'title' => 'Cím',
- 'top-bountied' => 'Top Bountied',
- 'topics' => 'Témakörök',
- 'tracker-codes' => 'Tracker kódok',
- 'type' => 'típus',
- 'type-verb' => 'típus',
- 'types' => 'típusai',
- 'genre' => 'Műfaj',
- 'genres' => 'Műfajok',
- 'action' => 'Akció',
- 'actions' => 'Hozzászólások',
- 'unknown' => 'Ismeretlen',
+ 'enable' => 'Engedélyezze',
+ 'enter' => 'Belép',
+ 'error' => 'Hiba',
+ 'everyday' => 'Minden nap',
+ 'expired' => 'Lejárt',
+ 'extra' => 'Külön',
+ 'extra-stats' => 'Extra-statisztika',
+ 'faq' => 'GYIK',
+ 'files' => 'Files',
+ 'fl_token' => 'Freeleech Token',
+ 'fl_tokens' => 'Freeleech tokenek',
+ 'for' => 'mert',
+ 'forum' => 'Fórum',
+ 'free' => 'Ingyenes',
+ 'freeleech_activated' => 'A globális Freeleech mód aktiválva van',
+ 'global' => 'Globális',
+ 'group' => 'Csoport',
+ 'groups' => 'csoportok',
+ 'hidden' => 'Rejtett',
+ 'high-speeds' => 'Nagy sebesség',
+ 'home' => 'itthon',
+ 'hot' => 'Forró!',
+ 'hour' => 'Óra',
+ 'huge' => 'Hatalmas',
+ 'info' => 'Info',
+ 'internal' => 'Belső',
+ 'ip' => 'IP',
+ 'is-allowed' => 'megengedett',
+ 'large' => 'Nagy',
+ 'latest' => 'Legújabb',
+ 'latest-posts' => 'Legutóbbi bejegyzések',
+ 'latest-topics' => 'Legfrissebb témák',
+ 'legal' => 'Jogi',
+ 'legend' => 'Legenda',
+ 'lists' => 'List',
+ 'lock-account' => 'Fiók zárolása',
+ 'logout' => 'Kijelentkezés',
+ 'members' => 'Belépés',
+ 'message' => 'Üzenet',
+ 'minute' => 'Perc',
+ 'moderated-by' => 'Módosította:',
+ 'moderation' => 'mérséklet',
+ 'moderation-approve' => 'Jóváhagy',
+ 'moderation-postpone' => 'elhalasztani',
+ 'moderation-reject' => 'Elutasít',
+ 'month' => 'Hónap',
+ 'months' => 'hónapok',
+ 'my' => 'Az én',
+ 'name' => 'Név',
+ 'navigation' => 'Navigáció',
+ 'new' => 'Új!',
+ 'new-adj' => 'Új',
+ 'news' => 'hírek',
+ 'next' => 'Következő',
+ 'no' => 'Nem',
+ 'no-comments' => 'Még nincsenek hozzászólások',
+ 'no-result' => 'Nincs eredmény az adatbázisban a lekérdezéshez',
+ 'notifications' => 'értesítések',
+ 'older-than' => 'Idősebb mint',
+ 'oldest' => 'Legrégebbi',
+ 'openreg_activated' => 'Nyitott regisztráció aktiválva',
+ 'order-by' => 'Rendezés',
+ 'other' => 'Más',
+ 'pages' => 'Oldalak',
+ 'password' => 'Jelszó',
+ 'patron' => 'Legyél védő',
+ 'pending-torrents' => 'Függőben lévő torrentek',
+ 'personal' => 'Személyes',
+ 'plural-suffix' => 's',
+ 'port' => 'Kikötő',
+ 'position' => 'Pozíció',
+ 'posts' => 'Hozzászólások',
+ 'powered-by' => 'Powered by UNIT3D',
+ 'preview' => 'Előnézet',
+ 'previous' => 'Előző',
+ 'progress' => 'Haladás',
+ 'publish' => 'közzétesz',
+ 'quantity' => 'Mennyiség',
+ 'quick-search' => 'Gyors keresés',
+ 'ratio' => 'Hányados',
+ 'reason' => 'Ok',
+ 'remove' => 'eltávolít',
+ 'report' => 'Jelentés',
+ 'resend' => 'újraküldése',
+ 'reporter' => 'Riporter',
+ 'required' => 'Kívánt',
+ 'results' => 'Eredmények',
+ 'rss-system' => 'RSS rendszer',
+ 'rules' => 'szabályok',
+ 'save' => 'Mentés',
+ 'search' => 'Keresés',
+ 'search-results' => 'Keresési eredmények',
+ 'search-results-desc' => 'Kérjük, tekintse meg az alábbi eredményeket',
+ 'second' => 'Második',
+ 'select' => 'választ',
+ 'sort' => 'Fajta',
+ 'special' => 'Különleges',
+ 'staff' => 'Személyzet',
+ 'staff-tools' => 'Személyzeti eszközök',
+ 'stats' => 'statisztikák',
+ 'status' => 'Állapot',
+ 'sticked' => 'ragasztott',
+ 'submit' => 'beküldése',
+ 'subscriptions' => 'Előfizetői',
+ 'teams' => 'csapatok',
+ 'terms' => 'Használati feltételek',
+ 'times' => 'Times',
+ 'title' => 'Cím',
+ 'top-bountied' => 'Top Bountied',
+ 'topics' => 'Témakörök',
+ 'tracker-codes' => 'Tracker kódok',
+ 'type' => 'típus',
+ 'type-verb' => 'típus',
+ 'types' => 'típusai',
+ 'genre' => 'Műfaj',
+ 'genres' => 'Műfajok',
+ 'action' => 'Akció',
+ 'actions' => 'Hozzászólások',
+ 'unknown' => 'Ismeretlen',
'unlocked-achievement' => 'Ön kinyitotta: a teljesítmény elérését',
- 'upload' => 'Feltöltés',
- 'upload-guide' => 'Feltöltési útmutató',
- 'user' => 'használó',
- 'username' => 'Felhasználónév',
- 'users' => 'felhasználók',
- 'view' => 'Kilátás',
- 'view-all' => 'Összes megtekintése',
- 'warnings' => 'figyelmeztetések',
- 'year' => 'Év',
- 'yes' => 'Igen',
- 'your' => 'A te',
- 'your-comment' => 'A te hozzászólásod',
+ 'upload' => 'Feltöltés',
+ 'upload-guide' => 'Feltöltési útmutató',
+ 'user' => 'használó',
+ 'username' => 'Felhasználónév',
+ 'users' => 'felhasználók',
+ 'view' => 'Kilátás',
+ 'view-all' => 'Összes megtekintése',
+ 'warnings' => 'figyelmeztetések',
+ 'year' => 'Év',
+ 'yes' => 'Igen',
+ 'your' => 'A te',
+ 'your-comment' => 'A te hozzászólásod',
];
diff --git a/lang/hu/email.php b/lang/hu/email.php
index af13cc3f1..c0fe03517 100644
--- a/lang/hu/email.php
+++ b/lang/hu/email.php
@@ -12,46 +12,46 @@
*/
return [
- 'activate-account' => 'Aktiválja a fiókot',
- 'ban-reason' => 'Ok',
- 'banned-footer' => 'Amit kapsz azért, mert nem követed a szabályokat',
- 'banned-header' => 'Ki lettél tiltva',
- 'bug-description' => 'Probléma',
- 'bug-footer' => 'Javítsd meg ezt a szart',
- 'bug-header' => 'Új hibajelentés',
- 'bug-priority' => 'Kiemelten fontos',
- 'bug-title' => 'Bug cím',
- 'contact-header' => 'Új névjegy',
- 'contact-message' => 'Üzenet',
- 'contact-name' => 'Név',
+ 'activate-account' => 'Aktiválja a fiókot',
+ 'ban-reason' => 'Ok',
+ 'banned-footer' => 'Amit kapsz azért, mert nem követed a szabályokat',
+ 'banned-header' => 'Ki lettél tiltva',
+ 'bug-description' => 'Probléma',
+ 'bug-footer' => 'Javítsd meg ezt a szart',
+ 'bug-header' => 'Új hibajelentés',
+ 'bug-priority' => 'Kiemelten fontos',
+ 'bug-title' => 'Bug cím',
+ 'contact-header' => 'Új névjegy',
+ 'contact-message' => 'Üzenet',
+ 'contact-name' => 'Név',
'fail-login-greeting' => 'A fiók bejelentkezése sikertelen!',
- 'fail-login-line1' => 'Nem sikerült bejelentkezni a fiókjába.',
- 'fail-login-line2' => 'Ez a kérés a következő címen származik: ip (: host): time',
- 'fail-login-subject' => 'Sikertelen bejelentkezési értesítés',
- 'footer-link' => 'Ha problémája van az: actionText gombra kattintva, másolja és illessze be az alábbi URL-t a böngészőjébe:',
- 'invite-header' => 'Meghívás',
- 'invite-invited' => 'Meghívtak',
- 'invite-message' => 'Üzenet',
- 'invite-signup' => 'Iratkozzon fel most',
- 'newreply-header' => 'Van új válasz a témában',
- 'newreply-message' => 'Üzenet',
- 'newreply-replied' => 'Válaszolt a témára',
- 'newreply-view' => 'Nézd meg most',
- 'no-email-found' => 'Nem találtuk meg ezt az e-mailt a rendszerünkben!',
- 'register-code' => 'A fiók aktiválásához kattintson az alábbi gombra',
- 'register-footer' => 'Ha a fenti gomb nem működik, másolja és illessze be az URL-t a böngészők címsorába',
- 'register-header' => 'Szia! Köszönjük, hogy bejelentkezett',
- 'report-comment' => 'Megjegyzés',
- 'report-email' => 'Email',
- 'report-header' => 'Szia Admin, egy linket jelentettek be',
- 'report-link' => 'Link',
- 'report-link-hash' => 'Tényleges link',
- 'thanks' => 'Köszönet a használatért',
- 'unban-footer' => 'Üdv újra!',
- 'unban-header' => 'Megszabadultál',
- 'unban-reason' => 'Ok',
- 'username-reminder' => 'Nemrég küldött nekünk kérelmet a felhasználónévre az alkalmazásunkban. A felhasználóneved',
- 'username-sent' => 'A felhasználónevét elküldtük az e-mail címére!',
- 'disabled-header' => 'Fiókja le van tiltva',
- 'pruned-header' => 'Az Ön fiókja megtörtént',
+ 'fail-login-line1' => 'Nem sikerült bejelentkezni a fiókjába.',
+ 'fail-login-line2' => 'Ez a kérés a következő címen származik: ip (: host): time',
+ 'fail-login-subject' => 'Sikertelen bejelentkezési értesítés',
+ 'footer-link' => 'Ha problémája van az: actionText gombra kattintva, másolja és illessze be az alábbi URL-t a böngészőjébe:',
+ 'invite-header' => 'Meghívás',
+ 'invite-invited' => 'Meghívtak',
+ 'invite-message' => 'Üzenet',
+ 'invite-signup' => 'Iratkozzon fel most',
+ 'newreply-header' => 'Van új válasz a témában',
+ 'newreply-message' => 'Üzenet',
+ 'newreply-replied' => 'Válaszolt a témára',
+ 'newreply-view' => 'Nézd meg most',
+ 'no-email-found' => 'Nem találtuk meg ezt az e-mailt a rendszerünkben!',
+ 'register-code' => 'A fiók aktiválásához kattintson az alábbi gombra',
+ 'register-footer' => 'Ha a fenti gomb nem működik, másolja és illessze be az URL-t a böngészők címsorába',
+ 'register-header' => 'Szia! Köszönjük, hogy bejelentkezett',
+ 'report-comment' => 'Megjegyzés',
+ 'report-email' => 'Email',
+ 'report-header' => 'Szia Admin, egy linket jelentettek be',
+ 'report-link' => 'Link',
+ 'report-link-hash' => 'Tényleges link',
+ 'thanks' => 'Köszönet a használatért',
+ 'unban-footer' => 'Üdv újra!',
+ 'unban-header' => 'Megszabadultál',
+ 'unban-reason' => 'Ok',
+ 'username-reminder' => 'Nemrég küldött nekünk kérelmet a felhasználónévre az alkalmazásunkban. A felhasználóneved',
+ 'username-sent' => 'A felhasználónevét elküldtük az e-mail címére!',
+ 'disabled-header' => 'Fiókja le van tiltva',
+ 'pruned-header' => 'Az Ön fiókja megtörtént',
];
diff --git a/lang/hu/forum.php b/lang/hu/forum.php
index 545ebd51a..596edf80d 100644
--- a/lang/hu/forum.php
+++ b/lang/hu/forum.php
@@ -12,63 +12,63 @@
*/
return [
- 'action' => 'Akció',
- 'activity' => 'Tevékenység',
- 'approved' => 'Jóváhagyott',
- 'author' => 'Szerző',
- 'bug' => 'Bogár',
- 'category-quick-search' => 'Téma neve gyorskeresés (kategórián belül)',
- 'close-topic' => 'A téma zárolása',
- 'closed' => 'Zárva',
- 'create-new-topic' => 'Új téma létrehozása',
- 'created' => 'Alkotó',
- 'current' => 'Jelenlegi',
- 'delete-topic' => 'A téma törlése',
- 'denied' => 'Tiltott',
- 'dislike-post' => 'Nem tetszik ez a hozzászólás',
- 'display-forum' => 'Témakörök megjelenítése',
- 'edit-post' => 'Bejegyzés szerkesztése',
- 'edit-topic' => 'Téma szerkesztése',
- 'forum' => 'Fórum',
- 'forums' => 'Fórumok',
- 'implemented' => 'Megvalósult',
- 'in' => 'Ban ben',
- 'invalid' => 'Érvénytelen',
- 'label' => 'Címke',
- 'label-system' => 'Címke rendszer',
- 'last-message' => 'Utolsó üzenet',
- 'last-post-info' => 'Utolsó hozzászólás',
- 'latest' => 'Legújabb',
- 'like-post' => 'Mint ez a hozzászólás',
- 'meta-category' => 'A kategóriában szereplő fórumok listája',
- 'moderation' => 'mérséklet',
- 'name' => 'Név',
- 'not-connected' => 'Csatlakoztatnia kell',
- 'not-subscribed' => 'Nincs előfizetve',
- 'open' => 'Nyisd ki',
- 'open-topic' => 'Nyissa meg ezt a témát',
- 'permalink' => 'Permalink',
- 'pin' => 'tű',
- 'post' => 'posta',
- 'post-quick-search' => 'Postai gyorskeresés',
- 'posts' => 'Hozzászólások',
- 'quote' => 'Idézet',
- 'read-topic' => 'Olvassa el a témát',
- 'replies' => 'Válaszok',
- 'send-new-topic' => 'A téma mentése',
- 'solved' => 'Megoldva',
- 'state' => 'Állapot',
- 'stats' => 'statisztikák',
- 'subscribed' => 'Jegyzett',
+ 'action' => 'Akció',
+ 'activity' => 'Tevékenység',
+ 'approved' => 'Jóváhagyott',
+ 'author' => 'Szerző',
+ 'bug' => 'Bogár',
+ 'category-quick-search' => 'Téma neve gyorskeresés (kategórián belül)',
+ 'close-topic' => 'A téma zárolása',
+ 'closed' => 'Zárva',
+ 'create-new-topic' => 'Új téma létrehozása',
+ 'created' => 'Alkotó',
+ 'current' => 'Jelenlegi',
+ 'delete-topic' => 'A téma törlése',
+ 'denied' => 'Tiltott',
+ 'dislike-post' => 'Nem tetszik ez a hozzászólás',
+ 'display-forum' => 'Témakörök megjelenítése',
+ 'edit-post' => 'Bejegyzés szerkesztése',
+ 'edit-topic' => 'Téma szerkesztése',
+ 'forum' => 'Fórum',
+ 'forums' => 'Fórumok',
+ 'implemented' => 'Megvalósult',
+ 'in' => 'Ban ben',
+ 'invalid' => 'Érvénytelen',
+ 'label' => 'Címke',
+ 'label-system' => 'Címke rendszer',
+ 'last-message' => 'Utolsó üzenet',
+ 'last-post-info' => 'Utolsó hozzászólás',
+ 'latest' => 'Legújabb',
+ 'like-post' => 'Mint ez a hozzászólás',
+ 'meta-category' => 'A kategóriában szereplő fórumok listája',
+ 'moderation' => 'mérséklet',
+ 'name' => 'Név',
+ 'not-connected' => 'Csatlakoztatnia kell',
+ 'not-subscribed' => 'Nincs előfizetve',
+ 'open' => 'Nyisd ki',
+ 'open-topic' => 'Nyissa meg ezt a témát',
+ 'permalink' => 'Permalink',
+ 'pin' => 'tű',
+ 'post' => 'posta',
+ 'post-quick-search' => 'Postai gyorskeresés',
+ 'posts' => 'Hozzászólások',
+ 'quote' => 'Idézet',
+ 'read-topic' => 'Olvassa el a témát',
+ 'replies' => 'Válaszok',
+ 'send-new-topic' => 'A téma mentése',
+ 'solved' => 'Megoldva',
+ 'state' => 'Állapot',
+ 'stats' => 'statisztikák',
+ 'subscribed' => 'Jegyzett',
'subscription-quick-search' => 'Téma neve gyorskeresés (az előfizetéseken belül)',
- 'suggestion' => 'Javaslat',
- 'topic' => 'Téma',
- 'topic-closed' => 'Ez a téma zárva van',
- 'topic-name' => 'Téma neve',
- 'topic-quick-search' => 'Téma neve gyorskeresés',
- 'topic-title' => 'A téma címe',
- 'topics' => 'Témakörök',
- 'unpin' => 'Kibont',
- 'view-all' => 'Az összes téma megtekintése',
- 'views' => 'Nézetek',
+ 'suggestion' => 'Javaslat',
+ 'topic' => 'Téma',
+ 'topic-closed' => 'Ez a téma zárva van',
+ 'topic-name' => 'Téma neve',
+ 'topic-quick-search' => 'Téma neve gyorskeresés',
+ 'topic-title' => 'A téma címe',
+ 'topics' => 'Témakörök',
+ 'unpin' => 'Kibont',
+ 'view-all' => 'Az összes téma megtekintése',
+ 'views' => 'Nézetek',
];
diff --git a/lang/hu/graveyard.php b/lang/hu/graveyard.php
index 5a41038ba..2cd1e1313 100644
--- a/lang/hu/graveyard.php
+++ b/lang/hu/graveyard.php
@@ -12,15 +12,15 @@
*/
return [
- 'dead' => 'Halott',
- 'graveyard' => 'Temető',
- 'guidelines' => 'Irányelvek',
+ 'dead' => 'Halott',
+ 'graveyard' => 'Temető',
+ 'guidelines' => 'Irányelvek',
'guidelines-content' => '1) Nem tudja feltölteni saját feltöltéseit.
2) Ne újjáéled valamit, amit nem is tudsz elkötelezni.',
- 'howto' => 'Itt van a szabály',
- 'howto-desc1' => 'Vigye magának a nevet : 30 napos nevet a sikeres erőszakért. Ebben az esetben, amikor az aktuális vetésidő',
- 'howto-desc2' => 'Ön jutalmazza',
- 'howto-hits' => 'Találat',
- 'pending' => 'Függőben levő',
- 'resurrect' => 'Feltámad',
- 'reward' => 'Freeleech tokenek',
+ 'howto' => 'Itt van a szabály',
+ 'howto-desc1' => 'Vigye magának a nevet : 30 napos nevet a sikeres erőszakért. Ebben az esetben, amikor az aktuális vetésidő',
+ 'howto-desc2' => 'Ön jutalmazza',
+ 'howto-hits' => 'Találat',
+ 'pending' => 'Függőben levő',
+ 'resurrect' => 'Feltámad',
+ 'reward' => 'Freeleech tokenek',
];
diff --git a/lang/hu/notification.php b/lang/hu/notification.php
index 9f73f3fdd..bb2765c00 100644
--- a/lang/hu/notification.php
+++ b/lang/hu/notification.php
@@ -12,14 +12,14 @@
*/
return [
- 'date' => 'Dátum',
- 'delete' => 'Töröl',
- 'delete-all' => 'Az összes értesítés törlése',
- 'mark-all-read' => 'összes megjelölése olvasottként',
- 'mark-read' => 'Jelöld olvasottként',
- 'message' => 'Üzenet',
+ 'date' => 'Dátum',
+ 'delete' => 'Töröl',
+ 'delete-all' => 'Az összes értesítés törlése',
+ 'mark-all-read' => 'összes megjelölése olvasottként',
+ 'mark-read' => 'Jelöld olvasottként',
+ 'message' => 'Üzenet',
'no-notifications' => 'Nincsenek értesítések',
- 'notifications' => 'értesítések',
- 'read' => 'Olvas',
- 'title' => 'Cím',
+ 'notifications' => 'értesítések',
+ 'read' => 'Olvas',
+ 'title' => 'Cím',
];
diff --git a/lang/hu/page.php b/lang/hu/page.php
index dd16caa5e..fb872d5f7 100644
--- a/lang/hu/page.php
+++ b/lang/hu/page.php
@@ -12,28 +12,28 @@
*/
return [
- 'aboutus-advantage' => 'Az előny',
- 'aboutus-advantage1' => 'Tapasztalt tagjaink és munkatársaink jól ismerik a HD videó / audio és technikai támogatás világát.',
- 'aboutus-advantage2' => 'A filmek és a televíziós műsorok széles körű szenvedélye mellett az egyik legjobb választás, amit a leginkább nem - FANRES! KÖSZÖNT KÖSZÖNJÜK a tartalomgyűjtőinknek.',
- 'aboutus-advantage3' => 'Miközben elfogadjuk az adományokat, hogy a helyszínen tartsuk és működtessük, a helyszínen nem lesz kártevő PM vagy bannerek. Nincs bennünket koldulás.',
- 'aboutus-advantage4' => 'A közösségünk a korai életkor második helyett. Munkatársaink és felhasználói bázisunk között mindig segítettünk. Szenvedélyesen gondoltam arról, hogy tapasztalataid vannak: a cím semmi elképesztő.',
- 'aboutus-advantage5' => 'Szolgáltatásainkat a világ minden táján sokan használják. Meggyőződtünk arról, hogy törődünk a kódbázisunk funkcionalitásával és biztonságával, és ez megbízható és megbízható. Fejlesztőink naponta dolgoznak, hogy valóban nex-gen kódbázist biztosítsanak.',
- 'aboutus-header' => 'Szia',
- 'aboutus-rules' => 'Amire szükségünk van tőled',
- 'aboutus-rules1' => 'A közösség aktív tagja! Ez azt jelenti, hogy produktívan csatlakozhat a beszélgetésekhez, hozzáadhat jóváhagyott tartalmat és segíthet más felhasználóknak, ha képes.',
- 'aboutus-rules2' => 'A szabályok teljes elolvasása és tiszteletben tartása!',
- 'aboutus-rules3' => 'Tegyél javaslatokat! Arra törekszünk, hogy: minden nap jobb legyen a cím. Arent mondjuk, hogy minden javaslat felhasználásra kerül, de sohasem fáj az új ötletek látása.',
- 'aboutus-welcome' => 'Beszéljünk róla',
- 'aboutus-welcome-desc' => ': A cím egy közösségi építésű film / TV / FANRES adatbázis. Mindegyik adatot 2017 óta csodálatos közösségünk egészítette ki.: A címek nagy hangsúlyt fektetnek a HD tartalomra, egy proaktív felhasználói bázisra, egy félelmetes / biztonságos kódbázisra és egy segítőkész és barátságos személyzet csapatra.',
- 'blacklist-browsers' => 'böngészők',
- 'blacklist-btclient' => 'BitTorrent kliens',
- 'blacklist-clients' => 'Ügyfeleink',
- 'blacklist-desc' => 'A következő böngészők és bittorrent kliensek felsorolásra kerülnek / tiltva a címzettről: cím',
- 'blacklist-webbrowser' => 'Böngésző',
+ 'aboutus-advantage' => 'Az előny',
+ 'aboutus-advantage1' => 'Tapasztalt tagjaink és munkatársaink jól ismerik a HD videó / audio és technikai támogatás világát.',
+ 'aboutus-advantage2' => 'A filmek és a televíziós műsorok széles körű szenvedélye mellett az egyik legjobb választás, amit a leginkább nem - FANRES! KÖSZÖNT KÖSZÖNJÜK a tartalomgyűjtőinknek.',
+ 'aboutus-advantage3' => 'Miközben elfogadjuk az adományokat, hogy a helyszínen tartsuk és működtessük, a helyszínen nem lesz kártevő PM vagy bannerek. Nincs bennünket koldulás.',
+ 'aboutus-advantage4' => 'A közösségünk a korai életkor második helyett. Munkatársaink és felhasználói bázisunk között mindig segítettünk. Szenvedélyesen gondoltam arról, hogy tapasztalataid vannak: a cím semmi elképesztő.',
+ 'aboutus-advantage5' => 'Szolgáltatásainkat a világ minden táján sokan használják. Meggyőződtünk arról, hogy törődünk a kódbázisunk funkcionalitásával és biztonságával, és ez megbízható és megbízható. Fejlesztőink naponta dolgoznak, hogy valóban nex-gen kódbázist biztosítsanak.',
+ 'aboutus-header' => 'Szia',
+ 'aboutus-rules' => 'Amire szükségünk van tőled',
+ 'aboutus-rules1' => 'A közösség aktív tagja! Ez azt jelenti, hogy produktívan csatlakozhat a beszélgetésekhez, hozzáadhat jóváhagyott tartalmat és segíthet más felhasználóknak, ha képes.',
+ 'aboutus-rules2' => 'A szabályok teljes elolvasása és tiszteletben tartása!',
+ 'aboutus-rules3' => 'Tegyél javaslatokat! Arra törekszünk, hogy: minden nap jobb legyen a cím. Arent mondjuk, hogy minden javaslat felhasználásra kerül, de sohasem fáj az új ötletek látása.',
+ 'aboutus-welcome' => 'Beszéljünk róla',
+ 'aboutus-welcome-desc' => ': A cím egy közösségi építésű film / TV / FANRES adatbázis. Mindegyik adatot 2017 óta csodálatos közösségünk egészítette ki.: A címek nagy hangsúlyt fektetnek a HD tartalomra, egy proaktív felhasználói bázisra, egy félelmetes / biztonságos kódbázisra és egy segítőkész és barátságos személyzet csapatra.',
+ 'blacklist-browsers' => 'böngészők',
+ 'blacklist-btclient' => 'BitTorrent kliens',
+ 'blacklist-clients' => 'Ügyfeleink',
+ 'blacklist-desc' => 'A következő böngészők és bittorrent kliensek felsorolásra kerülnek / tiltva a címzettről: cím',
+ 'blacklist-webbrowser' => 'Böngésző',
'blacklist-emaildomain' => 'Blokkolt tartomány',
- 'email-blacklist-desc' => 'A következő e-mail tartományok blokkolva vannak a használatból. Nem regisztrálhat vagy küldhet meghívást a következőre.',
- 'email-whitelist-desc' => 'Az alábbi e-mail tartományok az egyetlen olyan e-mail tartomány, amelyet engedélyezni kell. Csak regisztrálhat vagy küldhet egy meghívást a következő használatával.',
- 'staff-group' => 'Csoport',
- 'staff-title' => 'Cím',
+ 'email-blacklist-desc' => 'A következő e-mail tartományok blokkolva vannak a használatból. Nem regisztrálhat vagy küldhet meghívást a következőre.',
+ 'email-whitelist-desc' => 'Az alábbi e-mail tartományok az egyetlen olyan e-mail tartomány, amelyet engedélyezni kell. Csak regisztrálhat vagy küldhet egy meghívást a következő használatával.',
+ 'staff-group' => 'Csoport',
+ 'staff-title' => 'Cím',
'whitelist-emaildomain' => 'Megbízható domain',
];
diff --git a/lang/hu/pagination.php b/lang/hu/pagination.php
index fb31849cb..3b9ef8ca2 100644
--- a/lang/hu/pagination.php
+++ b/lang/hu/pagination.php
@@ -24,5 +24,5 @@ return [
*/
'previous' => '« Előző',
- 'next' => 'Következő »',
+ 'next' => 'Következő »',
];
diff --git a/lang/hu/passwords.php b/lang/hu/passwords.php
index 94a25e823..6a7e780fd 100644
--- a/lang/hu/passwords.php
+++ b/lang/hu/passwords.php
@@ -24,8 +24,8 @@ return [
*/
'password' => 'A jelszónak legalább hat karakterből kell állnia és egyeznie kell a jelszó megerősítéssel.',
- 'reset' => 'Az új jelszó beállítva!',
- 'sent' => 'Jelszó-emlékeztető elküldve!',
- 'token' => 'Ez az új jelszó generálásához tartozó token érvénytelen.',
- 'user' => 'Nem található felhasználó a megadott email címmel.',
+ 'reset' => 'Az új jelszó beállítva!',
+ 'sent' => 'Jelszó-emlékeztető elküldve!',
+ 'token' => 'Ez az új jelszó generálásához tartozó token érvénytelen.',
+ 'user' => 'Nem található felhasználó a megadott email címmel.',
];
diff --git a/lang/hu/pm.php b/lang/hu/pm.php
index c64285302..b5278a0b3 100644
--- a/lang/hu/pm.php
+++ b/lang/hu/pm.php
@@ -12,28 +12,28 @@
*/
return [
- 'create' => 'teremt',
- 'delete' => 'Töröl',
+ 'create' => 'teremt',
+ 'delete' => 'Töröl',
'enter-subject' => 'Adja meg a témát',
- 'from' => 'Tól től',
- 'inbox' => 'Bejövő',
+ 'from' => 'Tól től',
+ 'inbox' => 'Bejövő',
'mark-all-read' => 'Jelölje be az összes üzenetet olvasottként',
- 'message' => 'Üzenet',
- 'messages' => 'üzenetek',
- 'new' => 'Új üzenet',
- 'outbox' => 'Kimenő üzenetek',
- 'private' => 'Magán',
- 'read' => 'Olvas',
- 'received-at' => 'Kapott At',
- 'refresh' => 'Frissítés',
- 'reply' => 'Válasz',
- 'search' => 'Keresés tárgy szerint',
- 'select' => 'Válassza a Felhasználó lehetőséget',
- 'send' => 'Küldés PM',
- 'send-to' => 'Küldés PM-re',
- 'sent' => 'Küldött',
- 'sent-at' => 'Elküldött',
- 'subject' => 'Tantárgy',
- 'to' => 'Nak nek',
- 'unread' => 'Nem olvasott',
+ 'message' => 'Üzenet',
+ 'messages' => 'üzenetek',
+ 'new' => 'Új üzenet',
+ 'outbox' => 'Kimenő üzenetek',
+ 'private' => 'Magán',
+ 'read' => 'Olvas',
+ 'received-at' => 'Kapott At',
+ 'refresh' => 'Frissítés',
+ 'reply' => 'Válasz',
+ 'search' => 'Keresés tárgy szerint',
+ 'select' => 'Válassza a Felhasználó lehetőséget',
+ 'send' => 'Küldés PM',
+ 'send-to' => 'Küldés PM-re',
+ 'sent' => 'Küldött',
+ 'sent-at' => 'Elküldött',
+ 'subject' => 'Tantárgy',
+ 'to' => 'Nak nek',
+ 'unread' => 'Nem olvasott',
];
diff --git a/lang/hu/poll.php b/lang/hu/poll.php
index 624646cd4..a8211080d 100644
--- a/lang/hu/poll.php
+++ b/lang/hu/poll.php
@@ -12,18 +12,18 @@
*/
return [
- 'add-option' => 'Add opció',
- 'create-poll' => 'Szavazás létrehozása',
- 'current' => 'Aktuális szavazás (ok)',
- 'delete-option' => 'Törlés opció',
+ 'add-option' => 'Add opció',
+ 'create-poll' => 'Szavazás létrehozása',
+ 'current' => 'Aktuális szavazás (ok)',
+ 'delete-option' => 'Törlés opció',
'multiple-choice' => 'Ez egy többszörös választás. Válassza ki a kívánt számú választ.',
- 'option' => 'választási lehetőség',
- 'poll' => 'Közvélemény kutatás',
- 'polls' => 'Szavazás',
- 'results' => 'Poll eredmények',
- 'title' => 'Cím',
- 'total' => 'Összes szavazat',
- 'vote' => 'Szavazás',
- 'vote-now' => 'Szerezd meg a szavazást most!',
- 'votes' => 'szavazatok',
+ 'option' => 'választási lehetőség',
+ 'poll' => 'Közvélemény kutatás',
+ 'polls' => 'Szavazás',
+ 'results' => 'Poll eredmények',
+ 'title' => 'Cím',
+ 'total' => 'Összes szavazat',
+ 'vote' => 'Szavazás',
+ 'vote-now' => 'Szerezd meg a szavazást most!',
+ 'votes' => 'szavazatok',
];
diff --git a/lang/hu/request.php b/lang/hu/request.php
index bbf0202e7..69500c7c8 100644
--- a/lang/hu/request.php
+++ b/lang/hu/request.php
@@ -12,67 +12,67 @@
*/
return [
- 'add-request' => 'Kérelem hozzáadása',
- 'age' => 'Kor',
- 'all-requests' => 'Minden kérés',
- 'approve' => 'Jóváhagy',
- 'bounty' => 'Nagylelkűség',
- 'bounty-claimed' => 'Bounty azt állította',
- 'bounty-unclaimed' => 'Bounty nem kérte',
- 'category' => 'Kategória',
- 'claim' => 'Követelés',
- 'claim-anon-choose' => 'Kérjük, válasszon bölcsen',
- 'claim-as-anon' => 'Szeretné ezt az anonim módon követelni',
- 'claim-now' => 'Kérje most',
- 'claimed' => 'azt állította,',
- 'current' => 'Jelenlegi',
- 'delete' => 'Törölje ezt a kérést',
+ 'add-request' => 'Kérelem hozzáadása',
+ 'age' => 'Kor',
+ 'all-requests' => 'Minden kérés',
+ 'approve' => 'Jóváhagy',
+ 'bounty' => 'Nagylelkűség',
+ 'bounty-claimed' => 'Bounty azt állította',
+ 'bounty-unclaimed' => 'Bounty nem kérte',
+ 'category' => 'Kategória',
+ 'claim' => 'Követelés',
+ 'claim-anon-choose' => 'Kérjük, válasszon bölcsen',
+ 'claim-as-anon' => 'Szeretné ezt az anonim módon követelni',
+ 'claim-now' => 'Kérje most',
+ 'claimed' => 'azt állította,',
+ 'current' => 'Jelenlegi',
+ 'delete' => 'Törölje ezt a kérést',
'delete-confirmation' => 'Biztosan törli ezt a kérést',
- 'delete-filled' => 'Ezt a kérést csak akkor lehet törölni, ha nem töltötték be',
- 'description' => 'Leírás',
- 'dont-have-bps' => 'Nincs elég bónuszod',
- 'edit-request' => 'Kérés szerkesztése',
- 'enter-bp' => 'Bónuszpontok megadása (minimum 100)',
- 'enter-hash' => 'Adja meg a feltöltött Torrent Info Info-ját',
- 'fill' => 'Tölt',
- 'fill-request' => 'Töltse ki ezt a kérést',
- 'filled' => 'Megtöltött',
- 'filled-by' => 'Töltött',
- 'for' => 'mert',
- 'fulfill' => 'eleget tesz',
- 'last-vote' => 'Utolsó szavazás',
- 'my-requests' => 'Kéréseim',
- 'no' => 'Nem,',
- 'no-imdb-id' => 'Minden kérésnek tartalmaznia kell egy IMDB számot',
- 'no-privileges' => 'Hiba: A kérés jogai le vannak tiltva',
- 'no-privileges-desc' => 'Ha úgy érzi, ez hibás, forduljon a személyzethez',
- 'no-refunds' => 'A BON csere a készítésről, a kitöltésről és a bónuszokról végleges!
NINCS VISSZATÉRÍTÉS!',
- 'pending' => 'Függőben levő',
- 'reason' => 'Ok',
- 'reject' => 'Elutasít',
- 'report' => 'Jelentés kérése',
- 'request' => 'Kérés',
- 'request-details' => 'Részletek kérése',
- 'requested-by' => 'Által kért',
- 'requests' => 'kéri',
- 'required' => 'Kívánt',
- 'reset' => 'Visszaállítás',
- 'reset-confirmation' => 'Biztosan vissza szeretné állítani ezt a kérést',
- 'reset-request' => 'A kérés visszaállítása',
- 'reward' => 'Jutalom',
- 'reward-desc' => 'Mennyi bónuszpontot szeretne jutalmazni? Minimum 100 BP',
- 'reward-from' => 'Tól től',
- 'title' => 'Cím',
- 'torrent-hash' => 'Torrent Hash',
- 'total-bounty' => 'Teljes bounty',
- 'type' => 'típus',
- 'unclaim' => 'A kérelem elutasítása',
- 'unfilled' => 'Kitöltetlen',
- 'view-filled' => 'Megtekintve töltött',
- 'view-unfilled' => 'Nézet ki nem töltött',
- 'vote' => 'Szavazás',
- 'vote-that' => 'Szavazz erre a kérésre',
- 'voters' => 'Választók',
- 'votes' => 'szavazatok',
- 'yes' => 'Igen',
+ 'delete-filled' => 'Ezt a kérést csak akkor lehet törölni, ha nem töltötték be',
+ 'description' => 'Leírás',
+ 'dont-have-bps' => 'Nincs elég bónuszod',
+ 'edit-request' => 'Kérés szerkesztése',
+ 'enter-bp' => 'Bónuszpontok megadása (minimum 100)',
+ 'enter-hash' => 'Adja meg a feltöltött Torrent Info Info-ját',
+ 'fill' => 'Tölt',
+ 'fill-request' => 'Töltse ki ezt a kérést',
+ 'filled' => 'Megtöltött',
+ 'filled-by' => 'Töltött',
+ 'for' => 'mert',
+ 'fulfill' => 'eleget tesz',
+ 'last-vote' => 'Utolsó szavazás',
+ 'my-requests' => 'Kéréseim',
+ 'no' => 'Nem,',
+ 'no-imdb-id' => 'Minden kérésnek tartalmaznia kell egy IMDB számot',
+ 'no-privileges' => 'Hiba: A kérés jogai le vannak tiltva',
+ 'no-privileges-desc' => 'Ha úgy érzi, ez hibás, forduljon a személyzethez',
+ 'no-refunds' => 'A BON csere a készítésről, a kitöltésről és a bónuszokról végleges!
NINCS VISSZATÉRÍTÉS!',
+ 'pending' => 'Függőben levő',
+ 'reason' => 'Ok',
+ 'reject' => 'Elutasít',
+ 'report' => 'Jelentés kérése',
+ 'request' => 'Kérés',
+ 'request-details' => 'Részletek kérése',
+ 'requested-by' => 'Által kért',
+ 'requests' => 'kéri',
+ 'required' => 'Kívánt',
+ 'reset' => 'Visszaállítás',
+ 'reset-confirmation' => 'Biztosan vissza szeretné állítani ezt a kérést',
+ 'reset-request' => 'A kérés visszaállítása',
+ 'reward' => 'Jutalom',
+ 'reward-desc' => 'Mennyi bónuszpontot szeretne jutalmazni? Minimum 100 BP',
+ 'reward-from' => 'Tól től',
+ 'title' => 'Cím',
+ 'torrent-hash' => 'Torrent Hash',
+ 'total-bounty' => 'Teljes bounty',
+ 'type' => 'típus',
+ 'unclaim' => 'A kérelem elutasítása',
+ 'unfilled' => 'Kitöltetlen',
+ 'view-filled' => 'Megtekintve töltött',
+ 'view-unfilled' => 'Nézet ki nem töltött',
+ 'vote' => 'Szavazás',
+ 'vote-that' => 'Szavazz erre a kérésre',
+ 'voters' => 'Választók',
+ 'votes' => 'szavazatok',
+ 'yes' => 'Igen',
];
diff --git a/lang/hu/rss.php b/lang/hu/rss.php
index 497a5ec54..46f031e12 100644
--- a/lang/hu/rss.php
+++ b/lang/hu/rss.php
@@ -12,19 +12,19 @@
*/
return [
- 'create' => 'teremt',
+ 'create' => 'teremt',
'create-private-feed' => 'Privát RSS-hírcsatorna létrehozása',
- 'create-public-feed' => 'Nyilvános RSS-hírcsatorna létrehozása',
- 'delete' => 'Töröl',
- 'edit' => 'szerkesztése',
- 'edit-private-feed' => 'Privát RSS-hírcsatorna szerkesztése',
- 'edit-public-feed' => 'Nyilvános RSS-hírcsatorna szerkesztése',
- 'feed' => 'takarmány',
- 'feeds' => 'Takarmány',
- 'name' => 'Név',
- 'public' => 'Nyilvános',
- 'private' => 'Magán',
- 'rss' => 'RSS',
- 'rss-feed' => 'RSS-hírcsatorna',
- 'type' => 'típus',
+ 'create-public-feed' => 'Nyilvános RSS-hírcsatorna létrehozása',
+ 'delete' => 'Töröl',
+ 'edit' => 'szerkesztése',
+ 'edit-private-feed' => 'Privát RSS-hírcsatorna szerkesztése',
+ 'edit-public-feed' => 'Nyilvános RSS-hírcsatorna szerkesztése',
+ 'feed' => 'takarmány',
+ 'feeds' => 'Takarmány',
+ 'name' => 'Név',
+ 'public' => 'Nyilvános',
+ 'private' => 'Magán',
+ 'rss' => 'RSS',
+ 'rss-feed' => 'RSS-hírcsatorna',
+ 'type' => 'típus',
];
diff --git a/lang/hu/staff.php b/lang/hu/staff.php
index cfd8ebb53..4cba28589 100644
--- a/lang/hu/staff.php
+++ b/lang/hu/staff.php
@@ -12,48 +12,48 @@
*/
return [
- 'audit-log' => 'Naplót',
- 'articles' => 'Cikkek',
- 'applications' => 'Alkalmazások',
- 'bans-log' => 'Betiltási napló',
- 'blocks' => 'Blocks',
- 'bot' => 'Bot',
- 'bots' => 'Botok',
- 'chat' => 'Csevegés',
- 'config-manager' => 'Config Manager',
- 'dashboard' => 'Irányítópult',
- 'failed-login-log' => 'Sikertelen bejelentkezési napló',
- 'flush-ghost-peers' => 'Öblítse ki a Ghost Peers-et',
- 'forums' => 'Fórumok',
- 'frontend' => 'frontend',
- 'general-tools' => 'Általános eszközök',
- 'groups' => 'csoportok',
- 'invites-log' => 'Meghívások naplója',
- 'laravel-log' => 'Laravel napló',
- 'links' => 'linkek',
- 'logs' => 'Naplók',
- 'mass-pm' => 'Mass PM',
- 'mass-validate-users' => 'Mass validálja a felhasználókat',
- 'moderation' => 'mérséklet',
- 'pages' => 'Oldalak',
- 'please-moderate' => 'Kérjük, mérsékelje ezt a torrentet!',
- 'polls' => 'Szavazás',
- 'reports-log' => 'Jelentések naplója',
- 'rss' => 'RSS',
- 'staff-dashboard' => 'Személyzeti irányítópult',
- 'torrent-categories' => 'Torrent kategóriák',
- 'torrent-moderation' => 'Torrent moderálás',
- 'torrent-tools' => 'Torrent eszközök',
- 'torrent-types' => 'Torrent típusok',
- 'torrents' => 'Torrents',
- 'user-gifting' => 'Felhasználói ajándékozás',
- 'user-notes' => 'Felhasználói megjegyzések naplója',
- 'user-search' => 'Felhasználói keresés',
- 'user-tools' => 'Felhasználói eszközök',
- 'warnings-log' => 'Figyelmeztető napló',
- 'you-have' => 'Neked van',
+ 'audit-log' => 'Naplót',
+ 'articles' => 'Cikkek',
+ 'applications' => 'Alkalmazások',
+ 'bans-log' => 'Betiltási napló',
+ 'blocks' => 'Blocks',
+ 'bot' => 'Bot',
+ 'bots' => 'Botok',
+ 'chat' => 'Csevegés',
+ 'config-manager' => 'Config Manager',
+ 'dashboard' => 'Irányítópult',
+ 'failed-login-log' => 'Sikertelen bejelentkezési napló',
+ 'flush-ghost-peers' => 'Öblítse ki a Ghost Peers-et',
+ 'forums' => 'Fórumok',
+ 'frontend' => 'frontend',
+ 'general-tools' => 'Általános eszközök',
+ 'groups' => 'csoportok',
+ 'invites-log' => 'Meghívások naplója',
+ 'laravel-log' => 'Laravel napló',
+ 'links' => 'linkek',
+ 'logs' => 'Naplók',
+ 'mass-pm' => 'Mass PM',
+ 'mass-validate-users' => 'Mass validálja a felhasználókat',
+ 'moderation' => 'mérséklet',
+ 'pages' => 'Oldalak',
+ 'please-moderate' => 'Kérjük, mérsékelje ezt a torrentet!',
+ 'polls' => 'Szavazás',
+ 'reports-log' => 'Jelentések naplója',
+ 'rss' => 'RSS',
+ 'staff-dashboard' => 'Személyzeti irányítópult',
+ 'torrent-categories' => 'Torrent kategóriák',
+ 'torrent-moderation' => 'Torrent moderálás',
+ 'torrent-tools' => 'Torrent eszközök',
+ 'torrent-types' => 'Torrent típusok',
+ 'torrents' => 'Torrents',
+ 'user-gifting' => 'Felhasználói ajándékozás',
+ 'user-notes' => 'Felhasználói megjegyzések naplója',
+ 'user-search' => 'Felhasználói keresés',
+ 'user-tools' => 'Felhasználói eszközök',
+ 'warnings-log' => 'Figyelmeztető napló',
+ 'you-have' => 'Neked van',
'possible-leech-cheaters' => 'Lehetséges csalók',
- 'chat-tools' => 'Csevegési eszközök',
- 'flush-chat' => 'Flash Chatbox',
- 'seedboxes' => 'Regisztrált magok',
+ 'chat-tools' => 'Csevegési eszközök',
+ 'flush-chat' => 'Flash Chatbox',
+ 'seedboxes' => 'Regisztrált magok',
];
diff --git a/lang/hu/stat.php b/lang/hu/stat.php
index 028c89f87..5e0da2961 100644
--- a/lang/hu/stat.php
+++ b/lang/hu/stat.php
@@ -12,40 +12,40 @@
*/
return [
- 'by-count' => 'Gróf szerint',
- 'by-data' => 'Adatok szerint',
- 'by-volume' => 'Térfogat szerint',
- 'group' => 'Csoport',
- 'groups' => 'csoportok',
- 'nerd-stats' => 'Nerd statisztika',
- 'nerd-stats-desc' => 'Mindannyian szeretjük a statisztikákat. Íme néhány, amit fontosnak tartunk',
- 'registration-date' => 'Regisztráció dátuma',
- 'request-fulfilled' => 'A kérelem teljesült',
- 'request-not-fulfilled' => 'A kérés nem teljesült',
+ 'by-count' => 'Gróf szerint',
+ 'by-data' => 'Adatok szerint',
+ 'by-volume' => 'Térfogat szerint',
+ 'group' => 'Csoport',
+ 'groups' => 'csoportok',
+ 'nerd-stats' => 'Nerd statisztika',
+ 'nerd-stats-desc' => 'Mindannyian szeretjük a statisztikákat. Íme néhány, amit fontosnak tartunk',
+ 'registration-date' => 'Regisztráció dátuma',
+ 'request-fulfilled' => 'A kérelem teljesült',
+ 'request-not-fulfilled' => 'A kérés nem teljesült',
'request-pending-aproval' => 'A kérés függőben van',
- 'select-category' => 'Kérjük, válasszon egy kategóriát',
- 'site-stats' => 'A webhely statisztikái',
- 'stats' => 'statisztikák',
- 'stats-format' => 'A Top 100 formátumban megjelenített összes statisztika',
- 'top-bankers' => 'A legjobb bankárok',
- 'top-bountied' => 'Top Bountied',
- 'top-completed' => 'A lap tetejére Befejezett',
- 'top-dead' => 'Top Dead',
- 'top-downloaded' => 'Legjobb letöltött torrentek',
- 'top-downloaders' => 'A legjobb letöltők',
- 'top-dying' => 'Top Dying',
- 'top-leeched' => 'Top Leeched',
- 'top-leechers' => 'Top Leechers',
- 'top-seeded' => 'Top Seeded',
- 'top-seeding' => 'Felső vetés',
- 'top-seeders' => 'Legjobb vetőgépek',
- 'top-seedsize' => 'Top Seedsize',
- 'top-seedtime' => 'Top Seedtime',
- 'top-uploaders' => 'Legjobb feltöltők',
- 'total-download' => 'Teljes letöltés',
- 'total-torrents' => 'Összes torrent',
- 'total-traffic' => 'Teljes forgalom',
- 'total-upload' => 'Teljes feltöltés',
- 'users-in-group' => 'Felhasználók csoportban',
- 'users-per-group' => 'Felhasználók csoportonként',
+ 'select-category' => 'Kérjük, válasszon egy kategóriát',
+ 'site-stats' => 'A webhely statisztikái',
+ 'stats' => 'statisztikák',
+ 'stats-format' => 'A Top 100 formátumban megjelenített összes statisztika',
+ 'top-bankers' => 'A legjobb bankárok',
+ 'top-bountied' => 'Top Bountied',
+ 'top-completed' => 'A lap tetejére Befejezett',
+ 'top-dead' => 'Top Dead',
+ 'top-downloaded' => 'Legjobb letöltött torrentek',
+ 'top-downloaders' => 'A legjobb letöltők',
+ 'top-dying' => 'Top Dying',
+ 'top-leeched' => 'Top Leeched',
+ 'top-leechers' => 'Top Leechers',
+ 'top-seeded' => 'Top Seeded',
+ 'top-seeding' => 'Felső vetés',
+ 'top-seeders' => 'Legjobb vetőgépek',
+ 'top-seedsize' => 'Top Seedsize',
+ 'top-seedtime' => 'Top Seedtime',
+ 'top-uploaders' => 'Legjobb feltöltők',
+ 'total-download' => 'Teljes letöltés',
+ 'total-torrents' => 'Összes torrent',
+ 'total-traffic' => 'Teljes forgalom',
+ 'total-upload' => 'Teljes feltöltés',
+ 'users-in-group' => 'Felhasználók csoportban',
+ 'users-per-group' => 'Felhasználók csoportonként',
];
diff --git a/lang/hu/torrent.php b/lang/hu/torrent.php
index 5a0ceda29..6dd01ab79 100644
--- a/lang/hu/torrent.php
+++ b/lang/hu/torrent.php
@@ -12,197 +12,197 @@
*/
return [
- 'activity' => 'Tevékenység',
- 'age' => 'Kor',
- 'agent' => 'Ügynök',
- 'alive' => 'Élő',
- 'announce-url' => 'Adja meg az URL-címet',
- 'announce-url-desc' => 'Kérjük, használja a fenti bejelentési URL-t új torrent létrehozásakor. Ha szeretné használni a torrentet anélkül, hogy letöltené azt a webhelyről, be kell állítania a privát zászlót és a forrást: source',
- 'announce-url-desc-url' => 'Gondja van? Lásd Útmutató ITT',
- 'announce-url-desc2' => 'Minden feltöltéshez TMDB és IMDB szükséges! A plakátok / hátterek és az ExtraInfo megragadására szolgál',
- 'approved' => 'Jóváhagyott',
- 'audio' => 'Hang',
- 'bon-tipped' => 'BON Tipped',
- 'bookmark' => 'Könyvjelző',
- 'bookmarks' => 'Könyvjelzők',
- 'bump' => 'Ütődés',
- 'cant-upload' => 'Hiba: a feltöltési jogok le vannak tiltva',
- 'cant-upload-desc' => 'Ha úgy érzi, ez hibás, forduljon a személyzethez',
- 'cards' => 'kártyák',
- 'cards-view' => 'Torrent kártyák megtekintése',
- 'categories' => 'Kategóriák',
- 'category' => 'Kategória',
- 'client' => 'Ügyfél',
- 'commited' => 'elkötelezett',
- 'completed' => 'befejezték',
- 'completed_at' => 'Befejezett:',
- 'completed-not-seeding' => 'Ez a letöltés befejeződött, de már nem vetődik',
- 'created_at' => 'Létrehozva:',
- 'credited' => 'Közös munka',
- 'current' => 'Jelenlegi',
- 'current-filters' => 'Aktuális szűrők',
- 'currently-leeching' => 'Jelenleg Leeching',
- 'currently-seeding' => 'Jelenleg vetés',
- 'dead-torrent' => 'Dead Torrent',
- 'dead-torrents' => 'Halott torrentek',
- 'delete-bookmark' => 'Törölje ezt a könyvjelzőt',
- 'description' => 'Leírás',
- 'discounts' => 'kedvezmények',
- 'double-upload' => 'Dupla feltöltés',
- 'download-all' => 'Mind letöltése',
- 'download-check' => 'Letöltés ellenőrzése',
- 'downloaded' => 'letöltve',
- 'dying-torrent' => 'Dying Torrent',
- 'dying-torrents' => 'Haldokló torrentek',
- 'encode-settings' => 'Beállítások kódolása',
- 'estimated-ratio' => 'Becsült arány a letöltés után',
- 'failed' => 'nem sikerült',
- 'feature' => 'Funkció',
- 'featured' => 'Kiemelt',
- 'featured-desc' => 'Kiemelt torrentek 100% ingyenes és Dupla feltöltés!',
- 'featured-until' => 'Ez egy kiemelt Torrent',
- 'file' => 'fájl',
- 'filters' => 'Szűrők',
- 'fl-tokens-left' => 'Neked van : a tokenek maradtak',
- 'freeleech' => 'Freeleech',
- 'freeleech-token' => 'Freeleech Token',
- 'general' => 'Tábornok',
- 'genre' => 'Műfaj',
- 'global-double-upload' => 'Globális dupla feltöltés',
- 'global-freeleech' => 'Globális Freeleech',
- 'grant' => 'Grant',
- 'greater-than' => 'Nagyobb, mint',
- 'grouping' => 'Csoportosítás',
- 'groupings' => 'csoportosulások',
- 'grouping-categories' => 'Csoportosítási kategóriák',
+ 'activity' => 'Tevékenység',
+ 'age' => 'Kor',
+ 'agent' => 'Ügynök',
+ 'alive' => 'Élő',
+ 'announce-url' => 'Adja meg az URL-címet',
+ 'announce-url-desc' => 'Kérjük, használja a fenti bejelentési URL-t új torrent létrehozásakor. Ha szeretné használni a torrentet anélkül, hogy letöltené azt a webhelyről, be kell állítania a privát zászlót és a forrást: source',
+ 'announce-url-desc-url' => 'Gondja van? Lásd Útmutató ITT',
+ 'announce-url-desc2' => 'Minden feltöltéshez TMDB és IMDB szükséges! A plakátok / hátterek és az ExtraInfo megragadására szolgál',
+ 'approved' => 'Jóváhagyott',
+ 'audio' => 'Hang',
+ 'bon-tipped' => 'BON Tipped',
+ 'bookmark' => 'Könyvjelző',
+ 'bookmarks' => 'Könyvjelzők',
+ 'bump' => 'Ütődés',
+ 'cant-upload' => 'Hiba: a feltöltési jogok le vannak tiltva',
+ 'cant-upload-desc' => 'Ha úgy érzi, ez hibás, forduljon a személyzethez',
+ 'cards' => 'kártyák',
+ 'cards-view' => 'Torrent kártyák megtekintése',
+ 'categories' => 'Kategóriák',
+ 'category' => 'Kategória',
+ 'client' => 'Ügyfél',
+ 'commited' => 'elkötelezett',
+ 'completed' => 'befejezték',
+ 'completed_at' => 'Befejezett:',
+ 'completed-not-seeding' => 'Ez a letöltés befejeződött, de már nem vetődik',
+ 'created_at' => 'Létrehozva:',
+ 'credited' => 'Közös munka',
+ 'current' => 'Jelenlegi',
+ 'current-filters' => 'Aktuális szűrők',
+ 'currently-leeching' => 'Jelenleg Leeching',
+ 'currently-seeding' => 'Jelenleg vetés',
+ 'dead-torrent' => 'Dead Torrent',
+ 'dead-torrents' => 'Halott torrentek',
+ 'delete-bookmark' => 'Törölje ezt a könyvjelzőt',
+ 'description' => 'Leírás',
+ 'discounts' => 'kedvezmények',
+ 'double-upload' => 'Dupla feltöltés',
+ 'download-all' => 'Mind letöltése',
+ 'download-check' => 'Letöltés ellenőrzése',
+ 'downloaded' => 'letöltve',
+ 'dying-torrent' => 'Dying Torrent',
+ 'dying-torrents' => 'Haldokló torrentek',
+ 'encode-settings' => 'Beállítások kódolása',
+ 'estimated-ratio' => 'Becsült arány a letöltés után',
+ 'failed' => 'nem sikerült',
+ 'feature' => 'Funkció',
+ 'featured' => 'Kiemelt',
+ 'featured-desc' => 'Kiemelt torrentek 100% ingyenes és Dupla feltöltés!',
+ 'featured-until' => 'Ez egy kiemelt Torrent',
+ 'file' => 'fájl',
+ 'filters' => 'Szűrők',
+ 'fl-tokens-left' => 'Neked van : a tokenek maradtak',
+ 'freeleech' => 'Freeleech',
+ 'freeleech-token' => 'Freeleech Token',
+ 'general' => 'Tábornok',
+ 'genre' => 'Műfaj',
+ 'global-double-upload' => 'Globális dupla feltöltés',
+ 'global-freeleech' => 'Globális Freeleech',
+ 'grant' => 'Grant',
+ 'greater-than' => 'Nagyobb, mint',
+ 'grouping' => 'Csoportosítás',
+ 'groupings' => 'csoportosulások',
+ 'grouping-categories' => 'Csoportosítási kategóriák',
'grouping-categories-desc' => 'Milyen kategóriát szeretne csoportosítani?',
- 'grouping-results' => 'Eredmények csoportosítása',
- 'groupings-view' => 'Csoportosítási nézet',
- 'have-completed' => 'befejezték',
- 'have-downloaded' => 'letöltve',
- 'have-not-completed' => 'Nincs kész',
- 'have-not-downloaded' => 'Nincs letöltve',
- 'health' => 'Egészség',
- 'history' => 'Történelem',
- 'hitrun' => 'H & R?',
- 'hit-and-runs' => 'Hit és Run számít',
- 'immune' => 'Immun?',
- 'info' => 'Info',
- 'internal' => 'Belső',
- 'internal-release' => 'Belső kiadás',
- 'last-seed-activity' => 'Utolsó vetőmag tevékenység',
- 'last-seeder' => 'Ön az utolsó maradék vetőgép! (legalább 3 alkalommal letöltött)',
- 'last-update' => 'Utolsó frissítés',
- 'leave-tip' => 'Hagyja a tippet',
- 'leecher' => 'letöltő',
- 'leechers' => 'Leechers',
- 'leeching' => 'kioldódásának',
- 'left' => 'Balra',
- 'legendary-seeder' => 'Legendás vetőgép',
- 'legendary-torrent' => 'Legendás torrent',
- 'list' => 'Lista',
- 'me' => 'Nekem',
- 'media-info' => 'Média információ',
- 'media-info-parser' => 'MediaInfo Parser',
- 'media-info-paste' => 'Illessze ide a MediaInfo dumpot',
- 'meta-desc' => 'Letöltés: név maximális sebességgel',
- 'moderation' => 'mérséklet',
- 'movies' => 'Filmek',
- 'mvp' => 'MVP',
- 'my-active-torrents' => 'Aktív torrentek',
- 'name' => 'Név',
- 'no-bookmarks' => 'Nincsenek könyvjelzők.',
- 'no-discounts' => 'Jelenleg nincs kedvezmény',
- 'no-meta' => 'Nincsenek metaadatok',
- 'no-privileges' => 'Nem tudja letölteni ezt a fájlt - további információkért kérjük, olvassa el az alábbiakat',
- 'no-privileges-desc' => 'Kérjük, oldja meg a fenti sikertelen eredményeket a letöltéshez',
- 'not-completed' => 'Elkezdte letölteni, de soha nem teljesítette',
- 'not-downloaded' => 'Nincs letöltve',
- 'old-torrent' => 'Régi torrent',
- 'optional' => 'Választható',
- 'original-output' => 'Az eredeti kimenet megjelenítése / elrejtése',
- 'participant' => 'Résztvevő',
- 'passed' => 'elmúlt',
- 'peers' => 'Peer',
- 'pending' => 'Függőben levő',
- 'personal-freeleech' => 'Személyes Freeleech',
- 'poster' => 'Poszter',
- 'poster-view' => 'Poszter nézet',
- 'posters' => 'Plakátok',
- 'prewarn' => 'Prewarned?',
- 'progress' => 'Haladás',
- 'quick-comment' => 'Gyors megjegyzés',
- 'quick-tip' => 'Gyors tippek',
- 'rated' => 'Névleges',
- 'rating' => 'Értékelés',
- 'ready' => 'Ez a fájl készen áll a letöltésre',
- 'rejected' => 'Elutasítva',
- 'released' => 'felszabadított',
- 'remaining' => 'Többi',
- 'request-reseed' => 'Kérés Reseed',
- 'requires-reseed' => 'Reseed szükséges',
- 'resurrections' => 'feltámadás',
- 'revoke' => 'visszavon',
- 'rss' => 'RSS',
- 'runtime' => 'Runtime',
- 'satisfied_in' => 'Elégedett',
- 'say-thanks' => 'Kérjük, ne felejtse el mondani köszönetét és magját , ameddig csak lehet',
- 'sd-content' => 'SD tartalom',
- 'search' => 'Keresés',
- 'seed-time' => 'Vetőmagidő',
- 'seeder' => 'Vetőgép',
- 'seeders' => 'vetőgépek',
- 'seeding' => 'oltás',
- 'seedsize' => 'Seedsize',
- 'seedtime' => 'vetés',
- 'short-completed' => 'C',
- 'short-leechs' => 'L',
- 'short-seeds' => 'S',
- 'show-files' => 'Fájlok megjelenítése',
- 'similar' => 'Hasonló torrentek',
- 'size' => 'Méret',
- 'special' => 'Különleges',
- 'special-freeleech' => 'Különleges Freeleech',
- 'started' => 'lépések',
- 'status' => 'Állapot',
- 'statistics' => 'Statisztika',
- 'stats' => 'statisztikák',
- 'sticky' => 'Ragadós',
- 'stream-optimized' => 'A patak optimalizált',
- 'subtitle' => 'Felirat',
- 'team-player' => 'Csapatjátékos',
- 'thank' => 'Köszönet',
- 'thanked' => 'Köszönetet',
- 'thanks' => 'Kösz',
- 'thanks-given' => 'Köszönöm',
- 'times' => 'Times',
- 'tip-jar' => 'Tipp jar',
- 'title' => 'Cím',
- 'titles' => 'Címek',
- 'top-completed' => 'A lap tetejére elkészült',
- 'top-dead' => 'Top halott',
- 'top-dying' => 'Top halál',
- 'top-leeched' => 'A legmagasabb fekvésű',
- 'top-seeded' => 'Felülvetve',
- 'torrent' => 'özön',
- 'torrent-request' => 'Torrent kérés',
- 'torrent-tips' => 'Összesen : a teljes BON-t a feltöltő felé fordították, amelyből : a felhasználó Öntől származik',
- 'torrent-tips-desc' => 'Ez levonásra kerül a rendelkezésre álló bónuszpontokból',
- 'torrents' => 'Torrents',
- 'trailer' => 'Pótkocsi megtekintése',
- 'type' => 'típus',
- 'types' => 'típusai',
- 'unbookmark' => 'Unbookmark',
- 'unsatisfieds' => 'Unsatisfieds',
- 'unsticky' => 'ragadó',
- 'updated' => 'korszerűsített',
- 'updated_at' => 'Frissítve:',
- 'uploaded' => 'Feltöltött',
- 'uploaded-by' => 'Feltöltötte',
- 'uploader' => 'Feltöltő',
- 'use-fl-token' => 'Használjon egy Freeleech tokent',
- 'video' => 'Videó',
- 'view-more' => 'Mutass többet',
- 'view-trailer' => 'Pótkocsi megtekintése',
- 'votes' => 'szavazatok',
+ 'grouping-results' => 'Eredmények csoportosítása',
+ 'groupings-view' => 'Csoportosítási nézet',
+ 'have-completed' => 'befejezték',
+ 'have-downloaded' => 'letöltve',
+ 'have-not-completed' => 'Nincs kész',
+ 'have-not-downloaded' => 'Nincs letöltve',
+ 'health' => 'Egészség',
+ 'history' => 'Történelem',
+ 'hitrun' => 'H & R?',
+ 'hit-and-runs' => 'Hit és Run számít',
+ 'immune' => 'Immun?',
+ 'info' => 'Info',
+ 'internal' => 'Belső',
+ 'internal-release' => 'Belső kiadás',
+ 'last-seed-activity' => 'Utolsó vetőmag tevékenység',
+ 'last-seeder' => 'Ön az utolsó maradék vetőgép! (legalább 3 alkalommal letöltött)',
+ 'last-update' => 'Utolsó frissítés',
+ 'leave-tip' => 'Hagyja a tippet',
+ 'leecher' => 'letöltő',
+ 'leechers' => 'Leechers',
+ 'leeching' => 'kioldódásának',
+ 'left' => 'Balra',
+ 'legendary-seeder' => 'Legendás vetőgép',
+ 'legendary-torrent' => 'Legendás torrent',
+ 'list' => 'Lista',
+ 'me' => 'Nekem',
+ 'media-info' => 'Média információ',
+ 'media-info-parser' => 'MediaInfo Parser',
+ 'media-info-paste' => 'Illessze ide a MediaInfo dumpot',
+ 'meta-desc' => 'Letöltés: név maximális sebességgel',
+ 'moderation' => 'mérséklet',
+ 'movies' => 'Filmek',
+ 'mvp' => 'MVP',
+ 'my-active-torrents' => 'Aktív torrentek',
+ 'name' => 'Név',
+ 'no-bookmarks' => 'Nincsenek könyvjelzők.',
+ 'no-discounts' => 'Jelenleg nincs kedvezmény',
+ 'no-meta' => 'Nincsenek metaadatok',
+ 'no-privileges' => 'Nem tudja letölteni ezt a fájlt - további információkért kérjük, olvassa el az alábbiakat',
+ 'no-privileges-desc' => 'Kérjük, oldja meg a fenti sikertelen eredményeket a letöltéshez',
+ 'not-completed' => 'Elkezdte letölteni, de soha nem teljesítette',
+ 'not-downloaded' => 'Nincs letöltve',
+ 'old-torrent' => 'Régi torrent',
+ 'optional' => 'Választható',
+ 'original-output' => 'Az eredeti kimenet megjelenítése / elrejtése',
+ 'participant' => 'Résztvevő',
+ 'passed' => 'elmúlt',
+ 'peers' => 'Peer',
+ 'pending' => 'Függőben levő',
+ 'personal-freeleech' => 'Személyes Freeleech',
+ 'poster' => 'Poszter',
+ 'poster-view' => 'Poszter nézet',
+ 'posters' => 'Plakátok',
+ 'prewarn' => 'Prewarned?',
+ 'progress' => 'Haladás',
+ 'quick-comment' => 'Gyors megjegyzés',
+ 'quick-tip' => 'Gyors tippek',
+ 'rated' => 'Névleges',
+ 'rating' => 'Értékelés',
+ 'ready' => 'Ez a fájl készen áll a letöltésre',
+ 'rejected' => 'Elutasítva',
+ 'released' => 'felszabadított',
+ 'remaining' => 'Többi',
+ 'request-reseed' => 'Kérés Reseed',
+ 'requires-reseed' => 'Reseed szükséges',
+ 'resurrections' => 'feltámadás',
+ 'revoke' => 'visszavon',
+ 'rss' => 'RSS',
+ 'runtime' => 'Runtime',
+ 'satisfied_in' => 'Elégedett',
+ 'say-thanks' => 'Kérjük, ne felejtse el mondani köszönetét és magját , ameddig csak lehet',
+ 'sd-content' => 'SD tartalom',
+ 'search' => 'Keresés',
+ 'seed-time' => 'Vetőmagidő',
+ 'seeder' => 'Vetőgép',
+ 'seeders' => 'vetőgépek',
+ 'seeding' => 'oltás',
+ 'seedsize' => 'Seedsize',
+ 'seedtime' => 'vetés',
+ 'short-completed' => 'C',
+ 'short-leechs' => 'L',
+ 'short-seeds' => 'S',
+ 'show-files' => 'Fájlok megjelenítése',
+ 'similar' => 'Hasonló torrentek',
+ 'size' => 'Méret',
+ 'special' => 'Különleges',
+ 'special-freeleech' => 'Különleges Freeleech',
+ 'started' => 'lépések',
+ 'status' => 'Állapot',
+ 'statistics' => 'Statisztika',
+ 'stats' => 'statisztikák',
+ 'sticky' => 'Ragadós',
+ 'stream-optimized' => 'A patak optimalizált',
+ 'subtitle' => 'Felirat',
+ 'team-player' => 'Csapatjátékos',
+ 'thank' => 'Köszönet',
+ 'thanked' => 'Köszönetet',
+ 'thanks' => 'Kösz',
+ 'thanks-given' => 'Köszönöm',
+ 'times' => 'Times',
+ 'tip-jar' => 'Tipp jar',
+ 'title' => 'Cím',
+ 'titles' => 'Címek',
+ 'top-completed' => 'A lap tetejére elkészült',
+ 'top-dead' => 'Top halott',
+ 'top-dying' => 'Top halál',
+ 'top-leeched' => 'A legmagasabb fekvésű',
+ 'top-seeded' => 'Felülvetve',
+ 'torrent' => 'özön',
+ 'torrent-request' => 'Torrent kérés',
+ 'torrent-tips' => 'Összesen : a teljes BON-t a feltöltő felé fordították, amelyből : a felhasználó Öntől származik',
+ 'torrent-tips-desc' => 'Ez levonásra kerül a rendelkezésre álló bónuszpontokból',
+ 'torrents' => 'Torrents',
+ 'trailer' => 'Pótkocsi megtekintése',
+ 'type' => 'típus',
+ 'types' => 'típusai',
+ 'unbookmark' => 'Unbookmark',
+ 'unsatisfieds' => 'Unsatisfieds',
+ 'unsticky' => 'ragadó',
+ 'updated' => 'korszerűsített',
+ 'updated_at' => 'Frissítve:',
+ 'uploaded' => 'Feltöltött',
+ 'uploaded-by' => 'Feltöltötte',
+ 'uploader' => 'Feltöltő',
+ 'use-fl-token' => 'Használjon egy Freeleech tokent',
+ 'video' => 'Videó',
+ 'view-more' => 'Mutass többet',
+ 'view-trailer' => 'Pótkocsi megtekintése',
+ 'votes' => 'szavazatok',
];
diff --git a/lang/hu/user.php b/lang/hu/user.php
index ed49bef60..bca2e2322 100644
--- a/lang/hu/user.php
+++ b/lang/hu/user.php
@@ -12,316 +12,316 @@
*/
return [
- 'about' => 'Ról ről',
- 'about-me' => 'Rólam',
- 'accepted-at' => 'Elfogadva:',
- 'accepted-by' => 'Által elfogadott',
- 'account-notification' => 'Fiók értesítési beállításai',
- 'account-notification-follow' => 'Értesítés fogadása, ha egy felhasználó követi a fiókját',
- 'account-notification-unfollow' => 'Értesítés fogadása, ha a felhasználó lekapcsolja fiókját',
- 'account-notification-help' => 'Ellenőrizze, hogy melyik értesítést küld a fiókjával kapcsolatban. Ezek a beállítások felülbírálódnak, ha nem engedik, hogy bármely csoport küldjön értesítést a fiókjával kapcsolatban, vagy ha az Értesítések letiltása',
- 'account-settings' => 'Fiók beállítások',
- 'achievement-privacy' => 'Teljesítménybeállítások',
- 'achievement-privacy-list' => 'Lehetővé teszi, hogy a felhasználók megtekinthessék az elért eredmények listáját',
- 'achievement-help' => 'Ellenőrizze a konkrét eredményekkel kapcsolatos információk megosztását olyan csoportokkal, amelyek hozzáférhetnek a profiljához. Ezek a beállítások felülbírálódnak, ha nem engedik, hogy bármely csoport hozzáférjen az elért eredményeihez, vagy ha privátként lépsz',
- 'achievements' => 'Kitüntetések',
- 'active' => 'Aktív',
- 'active-table' => 'Saját aktív tábla',
- 'active-torrents' => 'Aktív torrentek',
- 'active-warning' => 'Aktív figyelmeztetés',
- 'active-warnings' => 'Aktív figyelmeztetések',
- 'add-seedbox' => 'Add Seedbox',
- 'all-torrents' => 'Minden torrent',
- 'article-comments' => 'Cikk megjegyzések készült',
- 'avatar' => 'Avatar',
- 'avg-seedtime' => 'Átlagos vetésidő',
- 'badges' => 'Kitűzők',
- 'ban' => 'Felhasználó tiltása',
- 'ban-log' => 'Ban napló',
- 'become-hidden' => 'Legyél rejtve',
- 'become-visible' => 'Legyen látható',
- 'bon' => 'BON',
- 'bon-notification' => 'BON értesítési beállítások',
- 'bon-notification-gift' => 'Értesítést kap, ha egy felhasználó ajándékot ad neked',
- 'bon-notification-help' => 'Ellenőrizze, hogy mely BON tranzakciókról küldött értesítések érkeznek. Ezek a beállítások felülbírálódnak, ha nem engedélyezzük, hogy bármely csoport küldjön értesítéseket a BON-ról vagy az Értesítések letiltásáról',
- 'bookmarks' => 'Könyvjelzők',
- 'bounty-given' => 'Bounty adott',
- 'bounty-received' => 'Bounty Received',
- 'can-chat' => 'Lehet csevegni',
- 'can-comment' => 'Tud megjegyzést',
- 'can-download' => 'Letölthető',
- 'can-invite' => 'Meghívhat',
- 'can-request' => 'Lehet kérni',
- 'can-upload' => 'Lehet feltölteni',
- 'certified-banker' => 'Tanúsított bankár',
- 'certified-banker-desc' => '50 000 vagy több BON bankban van',
- 'certified-downloader' => 'Certified Downloader',
- 'certified-downloader-desc' => 'Letöltött 100 vagy több torrent!',
- 'certified-seeder' => 'Tanúsított vetőgép',
- 'certified-seeder-desc' => 'Vetés 150 vagy több torrent!',
- 'change-email' => 'E-mailt változtatni',
- 'change-email-help' => 'Miután módosította az e-mailt, újra meg kell erősítenie a fiókját',
- 'change-password' => 'Jelszó módosítása',
- 'change-password-help' => 'A jelszó megváltoztatása után újra be kell jelentkeznie',
- 'client-ip-address' => 'Kliens IP-címe',
- 'code' => 'Kód',
- 'comments' => 'Hozzászólások',
- 'created-on' => 'Készült ekkor',
- 'credited-download' => 'Hitelesített letöltés',
- 'credited-upload' => 'Hitelesített feltöltés',
- 'current-password' => 'Jelenlegi jelszó',
- 'custom-title' => 'Egyéni cím',
- 'delete' => 'Felhasználó törlése',
- 'disable-notifications' => 'Értesítések letiltása',
- 'disclaimer' => 'lemondás',
- 'disclaimer-info' => 'Alapértelmezés szerint nem regisztráljuk a felhasználók IP-címét, mint a legtöbb nyomkövető. Ha az alábbi IP-címet hozzáadja az IP-címhez, akkor várható, hogy tudja, hogy az alább felsorolt IP-k most tárolódnak az adatbázisunkban, hacsak nem törli a rekordokat.',
- 'disclaimer-info-bordered' => 'A hozzáadott Seedbox IP-ek az alább felsorolt IP-kből származó torrenteknél gyors sebességű torrent-címkét indítanak',
- 'download-bon' => 'Letöltés eltávolítva a BON Store-ból',
- 'download-recorded' => 'Felvett letöltés',
- 'download-true' => 'Igaz Letöltés',
- 'downloads' => 'Letöltések',
- 'edit' => 'Felhasználó szerkesztése',
- 'edit-profile' => 'Profil szerkesztése',
- 'enable-notifications' => 'Értesítések engedélyezése',
- 'expired' => 'Lejárt',
- 'expires-on' => 'Lejárat dátuma',
- 'extra' => 'Külön',
- 'filled-request' => 'Töltött képviselők kérései',
- 'follow' => 'Kövesse',
- 'follower-privacy' => 'Követői beállítások',
- 'follower-privacy-list' => 'A felhasználók megtekinthetik a követői listáját',
- 'follower-help' => 'Ellenőrizze az egyes követőkkel kapcsolatos információk megosztását olyan csoportokkal, amelyek hozzáférhetnek a profiljához. Ezek a beállítások felülbírálódnak, ha nem engedik, hogy bármely csoport hozzáférjen a követőihöz, vagy ha privát',
- 'followers' => 'Követő',
- 'following-notification' => 'Következő felhasználói értesítési beállítások',
- 'following-notification-upload' => 'Értesítés fogadása, ha egy követett felhasználó feltölt egy torrentet',
- 'following-notification-help' => 'Ellenőrizze, hogy melyik értesítést küldött a felhasználó által követett műveletekről. Ezek a beállítások felülbírálódnak, ha nem engedik, hogy bármely csoport küldjön értesítést a követett felhasználókról, vagy ha az Értesítések letiltása',
- 'formats-are-supported' => ': A formátumok támogatottak',
- 'forum-notification' => 'Fórum értesítési beállítások',
- 'forum-notification-topic' => 'Értesítés fogadása, amikor egy elindított téma új bejegyzést kap',
- 'forum-notification-help' => 'Ellenőrizze, hogy melyik értesítést küld a fórum tevékenységeiről. Ezek a beállítások felülbírálódnak, ha nem engedik, hogy bármely csoport küldjön értesítéseket a fórum tevékenységeiről, vagy ha az Értesítések letiltása',
- 'forum-privacy' => 'Fórum beállítások',
- 'forum-privacy-post' => 'Lehetővé teszi, hogy a felhasználók megtekinthessék a közzétett fórum-bejegyzések listáját',
- 'forum-privacy-topic' => 'Lehetővé teszi a felhasználók számára, hogy megtekinthessék a megkezdett fórum témák listáját',
- 'forum-help' => 'Ellenőrizze az adott fórumhoz kapcsolódó statisztikák és információk megosztását olyan csoportokkal, amelyek hozzáférhetnek a profilodhoz. Ezek a beállítások felülbírálódnak, ha nem engedélyezzük, hogy bármely csoport hozzáférjen a fórumhoz kapcsolódó statisztikákhoz és információkhoz, vagy ha a Go Private-ra lépsz',
- 'forum-signature' => 'Fórum aláírása',
- 'forums' => 'Fórumok',
- 'general' => 'Tábornok',
- 'general-settings' => 'Általános beállítások',
- 'gift-given' => 'Ajándékot adott',
- 'gift-received' => 'Ajándék érkezett',
- 'go-public' => 'Nyissa meg a nyilvánosságot',
- 'go-private' => 'Menj privát',
- 'history' => 'Történelem',
- 'history-table' => 'Saját történet táblázat',
- 'hit-n-runs' => 'Hit és fut',
- 'hit-n-runs-count' => 'Hit és Run Count (minden idő)',
- 'hit-n-runs-history' => 'Torrent Hit és Történelem',
- 'image' => 'Kép',
- 'important' => 'Fontos',
- 'important-info' => 'Fontos információk',
- 'information' => 'Információ',
- 'invite-friend' => 'Meghívja ismerőseit (e-mail + kötelező üzenet)',
- 'invite-tree' => 'Meghívás fa',
- 'invites' => 'Meghívottak',
- 'invites-banned' => 'Hiba: a meghívott jogok letiltottak',
- 'invites-banned-desc' => 'Ha úgy érzi, ez hiba van, forduljon a személyzethez!',
- 'invites-count' => 'Van: Számlázza a Meghívó tokeneket',
- 'invites-disabled' => 'Figyelem: A meghívók nyitva állnak a regisztráció miatt!',
- 'invites-disabled-desc' => 'Kérjük nézzen vissza hamarosan!',
- 'invites-rules' => '- Csak olyan embereket hívjon meg, akiket ismernek és bizalommal.
- Ön személyesen felelős lesz a meghívott személyekért.
- Ne hívd meg magad, ellenőrizzük minden meghívott felhasználót.
- Ne kereskedjen vagy adjon el hívásokat.
- Ha egy meghívott személyt csalásnak, kereskedési számlának vagy eladási / kereskedési felhívásnak hívják, figyelmeztetni fogják.
',
- 'invites-send' => 'Meghívások küldése',
- 'last-login' => 'Utolsó bejelentkezés',
- 'locked' => 'Zárt',
- 'locked-achievements' => 'Zárt eredmények',
- 'member-since' => 'Tag ...-óta',
- 'members-desc' => 'A regisztrált felhasználók listája: cím minden csoporttal. Keressen egy felhasználót most.',
- 'mention-notification' => '@Megjelenítési beállítások',
+ 'about' => 'Ról ről',
+ 'about-me' => 'Rólam',
+ 'accepted-at' => 'Elfogadva:',
+ 'accepted-by' => 'Által elfogadott',
+ 'account-notification' => 'Fiók értesítési beállításai',
+ 'account-notification-follow' => 'Értesítés fogadása, ha egy felhasználó követi a fiókját',
+ 'account-notification-unfollow' => 'Értesítés fogadása, ha a felhasználó lekapcsolja fiókját',
+ 'account-notification-help' => 'Ellenőrizze, hogy melyik értesítést küld a fiókjával kapcsolatban. Ezek a beállítások felülbírálódnak, ha nem engedik, hogy bármely csoport küldjön értesítést a fiókjával kapcsolatban, vagy ha az Értesítések letiltása',
+ 'account-settings' => 'Fiók beállítások',
+ 'achievement-privacy' => 'Teljesítménybeállítások',
+ 'achievement-privacy-list' => 'Lehetővé teszi, hogy a felhasználók megtekinthessék az elért eredmények listáját',
+ 'achievement-help' => 'Ellenőrizze a konkrét eredményekkel kapcsolatos információk megosztását olyan csoportokkal, amelyek hozzáférhetnek a profiljához. Ezek a beállítások felülbírálódnak, ha nem engedik, hogy bármely csoport hozzáférjen az elért eredményeihez, vagy ha privátként lépsz',
+ 'achievements' => 'Kitüntetések',
+ 'active' => 'Aktív',
+ 'active-table' => 'Saját aktív tábla',
+ 'active-torrents' => 'Aktív torrentek',
+ 'active-warning' => 'Aktív figyelmeztetés',
+ 'active-warnings' => 'Aktív figyelmeztetések',
+ 'add-seedbox' => 'Add Seedbox',
+ 'all-torrents' => 'Minden torrent',
+ 'article-comments' => 'Cikk megjegyzések készült',
+ 'avatar' => 'Avatar',
+ 'avg-seedtime' => 'Átlagos vetésidő',
+ 'badges' => 'Kitűzők',
+ 'ban' => 'Felhasználó tiltása',
+ 'ban-log' => 'Ban napló',
+ 'become-hidden' => 'Legyél rejtve',
+ 'become-visible' => 'Legyen látható',
+ 'bon' => 'BON',
+ 'bon-notification' => 'BON értesítési beállítások',
+ 'bon-notification-gift' => 'Értesítést kap, ha egy felhasználó ajándékot ad neked',
+ 'bon-notification-help' => 'Ellenőrizze, hogy mely BON tranzakciókról küldött értesítések érkeznek. Ezek a beállítások felülbírálódnak, ha nem engedélyezzük, hogy bármely csoport küldjön értesítéseket a BON-ról vagy az Értesítések letiltásáról',
+ 'bookmarks' => 'Könyvjelzők',
+ 'bounty-given' => 'Bounty adott',
+ 'bounty-received' => 'Bounty Received',
+ 'can-chat' => 'Lehet csevegni',
+ 'can-comment' => 'Tud megjegyzést',
+ 'can-download' => 'Letölthető',
+ 'can-invite' => 'Meghívhat',
+ 'can-request' => 'Lehet kérni',
+ 'can-upload' => 'Lehet feltölteni',
+ 'certified-banker' => 'Tanúsított bankár',
+ 'certified-banker-desc' => '50 000 vagy több BON bankban van',
+ 'certified-downloader' => 'Certified Downloader',
+ 'certified-downloader-desc' => 'Letöltött 100 vagy több torrent!',
+ 'certified-seeder' => 'Tanúsított vetőgép',
+ 'certified-seeder-desc' => 'Vetés 150 vagy több torrent!',
+ 'change-email' => 'E-mailt változtatni',
+ 'change-email-help' => 'Miután módosította az e-mailt, újra meg kell erősítenie a fiókját',
+ 'change-password' => 'Jelszó módosítása',
+ 'change-password-help' => 'A jelszó megváltoztatása után újra be kell jelentkeznie',
+ 'client-ip-address' => 'Kliens IP-címe',
+ 'code' => 'Kód',
+ 'comments' => 'Hozzászólások',
+ 'created-on' => 'Készült ekkor',
+ 'credited-download' => 'Hitelesített letöltés',
+ 'credited-upload' => 'Hitelesített feltöltés',
+ 'current-password' => 'Jelenlegi jelszó',
+ 'custom-title' => 'Egyéni cím',
+ 'delete' => 'Felhasználó törlése',
+ 'disable-notifications' => 'Értesítések letiltása',
+ 'disclaimer' => 'lemondás',
+ 'disclaimer-info' => 'Alapértelmezés szerint nem regisztráljuk a felhasználók IP-címét, mint a legtöbb nyomkövető. Ha az alábbi IP-címet hozzáadja az IP-címhez, akkor várható, hogy tudja, hogy az alább felsorolt IP-k most tárolódnak az adatbázisunkban, hacsak nem törli a rekordokat.',
+ 'disclaimer-info-bordered' => 'A hozzáadott Seedbox IP-ek az alább felsorolt IP-kből származó torrenteknél gyors sebességű torrent-címkét indítanak',
+ 'download-bon' => 'Letöltés eltávolítva a BON Store-ból',
+ 'download-recorded' => 'Felvett letöltés',
+ 'download-true' => 'Igaz Letöltés',
+ 'downloads' => 'Letöltések',
+ 'edit' => 'Felhasználó szerkesztése',
+ 'edit-profile' => 'Profil szerkesztése',
+ 'enable-notifications' => 'Értesítések engedélyezése',
+ 'expired' => 'Lejárt',
+ 'expires-on' => 'Lejárat dátuma',
+ 'extra' => 'Külön',
+ 'filled-request' => 'Töltött képviselők kérései',
+ 'follow' => 'Kövesse',
+ 'follower-privacy' => 'Követői beállítások',
+ 'follower-privacy-list' => 'A felhasználók megtekinthetik a követői listáját',
+ 'follower-help' => 'Ellenőrizze az egyes követőkkel kapcsolatos információk megosztását olyan csoportokkal, amelyek hozzáférhetnek a profiljához. Ezek a beállítások felülbírálódnak, ha nem engedik, hogy bármely csoport hozzáférjen a követőihöz, vagy ha privát',
+ 'followers' => 'Követő',
+ 'following-notification' => 'Következő felhasználói értesítési beállítások',
+ 'following-notification-upload' => 'Értesítés fogadása, ha egy követett felhasználó feltölt egy torrentet',
+ 'following-notification-help' => 'Ellenőrizze, hogy melyik értesítést küldött a felhasználó által követett műveletekről. Ezek a beállítások felülbírálódnak, ha nem engedik, hogy bármely csoport küldjön értesítést a követett felhasználókról, vagy ha az Értesítések letiltása',
+ 'formats-are-supported' => ': A formátumok támogatottak',
+ 'forum-notification' => 'Fórum értesítési beállítások',
+ 'forum-notification-topic' => 'Értesítés fogadása, amikor egy elindított téma új bejegyzést kap',
+ 'forum-notification-help' => 'Ellenőrizze, hogy melyik értesítést küld a fórum tevékenységeiről. Ezek a beállítások felülbírálódnak, ha nem engedik, hogy bármely csoport küldjön értesítéseket a fórum tevékenységeiről, vagy ha az Értesítések letiltása',
+ 'forum-privacy' => 'Fórum beállítások',
+ 'forum-privacy-post' => 'Lehetővé teszi, hogy a felhasználók megtekinthessék a közzétett fórum-bejegyzések listáját',
+ 'forum-privacy-topic' => 'Lehetővé teszi a felhasználók számára, hogy megtekinthessék a megkezdett fórum témák listáját',
+ 'forum-help' => 'Ellenőrizze az adott fórumhoz kapcsolódó statisztikák és információk megosztását olyan csoportokkal, amelyek hozzáférhetnek a profilodhoz. Ezek a beállítások felülbírálódnak, ha nem engedélyezzük, hogy bármely csoport hozzáférjen a fórumhoz kapcsolódó statisztikákhoz és információkhoz, vagy ha a Go Private-ra lépsz',
+ 'forum-signature' => 'Fórum aláírása',
+ 'forums' => 'Fórumok',
+ 'general' => 'Tábornok',
+ 'general-settings' => 'Általános beállítások',
+ 'gift-given' => 'Ajándékot adott',
+ 'gift-received' => 'Ajándék érkezett',
+ 'go-public' => 'Nyissa meg a nyilvánosságot',
+ 'go-private' => 'Menj privát',
+ 'history' => 'Történelem',
+ 'history-table' => 'Saját történet táblázat',
+ 'hit-n-runs' => 'Hit és fut',
+ 'hit-n-runs-count' => 'Hit és Run Count (minden idő)',
+ 'hit-n-runs-history' => 'Torrent Hit és Történelem',
+ 'image' => 'Kép',
+ 'important' => 'Fontos',
+ 'important-info' => 'Fontos információk',
+ 'information' => 'Információ',
+ 'invite-friend' => 'Meghívja ismerőseit (e-mail + kötelező üzenet)',
+ 'invite-tree' => 'Meghívás fa',
+ 'invites' => 'Meghívottak',
+ 'invites-banned' => 'Hiba: a meghívott jogok letiltottak',
+ 'invites-banned-desc' => 'Ha úgy érzi, ez hiba van, forduljon a személyzethez!',
+ 'invites-count' => 'Van: Számlázza a Meghívó tokeneket',
+ 'invites-disabled' => 'Figyelem: A meghívók nyitva állnak a regisztráció miatt!',
+ 'invites-disabled-desc' => 'Kérjük nézzen vissza hamarosan!',
+ 'invites-rules' => '- Csak olyan embereket hívjon meg, akiket ismernek és bizalommal.
- Ön személyesen felelős lesz a meghívott személyekért.
- Ne hívd meg magad, ellenőrizzük minden meghívott felhasználót.
- Ne kereskedjen vagy adjon el hívásokat.
- Ha egy meghívott személyt csalásnak, kereskedési számlának vagy eladási / kereskedési felhívásnak hívják, figyelmeztetni fogják.
',
+ 'invites-send' => 'Meghívások küldése',
+ 'last-login' => 'Utolsó bejelentkezés',
+ 'locked' => 'Zárt',
+ 'locked-achievements' => 'Zárt eredmények',
+ 'member-since' => 'Tag ...-óta',
+ 'members-desc' => 'A regisztrált felhasználók listája: cím minden csoporttal. Keressen egy felhasználót most.',
+ 'mention-notification' => '@Megjelenítési beállítások',
'mention-notification-article-comment' => 'Értesítés érkezése, amikor @ cikkben szerepel egy cikk kommentárban',
'mention-notification-torrent-comment' => 'Értesítést kaphatsz, amikor @ megérkezik a torrent megjegyzésben',
'mention-notification-request-comment' => 'Értesítés érkezése, amikor @ kérésre megjegyzésben szerepel',
- 'mention-notification-forum-post' => 'Értesítést kaphatsz, ha egy @ postázott egy fórumban',
- 'mention-notification-help' => 'Ellenőrizze, hogy melyik értesítést küldjön, ha egy felhasználó @mentions meg. Ezek a beállítások felülbírálódnak, ha nem engedélyezzük, hogy bármelyik csoport értesítést küldjön, ha egy felhasználó @mentions vagy ha letiltja az értesítéseket',
- 'moderated-by' => 'Moderált: mod on',
- 'my-bonus-points' => 'A bónusz pontjaim',
- 'my-bookmarks' => 'Saját könyvjelzők',
- 'my-fl-tokens' => 'Saját FL jelzőim',
- 'my-general-settings' => 'Általános beállítások',
- 'my-notification' => 'Értesítésem',
- 'my-notification-settings' => 'Saját értesítési beállítások',
- 'my-privacy' => 'Saját adatvédelem',
- 'my-privacy-settings' => 'Saját adatvédelmi beállítások',
- 'my-profile' => 'A profilom',
- 'my-requested' => 'A kért',
- 'my-security' => 'Biztonságom',
- 'my-security-settings' => 'Saját biztonsági beállítások',
- 'my-seedboxes' => 'Saját magtartályok',
- 'my-settings' => 'Beállításaim',
- 'my-wishlist' => 'a kívánságlistám',
- 'no-logs' => 'Ennek a felhasználónak az adatbázisában nincsenek meghívónaplók!',
- 'no-seedboxes' => 'Nincs vetőmagdoboz 😔',
- 'not-authorized' => 'Nem jogosult az oldal megtekintésére. Ez a tag inkább a ninja!',
- 'note' => 'jegyzet',
- 'notification' => 'Bejelentés',
- 'notification-settings' => 'Értesítési beállítások',
- 'notification-from-account' => 'Fiók értesítések fogadása',
- 'notification-from-account-help' => 'A rendszer, a személyzet és a következő csoportok csak fiók értesítéseket kapnak. Ezek a beállítások felülíródnak, ha az Értesítések letiltása',
- 'notification-from-bon' => 'BON értesítések fogadása',
- 'notification-from-bon-help' => 'A rendszer, a személyzet és a következő csoportok csak BON-értesítéseket kapnak. Ezek a beállítások felülíródnak, ha az Értesítések letiltása',
- 'notification-from-following' => 'Következő felhasználói értesítések fogadása',
- 'notification-from-following-help' => 'Csak az alábbi csoportoktól kapott értesítéseket kapja meg. Ezek a beállítások felülíródnak, ha az Értesítések letiltása',
- 'notification-from-forum' => 'Fórum értesítések fogadása',
- 'notification-from-forum-help' => 'Csak a rendszerről, a személyzetről és a következő csoportokról kap értesítést a fórumról. Ezek a beállítások felülíródnak, ha az Értesítések letiltása',
- 'notification-from-subscription' => 'Feliratkozási értesítések fogadása',
- 'notification-from-subscription-help' => 'Csak a rendszerről, a személyzetről és a következő csoportokról kap értesítést a fórumról. Ezek a beállítások felülíródnak, ha az Értesítések letiltása',
- 'notification-from-torrent' => 'Torrent értesítések fogadása',
- 'notification-from-torrent-help' => 'A rendszer, a személyzet és a következő csoportok csak a torrent értesítéseket kapják. Ezek a beállítások felülíródnak, ha az Értesítések letiltása',
- 'notification-from-mention' => '@Mention értesítések fogadása',
- 'notification-from-mention-help' => 'A rendszer, a személyzet és a következő csoportok csak @mention értesítéseket kapnak. Ezek a beállítások felülíródnak, ha az Értesítések letiltása',
- 'notification-from-request' => 'Kérés értesítések fogadása',
- 'notification-from-request-help' => 'A rendszer, a személyzet és a következő csoportok csak a bejelentést kapják. Ezek a beállítások felülíródnak, ha az Értesítések letiltása',
- 'notifications' => 'értesítések',
- 'offline' => 'Felhasználó Offline!',
- 'online' => 'A felhasználó online!',
- 'options' => 'Opciók',
- 'other-help' => 'Ellenőrizze az egyéb statisztikák és információk megosztását olyan csoportokkal, amelyek hozzáférhetnek a profilodhoz. Ezek a beállítások felülbírálódnak, ha nem engedélyezzük, hogy bármely csoport hozzáférjen más statisztikáihoz és információihoz, vagy ha a Go Private-ra lépsz',
- 'other-privacy' => 'Egyéb beállitások',
- 'other-privacy-online' => 'Lehetővé teszi a felhasználók számára, hogy láthassák Önt az online felhasználók blokkjában',
- 'passkey' => 'PID',
- 'passkey-warning' => 'A PID olyan, mint a jelszava, biztonságosnak kell lennie!',
- 'pending-achievements' => 'Függő eredmények',
- 'per-torrent' => 'Torrentenként',
- 'posts' => 'Hozzászólások',
- 'posts-posted' => 'Fórum hozzászólásai',
- 'privacy' => 'Magánélet',
- 'privacy-settings' => 'Adatvédelmi beállítások',
- 'private-info' => 'Privát információ',
- 'private-forum-profile' => 'Figyelem: A tagok témája és az előzmények története meg lett határozva a PRIVÁT!',
- 'private-profile' => 'Figyelem: Ezt a profilt PRIVÁTALAN állította be!',
- 'profile' => 'Profil',
- 'profile-desc' => 'Felhasználó: felhasználói profil regisztrálva: title',
- 'profile-privacy' => 'Profilbeállítások',
- 'profile-privacy-torrent-count' => 'Ossza meg a letöltések, feltöltések, magok és piócák teljes számát',
- 'profile-privacy-torrent-ratio' => 'Ossza meg teljes feltöltési / letöltési adatait a rögzített arány mellett',
- 'profile-privacy-torrent-seed' => 'Ossza meg a teljes vetésidő és az átlagos értéket',
- 'profile-privacy-title' => 'Ossza meg személyes adatait',
- 'profile-privacy-about' => 'Ossza meg személyes adatait',
- 'profile-privacy-bon-extra' => 'Ossza meg a BON statisztikáit',
- 'profile-privacy-comment-extra' => 'Ossza meg a statisztika statisztikáit',
- 'profile-privacy-forum-extra' => 'Ossza meg a fórum statisztikáit',
- 'profile-privacy-request-extra' => 'Ossza meg a kérés statisztikáit',
- 'profile-privacy-torrent-extra' => 'Ossza meg a torrent statisztikáit',
- 'profile-privacy-badge' => 'Ossza meg a megszerzett jelvényeket',
- 'profile-privacy-achievement' => 'Ossza meg legújabb eredményeit',
- 'profile-privacy-follower' => 'Ossza meg a legutóbbi követői',
- 'profile-privacy-warning' => 'Ossza meg H&R figyelmeztetéseit',
- 'profile-privacy-help' => 'Ellenőrizze, hogy milyen statisztikák és információk jelennek meg a profiljában. Ezek a beállítások felülbírálódnak, ha nem engedélyezzük, hogy bármely csoport hozzáférjen a profiljához, vagy ha privát',
- 'public-info' => 'Nyilvános információ',
- 'recent-achievements' => 'Legutóbbi eredmények',
- 'recent-followers' => 'Legutóbbi követők',
- 'registration-date' => 'Regisztráció dátuma',
- 'report' => 'Jelentés',
- 'request-help' => 'Ellenőrizze a konkrét kérésekkel kapcsolatos statisztikák és információk megosztását olyan csoportokkal, amelyek hozzáférhetnek a profiljához. Ezek a beállítások felülbírálódnak, ha nem engedélyezzük, hogy bármely csoport hozzáférjen a kért kapcsolódó statisztikákhoz és információkhoz, vagy ha Ön privátra lép',
- 'request' => 'Kérés',
- 'requested' => 'kért',
- 'requests' => 'kéri',
- 'request-comments' => 'Hozzászólások kérése készült',
- 'request-notification' => 'Értesítési beállítások kérése',
- 'request-notification-bounty' => 'Értesítés érkezése, amikor egy kért torrent új bónuszt kap',
- 'request-notification-comment' => 'Értesítést kap, ha egy kért torrent új megjegyzést kap',
- 'request-notification-fill' => 'Értesítés fogadása, amikor egy kért torrent megtelik',
- 'request-notification-fill-approve' => 'Értesítést kap, ha a kért torrent kitöltés jóváhagyásra kerül',
- 'request-notification-fill-reject' => 'Értesítést kap, ha egy kért torrent kitöltés elutasításra kerül',
- 'request-notification-claim' => 'Értesítés fogadása, amikor a kért torrent kérésre kerül',
- 'request-notification-unclaim' => 'Értesítés fogadása, ha a kért torrent kérése nem érkezik meg',
- 'request-notification-help' => 'Ellenőrizze, hogy melyik értesítést küldi a kérési tevékenységekkel kapcsolatban. Ezek a beállítások felülbírálódnak, ha nem engedélyezzük, hogy bármely csoport küldjön értesítést a kérési tevékenységről, vagy ha az Értesítések letiltása',
- 'request-privacy' => 'Beállítások kérése',
- 'request-privacy-requested' => 'Lehetővé teszi a felhasználók számára, hogy megtekinthessék a kérések listáját',
- 'reset-passkey' => 'Visszaállítási kulcs (PID) visszaállítása',
- 'reset-passkey-help' => 'A PID visszaállítása után újra kell letöltenie / újra feltöltenie az összes aktív torrentét',
- 'reset-rss' => 'RSS-kulcs (RID) visszaállítása',
- 'reset-rss-help' => 'A RID visszaállítása után újra be kell töltenie az összes aktív RSS-hírcsatornát',
- 'resurrections' => 'feltámadás',
- 'search' => 'Gyorskeresés felhasználónév szerint',
- 'security' => 'Biztonság',
- 'security-settings' => 'Biztonsági beállítások',
- 'seedboxes' => 'Seedboxes',
- 'seeds' => 'Magok',
- 'send-invite' => 'Meghívó küldése',
- 'sender' => 'Feladó',
- 'settings' => 'Beállítások',
- 'show-passkey' => 'PID megjelenítése',
- 'staff-noted' => 'Személyzet megjegyzése',
- 'statistics' => 'Statisztika',
- 'subscription-notification' => 'Előfizetési értesítési beállítások',
- 'subscription-notification-forum' => 'Értesítést kap, ha egy előfizetett fórum új témát kap',
- 'subscription-notification-topic' => 'Értesítést kap, ha egy előfizetett téma új bejegyzést kap',
- 'subscription-notification-help' => 'Ellenőrizze, hogy melyik értesítést küld az előfizetésedről. Ezek a beállítások felülbírálódnak, ha nem engedik, hogy bármely csoport küldjön értesítést az előfizetéseiről, vagy ha az Értesítések letiltása',
- 'thanks-given' => 'Köszönet',
- 'thanks-received' => 'Köszönet fogadott',
- 'tips-given' => 'Tippek',
- 'tips-received' => 'Fogadott tippek',
- 'title' => 'Cím',
- 'top-bankers' => 'A legjobb bankárok',
- 'top-downloaders-data' => 'Legjobb letöltők (adatok)',
- 'top-leechers' => 'Top Leechers',
- 'top-leechers-count' => 'Top Leechers (gróf)',
- 'top-seeders' => 'Legjobb vetőgépek',
- 'top-seeders-count' => 'Legjobb vetőgépek (gróf)',
- 'top-seeding-size' => 'Legmagasabb vetés (méret)',
- 'top-seedtime' => 'Top Seedtime',
- 'top-uploaders-data' => 'Legjobb feltöltők (adatok)',
- 'top-uploaders-count' => 'Legjobb feltöltők (gróf)',
- 'topics' => 'Témakörök',
- 'topics-started' => 'Fórum témák indultak',
- 'torrent-comments' => 'Torrent hozzászólások',
- 'torrent-help' => 'Ellenőrizze az egyes torrentekkel kapcsolatos statisztikák és információk megosztását olyan csoportokkal, amelyek hozzáférhetnek a profiljához. Ezek a beállítások felülbírálódnak, ha nem engedélyezzük, hogy bármely csoport hozzáférjen a torrenthez kapcsolódó statisztikákhoz és információkhoz, vagy ha a Go Private',
- 'torrent-notification' => 'Torrent értesítési beállítások',
- 'torrent-notification-comment' => 'Értesítést kap, ha egy feltöltött torrent új megjegyzést kap',
- 'torrent-notification-thank' => 'Értesítést kap, ha egy feltöltött torrent új köszönetet kap',
- 'torrent-notification-tip' => 'Értesítést kap, ha egy feltöltött torrent új tippet kap',
- 'torrent-notification-help' => 'Ellenőrizze, hogy mely közlemények érkeznek a torrent tevékenységekre vonatkozóan. Ezek a beállítások felülbírálódnak, ha nem engedik, hogy bármely csoport küldjön értesítéseket a torrent tevékenységekre vonatkozóan, vagy ha az Értesítések letiltása',
- 'torrent-privacy' => 'Torrent beállítások',
- 'torrent-privacy-download' => 'A felhasználók megtekinthetik a letöltött torrentek listáját',
- 'torrent-privacy-upload' => 'Lehetővé teszi a felhasználók számára a feltöltött torrentek listájának megtekintését',
- 'torrent-privacy-peer' => 'Hagyja, hogy a felhasználók láthassák Önt a torrent peer history táblázatban',
- 'torrents' => 'Torrents',
- 'torrents-history' => 'Torrents története',
- 'total-download' => 'Teljes letöltés',
- 'total-downloads' => 'Összes letöltés',
- 'total-leeching' => 'Összes Leeching',
- 'total-seeding' => 'Teljes vetés',
- 'total-seedtime' => 'Teljes idő',
- 'total-upload' => 'Teljes feltöltés',
- 'total-uploads' => 'Összes feltöltés',
- 'unban' => 'Unban Felhasználó',
- 'unfollow' => 'unfollow',
- 'unlocked' => 'kártyafüggetlen',
- 'unlocked-achievements' => 'Kinyitott eredmények',
- 'unsatisfieds' => 'Unsatisfieds',
- 'upload-bon' => 'Feltöltés a BON Store-ból',
- 'upload-recorded' => 'Felvett feltöltés',
- 'upload-true' => 'Igaz feltöltés',
- 'uploads' => 'feltöltések',
- 'uploads-table' => 'Feltöltési táblázat',
- 'user' => 'használó',
- 'user-id' => 'Felhasználói azonosító',
- 'username-seedbox' => 'Felhasználónév Seedbox',
- 'visible-to-achievement' => 'Látható eredmények',
- 'visible-to-achievement-help' => 'Az eredmények csak a személyzet és a következő csoportok számára lesznek láthatóak. Ezek a beállítások felülbírálódnak, ha a Go Private',
- 'visible-to-follower' => 'Követők láthatók',
- 'visible-to-follower-help' => 'A követői csak a személyzet és a következő csoportok számára lesznek láthatóak. Ezek a beállítások felülbírálódnak, ha a Go Private',
- 'visible-to-forum' => 'Fórum információ látható',
- 'visible-to-forum-help' => 'A fórum információkat csak a személyzet és a következő csoportok láthatják majd. Ezek a beállítások felülbírálódnak, ha a Go Private',
- 'visible-to-other' => 'Egyéb látható',
- 'visible-to-other-help' => 'A fiókkal kapcsolatos egyéb információk csak a személyzet és a következő csoportok számára lesznek láthatóak. Ezek a beállítások felülbírálódnak, ha a Privát vagy a Rejtett állapotba lép',
- 'visible-to-profile' => 'Profil látható',
- 'visible-to-profile-help' => 'Az Ön profilja csak a személyzet és a következő csoportok számára lesz látható. Ezek a beállítások felülbírálódnak, ha a Go Private',
- 'visible-to-request' => 'Információ kérhető',
- 'visible-to-request-help' => 'Kérései csak a személyzet és a következő csoportok számára lesznek láthatóak. Ezek a beállítások felülbírálódnak, ha a Go Private',
- 'visible-to-torrent' => 'Torrent információk láthatók',
- 'visible-to-torrent-help' => 'A torrent információk csak a személyzet és a következő csoportok számára lesznek láthatóak. Ezek a beállítások felülbírálódnak, ha a Privát vagy a Rejtett állapotba lép',
- 'warned-on' => 'Figyelmeztetés bekapcsolva',
- 'warning' => 'Figyelem',
- 'warning-log' => 'Figyelmeztető napló',
- 'wishlist' => 'Kívánság lista',
+ 'mention-notification-forum-post' => 'Értesítést kaphatsz, ha egy @ postázott egy fórumban',
+ 'mention-notification-help' => 'Ellenőrizze, hogy melyik értesítést küldjön, ha egy felhasználó @mentions meg. Ezek a beállítások felülbírálódnak, ha nem engedélyezzük, hogy bármelyik csoport értesítést küldjön, ha egy felhasználó @mentions vagy ha letiltja az értesítéseket',
+ 'moderated-by' => 'Moderált: mod on',
+ 'my-bonus-points' => 'A bónusz pontjaim',
+ 'my-bookmarks' => 'Saját könyvjelzők',
+ 'my-fl-tokens' => 'Saját FL jelzőim',
+ 'my-general-settings' => 'Általános beállítások',
+ 'my-notification' => 'Értesítésem',
+ 'my-notification-settings' => 'Saját értesítési beállítások',
+ 'my-privacy' => 'Saját adatvédelem',
+ 'my-privacy-settings' => 'Saját adatvédelmi beállítások',
+ 'my-profile' => 'A profilom',
+ 'my-requested' => 'A kért',
+ 'my-security' => 'Biztonságom',
+ 'my-security-settings' => 'Saját biztonsági beállítások',
+ 'my-seedboxes' => 'Saját magtartályok',
+ 'my-settings' => 'Beállításaim',
+ 'my-wishlist' => 'a kívánságlistám',
+ 'no-logs' => 'Ennek a felhasználónak az adatbázisában nincsenek meghívónaplók!',
+ 'no-seedboxes' => 'Nincs vetőmagdoboz 😔',
+ 'not-authorized' => 'Nem jogosult az oldal megtekintésére. Ez a tag inkább a ninja!',
+ 'note' => 'jegyzet',
+ 'notification' => 'Bejelentés',
+ 'notification-settings' => 'Értesítési beállítások',
+ 'notification-from-account' => 'Fiók értesítések fogadása',
+ 'notification-from-account-help' => 'A rendszer, a személyzet és a következő csoportok csak fiók értesítéseket kapnak. Ezek a beállítások felülíródnak, ha az Értesítések letiltása',
+ 'notification-from-bon' => 'BON értesítések fogadása',
+ 'notification-from-bon-help' => 'A rendszer, a személyzet és a következő csoportok csak BON-értesítéseket kapnak. Ezek a beállítások felülíródnak, ha az Értesítések letiltása',
+ 'notification-from-following' => 'Következő felhasználói értesítések fogadása',
+ 'notification-from-following-help' => 'Csak az alábbi csoportoktól kapott értesítéseket kapja meg. Ezek a beállítások felülíródnak, ha az Értesítések letiltása',
+ 'notification-from-forum' => 'Fórum értesítések fogadása',
+ 'notification-from-forum-help' => 'Csak a rendszerről, a személyzetről és a következő csoportokról kap értesítést a fórumról. Ezek a beállítások felülíródnak, ha az Értesítések letiltása',
+ 'notification-from-subscription' => 'Feliratkozási értesítések fogadása',
+ 'notification-from-subscription-help' => 'Csak a rendszerről, a személyzetről és a következő csoportokról kap értesítést a fórumról. Ezek a beállítások felülíródnak, ha az Értesítések letiltása',
+ 'notification-from-torrent' => 'Torrent értesítések fogadása',
+ 'notification-from-torrent-help' => 'A rendszer, a személyzet és a következő csoportok csak a torrent értesítéseket kapják. Ezek a beállítások felülíródnak, ha az Értesítések letiltása',
+ 'notification-from-mention' => '@Mention értesítések fogadása',
+ 'notification-from-mention-help' => 'A rendszer, a személyzet és a következő csoportok csak @mention értesítéseket kapnak. Ezek a beállítások felülíródnak, ha az Értesítések letiltása',
+ 'notification-from-request' => 'Kérés értesítések fogadása',
+ 'notification-from-request-help' => 'A rendszer, a személyzet és a következő csoportok csak a bejelentést kapják. Ezek a beállítások felülíródnak, ha az Értesítések letiltása',
+ 'notifications' => 'értesítések',
+ 'offline' => 'Felhasználó Offline!',
+ 'online' => 'A felhasználó online!',
+ 'options' => 'Opciók',
+ 'other-help' => 'Ellenőrizze az egyéb statisztikák és információk megosztását olyan csoportokkal, amelyek hozzáférhetnek a profilodhoz. Ezek a beállítások felülbírálódnak, ha nem engedélyezzük, hogy bármely csoport hozzáférjen más statisztikáihoz és információihoz, vagy ha a Go Private-ra lépsz',
+ 'other-privacy' => 'Egyéb beállitások',
+ 'other-privacy-online' => 'Lehetővé teszi a felhasználók számára, hogy láthassák Önt az online felhasználók blokkjában',
+ 'passkey' => 'PID',
+ 'passkey-warning' => 'A PID olyan, mint a jelszava, biztonságosnak kell lennie!',
+ 'pending-achievements' => 'Függő eredmények',
+ 'per-torrent' => 'Torrentenként',
+ 'posts' => 'Hozzászólások',
+ 'posts-posted' => 'Fórum hozzászólásai',
+ 'privacy' => 'Magánélet',
+ 'privacy-settings' => 'Adatvédelmi beállítások',
+ 'private-info' => 'Privát információ',
+ 'private-forum-profile' => 'Figyelem: A tagok témája és az előzmények története meg lett határozva a PRIVÁT!',
+ 'private-profile' => 'Figyelem: Ezt a profilt PRIVÁTALAN állította be!',
+ 'profile' => 'Profil',
+ 'profile-desc' => 'Felhasználó: felhasználói profil regisztrálva: title',
+ 'profile-privacy' => 'Profilbeállítások',
+ 'profile-privacy-torrent-count' => 'Ossza meg a letöltések, feltöltések, magok és piócák teljes számát',
+ 'profile-privacy-torrent-ratio' => 'Ossza meg teljes feltöltési / letöltési adatait a rögzített arány mellett',
+ 'profile-privacy-torrent-seed' => 'Ossza meg a teljes vetésidő és az átlagos értéket',
+ 'profile-privacy-title' => 'Ossza meg személyes adatait',
+ 'profile-privacy-about' => 'Ossza meg személyes adatait',
+ 'profile-privacy-bon-extra' => 'Ossza meg a BON statisztikáit',
+ 'profile-privacy-comment-extra' => 'Ossza meg a statisztika statisztikáit',
+ 'profile-privacy-forum-extra' => 'Ossza meg a fórum statisztikáit',
+ 'profile-privacy-request-extra' => 'Ossza meg a kérés statisztikáit',
+ 'profile-privacy-torrent-extra' => 'Ossza meg a torrent statisztikáit',
+ 'profile-privacy-badge' => 'Ossza meg a megszerzett jelvényeket',
+ 'profile-privacy-achievement' => 'Ossza meg legújabb eredményeit',
+ 'profile-privacy-follower' => 'Ossza meg a legutóbbi követői',
+ 'profile-privacy-warning' => 'Ossza meg H&R figyelmeztetéseit',
+ 'profile-privacy-help' => 'Ellenőrizze, hogy milyen statisztikák és információk jelennek meg a profiljában. Ezek a beállítások felülbírálódnak, ha nem engedélyezzük, hogy bármely csoport hozzáférjen a profiljához, vagy ha privát',
+ 'public-info' => 'Nyilvános információ',
+ 'recent-achievements' => 'Legutóbbi eredmények',
+ 'recent-followers' => 'Legutóbbi követők',
+ 'registration-date' => 'Regisztráció dátuma',
+ 'report' => 'Jelentés',
+ 'request-help' => 'Ellenőrizze a konkrét kérésekkel kapcsolatos statisztikák és információk megosztását olyan csoportokkal, amelyek hozzáférhetnek a profiljához. Ezek a beállítások felülbírálódnak, ha nem engedélyezzük, hogy bármely csoport hozzáférjen a kért kapcsolódó statisztikákhoz és információkhoz, vagy ha Ön privátra lép',
+ 'request' => 'Kérés',
+ 'requested' => 'kért',
+ 'requests' => 'kéri',
+ 'request-comments' => 'Hozzászólások kérése készült',
+ 'request-notification' => 'Értesítési beállítások kérése',
+ 'request-notification-bounty' => 'Értesítés érkezése, amikor egy kért torrent új bónuszt kap',
+ 'request-notification-comment' => 'Értesítést kap, ha egy kért torrent új megjegyzést kap',
+ 'request-notification-fill' => 'Értesítés fogadása, amikor egy kért torrent megtelik',
+ 'request-notification-fill-approve' => 'Értesítést kap, ha a kért torrent kitöltés jóváhagyásra kerül',
+ 'request-notification-fill-reject' => 'Értesítést kap, ha egy kért torrent kitöltés elutasításra kerül',
+ 'request-notification-claim' => 'Értesítés fogadása, amikor a kért torrent kérésre kerül',
+ 'request-notification-unclaim' => 'Értesítés fogadása, ha a kért torrent kérése nem érkezik meg',
+ 'request-notification-help' => 'Ellenőrizze, hogy melyik értesítést küldi a kérési tevékenységekkel kapcsolatban. Ezek a beállítások felülbírálódnak, ha nem engedélyezzük, hogy bármely csoport küldjön értesítést a kérési tevékenységről, vagy ha az Értesítések letiltása',
+ 'request-privacy' => 'Beállítások kérése',
+ 'request-privacy-requested' => 'Lehetővé teszi a felhasználók számára, hogy megtekinthessék a kérések listáját',
+ 'reset-passkey' => 'Visszaállítási kulcs (PID) visszaállítása',
+ 'reset-passkey-help' => 'A PID visszaállítása után újra kell letöltenie / újra feltöltenie az összes aktív torrentét',
+ 'reset-rss' => 'RSS-kulcs (RID) visszaállítása',
+ 'reset-rss-help' => 'A RID visszaállítása után újra be kell töltenie az összes aktív RSS-hírcsatornát',
+ 'resurrections' => 'feltámadás',
+ 'search' => 'Gyorskeresés felhasználónév szerint',
+ 'security' => 'Biztonság',
+ 'security-settings' => 'Biztonsági beállítások',
+ 'seedboxes' => 'Seedboxes',
+ 'seeds' => 'Magok',
+ 'send-invite' => 'Meghívó küldése',
+ 'sender' => 'Feladó',
+ 'settings' => 'Beállítások',
+ 'show-passkey' => 'PID megjelenítése',
+ 'staff-noted' => 'Személyzet megjegyzése',
+ 'statistics' => 'Statisztika',
+ 'subscription-notification' => 'Előfizetési értesítési beállítások',
+ 'subscription-notification-forum' => 'Értesítést kap, ha egy előfizetett fórum új témát kap',
+ 'subscription-notification-topic' => 'Értesítést kap, ha egy előfizetett téma új bejegyzést kap',
+ 'subscription-notification-help' => 'Ellenőrizze, hogy melyik értesítést küld az előfizetésedről. Ezek a beállítások felülbírálódnak, ha nem engedik, hogy bármely csoport küldjön értesítést az előfizetéseiről, vagy ha az Értesítések letiltása',
+ 'thanks-given' => 'Köszönet',
+ 'thanks-received' => 'Köszönet fogadott',
+ 'tips-given' => 'Tippek',
+ 'tips-received' => 'Fogadott tippek',
+ 'title' => 'Cím',
+ 'top-bankers' => 'A legjobb bankárok',
+ 'top-downloaders-data' => 'Legjobb letöltők (adatok)',
+ 'top-leechers' => 'Top Leechers',
+ 'top-leechers-count' => 'Top Leechers (gróf)',
+ 'top-seeders' => 'Legjobb vetőgépek',
+ 'top-seeders-count' => 'Legjobb vetőgépek (gróf)',
+ 'top-seeding-size' => 'Legmagasabb vetés (méret)',
+ 'top-seedtime' => 'Top Seedtime',
+ 'top-uploaders-data' => 'Legjobb feltöltők (adatok)',
+ 'top-uploaders-count' => 'Legjobb feltöltők (gróf)',
+ 'topics' => 'Témakörök',
+ 'topics-started' => 'Fórum témák indultak',
+ 'torrent-comments' => 'Torrent hozzászólások',
+ 'torrent-help' => 'Ellenőrizze az egyes torrentekkel kapcsolatos statisztikák és információk megosztását olyan csoportokkal, amelyek hozzáférhetnek a profiljához. Ezek a beállítások felülbírálódnak, ha nem engedélyezzük, hogy bármely csoport hozzáférjen a torrenthez kapcsolódó statisztikákhoz és információkhoz, vagy ha a Go Private',
+ 'torrent-notification' => 'Torrent értesítési beállítások',
+ 'torrent-notification-comment' => 'Értesítést kap, ha egy feltöltött torrent új megjegyzést kap',
+ 'torrent-notification-thank' => 'Értesítést kap, ha egy feltöltött torrent új köszönetet kap',
+ 'torrent-notification-tip' => 'Értesítést kap, ha egy feltöltött torrent új tippet kap',
+ 'torrent-notification-help' => 'Ellenőrizze, hogy mely közlemények érkeznek a torrent tevékenységekre vonatkozóan. Ezek a beállítások felülbírálódnak, ha nem engedik, hogy bármely csoport küldjön értesítéseket a torrent tevékenységekre vonatkozóan, vagy ha az Értesítések letiltása',
+ 'torrent-privacy' => 'Torrent beállítások',
+ 'torrent-privacy-download' => 'A felhasználók megtekinthetik a letöltött torrentek listáját',
+ 'torrent-privacy-upload' => 'Lehetővé teszi a felhasználók számára a feltöltött torrentek listájának megtekintését',
+ 'torrent-privacy-peer' => 'Hagyja, hogy a felhasználók láthassák Önt a torrent peer history táblázatban',
+ 'torrents' => 'Torrents',
+ 'torrents-history' => 'Torrents története',
+ 'total-download' => 'Teljes letöltés',
+ 'total-downloads' => 'Összes letöltés',
+ 'total-leeching' => 'Összes Leeching',
+ 'total-seeding' => 'Teljes vetés',
+ 'total-seedtime' => 'Teljes idő',
+ 'total-upload' => 'Teljes feltöltés',
+ 'total-uploads' => 'Összes feltöltés',
+ 'unban' => 'Unban Felhasználó',
+ 'unfollow' => 'unfollow',
+ 'unlocked' => 'kártyafüggetlen',
+ 'unlocked-achievements' => 'Kinyitott eredmények',
+ 'unsatisfieds' => 'Unsatisfieds',
+ 'upload-bon' => 'Feltöltés a BON Store-ból',
+ 'upload-recorded' => 'Felvett feltöltés',
+ 'upload-true' => 'Igaz feltöltés',
+ 'uploads' => 'feltöltések',
+ 'uploads-table' => 'Feltöltési táblázat',
+ 'user' => 'használó',
+ 'user-id' => 'Felhasználói azonosító',
+ 'username-seedbox' => 'Felhasználónév Seedbox',
+ 'visible-to-achievement' => 'Látható eredmények',
+ 'visible-to-achievement-help' => 'Az eredmények csak a személyzet és a következő csoportok számára lesznek láthatóak. Ezek a beállítások felülbírálódnak, ha a Go Private',
+ 'visible-to-follower' => 'Követők láthatók',
+ 'visible-to-follower-help' => 'A követői csak a személyzet és a következő csoportok számára lesznek láthatóak. Ezek a beállítások felülbírálódnak, ha a Go Private',
+ 'visible-to-forum' => 'Fórum információ látható',
+ 'visible-to-forum-help' => 'A fórum információkat csak a személyzet és a következő csoportok láthatják majd. Ezek a beállítások felülbírálódnak, ha a Go Private',
+ 'visible-to-other' => 'Egyéb látható',
+ 'visible-to-other-help' => 'A fiókkal kapcsolatos egyéb információk csak a személyzet és a következő csoportok számára lesznek láthatóak. Ezek a beállítások felülbírálódnak, ha a Privát vagy a Rejtett állapotba lép',
+ 'visible-to-profile' => 'Profil látható',
+ 'visible-to-profile-help' => 'Az Ön profilja csak a személyzet és a következő csoportok számára lesz látható. Ezek a beállítások felülbírálódnak, ha a Go Private',
+ 'visible-to-request' => 'Információ kérhető',
+ 'visible-to-request-help' => 'Kérései csak a személyzet és a következő csoportok számára lesznek láthatóak. Ezek a beállítások felülbírálódnak, ha a Go Private',
+ 'visible-to-torrent' => 'Torrent információk láthatók',
+ 'visible-to-torrent-help' => 'A torrent információk csak a személyzet és a következő csoportok számára lesznek láthatóak. Ezek a beállítások felülbírálódnak, ha a Privát vagy a Rejtett állapotba lép',
+ 'warned-on' => 'Figyelmeztetés bekapcsolva',
+ 'warning' => 'Figyelem',
+ 'warning-log' => 'Figyelmeztető napló',
+ 'wishlist' => 'Kívánság lista',
];
diff --git a/lang/hu/validation.php b/lang/hu/validation.php
index 200eb17f7..649770870 100644
--- a/lang/hu/validation.php
+++ b/lang/hu/validation.php
@@ -23,108 +23,108 @@ return [
|
*/
- 'accepted' => 'A(z) :attribute el kell legyen fogadva!',
- 'active_url' => 'A(z) :attribute nem érvényes url!',
- 'after' => 'A(z) :attribute :date utáni dátum kell, hogy legyen!',
- 'after_or_equal' => 'A(z) :attribute nem lehet korábbi dátum, mint :date!',
- 'alpha' => 'A(z) :attribute kizárólag betűket tartalmazhat!',
- 'alpha_dash' => 'A(z) :attribute kizárólag betűket, számokat és kötőjeleket tartalmazhat!',
- 'alpha_num' => 'A(z) :attribute kizárólag betűket és számokat tartalmazhat!',
- 'array' => 'A(z) :attribute egy tömb kell, hogy legyen!',
- 'before' => 'A(z) :attribute :date előtti dátum kell, hogy legyen!',
- 'before_or_equal' => 'A(z) :attribute nem lehet későbbi dátum, mint :date!',
- 'between' => [
+ 'accepted' => 'A(z) :attribute el kell legyen fogadva!',
+ 'active_url' => 'A(z) :attribute nem érvényes url!',
+ 'after' => 'A(z) :attribute :date utáni dátum kell, hogy legyen!',
+ 'after_or_equal' => 'A(z) :attribute nem lehet korábbi dátum, mint :date!',
+ 'alpha' => 'A(z) :attribute kizárólag betűket tartalmazhat!',
+ 'alpha_dash' => 'A(z) :attribute kizárólag betűket, számokat és kötőjeleket tartalmazhat!',
+ 'alpha_num' => 'A(z) :attribute kizárólag betűket és számokat tartalmazhat!',
+ 'array' => 'A(z) :attribute egy tömb kell, hogy legyen!',
+ 'before' => 'A(z) :attribute :date előtti dátum kell, hogy legyen!',
+ 'before_or_equal' => 'A(z) :attribute nem lehet későbbi dátum, mint :date!',
+ 'between' => [
'numeric' => 'A(z) :attribute :min és :max közötti szám kell, hogy legyen!',
- 'file' => 'A(z) :attribute mérete :min és :max kilobájt között kell, hogy legyen!',
- 'string' => 'A(z) :attribute hossza :min és :max karakter között kell, hogy legyen!',
- 'array' => 'A(z) :attribute :min - :max közötti elemet kell, hogy tartalmazzon!',
+ 'file' => 'A(z) :attribute mérete :min és :max kilobájt között kell, hogy legyen!',
+ 'string' => 'A(z) :attribute hossza :min és :max karakter között kell, hogy legyen!',
+ 'array' => 'A(z) :attribute :min - :max közötti elemet kell, hogy tartalmazzon!',
],
- 'boolean' => 'A(z) :attribute mező csak true vagy false értéket kaphat!',
- 'confirmed' => 'A(z) :attribute nem egyezik a megerősítéssel.',
- 'date' => 'A(z) :attribute nem érvényes dátum.',
- 'date_equals' => 'The :attribute must be a date equal to :date.',
- 'date_format' => 'A(z) :attribute nem egyezik az alábbi dátum formátummal :format!',
- 'different' => 'A(z) :attribute és :other értékei különbözőek kell, hogy legyenek!',
- 'digits' => 'A(z) :attribute :digits számjegyű kell, hogy legyen!',
- 'digits_between' => 'A(z) :attribute értéke :min és :max közötti számjegy lehet!',
- 'dimensions' => 'A(z) :attribute felbontása nem megfelelő.',
- 'distinct' => 'A(z) :attribute értékének egyedinek kell lennie!',
- 'email' => 'A(z) :attribute nem érvényes email formátum.',
- 'exists' => 'A(z) :attribute már létezik.',
- 'file' => 'A(z) :attribute fájl kell, hogy legyen!',
- 'filled' => 'A(z) :attribute megadása kötelező!',
- 'gt' => [
+ 'boolean' => 'A(z) :attribute mező csak true vagy false értéket kaphat!',
+ 'confirmed' => 'A(z) :attribute nem egyezik a megerősítéssel.',
+ 'date' => 'A(z) :attribute nem érvényes dátum.',
+ 'date_equals' => 'The :attribute must be a date equal to :date.',
+ 'date_format' => 'A(z) :attribute nem egyezik az alábbi dátum formátummal :format!',
+ 'different' => 'A(z) :attribute és :other értékei különbözőek kell, hogy legyenek!',
+ 'digits' => 'A(z) :attribute :digits számjegyű kell, hogy legyen!',
+ 'digits_between' => 'A(z) :attribute értéke :min és :max közötti számjegy lehet!',
+ 'dimensions' => 'A(z) :attribute felbontása nem megfelelő.',
+ 'distinct' => 'A(z) :attribute értékének egyedinek kell lennie!',
+ 'email' => 'A(z) :attribute nem érvényes email formátum.',
+ 'exists' => 'A(z) :attribute már létezik.',
+ 'file' => 'A(z) :attribute fájl kell, hogy legyen!',
+ 'filled' => 'A(z) :attribute megadása kötelező!',
+ 'gt' => [
'numeric' => 'A(z) :attribute nagyobb kell, hogy legyen, mint :value!',
- 'file' => 'A(z) :attribute mérete nagyobb kell, hogy legyen, mint :value kilobájt.',
- 'string' => 'A(z) :attribute hosszabb kell, hogy legyen, mint :value karakter.',
- 'array' => 'A(z) :attribute több, mint :value elemet kell, hogy tartalmazzon.',
+ 'file' => 'A(z) :attribute mérete nagyobb kell, hogy legyen, mint :value kilobájt.',
+ 'string' => 'A(z) :attribute hosszabb kell, hogy legyen, mint :value karakter.',
+ 'array' => 'A(z) :attribute több, mint :value elemet kell, hogy tartalmazzon.',
],
- 'gte' => [
+ 'gte' => [
'numeric' => 'A(z) :attribute nagyobb vagy egyenlő kell, hogy legyen, mint :value!',
- 'file' => 'A(z) :attribute mérete nem lehet kevesebb, mint :value kilobájt.',
- 'string' => 'A(z) :attribute hossza nem lehet kevesebb, mint :value karakter.',
- 'array' => 'A(z) :attribute legalább :value elemet kell, hogy tartalmazzon.',
+ 'file' => 'A(z) :attribute mérete nem lehet kevesebb, mint :value kilobájt.',
+ 'string' => 'A(z) :attribute hossza nem lehet kevesebb, mint :value karakter.',
+ 'array' => 'A(z) :attribute legalább :value elemet kell, hogy tartalmazzon.',
],
- 'image' => 'A(z) :attribute képfájl kell, hogy legyen!',
- 'in' => 'A kiválasztott :attribute érvénytelen.',
- 'in_array' => 'A(z) :attribute értéke nem található a(z) :other értékek között.',
- 'integer' => 'A(z) :attribute értéke szám kell, hogy legyen!',
- 'ip' => 'A(z) :attribute érvényes IP cím kell, hogy legyen!',
- 'ipv4' => 'A(z) :attribute érvényes IPv4 cím kell, hogy legyen!',
- 'ipv6' => 'A(z) :attribute érvényes IPv6 cím kell, hogy legyen!',
- 'json' => 'A(z) :attribute érvényes JSON szöveg kell, hogy legyen!',
- 'lt' => [
+ 'image' => 'A(z) :attribute képfájl kell, hogy legyen!',
+ 'in' => 'A kiválasztott :attribute érvénytelen.',
+ 'in_array' => 'A(z) :attribute értéke nem található a(z) :other értékek között.',
+ 'integer' => 'A(z) :attribute értéke szám kell, hogy legyen!',
+ 'ip' => 'A(z) :attribute érvényes IP cím kell, hogy legyen!',
+ 'ipv4' => 'A(z) :attribute érvényes IPv4 cím kell, hogy legyen!',
+ 'ipv6' => 'A(z) :attribute érvényes IPv6 cím kell, hogy legyen!',
+ 'json' => 'A(z) :attribute érvényes JSON szöveg kell, hogy legyen!',
+ 'lt' => [
'numeric' => 'A(z) :attribute kisebb kell, hogy legyen, mint :value!',
- 'file' => 'A(z) :attribute mérete kisebb kell, hogy legyen, mint :value kilobájt.',
- 'string' => 'A(z) :attribute rövidebb kell, hogy legyen, mint :value karakter.',
- 'array' => 'A(z) :attribute kevesebb, mint :value elemet kell, hogy tartalmazzon.',
+ 'file' => 'A(z) :attribute mérete kisebb kell, hogy legyen, mint :value kilobájt.',
+ 'string' => 'A(z) :attribute rövidebb kell, hogy legyen, mint :value karakter.',
+ 'array' => 'A(z) :attribute kevesebb, mint :value elemet kell, hogy tartalmazzon.',
],
- 'lte' => [
+ 'lte' => [
'numeric' => 'A(z) :attribute kisebb vagy egyenlő kell, hogy legyen, mint :value!',
- 'file' => 'A(z) :attribute mérete nem lehet több, mint :value kilobájt.',
- 'string' => 'A(z) :attribute hossza nem lehet több, mint :value karakter.',
- 'array' => 'A(z) :attribute legfeljebb :value elemet kell, hogy tartalmazzon.',
+ 'file' => 'A(z) :attribute mérete nem lehet több, mint :value kilobájt.',
+ 'string' => 'A(z) :attribute hossza nem lehet több, mint :value karakter.',
+ 'array' => 'A(z) :attribute legfeljebb :value elemet kell, hogy tartalmazzon.',
],
- 'max' => [
+ 'max' => [
'numeric' => 'A(z) :attribute értéke nem lehet nagyobb, mint :max!',
- 'file' => 'A(z) :attribute mérete nem lehet több, mint :max kilobájt.',
- 'string' => 'A(z) :attribute hossza nem lehet több, mint :max karakter.',
- 'array' => 'A(z) :attribute legfeljebb :max elemet kell, hogy tartalmazzon.',
+ 'file' => 'A(z) :attribute mérete nem lehet több, mint :max kilobájt.',
+ 'string' => 'A(z) :attribute hossza nem lehet több, mint :max karakter.',
+ 'array' => 'A(z) :attribute legfeljebb :max elemet kell, hogy tartalmazzon.',
],
- 'mimes' => 'A(z) :attribute kizárólag az alábbi fájlformátumok egyike lehet: :values.',
- 'mimetypes' => 'A(z) :attribute kizárólag az alábbi fájlformátumok egyike lehet: :values.',
- 'min' => [
+ 'mimes' => 'A(z) :attribute kizárólag az alábbi fájlformátumok egyike lehet: :values.',
+ 'mimetypes' => 'A(z) :attribute kizárólag az alábbi fájlformátumok egyike lehet: :values.',
+ 'min' => [
'numeric' => 'A(z) :attribute értéke nem lehet kisebb, mint :min!',
- 'file' => 'A(z) :attribute mérete nem lehet kevesebb, mint :min kilobájt.',
- 'string' => 'A(z) :attribute hossza nem lehet kevesebb, mint :min karakter.',
- 'array' => 'A(z) :attribute legalább :min elemet kell, hogy tartalmazzon.',
+ 'file' => 'A(z) :attribute mérete nem lehet kevesebb, mint :min kilobájt.',
+ 'string' => 'A(z) :attribute hossza nem lehet kevesebb, mint :min karakter.',
+ 'array' => 'A(z) :attribute legalább :min elemet kell, hogy tartalmazzon.',
],
- 'not_in' => 'A(z) :attribute értéke érvénytelen.',
- 'not_regex' => 'A(z) :attribute formátuma érvénytelen.',
- 'numeric' => 'A(z) :attribute szám kell, hogy legyen!',
- 'present' => 'A(z) :attribute mező nem található!',
- 'regex' => 'A(z) :attribute formátuma érvénytelen.',
- 'required' => 'A(z) :attribute megadása kötelező!',
- 'required_if' => 'A(z) :attribute megadása kötelező, ha a(z) :other értéke :value!',
- 'required_unless' => 'A(z) :attribute megadása kötelező, ha a(z) :other értéke nem :values!',
- 'required_with' => 'A(z) :attribute megadása kötelező, ha a(z) :values érték létezik.',
- 'required_with_all' => 'A(z) :attribute megadása kötelező, ha a(z) :values értékek léteznek.',
- 'required_without' => 'A(z) :attribute megadása kötelező, ha a(z) :values érték nem létezik.',
+ 'not_in' => 'A(z) :attribute értéke érvénytelen.',
+ 'not_regex' => 'A(z) :attribute formátuma érvénytelen.',
+ 'numeric' => 'A(z) :attribute szám kell, hogy legyen!',
+ 'present' => 'A(z) :attribute mező nem található!',
+ 'regex' => 'A(z) :attribute formátuma érvénytelen.',
+ 'required' => 'A(z) :attribute megadása kötelező!',
+ 'required_if' => 'A(z) :attribute megadása kötelező, ha a(z) :other értéke :value!',
+ 'required_unless' => 'A(z) :attribute megadása kötelező, ha a(z) :other értéke nem :values!',
+ 'required_with' => 'A(z) :attribute megadása kötelező, ha a(z) :values érték létezik.',
+ 'required_with_all' => 'A(z) :attribute megadása kötelező, ha a(z) :values értékek léteznek.',
+ 'required_without' => 'A(z) :attribute megadása kötelező, ha a(z) :values érték nem létezik.',
'required_without_all' => 'A(z) :attribute megadása kötelező, ha egyik :values érték sem létezik.',
- 'same' => 'A(z) :attribute és :other mezőknek egyezniük kell!',
- 'size' => [
+ 'same' => 'A(z) :attribute és :other mezőknek egyezniük kell!',
+ 'size' => [
'numeric' => 'A(z) :attribute értéke :size kell, hogy legyen!',
- 'file' => 'A(z) :attribute mérete :size kilobájt kell, hogy legyen!',
- 'string' => 'A(z) :attribute hossza :size karakter kell, hogy legyen!',
- 'array' => 'A(z) :attribute :size elemet kell tartalmazzon!',
+ 'file' => 'A(z) :attribute mérete :size kilobájt kell, hogy legyen!',
+ 'string' => 'A(z) :attribute hossza :size karakter kell, hogy legyen!',
+ 'array' => 'A(z) :attribute :size elemet kell tartalmazzon!',
],
- 'starts_with' => 'The :attribute must start with one of the following: :values',
- 'string' => 'A(z) :attribute szöveg kell, hogy legyen.',
- 'timezone' => 'A(z) :attribute nem létező időzona.',
- 'unique' => 'A(z) :attribute már foglalt.',
- 'uploaded' => 'A(z) :attribute feltöltése sikertelen.',
- 'url' => 'A(z) :attribute érvénytelen link.',
- 'uuid' => 'The :attribute must be a valid UUID.',
+ 'starts_with' => 'The :attribute must start with one of the following: :values',
+ 'string' => 'A(z) :attribute szöveg kell, hogy legyen.',
+ 'timezone' => 'A(z) :attribute nem létező időzona.',
+ 'unique' => 'A(z) :attribute már foglalt.',
+ 'uploaded' => 'A(z) :attribute feltöltése sikertelen.',
+ 'url' => 'A(z) :attribute érvénytelen link.',
+ 'uuid' => 'The :attribute must be a valid UUID.',
/*
|--------------------------------------------------------------------------
@@ -155,7 +155,7 @@ return [
*/
'attributes' => [
- 'name' => 'név',
+ 'name' => 'név',
'password' => 'jelszó',
],
];
diff --git a/lang/id/articles.php b/lang/id/articles.php
index 8c1a16976..2356eaa4e 100644
--- a/lang/id/articles.php
+++ b/lang/id/articles.php
@@ -12,8 +12,8 @@
*/
return [
- 'articles' => 'Artikel',
+ 'articles' => 'Artikel',
'meta-articles' => 'Artikel dan berita tentang pelacak dan komunitas',
- 'published-at' => 'Diterbitkan di',
- 'read-more' => 'Baca lebih lajut',
+ 'published-at' => 'Diterbitkan di',
+ 'read-more' => 'Baca lebih lajut',
];
diff --git a/lang/id/auth.php b/lang/id/auth.php
index 0a01b2916..e492acbc3 100644
--- a/lang/id/auth.php
+++ b/lang/id/auth.php
@@ -23,6 +23,6 @@ return [
|
*/
- 'failed' => 'Identitas tersebut tidak cocok dengan data kami.',
+ 'failed' => 'Identitas tersebut tidak cocok dengan data kami.',
'throttle' => 'Terlalu banyak usaha masuk. Silahkan coba lagi dalam :seconds detik.',
];
diff --git a/lang/id/backup.php b/lang/id/backup.php
index 663b1347b..b346fe944 100644
--- a/lang/id/backup.php
+++ b/lang/id/backup.php
@@ -12,32 +12,32 @@
*/
return [
- 'actions' => 'Tindakan',
- 'backup' => 'Cadangkan',
- 'backup_doesnt_exist' => 'File cadangan tidak ada.',
- 'create_a_new_backup' => 'Buat Cadangan Penuh',
- 'create_a_new_files_backup' => 'Buat File Cadangan',
- 'create_a_new_db_backup' => 'Buat Backup Database',
- 'create_confirmation_message' => 'Memuat ulang halaman dalam 3 detik.',
- 'create_confirmation_title' => 'Pencadangan selesai',
- 'create_error_message' => 'File cadangan TIDAK dapat dibuat.',
- 'create_error_title' => 'Kesalahan cadangan',
- 'create_warning_message' => 'Cadangan Anda TIDAK mungkin telah dibuat. Silakan periksa file log untuk detailnya.',
- 'create_warning_title' => 'Kesalahan yang tidak diketahui',
- 'date' => 'Tanggal',
- 'delete' => 'Menghapus',
- 'delete_cancel_message' => 'File cadangan TIDAK dihapus.',
- 'delete_cancel_title' => 'Tidak apa-apa',
- 'delete_confirm' => 'Yakin ingin menghapus file cadangan ini?',
- 'delete_confirmation_message' => 'File cadangan telah dihapus.',
- 'delete_confirmation_title' => 'Selesai',
- 'delete_error_message' => 'File cadangan TIDAK dihapus.',
- 'delete_error_title' => 'Kesalahan',
- 'download' => 'Unduh',
- 'existing_backups' => 'Backup yang ada',
- 'file_size' => 'Ukuran file',
- 'location' => 'Lokasi',
- 'manager' => 'Manajer',
- 'no_disks_configured' => 'Tidak ada disk cadangan yang dikonfigurasi di config / backup.php',
+ 'actions' => 'Tindakan',
+ 'backup' => 'Cadangkan',
+ 'backup_doesnt_exist' => 'File cadangan tidak ada.',
+ 'create_a_new_backup' => 'Buat Cadangan Penuh',
+ 'create_a_new_files_backup' => 'Buat File Cadangan',
+ 'create_a_new_db_backup' => 'Buat Backup Database',
+ 'create_confirmation_message' => 'Memuat ulang halaman dalam 3 detik.',
+ 'create_confirmation_title' => 'Pencadangan selesai',
+ 'create_error_message' => 'File cadangan TIDAK dapat dibuat.',
+ 'create_error_title' => 'Kesalahan cadangan',
+ 'create_warning_message' => 'Cadangan Anda TIDAK mungkin telah dibuat. Silakan periksa file log untuk detailnya.',
+ 'create_warning_title' => 'Kesalahan yang tidak diketahui',
+ 'date' => 'Tanggal',
+ 'delete' => 'Menghapus',
+ 'delete_cancel_message' => 'File cadangan TIDAK dihapus.',
+ 'delete_cancel_title' => 'Tidak apa-apa',
+ 'delete_confirm' => 'Yakin ingin menghapus file cadangan ini?',
+ 'delete_confirmation_message' => 'File cadangan telah dihapus.',
+ 'delete_confirmation_title' => 'Selesai',
+ 'delete_error_message' => 'File cadangan TIDAK dihapus.',
+ 'delete_error_title' => 'Kesalahan',
+ 'download' => 'Unduh',
+ 'existing_backups' => 'Backup yang ada',
+ 'file_size' => 'Ukuran file',
+ 'location' => 'Lokasi',
+ 'manager' => 'Manajer',
+ 'no_disks_configured' => 'Tidak ada disk cadangan yang dikonfigurasi di config / backup.php',
'only_local_downloads_supported' => 'Hanya unduhan dari sistem file lokal yang didukung.',
];
diff --git a/lang/id/blocks.php b/lang/id/blocks.php
index 4331d92c0..939376048 100644
--- a/lang/id/blocks.php
+++ b/lang/id/blocks.php
@@ -12,19 +12,19 @@
*/
return [
- 'chatbox' => 'Kotak obrolan',
- 'click' => 'Klik',
- 'to-enable-editor' => 'untuk mengaktifkan editor',
- 'featured-by' => 'Ditampilkan oleh',
- 'featured-torrents' => 'Torrents Unggulan',
+ 'chatbox' => 'Kotak obrolan',
+ 'click' => 'Klik',
+ 'to-enable-editor' => 'untuk mengaktifkan editor',
+ 'featured-by' => 'Ditampilkan oleh',
+ 'featured-torrents' => 'Torrents Unggulan',
'featured-torrents-intro' => 'Dapatkan Mereka selagi Bisa!',
- 'featured-until' => 'Ini adalah fitur torrent hingga',
- 'top-torrents' => 'Torrent Teratas',
- 'latest-posts' => 'Posting terbaru',
- 'latest-topics' => 'Topik Terbaru',
- 'active-in-last' => 'Terakhir aktif',
- 'users-online' => 'Pengguna Online',
- 'check-news' => 'Berita (periksa setiap hari)',
- 'new-news' => 'Berita Baru',
- 'new-torrents' => 'Torrent baru',
+ 'featured-until' => 'Ini adalah fitur torrent hingga',
+ 'top-torrents' => 'Torrent Teratas',
+ 'latest-posts' => 'Posting terbaru',
+ 'latest-topics' => 'Topik Terbaru',
+ 'active-in-last' => 'Terakhir aktif',
+ 'users-online' => 'Pengguna Online',
+ 'check-news' => 'Berita (periksa setiap hari)',
+ 'new-news' => 'Berita Baru',
+ 'new-torrents' => 'Torrent baru',
];
diff --git a/lang/id/bon.php b/lang/id/bon.php
index 2b9d90b21..7eaf4f20b 100644
--- a/lang/id/bon.php
+++ b/lang/id/bon.php
@@ -12,44 +12,44 @@
*/
return [
- 'activated' => 'Diaktifkan',
- 'active' => 'Diaktifkan!',
- 'amount' => 'Jumlah',
- 'bon' => 'BON',
- 'bonus' => 'Bonus',
- 'date' => 'Tanggal',
- 'earning' => 'Penghasilan',
- 'earning-rate' => 'Pada tingkat penghasilan ini, Anda akan mendapatkan yang berikut ini per kerangka waktu ..',
- 'earnings' => 'Pendapatan',
- 'exchange' => 'Bertukar',
- 'exchange-warning' => 'Pertukaran bersifat final, Periksa kembali pilihan Anda sebelum melakukan pertukaran.',
- 'extended-stats' => 'Statistik yang Diperpanjang',
- 'gift' => 'Hadiah',
- 'gift-bonus' => 'Poin Bonus Hadiah',
- 'gift-to' => 'Poin Bonus Hadiah Ke',
- 'gifts' => 'Hadiah',
- 'item' => 'Barang',
- 'no-refund' => 'TIDAK ADA PENGEMBALIAN UANG!',
- 'per-day' => 'Poin Per Hari',
- 'per-hour' => 'Poin Per Jam',
- 'per-minute' => 'Poin Per Menit',
- 'per-month' => 'Poin Per Bulan',
- 'per-second' => 'Poin Per Detik',
- 'per-week' => 'Poin Per Minggu',
- 'per-year' => 'Poin Per Tahun',
- 'points' => 'Poin',
- 'receiver' => 'Penerima',
- 'review-seeds' => 'Tinjau Semua Torrents Unggulan',
- 'send-gift' => 'Mengirim hadiah',
- 'sender' => 'Pengirim',
- 'store' => 'Toko',
- 'tips' => 'Kiat',
- 'total' => 'Total Penghasilan',
- 'total-gifts' => 'Total Hadiah BON',
- 'total-tips' => 'Dalam Total BON Tips',
+ 'activated' => 'Diaktifkan',
+ 'active' => 'Diaktifkan!',
+ 'amount' => 'Jumlah',
+ 'bon' => 'BON',
+ 'bonus' => 'Bonus',
+ 'date' => 'Tanggal',
+ 'earning' => 'Penghasilan',
+ 'earning-rate' => 'Pada tingkat penghasilan ini, Anda akan mendapatkan yang berikut ini per kerangka waktu ..',
+ 'earnings' => 'Pendapatan',
+ 'exchange' => 'Bertukar',
+ 'exchange-warning' => 'Pertukaran bersifat final, Periksa kembali pilihan Anda sebelum melakukan pertukaran.',
+ 'extended-stats' => 'Statistik yang Diperpanjang',
+ 'gift' => 'Hadiah',
+ 'gift-bonus' => 'Poin Bonus Hadiah',
+ 'gift-to' => 'Poin Bonus Hadiah Ke',
+ 'gifts' => 'Hadiah',
+ 'item' => 'Barang',
+ 'no-refund' => 'TIDAK ADA PENGEMBALIAN UANG!',
+ 'per-day' => 'Poin Per Hari',
+ 'per-hour' => 'Poin Per Jam',
+ 'per-minute' => 'Poin Per Menit',
+ 'per-month' => 'Poin Per Bulan',
+ 'per-second' => 'Poin Per Detik',
+ 'per-week' => 'Poin Per Minggu',
+ 'per-year' => 'Poin Per Tahun',
+ 'points' => 'Poin',
+ 'receiver' => 'Penerima',
+ 'review-seeds' => 'Tinjau Semua Torrents Unggulan',
+ 'send-gift' => 'Mengirim hadiah',
+ 'sender' => 'Pengirim',
+ 'store' => 'Toko',
+ 'tips' => 'Kiat',
+ 'total' => 'Total Penghasilan',
+ 'total-gifts' => 'Total Hadiah BON',
+ 'total-tips' => 'Dalam Total BON Tips',
'you-have-received-gifts' => 'Anda Telah Menerima',
- 'you-have-sent-gifts' => 'Kamu telah mengirim',
- 'you-have-received-tips' => 'Anda Telah Menerima',
- 'you-have-sent-tips' => 'Kamu telah mengirim',
- 'your-points' => 'Poin Anda',
+ 'you-have-sent-gifts' => 'Kamu telah mengirim',
+ 'you-have-received-tips' => 'Anda Telah Menerima',
+ 'you-have-sent-tips' => 'Kamu telah mengirim',
+ 'your-points' => 'Poin Anda',
];
diff --git a/lang/id/bot.php b/lang/id/bot.php
index 241421443..e7dde9a8d 100644
--- a/lang/id/bot.php
+++ b/lang/id/bot.php
@@ -12,15 +12,15 @@
*/
return [
- 'about' => 'Tentang',
- 'bot' => 'Bot',
- 'bots' => 'Bot',
- 'color' => 'Warna',
- 'command' => 'Perintah',
- 'edit-bot' => 'Edit Bot',
+ 'about' => 'Tentang',
+ 'bot' => 'Bot',
+ 'bots' => 'Bot',
+ 'color' => 'Warna',
+ 'command' => 'Perintah',
+ 'edit-bot' => 'Edit Bot',
'emoji-code' => 'Kode Emoji',
- 'help' => 'Membantu',
- 'icon' => 'Ikon',
- 'info' => 'Info',
- 'name' => 'Nama',
+ 'help' => 'Membantu',
+ 'icon' => 'Ikon',
+ 'info' => 'Info',
+ 'name' => 'Nama',
];
diff --git a/lang/id/bug.php b/lang/id/bug.php
index 40ecf4522..f0346e076 100644
--- a/lang/id/bug.php
+++ b/lang/id/bug.php
@@ -12,15 +12,15 @@
*/
return [
- 'bug-report' => 'Laporan bug',
+ 'bug-report' => 'Laporan bug',
'bug-report-description' => 'Laporkan bug situs',
- 'enter-description' => 'Jelaskan masalah sebaik mungkin',
- 'enter-email' => 'Masukkan email Anda',
- 'enter-title' => 'Silakan pilih judul yang tepat',
- 'enter-username' => 'Silakan masukkan nama pengguna Anda',
- 'high' => 'Tinggi',
- 'low' => 'Rendah',
- 'priority' => 'Prioritas',
- 'priority-description' => 'Pilih hanya sangat tinggi jika bug benar-benar masalah untuk menggunakan situs ini.',
- 'very-high' => 'Sangat tinggi',
+ 'enter-description' => 'Jelaskan masalah sebaik mungkin',
+ 'enter-email' => 'Masukkan email Anda',
+ 'enter-title' => 'Silakan pilih judul yang tepat',
+ 'enter-username' => 'Silakan masukkan nama pengguna Anda',
+ 'high' => 'Tinggi',
+ 'low' => 'Rendah',
+ 'priority' => 'Prioritas',
+ 'priority-description' => 'Pilih hanya sangat tinggi jika bug benar-benar masalah untuk menggunakan situs ini.',
+ 'very-high' => 'Sangat tinggi',
];
diff --git a/lang/id/common.php b/lang/id/common.php
index 7d571a307..2a2166fa5 100644
--- a/lang/id/common.php
+++ b/lang/id/common.php
@@ -12,179 +12,179 @@
*/
return [
- 'a-an-art' => '',
- 'about' => 'Tentang kami',
- 'account' => 'Rekening',
- 'achievement-title' => 'Luar biasa',
+ 'a-an-art' => '',
+ 'about' => 'Tentang kami',
+ 'account' => 'Rekening',
+ 'achievement-title' => 'Luar biasa',
'achievement-unlocked' => 'Anda membuka pencapaian ": name"',
- 'active' => 'Aktif',
- 'active-warning' => 'Peringatan aktif',
- 'add' => 'Menambahkan',
- 'added' => 'Ditambahkan',
- 'amount' => 'Jumlah',
- 'anonymous' => 'Anonim',
- 'author' => 'Penulis',
- 'balance' => 'Keseimbangan',
- 'blacklist' => 'Daftar Hitam Klien',
- 'buffer' => 'Penyangga',
- 'bug' => 'Laporkan Bug',
- 'but' => 'Tapi',
- 'cancel' => 'Membatalkan',
- 'category' => 'Kategori',
- 'categories' => 'Kategori',
- 'close' => 'Dekat',
- 'comment' => 'Komentar',
- 'comments' => 'Komentar',
- 'community' => 'Masyarakat',
- 'contact' => 'Kontak',
- 'contact-desc' => 'Permintaan kontak ini akan dikirimkan kepada pemilik dan akan segera menghubungi Anda',
- 'contact-header' => 'Halo',
- 'create' => 'Membuat',
- 'created_at' => 'Dibuat di',
- 'day' => 'Hari',
- 'delete' => 'Menghapus',
- 'delete-your-comment' => 'Hapus komentar Anda',
- 'description' => 'Deskripsi',
- 'direction' => 'Arah',
- 'disable' => 'Nonaktifkan',
- 'doubleup_activated' => 'Mode unggah Global Double diaktifkan',
- 'download' => 'Unduh',
- 'edit' => 'Edit',
- 'edit-your-comment' => 'Edit komentar Anda',
- 'email' => 'E-mail',
- 'email-blacklist' => 'Daftar Hitam Email',
- 'email-whitelist' => 'Daftar Putih Email',
+ 'active' => 'Aktif',
+ 'active-warning' => 'Peringatan aktif',
+ 'add' => 'Menambahkan',
+ 'added' => 'Ditambahkan',
+ 'amount' => 'Jumlah',
+ 'anonymous' => 'Anonim',
+ 'author' => 'Penulis',
+ 'balance' => 'Keseimbangan',
+ 'blacklist' => 'Daftar Hitam Klien',
+ 'buffer' => 'Penyangga',
+ 'bug' => 'Laporkan Bug',
+ 'but' => 'Tapi',
+ 'cancel' => 'Membatalkan',
+ 'category' => 'Kategori',
+ 'categories' => 'Kategori',
+ 'close' => 'Dekat',
+ 'comment' => 'Komentar',
+ 'comments' => 'Komentar',
+ 'community' => 'Masyarakat',
+ 'contact' => 'Kontak',
+ 'contact-desc' => 'Permintaan kontak ini akan dikirimkan kepada pemilik dan akan segera menghubungi Anda',
+ 'contact-header' => 'Halo',
+ 'create' => 'Membuat',
+ 'created_at' => 'Dibuat di',
+ 'day' => 'Hari',
+ 'delete' => 'Menghapus',
+ 'delete-your-comment' => 'Hapus komentar Anda',
+ 'description' => 'Deskripsi',
+ 'direction' => 'Arah',
+ 'disable' => 'Nonaktifkan',
+ 'doubleup_activated' => 'Mode unggah Global Double diaktifkan',
+ 'download' => 'Unduh',
+ 'edit' => 'Edit',
+ 'edit-your-comment' => 'Edit komentar Anda',
+ 'email' => 'E-mail',
+ 'email-blacklist' => 'Daftar Hitam Email',
+ 'email-whitelist' => 'Daftar Putih Email',
'email-list-notactive' => 'Sistem Daftar Putih / Blacklist Email Tidak Diaktifkan',
- 'enable' => 'Memungkinkan',
- 'enter' => 'Memasukkan',
- 'error' => 'Kesalahan',
- 'everyday' => 'Setiap hari',
- 'expired' => 'Kedaluwarsa',
- 'extra' => 'Tambahan',
- 'extra-stats' => 'Extra-Stats',
- 'faq' => 'Faq',
- 'files' => 'File',
- 'fl_token' => 'Token Freeleech',
- 'fl_tokens' => 'Token Freeleech',
- 'for' => 'untuk',
- 'forum' => 'Forum',
- 'free' => 'Bebas',
- 'freeleech_activated' => 'Mode Global Freeleech diaktifkan',
- 'global' => 'Global',
- 'group' => 'Kelompok',
- 'groups' => 'Grup',
- 'hidden' => 'Tersembunyi',
- 'high-speeds' => 'Kecepatan tinggi',
- 'home' => 'Rumah',
- 'hot' => 'Panas!',
- 'hour' => 'Jam',
- 'huge' => 'Sangat besar',
- 'info' => 'Info',
- 'internal' => 'Intern',
- 'ip' => 'AKU P',
- 'is-allowed' => 'Diperbolehkan',
- 'large' => 'Besar',
- 'latest' => 'Terbaru',
- 'latest-posts' => 'Posting terbaru',
- 'latest-topics' => 'Topik Terbaru',
- 'legal' => 'Hukum',
- 'legend' => 'Legenda',
- 'lists' => 'Daftar',
- 'lock-account' => 'Kunci akun',
- 'logout' => 'Keluar',
- 'members' => 'Anggota',
- 'message' => 'Pesan',
- 'minute' => 'Menit',
- 'moderated-by' => 'Dimoderasi oleh',
- 'moderation' => 'Moderasi',
- 'moderation-approve' => 'Menyetujui',
- 'moderation-postpone' => 'Menunda',
- 'moderation-reject' => 'Menolak',
- 'month' => 'Bulan',
- 'months' => 'Bulan',
- 'my' => 'Saya',
- 'name' => 'Nama',
- 'navigation' => 'Navigasi',
- 'new' => 'Baru!',
- 'new-adj' => 'Baru',
- 'news' => 'Berita',
- 'next' => 'Berikutnya',
- 'no' => 'Tidak',
- 'no-comments' => 'Belum Ada Komentar',
- 'no-result' => 'Tidak ada hasil dalam database untuk permintaan',
- 'notifications' => 'Notifikasi',
- 'older-than' => 'Lebih tua dari',
- 'oldest' => 'Tertua',
- 'openreg_activated' => 'Buka pendaftaran diaktifkan',
- 'order-by' => 'Dipesan oleh',
- 'other' => 'Lain',
- 'pages' => 'Halaman',
- 'password' => 'Kata sandi',
- 'patron' => 'Menjadi Pelindung',
- 'pending-torrents' => 'Torrents yang tertunda',
- 'personal' => 'Pribadi',
- 'plural-suffix' => 's',
- 'port' => 'Pelabuhan',
- 'position' => 'Posisi',
- 'posts' => 'Posting',
- 'powered-by' => 'Didukung oleh UNIT3D',
- 'preview' => 'Pratinjau',
- 'previous' => 'Sebelumnya',
- 'progress' => 'Kemajuan',
- 'publish' => 'Menerbitkan',
- 'quantity' => 'Kuantitas',
- 'quick-search' => 'Pencarian Cepat',
- 'ratio' => 'Perbandingan',
- 'reason' => 'Alasan',
- 'remove' => 'Menghapus',
- 'report' => 'Melaporkan',
- 'resend' => 'Kirim ulang',
- 'reporter' => 'Reporter',
- 'required' => 'Wajib',
- 'results' => 'Hasil',
- 'rss-system' => 'Sistem RSS',
- 'rules' => 'Aturan',
- 'save' => 'Menyimpan',
- 'search' => 'Pencarian',
- 'search-results' => 'Hasil Pencarian',
- 'search-results-desc' => 'Silakan lihat hasil Anda di bawah ini',
- 'second' => 'Kedua',
- 'select' => 'Memilih',
- 'sort' => 'Menyortir',
- 'special' => 'Khusus',
- 'staff' => 'Staf',
- 'staff-tools' => 'Alat staf',
- 'stats' => 'Statistik',
- 'status' => 'Status',
- 'sticked' => 'Menempel',
- 'submit' => 'Menyerahkan',
- 'subscriptions' => 'Berlangganan',
- 'teams' => 'Tim',
- 'terms' => 'Syarat Penggunaan',
- 'times' => 'Waktu',
- 'title' => 'Judul',
- 'top-bountied' => 'Diberi Top',
- 'topics' => 'Topik',
- 'tracker-codes' => 'Kode pelacak',
- 'type' => 'Mengetik',
- 'type-verb' => 'Mengetik',
- 'types' => 'Jenis',
- 'genre' => 'Aliran',
- 'genres' => 'Genre',
- 'action' => 'Tindakan',
- 'actions' => 'Tindakan',
- 'unknown' => 'Tidak dikenal',
+ 'enable' => 'Memungkinkan',
+ 'enter' => 'Memasukkan',
+ 'error' => 'Kesalahan',
+ 'everyday' => 'Setiap hari',
+ 'expired' => 'Kedaluwarsa',
+ 'extra' => 'Tambahan',
+ 'extra-stats' => 'Extra-Stats',
+ 'faq' => 'Faq',
+ 'files' => 'File',
+ 'fl_token' => 'Token Freeleech',
+ 'fl_tokens' => 'Token Freeleech',
+ 'for' => 'untuk',
+ 'forum' => 'Forum',
+ 'free' => 'Bebas',
+ 'freeleech_activated' => 'Mode Global Freeleech diaktifkan',
+ 'global' => 'Global',
+ 'group' => 'Kelompok',
+ 'groups' => 'Grup',
+ 'hidden' => 'Tersembunyi',
+ 'high-speeds' => 'Kecepatan tinggi',
+ 'home' => 'Rumah',
+ 'hot' => 'Panas!',
+ 'hour' => 'Jam',
+ 'huge' => 'Sangat besar',
+ 'info' => 'Info',
+ 'internal' => 'Intern',
+ 'ip' => 'AKU P',
+ 'is-allowed' => 'Diperbolehkan',
+ 'large' => 'Besar',
+ 'latest' => 'Terbaru',
+ 'latest-posts' => 'Posting terbaru',
+ 'latest-topics' => 'Topik Terbaru',
+ 'legal' => 'Hukum',
+ 'legend' => 'Legenda',
+ 'lists' => 'Daftar',
+ 'lock-account' => 'Kunci akun',
+ 'logout' => 'Keluar',
+ 'members' => 'Anggota',
+ 'message' => 'Pesan',
+ 'minute' => 'Menit',
+ 'moderated-by' => 'Dimoderasi oleh',
+ 'moderation' => 'Moderasi',
+ 'moderation-approve' => 'Menyetujui',
+ 'moderation-postpone' => 'Menunda',
+ 'moderation-reject' => 'Menolak',
+ 'month' => 'Bulan',
+ 'months' => 'Bulan',
+ 'my' => 'Saya',
+ 'name' => 'Nama',
+ 'navigation' => 'Navigasi',
+ 'new' => 'Baru!',
+ 'new-adj' => 'Baru',
+ 'news' => 'Berita',
+ 'next' => 'Berikutnya',
+ 'no' => 'Tidak',
+ 'no-comments' => 'Belum Ada Komentar',
+ 'no-result' => 'Tidak ada hasil dalam database untuk permintaan',
+ 'notifications' => 'Notifikasi',
+ 'older-than' => 'Lebih tua dari',
+ 'oldest' => 'Tertua',
+ 'openreg_activated' => 'Buka pendaftaran diaktifkan',
+ 'order-by' => 'Dipesan oleh',
+ 'other' => 'Lain',
+ 'pages' => 'Halaman',
+ 'password' => 'Kata sandi',
+ 'patron' => 'Menjadi Pelindung',
+ 'pending-torrents' => 'Torrents yang tertunda',
+ 'personal' => 'Pribadi',
+ 'plural-suffix' => 's',
+ 'port' => 'Pelabuhan',
+ 'position' => 'Posisi',
+ 'posts' => 'Posting',
+ 'powered-by' => 'Didukung oleh UNIT3D',
+ 'preview' => 'Pratinjau',
+ 'previous' => 'Sebelumnya',
+ 'progress' => 'Kemajuan',
+ 'publish' => 'Menerbitkan',
+ 'quantity' => 'Kuantitas',
+ 'quick-search' => 'Pencarian Cepat',
+ 'ratio' => 'Perbandingan',
+ 'reason' => 'Alasan',
+ 'remove' => 'Menghapus',
+ 'report' => 'Melaporkan',
+ 'resend' => 'Kirim ulang',
+ 'reporter' => 'Reporter',
+ 'required' => 'Wajib',
+ 'results' => 'Hasil',
+ 'rss-system' => 'Sistem RSS',
+ 'rules' => 'Aturan',
+ 'save' => 'Menyimpan',
+ 'search' => 'Pencarian',
+ 'search-results' => 'Hasil Pencarian',
+ 'search-results-desc' => 'Silakan lihat hasil Anda di bawah ini',
+ 'second' => 'Kedua',
+ 'select' => 'Memilih',
+ 'sort' => 'Menyortir',
+ 'special' => 'Khusus',
+ 'staff' => 'Staf',
+ 'staff-tools' => 'Alat staf',
+ 'stats' => 'Statistik',
+ 'status' => 'Status',
+ 'sticked' => 'Menempel',
+ 'submit' => 'Menyerahkan',
+ 'subscriptions' => 'Berlangganan',
+ 'teams' => 'Tim',
+ 'terms' => 'Syarat Penggunaan',
+ 'times' => 'Waktu',
+ 'title' => 'Judul',
+ 'top-bountied' => 'Diberi Top',
+ 'topics' => 'Topik',
+ 'tracker-codes' => 'Kode pelacak',
+ 'type' => 'Mengetik',
+ 'type-verb' => 'Mengetik',
+ 'types' => 'Jenis',
+ 'genre' => 'Aliran',
+ 'genres' => 'Genre',
+ 'action' => 'Tindakan',
+ 'actions' => 'Tindakan',
+ 'unknown' => 'Tidak dikenal',
'unlocked-achievement' => 'Anda tidak terkunci: pencapaian prestasi',
- 'upload' => 'Unggah',
- 'upload-guide' => 'Panduan pengunggahan',
- 'user' => 'Pengguna',
- 'username' => 'Nama pengguna',
- 'users' => 'Pengguna',
- 'view' => 'Melihat',
- 'view-all' => 'Lihat semua',
- 'warnings' => 'Peringatan',
- 'year' => 'Tahun',
- 'yes' => 'iya nih',
- 'your' => 'Anda',
- 'your-comment' => 'Komentar Anda',
+ 'upload' => 'Unggah',
+ 'upload-guide' => 'Panduan pengunggahan',
+ 'user' => 'Pengguna',
+ 'username' => 'Nama pengguna',
+ 'users' => 'Pengguna',
+ 'view' => 'Melihat',
+ 'view-all' => 'Lihat semua',
+ 'warnings' => 'Peringatan',
+ 'year' => 'Tahun',
+ 'yes' => 'iya nih',
+ 'your' => 'Anda',
+ 'your-comment' => 'Komentar Anda',
];
diff --git a/lang/id/email.php b/lang/id/email.php
index c787a9696..2db1527ee 100644
--- a/lang/id/email.php
+++ b/lang/id/email.php
@@ -12,46 +12,46 @@
*/
return [
- 'activate-account' => 'Akun aktif',
- 'ban-reason' => 'Alasan',
- 'banned-footer' => 'Itulah yang Anda dapatkan karena tidak mengikuti aturan',
- 'banned-header' => 'Kamu di blokir',
- 'bug-description' => 'Masalah',
- 'bug-footer' => 'Perbaiki Sial Itu',
- 'bug-header' => 'Laporan bug baru dari',
- 'bug-priority' => 'Prioritas',
- 'bug-title' => 'Judul bug',
- 'contact-header' => 'Email kontak baru dari',
- 'contact-message' => 'Pesan',
- 'contact-name' => 'Nama',
+ 'activate-account' => 'Akun aktif',
+ 'ban-reason' => 'Alasan',
+ 'banned-footer' => 'Itulah yang Anda dapatkan karena tidak mengikuti aturan',
+ 'banned-header' => 'Kamu di blokir',
+ 'bug-description' => 'Masalah',
+ 'bug-footer' => 'Perbaiki Sial Itu',
+ 'bug-header' => 'Laporan bug baru dari',
+ 'bug-priority' => 'Prioritas',
+ 'bug-title' => 'Judul bug',
+ 'contact-header' => 'Email kontak baru dari',
+ 'contact-message' => 'Pesan',
+ 'contact-name' => 'Nama',
'fail-login-greeting' => 'Login Akun Gagal!',
- 'fail-login-line1' => 'Login yang gagal terdeteksi untuk akun Anda.',
- 'fail-login-line2' => 'Permintaan ini berasal dari: ip (: host) pada: waktu',
- 'fail-login-subject' => 'Pemberitahuan Login Gagal',
- 'footer-link' => 'Jika Anda mengalami kesulitan mengklik tombol: actionText, salin dan tempel URL di bawah ini ke browser web Anda:',
- 'invite-header' => 'Undangan ke',
- 'invite-invited' => 'Anda telah diundang ke',
- 'invite-message' => 'Pesan',
- 'invite-signup' => 'Daftar sekarang',
- 'newreply-header' => 'Ada balasan baru di topik Anda',
- 'newreply-message' => 'Pesan',
- 'newreply-replied' => 'Telah membalas topik Anda',
- 'newreply-view' => 'Lihat Sekarang',
- 'no-email-found' => 'Kami tidak dapat menemukan email ini di sistem kami!',
- 'register-code' => 'Untuk menyelesaikan aktivasi akun Anda, klik tombol di bawah ini',
- 'register-footer' => 'Jika tombol di atas tidak berfungsi, salin dan tempel URL ke bilah alamat browser Anda',
- 'register-header' => 'Hai! Terima kasih telah mendaftar',
- 'report-comment' => 'Komentar',
- 'report-email' => 'E-mail',
- 'report-header' => 'Hai Admin, Tautan telah dilaporkan pada',
- 'report-link' => 'Link',
- 'report-link-hash' => 'Tautan aktual',
- 'thanks' => 'Terima kasih telah menggunakan',
- 'unban-footer' => 'Selamat datang kembali!',
- 'unban-header' => 'Anda Telah Diblokir',
- 'unban-reason' => 'Alasan',
- 'username-reminder' => 'Baru-baru ini Anda mengirimi kami permintaan nama pengguna di aplikasi kami. Nama pengguna Anda',
- 'username-sent' => 'Nama pengguna Anda telah dikirim ke alamat email Anda!',
- 'disabled-header' => 'Akun Anda Telah Dinonaktifkan',
- 'pruned-header' => 'Akun Anda Telah Dipangkas',
+ 'fail-login-line1' => 'Login yang gagal terdeteksi untuk akun Anda.',
+ 'fail-login-line2' => 'Permintaan ini berasal dari: ip (: host) pada: waktu',
+ 'fail-login-subject' => 'Pemberitahuan Login Gagal',
+ 'footer-link' => 'Jika Anda mengalami kesulitan mengklik tombol: actionText, salin dan tempel URL di bawah ini ke browser web Anda:',
+ 'invite-header' => 'Undangan ke',
+ 'invite-invited' => 'Anda telah diundang ke',
+ 'invite-message' => 'Pesan',
+ 'invite-signup' => 'Daftar sekarang',
+ 'newreply-header' => 'Ada balasan baru di topik Anda',
+ 'newreply-message' => 'Pesan',
+ 'newreply-replied' => 'Telah membalas topik Anda',
+ 'newreply-view' => 'Lihat Sekarang',
+ 'no-email-found' => 'Kami tidak dapat menemukan email ini di sistem kami!',
+ 'register-code' => 'Untuk menyelesaikan aktivasi akun Anda, klik tombol di bawah ini',
+ 'register-footer' => 'Jika tombol di atas tidak berfungsi, salin dan tempel URL ke bilah alamat browser Anda',
+ 'register-header' => 'Hai! Terima kasih telah mendaftar',
+ 'report-comment' => 'Komentar',
+ 'report-email' => 'E-mail',
+ 'report-header' => 'Hai Admin, Tautan telah dilaporkan pada',
+ 'report-link' => 'Link',
+ 'report-link-hash' => 'Tautan aktual',
+ 'thanks' => 'Terima kasih telah menggunakan',
+ 'unban-footer' => 'Selamat datang kembali!',
+ 'unban-header' => 'Anda Telah Diblokir',
+ 'unban-reason' => 'Alasan',
+ 'username-reminder' => 'Baru-baru ini Anda mengirimi kami permintaan nama pengguna di aplikasi kami. Nama pengguna Anda',
+ 'username-sent' => 'Nama pengguna Anda telah dikirim ke alamat email Anda!',
+ 'disabled-header' => 'Akun Anda Telah Dinonaktifkan',
+ 'pruned-header' => 'Akun Anda Telah Dipangkas',
];
diff --git a/lang/id/forum.php b/lang/id/forum.php
index 284d81b4d..3d9b163f7 100644
--- a/lang/id/forum.php
+++ b/lang/id/forum.php
@@ -12,63 +12,63 @@
*/
return [
- 'action' => 'Tindakan',
- 'activity' => 'Aktivitas',
- 'approved' => 'Disetujui',
- 'author' => 'Penulis',
- 'bug' => 'Bug',
- 'category-quick-search' => 'Pencarian cepat nama topik (dalam kategori)',
- 'close-topic' => 'Topik Kunci',
- 'closed' => 'Tutup',
- 'create-new-topic' => 'Buat Topik Baru',
- 'created' => 'Dibuat',
- 'current' => 'Arus',
- 'delete-topic' => 'Hapus Topik Ini',
- 'denied' => 'Ditolak',
- 'dislike-post' => 'Tidak Suka Posting Ini',
- 'display-forum' => 'Tampilkan topik dalam',
- 'edit-post' => 'Edit Pos',
- 'edit-topic' => 'Edit Topik',
- 'forum' => 'Forum',
- 'forums' => 'Forum',
- 'implemented' => 'Diimplementasikan',
- 'in' => 'Di',
- 'invalid' => 'Tidak valid',
- 'label' => 'Label',
- 'label-system' => 'Sistem Label',
- 'last-message' => 'Pesan Terakhir',
- 'last-post-info' => 'Info Posting Terakhir',
- 'latest' => 'Terbaru',
- 'like-post' => 'Sukai Posting Ini',
- 'meta-category' => 'Daftar forum dalam kategori',
- 'moderation' => 'Moderasi',
- 'name' => 'Nama',
- 'not-connected' => 'Anda harus terhubung',
- 'not-subscribed' => 'Tidak Berlangganan',
- 'open' => 'Buka',
- 'open-topic' => 'Buka Topik Ini',
- 'permalink' => 'Permalink',
- 'pin' => 'Pin',
- 'post' => 'Pos',
- 'post-quick-search' => 'Posting pencarian cepat badan',
- 'posts' => 'Posting',
- 'quote' => 'Kutipan',
- 'read-topic' => 'Baca Topiknya',
- 'replies' => 'Balasan',
- 'send-new-topic' => 'Simpan Topik Ini',
- 'solved' => 'Terpecahkan',
- 'state' => 'Negara',
- 'stats' => 'Statistik',
- 'subscribed' => 'Berlangganan',
+ 'action' => 'Tindakan',
+ 'activity' => 'Aktivitas',
+ 'approved' => 'Disetujui',
+ 'author' => 'Penulis',
+ 'bug' => 'Bug',
+ 'category-quick-search' => 'Pencarian cepat nama topik (dalam kategori)',
+ 'close-topic' => 'Topik Kunci',
+ 'closed' => 'Tutup',
+ 'create-new-topic' => 'Buat Topik Baru',
+ 'created' => 'Dibuat',
+ 'current' => 'Arus',
+ 'delete-topic' => 'Hapus Topik Ini',
+ 'denied' => 'Ditolak',
+ 'dislike-post' => 'Tidak Suka Posting Ini',
+ 'display-forum' => 'Tampilkan topik dalam',
+ 'edit-post' => 'Edit Pos',
+ 'edit-topic' => 'Edit Topik',
+ 'forum' => 'Forum',
+ 'forums' => 'Forum',
+ 'implemented' => 'Diimplementasikan',
+ 'in' => 'Di',
+ 'invalid' => 'Tidak valid',
+ 'label' => 'Label',
+ 'label-system' => 'Sistem Label',
+ 'last-message' => 'Pesan Terakhir',
+ 'last-post-info' => 'Info Posting Terakhir',
+ 'latest' => 'Terbaru',
+ 'like-post' => 'Sukai Posting Ini',
+ 'meta-category' => 'Daftar forum dalam kategori',
+ 'moderation' => 'Moderasi',
+ 'name' => 'Nama',
+ 'not-connected' => 'Anda harus terhubung',
+ 'not-subscribed' => 'Tidak Berlangganan',
+ 'open' => 'Buka',
+ 'open-topic' => 'Buka Topik Ini',
+ 'permalink' => 'Permalink',
+ 'pin' => 'Pin',
+ 'post' => 'Pos',
+ 'post-quick-search' => 'Posting pencarian cepat badan',
+ 'posts' => 'Posting',
+ 'quote' => 'Kutipan',
+ 'read-topic' => 'Baca Topiknya',
+ 'replies' => 'Balasan',
+ 'send-new-topic' => 'Simpan Topik Ini',
+ 'solved' => 'Terpecahkan',
+ 'state' => 'Negara',
+ 'stats' => 'Statistik',
+ 'subscribed' => 'Berlangganan',
'subscription-quick-search' => 'Pencarian cepat nama topik (dalam langganan)',
- 'suggestion' => 'Saran',
- 'topic' => 'Tema',
- 'topic-closed' => 'Topik ini Ditutup',
- 'topic-name' => 'Nama topik',
- 'topic-quick-search' => 'Nama pencarian cepat',
- 'topic-title' => 'Judul Topik Ini',
- 'topics' => 'Topik',
- 'unpin' => 'Membuka peniti',
- 'view-all' => 'Lihat Semua Topik',
- 'views' => 'Tampilan',
+ 'suggestion' => 'Saran',
+ 'topic' => 'Tema',
+ 'topic-closed' => 'Topik ini Ditutup',
+ 'topic-name' => 'Nama topik',
+ 'topic-quick-search' => 'Nama pencarian cepat',
+ 'topic-title' => 'Judul Topik Ini',
+ 'topics' => 'Topik',
+ 'unpin' => 'Membuka peniti',
+ 'view-all' => 'Lihat Semua Topik',
+ 'views' => 'Tampilan',
];
diff --git a/lang/id/graveyard.php b/lang/id/graveyard.php
index 3d4de25e0..23f8c7e92 100644
--- a/lang/id/graveyard.php
+++ b/lang/id/graveyard.php
@@ -12,15 +12,15 @@
*/
return [
- 'dead' => 'Mati',
- 'graveyard' => 'Makam',
- 'guidelines' => 'Pedoman',
+ 'dead' => 'Mati',
+ 'graveyard' => 'Makam',
+ 'guidelines' => 'Pedoman',
'guidelines-content' => '1) Anda tidak dapat menghidupkan kembali unggahan Anda sendiri.
2) Jangan membangkitkan sesuatu yang tidak dapat Anda lakukan juga.',
- 'howto' => 'Inilah Aturannya',
- 'howto-desc1' => 'Anda harus menabur : beri nama selama 30 hari untuk kesuksesan ressurection. Dalam hal ini saat seedtime Anda saat ini',
- 'howto-desc2' => 'Anda akan diberi hadiah',
- 'howto-hits' => 'Hits',
- 'pending' => 'Tertunda',
- 'resurrect' => 'Menghidupkan kembali',
- 'reward' => 'Token freeleech',
+ 'howto' => 'Inilah Aturannya',
+ 'howto-desc1' => 'Anda harus menabur : beri nama selama 30 hari untuk kesuksesan ressurection. Dalam hal ini saat seedtime Anda saat ini',
+ 'howto-desc2' => 'Anda akan diberi hadiah',
+ 'howto-hits' => 'Hits',
+ 'pending' => 'Tertunda',
+ 'resurrect' => 'Menghidupkan kembali',
+ 'reward' => 'Token freeleech',
];
diff --git a/lang/id/notification.php b/lang/id/notification.php
index 539611ec7..b633b636c 100644
--- a/lang/id/notification.php
+++ b/lang/id/notification.php
@@ -12,14 +12,14 @@
*/
return [
- 'date' => 'Tanggal',
- 'delete' => 'Menghapus',
- 'delete-all' => 'Hapus semua notifikasi',
- 'mark-all-read' => 'tandai semua telah dibaca',
- 'mark-read' => 'tandai sebagai membaca',
- 'message' => 'Pesan',
+ 'date' => 'Tanggal',
+ 'delete' => 'Menghapus',
+ 'delete-all' => 'Hapus semua notifikasi',
+ 'mark-all-read' => 'tandai semua telah dibaca',
+ 'mark-read' => 'tandai sebagai membaca',
+ 'message' => 'Pesan',
'no-notifications' => 'Tidak ada notifikasi yang ditemukan',
- 'notifications' => 'Notifikasi',
- 'read' => 'Baca baca',
- 'title' => 'Judul',
+ 'notifications' => 'Notifikasi',
+ 'read' => 'Baca baca',
+ 'title' => 'Judul',
];
diff --git a/lang/id/page.php b/lang/id/page.php
index 0cefe6416..600e8b68f 100644
--- a/lang/id/page.php
+++ b/lang/id/page.php
@@ -12,28 +12,28 @@
*/
return [
- 'aboutus-advantage' => 'Keuntungan',
- 'aboutus-advantage1' => 'Kami memiliki anggota dan staf berpengalaman yang berpengalaman dalam dunia video HD / audio dan dukungan teknis.',
- 'aboutus-advantage2' => 'Seiring dengan hasrat kami yang luas untuk film dan acara TV, kami juga menawarkan salah satu pilihan terbaik dari sesuatu yang paling tidak - KIPAS! A BESAR TERIMA KASIH kepada pembawa konten kami.',
- 'aboutus-advantage3' => 'Meskipun kami menerima sumbangan untuk menjaga situs tetap berjalan dan tidak akan ada PM atau spanduk yang mengganggu di situs. Tidak ada permintaan dari kami.',
- 'aboutus-advantage4' => 'Komunitas kami tidak ada duanya untuk usia dini. Antara staf kami dan basis pengguna, selalu ada di sini untuk membantu. Sangat bersemangat untuk memastikan pengalaman Anda: judul tidak kekurangan menakjubkan.',
- 'aboutus-advantage5' => 'Layanan kami digunakan setiap hari oleh banyak orang di seluruh dunia. Kami telah membuktikan bahwa kami peduli dengan fungsi dan keamanan basis kode kami dan dapat dipercaya dan diandalkan. Pengembang kami bekerja setiap hari untuk menyediakan basis kode nex-gen yang benar-benar.',
- 'aboutus-header' => 'Hai yang disana',
- 'aboutus-rules' => 'Apa yang kami butuhkan dari Anda',
- 'aboutus-rules1' => 'Untuk menjadi anggota komunitas yang aktif! Ini berarti bergabung dalam percakapan secara produktif, menambahkan konten yang disetujui dan membantu pengguna lain jika Anda mampu.',
- 'aboutus-rules2' => 'Untuk membaca aturan secara lengkap dan harap hormati mereka!',
- 'aboutus-rules3' => 'Membuat saran! Kami berusaha keras untuk membuat: judul lebih baik setiap hari. Kami tidak mengatakan bahwa setiap saran akan digunakan, tetapi tidak ada salahnya untuk melihat ide-ide baru.',
- 'aboutus-welcome' => 'Mari Bicara tentang',
- 'aboutus-welcome-desc' => ': title adalah basis data Movie / TV / FANRES yang dibangun komunitas . Setiap bagian dari data telah ditambahkan oleh komunitas kami yang luar biasa sejak 2017.: judul fokus yang kuat adalah pada konten HD, basis pengguna proaktif, basis kode yang mengagumkan / aman dan tim Staf yang membantu dan ramah.',
- 'blacklist-browsers' => 'Browser',
- 'blacklist-btclient' => 'Klien BitTorrent',
- 'blacklist-clients' => 'Klien',
- 'blacklist-desc' => 'Browser dan Klien Bittorrent Berikut Di-blacklist / Dilarang Dari Annoucing Ke: title',
- 'blacklist-webbrowser' => 'Browser Web',
+ 'aboutus-advantage' => 'Keuntungan',
+ 'aboutus-advantage1' => 'Kami memiliki anggota dan staf berpengalaman yang berpengalaman dalam dunia video HD / audio dan dukungan teknis.',
+ 'aboutus-advantage2' => 'Seiring dengan hasrat kami yang luas untuk film dan acara TV, kami juga menawarkan salah satu pilihan terbaik dari sesuatu yang paling tidak - KIPAS! A BESAR TERIMA KASIH kepada pembawa konten kami.',
+ 'aboutus-advantage3' => 'Meskipun kami menerima sumbangan untuk menjaga situs tetap berjalan dan tidak akan ada PM atau spanduk yang mengganggu di situs. Tidak ada permintaan dari kami.',
+ 'aboutus-advantage4' => 'Komunitas kami tidak ada duanya untuk usia dini. Antara staf kami dan basis pengguna, selalu ada di sini untuk membantu. Sangat bersemangat untuk memastikan pengalaman Anda: judul tidak kekurangan menakjubkan.',
+ 'aboutus-advantage5' => 'Layanan kami digunakan setiap hari oleh banyak orang di seluruh dunia. Kami telah membuktikan bahwa kami peduli dengan fungsi dan keamanan basis kode kami dan dapat dipercaya dan diandalkan. Pengembang kami bekerja setiap hari untuk menyediakan basis kode nex-gen yang benar-benar.',
+ 'aboutus-header' => 'Hai yang disana',
+ 'aboutus-rules' => 'Apa yang kami butuhkan dari Anda',
+ 'aboutus-rules1' => 'Untuk menjadi anggota komunitas yang aktif! Ini berarti bergabung dalam percakapan secara produktif, menambahkan konten yang disetujui dan membantu pengguna lain jika Anda mampu.',
+ 'aboutus-rules2' => 'Untuk membaca aturan secara lengkap dan harap hormati mereka!',
+ 'aboutus-rules3' => 'Membuat saran! Kami berusaha keras untuk membuat: judul lebih baik setiap hari. Kami tidak mengatakan bahwa setiap saran akan digunakan, tetapi tidak ada salahnya untuk melihat ide-ide baru.',
+ 'aboutus-welcome' => 'Mari Bicara tentang',
+ 'aboutus-welcome-desc' => ': title adalah basis data Movie / TV / FANRES yang dibangun komunitas . Setiap bagian dari data telah ditambahkan oleh komunitas kami yang luar biasa sejak 2017.: judul fokus yang kuat adalah pada konten HD, basis pengguna proaktif, basis kode yang mengagumkan / aman dan tim Staf yang membantu dan ramah.',
+ 'blacklist-browsers' => 'Browser',
+ 'blacklist-btclient' => 'Klien BitTorrent',
+ 'blacklist-clients' => 'Klien',
+ 'blacklist-desc' => 'Browser dan Klien Bittorrent Berikut Di-blacklist / Dilarang Dari Annoucing Ke: title',
+ 'blacklist-webbrowser' => 'Browser Web',
'blacklist-emaildomain' => 'Domain yang Diblokir',
- 'email-blacklist-desc' => 'Domain Email Berikut Diblokir Dari Penggunaan. Anda Tidak Dapat Mendaftar Atau Mengirim Undangan Ke Yang Berikut.',
- 'email-whitelist-desc' => 'Domain Email Berikut Adalah Satu-Satunya Domain Email yang Diizinkan Untuk Digunakan. Anda Mungkin Hanya Mendaftar Atau Mengirim Undangan Menggunakan Yang Berikut.',
- 'staff-group' => 'Kelompok',
- 'staff-title' => 'Judul',
+ 'email-blacklist-desc' => 'Domain Email Berikut Diblokir Dari Penggunaan. Anda Tidak Dapat Mendaftar Atau Mengirim Undangan Ke Yang Berikut.',
+ 'email-whitelist-desc' => 'Domain Email Berikut Adalah Satu-Satunya Domain Email yang Diizinkan Untuk Digunakan. Anda Mungkin Hanya Mendaftar Atau Mengirim Undangan Menggunakan Yang Berikut.',
+ 'staff-group' => 'Kelompok',
+ 'staff-title' => 'Judul',
'whitelist-emaildomain' => 'Domain Tepercaya',
];
diff --git a/lang/id/pagination.php b/lang/id/pagination.php
index c3fa39a5a..9be6f281b 100644
--- a/lang/id/pagination.php
+++ b/lang/id/pagination.php
@@ -24,5 +24,5 @@ return [
*/
'previous' => '« Sebelumnya',
- 'next' => 'Berikutnya »',
+ 'next' => 'Berikutnya »',
];
diff --git a/lang/id/passwords.php b/lang/id/passwords.php
index 9e0b135ab..1c3d97741 100644
--- a/lang/id/passwords.php
+++ b/lang/id/passwords.php
@@ -24,8 +24,8 @@ return [
*/
'password' => 'Kata sandi minimal harus memiliki enam karakter dan cocok dengan konfirmasi.',
- 'reset' => 'Kata sandi Anda sudah direset!',
- 'sent' => 'Kami sudah mengirim surel yang berisi tautan untuk mereset kata sandi Anda!',
- 'token' => 'Token pengaturan ulang kata sandi tidak sah.',
- 'user' => 'Kami tidak dapat menemukan pengguna dengan alamat surel tersebut.',
+ 'reset' => 'Kata sandi Anda sudah direset!',
+ 'sent' => 'Kami sudah mengirim surel yang berisi tautan untuk mereset kata sandi Anda!',
+ 'token' => 'Token pengaturan ulang kata sandi tidak sah.',
+ 'user' => 'Kami tidak dapat menemukan pengguna dengan alamat surel tersebut.',
];
diff --git a/lang/id/pm.php b/lang/id/pm.php
index a12d4ce07..058b60f9f 100644
--- a/lang/id/pm.php
+++ b/lang/id/pm.php
@@ -12,28 +12,28 @@
*/
return [
- 'create' => 'Membuat',
- 'delete' => 'Menghapus',
+ 'create' => 'Membuat',
+ 'delete' => 'Menghapus',
'enter-subject' => 'Masukkan subjek',
- 'from' => 'Dari',
- 'inbox' => 'Kotak masuk',
+ 'from' => 'Dari',
+ 'inbox' => 'Kotak masuk',
'mark-all-read' => 'Tandai semua pesan sebagai sudah dibaca',
- 'message' => 'Pesan',
- 'messages' => 'Pesan',
- 'new' => 'Pesan baru',
- 'outbox' => 'Kotak keluar',
- 'private' => 'Pribadi',
- 'read' => 'Baca baca',
- 'received-at' => 'Diterima Di',
- 'refresh' => 'Menyegarkan',
- 'reply' => 'Balasan',
- 'search' => 'Cari Berdasarkan Subjek',
- 'select' => 'Pilih Pengguna',
- 'send' => 'Kirim PM',
- 'send-to' => 'Kirim PM Ke',
- 'sent' => 'Terkirim',
- 'sent-at' => 'Terkirim Di',
- 'subject' => 'Subyek',
- 'to' => 'Untuk',
- 'unread' => 'Belum dibaca',
+ 'message' => 'Pesan',
+ 'messages' => 'Pesan',
+ 'new' => 'Pesan baru',
+ 'outbox' => 'Kotak keluar',
+ 'private' => 'Pribadi',
+ 'read' => 'Baca baca',
+ 'received-at' => 'Diterima Di',
+ 'refresh' => 'Menyegarkan',
+ 'reply' => 'Balasan',
+ 'search' => 'Cari Berdasarkan Subjek',
+ 'select' => 'Pilih Pengguna',
+ 'send' => 'Kirim PM',
+ 'send-to' => 'Kirim PM Ke',
+ 'sent' => 'Terkirim',
+ 'sent-at' => 'Terkirim Di',
+ 'subject' => 'Subyek',
+ 'to' => 'Untuk',
+ 'unread' => 'Belum dibaca',
];
diff --git a/lang/id/poll.php b/lang/id/poll.php
index e624872fc..61546b3fc 100644
--- a/lang/id/poll.php
+++ b/lang/id/poll.php
@@ -12,18 +12,18 @@
*/
return [
- 'add-option' => 'Tambahkan opsi',
- 'create-poll' => 'Buat jajak pendapat',
- 'current' => 'Polling Saat Ini',
- 'delete-option' => 'Hapus opsi',
+ 'add-option' => 'Tambahkan opsi',
+ 'create-poll' => 'Buat jajak pendapat',
+ 'current' => 'Polling Saat Ini',
+ 'delete-option' => 'Hapus opsi',
'multiple-choice' => 'Ini adalah jajak pendapat pilihan ganda. Pilih jawaban sebanyak yang Anda suka.',
- 'option' => 'Pilihan',
- 'poll' => 'Pemilihan',
- 'polls' => 'Polling',
- 'results' => 'Hasil Polling',
- 'title' => 'Judul',
- 'total' => 'Total Suara Pernah',
- 'vote' => 'Memilih',
- 'vote-now' => 'Dapatkan Suara Anda Sekarang!',
- 'votes' => 'Voting',
+ 'option' => 'Pilihan',
+ 'poll' => 'Pemilihan',
+ 'polls' => 'Polling',
+ 'results' => 'Hasil Polling',
+ 'title' => 'Judul',
+ 'total' => 'Total Suara Pernah',
+ 'vote' => 'Memilih',
+ 'vote-now' => 'Dapatkan Suara Anda Sekarang!',
+ 'votes' => 'Voting',
];
diff --git a/lang/id/request.php b/lang/id/request.php
index ab17ffa21..38c45dda8 100644
--- a/lang/id/request.php
+++ b/lang/id/request.php
@@ -12,67 +12,67 @@
*/
return [
- 'add-request' => 'Tambahkan permintaan',
- 'age' => 'Usia',
- 'all-requests' => 'Semua permintaan',
- 'approve' => 'Menyetujui',
- 'bounty' => 'Karunia',
- 'bounty-claimed' => 'Bounty mengklaim',
- 'bounty-unclaimed' => 'Karunia tidak diklaim',
- 'category' => 'Kategori',
- 'claim' => 'Klaim',
- 'claim-anon-choose' => 'Silakan Pilih dengan Bijaksana',
- 'claim-as-anon' => 'Anda Ingin Mengklaim Ini Secara Anonom',
- 'claim-now' => 'Klaim sekarang',
- 'claimed' => 'Diklaim',
- 'current' => 'Arus',
- 'delete' => 'Hapus Permintaan ini',
+ 'add-request' => 'Tambahkan permintaan',
+ 'age' => 'Usia',
+ 'all-requests' => 'Semua permintaan',
+ 'approve' => 'Menyetujui',
+ 'bounty' => 'Karunia',
+ 'bounty-claimed' => 'Bounty mengklaim',
+ 'bounty-unclaimed' => 'Karunia tidak diklaim',
+ 'category' => 'Kategori',
+ 'claim' => 'Klaim',
+ 'claim-anon-choose' => 'Silakan Pilih dengan Bijaksana',
+ 'claim-as-anon' => 'Anda Ingin Mengklaim Ini Secara Anonom',
+ 'claim-now' => 'Klaim sekarang',
+ 'claimed' => 'Diklaim',
+ 'current' => 'Arus',
+ 'delete' => 'Hapus Permintaan ini',
'delete-confirmation' => 'Anda yakin ingin menghapus Permintaan ini',
- 'delete-filled' => 'Permintaan ini hanya dapat dihapus jika belum diisi',
- 'description' => 'Deskripsi',
- 'dont-have-bps' => 'Anda tidak memiliki Bonus yang cukup',
- 'edit-request' => 'Edit permintaan',
- 'enter-bp' => 'Masukkan poin bonus (minimal 100)',
- 'enter-hash' => 'Masukkan Info Hash dari Torrent yang diunggah',
- 'fill' => 'Mengisi',
- 'fill-request' => 'Isi permintaan ini',
- 'filled' => 'Terisi',
- 'filled-by' => 'Diisi oleh',
- 'for' => 'untuk',
- 'fulfill' => 'Memenuhi',
- 'last-vote' => 'Pilihan terakhir',
- 'my-requests' => 'Permintaan saya',
- 'no' => 'Tidak,',
- 'no-imdb-id' => 'Semua Permintaan Harus Berisi Nomor IMDB',
- 'no-privileges' => 'Kesalahan: Hak permintaan Anda telah dinonaktifkan',
- 'no-privileges-desc' => 'Jika Anda merasa ini salah, harap hubungi Staf',
- 'no-refunds' => 'Pertukaran BON untuk membuat, mengisi, dan hadiah adalah final!
TIDAK ADA PENGEMBALIAN UANG!',
- 'pending' => 'Tertunda',
- 'reason' => 'Alasan',
- 'reject' => 'Menolak',
- 'report' => 'Laporkan permintaan',
- 'request' => 'Permintaan',
- 'request-details' => 'Detail permintaan',
- 'requested-by' => 'Diminta oleh',
- 'requests' => 'Permintaan',
- 'required' => 'Wajib',
- 'reset' => 'Setel ulang',
- 'reset-confirmation' => 'Anda yakin ingin mengatur ulang Permintaan ini',
- 'reset-request' => 'Setel Ulang Permintaan ini',
- 'reward' => 'Penghargaan',
- 'reward-desc' => 'Berapa banyak poin bonus yang ingin Anda hadiahi? Minimal 100 BP',
- 'reward-from' => 'Dari',
- 'title' => 'Judul',
- 'torrent-hash' => 'Torrent Hash',
- 'total-bounty' => 'Total hadiah',
- 'type' => 'Mengetik',
- 'unclaim' => 'Batalkan klaim permintaan ini',
- 'unfilled' => 'Tidak terisi',
- 'view-filled' => 'Lihat diisi',
- 'view-unfilled' => 'Lihat tidak terisi',
- 'vote' => 'Memilih',
- 'vote-that' => 'Pilih Permintaan ini',
- 'voters' => 'Pemilih',
- 'votes' => 'Voting',
- 'yes' => 'iya nih',
+ 'delete-filled' => 'Permintaan ini hanya dapat dihapus jika belum diisi',
+ 'description' => 'Deskripsi',
+ 'dont-have-bps' => 'Anda tidak memiliki Bonus yang cukup',
+ 'edit-request' => 'Edit permintaan',
+ 'enter-bp' => 'Masukkan poin bonus (minimal 100)',
+ 'enter-hash' => 'Masukkan Info Hash dari Torrent yang diunggah',
+ 'fill' => 'Mengisi',
+ 'fill-request' => 'Isi permintaan ini',
+ 'filled' => 'Terisi',
+ 'filled-by' => 'Diisi oleh',
+ 'for' => 'untuk',
+ 'fulfill' => 'Memenuhi',
+ 'last-vote' => 'Pilihan terakhir',
+ 'my-requests' => 'Permintaan saya',
+ 'no' => 'Tidak,',
+ 'no-imdb-id' => 'Semua Permintaan Harus Berisi Nomor IMDB',
+ 'no-privileges' => 'Kesalahan: Hak permintaan Anda telah dinonaktifkan',
+ 'no-privileges-desc' => 'Jika Anda merasa ini salah, harap hubungi Staf',
+ 'no-refunds' => 'Pertukaran BON untuk membuat, mengisi, dan hadiah adalah final!
TIDAK ADA PENGEMBALIAN UANG!',
+ 'pending' => 'Tertunda',
+ 'reason' => 'Alasan',
+ 'reject' => 'Menolak',
+ 'report' => 'Laporkan permintaan',
+ 'request' => 'Permintaan',
+ 'request-details' => 'Detail permintaan',
+ 'requested-by' => 'Diminta oleh',
+ 'requests' => 'Permintaan',
+ 'required' => 'Wajib',
+ 'reset' => 'Setel ulang',
+ 'reset-confirmation' => 'Anda yakin ingin mengatur ulang Permintaan ini',
+ 'reset-request' => 'Setel Ulang Permintaan ini',
+ 'reward' => 'Penghargaan',
+ 'reward-desc' => 'Berapa banyak poin bonus yang ingin Anda hadiahi? Minimal 100 BP',
+ 'reward-from' => 'Dari',
+ 'title' => 'Judul',
+ 'torrent-hash' => 'Torrent Hash',
+ 'total-bounty' => 'Total hadiah',
+ 'type' => 'Mengetik',
+ 'unclaim' => 'Batalkan klaim permintaan ini',
+ 'unfilled' => 'Tidak terisi',
+ 'view-filled' => 'Lihat diisi',
+ 'view-unfilled' => 'Lihat tidak terisi',
+ 'vote' => 'Memilih',
+ 'vote-that' => 'Pilih Permintaan ini',
+ 'voters' => 'Pemilih',
+ 'votes' => 'Voting',
+ 'yes' => 'iya nih',
];
diff --git a/lang/id/rss.php b/lang/id/rss.php
index 52ed4429d..a7b2d17c5 100644
--- a/lang/id/rss.php
+++ b/lang/id/rss.php
@@ -12,19 +12,19 @@
*/
return [
- 'create' => 'Membuat',
+ 'create' => 'Membuat',
'create-private-feed' => 'Buat Umpan RSS Pribadi',
- 'create-public-feed' => 'Buat Umpan RSS Publik',
- 'delete' => 'Menghapus',
- 'edit' => 'Edit',
- 'edit-private-feed' => 'Edit Umpan RSS Pribadi',
- 'edit-public-feed' => 'Edit Umpan RSS Publik',
- 'feed' => 'Makan',
- 'feeds' => 'Feed',
- 'name' => 'Nama',
- 'public' => 'Publik',
- 'private' => 'Pribadi',
- 'rss' => 'RSS',
- 'rss-feed' => 'Umpan RSS',
- 'type' => 'Mengetik',
+ 'create-public-feed' => 'Buat Umpan RSS Publik',
+ 'delete' => 'Menghapus',
+ 'edit' => 'Edit',
+ 'edit-private-feed' => 'Edit Umpan RSS Pribadi',
+ 'edit-public-feed' => 'Edit Umpan RSS Publik',
+ 'feed' => 'Makan',
+ 'feeds' => 'Feed',
+ 'name' => 'Nama',
+ 'public' => 'Publik',
+ 'private' => 'Pribadi',
+ 'rss' => 'RSS',
+ 'rss-feed' => 'Umpan RSS',
+ 'type' => 'Mengetik',
];
diff --git a/lang/id/staff.php b/lang/id/staff.php
index a537258da..394ae9949 100644
--- a/lang/id/staff.php
+++ b/lang/id/staff.php
@@ -12,48 +12,48 @@
*/
return [
- 'audit-log' => 'Log aktivitas',
- 'articles' => 'Artikel',
- 'applications' => 'Aplikasi',
- 'bans-log' => 'Larangan Log',
- 'blocks' => 'Blok',
- 'bot' => 'Bot',
- 'bots' => 'Bot',
- 'chat' => 'Obrolan',
- 'config-manager' => 'Pengelola Konfigurasi',
- 'dashboard' => 'Dasbor',
- 'failed-login-log' => 'Log Masuk Gagal',
- 'flush-ghost-peers' => 'Flush Ghost Peers',
- 'forums' => 'Forum',
- 'frontend' => 'Paling depan',
- 'general-tools' => 'Alat Umum',
- 'groups' => 'Grup',
- 'invites-log' => 'Log Undangan',
- 'laravel-log' => 'Log Laravel',
- 'links' => 'Tautan',
- 'logs' => 'Log',
- 'mass-pm' => 'PM Massal',
- 'mass-validate-users' => 'Pengguna Validasi Massal',
- 'moderation' => 'Moderasi',
- 'pages' => 'Halaman',
- 'please-moderate' => 'Harap Moderasikan Torrent Ini!',
- 'polls' => 'Polling',
- 'reports-log' => 'Log Laporan',
- 'rss' => 'RSS',
- 'staff-dashboard' => 'Dashboard Staf',
- 'torrent-categories' => 'Kategori Torrent',
- 'torrent-moderation' => 'Moderasi Torrent',
- 'torrent-tools' => 'Alat Torrent',
- 'torrent-types' => 'Jenis Torrent',
- 'torrents' => 'Torrent',
- 'user-gifting' => 'Kado Pengguna',
- 'user-notes' => 'Catatan Pengguna Log',
- 'user-search' => 'Pencarian Pengguna',
- 'user-tools' => 'Alat Pengguna',
- 'warnings-log' => 'Log Peringatan',
- 'you-have' => 'Kamu punya',
+ 'audit-log' => 'Log aktivitas',
+ 'articles' => 'Artikel',
+ 'applications' => 'Aplikasi',
+ 'bans-log' => 'Larangan Log',
+ 'blocks' => 'Blok',
+ 'bot' => 'Bot',
+ 'bots' => 'Bot',
+ 'chat' => 'Obrolan',
+ 'config-manager' => 'Pengelola Konfigurasi',
+ 'dashboard' => 'Dasbor',
+ 'failed-login-log' => 'Log Masuk Gagal',
+ 'flush-ghost-peers' => 'Flush Ghost Peers',
+ 'forums' => 'Forum',
+ 'frontend' => 'Paling depan',
+ 'general-tools' => 'Alat Umum',
+ 'groups' => 'Grup',
+ 'invites-log' => 'Log Undangan',
+ 'laravel-log' => 'Log Laravel',
+ 'links' => 'Tautan',
+ 'logs' => 'Log',
+ 'mass-pm' => 'PM Massal',
+ 'mass-validate-users' => 'Pengguna Validasi Massal',
+ 'moderation' => 'Moderasi',
+ 'pages' => 'Halaman',
+ 'please-moderate' => 'Harap Moderasikan Torrent Ini!',
+ 'polls' => 'Polling',
+ 'reports-log' => 'Log Laporan',
+ 'rss' => 'RSS',
+ 'staff-dashboard' => 'Dashboard Staf',
+ 'torrent-categories' => 'Kategori Torrent',
+ 'torrent-moderation' => 'Moderasi Torrent',
+ 'torrent-tools' => 'Alat Torrent',
+ 'torrent-types' => 'Jenis Torrent',
+ 'torrents' => 'Torrent',
+ 'user-gifting' => 'Kado Pengguna',
+ 'user-notes' => 'Catatan Pengguna Log',
+ 'user-search' => 'Pencarian Pengguna',
+ 'user-tools' => 'Alat Pengguna',
+ 'warnings-log' => 'Log Peringatan',
+ 'you-have' => 'Kamu punya',
'possible-leech-cheaters' => 'Kemungkinan Curang',
- 'chat-tools' => 'Alat Obrolan',
- 'flush-chat' => 'Flush Chatbox',
- 'seedboxes' => 'Kotak Benih Terdaftar',
+ 'chat-tools' => 'Alat Obrolan',
+ 'flush-chat' => 'Flush Chatbox',
+ 'seedboxes' => 'Kotak Benih Terdaftar',
];
diff --git a/lang/id/stat.php b/lang/id/stat.php
index 9af7abe05..4c03c7b24 100644
--- a/lang/id/stat.php
+++ b/lang/id/stat.php
@@ -12,40 +12,40 @@
*/
return [
- 'by-count' => 'Dengan Hitungan',
- 'by-data' => 'Dengan Data',
- 'by-volume' => 'Berdasarkan volume',
- 'group' => 'Kelompok',
- 'groups' => 'Grup',
- 'nerd-stats' => 'Statistik aneh',
- 'nerd-stats-desc' => 'Kita semua menyukai statistik. Berikut adalah beberapa yang kami anggap penting',
- 'registration-date' => 'Tanggal registrasi',
- 'request-fulfilled' => 'Permintaan terpenuhi',
- 'request-not-fulfilled' => 'Permintaan tidak terpenuhi',
+ 'by-count' => 'Dengan Hitungan',
+ 'by-data' => 'Dengan Data',
+ 'by-volume' => 'Berdasarkan volume',
+ 'group' => 'Kelompok',
+ 'groups' => 'Grup',
+ 'nerd-stats' => 'Statistik aneh',
+ 'nerd-stats-desc' => 'Kita semua menyukai statistik. Berikut adalah beberapa yang kami anggap penting',
+ 'registration-date' => 'Tanggal registrasi',
+ 'request-fulfilled' => 'Permintaan terpenuhi',
+ 'request-not-fulfilled' => 'Permintaan tidak terpenuhi',
'request-pending-aproval' => 'Meminta persetujuan yang tertunda',
- 'select-category' => 'Silakan pilih kategori di bawah ini',
- 'site-stats' => 'Statistik situs',
- 'stats' => 'Statistik',
- 'stats-format' => 'Semua Statistik Ditampilkan Dalam Format Top 100',
- 'top-bankers' => 'Bankir top',
- 'top-bountied' => 'Diberi Top',
- 'top-completed' => 'Top Selesai',
- 'top-dead' => 'Mati Atas',
- 'top-downloaded' => 'Torrent Unduhan Teratas',
- 'top-downloaders' => 'Pengunduh Teratas',
- 'top-dying' => 'Sekarat',
- 'top-leeched' => 'Lintah Teratas',
- 'top-leechers' => 'Leechers teratas',
- 'top-seeded' => 'Unggulan teratas',
- 'top-seeding' => 'Pembibitan Teratas',
- 'top-seeders' => 'Unggulan Teratas',
- 'top-seedsize' => 'Seedsize Teratas',
- 'top-seedtime' => 'Seedtime Top',
- 'top-uploaders' => 'Pengunggah Teratas',
- 'total-download' => 'Total Unduhan',
- 'total-torrents' => 'Total Torrents',
- 'total-traffic' => 'Total Lalu Lintas',
- 'total-upload' => 'Total Upload',
- 'users-in-group' => 'Pengguna dalam Grup',
- 'users-per-group' => 'Pengguna Per Grup',
+ 'select-category' => 'Silakan pilih kategori di bawah ini',
+ 'site-stats' => 'Statistik situs',
+ 'stats' => 'Statistik',
+ 'stats-format' => 'Semua Statistik Ditampilkan Dalam Format Top 100',
+ 'top-bankers' => 'Bankir top',
+ 'top-bountied' => 'Diberi Top',
+ 'top-completed' => 'Top Selesai',
+ 'top-dead' => 'Mati Atas',
+ 'top-downloaded' => 'Torrent Unduhan Teratas',
+ 'top-downloaders' => 'Pengunduh Teratas',
+ 'top-dying' => 'Sekarat',
+ 'top-leeched' => 'Lintah Teratas',
+ 'top-leechers' => 'Leechers teratas',
+ 'top-seeded' => 'Unggulan teratas',
+ 'top-seeding' => 'Pembibitan Teratas',
+ 'top-seeders' => 'Unggulan Teratas',
+ 'top-seedsize' => 'Seedsize Teratas',
+ 'top-seedtime' => 'Seedtime Top',
+ 'top-uploaders' => 'Pengunggah Teratas',
+ 'total-download' => 'Total Unduhan',
+ 'total-torrents' => 'Total Torrents',
+ 'total-traffic' => 'Total Lalu Lintas',
+ 'total-upload' => 'Total Upload',
+ 'users-in-group' => 'Pengguna dalam Grup',
+ 'users-per-group' => 'Pengguna Per Grup',
];
diff --git a/lang/id/torrent.php b/lang/id/torrent.php
index 63da152e1..057f0cb9d 100644
--- a/lang/id/torrent.php
+++ b/lang/id/torrent.php
@@ -12,197 +12,197 @@
*/
return [
- 'activity' => 'Aktivitas',
- 'age' => 'Usia',
- 'agent' => 'Agen',
- 'alive' => 'Hidup',
- 'announce-url' => 'Umumkan URL',
- 'announce-url-desc' => 'Silakan gunakan URL umumkan di atas saat membuat torrent baru. Jika Anda ingin menggunakan torrent Anda tanpa mengunduhnya dari situs, Anda perlu mengatur bendera pribadi dan sumbernya menjadi:',
- 'announce-url-desc-url' => 'Mempunyai masalah? Lihat Panduan Kami DI SINI',
- 'announce-url-desc2' => 'Diperlukan TMDB dan IMDB untuk semua unggahan! Ini digunakan untuk mengambil Poster / Latar Belakang dan ExtraInfo',
- 'approved' => 'Disetujui',
- 'audio' => 'Audio',
- 'bon-tipped' => 'BON Berujung',
- 'bookmark' => 'Bookmark',
- 'bookmarks' => 'Bookmark',
- 'bump' => 'Menabrak',
- 'cant-upload' => 'Galat: Hak Pengunggahan Anda Dinonaktifkan',
- 'cant-upload-desc' => 'Jika Anda Merasa Ini Salah, Silakan Hubungi Staf',
- 'cards' => 'Kartu-kartu',
- 'cards-view' => 'Lihat Kartu Torrent',
- 'categories' => 'Kategori',
- 'category' => 'Kategori',
- 'client' => 'Klien',
- 'commited' => 'Berkomitmen',
- 'completed' => 'Lengkap',
- 'completed_at' => 'Selesai di',
- 'completed-not-seeding' => 'Anda Menyelesaikan Unduhan Ini Tapi Tidak Lagi Menyemai',
- 'created_at' => 'Dibuat di',
- 'credited' => 'Dikreditkan',
- 'current' => 'Arus',
- 'current-filters' => 'Filter Saat Ini',
- 'currently-leeching' => 'Saat ini lintah',
- 'currently-seeding' => 'Saat Pembibitan',
- 'dead-torrent' => 'Torrent Mati',
- 'dead-torrents' => 'Torrents Mati',
- 'delete-bookmark' => 'Hapus Bookmark Ini',
- 'description' => 'Deskripsi',
- 'discounts' => 'Diskon',
- 'double-upload' => 'Unggah Ganda',
- 'download-all' => 'Unduh Semua',
- 'download-check' => 'Unduh unduhan',
- 'downloaded' => 'Diunduh',
- 'dying-torrent' => 'Sekarat Torrent',
- 'dying-torrents' => 'Torrents Sekarat',
- 'encode-settings' => 'Encode Pengaturan',
- 'estimated-ratio' => 'Perkiraan Rasio setelah Pengunduhan',
- 'failed' => 'Gagal',
- 'feature' => 'Fitur',
- 'featured' => 'Unggulan',
- 'featured-desc' => 'Torrents yang ditampilkan adalah 100% Gratis dan Unggah Ganda!',
- 'featured-until' => 'Ini Adalah Torrent Yang Ditampilkan Hingga',
- 'file' => 'Mengajukan',
- 'filters' => 'Filter',
- 'fl-tokens-left' => 'Kamu punya : token tersisa',
- 'freeleech' => 'Freeleech',
- 'freeleech-token' => 'Token Freeleech',
- 'general' => 'Umum',
- 'genre' => 'Aliran',
- 'global-double-upload' => 'Upload Global Ganda',
- 'global-freeleech' => 'Freeleech Global',
- 'grant' => 'Hibah',
- 'greater-than' => 'Lebih besar dari',
- 'grouping' => 'Pengelompokan',
- 'groupings' => 'Pengelompokan',
- 'grouping-categories' => 'Kategori pengelompokan',
+ 'activity' => 'Aktivitas',
+ 'age' => 'Usia',
+ 'agent' => 'Agen',
+ 'alive' => 'Hidup',
+ 'announce-url' => 'Umumkan URL',
+ 'announce-url-desc' => 'Silakan gunakan URL umumkan di atas saat membuat torrent baru. Jika Anda ingin menggunakan torrent Anda tanpa mengunduhnya dari situs, Anda perlu mengatur bendera pribadi dan sumbernya menjadi:',
+ 'announce-url-desc-url' => 'Mempunyai masalah? Lihat Panduan Kami DI SINI',
+ 'announce-url-desc2' => 'Diperlukan TMDB dan IMDB untuk semua unggahan! Ini digunakan untuk mengambil Poster / Latar Belakang dan ExtraInfo',
+ 'approved' => 'Disetujui',
+ 'audio' => 'Audio',
+ 'bon-tipped' => 'BON Berujung',
+ 'bookmark' => 'Bookmark',
+ 'bookmarks' => 'Bookmark',
+ 'bump' => 'Menabrak',
+ 'cant-upload' => 'Galat: Hak Pengunggahan Anda Dinonaktifkan',
+ 'cant-upload-desc' => 'Jika Anda Merasa Ini Salah, Silakan Hubungi Staf',
+ 'cards' => 'Kartu-kartu',
+ 'cards-view' => 'Lihat Kartu Torrent',
+ 'categories' => 'Kategori',
+ 'category' => 'Kategori',
+ 'client' => 'Klien',
+ 'commited' => 'Berkomitmen',
+ 'completed' => 'Lengkap',
+ 'completed_at' => 'Selesai di',
+ 'completed-not-seeding' => 'Anda Menyelesaikan Unduhan Ini Tapi Tidak Lagi Menyemai',
+ 'created_at' => 'Dibuat di',
+ 'credited' => 'Dikreditkan',
+ 'current' => 'Arus',
+ 'current-filters' => 'Filter Saat Ini',
+ 'currently-leeching' => 'Saat ini lintah',
+ 'currently-seeding' => 'Saat Pembibitan',
+ 'dead-torrent' => 'Torrent Mati',
+ 'dead-torrents' => 'Torrents Mati',
+ 'delete-bookmark' => 'Hapus Bookmark Ini',
+ 'description' => 'Deskripsi',
+ 'discounts' => 'Diskon',
+ 'double-upload' => 'Unggah Ganda',
+ 'download-all' => 'Unduh Semua',
+ 'download-check' => 'Unduh unduhan',
+ 'downloaded' => 'Diunduh',
+ 'dying-torrent' => 'Sekarat Torrent',
+ 'dying-torrents' => 'Torrents Sekarat',
+ 'encode-settings' => 'Encode Pengaturan',
+ 'estimated-ratio' => 'Perkiraan Rasio setelah Pengunduhan',
+ 'failed' => 'Gagal',
+ 'feature' => 'Fitur',
+ 'featured' => 'Unggulan',
+ 'featured-desc' => 'Torrents yang ditampilkan adalah 100% Gratis dan Unggah Ganda!',
+ 'featured-until' => 'Ini Adalah Torrent Yang Ditampilkan Hingga',
+ 'file' => 'Mengajukan',
+ 'filters' => 'Filter',
+ 'fl-tokens-left' => 'Kamu punya : token tersisa',
+ 'freeleech' => 'Freeleech',
+ 'freeleech-token' => 'Token Freeleech',
+ 'general' => 'Umum',
+ 'genre' => 'Aliran',
+ 'global-double-upload' => 'Upload Global Ganda',
+ 'global-freeleech' => 'Freeleech Global',
+ 'grant' => 'Hibah',
+ 'greater-than' => 'Lebih besar dari',
+ 'grouping' => 'Pengelompokan',
+ 'groupings' => 'Pengelompokan',
+ 'grouping-categories' => 'Kategori pengelompokan',
'grouping-categories-desc' => 'Kategori apa yang ingin Anda kelompokkan?',
- 'grouping-results' => 'Pengelompokan Hasil',
- 'groupings-view' => 'Tampilan Pengelompokan',
- 'have-completed' => 'Lengkap',
- 'have-downloaded' => 'Diunduh',
- 'have-not-completed' => 'Tidak selesai',
- 'have-not-downloaded' => 'Tidak terunduh',
- 'health' => 'Kesehatan',
- 'history' => 'Sejarah',
- 'hitrun' => 'H&R?',
- 'hit-and-runs' => 'Hit and Run penting',
- 'immune' => 'Imun?',
- 'info' => 'Info',
- 'internal' => 'Intern',
- 'internal-release' => 'Rilis internal',
- 'last-seed-activity' => 'Aktivitas benih terakhir',
- 'last-seeder' => 'Anda adalah Seeder Terakhir Yang Tersisa! (telah diunduh minimal 3 kali)',
- 'last-update' => 'Pembaharuan Terakhir',
- 'leave-tip' => 'Tinggalkan tip',
- 'leecher' => 'Leecher',
- 'leechers' => 'Leechers',
- 'leeching' => 'Leeching',
- 'left' => 'Kiri',
- 'legendary-seeder' => 'Seeder legendaris',
- 'legendary-torrent' => 'Torrent legendaris',
- 'list' => 'Daftar',
- 'me' => 'Saya',
- 'media-info' => 'MediaInfo',
- 'media-info-parser' => 'Parser MediaInfo',
- 'media-info-paste' => 'Rekatkan pembuangan MediaInfo di sini',
- 'meta-desc' => 'Unduh: nama dengan kecepatan maksimum',
- 'moderation' => 'Moderasi',
- 'movies' => 'Film',
- 'mvp' => 'MVP',
- 'my-active-torrents' => 'Torrents aktif saya',
- 'name' => 'Nama',
- 'no-bookmarks' => 'Tidak ada bookmark yang ditemukan.',
- 'no-discounts' => 'Saat ini tidak ada diskon',
- 'no-meta' => 'Tidak ada metadata yang ditemukan',
- 'no-privileges' => 'Anda tidak dapat mengunduh file ini - silakan periksa di bawah ini untuk info lebih lanjut',
- 'no-privileges-desc' => 'Silakan selesaikan hasil yang gagal di atas agar tombol unduhan muncul',
- 'not-completed' => 'Mulai Mengunduh Tapi Tidak Pernah Selesai',
- 'not-downloaded' => 'Tidak terunduh',
- 'old-torrent' => 'Torrent lama',
- 'optional' => 'Pilihan',
- 'original-output' => 'Tampilkan / Sembunyikan output asli',
- 'participant' => 'Peserta',
- 'passed' => 'Lulus',
- 'peers' => 'Teman sebaya',
- 'pending' => 'Tertunda',
- 'personal-freeleech' => 'Freeleech pribadi',
- 'poster' => 'Poster',
- 'poster-view' => 'Tampilan poster',
- 'posters' => 'Poster',
- 'prewarn' => 'Pra-pencukuran?',
- 'progress' => 'Kemajuan',
- 'quick-comment' => 'Komentar Cepat',
- 'quick-tip' => 'Jumlah tip cepat',
- 'rated' => 'Dinilai',
- 'rating' => 'Peringkat',
- 'ready' => 'File ini siap untuk diunduh',
- 'rejected' => 'Ditolak',
- 'released' => 'Dirilis',
- 'remaining' => 'Tersisa',
- 'request-reseed' => 'Permintaan Ditinjau Kembali',
- 'requires-reseed' => 'Membutuhkan reseseed',
- 'resurrections' => 'Kebangkitan',
- 'revoke' => 'Mencabut',
- 'rss' => 'RSS',
- 'runtime' => 'Runtime',
- 'satisfied_in' => 'Puas masuk',
- 'say-thanks' => 'Harap ingat untuk mengucapkan terima kasih dan benih selama Anda bisa',
- 'sd-content' => 'Konten SD',
- 'search' => 'Pencarian',
- 'seed-time' => 'Waktu benih',
- 'seeder' => 'Alat penyemai benih',
- 'seeders' => 'Seeder',
- 'seeding' => 'Penyemaian',
- 'seedsize' => 'Seedsize',
- 'seedtime' => 'Waktu penyemaian',
- 'short-completed' => 'C',
- 'short-leechs' => 'L.',
- 'short-seeds' => 'S',
- 'show-files' => 'Tampilkan File',
- 'similar' => 'Torrents Serupa',
- 'size' => 'Ukuran',
- 'special' => 'Khusus',
- 'special-freeleech' => 'Freeleech khusus',
- 'started' => 'Mulai',
- 'status' => 'Status',
- 'statistics' => 'Statistik',
- 'stats' => 'Statistik',
- 'sticky' => 'Lengket',
- 'stream-optimized' => 'Aliran dioptimalkan',
- 'subtitle' => 'Subtitle',
- 'team-player' => 'Pemain tim',
- 'thank' => 'Terima kasih',
- 'thanked' => 'Terima kasih',
- 'thanks' => 'Terima kasih',
- 'thanks-given' => 'Terima kasih diberikan',
- 'times' => 'Waktu',
- 'tip-jar' => 'Tip jar',
- 'title' => 'Judul',
- 'titles' => 'Judul',
- 'top-completed' => 'Top selesai',
- 'top-dead' => 'Mati atas',
- 'top-dying' => 'Sekarat atas',
- 'top-leeched' => 'Lintah atas',
- 'top-seeded' => 'Unggulan teratas',
- 'torrent' => 'Torrent',
- 'torrent-request' => 'Permintaan Torrent',
- 'torrent-tips' => 'Di Total : total BON telah diarahkan ke pengunggah, di antaranya : pengguna berasal dari Anda',
- 'torrent-tips-desc' => 'Ini akan dikurangkan dari poin bonus Anda yang tersedia',
- 'torrents' => 'Torrent',
- 'trailer' => 'Lihat cuplikan',
- 'type' => 'Mengetik',
- 'types' => 'Jenis',
- 'unbookmark' => 'Hapus tanda buku',
- 'unsatisfieds' => 'Tidak puas',
- 'unsticky' => 'Tidak lengket',
- 'updated' => 'Diperbarui',
- 'updated_at' => 'Diperbarui pada',
- 'uploaded' => 'Diunggah',
- 'uploaded-by' => 'Diunggah oleh',
- 'uploader' => 'Pengunggah',
- 'use-fl-token' => 'Gunakan Token Freeleech',
- 'video' => 'Video',
- 'view-more' => 'Lihat lebih banyak',
- 'view-trailer' => 'Lihat cuplikan',
- 'votes' => 'Voting',
+ 'grouping-results' => 'Pengelompokan Hasil',
+ 'groupings-view' => 'Tampilan Pengelompokan',
+ 'have-completed' => 'Lengkap',
+ 'have-downloaded' => 'Diunduh',
+ 'have-not-completed' => 'Tidak selesai',
+ 'have-not-downloaded' => 'Tidak terunduh',
+ 'health' => 'Kesehatan',
+ 'history' => 'Sejarah',
+ 'hitrun' => 'H&R?',
+ 'hit-and-runs' => 'Hit and Run penting',
+ 'immune' => 'Imun?',
+ 'info' => 'Info',
+ 'internal' => 'Intern',
+ 'internal-release' => 'Rilis internal',
+ 'last-seed-activity' => 'Aktivitas benih terakhir',
+ 'last-seeder' => 'Anda adalah Seeder Terakhir Yang Tersisa! (telah diunduh minimal 3 kali)',
+ 'last-update' => 'Pembaharuan Terakhir',
+ 'leave-tip' => 'Tinggalkan tip',
+ 'leecher' => 'Leecher',
+ 'leechers' => 'Leechers',
+ 'leeching' => 'Leeching',
+ 'left' => 'Kiri',
+ 'legendary-seeder' => 'Seeder legendaris',
+ 'legendary-torrent' => 'Torrent legendaris',
+ 'list' => 'Daftar',
+ 'me' => 'Saya',
+ 'media-info' => 'MediaInfo',
+ 'media-info-parser' => 'Parser MediaInfo',
+ 'media-info-paste' => 'Rekatkan pembuangan MediaInfo di sini',
+ 'meta-desc' => 'Unduh: nama dengan kecepatan maksimum',
+ 'moderation' => 'Moderasi',
+ 'movies' => 'Film',
+ 'mvp' => 'MVP',
+ 'my-active-torrents' => 'Torrents aktif saya',
+ 'name' => 'Nama',
+ 'no-bookmarks' => 'Tidak ada bookmark yang ditemukan.',
+ 'no-discounts' => 'Saat ini tidak ada diskon',
+ 'no-meta' => 'Tidak ada metadata yang ditemukan',
+ 'no-privileges' => 'Anda tidak dapat mengunduh file ini - silakan periksa di bawah ini untuk info lebih lanjut',
+ 'no-privileges-desc' => 'Silakan selesaikan hasil yang gagal di atas agar tombol unduhan muncul',
+ 'not-completed' => 'Mulai Mengunduh Tapi Tidak Pernah Selesai',
+ 'not-downloaded' => 'Tidak terunduh',
+ 'old-torrent' => 'Torrent lama',
+ 'optional' => 'Pilihan',
+ 'original-output' => 'Tampilkan / Sembunyikan output asli',
+ 'participant' => 'Peserta',
+ 'passed' => 'Lulus',
+ 'peers' => 'Teman sebaya',
+ 'pending' => 'Tertunda',
+ 'personal-freeleech' => 'Freeleech pribadi',
+ 'poster' => 'Poster',
+ 'poster-view' => 'Tampilan poster',
+ 'posters' => 'Poster',
+ 'prewarn' => 'Pra-pencukuran?',
+ 'progress' => 'Kemajuan',
+ 'quick-comment' => 'Komentar Cepat',
+ 'quick-tip' => 'Jumlah tip cepat',
+ 'rated' => 'Dinilai',
+ 'rating' => 'Peringkat',
+ 'ready' => 'File ini siap untuk diunduh',
+ 'rejected' => 'Ditolak',
+ 'released' => 'Dirilis',
+ 'remaining' => 'Tersisa',
+ 'request-reseed' => 'Permintaan Ditinjau Kembali',
+ 'requires-reseed' => 'Membutuhkan reseseed',
+ 'resurrections' => 'Kebangkitan',
+ 'revoke' => 'Mencabut',
+ 'rss' => 'RSS',
+ 'runtime' => 'Runtime',
+ 'satisfied_in' => 'Puas masuk',
+ 'say-thanks' => 'Harap ingat untuk mengucapkan terima kasih dan benih selama Anda bisa',
+ 'sd-content' => 'Konten SD',
+ 'search' => 'Pencarian',
+ 'seed-time' => 'Waktu benih',
+ 'seeder' => 'Alat penyemai benih',
+ 'seeders' => 'Seeder',
+ 'seeding' => 'Penyemaian',
+ 'seedsize' => 'Seedsize',
+ 'seedtime' => 'Waktu penyemaian',
+ 'short-completed' => 'C',
+ 'short-leechs' => 'L.',
+ 'short-seeds' => 'S',
+ 'show-files' => 'Tampilkan File',
+ 'similar' => 'Torrents Serupa',
+ 'size' => 'Ukuran',
+ 'special' => 'Khusus',
+ 'special-freeleech' => 'Freeleech khusus',
+ 'started' => 'Mulai',
+ 'status' => 'Status',
+ 'statistics' => 'Statistik',
+ 'stats' => 'Statistik',
+ 'sticky' => 'Lengket',
+ 'stream-optimized' => 'Aliran dioptimalkan',
+ 'subtitle' => 'Subtitle',
+ 'team-player' => 'Pemain tim',
+ 'thank' => 'Terima kasih',
+ 'thanked' => 'Terima kasih',
+ 'thanks' => 'Terima kasih',
+ 'thanks-given' => 'Terima kasih diberikan',
+ 'times' => 'Waktu',
+ 'tip-jar' => 'Tip jar',
+ 'title' => 'Judul',
+ 'titles' => 'Judul',
+ 'top-completed' => 'Top selesai',
+ 'top-dead' => 'Mati atas',
+ 'top-dying' => 'Sekarat atas',
+ 'top-leeched' => 'Lintah atas',
+ 'top-seeded' => 'Unggulan teratas',
+ 'torrent' => 'Torrent',
+ 'torrent-request' => 'Permintaan Torrent',
+ 'torrent-tips' => 'Di Total : total BON telah diarahkan ke pengunggah, di antaranya : pengguna berasal dari Anda',
+ 'torrent-tips-desc' => 'Ini akan dikurangkan dari poin bonus Anda yang tersedia',
+ 'torrents' => 'Torrent',
+ 'trailer' => 'Lihat cuplikan',
+ 'type' => 'Mengetik',
+ 'types' => 'Jenis',
+ 'unbookmark' => 'Hapus tanda buku',
+ 'unsatisfieds' => 'Tidak puas',
+ 'unsticky' => 'Tidak lengket',
+ 'updated' => 'Diperbarui',
+ 'updated_at' => 'Diperbarui pada',
+ 'uploaded' => 'Diunggah',
+ 'uploaded-by' => 'Diunggah oleh',
+ 'uploader' => 'Pengunggah',
+ 'use-fl-token' => 'Gunakan Token Freeleech',
+ 'video' => 'Video',
+ 'view-more' => 'Lihat lebih banyak',
+ 'view-trailer' => 'Lihat cuplikan',
+ 'votes' => 'Voting',
];
diff --git a/lang/id/user.php b/lang/id/user.php
index 0e3ab5eb2..7eb43323a 100644
--- a/lang/id/user.php
+++ b/lang/id/user.php
@@ -12,316 +12,316 @@
*/
return [
- 'about' => 'Tentang',
- 'about-me' => 'Tentang saya',
- 'accepted-at' => 'Diterima di',
- 'accepted-by' => 'Diterima oleh',
- 'account-notification' => 'Pengaturan Pemberitahuan Akun',
- 'account-notification-follow' => 'Terima pemberitahuan saat pengguna mengikuti akun Anda',
- 'account-notification-unfollow' => 'Terima pemberitahuan saat pengguna membatalkan akun Anda',
- 'account-notification-help' => 'Kontrol notifikasi mana yang dikirim terkait akun Anda. Pengaturan ini ditimpa jika Anda tidak mengizinkan grup mana pun untuk mengirim pemberitahuan tentang akun Anda atau jika Anda Nonaktifkan Pemberitahuan',
- 'account-settings' => 'Pengaturan akun',
- 'achievement-privacy' => 'Pengaturan Prestasi',
- 'achievement-privacy-list' => 'Izinkan pengguna melihat daftar pencapaian Anda',
- 'achievement-help' => 'Kontrol berbagi informasi spesifik terkait prestasi dengan grup yang diizinkan mengakses profil Anda. Pengaturan ini ditimpa jika Anda tidak mengizinkan grup mana pun untuk mengakses prestasi Anda atau jika Anda Go Private',
- 'achievements' => 'Prestasi',
- 'active' => 'Aktif',
- 'active-table' => 'My Active Table',
- 'active-torrents' => 'Torrents aktif',
- 'active-warning' => 'Peringatan Aktif',
- 'active-warnings' => 'Peringatan Aktif',
- 'add-seedbox' => 'Tambahkan Seedbox',
- 'all-torrents' => 'Semua Torrents',
- 'article-comments' => 'Komentar Artikel Dibuat',
- 'avatar' => 'Avatar',
- 'avg-seedtime' => 'Waktu Pembibitan Rata-rata',
- 'badges' => 'Lencana',
- 'ban' => 'Larang Pengguna',
- 'ban-log' => 'Ban Log',
- 'become-hidden' => 'Menjadi Tersembunyi',
- 'become-visible' => 'Menjadi Terlihat',
- 'bon' => 'BON',
- 'bon-notification' => 'Pengaturan Pemberitahuan BON',
- 'bon-notification-gift' => 'Terima pemberitahuan saat pengguna memberi Anda bon',
- 'bon-notification-help' => 'Kontrol notifikasi mana yang dikirim terkait transaksi BON. Pengaturan ini diganti jika Anda tidak mengizinkan grup mana pun untuk mengirim pemberitahuan tentang BON atau jika Anda Nonaktifkan Pemberitahuan',
- 'bookmarks' => 'Bookmark',
- 'bounty-given' => 'Karunia Diberikan',
- 'bounty-received' => 'Hadiah Diterima',
- 'can-chat' => 'Bisa ngobrol',
- 'can-comment' => 'Bisa Berkomentar',
- 'can-download' => 'Dapat Mengunduh',
- 'can-invite' => 'Bisa Mengundang',
- 'can-request' => 'Dapat Meminta',
- 'can-upload' => 'Dapat Mengunggah',
- 'certified-banker' => 'Bankir Bersertifikat',
- 'certified-banker-desc' => 'Memiliki 50.000 Atau Lebih BON Di Bank',
- 'certified-downloader' => 'Pengunduh Bersertifikat',
- 'certified-downloader-desc' => 'Unduh 100 Atau Lebih Torrents!',
- 'certified-seeder' => 'Seeder Bersertifikat',
- 'certified-seeder-desc' => 'Menyemai 150 Atau Lebih Torrents!',
- 'change-email' => 'Ganti e-mail',
- 'change-email-help' => 'Anda harus mengkonfirmasi ulang akun Anda, setelah Anda mengubah email Anda',
- 'change-password' => 'Ganti kata sandi',
- 'change-password-help' => 'Anda harus masuk lagi, setelah Anda mengubah kata sandi',
- 'client-ip-address' => 'Alamat IP Klien',
- 'code' => 'Kode',
- 'comments' => 'Komentar',
- 'created-on' => 'Dibuat pada',
- 'credited-download' => 'Unduhan yang dikreditkan',
- 'credited-upload' => 'Unggahan yang dikreditkan',
- 'current-password' => 'Kata sandi saat ini',
- 'custom-title' => 'Judul khusus',
- 'delete' => 'Hapus pengguna',
- 'disable-notifications' => 'Nonaktifkan Notifikasi',
- 'disclaimer' => 'Penolakan',
- 'disclaimer-info' => 'Kami secara default tidak mencatat alamat IP pengguna seperti kebanyakan pelacak. Dengan menambahkan IP seedbox Anda di bawah ini, diharapkan Anda tahu IP Anda yang tercantum di bawah ini sekarang disimpan dalam database kami kecuali Anda menghapus catatan.',
- 'disclaimer-info-bordered' => 'IP Seedbox yang ditambahkan kemudian akan memicu tag torrent kecepatan tinggi pada torrent yang diunggulkan dari IP yang tercantum di bawah ini',
- 'download-bon' => 'Unduh Dihapus Dari BON Store',
- 'download-recorded' => 'Rekaman Unduhan',
- 'download-true' => 'Unduh Sejati',
- 'downloads' => 'Unduhan',
- 'edit' => 'Edit Pengguna',
- 'edit-profile' => 'Edit Profil',
- 'enable-notifications' => 'Aktifkan Pemberitahuan',
- 'expired' => 'Kedaluwarsa',
- 'expires-on' => 'Kadaluarsa pada',
- 'extra' => 'Tambahan',
- 'filled-request' => 'Permintaan Anggota yang Diisi',
- 'follow' => 'Mengikuti',
- 'follower-privacy' => 'Pengaturan Pengikut',
- 'follower-privacy-list' => 'Izinkan pengguna melihat daftar pengikut Anda',
- 'follower-help' => 'Kontrol berbagi informasi spesifik terkait pengikut dengan grup yang diizinkan untuk mengakses profil Anda. Pengaturan ini ditimpa jika Anda tidak mengizinkan grup mana pun untuk mengakses pengikut Anda atau jika Anda Go Private',
- 'followers' => 'Pengikut',
- 'following-notification' => 'Ikuti Pengaturan Pemberitahuan Pengguna',
- 'following-notification-upload' => 'Terima pemberitahuan saat pengguna yang mengikuti mengunggah torrent',
- 'following-notification-help' => 'Kontrol notifikasi mana yang dikirim terkait tindakan situs pengguna yang diikuti. Pengaturan ini ditimpa jika Anda tidak mengizinkan grup mana pun untuk mengirim pemberitahuan tentang pengguna yang diikuti atau jika Anda Nonaktifkan Pemberitahuan',
- 'formats-are-supported' => ': format didukung',
- 'forum-notification' => 'Pengaturan Notifikasi Forum',
- 'forum-notification-topic' => 'Terima pemberitahuan saat topik yang Anda mulai mendapat kiriman baru',
- 'forum-notification-help' => 'Mengontrol notifikasi yang dikirim terkait aktivitas forum. Pengaturan ini ditimpa jika Anda tidak mengizinkan grup mana pun untuk mengirim pemberitahuan tentang aktivitas forum atau jika Anda Nonaktifkan Notifikasi',
- 'forum-privacy' => 'Pengaturan Forum',
- 'forum-privacy-post' => 'Izinkan pengguna untuk melihat daftar posting forum yang telah Anda posting',
- 'forum-privacy-topic' => 'Izinkan pengguna melihat daftar topik forum yang telah Anda mulai',
- 'forum-help' => 'Kontrol berbagi statistik dan informasi terkait forum tertentu dengan kelompok yang diizinkan untuk mengakses profil Anda. Pengaturan ini ditimpa jika Anda tidak mengizinkan grup mana pun untuk mengakses statistik dan informasi terkait forum Anda atau jika Anda Menjadi Privat',
- 'forum-signature' => 'Forum Signature',
- 'forums' => 'Forum',
- 'general' => 'Umum',
- 'general-settings' => 'Pengaturan Umum',
- 'gift-given' => 'Hadiah Diberikan',
- 'gift-received' => 'Hadiah Diterima',
- 'go-public' => 'Go Public',
- 'go-private' => 'Go Private',
- 'history' => 'Sejarah',
- 'history-table' => 'Tabel Sejarah Saya',
- 'hit-n-runs' => 'Hit and Runs',
- 'hit-n-runs-count' => 'Hit and Run Count (Sepanjang Waktu)',
- 'hit-n-runs-history' => 'Torrent Hit and Runs History',
- 'image' => 'Gambar',
- 'important' => 'Penting',
- 'important-info' => 'Info Penting',
- 'information' => 'Informasi',
- 'invite-friend' => 'Undang teman Anda (Diperlukan Email + Pesan)',
- 'invite-tree' => 'Undang Pohon',
- 'invites' => 'Undangan',
- 'invites-banned' => 'Kesalahan: Hak Undangan Anda Telah Dinonaktifkan',
- 'invites-banned-desc' => 'Jika Anda Merasa Ini Salah, Silakan Hubungi Staf!',
- 'invites-count' => 'Anda Memiliki: menghitung Token yang Diundang',
- 'invites-disabled' => 'Perhatian: Undangan Dinonaktifkan Karena Membuka Pendaftaran!',
- 'invites-disabled-desc' => 'Silakan Periksa Kembali Segera!',
- 'invites-rules' => '- Hanya mengundang orang yang Anda kenal dan percayai.
- Anda akan secara pribadi bertanggung jawab atas mereka yang Anda undang.
- Jangan mengundang Anda sendiri, kami memeriksa setiap pengguna yang diundang.
- Jangan berdagang atau menjual Undangan.
- Jika seseorang yang Anda undang ketahuan selingkuh, akun perdagangan atau undangan penjualan / perdagangan, Anda akan diperingatkan.
',
- 'invites-send' => 'Undangan Kirim',
- 'last-login' => 'Login terakhir',
- 'locked' => 'Terkunci',
- 'locked-achievements' => 'Prestasi terkunci',
- 'member-since' => 'Anggota Sejak',
- 'members-desc' => 'Daftar pengguna yang terdaftar di: judul dengan semua grup. Temukan pengguna sekarang.',
- 'mention-notification' => '@Setelan Pemberitahuan Pemberitahuan',
+ 'about' => 'Tentang',
+ 'about-me' => 'Tentang saya',
+ 'accepted-at' => 'Diterima di',
+ 'accepted-by' => 'Diterima oleh',
+ 'account-notification' => 'Pengaturan Pemberitahuan Akun',
+ 'account-notification-follow' => 'Terima pemberitahuan saat pengguna mengikuti akun Anda',
+ 'account-notification-unfollow' => 'Terima pemberitahuan saat pengguna membatalkan akun Anda',
+ 'account-notification-help' => 'Kontrol notifikasi mana yang dikirim terkait akun Anda. Pengaturan ini ditimpa jika Anda tidak mengizinkan grup mana pun untuk mengirim pemberitahuan tentang akun Anda atau jika Anda Nonaktifkan Pemberitahuan',
+ 'account-settings' => 'Pengaturan akun',
+ 'achievement-privacy' => 'Pengaturan Prestasi',
+ 'achievement-privacy-list' => 'Izinkan pengguna melihat daftar pencapaian Anda',
+ 'achievement-help' => 'Kontrol berbagi informasi spesifik terkait prestasi dengan grup yang diizinkan mengakses profil Anda. Pengaturan ini ditimpa jika Anda tidak mengizinkan grup mana pun untuk mengakses prestasi Anda atau jika Anda Go Private',
+ 'achievements' => 'Prestasi',
+ 'active' => 'Aktif',
+ 'active-table' => 'My Active Table',
+ 'active-torrents' => 'Torrents aktif',
+ 'active-warning' => 'Peringatan Aktif',
+ 'active-warnings' => 'Peringatan Aktif',
+ 'add-seedbox' => 'Tambahkan Seedbox',
+ 'all-torrents' => 'Semua Torrents',
+ 'article-comments' => 'Komentar Artikel Dibuat',
+ 'avatar' => 'Avatar',
+ 'avg-seedtime' => 'Waktu Pembibitan Rata-rata',
+ 'badges' => 'Lencana',
+ 'ban' => 'Larang Pengguna',
+ 'ban-log' => 'Ban Log',
+ 'become-hidden' => 'Menjadi Tersembunyi',
+ 'become-visible' => 'Menjadi Terlihat',
+ 'bon' => 'BON',
+ 'bon-notification' => 'Pengaturan Pemberitahuan BON',
+ 'bon-notification-gift' => 'Terima pemberitahuan saat pengguna memberi Anda bon',
+ 'bon-notification-help' => 'Kontrol notifikasi mana yang dikirim terkait transaksi BON. Pengaturan ini diganti jika Anda tidak mengizinkan grup mana pun untuk mengirim pemberitahuan tentang BON atau jika Anda Nonaktifkan Pemberitahuan',
+ 'bookmarks' => 'Bookmark',
+ 'bounty-given' => 'Karunia Diberikan',
+ 'bounty-received' => 'Hadiah Diterima',
+ 'can-chat' => 'Bisa ngobrol',
+ 'can-comment' => 'Bisa Berkomentar',
+ 'can-download' => 'Dapat Mengunduh',
+ 'can-invite' => 'Bisa Mengundang',
+ 'can-request' => 'Dapat Meminta',
+ 'can-upload' => 'Dapat Mengunggah',
+ 'certified-banker' => 'Bankir Bersertifikat',
+ 'certified-banker-desc' => 'Memiliki 50.000 Atau Lebih BON Di Bank',
+ 'certified-downloader' => 'Pengunduh Bersertifikat',
+ 'certified-downloader-desc' => 'Unduh 100 Atau Lebih Torrents!',
+ 'certified-seeder' => 'Seeder Bersertifikat',
+ 'certified-seeder-desc' => 'Menyemai 150 Atau Lebih Torrents!',
+ 'change-email' => 'Ganti e-mail',
+ 'change-email-help' => 'Anda harus mengkonfirmasi ulang akun Anda, setelah Anda mengubah email Anda',
+ 'change-password' => 'Ganti kata sandi',
+ 'change-password-help' => 'Anda harus masuk lagi, setelah Anda mengubah kata sandi',
+ 'client-ip-address' => 'Alamat IP Klien',
+ 'code' => 'Kode',
+ 'comments' => 'Komentar',
+ 'created-on' => 'Dibuat pada',
+ 'credited-download' => 'Unduhan yang dikreditkan',
+ 'credited-upload' => 'Unggahan yang dikreditkan',
+ 'current-password' => 'Kata sandi saat ini',
+ 'custom-title' => 'Judul khusus',
+ 'delete' => 'Hapus pengguna',
+ 'disable-notifications' => 'Nonaktifkan Notifikasi',
+ 'disclaimer' => 'Penolakan',
+ 'disclaimer-info' => 'Kami secara default tidak mencatat alamat IP pengguna seperti kebanyakan pelacak. Dengan menambahkan IP seedbox Anda di bawah ini, diharapkan Anda tahu IP Anda yang tercantum di bawah ini sekarang disimpan dalam database kami kecuali Anda menghapus catatan.',
+ 'disclaimer-info-bordered' => 'IP Seedbox yang ditambahkan kemudian akan memicu tag torrent kecepatan tinggi pada torrent yang diunggulkan dari IP yang tercantum di bawah ini',
+ 'download-bon' => 'Unduh Dihapus Dari BON Store',
+ 'download-recorded' => 'Rekaman Unduhan',
+ 'download-true' => 'Unduh Sejati',
+ 'downloads' => 'Unduhan',
+ 'edit' => 'Edit Pengguna',
+ 'edit-profile' => 'Edit Profil',
+ 'enable-notifications' => 'Aktifkan Pemberitahuan',
+ 'expired' => 'Kedaluwarsa',
+ 'expires-on' => 'Kadaluarsa pada',
+ 'extra' => 'Tambahan',
+ 'filled-request' => 'Permintaan Anggota yang Diisi',
+ 'follow' => 'Mengikuti',
+ 'follower-privacy' => 'Pengaturan Pengikut',
+ 'follower-privacy-list' => 'Izinkan pengguna melihat daftar pengikut Anda',
+ 'follower-help' => 'Kontrol berbagi informasi spesifik terkait pengikut dengan grup yang diizinkan untuk mengakses profil Anda. Pengaturan ini ditimpa jika Anda tidak mengizinkan grup mana pun untuk mengakses pengikut Anda atau jika Anda Go Private',
+ 'followers' => 'Pengikut',
+ 'following-notification' => 'Ikuti Pengaturan Pemberitahuan Pengguna',
+ 'following-notification-upload' => 'Terima pemberitahuan saat pengguna yang mengikuti mengunggah torrent',
+ 'following-notification-help' => 'Kontrol notifikasi mana yang dikirim terkait tindakan situs pengguna yang diikuti. Pengaturan ini ditimpa jika Anda tidak mengizinkan grup mana pun untuk mengirim pemberitahuan tentang pengguna yang diikuti atau jika Anda Nonaktifkan Pemberitahuan',
+ 'formats-are-supported' => ': format didukung',
+ 'forum-notification' => 'Pengaturan Notifikasi Forum',
+ 'forum-notification-topic' => 'Terima pemberitahuan saat topik yang Anda mulai mendapat kiriman baru',
+ 'forum-notification-help' => 'Mengontrol notifikasi yang dikirim terkait aktivitas forum. Pengaturan ini ditimpa jika Anda tidak mengizinkan grup mana pun untuk mengirim pemberitahuan tentang aktivitas forum atau jika Anda Nonaktifkan Notifikasi',
+ 'forum-privacy' => 'Pengaturan Forum',
+ 'forum-privacy-post' => 'Izinkan pengguna untuk melihat daftar posting forum yang telah Anda posting',
+ 'forum-privacy-topic' => 'Izinkan pengguna melihat daftar topik forum yang telah Anda mulai',
+ 'forum-help' => 'Kontrol berbagi statistik dan informasi terkait forum tertentu dengan kelompok yang diizinkan untuk mengakses profil Anda. Pengaturan ini ditimpa jika Anda tidak mengizinkan grup mana pun untuk mengakses statistik dan informasi terkait forum Anda atau jika Anda Menjadi Privat',
+ 'forum-signature' => 'Forum Signature',
+ 'forums' => 'Forum',
+ 'general' => 'Umum',
+ 'general-settings' => 'Pengaturan Umum',
+ 'gift-given' => 'Hadiah Diberikan',
+ 'gift-received' => 'Hadiah Diterima',
+ 'go-public' => 'Go Public',
+ 'go-private' => 'Go Private',
+ 'history' => 'Sejarah',
+ 'history-table' => 'Tabel Sejarah Saya',
+ 'hit-n-runs' => 'Hit and Runs',
+ 'hit-n-runs-count' => 'Hit and Run Count (Sepanjang Waktu)',
+ 'hit-n-runs-history' => 'Torrent Hit and Runs History',
+ 'image' => 'Gambar',
+ 'important' => 'Penting',
+ 'important-info' => 'Info Penting',
+ 'information' => 'Informasi',
+ 'invite-friend' => 'Undang teman Anda (Diperlukan Email + Pesan)',
+ 'invite-tree' => 'Undang Pohon',
+ 'invites' => 'Undangan',
+ 'invites-banned' => 'Kesalahan: Hak Undangan Anda Telah Dinonaktifkan',
+ 'invites-banned-desc' => 'Jika Anda Merasa Ini Salah, Silakan Hubungi Staf!',
+ 'invites-count' => 'Anda Memiliki: menghitung Token yang Diundang',
+ 'invites-disabled' => 'Perhatian: Undangan Dinonaktifkan Karena Membuka Pendaftaran!',
+ 'invites-disabled-desc' => 'Silakan Periksa Kembali Segera!',
+ 'invites-rules' => '- Hanya mengundang orang yang Anda kenal dan percayai.
- Anda akan secara pribadi bertanggung jawab atas mereka yang Anda undang.
- Jangan mengundang Anda sendiri, kami memeriksa setiap pengguna yang diundang.
- Jangan berdagang atau menjual Undangan.
- Jika seseorang yang Anda undang ketahuan selingkuh, akun perdagangan atau undangan penjualan / perdagangan, Anda akan diperingatkan.
',
+ 'invites-send' => 'Undangan Kirim',
+ 'last-login' => 'Login terakhir',
+ 'locked' => 'Terkunci',
+ 'locked-achievements' => 'Prestasi terkunci',
+ 'member-since' => 'Anggota Sejak',
+ 'members-desc' => 'Daftar pengguna yang terdaftar di: judul dengan semua grup. Temukan pengguna sekarang.',
+ 'mention-notification' => '@Setelan Pemberitahuan Pemberitahuan',
'mention-notification-article-comment' => 'Terima pemberitahuan saat Anda disebutkan dalam komentar artikel',
'mention-notification-torrent-comment' => 'Terima pemberitahuan saat Anda disebut-sebut dalam komentar torrent',
'mention-notification-request-comment' => 'Terima pemberitahuan saat Anda disebutkan dalam komentar permintaan',
- 'mention-notification-forum-post' => 'Terima pemberitahuan saat Anda disebut-sebut dalam posting forum',
- 'mention-notification-help' => 'Kontrol notifikasi mana yang dikirim saat pengguna menyinggung Anda. Pengaturan ini ditimpa jika Anda tidak mengizinkan grup mana pun untuk mengirim pemberitahuan jika ada pengguna yang menyebutkan Anda atau jika Anda Menonaktifkan Pemberitahuan.',
- 'moderated-by' => 'Dimoderasi oleh: mod aktif',
- 'my-bonus-points' => 'Poin Bonus saya',
- 'my-bookmarks' => 'Bookmark saya',
- 'my-fl-tokens' => 'Token FL saya',
- 'my-general-settings' => 'Pengaturan Umum Saya',
- 'my-notification' => 'Pemberitahuan saya',
- 'my-notification-settings' => 'Pengaturan Pemberitahuan Saya',
- 'my-privacy' => 'Privasi saya',
- 'my-privacy-settings' => 'Pengaturan Privasi Saya',
- 'my-profile' => 'Profil saya',
- 'my-requested' => 'Saya Diminta',
- 'my-security' => 'Keamanan saya',
- 'my-security-settings' => 'Pengaturan Keamanan Saya',
- 'my-seedboxes' => 'Kotak Benih Saya',
- 'my-settings' => 'Pengaturan Saya',
- 'my-wishlist' => 'Keinginanku',
- 'no-logs' => 'Tidak ada log undangan dalam database untuk pengguna ini!',
- 'no-seedboxes' => 'Tidak ada kotak benih 😔',
- 'not-authorized' => 'Anda tidak berwenang melihat halaman ini. Anggota ini lebih suka disembunyikan seperti ninja!',
- 'note' => 'Catatan',
- 'notification' => 'Pemberitahuan',
- 'notification-settings' => 'Pengaturan pemberitahuan',
- 'notification-from-account' => 'Terima Pemberitahuan Akun Dari',
- 'notification-from-account-help' => 'Anda hanya akan menerima notifikasi akun dari sistem, staf, dan grup berikut. Pengaturan ini diganti jika Anda Nonaktifkan Notifikasi',
- 'notification-from-bon' => 'Terima Pemberitahuan BON Dari',
- 'notification-from-bon-help' => 'Anda hanya akan menerima notifikasi BON dari sistem, staf, dan grup berikut. Pengaturan ini diganti jika Anda Nonaktifkan Notifikasi',
- 'notification-from-following' => 'Terima Pemberitahuan Pengguna yang Diikuti Dari',
- 'notification-from-following-help' => 'Anda hanya akan menerima pemberitahuan pengguna yang diikuti dari grup berikut. Pengaturan ini diganti jika Anda Nonaktifkan Notifikasi',
- 'notification-from-forum' => 'Terima Notifikasi Forum Dari',
- 'notification-from-forum-help' => 'Anda hanya akan menerima notifikasi forum dari sistem, staf, dan grup berikut. Pengaturan ini diganti jika Anda Nonaktifkan Notifikasi',
- 'notification-from-subscription' => 'Terima Pemberitahuan Berlangganan Dari',
- 'notification-from-subscription-help' => 'Anda hanya akan menerima notifikasi forum dari sistem, staf, dan grup berikut. Pengaturan ini diganti jika Anda Nonaktifkan Notifikasi',
- 'notification-from-torrent' => 'Terima Pemberitahuan Torrent Dari',
- 'notification-from-torrent-help' => 'Anda hanya akan menerima notifikasi torrent dari sistem, staf, dan grup berikut. Pengaturan ini diganti jika Anda Nonaktifkan Notifikasi',
- 'notification-from-mention' => 'Terima Pemberitahuan @Mention From',
- 'notification-from-mention-help' => 'Anda hanya akan menerima pemberitahuan @mention dari sistem, staf, dan grup berikut. Pengaturan ini diganti jika Anda Nonaktifkan Notifikasi',
- 'notification-from-request' => 'Terima Pemberitahuan Permintaan Dari',
- 'notification-from-request-help' => 'Anda hanya akan menerima notifikasi permintaan dari sistem, staf, dan grup berikut. Pengaturan ini diganti jika Anda Nonaktifkan Notifikasi',
- 'notifications' => 'Notifikasi',
- 'offline' => 'Pengguna Sedang Offline!',
- 'online' => 'Pengguna Online!',
- 'options' => 'Pilihan',
- 'other-help' => 'Kontrol pembagian statistik dan informasi lainnya dengan grup yang diizinkan mengakses profil Anda. Pengaturan ini ditimpa jika Anda tidak mengizinkan grup mana pun untuk mengakses statistik dan informasi Anda yang lain atau jika Anda Go Private',
- 'other-privacy' => 'Pengaturan lainnya',
- 'other-privacy-online' => 'Izinkan pengguna melihat Anda di blok pengguna online',
- 'passkey' => 'PID',
- 'passkey-warning' => 'PID seperti kata sandi Anda, Anda harus tetap aman!',
- 'pending-achievements' => 'Prestasi yang tertunda',
- 'per-torrent' => 'Per Torrent',
- 'posts' => 'Posting',
- 'posts-posted' => 'Kiriman Forum Diposting',
- 'privacy' => 'Pribadi',
- 'privacy-settings' => 'Pengaturan Privasi',
- 'private-info' => 'Info Pribadi',
- 'private-forum-profile' => 'Perhatian: Topik Anggota & Riwayat Pos Ini Telah Ditetapkan Untuk PRIVATE!',
- 'private-profile' => 'Perhatian: Profil Ini Telah Ditetapkan Untuk PRIVATE!',
- 'profile' => 'Profil',
- 'profile-desc' => 'Pengguna: profil pengguna terdaftar pada: judul',
- 'profile-privacy' => 'Pengaturan profil',
- 'profile-privacy-torrent-count' => 'Bagikan jumlah total unduhan, unggahan, benih, dan lintah Anda',
- 'profile-privacy-torrent-ratio' => 'Bagikan total unggah / unduh data Anda bersama dengan rasio yang direkam',
- 'profile-privacy-torrent-seed' => 'Bagikan total waktu penyemaian dan rata-rata Anda',
- 'profile-privacy-title' => 'Bagikan informasi judul pribadi Anda',
- 'profile-privacy-about' => 'Bagikan informasi pribadi Anda tentang saya kepada saya',
- 'profile-privacy-bon-extra' => 'Bagikan statistik BON Anda',
- 'profile-privacy-comment-extra' => 'Bagikan statistik komentar Anda',
- 'profile-privacy-forum-extra' => 'Bagikan statistik forum Anda',
- 'profile-privacy-request-extra' => 'Bagikan statistik permintaan Anda',
- 'profile-privacy-torrent-extra' => 'Bagikan statistik torrent Anda',
- 'profile-privacy-badge' => 'Bagikan lencana yang Anda peroleh',
- 'profile-privacy-achievement' => 'Bagikan prestasi terbaru Anda',
- 'profile-privacy-follower' => 'Bagikan pengikut terbaru Anda',
- 'profile-privacy-warning' => 'Bagikan peringatan H&R Anda',
- 'profile-privacy-help' => 'Kontrol statistik dan potongan informasi mana yang muncul di profil Anda. Pengaturan ini ditimpa jika Anda tidak mengizinkan grup mana pun untuk mengakses profil Anda atau jika Anda Go Private',
- 'public-info' => 'Info Publik',
- 'recent-achievements' => 'Prestasi terbaru',
- 'recent-followers' => 'Pengikut Terbaru',
- 'registration-date' => 'Tanggal registrasi',
- 'report' => 'Melaporkan',
- 'request-help' => 'Kontrol pembagian statistik dan informasi terkait permintaan khusus dengan grup yang diizinkan mengakses profil Anda. Pengaturan ini ditimpa jika Anda tidak mengizinkan grup mana pun untuk mengakses statistik dan informasi terkait yang Anda minta atau jika Anda Pribadi',
- 'request' => 'Permintaan',
- 'requested' => 'Diminta',
- 'requests' => 'Permintaan',
- 'request-comments' => 'Minta Komentar Dibuat',
- 'request-notification' => 'Pengaturan Pemberitahuan Permintaan',
- 'request-notification-bounty' => 'Terima pemberitahuan saat torrent yang diminta mendapat hadiah baru',
- 'request-notification-comment' => 'Terima pemberitahuan saat torrent yang diminta mendapat komentar baru',
- 'request-notification-fill' => 'Terima pemberitahuan saat torrent yang diminta diisi',
- 'request-notification-fill-approve' => 'Terima pemberitahuan saat isian torrent yang diminta disetujui',
- 'request-notification-fill-reject' => 'Terima pemberitahuan saat isian torrent yang diminta ditolak',
- 'request-notification-claim' => 'Terima pemberitahuan saat torrent yang diminta diklaim',
- 'request-notification-unclaim' => 'Terima pemberitahuan saat torrent yang diminta tidak diklaim',
- 'request-notification-help' => 'Kontrol notifikasi mana yang dikirim terkait aktivitas permintaan. Pengaturan ini ditimpa jika Anda tidak mengizinkan grup mana pun untuk mengirim pemberitahuan tentang aktivitas permintaan atau jika Anda Nonaktifkan Pemberitahuan',
- 'request-privacy' => 'Pengaturan Permintaan',
- 'request-privacy-requested' => 'Izinkan pengguna melihat daftar permintaan yang telah Anda buat',
- 'reset-passkey' => 'Atur Ulang Kunci Pas (PID)',
- 'reset-passkey-help' => 'Anda harus mengunduh ulang / mengunggah kembali semua torrent aktif Anda, setelah mengatur ulang PID',
- 'reset-rss' => 'Atur Ulang Kunci RSS (RID)',
- 'reset-rss-help' => 'Anda harus memuat ulang semua umpan RSS aktif Anda, setelah mengatur ulang RID',
- 'resurrections' => 'Kebangkitan',
- 'search' => 'Pencarian cepat dengan nama pengguna',
- 'security' => 'Keamanan',
- 'security-settings' => 'Pengaturan keamanan',
- 'seedboxes' => 'Kotak benih',
- 'seeds' => 'Biji',
- 'send-invite' => 'Kirim undangan',
- 'sender' => 'Pengirim',
- 'settings' => 'Pengaturan',
- 'show-passkey' => 'Tampilkan PID',
- 'staff-noted' => 'Akun Tercatat Staf',
- 'statistics' => 'Statistik',
- 'subscription-notification' => 'Pengaturan Pemberitahuan Berlangganan',
- 'subscription-notification-forum' => 'Terima pemberitahuan saat forum berlangganan mendapatkan topik baru',
- 'subscription-notification-topic' => 'Terima pemberitahuan saat topik berlangganan mendapat kiriman baru',
- 'subscription-notification-help' => 'Kontrol notifikasi yang dikirim terkait langganan Anda. Pengaturan ini diganti jika Anda tidak mengizinkan grup mana pun untuk mengirim pemberitahuan tentang langganan Anda atau jika Anda Nonaktifkan Notifikasi',
- 'thanks-given' => 'Terima kasih',
- 'thanks-received' => 'Terima kasih diterima',
- 'tips-given' => 'Tips yang diberikan',
- 'tips-received' => 'Tips diterima',
- 'title' => 'Judul',
- 'top-bankers' => 'Bankir top',
- 'top-downloaders-data' => 'Pengunduh Teratas (Data)',
- 'top-leechers' => 'Leechers teratas',
- 'top-leechers-count' => 'Leechers Teratas (Hitungan)',
- 'top-seeders' => 'Unggulan Teratas',
- 'top-seeders-count' => 'Unggulan Teratas (Hitungan)',
- 'top-seeding-size' => 'Pembibitan Top (Ukuran)',
- 'top-seedtime' => 'Seedtime Top',
- 'top-uploaders-data' => 'Pengunggah Teratas (Data)',
- 'top-uploaders-count' => 'Pengunggah Teratas (Hitungan)',
- 'topics' => 'Topik',
- 'topics-started' => 'Topik Forum Dimulai',
- 'torrent-comments' => 'Komentar Torrent Dibuat',
- 'torrent-help' => 'Kontrol berbagi statistik dan informasi terkait torrent tertentu dengan grup yang diizinkan untuk mengakses profil Anda. Pengaturan ini ditimpa jika Anda tidak mengizinkan grup mana pun untuk mengakses statistik dan informasi terkait torrent Anda atau jika Anda Go Private',
- 'torrent-notification' => 'Pengaturan Pemberitahuan Torrent',
- 'torrent-notification-comment' => 'Terima pemberitahuan saat torrent yang diunggah mendapat komentar baru',
- 'torrent-notification-thank' => 'Terima pemberitahuan saat torrent yang diunggah mendapat ucapan terima kasih baru',
- 'torrent-notification-tip' => 'Terima pemberitahuan saat torrent yang diunggah mendapat tip baru',
- 'torrent-notification-help' => 'Kontrol notifikasi mana yang dikirim terkait aktivitas torrent. Pengaturan ini ditimpa jika Anda tidak mengizinkan grup mana pun untuk mengirim pemberitahuan tentang aktivitas torrent atau jika Anda Nonaktifkan Notifikasi',
- 'torrent-privacy' => 'Pengaturan Torrent',
- 'torrent-privacy-download' => 'Bolehkan pengguna untuk melihat daftar torrent yang telah Anda unduh',
- 'torrent-privacy-upload' => 'Izinkan pengguna melihat daftar torrent yang telah Anda unggah',
- 'torrent-privacy-peer' => 'Izinkan pengguna melihat Anda di tabel riwayat rekan torrent',
- 'torrents' => 'Torrent',
- 'torrents-history' => 'Sejarah Torrents',
- 'total-download' => 'Total Unduhan',
- 'total-downloads' => 'Total Unduhan',
- 'total-leeching' => 'Total Leeching',
- 'total-seeding' => 'Total Seeding',
- 'total-seedtime' => 'Total Seedtime',
- 'total-upload' => 'Total Upload',
- 'total-uploads' => 'Total Upload',
- 'unban' => 'Batalkan Pengguna',
- 'unfollow' => 'Berhenti mengikuti',
- 'unlocked' => 'Tidak terkunci',
- 'unlocked-achievements' => 'Prestasi Tidak Terkunci',
- 'unsatisfieds' => 'Tidak bersalah',
- 'upload-bon' => 'Unggah Ditambahkan Dari BON Store',
- 'upload-recorded' => 'Unggah Terekam',
- 'upload-true' => 'Unggah Sejati',
- 'uploads' => 'Unggah',
- 'uploads-table' => 'Tabel Unggahan',
- 'user' => 'Pengguna',
- 'user-id' => 'identitas pengguna',
- 'username-seedbox' => 'Seedbox Nama Pengguna',
- 'visible-to-achievement' => 'Prestasi Terlihat Untuk',
- 'visible-to-achievement-help' => 'Prestasi Anda hanya akan terlihat oleh staf dan grup berikut. Pengaturan ini ditimpa jika Anda Go Private',
- 'visible-to-follower' => 'Pengikut Terlihat Untuk',
- 'visible-to-follower-help' => 'Pengikut Anda hanya akan terlihat oleh staf dan grup berikut. Pengaturan ini ditimpa jika Anda Go Private',
- 'visible-to-forum' => 'Informasi Forum Dapat Dilihat',
- 'visible-to-forum-help' => 'Informasi forum Anda hanya akan terlihat oleh staf dan grup berikut. Pengaturan ini ditimpa jika Anda Go Private',
- 'visible-to-other' => 'Terlihat Lainnya',
- 'visible-to-other-help' => 'Informasi lain mengenai akun Anda hanya akan terlihat oleh staf dan grup berikut. Pengaturan ini diganti jika Anda Go Private atau jika Anda Go Hidden',
- 'visible-to-profile' => 'Profil Terlihat Untuk',
- 'visible-to-profile-help' => 'Profil Anda hanya akan terlihat oleh staf dan grup berikut. Pengaturan ini ditimpa jika Anda Go Private',
- 'visible-to-request' => 'Minta Informasi Dapat Dilihat',
- 'visible-to-request-help' => 'Informasi permintaan Anda hanya akan terlihat oleh staf dan grup berikut. Pengaturan ini ditimpa jika Anda Go Private',
- 'visible-to-torrent' => 'Informasi Torrent Terlihat Untuk',
- 'visible-to-torrent-help' => 'Informasi torrent Anda hanya akan terlihat oleh staf dan grup berikut. Pengaturan ini diganti jika Anda Go Private atau jika Anda Go Hidden',
- 'warned-on' => 'Diperingatkan',
- 'warning' => 'Peringatan',
- 'warning-log' => 'Log Peringatan',
- 'wishlist' => 'Wishlist',
+ 'mention-notification-forum-post' => 'Terima pemberitahuan saat Anda disebut-sebut dalam posting forum',
+ 'mention-notification-help' => 'Kontrol notifikasi mana yang dikirim saat pengguna menyinggung Anda. Pengaturan ini ditimpa jika Anda tidak mengizinkan grup mana pun untuk mengirim pemberitahuan jika ada pengguna yang menyebutkan Anda atau jika Anda Menonaktifkan Pemberitahuan.',
+ 'moderated-by' => 'Dimoderasi oleh: mod aktif',
+ 'my-bonus-points' => 'Poin Bonus saya',
+ 'my-bookmarks' => 'Bookmark saya',
+ 'my-fl-tokens' => 'Token FL saya',
+ 'my-general-settings' => 'Pengaturan Umum Saya',
+ 'my-notification' => 'Pemberitahuan saya',
+ 'my-notification-settings' => 'Pengaturan Pemberitahuan Saya',
+ 'my-privacy' => 'Privasi saya',
+ 'my-privacy-settings' => 'Pengaturan Privasi Saya',
+ 'my-profile' => 'Profil saya',
+ 'my-requested' => 'Saya Diminta',
+ 'my-security' => 'Keamanan saya',
+ 'my-security-settings' => 'Pengaturan Keamanan Saya',
+ 'my-seedboxes' => 'Kotak Benih Saya',
+ 'my-settings' => 'Pengaturan Saya',
+ 'my-wishlist' => 'Keinginanku',
+ 'no-logs' => 'Tidak ada log undangan dalam database untuk pengguna ini!',
+ 'no-seedboxes' => 'Tidak ada kotak benih 😔',
+ 'not-authorized' => 'Anda tidak berwenang melihat halaman ini. Anggota ini lebih suka disembunyikan seperti ninja!',
+ 'note' => 'Catatan',
+ 'notification' => 'Pemberitahuan',
+ 'notification-settings' => 'Pengaturan pemberitahuan',
+ 'notification-from-account' => 'Terima Pemberitahuan Akun Dari',
+ 'notification-from-account-help' => 'Anda hanya akan menerima notifikasi akun dari sistem, staf, dan grup berikut. Pengaturan ini diganti jika Anda Nonaktifkan Notifikasi',
+ 'notification-from-bon' => 'Terima Pemberitahuan BON Dari',
+ 'notification-from-bon-help' => 'Anda hanya akan menerima notifikasi BON dari sistem, staf, dan grup berikut. Pengaturan ini diganti jika Anda Nonaktifkan Notifikasi',
+ 'notification-from-following' => 'Terima Pemberitahuan Pengguna yang Diikuti Dari',
+ 'notification-from-following-help' => 'Anda hanya akan menerima pemberitahuan pengguna yang diikuti dari grup berikut. Pengaturan ini diganti jika Anda Nonaktifkan Notifikasi',
+ 'notification-from-forum' => 'Terima Notifikasi Forum Dari',
+ 'notification-from-forum-help' => 'Anda hanya akan menerima notifikasi forum dari sistem, staf, dan grup berikut. Pengaturan ini diganti jika Anda Nonaktifkan Notifikasi',
+ 'notification-from-subscription' => 'Terima Pemberitahuan Berlangganan Dari',
+ 'notification-from-subscription-help' => 'Anda hanya akan menerima notifikasi forum dari sistem, staf, dan grup berikut. Pengaturan ini diganti jika Anda Nonaktifkan Notifikasi',
+ 'notification-from-torrent' => 'Terima Pemberitahuan Torrent Dari',
+ 'notification-from-torrent-help' => 'Anda hanya akan menerima notifikasi torrent dari sistem, staf, dan grup berikut. Pengaturan ini diganti jika Anda Nonaktifkan Notifikasi',
+ 'notification-from-mention' => 'Terima Pemberitahuan @Mention From',
+ 'notification-from-mention-help' => 'Anda hanya akan menerima pemberitahuan @mention dari sistem, staf, dan grup berikut. Pengaturan ini diganti jika Anda Nonaktifkan Notifikasi',
+ 'notification-from-request' => 'Terima Pemberitahuan Permintaan Dari',
+ 'notification-from-request-help' => 'Anda hanya akan menerima notifikasi permintaan dari sistem, staf, dan grup berikut. Pengaturan ini diganti jika Anda Nonaktifkan Notifikasi',
+ 'notifications' => 'Notifikasi',
+ 'offline' => 'Pengguna Sedang Offline!',
+ 'online' => 'Pengguna Online!',
+ 'options' => 'Pilihan',
+ 'other-help' => 'Kontrol pembagian statistik dan informasi lainnya dengan grup yang diizinkan mengakses profil Anda. Pengaturan ini ditimpa jika Anda tidak mengizinkan grup mana pun untuk mengakses statistik dan informasi Anda yang lain atau jika Anda Go Private',
+ 'other-privacy' => 'Pengaturan lainnya',
+ 'other-privacy-online' => 'Izinkan pengguna melihat Anda di blok pengguna online',
+ 'passkey' => 'PID',
+ 'passkey-warning' => 'PID seperti kata sandi Anda, Anda harus tetap aman!',
+ 'pending-achievements' => 'Prestasi yang tertunda',
+ 'per-torrent' => 'Per Torrent',
+ 'posts' => 'Posting',
+ 'posts-posted' => 'Kiriman Forum Diposting',
+ 'privacy' => 'Pribadi',
+ 'privacy-settings' => 'Pengaturan Privasi',
+ 'private-info' => 'Info Pribadi',
+ 'private-forum-profile' => 'Perhatian: Topik Anggota & Riwayat Pos Ini Telah Ditetapkan Untuk PRIVATE!',
+ 'private-profile' => 'Perhatian: Profil Ini Telah Ditetapkan Untuk PRIVATE!',
+ 'profile' => 'Profil',
+ 'profile-desc' => 'Pengguna: profil pengguna terdaftar pada: judul',
+ 'profile-privacy' => 'Pengaturan profil',
+ 'profile-privacy-torrent-count' => 'Bagikan jumlah total unduhan, unggahan, benih, dan lintah Anda',
+ 'profile-privacy-torrent-ratio' => 'Bagikan total unggah / unduh data Anda bersama dengan rasio yang direkam',
+ 'profile-privacy-torrent-seed' => 'Bagikan total waktu penyemaian dan rata-rata Anda',
+ 'profile-privacy-title' => 'Bagikan informasi judul pribadi Anda',
+ 'profile-privacy-about' => 'Bagikan informasi pribadi Anda tentang saya kepada saya',
+ 'profile-privacy-bon-extra' => 'Bagikan statistik BON Anda',
+ 'profile-privacy-comment-extra' => 'Bagikan statistik komentar Anda',
+ 'profile-privacy-forum-extra' => 'Bagikan statistik forum Anda',
+ 'profile-privacy-request-extra' => 'Bagikan statistik permintaan Anda',
+ 'profile-privacy-torrent-extra' => 'Bagikan statistik torrent Anda',
+ 'profile-privacy-badge' => 'Bagikan lencana yang Anda peroleh',
+ 'profile-privacy-achievement' => 'Bagikan prestasi terbaru Anda',
+ 'profile-privacy-follower' => 'Bagikan pengikut terbaru Anda',
+ 'profile-privacy-warning' => 'Bagikan peringatan H&R Anda',
+ 'profile-privacy-help' => 'Kontrol statistik dan potongan informasi mana yang muncul di profil Anda. Pengaturan ini ditimpa jika Anda tidak mengizinkan grup mana pun untuk mengakses profil Anda atau jika Anda Go Private',
+ 'public-info' => 'Info Publik',
+ 'recent-achievements' => 'Prestasi terbaru',
+ 'recent-followers' => 'Pengikut Terbaru',
+ 'registration-date' => 'Tanggal registrasi',
+ 'report' => 'Melaporkan',
+ 'request-help' => 'Kontrol pembagian statistik dan informasi terkait permintaan khusus dengan grup yang diizinkan mengakses profil Anda. Pengaturan ini ditimpa jika Anda tidak mengizinkan grup mana pun untuk mengakses statistik dan informasi terkait yang Anda minta atau jika Anda Pribadi',
+ 'request' => 'Permintaan',
+ 'requested' => 'Diminta',
+ 'requests' => 'Permintaan',
+ 'request-comments' => 'Minta Komentar Dibuat',
+ 'request-notification' => 'Pengaturan Pemberitahuan Permintaan',
+ 'request-notification-bounty' => 'Terima pemberitahuan saat torrent yang diminta mendapat hadiah baru',
+ 'request-notification-comment' => 'Terima pemberitahuan saat torrent yang diminta mendapat komentar baru',
+ 'request-notification-fill' => 'Terima pemberitahuan saat torrent yang diminta diisi',
+ 'request-notification-fill-approve' => 'Terima pemberitahuan saat isian torrent yang diminta disetujui',
+ 'request-notification-fill-reject' => 'Terima pemberitahuan saat isian torrent yang diminta ditolak',
+ 'request-notification-claim' => 'Terima pemberitahuan saat torrent yang diminta diklaim',
+ 'request-notification-unclaim' => 'Terima pemberitahuan saat torrent yang diminta tidak diklaim',
+ 'request-notification-help' => 'Kontrol notifikasi mana yang dikirim terkait aktivitas permintaan. Pengaturan ini ditimpa jika Anda tidak mengizinkan grup mana pun untuk mengirim pemberitahuan tentang aktivitas permintaan atau jika Anda Nonaktifkan Pemberitahuan',
+ 'request-privacy' => 'Pengaturan Permintaan',
+ 'request-privacy-requested' => 'Izinkan pengguna melihat daftar permintaan yang telah Anda buat',
+ 'reset-passkey' => 'Atur Ulang Kunci Pas (PID)',
+ 'reset-passkey-help' => 'Anda harus mengunduh ulang / mengunggah kembali semua torrent aktif Anda, setelah mengatur ulang PID',
+ 'reset-rss' => 'Atur Ulang Kunci RSS (RID)',
+ 'reset-rss-help' => 'Anda harus memuat ulang semua umpan RSS aktif Anda, setelah mengatur ulang RID',
+ 'resurrections' => 'Kebangkitan',
+ 'search' => 'Pencarian cepat dengan nama pengguna',
+ 'security' => 'Keamanan',
+ 'security-settings' => 'Pengaturan keamanan',
+ 'seedboxes' => 'Kotak benih',
+ 'seeds' => 'Biji',
+ 'send-invite' => 'Kirim undangan',
+ 'sender' => 'Pengirim',
+ 'settings' => 'Pengaturan',
+ 'show-passkey' => 'Tampilkan PID',
+ 'staff-noted' => 'Akun Tercatat Staf',
+ 'statistics' => 'Statistik',
+ 'subscription-notification' => 'Pengaturan Pemberitahuan Berlangganan',
+ 'subscription-notification-forum' => 'Terima pemberitahuan saat forum berlangganan mendapatkan topik baru',
+ 'subscription-notification-topic' => 'Terima pemberitahuan saat topik berlangganan mendapat kiriman baru',
+ 'subscription-notification-help' => 'Kontrol notifikasi yang dikirim terkait langganan Anda. Pengaturan ini diganti jika Anda tidak mengizinkan grup mana pun untuk mengirim pemberitahuan tentang langganan Anda atau jika Anda Nonaktifkan Notifikasi',
+ 'thanks-given' => 'Terima kasih',
+ 'thanks-received' => 'Terima kasih diterima',
+ 'tips-given' => 'Tips yang diberikan',
+ 'tips-received' => 'Tips diterima',
+ 'title' => 'Judul',
+ 'top-bankers' => 'Bankir top',
+ 'top-downloaders-data' => 'Pengunduh Teratas (Data)',
+ 'top-leechers' => 'Leechers teratas',
+ 'top-leechers-count' => 'Leechers Teratas (Hitungan)',
+ 'top-seeders' => 'Unggulan Teratas',
+ 'top-seeders-count' => 'Unggulan Teratas (Hitungan)',
+ 'top-seeding-size' => 'Pembibitan Top (Ukuran)',
+ 'top-seedtime' => 'Seedtime Top',
+ 'top-uploaders-data' => 'Pengunggah Teratas (Data)',
+ 'top-uploaders-count' => 'Pengunggah Teratas (Hitungan)',
+ 'topics' => 'Topik',
+ 'topics-started' => 'Topik Forum Dimulai',
+ 'torrent-comments' => 'Komentar Torrent Dibuat',
+ 'torrent-help' => 'Kontrol berbagi statistik dan informasi terkait torrent tertentu dengan grup yang diizinkan untuk mengakses profil Anda. Pengaturan ini ditimpa jika Anda tidak mengizinkan grup mana pun untuk mengakses statistik dan informasi terkait torrent Anda atau jika Anda Go Private',
+ 'torrent-notification' => 'Pengaturan Pemberitahuan Torrent',
+ 'torrent-notification-comment' => 'Terima pemberitahuan saat torrent yang diunggah mendapat komentar baru',
+ 'torrent-notification-thank' => 'Terima pemberitahuan saat torrent yang diunggah mendapat ucapan terima kasih baru',
+ 'torrent-notification-tip' => 'Terima pemberitahuan saat torrent yang diunggah mendapat tip baru',
+ 'torrent-notification-help' => 'Kontrol notifikasi mana yang dikirim terkait aktivitas torrent. Pengaturan ini ditimpa jika Anda tidak mengizinkan grup mana pun untuk mengirim pemberitahuan tentang aktivitas torrent atau jika Anda Nonaktifkan Notifikasi',
+ 'torrent-privacy' => 'Pengaturan Torrent',
+ 'torrent-privacy-download' => 'Bolehkan pengguna untuk melihat daftar torrent yang telah Anda unduh',
+ 'torrent-privacy-upload' => 'Izinkan pengguna melihat daftar torrent yang telah Anda unggah',
+ 'torrent-privacy-peer' => 'Izinkan pengguna melihat Anda di tabel riwayat rekan torrent',
+ 'torrents' => 'Torrent',
+ 'torrents-history' => 'Sejarah Torrents',
+ 'total-download' => 'Total Unduhan',
+ 'total-downloads' => 'Total Unduhan',
+ 'total-leeching' => 'Total Leeching',
+ 'total-seeding' => 'Total Seeding',
+ 'total-seedtime' => 'Total Seedtime',
+ 'total-upload' => 'Total Upload',
+ 'total-uploads' => 'Total Upload',
+ 'unban' => 'Batalkan Pengguna',
+ 'unfollow' => 'Berhenti mengikuti',
+ 'unlocked' => 'Tidak terkunci',
+ 'unlocked-achievements' => 'Prestasi Tidak Terkunci',
+ 'unsatisfieds' => 'Tidak bersalah',
+ 'upload-bon' => 'Unggah Ditambahkan Dari BON Store',
+ 'upload-recorded' => 'Unggah Terekam',
+ 'upload-true' => 'Unggah Sejati',
+ 'uploads' => 'Unggah',
+ 'uploads-table' => 'Tabel Unggahan',
+ 'user' => 'Pengguna',
+ 'user-id' => 'identitas pengguna',
+ 'username-seedbox' => 'Seedbox Nama Pengguna',
+ 'visible-to-achievement' => 'Prestasi Terlihat Untuk',
+ 'visible-to-achievement-help' => 'Prestasi Anda hanya akan terlihat oleh staf dan grup berikut. Pengaturan ini ditimpa jika Anda Go Private',
+ 'visible-to-follower' => 'Pengikut Terlihat Untuk',
+ 'visible-to-follower-help' => 'Pengikut Anda hanya akan terlihat oleh staf dan grup berikut. Pengaturan ini ditimpa jika Anda Go Private',
+ 'visible-to-forum' => 'Informasi Forum Dapat Dilihat',
+ 'visible-to-forum-help' => 'Informasi forum Anda hanya akan terlihat oleh staf dan grup berikut. Pengaturan ini ditimpa jika Anda Go Private',
+ 'visible-to-other' => 'Terlihat Lainnya',
+ 'visible-to-other-help' => 'Informasi lain mengenai akun Anda hanya akan terlihat oleh staf dan grup berikut. Pengaturan ini diganti jika Anda Go Private atau jika Anda Go Hidden',
+ 'visible-to-profile' => 'Profil Terlihat Untuk',
+ 'visible-to-profile-help' => 'Profil Anda hanya akan terlihat oleh staf dan grup berikut. Pengaturan ini ditimpa jika Anda Go Private',
+ 'visible-to-request' => 'Minta Informasi Dapat Dilihat',
+ 'visible-to-request-help' => 'Informasi permintaan Anda hanya akan terlihat oleh staf dan grup berikut. Pengaturan ini ditimpa jika Anda Go Private',
+ 'visible-to-torrent' => 'Informasi Torrent Terlihat Untuk',
+ 'visible-to-torrent-help' => 'Informasi torrent Anda hanya akan terlihat oleh staf dan grup berikut. Pengaturan ini diganti jika Anda Go Private atau jika Anda Go Hidden',
+ 'warned-on' => 'Diperingatkan',
+ 'warning' => 'Peringatan',
+ 'warning-log' => 'Log Peringatan',
+ 'wishlist' => 'Wishlist',
];
diff --git a/lang/id/validation.php b/lang/id/validation.php
index d76b4e8ee..371fbf2d8 100644
--- a/lang/id/validation.php
+++ b/lang/id/validation.php
@@ -23,108 +23,108 @@ return [
|
*/
- 'accepted' => 'Isian :attribute harus diterima.',
- 'active_url' => 'Isian :attribute bukan URL yang valid.',
- 'after' => 'Isian :attribute harus tanggal setelah :date.',
- 'after_or_equal' => 'Isian :attribute harus berupa tanggal setelah atau sama dengan tanggal :date.',
- 'alpha' => 'Isian :attribute hanya boleh berisi huruf.',
- 'alpha_dash' => 'Isian :attribute hanya boleh berisi huruf, angka, dan strip.',
- 'alpha_num' => 'Isian :attribute hanya boleh berisi huruf dan angka.',
- 'array' => 'Isian :attribute harus berupa sebuah array.',
- 'before' => 'Isian :attribute harus tanggal sebelum :date.',
- 'before_or_equal' => 'Isian :attribute harus berupa tanggal sebelum atau sama dengan tanggal :date.',
- 'between' => [
+ 'accepted' => 'Isian :attribute harus diterima.',
+ 'active_url' => 'Isian :attribute bukan URL yang valid.',
+ 'after' => 'Isian :attribute harus tanggal setelah :date.',
+ 'after_or_equal' => 'Isian :attribute harus berupa tanggal setelah atau sama dengan tanggal :date.',
+ 'alpha' => 'Isian :attribute hanya boleh berisi huruf.',
+ 'alpha_dash' => 'Isian :attribute hanya boleh berisi huruf, angka, dan strip.',
+ 'alpha_num' => 'Isian :attribute hanya boleh berisi huruf dan angka.',
+ 'array' => 'Isian :attribute harus berupa sebuah array.',
+ 'before' => 'Isian :attribute harus tanggal sebelum :date.',
+ 'before_or_equal' => 'Isian :attribute harus berupa tanggal sebelum atau sama dengan tanggal :date.',
+ 'between' => [
'numeric' => 'Isian :attribute harus antara :min dan :max.',
- 'file' => 'Bidang :attribute harus antara :min dan :max kilobyte.',
- 'string' => 'Isian :attribute harus antara :min dan :max karakter.',
- 'array' => 'Isian :attribute harus antara :min dan :max item.',
+ 'file' => 'Bidang :attribute harus antara :min dan :max kilobyte.',
+ 'string' => 'Isian :attribute harus antara :min dan :max karakter.',
+ 'array' => 'Isian :attribute harus antara :min dan :max item.',
],
- 'boolean' => 'Isian :attribute harus berupa true atau false',
- 'confirmed' => 'Konfirmasi :attribute tidak cocok.',
- 'date' => 'Isian :attribute bukan tanggal yang valid.',
- 'date_equals' => ':attribute harus berupa tanggal yang sama dengan :date.',
- 'date_format' => 'Isian :attribute tidak cocok dengan format :format.',
- 'different' => 'Isian :attribute dan :other harus berbeda.',
- 'digits' => 'Isian :attribute harus berupa angka :digits.',
- 'digits_between' => 'Isian :attribute harus antara angka :min dan :max.',
- 'dimensions' => 'Bidang :attribute tidak memiliki dimensi gambar yang valid.',
- 'distinct' => 'Bidang isian :attribute memiliki nilai yang duplikat.',
- 'email' => 'Isian :attribute harus berupa alamat surel yang valid.',
- 'exists' => 'Isian :attribute yang dipilih tidak valid.',
- 'file' => 'Bidang :attribute harus berupa sebuah berkas.',
- 'filled' => 'Isian :attribute harus memiliki nilai.',
- 'gt' => [
+ 'boolean' => 'Isian :attribute harus berupa true atau false',
+ 'confirmed' => 'Konfirmasi :attribute tidak cocok.',
+ 'date' => 'Isian :attribute bukan tanggal yang valid.',
+ 'date_equals' => ':attribute harus berupa tanggal yang sama dengan :date.',
+ 'date_format' => 'Isian :attribute tidak cocok dengan format :format.',
+ 'different' => 'Isian :attribute dan :other harus berbeda.',
+ 'digits' => 'Isian :attribute harus berupa angka :digits.',
+ 'digits_between' => 'Isian :attribute harus antara angka :min dan :max.',
+ 'dimensions' => 'Bidang :attribute tidak memiliki dimensi gambar yang valid.',
+ 'distinct' => 'Bidang isian :attribute memiliki nilai yang duplikat.',
+ 'email' => 'Isian :attribute harus berupa alamat surel yang valid.',
+ 'exists' => 'Isian :attribute yang dipilih tidak valid.',
+ 'file' => 'Bidang :attribute harus berupa sebuah berkas.',
+ 'filled' => 'Isian :attribute harus memiliki nilai.',
+ 'gt' => [
'numeric' => 'Isian :attribute harus lebih besar dari :value.',
- 'file' => 'Bidang :attribute harus lebih besar dari :value kilobyte.',
- 'string' => 'Isian :attribute harus lebih besar dari :value karakter.',
- 'array' => 'Isian :attribute harus lebih dari :value item.',
+ 'file' => 'Bidang :attribute harus lebih besar dari :value kilobyte.',
+ 'string' => 'Isian :attribute harus lebih besar dari :value karakter.',
+ 'array' => 'Isian :attribute harus lebih dari :value item.',
],
- 'gte' => [
+ 'gte' => [
'numeric' => 'Isian :attribute harus lebih besar dari atau sama dengan :value.',
- 'file' => 'Bidang :attribute harus lebih besar dari atau sama dengan :value kilobyte.',
- 'string' => 'Isian :attribute harus lebih besar dari atau sama dengan :value karakter.',
- 'array' => 'Isian :attribute harus mempunyai :value item atau lebih.',
+ 'file' => 'Bidang :attribute harus lebih besar dari atau sama dengan :value kilobyte.',
+ 'string' => 'Isian :attribute harus lebih besar dari atau sama dengan :value karakter.',
+ 'array' => 'Isian :attribute harus mempunyai :value item atau lebih.',
],
- 'image' => 'Isian :attribute harus berupa gambar.',
- 'in' => 'Isian :attribute yang dipilih tidak valid.',
- 'in_array' => 'Bidang isian :attribute tidak terdapat dalam :other.',
- 'integer' => 'Isian :attribute harus merupakan bilangan bulat.',
- 'ip' => 'Isian :attribute harus berupa alamat IP yang valid.',
- 'ipv4' => 'Isian :attribute harus berupa alamat IPv4 yang valid.',
- 'ipv6' => 'Isian :attribute harus berupa alamat IPv6 yang valid.',
- 'json' => 'Isian :attribute harus berupa JSON string yang valid.',
- 'lt' => [
+ 'image' => 'Isian :attribute harus berupa gambar.',
+ 'in' => 'Isian :attribute yang dipilih tidak valid.',
+ 'in_array' => 'Bidang isian :attribute tidak terdapat dalam :other.',
+ 'integer' => 'Isian :attribute harus merupakan bilangan bulat.',
+ 'ip' => 'Isian :attribute harus berupa alamat IP yang valid.',
+ 'ipv4' => 'Isian :attribute harus berupa alamat IPv4 yang valid.',
+ 'ipv6' => 'Isian :attribute harus berupa alamat IPv6 yang valid.',
+ 'json' => 'Isian :attribute harus berupa JSON string yang valid.',
+ 'lt' => [
'numeric' => 'Isian :attribute harus kurang dari :value.',
- 'file' => 'Bidang :attribute harus kurang dari :value kilobyte.',
- 'string' => 'Isian :attribute harus kurang dari :value karakter.',
- 'array' => 'Isian :attribute harus kurang dari :value item.',
+ 'file' => 'Bidang :attribute harus kurang dari :value kilobyte.',
+ 'string' => 'Isian :attribute harus kurang dari :value karakter.',
+ 'array' => 'Isian :attribute harus kurang dari :value item.',
],
- 'lte' => [
+ 'lte' => [
'numeric' => 'Isian :attribute harus kurang dari atau sama dengan :value.',
- 'file' => 'Bidang :attribute harus kurang dari atau sama dengan :value kilobyte.',
- 'string' => 'Isian :attribute harus kurang dari atau sama dengan :value karakter.',
- 'array' => 'Isian :attribute harus tidak lebih dari :value item.',
+ 'file' => 'Bidang :attribute harus kurang dari atau sama dengan :value kilobyte.',
+ 'string' => 'Isian :attribute harus kurang dari atau sama dengan :value karakter.',
+ 'array' => 'Isian :attribute harus tidak lebih dari :value item.',
],
- 'max' => [
+ 'max' => [
'numeric' => 'Isian :attribute seharusnya tidak lebih dari :max.',
- 'file' => 'Bidang :attribute seharusnya tidak lebih dari :max kilobyte.',
- 'string' => 'Isian :attribute seharusnya tidak lebih dari :max karakter.',
- 'array' => 'Isian :attribute seharusnya tidak lebih dari :max item.',
+ 'file' => 'Bidang :attribute seharusnya tidak lebih dari :max kilobyte.',
+ 'string' => 'Isian :attribute seharusnya tidak lebih dari :max karakter.',
+ 'array' => 'Isian :attribute seharusnya tidak lebih dari :max item.',
],
- 'mimes' => 'Isian :attribute harus dokumen berjenis : :values.',
- 'mimetypes' => 'Isian :attribute harus dokumen berjenis : :values.',
- 'min' => [
+ 'mimes' => 'Isian :attribute harus dokumen berjenis : :values.',
+ 'mimetypes' => 'Isian :attribute harus dokumen berjenis : :values.',
+ 'min' => [
'numeric' => 'Isian :attribute harus minimal :min.',
- 'file' => 'Bidang :attribute harus minimal :min kilobyte.',
- 'string' => 'Isian :attribute harus minimal :min karakter.',
- 'array' => 'Isian :attribute harus minimal :min item.',
+ 'file' => 'Bidang :attribute harus minimal :min kilobyte.',
+ 'string' => 'Isian :attribute harus minimal :min karakter.',
+ 'array' => 'Isian :attribute harus minimal :min item.',
],
- 'not_in' => 'Isian :attribute yang dipilih tidak valid.',
- 'not_regex' => 'Format isian :attribute tidak valid.',
- 'numeric' => 'Isian :attribute harus berupa angka.',
- 'present' => 'Bidang isian :attribute wajib ada.',
- 'regex' => 'Format isian :attribute tidak valid.',
- 'required' => 'Bidang isian :attribute wajib diisi.',
- 'required_if' => 'Bidang isian :attribute wajib diisi bila :other adalah :value.',
- 'required_unless' => 'Bidang isian :attribute wajib diisi kecuali :other memiliki nilai :values.',
- 'required_with' => 'Bidang isian :attribute wajib diisi bila terdapat :values.',
- 'required_with_all' => 'Bidang isian :attribute wajib diisi bila terdapat :values.',
- 'required_without' => 'Bidang isian :attribute wajib diisi bila tidak terdapat :values.',
+ 'not_in' => 'Isian :attribute yang dipilih tidak valid.',
+ 'not_regex' => 'Format isian :attribute tidak valid.',
+ 'numeric' => 'Isian :attribute harus berupa angka.',
+ 'present' => 'Bidang isian :attribute wajib ada.',
+ 'regex' => 'Format isian :attribute tidak valid.',
+ 'required' => 'Bidang isian :attribute wajib diisi.',
+ 'required_if' => 'Bidang isian :attribute wajib diisi bila :other adalah :value.',
+ 'required_unless' => 'Bidang isian :attribute wajib diisi kecuali :other memiliki nilai :values.',
+ 'required_with' => 'Bidang isian :attribute wajib diisi bila terdapat :values.',
+ 'required_with_all' => 'Bidang isian :attribute wajib diisi bila terdapat :values.',
+ 'required_without' => 'Bidang isian :attribute wajib diisi bila tidak terdapat :values.',
'required_without_all' => 'Bidang isian :attribute wajib diisi bila tidak terdapat ada :values.',
- 'same' => 'Isian :attribute dan :other harus sama.',
- 'size' => [
+ 'same' => 'Isian :attribute dan :other harus sama.',
+ 'size' => [
'numeric' => 'Isian :attribute harus berukuran :size.',
- 'file' => 'Bidang :attribute harus berukuran :size kilobyte.',
- 'string' => 'Isian :attribute harus berukuran :size karakter.',
- 'array' => 'Isian :attribute harus mengandung :size item.',
+ 'file' => 'Bidang :attribute harus berukuran :size kilobyte.',
+ 'string' => 'Isian :attribute harus berukuran :size karakter.',
+ 'array' => 'Isian :attribute harus mengandung :size item.',
],
- 'starts_with' => ':attribute harus dimulai dengan salah satu dari berikut ini: :values',
- 'string' => 'Isian :attribute harus berupa string.',
- 'timezone' => 'Isian :attribute harus berupa zona waktu yang valid.',
- 'unique' => 'Isian :attribute sudah ada sebelumnya.',
- 'uploaded' => 'Isian :attribute gagal diunggah.',
- 'url' => 'Format isian :attribute tidak valid.',
- 'uuid' => ':attribute harus UUID yang valid.',
+ 'starts_with' => ':attribute harus dimulai dengan salah satu dari berikut ini: :values',
+ 'string' => 'Isian :attribute harus berupa string.',
+ 'timezone' => 'Isian :attribute harus berupa zona waktu yang valid.',
+ 'unique' => 'Isian :attribute sudah ada sebelumnya.',
+ 'uploaded' => 'Isian :attribute gagal diunggah.',
+ 'url' => 'Format isian :attribute tidak valid.',
+ 'uuid' => ':attribute harus UUID yang valid.',
/*
|---------------------------------------------------------------------------------------
diff --git a/lang/is/articles.php b/lang/is/articles.php
index af456857d..edc5ab59f 100644
--- a/lang/is/articles.php
+++ b/lang/is/articles.php
@@ -12,8 +12,8 @@
*/
return [
- 'articles' => 'Greinar',
+ 'articles' => 'Greinar',
'meta-articles' => 'Greinar og fréttir um rekja spor einhvers og samfélagið',
- 'published-at' => 'Birt á',
- 'read-more' => 'Lestu meira',
+ 'published-at' => 'Birt á',
+ 'read-more' => 'Lestu meira',
];
diff --git a/lang/is/auth.php b/lang/is/auth.php
index fc51cd165..ee4eeafde 100644
--- a/lang/is/auth.php
+++ b/lang/is/auth.php
@@ -23,6 +23,6 @@ return [
|
*/
- 'failed' => 'These credentials do not match our records.',
+ 'failed' => 'These credentials do not match our records.',
'throttle' => 'Too many login attempts. Please try again in :seconds seconds.',
];
diff --git a/lang/is/backup.php b/lang/is/backup.php
index 423a7b8ad..da4165641 100644
--- a/lang/is/backup.php
+++ b/lang/is/backup.php
@@ -12,32 +12,32 @@
*/
return [
- 'actions' => 'Aðgerðir',
- 'backup' => 'Öryggisafrit',
- 'backup_doesnt_exist' => 'Varabúnaðurinn er ekki til.',
- 'create_a_new_backup' => 'Búðu til Full Backup',
- 'create_a_new_files_backup' => 'Búðu til skrár öryggisafrit',
- 'create_a_new_db_backup' => 'Búðu til gagnagrunni afritun',
- 'create_confirmation_message' => 'Endurhleðsla blaðsins á 3 sekúndum.',
- 'create_confirmation_title' => 'Afritun lokið',
- 'create_error_message' => 'Varabúnaðurinn gæti EKKI verið búinn til.',
- 'create_error_title' => 'Öryggisafrit',
- 'create_warning_message' => 'Öryggisafritið þitt gæti EKKI verið búið til. Vinsamlegast athugaðu skrár til að fá nánari upplýsingar.',
- 'create_warning_title' => 'Óþekkt villa',
- 'date' => 'Dagsetning',
- 'delete' => 'Eyða',
- 'delete_cancel_message' => 'Varabúnaðurinn hefur EKKI verið eytt.',
- 'delete_cancel_title' => 'Það er í lagi',
- 'delete_confirm' => 'Ertu viss um að þú viljir eyða þessum öryggisafriti?',
- 'delete_confirmation_message' => 'Varabúnaðurinn var eytt.',
- 'delete_confirmation_title' => 'Gert',
- 'delete_error_message' => 'Varabúnaðurinn hefur EKKI verið eytt.',
- 'delete_error_title' => 'Villa',
- 'download' => 'Sækja',
- 'existing_backups' => 'Núverandi afrit',
- 'file_size' => 'Skjala stærð',
- 'location' => 'Staðsetning',
- 'manager' => 'Framkvæmdastjóri',
- 'no_disks_configured' => 'Engin afrit diskur stillt í config / backup.php',
+ 'actions' => 'Aðgerðir',
+ 'backup' => 'Öryggisafrit',
+ 'backup_doesnt_exist' => 'Varabúnaðurinn er ekki til.',
+ 'create_a_new_backup' => 'Búðu til Full Backup',
+ 'create_a_new_files_backup' => 'Búðu til skrár öryggisafrit',
+ 'create_a_new_db_backup' => 'Búðu til gagnagrunni afritun',
+ 'create_confirmation_message' => 'Endurhleðsla blaðsins á 3 sekúndum.',
+ 'create_confirmation_title' => 'Afritun lokið',
+ 'create_error_message' => 'Varabúnaðurinn gæti EKKI verið búinn til.',
+ 'create_error_title' => 'Öryggisafrit',
+ 'create_warning_message' => 'Öryggisafritið þitt gæti EKKI verið búið til. Vinsamlegast athugaðu skrár til að fá nánari upplýsingar.',
+ 'create_warning_title' => 'Óþekkt villa',
+ 'date' => 'Dagsetning',
+ 'delete' => 'Eyða',
+ 'delete_cancel_message' => 'Varabúnaðurinn hefur EKKI verið eytt.',
+ 'delete_cancel_title' => 'Það er í lagi',
+ 'delete_confirm' => 'Ertu viss um að þú viljir eyða þessum öryggisafriti?',
+ 'delete_confirmation_message' => 'Varabúnaðurinn var eytt.',
+ 'delete_confirmation_title' => 'Gert',
+ 'delete_error_message' => 'Varabúnaðurinn hefur EKKI verið eytt.',
+ 'delete_error_title' => 'Villa',
+ 'download' => 'Sækja',
+ 'existing_backups' => 'Núverandi afrit',
+ 'file_size' => 'Skjala stærð',
+ 'location' => 'Staðsetning',
+ 'manager' => 'Framkvæmdastjóri',
+ 'no_disks_configured' => 'Engin afrit diskur stillt í config / backup.php',
'only_local_downloads_supported' => 'Aðeins niðurhal frá staðbundnum skráarkerfinu er studd.',
];
diff --git a/lang/is/blocks.php b/lang/is/blocks.php
index 599213a7a..6478bcf53 100644
--- a/lang/is/blocks.php
+++ b/lang/is/blocks.php
@@ -12,19 +12,19 @@
*/
return [
- 'chatbox' => 'Spjallsvæði',
- 'click' => 'Smellur',
- 'to-enable-editor' => 'til að virkja ritstjóra',
- 'featured-by' => 'Valin af',
- 'featured-torrents' => 'Valin Torrents',
+ 'chatbox' => 'Spjallsvæði',
+ 'click' => 'Smellur',
+ 'to-enable-editor' => 'til að virkja ritstjóra',
+ 'featured-by' => 'Valin af',
+ 'featured-torrents' => 'Valin Torrents',
'featured-torrents-intro' => 'Fáðu þá meðan þú getur!',
- 'featured-until' => 'Þetta er lögun straumur þar til',
- 'top-torrents' => 'Top Torrents',
- 'latest-posts' => 'Nýjustu færslur',
- 'latest-topics' => 'Nýjustu þættir',
- 'active-in-last' => 'Virk í síðasta',
- 'users-online' => 'Notendur á netinu',
- 'check-news' => 'Fréttir (athuga daglega)',
- 'new-news' => 'Nýtt fréttir',
- 'new-torrents' => 'Nýjar straumar',
+ 'featured-until' => 'Þetta er lögun straumur þar til',
+ 'top-torrents' => 'Top Torrents',
+ 'latest-posts' => 'Nýjustu færslur',
+ 'latest-topics' => 'Nýjustu þættir',
+ 'active-in-last' => 'Virk í síðasta',
+ 'users-online' => 'Notendur á netinu',
+ 'check-news' => 'Fréttir (athuga daglega)',
+ 'new-news' => 'Nýtt fréttir',
+ 'new-torrents' => 'Nýjar straumar',
];
diff --git a/lang/is/bon.php b/lang/is/bon.php
index f2623357b..5ca75d941 100644
--- a/lang/is/bon.php
+++ b/lang/is/bon.php
@@ -12,44 +12,44 @@
*/
return [
- 'activated' => 'Virkja',
- 'active' => 'Virkja!',
- 'amount' => 'Magn',
- 'bon' => 'BON',
- 'bonus' => 'Bónus',
- 'date' => 'Dagsetning',
- 'earning' => 'Earnings',
- 'earning-rate' => 'Á þessu hlutfalli af earnings þú færð eftirfarandi á tímamörkum ..',
- 'earnings' => 'Hagnaður',
- 'exchange' => 'Skipti',
- 'exchange-warning' => 'Kauphallir eru endanlegir. Vinsamlegast skoðaðuðu val þitt áður en þú skiptir um kaup.',
- 'extended-stats' => 'Lengri tölfræði',
- 'gift' => 'Gjafabréf',
- 'gift-bonus' => 'Gjafabréf bónus stig',
- 'gift-to' => 'Gjafabréf bónus stig til',
- 'gifts' => 'Gjafir',
- 'item' => 'Lið',
- 'no-refund' => 'Engar endurgreiðslur!',
- 'per-day' => 'Stig á dag',
- 'per-hour' => 'Stig á klukkustund',
- 'per-minute' => 'Stig á mínútu',
- 'per-month' => 'Stig á mánuði',
- 'per-second' => 'Stig á sekúndu',
- 'per-week' => 'Stig á viku',
- 'per-year' => 'Stig á ári',
- 'points' => 'Stig',
- 'receiver' => 'Viðtakandi',
- 'review-seeds' => 'Skoðaðu allar fræðir straumar',
- 'send-gift' => 'Senda gjöf',
- 'sender' => 'Sendandi',
- 'store' => 'Geymið',
- 'tips' => 'Ábendingar',
- 'total' => 'Samtals tekjur',
- 'total-gifts' => 'Í Samtals BON Gjafir',
- 'total-tips' => 'Í Samtals BON Ábendingar',
+ 'activated' => 'Virkja',
+ 'active' => 'Virkja!',
+ 'amount' => 'Magn',
+ 'bon' => 'BON',
+ 'bonus' => 'Bónus',
+ 'date' => 'Dagsetning',
+ 'earning' => 'Earnings',
+ 'earning-rate' => 'Á þessu hlutfalli af earnings þú færð eftirfarandi á tímamörkum ..',
+ 'earnings' => 'Hagnaður',
+ 'exchange' => 'Skipti',
+ 'exchange-warning' => 'Kauphallir eru endanlegir. Vinsamlegast skoðaðuðu val þitt áður en þú skiptir um kaup.',
+ 'extended-stats' => 'Lengri tölfræði',
+ 'gift' => 'Gjafabréf',
+ 'gift-bonus' => 'Gjafabréf bónus stig',
+ 'gift-to' => 'Gjafabréf bónus stig til',
+ 'gifts' => 'Gjafir',
+ 'item' => 'Lið',
+ 'no-refund' => 'Engar endurgreiðslur!',
+ 'per-day' => 'Stig á dag',
+ 'per-hour' => 'Stig á klukkustund',
+ 'per-minute' => 'Stig á mínútu',
+ 'per-month' => 'Stig á mánuði',
+ 'per-second' => 'Stig á sekúndu',
+ 'per-week' => 'Stig á viku',
+ 'per-year' => 'Stig á ári',
+ 'points' => 'Stig',
+ 'receiver' => 'Viðtakandi',
+ 'review-seeds' => 'Skoðaðu allar fræðir straumar',
+ 'send-gift' => 'Senda gjöf',
+ 'sender' => 'Sendandi',
+ 'store' => 'Geymið',
+ 'tips' => 'Ábendingar',
+ 'total' => 'Samtals tekjur',
+ 'total-gifts' => 'Í Samtals BON Gjafir',
+ 'total-tips' => 'Í Samtals BON Ábendingar',
'you-have-received-gifts' => 'Þú hefur fengið',
- 'you-have-sent-gifts' => 'Þú hefur sent',
- 'you-have-received-tips' => 'Þú hefur fengið',
- 'you-have-sent-tips' => 'Þú hefur sent',
- 'your-points' => 'Stig þitt',
+ 'you-have-sent-gifts' => 'Þú hefur sent',
+ 'you-have-received-tips' => 'Þú hefur fengið',
+ 'you-have-sent-tips' => 'Þú hefur sent',
+ 'your-points' => 'Stig þitt',
];
diff --git a/lang/is/bot.php b/lang/is/bot.php
index c8f159f3e..811c684d3 100644
--- a/lang/is/bot.php
+++ b/lang/is/bot.php
@@ -12,15 +12,15 @@
*/
return [
- 'about' => 'Um',
- 'bot' => 'Bot',
- 'bots' => 'Botswana',
- 'color' => 'Litur',
- 'command' => 'Stjórn',
- 'edit-bot' => 'Breyta Bot',
+ 'about' => 'Um',
+ 'bot' => 'Bot',
+ 'bots' => 'Botswana',
+ 'color' => 'Litur',
+ 'command' => 'Stjórn',
+ 'edit-bot' => 'Breyta Bot',
'emoji-code' => 'Emoji Code',
- 'help' => 'Hjálp',
- 'icon' => 'Táknmynd',
- 'info' => 'Upplýsingar',
- 'name' => 'Nafn',
+ 'help' => 'Hjálp',
+ 'icon' => 'Táknmynd',
+ 'info' => 'Upplýsingar',
+ 'name' => 'Nafn',
];
diff --git a/lang/is/bug.php b/lang/is/bug.php
index 37a57431a..40f33e152 100644
--- a/lang/is/bug.php
+++ b/lang/is/bug.php
@@ -12,15 +12,15 @@
*/
return [
- 'bug-report' => 'Villuskýrsla',
+ 'bug-report' => 'Villuskýrsla',
'bug-report-description' => 'Tilkynna um villusvæði',
- 'enter-description' => 'Lýsið vandanum eins vel og mögulegt er',
- 'enter-email' => 'Vinsamlegast sláðu inn tölvupóstinn þinn',
- 'enter-title' => 'Vinsamlegast veldu rétta titil',
- 'enter-username' => 'Vinsamlegast sláðu inn notandanafnið þitt',
- 'high' => 'Hár',
- 'low' => 'Lágt',
- 'priority' => 'Forgangur',
- 'priority-description' => 'Veldu aðeins mjög hátt ef villan er í raun vandamál fyrir að nota síðuna.',
- 'very-high' => 'Mjög hátt',
+ 'enter-description' => 'Lýsið vandanum eins vel og mögulegt er',
+ 'enter-email' => 'Vinsamlegast sláðu inn tölvupóstinn þinn',
+ 'enter-title' => 'Vinsamlegast veldu rétta titil',
+ 'enter-username' => 'Vinsamlegast sláðu inn notandanafnið þitt',
+ 'high' => 'Hár',
+ 'low' => 'Lágt',
+ 'priority' => 'Forgangur',
+ 'priority-description' => 'Veldu aðeins mjög hátt ef villan er í raun vandamál fyrir að nota síðuna.',
+ 'very-high' => 'Mjög hátt',
];
diff --git a/lang/is/common.php b/lang/is/common.php
index 5e73eb236..eb87d35ae 100644
--- a/lang/is/common.php
+++ b/lang/is/common.php
@@ -12,179 +12,179 @@
*/
return [
- 'a-an-art' => '',
- 'about' => 'Um okkur',
- 'account' => 'Reikningur',
- 'achievement-title' => 'Æðislegur',
+ 'a-an-art' => '',
+ 'about' => 'Um okkur',
+ 'account' => 'Reikningur',
+ 'achievement-title' => 'Æðislegur',
'achievement-unlocked' => 'Þú opnaði ": nafn" árangur',
- 'active' => 'Virkur',
- 'active-warning' => 'Virk viðvörun',
- 'add' => 'Bæta við',
- 'added' => 'Bætt við',
- 'amount' => 'Magn',
- 'anonymous' => 'Nafnlaus',
- 'author' => 'Höfundur',
- 'balance' => 'Jafnvægi',
- 'blacklist' => 'Viðskiptavinur Blacklist',
- 'buffer' => 'Buffer',
- 'bug' => 'Tilkynna villu',
- 'but' => 'En',
- 'cancel' => 'Hætta við',
- 'category' => 'Flokkur',
- 'categories' => 'Flokkar',
- 'close' => 'Loka',
- 'comment' => 'Athugasemd',
- 'comments' => 'Athugasemdir',
- 'community' => 'Samfélag',
- 'contact' => 'Hafa samband',
- 'contact-desc' => 'Þessi beiðni um tengilið verður send til eigandans og mun koma aftur til þín eins fljótt og auðið er',
- 'contact-header' => 'Halló',
- 'create' => 'Búa til',
- 'created_at' => 'Búið til á',
- 'day' => 'Dagur',
- 'delete' => 'Eyða',
- 'delete-your-comment' => 'Eyða athugasemd þinni',
- 'description' => 'Lýsing',
- 'direction' => 'Stefnu',
- 'disable' => 'Slökkva',
- 'doubleup_activated' => 'Global tvöfaldur sendingarhamur virkt',
- 'download' => 'Sækja',
- 'edit' => 'Breyta',
- 'edit-your-comment' => 'Breyttu ummælunum þínum',
- 'email' => 'Tölvupóstur',
- 'email-blacklist' => 'Email Blacklist',
- 'email-whitelist' => 'Email Whitelist',
+ 'active' => 'Virkur',
+ 'active-warning' => 'Virk viðvörun',
+ 'add' => 'Bæta við',
+ 'added' => 'Bætt við',
+ 'amount' => 'Magn',
+ 'anonymous' => 'Nafnlaus',
+ 'author' => 'Höfundur',
+ 'balance' => 'Jafnvægi',
+ 'blacklist' => 'Viðskiptavinur Blacklist',
+ 'buffer' => 'Buffer',
+ 'bug' => 'Tilkynna villu',
+ 'but' => 'En',
+ 'cancel' => 'Hætta við',
+ 'category' => 'Flokkur',
+ 'categories' => 'Flokkar',
+ 'close' => 'Loka',
+ 'comment' => 'Athugasemd',
+ 'comments' => 'Athugasemdir',
+ 'community' => 'Samfélag',
+ 'contact' => 'Hafa samband',
+ 'contact-desc' => 'Þessi beiðni um tengilið verður send til eigandans og mun koma aftur til þín eins fljótt og auðið er',
+ 'contact-header' => 'Halló',
+ 'create' => 'Búa til',
+ 'created_at' => 'Búið til á',
+ 'day' => 'Dagur',
+ 'delete' => 'Eyða',
+ 'delete-your-comment' => 'Eyða athugasemd þinni',
+ 'description' => 'Lýsing',
+ 'direction' => 'Stefnu',
+ 'disable' => 'Slökkva',
+ 'doubleup_activated' => 'Global tvöfaldur sendingarhamur virkt',
+ 'download' => 'Sækja',
+ 'edit' => 'Breyta',
+ 'edit-your-comment' => 'Breyttu ummælunum þínum',
+ 'email' => 'Tölvupóstur',
+ 'email-blacklist' => 'Email Blacklist',
+ 'email-whitelist' => 'Email Whitelist',
'email-list-notactive' => 'Email Whitelist / Blacklist System er ekki virkjað',
- 'enable' => 'Virkja',
- 'enter' => 'Koma inn',
- 'error' => 'Villa',
- 'everyday' => 'Daglega',
- 'expired' => 'Útrunnið',
- 'extra' => 'Auka',
- 'extra-stats' => 'Auka tölfræði',
- 'faq' => 'FAQ',
- 'files' => 'Skrár',
- 'fl_token' => 'Freeleech Token',
- 'fl_tokens' => 'Freeleech tákn',
- 'for' => 'fyrir',
- 'forum' => 'Forum',
- 'free' => 'Frjáls',
- 'freeleech_activated' => 'Global Freeleech hamur virkur',
- 'global' => 'Global',
- 'group' => 'Hópur',
- 'groups' => 'Hópar',
- 'hidden' => 'Falið',
- 'high-speeds' => 'Hár hraði',
- 'home' => 'Heim',
- 'hot' => 'Heitt!',
- 'hour' => 'Klukkustund',
- 'huge' => 'Björt',
- 'info' => 'Upplýsingar',
- 'internal' => 'Innri',
- 'ip' => 'IP',
- 'is-allowed' => 'er leyfilegt',
- 'large' => 'Stórt',
- 'latest' => 'Nýjustu',
- 'latest-posts' => 'Nýjustu færslur',
- 'latest-topics' => 'Nýjustu þættir',
- 'legal' => 'Löglegt',
- 'legend' => 'Legend',
- 'lists' => 'Lists',
- 'lock-account' => 'Læsa reikningi',
- 'logout' => 'Að skrá þig út',
- 'members' => 'Meðlimir',
- 'message' => 'Skilaboð',
- 'minute' => 'Mínútu',
- 'moderated-by' => 'Stjórnað af',
- 'moderation' => 'Moderation',
- 'moderation-approve' => 'Samþykkja',
- 'moderation-postpone' => 'Fresta',
- 'moderation-reject' => 'Hafna',
- 'month' => 'Mánuður',
- 'months' => 'Mánuðum',
- 'my' => 'Mín',
- 'name' => 'Nafn',
- 'navigation' => 'Siglingar',
- 'new' => 'Nýtt!',
- 'new-adj' => 'Nýtt',
- 'news' => 'Fréttir',
- 'next' => 'Næst',
- 'no' => 'Nr',
- 'no-comments' => 'Engar athugasemdir ennþá',
- 'no-result' => 'Það er engin niðurstaða í gagnagrunn fyrir fyrirspurn',
- 'notifications' => 'Tilkynningar',
- 'older-than' => 'Eldri en',
- 'oldest' => 'Elsta',
- 'openreg_activated' => 'Opna skráning virk',
- 'order-by' => 'Raða eftir',
- 'other' => 'Annað',
- 'pages' => 'Síður',
- 'password' => 'Lykilorð',
- 'patron' => 'Verða verndari',
- 'pending-torrents' => 'Í bið torrents',
- 'personal' => 'Starfsfólk',
- 'plural-suffix' => 's',
- 'port' => 'Höfn',
- 'position' => 'Staða',
- 'posts' => 'Innlegg',
- 'powered-by' => 'Keyrt af UNIT3D',
- 'preview' => 'Preview',
- 'previous' => 'Fyrri',
- 'progress' => 'Framfarir',
- 'publish' => 'Birta',
- 'quantity' => 'Magn',
- 'quick-search' => 'Flýtileit',
- 'ratio' => 'Hlutfall',
- 'reason' => 'Ástæða',
- 'remove' => 'Fjarlægja',
- 'report' => 'Skýrsla',
- 'resend' => 'Senda aftur',
- 'reporter' => 'Fréttaritari',
- 'required' => 'Nauðsynlegt',
- 'results' => 'Niðurstöður',
- 'rss-system' => 'RSS kerfið',
- 'rules' => 'Reglur',
- 'save' => 'Vista',
- 'search' => 'Leita',
- 'search-results' => 'Leitarniðurstöður',
- 'search-results-desc' => 'Vinsamlegast sjáðu niðurstöðurnar þínar hér fyrir neðan',
- 'second' => 'Í öðru lagi',
- 'select' => 'Veldu',
- 'sort' => 'Raða',
- 'special' => 'Sérstakur',
- 'staff' => 'Starfsfólk',
- 'staff-tools' => 'Starfsfólk verkfæri',
- 'stats' => 'Tölfræði',
- 'status' => 'Staða',
- 'sticked' => 'Stafað',
- 'submit' => 'Senda inn',
- 'subscriptions' => 'Áskriftir',
- 'teams' => 'Lið',
- 'terms' => 'Notenda Skilmálar',
- 'times' => 'Times',
- 'title' => 'Titill',
- 'top-bountied' => 'Top Bountied',
- 'topics' => 'Topics',
- 'tracker-codes' => 'Tracker númer',
- 'type' => 'Tegund',
- 'type-verb' => 'Tegund',
- 'types' => 'Tegundir',
- 'genre' => 'Tegund',
- 'genres' => 'Tegundir',
- 'action' => 'Aðgerð',
- 'actions' => 'Aðgerðir',
- 'unknown' => 'Óþekktur',
+ 'enable' => 'Virkja',
+ 'enter' => 'Koma inn',
+ 'error' => 'Villa',
+ 'everyday' => 'Daglega',
+ 'expired' => 'Útrunnið',
+ 'extra' => 'Auka',
+ 'extra-stats' => 'Auka tölfræði',
+ 'faq' => 'FAQ',
+ 'files' => 'Skrár',
+ 'fl_token' => 'Freeleech Token',
+ 'fl_tokens' => 'Freeleech tákn',
+ 'for' => 'fyrir',
+ 'forum' => 'Forum',
+ 'free' => 'Frjáls',
+ 'freeleech_activated' => 'Global Freeleech hamur virkur',
+ 'global' => 'Global',
+ 'group' => 'Hópur',
+ 'groups' => 'Hópar',
+ 'hidden' => 'Falið',
+ 'high-speeds' => 'Hár hraði',
+ 'home' => 'Heim',
+ 'hot' => 'Heitt!',
+ 'hour' => 'Klukkustund',
+ 'huge' => 'Björt',
+ 'info' => 'Upplýsingar',
+ 'internal' => 'Innri',
+ 'ip' => 'IP',
+ 'is-allowed' => 'er leyfilegt',
+ 'large' => 'Stórt',
+ 'latest' => 'Nýjustu',
+ 'latest-posts' => 'Nýjustu færslur',
+ 'latest-topics' => 'Nýjustu þættir',
+ 'legal' => 'Löglegt',
+ 'legend' => 'Legend',
+ 'lists' => 'Lists',
+ 'lock-account' => 'Læsa reikningi',
+ 'logout' => 'Að skrá þig út',
+ 'members' => 'Meðlimir',
+ 'message' => 'Skilaboð',
+ 'minute' => 'Mínútu',
+ 'moderated-by' => 'Stjórnað af',
+ 'moderation' => 'Moderation',
+ 'moderation-approve' => 'Samþykkja',
+ 'moderation-postpone' => 'Fresta',
+ 'moderation-reject' => 'Hafna',
+ 'month' => 'Mánuður',
+ 'months' => 'Mánuðum',
+ 'my' => 'Mín',
+ 'name' => 'Nafn',
+ 'navigation' => 'Siglingar',
+ 'new' => 'Nýtt!',
+ 'new-adj' => 'Nýtt',
+ 'news' => 'Fréttir',
+ 'next' => 'Næst',
+ 'no' => 'Nr',
+ 'no-comments' => 'Engar athugasemdir ennþá',
+ 'no-result' => 'Það er engin niðurstaða í gagnagrunn fyrir fyrirspurn',
+ 'notifications' => 'Tilkynningar',
+ 'older-than' => 'Eldri en',
+ 'oldest' => 'Elsta',
+ 'openreg_activated' => 'Opna skráning virk',
+ 'order-by' => 'Raða eftir',
+ 'other' => 'Annað',
+ 'pages' => 'Síður',
+ 'password' => 'Lykilorð',
+ 'patron' => 'Verða verndari',
+ 'pending-torrents' => 'Í bið torrents',
+ 'personal' => 'Starfsfólk',
+ 'plural-suffix' => 's',
+ 'port' => 'Höfn',
+ 'position' => 'Staða',
+ 'posts' => 'Innlegg',
+ 'powered-by' => 'Keyrt af UNIT3D',
+ 'preview' => 'Preview',
+ 'previous' => 'Fyrri',
+ 'progress' => 'Framfarir',
+ 'publish' => 'Birta',
+ 'quantity' => 'Magn',
+ 'quick-search' => 'Flýtileit',
+ 'ratio' => 'Hlutfall',
+ 'reason' => 'Ástæða',
+ 'remove' => 'Fjarlægja',
+ 'report' => 'Skýrsla',
+ 'resend' => 'Senda aftur',
+ 'reporter' => 'Fréttaritari',
+ 'required' => 'Nauðsynlegt',
+ 'results' => 'Niðurstöður',
+ 'rss-system' => 'RSS kerfið',
+ 'rules' => 'Reglur',
+ 'save' => 'Vista',
+ 'search' => 'Leita',
+ 'search-results' => 'Leitarniðurstöður',
+ 'search-results-desc' => 'Vinsamlegast sjáðu niðurstöðurnar þínar hér fyrir neðan',
+ 'second' => 'Í öðru lagi',
+ 'select' => 'Veldu',
+ 'sort' => 'Raða',
+ 'special' => 'Sérstakur',
+ 'staff' => 'Starfsfólk',
+ 'staff-tools' => 'Starfsfólk verkfæri',
+ 'stats' => 'Tölfræði',
+ 'status' => 'Staða',
+ 'sticked' => 'Stafað',
+ 'submit' => 'Senda inn',
+ 'subscriptions' => 'Áskriftir',
+ 'teams' => 'Lið',
+ 'terms' => 'Notenda Skilmálar',
+ 'times' => 'Times',
+ 'title' => 'Titill',
+ 'top-bountied' => 'Top Bountied',
+ 'topics' => 'Topics',
+ 'tracker-codes' => 'Tracker númer',
+ 'type' => 'Tegund',
+ 'type-verb' => 'Tegund',
+ 'types' => 'Tegundir',
+ 'genre' => 'Tegund',
+ 'genres' => 'Tegundir',
+ 'action' => 'Aðgerð',
+ 'actions' => 'Aðgerðir',
+ 'unknown' => 'Óþekktur',
'unlocked-achievement' => 'Þú opnaði: árangur afrek',
- 'upload' => 'Hlaða inn',
- 'upload-guide' => 'Hlaða upp handbók',
- 'user' => 'Notandi',
- 'username' => 'Notendanafn',
- 'users' => 'Notendur',
- 'view' => 'Útsýni',
- 'view-all' => 'Sjá allt',
- 'warnings' => 'Viðvaranir',
- 'year' => 'Ár',
- 'yes' => 'Já',
- 'your' => 'Þinn',
- 'your-comment' => 'Athugasemd þín',
+ 'upload' => 'Hlaða inn',
+ 'upload-guide' => 'Hlaða upp handbók',
+ 'user' => 'Notandi',
+ 'username' => 'Notendanafn',
+ 'users' => 'Notendur',
+ 'view' => 'Útsýni',
+ 'view-all' => 'Sjá allt',
+ 'warnings' => 'Viðvaranir',
+ 'year' => 'Ár',
+ 'yes' => 'Já',
+ 'your' => 'Þinn',
+ 'your-comment' => 'Athugasemd þín',
];
diff --git a/lang/is/email.php b/lang/is/email.php
index e32756a4a..ccd26abbf 100644
--- a/lang/is/email.php
+++ b/lang/is/email.php
@@ -12,46 +12,46 @@
*/
return [
- 'activate-account' => 'Virkja reikning',
- 'ban-reason' => 'Ástæða',
- 'banned-footer' => 'Það er það sem þú færð fyrir að fylgja ekki reglunum',
- 'banned-header' => 'Þú hefur verið bannaður',
- 'bug-description' => 'Vandamál',
- 'bug-footer' => 'Festa það skít',
- 'bug-header' => 'Ný galla skýrsla frá',
- 'bug-priority' => 'Forgangur',
- 'bug-title' => 'Galla titill',
- 'contact-header' => 'Nýr tengiliður frá',
- 'contact-message' => 'Skilaboð',
- 'contact-name' => 'Nafn',
+ 'activate-account' => 'Virkja reikning',
+ 'ban-reason' => 'Ástæða',
+ 'banned-footer' => 'Það er það sem þú færð fyrir að fylgja ekki reglunum',
+ 'banned-header' => 'Þú hefur verið bannaður',
+ 'bug-description' => 'Vandamál',
+ 'bug-footer' => 'Festa það skít',
+ 'bug-header' => 'Ný galla skýrsla frá',
+ 'bug-priority' => 'Forgangur',
+ 'bug-title' => 'Galla titill',
+ 'contact-header' => 'Nýr tengiliður frá',
+ 'contact-message' => 'Skilaboð',
+ 'contact-name' => 'Nafn',
'fail-login-greeting' => 'Reikningur Innskráning mistókst!',
- 'fail-login-line1' => 'Mistókst tenging fannst fyrir reikninginn þinn.',
- 'fail-login-line2' => 'Þessi beiðni kom frá: ip (: gestgjafi) á: tíma',
- 'fail-login-subject' => 'Mistókst innskráningartilkynning',
- 'footer-link' => 'Ef þú átt í vandræðum með að smella á: actionText hnappinn skaltu afrita og líma slóðina hér fyrir neðan í vafrann þinn:',
- 'invite-header' => 'Boð til',
- 'invite-invited' => 'Þú hefur verið boðið að',
- 'invite-message' => 'Skilaboð',
- 'invite-signup' => 'Skráðu þig núna',
- 'newreply-header' => 'Það er nýtt svar í efninu þínu',
- 'newreply-message' => 'Skilaboð',
- 'newreply-replied' => 'Hefur svarað efni þínu',
- 'newreply-view' => 'Skoða það núna',
- 'no-email-found' => 'Við gátum ekki fundið þetta netfang í kerfinu okkar!',
- 'register-code' => 'Til að ljúka við virkjun reikningsins skaltu smella á hnappinn hér fyrir neðan',
- 'register-footer' => 'Ef hnappurinn hér að ofan virkar ekki skaltu afrita og líma slóðina inn í gagnasafns vafra',
- 'register-header' => 'Hæ! Þakka þér fyrir að skrá þig á',
- 'report-comment' => 'Athugasemd',
- 'report-email' => 'Tölvupóstur',
- 'report-header' => 'Hæ Admin, Tilkynnt hefur verið um tengil á',
- 'report-link' => 'Link',
- 'report-link-hash' => 'Raunveruleg hlekkur',
- 'thanks' => 'Takk fyrir að nota',
- 'unban-footer' => 'Velkominn aftur!',
- 'unban-header' => 'Þú hefur verið óbann',
- 'unban-reason' => 'Ástæða',
- 'username-reminder' => 'Þú sendir nýlega okkur beiðni um notandanafnið þitt í appnum okkar. Notendanafnið þitt er',
- 'username-sent' => 'Notandanafnið þitt hefur verið sent á netfangið þitt!',
- 'disabled-header' => 'Reikningurinn þinn hefur verið óvirkur',
- 'pruned-header' => 'Reikningurinn þinn hefur verið rekinn',
+ 'fail-login-line1' => 'Mistókst tenging fannst fyrir reikninginn þinn.',
+ 'fail-login-line2' => 'Þessi beiðni kom frá: ip (: gestgjafi) á: tíma',
+ 'fail-login-subject' => 'Mistókst innskráningartilkynning',
+ 'footer-link' => 'Ef þú átt í vandræðum með að smella á: actionText hnappinn skaltu afrita og líma slóðina hér fyrir neðan í vafrann þinn:',
+ 'invite-header' => 'Boð til',
+ 'invite-invited' => 'Þú hefur verið boðið að',
+ 'invite-message' => 'Skilaboð',
+ 'invite-signup' => 'Skráðu þig núna',
+ 'newreply-header' => 'Það er nýtt svar í efninu þínu',
+ 'newreply-message' => 'Skilaboð',
+ 'newreply-replied' => 'Hefur svarað efni þínu',
+ 'newreply-view' => 'Skoða það núna',
+ 'no-email-found' => 'Við gátum ekki fundið þetta netfang í kerfinu okkar!',
+ 'register-code' => 'Til að ljúka við virkjun reikningsins skaltu smella á hnappinn hér fyrir neðan',
+ 'register-footer' => 'Ef hnappurinn hér að ofan virkar ekki skaltu afrita og líma slóðina inn í gagnasafns vafra',
+ 'register-header' => 'Hæ! Þakka þér fyrir að skrá þig á',
+ 'report-comment' => 'Athugasemd',
+ 'report-email' => 'Tölvupóstur',
+ 'report-header' => 'Hæ Admin, Tilkynnt hefur verið um tengil á',
+ 'report-link' => 'Link',
+ 'report-link-hash' => 'Raunveruleg hlekkur',
+ 'thanks' => 'Takk fyrir að nota',
+ 'unban-footer' => 'Velkominn aftur!',
+ 'unban-header' => 'Þú hefur verið óbann',
+ 'unban-reason' => 'Ástæða',
+ 'username-reminder' => 'Þú sendir nýlega okkur beiðni um notandanafnið þitt í appnum okkar. Notendanafnið þitt er',
+ 'username-sent' => 'Notandanafnið þitt hefur verið sent á netfangið þitt!',
+ 'disabled-header' => 'Reikningurinn þinn hefur verið óvirkur',
+ 'pruned-header' => 'Reikningurinn þinn hefur verið rekinn',
];
diff --git a/lang/is/forum.php b/lang/is/forum.php
index 2497c8c55..249d08fa8 100644
--- a/lang/is/forum.php
+++ b/lang/is/forum.php
@@ -12,63 +12,63 @@
*/
return [
- 'action' => 'Aðgerð',
- 'activity' => 'Virkni',
- 'approved' => 'Samþykkt',
- 'author' => 'Höfundur',
- 'bug' => 'Galla',
- 'category-quick-search' => 'Efnisheiti fljótleg leit (innan flokks)',
- 'close-topic' => 'Læsa umræðuefni',
- 'closed' => 'Lokað',
- 'create-new-topic' => 'Búðu til nýtt efni',
- 'created' => 'Búið til',
- 'current' => 'Núverandi',
- 'delete-topic' => 'Eyða þessu efni',
- 'denied' => 'Neitað',
- 'dislike-post' => 'Mislíkar þetta innlegg',
- 'display-forum' => 'Sýna efni í',
- 'edit-post' => 'Breyta færslu',
- 'edit-topic' => 'Breyta efni',
- 'forum' => 'Forum',
- 'forums' => 'Málþing',
- 'implemented' => 'Framkvæmdar',
- 'in' => 'Í',
- 'invalid' => 'Ógilt',
- 'label' => 'Merki',
- 'label-system' => 'Label System',
- 'last-message' => 'Síðasta skilaboð',
- 'last-post-info' => 'Síðasti póstur',
- 'latest' => 'Nýjustu',
- 'like-post' => 'Eins og þetta innlegg',
- 'meta-category' => 'Listi yfir vettvangi í flokknum',
- 'moderation' => 'Moderation',
- 'name' => 'Nafn',
- 'not-connected' => 'Þú verður að vera tengdur',
- 'not-subscribed' => 'Ekki áskrifandi',
- 'open' => 'Opna',
- 'open-topic' => 'Opnaðu þetta efni',
- 'permalink' => 'Permalink',
- 'pin' => 'Pin',
- 'post' => 'Post',
- 'post-quick-search' => 'Stöðva leit eftir líkamanum',
- 'posts' => 'Innlegg',
- 'quote' => 'Tilvitnun',
- 'read-topic' => 'Lesa efni',
- 'replies' => 'Svar',
- 'send-new-topic' => 'Vista þetta efni',
- 'solved' => 'Leyst',
- 'state' => 'Ríki',
- 'stats' => 'Tölfræði',
- 'subscribed' => 'Áskrifandi',
+ 'action' => 'Aðgerð',
+ 'activity' => 'Virkni',
+ 'approved' => 'Samþykkt',
+ 'author' => 'Höfundur',
+ 'bug' => 'Galla',
+ 'category-quick-search' => 'Efnisheiti fljótleg leit (innan flokks)',
+ 'close-topic' => 'Læsa umræðuefni',
+ 'closed' => 'Lokað',
+ 'create-new-topic' => 'Búðu til nýtt efni',
+ 'created' => 'Búið til',
+ 'current' => 'Núverandi',
+ 'delete-topic' => 'Eyða þessu efni',
+ 'denied' => 'Neitað',
+ 'dislike-post' => 'Mislíkar þetta innlegg',
+ 'display-forum' => 'Sýna efni í',
+ 'edit-post' => 'Breyta færslu',
+ 'edit-topic' => 'Breyta efni',
+ 'forum' => 'Forum',
+ 'forums' => 'Málþing',
+ 'implemented' => 'Framkvæmdar',
+ 'in' => 'Í',
+ 'invalid' => 'Ógilt',
+ 'label' => 'Merki',
+ 'label-system' => 'Label System',
+ 'last-message' => 'Síðasta skilaboð',
+ 'last-post-info' => 'Síðasti póstur',
+ 'latest' => 'Nýjustu',
+ 'like-post' => 'Eins og þetta innlegg',
+ 'meta-category' => 'Listi yfir vettvangi í flokknum',
+ 'moderation' => 'Moderation',
+ 'name' => 'Nafn',
+ 'not-connected' => 'Þú verður að vera tengdur',
+ 'not-subscribed' => 'Ekki áskrifandi',
+ 'open' => 'Opna',
+ 'open-topic' => 'Opnaðu þetta efni',
+ 'permalink' => 'Permalink',
+ 'pin' => 'Pin',
+ 'post' => 'Post',
+ 'post-quick-search' => 'Stöðva leit eftir líkamanum',
+ 'posts' => 'Innlegg',
+ 'quote' => 'Tilvitnun',
+ 'read-topic' => 'Lesa efni',
+ 'replies' => 'Svar',
+ 'send-new-topic' => 'Vista þetta efni',
+ 'solved' => 'Leyst',
+ 'state' => 'Ríki',
+ 'stats' => 'Tölfræði',
+ 'subscribed' => 'Áskrifandi',
'subscription-quick-search' => 'Efnisheiti fljótleg leit (innan áskriftar)',
- 'suggestion' => 'Tillaga',
- 'topic' => 'Topic',
- 'topic-closed' => 'Þetta efni er lokað',
- 'topic-name' => 'Nafn efnis',
- 'topic-quick-search' => 'Efnisheiti fljótleg leit',
- 'topic-title' => 'Titill þessa máls',
- 'topics' => 'Topics',
- 'unpin' => 'Unpin',
- 'view-all' => 'Skoða öll efni',
- 'views' => 'Skoðanir',
+ 'suggestion' => 'Tillaga',
+ 'topic' => 'Topic',
+ 'topic-closed' => 'Þetta efni er lokað',
+ 'topic-name' => 'Nafn efnis',
+ 'topic-quick-search' => 'Efnisheiti fljótleg leit',
+ 'topic-title' => 'Titill þessa máls',
+ 'topics' => 'Topics',
+ 'unpin' => 'Unpin',
+ 'view-all' => 'Skoða öll efni',
+ 'views' => 'Skoðanir',
];
diff --git a/lang/is/graveyard.php b/lang/is/graveyard.php
index e9ef28ee8..cd1c151da 100644
--- a/lang/is/graveyard.php
+++ b/lang/is/graveyard.php
@@ -12,15 +12,15 @@
*/
return [
- 'dead' => 'Dead',
- 'graveyard' => 'Kirkjugarður',
- 'guidelines' => 'Leiðbeiningar',
+ 'dead' => 'Dead',
+ 'graveyard' => 'Kirkjugarður',
+ 'guidelines' => 'Leiðbeiningar',
'guidelines-content' => '1) Þú getur ekki endurvekja eigin upphleðslur þínar.
2) Ekki endurvekja eitthvað sem þú getur ekki falið líka.',
- 'howto' => 'Heres Reglan',
- 'howto-desc1' => 'Þú verður að fræ : heiti í 30 daga til að ná árangri. Í því tilviki þegar núverandi frestur þinn á',
- 'howto-desc2' => 'Þú verður verðlaunaður',
- 'howto-hits' => 'Hits',
- 'pending' => 'Í bið',
- 'resurrect' => 'Upprisa',
- 'reward' => 'Freeleech tákn',
+ 'howto' => 'Heres Reglan',
+ 'howto-desc1' => 'Þú verður að fræ : heiti í 30 daga til að ná árangri. Í því tilviki þegar núverandi frestur þinn á',
+ 'howto-desc2' => 'Þú verður verðlaunaður',
+ 'howto-hits' => 'Hits',
+ 'pending' => 'Í bið',
+ 'resurrect' => 'Upprisa',
+ 'reward' => 'Freeleech tákn',
];
diff --git a/lang/is/notification.php b/lang/is/notification.php
index 9a933a2cc..c8723a32d 100644
--- a/lang/is/notification.php
+++ b/lang/is/notification.php
@@ -12,14 +12,14 @@
*/
return [
- 'date' => 'Dagsetning',
- 'delete' => 'Eyða',
- 'delete-all' => 'Eyða öllum tilkynningum',
- 'mark-all-read' => 'merkja allt sem lesið',
- 'mark-read' => 'merkja sem lesið',
- 'message' => 'Skilaboð',
+ 'date' => 'Dagsetning',
+ 'delete' => 'Eyða',
+ 'delete-all' => 'Eyða öllum tilkynningum',
+ 'mark-all-read' => 'merkja allt sem lesið',
+ 'mark-read' => 'merkja sem lesið',
+ 'message' => 'Skilaboð',
'no-notifications' => 'Engar tilkynningar fundust',
- 'notifications' => 'Tilkynningar',
- 'read' => 'Lesa',
- 'title' => 'Titill',
+ 'notifications' => 'Tilkynningar',
+ 'read' => 'Lesa',
+ 'title' => 'Titill',
];
diff --git a/lang/is/page.php b/lang/is/page.php
index 7bcdad9db..f3d44a007 100644
--- a/lang/is/page.php
+++ b/lang/is/page.php
@@ -12,28 +12,28 @@
*/
return [
- 'aboutus-advantage' => 'Kosturinn',
- 'aboutus-advantage1' => 'Við höfum upplifað meðlimi og starfsfólk sem er vel versed í heimi HD vídeó / hljóð og tæknilega aðstoð.',
- 'aboutus-advantage2' => 'Ásamt víðtæka ástríðu okkar fyrir kvikmyndir og sjónvarpsþætti, bjóðum við einnig upp á einn af bestu vali á eitthvað sem flestir dont - FANRES! A BIG ÞAKKA ÞAKKAR til okkar efnismenn.',
- 'aboutus-advantage3' => 'Þó að við samþykkjum framlög til að halda vefsvæðinu í gangi, þá munu engar pestering PMs eða borðar vera á staðnum. Nei biðja frá okkur.',
- 'aboutus-advantage4' => 'Samfélagið okkar er ótrúlegt fyrir unga aldri. Milli starfsmanna okkar og notendahandbók, voru alltaf hér til að hjálpa. Var ástríðufullur um að ganga úr skugga um að reynsla þín á: titillinn sé ekkert ótrúlegt.',
- 'aboutus-advantage5' => 'Þjónustan okkar er notuð daglega af mörgum um allan heim. Weve sannað að við elskum um virkni og öryggi kóða okkar og það er hægt að treysta og treysta á. Verktaki okkar vinnur daglega til að bjóða upp á sannarlega nex-gen kóða.',
- 'aboutus-header' => 'Sæll',
- 'aboutus-rules' => 'Það sem við þurfum af þér',
- 'aboutus-rules1' => 'Til að vera virkur meðlimur samfélagsins! Þetta þýðir að taka þátt í samtölum á árangursríkan hátt, bæta við samþykktu efni og hjálpa öðrum notendum ef þú getur.',
- 'aboutus-rules2' => 'Til að lesa reglurnar að fullu og vinsamlegast virða þá!',
- 'aboutus-rules3' => 'Gerðu tillögur! Við erum að reyna að gera: titil betra á hverjum degi. Við arent að segja að allar tillögur verði notaðar, en það er aldrei sært að sjá nýjar hugmyndir.',
- 'aboutus-welcome' => 'Lets tala um',
- 'aboutus-welcome-desc' => ': Titill er samfélagsbyggt kvikmynd / sjónvarp / FANRES gagnagrunnur. Öll gögn hafa verið bætt við ótrúlegt samfélag frá 2017.: Titlar sterk áhersla er á HD-efni, fyrirbyggjandi notendaviðmót, ógnvekjandi / öruggt kóða og hjálplegt og vingjarnlegt starfsfólk.',
- 'blacklist-browsers' => 'Vafrar',
- 'blacklist-btclient' => 'BitTorrent Viðskiptavinur',
- 'blacklist-clients' => 'Viðskiptavinir',
- 'blacklist-desc' => 'Eftirfarandi vafrar og Bittorrent Viðskiptavinir eru svartalistaðir / bannaðir frá að tilkynna til: titil',
- 'blacklist-webbrowser' => 'Vefskoðarinn',
+ 'aboutus-advantage' => 'Kosturinn',
+ 'aboutus-advantage1' => 'Við höfum upplifað meðlimi og starfsfólk sem er vel versed í heimi HD vídeó / hljóð og tæknilega aðstoð.',
+ 'aboutus-advantage2' => 'Ásamt víðtæka ástríðu okkar fyrir kvikmyndir og sjónvarpsþætti, bjóðum við einnig upp á einn af bestu vali á eitthvað sem flestir dont - FANRES! A BIG ÞAKKA ÞAKKAR til okkar efnismenn.',
+ 'aboutus-advantage3' => 'Þó að við samþykkjum framlög til að halda vefsvæðinu í gangi, þá munu engar pestering PMs eða borðar vera á staðnum. Nei biðja frá okkur.',
+ 'aboutus-advantage4' => 'Samfélagið okkar er ótrúlegt fyrir unga aldri. Milli starfsmanna okkar og notendahandbók, voru alltaf hér til að hjálpa. Var ástríðufullur um að ganga úr skugga um að reynsla þín á: titillinn sé ekkert ótrúlegt.',
+ 'aboutus-advantage5' => 'Þjónustan okkar er notuð daglega af mörgum um allan heim. Weve sannað að við elskum um virkni og öryggi kóða okkar og það er hægt að treysta og treysta á. Verktaki okkar vinnur daglega til að bjóða upp á sannarlega nex-gen kóða.',
+ 'aboutus-header' => 'Sæll',
+ 'aboutus-rules' => 'Það sem við þurfum af þér',
+ 'aboutus-rules1' => 'Til að vera virkur meðlimur samfélagsins! Þetta þýðir að taka þátt í samtölum á árangursríkan hátt, bæta við samþykktu efni og hjálpa öðrum notendum ef þú getur.',
+ 'aboutus-rules2' => 'Til að lesa reglurnar að fullu og vinsamlegast virða þá!',
+ 'aboutus-rules3' => 'Gerðu tillögur! Við erum að reyna að gera: titil betra á hverjum degi. Við arent að segja að allar tillögur verði notaðar, en það er aldrei sært að sjá nýjar hugmyndir.',
+ 'aboutus-welcome' => 'Lets tala um',
+ 'aboutus-welcome-desc' => ': Titill er samfélagsbyggt kvikmynd / sjónvarp / FANRES gagnagrunnur. Öll gögn hafa verið bætt við ótrúlegt samfélag frá 2017.: Titlar sterk áhersla er á HD-efni, fyrirbyggjandi notendaviðmót, ógnvekjandi / öruggt kóða og hjálplegt og vingjarnlegt starfsfólk.',
+ 'blacklist-browsers' => 'Vafrar',
+ 'blacklist-btclient' => 'BitTorrent Viðskiptavinur',
+ 'blacklist-clients' => 'Viðskiptavinir',
+ 'blacklist-desc' => 'Eftirfarandi vafrar og Bittorrent Viðskiptavinir eru svartalistaðir / bannaðir frá að tilkynna til: titil',
+ 'blacklist-webbrowser' => 'Vefskoðarinn',
'blacklist-emaildomain' => 'Lokað lén',
- 'email-blacklist-desc' => 'Eftirfarandi tölvupóstsdomar eru lokaðar frá því að nota þau. Þú getur ekki skráð þig eða sent boð um að eftirfarandi.',
- 'email-whitelist-desc' => 'Eftirfarandi tölvupóstsvettvangur eru eingöngu tölvupóstlén leyfðar til notkunar. Þú mátt aðeins skrá þig eða senda boð með því að nota eftirfarandi.',
- 'staff-group' => 'Hópur',
- 'staff-title' => 'Titill',
+ 'email-blacklist-desc' => 'Eftirfarandi tölvupóstsdomar eru lokaðar frá því að nota þau. Þú getur ekki skráð þig eða sent boð um að eftirfarandi.',
+ 'email-whitelist-desc' => 'Eftirfarandi tölvupóstsvettvangur eru eingöngu tölvupóstlén leyfðar til notkunar. Þú mátt aðeins skrá þig eða senda boð með því að nota eftirfarandi.',
+ 'staff-group' => 'Hópur',
+ 'staff-title' => 'Titill',
'whitelist-emaildomain' => 'Öruggt lén',
];
diff --git a/lang/is/pagination.php b/lang/is/pagination.php
index 3cc534d62..ae8a200e9 100644
--- a/lang/is/pagination.php
+++ b/lang/is/pagination.php
@@ -24,5 +24,5 @@ return [
*/
'previous' => '« Fyrri',
- 'next' => 'Næsta »',
+ 'next' => 'Næsta »',
];
diff --git a/lang/is/passwords.php b/lang/is/passwords.php
index a156639f0..59dc19084 100644
--- a/lang/is/passwords.php
+++ b/lang/is/passwords.php
@@ -24,8 +24,8 @@ return [
*/
'password' => 'Lykilorðið verður að innihalda að minnsta kosti 6 stafi.',
- 'reset' => 'Lykilorðið þitt hefur verið endurstillt!',
- 'sent' => 'Við sendum þér tölvupóst með slóð til að endurheimta lykilorðið þitt.',
- 'token' => 'Kóðinn til að endurheimta lykilorðið er rangur.',
- 'user' => 'Notandi með þetta netfang finnst ekki.',
+ 'reset' => 'Lykilorðið þitt hefur verið endurstillt!',
+ 'sent' => 'Við sendum þér tölvupóst með slóð til að endurheimta lykilorðið þitt.',
+ 'token' => 'Kóðinn til að endurheimta lykilorðið er rangur.',
+ 'user' => 'Notandi með þetta netfang finnst ekki.',
];
diff --git a/lang/is/pm.php b/lang/is/pm.php
index 8f1a873e1..2745501b0 100644
--- a/lang/is/pm.php
+++ b/lang/is/pm.php
@@ -12,28 +12,28 @@
*/
return [
- 'create' => 'Búa til',
- 'delete' => 'Eyða',
+ 'create' => 'Búa til',
+ 'delete' => 'Eyða',
'enter-subject' => 'Sláðu inn efni',
- 'from' => 'Frá',
- 'inbox' => 'Innhólf',
+ 'from' => 'Frá',
+ 'inbox' => 'Innhólf',
'mark-all-read' => 'Merktu öll skilaboð sem lesin',
- 'message' => 'Skilaboð',
- 'messages' => 'Skilaboð',
- 'new' => 'Ný skilaboð',
- 'outbox' => 'Úthólf',
- 'private' => 'Einkamál',
- 'read' => 'Lesa',
- 'received-at' => 'Móttekið At',
- 'refresh' => 'Uppfæra',
- 'reply' => 'Svara',
- 'search' => 'Leita eftir efni',
- 'select' => 'Veldu notanda',
- 'send' => 'Senda PM',
- 'send-to' => 'Senda PM Til',
- 'sent' => 'Sent',
- 'sent-at' => 'Sent á',
- 'subject' => 'Efni',
- 'to' => 'Til',
- 'unread' => 'Ólesin',
+ 'message' => 'Skilaboð',
+ 'messages' => 'Skilaboð',
+ 'new' => 'Ný skilaboð',
+ 'outbox' => 'Úthólf',
+ 'private' => 'Einkamál',
+ 'read' => 'Lesa',
+ 'received-at' => 'Móttekið At',
+ 'refresh' => 'Uppfæra',
+ 'reply' => 'Svara',
+ 'search' => 'Leita eftir efni',
+ 'select' => 'Veldu notanda',
+ 'send' => 'Senda PM',
+ 'send-to' => 'Senda PM Til',
+ 'sent' => 'Sent',
+ 'sent-at' => 'Sent á',
+ 'subject' => 'Efni',
+ 'to' => 'Til',
+ 'unread' => 'Ólesin',
];
diff --git a/lang/is/poll.php b/lang/is/poll.php
index 1bda9fe7d..19272fcc0 100644
--- a/lang/is/poll.php
+++ b/lang/is/poll.php
@@ -12,18 +12,18 @@
*/
return [
- 'add-option' => 'Bæta við valkosti',
- 'create-poll' => 'Búðu til könnun',
- 'current' => 'Núverandi skoðanakönnun (ir)',
- 'delete-option' => 'Eyða valkosti',
+ 'add-option' => 'Bæta við valkosti',
+ 'create-poll' => 'Búðu til könnun',
+ 'current' => 'Núverandi skoðanakönnun (ir)',
+ 'delete-option' => 'Eyða valkosti',
'multiple-choice' => 'Þetta er margfeldisrannsókn. Veldu eins mörg svör og þú vilt.',
- 'option' => 'Valkostur',
- 'poll' => 'Könnun',
- 'polls' => 'Kannanir',
- 'results' => 'Niðurstöður könnunar',
- 'title' => 'Titill',
- 'total' => 'Samtals Atkvæði Ever',
- 'vote' => 'Kjósa',
- 'vote-now' => 'Fáðu atkvæði í núna!',
- 'votes' => 'Atkvæði',
+ 'option' => 'Valkostur',
+ 'poll' => 'Könnun',
+ 'polls' => 'Kannanir',
+ 'results' => 'Niðurstöður könnunar',
+ 'title' => 'Titill',
+ 'total' => 'Samtals Atkvæði Ever',
+ 'vote' => 'Kjósa',
+ 'vote-now' => 'Fáðu atkvæði í núna!',
+ 'votes' => 'Atkvæði',
];
diff --git a/lang/is/request.php b/lang/is/request.php
index e30f95da6..34700c9eb 100644
--- a/lang/is/request.php
+++ b/lang/is/request.php
@@ -12,67 +12,67 @@
*/
return [
- 'add-request' => 'Bættu við beiðni',
- 'age' => 'Aldur',
- 'all-requests' => 'Allar beiðnir',
- 'approve' => 'Samþykkja',
- 'bounty' => 'Bounty',
- 'bounty-claimed' => 'Bounty krafa',
- 'bounty-unclaimed' => 'Bounty óinnheimt',
- 'category' => 'Flokkur',
- 'claim' => 'Krafa',
- 'claim-anon-choose' => 'Vinsamlegast veldu Visku',
- 'claim-as-anon' => 'Viltu halda því fram að þetta sé ósjálfrátt',
- 'claim-now' => 'Krafa núna',
- 'claimed' => 'Krafist',
- 'current' => 'Núverandi',
- 'delete' => 'Eyða þessari beiðni',
+ 'add-request' => 'Bættu við beiðni',
+ 'age' => 'Aldur',
+ 'all-requests' => 'Allar beiðnir',
+ 'approve' => 'Samþykkja',
+ 'bounty' => 'Bounty',
+ 'bounty-claimed' => 'Bounty krafa',
+ 'bounty-unclaimed' => 'Bounty óinnheimt',
+ 'category' => 'Flokkur',
+ 'claim' => 'Krafa',
+ 'claim-anon-choose' => 'Vinsamlegast veldu Visku',
+ 'claim-as-anon' => 'Viltu halda því fram að þetta sé ósjálfrátt',
+ 'claim-now' => 'Krafa núna',
+ 'claimed' => 'Krafist',
+ 'current' => 'Núverandi',
+ 'delete' => 'Eyða þessari beiðni',
'delete-confirmation' => 'Ertu viss um að þú viljir eyða þessari beiðni',
- 'delete-filled' => 'Þessi beiðni er aðeins hægt að eyða ef það hefur ekki verið fyllt',
- 'description' => 'Lýsing',
- 'dont-have-bps' => 'Þú hefur ekki nóg bónus',
- 'edit-request' => 'Breyta beiðni',
- 'enter-bp' => 'Sláðu inn bónus stig (að lágmarki 100)',
- 'enter-hash' => 'Sláðu inn upplýsingar Hash af hlaðið Torrent',
- 'fill' => 'Fylla',
- 'fill-request' => 'Fylltu út þessa beiðni',
- 'filled' => 'Fyllt',
- 'filled-by' => 'Fyllt af',
- 'for' => 'fyrir',
- 'fulfill' => 'Uppfylla',
- 'last-vote' => 'Síðasta atkvæði',
- 'my-requests' => 'Beiðnir mínir',
- 'no' => 'Nei,',
- 'no-imdb-id' => 'Allar beiðnir verða að innihalda IMDB númer',
- 'no-privileges' => 'Villa: Beiðnin þín hefur verið óvirk',
- 'no-privileges-desc' => 'Ef þú telur að þetta sé í villu skaltu hafa samband við starfsfólk',
- 'no-refunds' => 'BON ungmennaskipti um að búa til, fylla og bounties eru endanleg!
Engar endurgreiðslur!',
- 'pending' => 'Í bið',
- 'reason' => 'Ástæða',
- 'reject' => 'Hafna',
- 'report' => 'Skýrslubeiðni',
- 'request' => 'Beiðni',
- 'request-details' => 'Beiðni upplýsingar',
- 'requested-by' => 'Beðið eftir af',
- 'requests' => 'Beiðnir',
- 'required' => 'Nauðsynlegt',
- 'reset' => 'Endurstilla',
- 'reset-confirmation' => 'Ertu viss um að þú viljir endurstilla þessa beiðni',
- 'reset-request' => 'Endurstilla þessa beiðni',
- 'reward' => 'Verðlaun',
- 'reward-desc' => 'Hversu mikið bónus stig viltu umbuna? Lágmark 100 BP',
- 'reward-from' => 'Frá',
- 'title' => 'Titill',
- 'torrent-hash' => 'Torrent Hash',
- 'total-bounty' => 'Heildarfjárhæð',
- 'type' => 'Tegund',
- 'unclaim' => 'Afturkalla þessa beiðni',
- 'unfilled' => 'Ófyllt',
- 'view-filled' => 'Skoða fyllt',
- 'view-unfilled' => 'Skoða ófyllt',
- 'vote' => 'Kjósa',
- 'vote-that' => 'Kjósa þessa beiðni',
- 'voters' => 'Kjósendur',
- 'votes' => 'Atkvæði',
- 'yes' => 'Já',
+ 'delete-filled' => 'Þessi beiðni er aðeins hægt að eyða ef það hefur ekki verið fyllt',
+ 'description' => 'Lýsing',
+ 'dont-have-bps' => 'Þú hefur ekki nóg bónus',
+ 'edit-request' => 'Breyta beiðni',
+ 'enter-bp' => 'Sláðu inn bónus stig (að lágmarki 100)',
+ 'enter-hash' => 'Sláðu inn upplýsingar Hash af hlaðið Torrent',
+ 'fill' => 'Fylla',
+ 'fill-request' => 'Fylltu út þessa beiðni',
+ 'filled' => 'Fyllt',
+ 'filled-by' => 'Fyllt af',
+ 'for' => 'fyrir',
+ 'fulfill' => 'Uppfylla',
+ 'last-vote' => 'Síðasta atkvæði',
+ 'my-requests' => 'Beiðnir mínir',
+ 'no' => 'Nei,',
+ 'no-imdb-id' => 'Allar beiðnir verða að innihalda IMDB númer',
+ 'no-privileges' => 'Villa: Beiðnin þín hefur verið óvirk',
+ 'no-privileges-desc' => 'Ef þú telur að þetta sé í villu skaltu hafa samband við starfsfólk',
+ 'no-refunds' => 'BON ungmennaskipti um að búa til, fylla og bounties eru endanleg!
Engar endurgreiðslur!',
+ 'pending' => 'Í bið',
+ 'reason' => 'Ástæða',
+ 'reject' => 'Hafna',
+ 'report' => 'Skýrslubeiðni',
+ 'request' => 'Beiðni',
+ 'request-details' => 'Beiðni upplýsingar',
+ 'requested-by' => 'Beðið eftir af',
+ 'requests' => 'Beiðnir',
+ 'required' => 'Nauðsynlegt',
+ 'reset' => 'Endurstilla',
+ 'reset-confirmation' => 'Ertu viss um að þú viljir endurstilla þessa beiðni',
+ 'reset-request' => 'Endurstilla þessa beiðni',
+ 'reward' => 'Verðlaun',
+ 'reward-desc' => 'Hversu mikið bónus stig viltu umbuna? Lágmark 100 BP',
+ 'reward-from' => 'Frá',
+ 'title' => 'Titill',
+ 'torrent-hash' => 'Torrent Hash',
+ 'total-bounty' => 'Heildarfjárhæð',
+ 'type' => 'Tegund',
+ 'unclaim' => 'Afturkalla þessa beiðni',
+ 'unfilled' => 'Ófyllt',
+ 'view-filled' => 'Skoða fyllt',
+ 'view-unfilled' => 'Skoða ófyllt',
+ 'vote' => 'Kjósa',
+ 'vote-that' => 'Kjósa þessa beiðni',
+ 'voters' => 'Kjósendur',
+ 'votes' => 'Atkvæði',
+ 'yes' => 'Já',
];
diff --git a/lang/is/rss.php b/lang/is/rss.php
index 70908ddf0..db1f1309c 100644
--- a/lang/is/rss.php
+++ b/lang/is/rss.php
@@ -12,19 +12,19 @@
*/
return [
- 'create' => 'Búa til',
+ 'create' => 'Búa til',
'create-private-feed' => 'Búðu til Private RSS Feed',
- 'create-public-feed' => 'Búðu til opinbera RSS straumar',
- 'delete' => 'Eyða',
- 'edit' => 'Breyta',
- 'edit-private-feed' => 'Breyta persónulegum RSS straumi',
- 'edit-public-feed' => 'Breyta opinberu RSS straumi',
- 'feed' => 'Feed',
- 'feeds' => 'Straumar',
- 'name' => 'Nafn',
- 'public' => 'Opinber',
- 'private' => 'Einkamál',
- 'rss' => 'RSS',
- 'rss-feed' => 'RSS straumur',
- 'type' => 'Tegund',
+ 'create-public-feed' => 'Búðu til opinbera RSS straumar',
+ 'delete' => 'Eyða',
+ 'edit' => 'Breyta',
+ 'edit-private-feed' => 'Breyta persónulegum RSS straumi',
+ 'edit-public-feed' => 'Breyta opinberu RSS straumi',
+ 'feed' => 'Feed',
+ 'feeds' => 'Straumar',
+ 'name' => 'Nafn',
+ 'public' => 'Opinber',
+ 'private' => 'Einkamál',
+ 'rss' => 'RSS',
+ 'rss-feed' => 'RSS straumur',
+ 'type' => 'Tegund',
];
diff --git a/lang/is/staff.php b/lang/is/staff.php
index 8cbc67801..5f2a2fdd4 100644
--- a/lang/is/staff.php
+++ b/lang/is/staff.php
@@ -12,48 +12,48 @@
*/
return [
- 'audit-log' => 'Virkni Log',
- 'articles' => 'Greinar',
- 'applications' => 'Umsóknir',
- 'bans-log' => 'Bans Log',
- 'blocks' => 'Blokkir',
- 'bot' => 'Bot',
- 'bots' => 'Botswana',
- 'chat' => 'Spjall',
- 'config-manager' => 'Config Manager',
- 'dashboard' => 'Mælaborð',
- 'failed-login-log' => 'Mistókst Innskráning Innskráning',
- 'flush-ghost-peers' => 'Spola Ghost Peers',
- 'forums' => 'Málþing',
- 'frontend' => 'Að framanverðu',
- 'general-tools' => 'Almennar verkfæri',
- 'groups' => 'Hópar',
- 'invites-log' => 'Býður upp á þig',
- 'laravel-log' => 'Laravel Log',
- 'links' => 'Tenglar',
- 'logs' => 'Logs',
- 'mass-pm' => 'Mass PM',
- 'mass-validate-users' => 'Massakynning notenda',
- 'moderation' => 'Moderation',
- 'pages' => 'Síður',
- 'please-moderate' => 'Vinsamlegast Moderate This Torrent!',
- 'polls' => 'Kannanir',
- 'reports-log' => 'Skýrslur',
- 'rss' => 'RSS',
- 'staff-dashboard' => 'Stjórntæki starfsmanna',
- 'torrent-categories' => 'Torrent Flokkar',
- 'torrent-moderation' => 'Torrent Moderation',
- 'torrent-tools' => 'Torrent Tools',
- 'torrent-types' => 'Torrent Tegundir',
- 'torrents' => 'Torrents',
- 'user-gifting' => 'User Gifting',
- 'user-notes' => 'Notendaskilaboð',
- 'user-search' => 'Notandi leit',
- 'user-tools' => 'Notendahandbók',
- 'warnings-log' => 'Viðvörunarlisti',
- 'you-have' => 'Þú hefur',
+ 'audit-log' => 'Virkni Log',
+ 'articles' => 'Greinar',
+ 'applications' => 'Umsóknir',
+ 'bans-log' => 'Bans Log',
+ 'blocks' => 'Blokkir',
+ 'bot' => 'Bot',
+ 'bots' => 'Botswana',
+ 'chat' => 'Spjall',
+ 'config-manager' => 'Config Manager',
+ 'dashboard' => 'Mælaborð',
+ 'failed-login-log' => 'Mistókst Innskráning Innskráning',
+ 'flush-ghost-peers' => 'Spola Ghost Peers',
+ 'forums' => 'Málþing',
+ 'frontend' => 'Að framanverðu',
+ 'general-tools' => 'Almennar verkfæri',
+ 'groups' => 'Hópar',
+ 'invites-log' => 'Býður upp á þig',
+ 'laravel-log' => 'Laravel Log',
+ 'links' => 'Tenglar',
+ 'logs' => 'Logs',
+ 'mass-pm' => 'Mass PM',
+ 'mass-validate-users' => 'Massakynning notenda',
+ 'moderation' => 'Moderation',
+ 'pages' => 'Síður',
+ 'please-moderate' => 'Vinsamlegast Moderate This Torrent!',
+ 'polls' => 'Kannanir',
+ 'reports-log' => 'Skýrslur',
+ 'rss' => 'RSS',
+ 'staff-dashboard' => 'Stjórntæki starfsmanna',
+ 'torrent-categories' => 'Torrent Flokkar',
+ 'torrent-moderation' => 'Torrent Moderation',
+ 'torrent-tools' => 'Torrent Tools',
+ 'torrent-types' => 'Torrent Tegundir',
+ 'torrents' => 'Torrents',
+ 'user-gifting' => 'User Gifting',
+ 'user-notes' => 'Notendaskilaboð',
+ 'user-search' => 'Notandi leit',
+ 'user-tools' => 'Notendahandbók',
+ 'warnings-log' => 'Viðvörunarlisti',
+ 'you-have' => 'Þú hefur',
'possible-leech-cheaters' => 'Möguleg svikari',
- 'chat-tools' => 'Spjallverkfæri',
- 'flush-chat' => 'Skolið spjallborð',
- 'seedboxes' => 'Skráðir Seedboxes',
+ 'chat-tools' => 'Spjallverkfæri',
+ 'flush-chat' => 'Skolið spjallborð',
+ 'seedboxes' => 'Skráðir Seedboxes',
];
diff --git a/lang/is/stat.php b/lang/is/stat.php
index bcb93c786..2571abc7f 100644
--- a/lang/is/stat.php
+++ b/lang/is/stat.php
@@ -12,40 +12,40 @@
*/
return [
- 'by-count' => 'Með því að telja',
- 'by-data' => 'Eftir gögnum',
- 'by-volume' => 'Eftir bindi',
- 'group' => 'Hópur',
- 'groups' => 'Hópar',
- 'nerd-stats' => 'Nerd tölfræði',
- 'nerd-stats-desc' => 'Við elskum öll tölfræði. Hér eru nokkrar sem við finnum mikilvægt',
- 'registration-date' => 'Skráningar dagur',
- 'request-fulfilled' => 'Beiðni uppfyllt',
- 'request-not-fulfilled' => 'Beiðni ekki uppfyllt',
+ 'by-count' => 'Með því að telja',
+ 'by-data' => 'Eftir gögnum',
+ 'by-volume' => 'Eftir bindi',
+ 'group' => 'Hópur',
+ 'groups' => 'Hópar',
+ 'nerd-stats' => 'Nerd tölfræði',
+ 'nerd-stats-desc' => 'Við elskum öll tölfræði. Hér eru nokkrar sem við finnum mikilvægt',
+ 'registration-date' => 'Skráningar dagur',
+ 'request-fulfilled' => 'Beiðni uppfyllt',
+ 'request-not-fulfilled' => 'Beiðni ekki uppfyllt',
'request-pending-aproval' => 'Beiðni í bið',
- 'select-category' => 'Vinsamlegast veldu flokk hér að neðan',
- 'site-stats' => 'Staða vefsvæðis',
- 'stats' => 'Tölfræði',
- 'stats-format' => 'Öll tölfræði birtist í Top 100 Format',
- 'top-bankers' => 'Top bankastjóri',
- 'top-bountied' => 'Top Bountied',
- 'top-completed' => 'Efst lokið',
- 'top-dead' => 'Top Dead',
- 'top-downloaded' => 'Top niðurhal Torrents',
- 'top-downloaders' => 'Top Downloaders',
- 'top-dying' => 'Top Dying',
- 'top-leeched' => 'Top Leeched',
- 'top-leechers' => 'Efst Leechers',
- 'top-seeded' => 'Top fræ',
- 'top-seeding' => 'Top sáning',
- 'top-seeders' => 'Efstu sæti',
- 'top-seedsize' => 'Efstu fræ',
- 'top-seedtime' => 'Top seedtime',
- 'top-uploaders' => 'Top upphalendur',
- 'total-download' => 'Samtals niðurhal',
- 'total-torrents' => 'Samtals Torrents',
- 'total-traffic' => 'Samtals umferð',
- 'total-upload' => 'Samtals upphleðsla',
- 'users-in-group' => 'Notendur í hópi',
- 'users-per-group' => 'Notendur á hvern hóp',
+ 'select-category' => 'Vinsamlegast veldu flokk hér að neðan',
+ 'site-stats' => 'Staða vefsvæðis',
+ 'stats' => 'Tölfræði',
+ 'stats-format' => 'Öll tölfræði birtist í Top 100 Format',
+ 'top-bankers' => 'Top bankastjóri',
+ 'top-bountied' => 'Top Bountied',
+ 'top-completed' => 'Efst lokið',
+ 'top-dead' => 'Top Dead',
+ 'top-downloaded' => 'Top niðurhal Torrents',
+ 'top-downloaders' => 'Top Downloaders',
+ 'top-dying' => 'Top Dying',
+ 'top-leeched' => 'Top Leeched',
+ 'top-leechers' => 'Efst Leechers',
+ 'top-seeded' => 'Top fræ',
+ 'top-seeding' => 'Top sáning',
+ 'top-seeders' => 'Efstu sæti',
+ 'top-seedsize' => 'Efstu fræ',
+ 'top-seedtime' => 'Top seedtime',
+ 'top-uploaders' => 'Top upphalendur',
+ 'total-download' => 'Samtals niðurhal',
+ 'total-torrents' => 'Samtals Torrents',
+ 'total-traffic' => 'Samtals umferð',
+ 'total-upload' => 'Samtals upphleðsla',
+ 'users-in-group' => 'Notendur í hópi',
+ 'users-per-group' => 'Notendur á hvern hóp',
];
diff --git a/lang/is/torrent.php b/lang/is/torrent.php
index 88125cab1..0096a5fdc 100644
--- a/lang/is/torrent.php
+++ b/lang/is/torrent.php
@@ -12,197 +12,197 @@
*/
return [
- 'activity' => 'Virkni',
- 'age' => 'Aldur',
- 'agent' => 'Umboðsmaður',
- 'alive' => 'Alive',
- 'announce-url' => 'Tilkynna vefslóð',
- 'announce-url-desc' => 'Vinsamlegast notaðu tilkynningarslóðina hér fyrir ofan þegar þú býrð til nýjan straum. Ef þú vilt nota strauminn þinn án þess að hlaða niður henni frá síðunni þarftu að stilla einkafluginn og uppspretta til: uppspretta',
- 'announce-url-desc-url' => 'Hafa vandræði? Sjá leiðsögn okkar hér',
- 'announce-url-desc2' => 'TMDB og IMDB er krafist fyrir öll innsendingar! Það er notað til að grípa veggspjöld / bakgrunn og ExtraInfo',
- 'approved' => 'Samþykkt',
- 'audio' => 'Hljóð',
- 'bon-tipped' => 'Bón áfengi',
- 'bookmark' => 'Bókamerki',
- 'bookmarks' => 'Bókamerki',
- 'bump' => 'Bump',
- 'cant-upload' => 'Villa: Upphleðslan þín er óvirk',
- 'cant-upload-desc' => 'Ef þú telur að þetta sé í villu, vinsamlegast hafðu samband við starfsfólk',
- 'cards' => 'Spil',
- 'cards-view' => 'Torrent Kort Skoða',
- 'categories' => 'Flokkar',
- 'category' => 'Flokkur',
- 'client' => 'Viðskiptavinur',
- 'commited' => 'Skuldbundinn',
- 'completed' => 'Lokið',
- 'completed_at' => 'Lokið á',
- 'completed-not-seeding' => 'Þú kláraði þetta niðurhals en er ekki lengur að fræsa það',
- 'created_at' => 'Búið til á',
- 'credited' => 'Credited',
- 'current' => 'Núverandi',
- 'current-filters' => 'Núverandi síur',
- 'currently-leeching' => 'Nú lekur',
- 'currently-seeding' => 'Eins og sáning',
- 'dead-torrent' => 'Dead Torrent',
- 'dead-torrents' => 'Dead Torrents',
- 'delete-bookmark' => 'Eyða þessari bókamerki',
- 'description' => 'Lýsing',
- 'discounts' => 'Afslættir',
- 'double-upload' => 'Double Upload',
- 'download-all' => 'Sækja Allt',
- 'download-check' => 'Sækja skrá af fjarlægri tölvu',
- 'downloaded' => 'Niðurhal',
- 'dying-torrent' => 'Deyja Torrent',
- 'dying-torrents' => 'Deyjandi Torrents',
- 'encode-settings' => 'Umrita stillingar',
- 'estimated-ratio' => 'Áætluð hlutfall eftir Download',
- 'failed' => 'Mistókst',
- 'feature' => 'Lögun',
- 'featured' => 'Valin',
- 'featured-desc' => 'Valin torrents eru 100% ókeypis og Tvöfaldur upphal!',
- 'featured-until' => 'Þetta er valin Torrent þangað til',
- 'file' => 'Skrá',
- 'filters' => 'Síur',
- 'fl-tokens-left' => 'Þú hefur : tákn eftir',
- 'freeleech' => 'Freeleech',
- 'freeleech-token' => 'Freeleech Token',
- 'general' => 'Almennt',
- 'genre' => 'Tegund',
- 'global-double-upload' => 'Global Hlaða Hlaða',
- 'global-freeleech' => 'Global Freeleech',
- 'grant' => 'Grant',
- 'greater-than' => 'Meiri en',
- 'grouping' => 'Flokkun',
- 'groupings' => 'Groupings',
- 'grouping-categories' => 'Flokkunarflokkar',
+ 'activity' => 'Virkni',
+ 'age' => 'Aldur',
+ 'agent' => 'Umboðsmaður',
+ 'alive' => 'Alive',
+ 'announce-url' => 'Tilkynna vefslóð',
+ 'announce-url-desc' => 'Vinsamlegast notaðu tilkynningarslóðina hér fyrir ofan þegar þú býrð til nýjan straum. Ef þú vilt nota strauminn þinn án þess að hlaða niður henni frá síðunni þarftu að stilla einkafluginn og uppspretta til: uppspretta',
+ 'announce-url-desc-url' => 'Hafa vandræði? Sjá leiðsögn okkar hér',
+ 'announce-url-desc2' => 'TMDB og IMDB er krafist fyrir öll innsendingar! Það er notað til að grípa veggspjöld / bakgrunn og ExtraInfo',
+ 'approved' => 'Samþykkt',
+ 'audio' => 'Hljóð',
+ 'bon-tipped' => 'Bón áfengi',
+ 'bookmark' => 'Bókamerki',
+ 'bookmarks' => 'Bókamerki',
+ 'bump' => 'Bump',
+ 'cant-upload' => 'Villa: Upphleðslan þín er óvirk',
+ 'cant-upload-desc' => 'Ef þú telur að þetta sé í villu, vinsamlegast hafðu samband við starfsfólk',
+ 'cards' => 'Spil',
+ 'cards-view' => 'Torrent Kort Skoða',
+ 'categories' => 'Flokkar',
+ 'category' => 'Flokkur',
+ 'client' => 'Viðskiptavinur',
+ 'commited' => 'Skuldbundinn',
+ 'completed' => 'Lokið',
+ 'completed_at' => 'Lokið á',
+ 'completed-not-seeding' => 'Þú kláraði þetta niðurhals en er ekki lengur að fræsa það',
+ 'created_at' => 'Búið til á',
+ 'credited' => 'Credited',
+ 'current' => 'Núverandi',
+ 'current-filters' => 'Núverandi síur',
+ 'currently-leeching' => 'Nú lekur',
+ 'currently-seeding' => 'Eins og sáning',
+ 'dead-torrent' => 'Dead Torrent',
+ 'dead-torrents' => 'Dead Torrents',
+ 'delete-bookmark' => 'Eyða þessari bókamerki',
+ 'description' => 'Lýsing',
+ 'discounts' => 'Afslættir',
+ 'double-upload' => 'Double Upload',
+ 'download-all' => 'Sækja Allt',
+ 'download-check' => 'Sækja skrá af fjarlægri tölvu',
+ 'downloaded' => 'Niðurhal',
+ 'dying-torrent' => 'Deyja Torrent',
+ 'dying-torrents' => 'Deyjandi Torrents',
+ 'encode-settings' => 'Umrita stillingar',
+ 'estimated-ratio' => 'Áætluð hlutfall eftir Download',
+ 'failed' => 'Mistókst',
+ 'feature' => 'Lögun',
+ 'featured' => 'Valin',
+ 'featured-desc' => 'Valin torrents eru 100% ókeypis og Tvöfaldur upphal!',
+ 'featured-until' => 'Þetta er valin Torrent þangað til',
+ 'file' => 'Skrá',
+ 'filters' => 'Síur',
+ 'fl-tokens-left' => 'Þú hefur : tákn eftir',
+ 'freeleech' => 'Freeleech',
+ 'freeleech-token' => 'Freeleech Token',
+ 'general' => 'Almennt',
+ 'genre' => 'Tegund',
+ 'global-double-upload' => 'Global Hlaða Hlaða',
+ 'global-freeleech' => 'Global Freeleech',
+ 'grant' => 'Grant',
+ 'greater-than' => 'Meiri en',
+ 'grouping' => 'Flokkun',
+ 'groupings' => 'Groupings',
+ 'grouping-categories' => 'Flokkunarflokkar',
'grouping-categories-desc' => 'Hvaða flokk viltu hópa?',
- 'grouping-results' => 'Flokkun niðurstaðna',
- 'groupings-view' => 'Groupings View',
- 'have-completed' => 'Lokið',
- 'have-downloaded' => 'Niðurhal',
- 'have-not-completed' => 'Ekki lokið',
- 'have-not-downloaded' => 'Ekki niðurhlaðið',
- 'health' => 'Heilsa',
- 'history' => 'Saga',
- 'hitrun' => 'H & R?',
- 'hit-and-runs' => 'Hoppa og hlaupa telja',
- 'immune' => 'Ónæmiskerfi?',
- 'info' => 'Upplýsingar',
- 'internal' => 'Innri',
- 'internal-release' => 'Innri útgáfu',
- 'last-seed-activity' => 'Síðasta fræ virkni',
- 'last-seeder' => 'Þú ert síðasta sem eftir er af sæti! (hefur verið hlaðið niður að minnsta kosti 3 sinnum)',
- 'last-update' => 'Síðasta uppfærsla',
- 'leave-tip' => 'Leyfi ábending',
- 'leecher' => 'Leecher',
- 'leechers' => 'Leechers',
- 'leeching' => 'Leeching',
- 'left' => 'Vinstri',
- 'legendary-seeder' => 'Legendary seeder',
- 'legendary-torrent' => 'Legendary torrent',
- 'list' => 'Listi',
- 'me' => 'Ég',
- 'media-info' => 'MediaInfo',
- 'media-info-parser' => 'MediaInfo Parser',
- 'media-info-paste' => 'Líma MediaInfo sorphaugur hér',
- 'meta-desc' => 'Hlaða niður: Nafn á hámarks hraða',
- 'moderation' => 'Moderation',
- 'movies' => 'Kvikmyndir',
- 'mvp' => 'MVP',
- 'my-active-torrents' => 'Virkir straumar mínir',
- 'name' => 'Nafn',
- 'no-bookmarks' => 'Það eru engar bókamerki fundust.',
- 'no-discounts' => 'Eins og engin afslætti',
- 'no-meta' => 'Engar lýsigögn fundust',
- 'no-privileges' => 'Þú getur ekki hlaðið niður þessari skrá - vinsamlegast skoðaðu hér fyrir neðan til að fá meiri upplýsingar',
- 'no-privileges-desc' => 'Vinsamlegast leystu niður árangurslausar niðurstöður hér að ofan til að hlaða niður hnappinum til að birtast',
- 'not-completed' => 'Byrjaði að hlaða niður en aldrei lokið',
- 'not-downloaded' => 'Ekki niðurhlaðið',
- 'old-torrent' => 'Old torrent',
- 'optional' => 'Valfrjálst',
- 'original-output' => 'Sýna / fela upprunalega framleiðsla',
- 'participant' => 'Þátttakandi',
- 'passed' => 'Passed',
- 'peers' => 'Jafningja',
- 'pending' => 'Í bið',
- 'personal-freeleech' => 'Persónuleg Freeleech',
- 'poster' => 'Veggspjald',
- 'poster-view' => 'Vettvangsskjár',
- 'posters' => 'Veggspjöld',
- 'prewarn' => 'Varað við?',
- 'progress' => 'Framfarir',
- 'quick-comment' => 'Fljótur Athugasemd',
- 'quick-tip' => 'Fljótur þjórfé magn',
- 'rated' => 'Hlutfall',
- 'rating' => 'Einkunn',
- 'ready' => 'Þessi skrá er tilbúin til niðurhals',
- 'rejected' => 'Hafnað',
- 'released' => 'Gefin út',
- 'remaining' => 'Eftirstöðvar',
- 'request-reseed' => 'Beiðni endurreist',
- 'requires-reseed' => 'Krefst endurheimt',
- 'resurrections' => 'Upprisanir',
- 'revoke' => 'Afturkalla',
- 'rss' => 'RSS',
- 'runtime' => 'Runtime',
- 'satisfied_in' => 'Ánægður í',
- 'say-thanks' => 'Vinsamlegast mundu að segja takk og fræ eins lengi og þú getur',
- 'sd-content' => 'SD efni',
- 'search' => 'Leita',
- 'seed-time' => 'Seed tími',
- 'seeder' => 'Seeder',
- 'seeders' => 'Seeders',
- 'seeding' => 'Seeding',
- 'seedsize' => 'Seedsize',
- 'seedtime' => 'Seedtime',
- 'short-completed' => 'C',
- 'short-leechs' => 'L',
- 'short-seeds' => 'S',
- 'show-files' => 'Sýna skrár',
- 'similar' => 'Svipaðir Torrents',
- 'size' => 'Stærð',
- 'special' => 'Sérstakur',
- 'special-freeleech' => 'Sérstakur Freeleech',
- 'started' => 'Byrjað',
- 'status' => 'Staða',
- 'statistics' => 'Tölfræði',
- 'stats' => 'Tölfræði',
- 'sticky' => 'Sticky',
- 'stream-optimized' => 'Stream bjartsýni',
- 'subtitle' => 'Texti',
- 'team-player' => 'Liðsmaður',
- 'thank' => 'Þakka þér fyrir',
- 'thanked' => 'Þakka þér',
- 'thanks' => 'Takk',
- 'thanks-given' => 'Takk gefið',
- 'times' => 'Times',
- 'tip-jar' => 'Ábendingartaska',
- 'title' => 'Titill',
- 'titles' => 'Titlar',
- 'top-completed' => 'Top lokið',
- 'top-dead' => 'Top dauður',
- 'top-dying' => 'Efst deyjandi',
- 'top-leeched' => 'Top leeched',
- 'top-seeded' => 'Top seeded',
- 'torrent' => 'Torrent',
- 'torrent-request' => 'Torrent Request',
- 'torrent-tips' => 'Samtals : Samtals BON hefur verið áfengi til sendanda, þar af : notandi er frá þér',
- 'torrent-tips-desc' => 'Þetta verður dregið af lausu bónuspunktunum þínum',
- 'torrents' => 'Torrents',
- 'trailer' => 'Skoða eftirvagn',
- 'type' => 'Tegund',
- 'types' => 'Tegundir',
- 'unbookmark' => 'Óbókamerki',
- 'unsatisfieds' => 'Óánægðir',
- 'unsticky' => 'Óþolinmóð',
- 'updated' => 'Uppfært',
- 'updated_at' => 'Uppfært á',
- 'uploaded' => 'Hlaðið inn',
- 'uploaded-by' => 'Hlaðið upp með',
- 'uploader' => 'Upphlaðari',
- 'use-fl-token' => 'Notaðu Freeleech tákn',
- 'video' => 'Vídeó',
- 'view-more' => 'Sjá meira',
- 'view-trailer' => 'Skoða eftirvagn',
- 'votes' => 'Atkvæði',
+ 'grouping-results' => 'Flokkun niðurstaðna',
+ 'groupings-view' => 'Groupings View',
+ 'have-completed' => 'Lokið',
+ 'have-downloaded' => 'Niðurhal',
+ 'have-not-completed' => 'Ekki lokið',
+ 'have-not-downloaded' => 'Ekki niðurhlaðið',
+ 'health' => 'Heilsa',
+ 'history' => 'Saga',
+ 'hitrun' => 'H & R?',
+ 'hit-and-runs' => 'Hoppa og hlaupa telja',
+ 'immune' => 'Ónæmiskerfi?',
+ 'info' => 'Upplýsingar',
+ 'internal' => 'Innri',
+ 'internal-release' => 'Innri útgáfu',
+ 'last-seed-activity' => 'Síðasta fræ virkni',
+ 'last-seeder' => 'Þú ert síðasta sem eftir er af sæti! (hefur verið hlaðið niður að minnsta kosti 3 sinnum)',
+ 'last-update' => 'Síðasta uppfærsla',
+ 'leave-tip' => 'Leyfi ábending',
+ 'leecher' => 'Leecher',
+ 'leechers' => 'Leechers',
+ 'leeching' => 'Leeching',
+ 'left' => 'Vinstri',
+ 'legendary-seeder' => 'Legendary seeder',
+ 'legendary-torrent' => 'Legendary torrent',
+ 'list' => 'Listi',
+ 'me' => 'Ég',
+ 'media-info' => 'MediaInfo',
+ 'media-info-parser' => 'MediaInfo Parser',
+ 'media-info-paste' => 'Líma MediaInfo sorphaugur hér',
+ 'meta-desc' => 'Hlaða niður: Nafn á hámarks hraða',
+ 'moderation' => 'Moderation',
+ 'movies' => 'Kvikmyndir',
+ 'mvp' => 'MVP',
+ 'my-active-torrents' => 'Virkir straumar mínir',
+ 'name' => 'Nafn',
+ 'no-bookmarks' => 'Það eru engar bókamerki fundust.',
+ 'no-discounts' => 'Eins og engin afslætti',
+ 'no-meta' => 'Engar lýsigögn fundust',
+ 'no-privileges' => 'Þú getur ekki hlaðið niður þessari skrá - vinsamlegast skoðaðu hér fyrir neðan til að fá meiri upplýsingar',
+ 'no-privileges-desc' => 'Vinsamlegast leystu niður árangurslausar niðurstöður hér að ofan til að hlaða niður hnappinum til að birtast',
+ 'not-completed' => 'Byrjaði að hlaða niður en aldrei lokið',
+ 'not-downloaded' => 'Ekki niðurhlaðið',
+ 'old-torrent' => 'Old torrent',
+ 'optional' => 'Valfrjálst',
+ 'original-output' => 'Sýna / fela upprunalega framleiðsla',
+ 'participant' => 'Þátttakandi',
+ 'passed' => 'Passed',
+ 'peers' => 'Jafningja',
+ 'pending' => 'Í bið',
+ 'personal-freeleech' => 'Persónuleg Freeleech',
+ 'poster' => 'Veggspjald',
+ 'poster-view' => 'Vettvangsskjár',
+ 'posters' => 'Veggspjöld',
+ 'prewarn' => 'Varað við?',
+ 'progress' => 'Framfarir',
+ 'quick-comment' => 'Fljótur Athugasemd',
+ 'quick-tip' => 'Fljótur þjórfé magn',
+ 'rated' => 'Hlutfall',
+ 'rating' => 'Einkunn',
+ 'ready' => 'Þessi skrá er tilbúin til niðurhals',
+ 'rejected' => 'Hafnað',
+ 'released' => 'Gefin út',
+ 'remaining' => 'Eftirstöðvar',
+ 'request-reseed' => 'Beiðni endurreist',
+ 'requires-reseed' => 'Krefst endurheimt',
+ 'resurrections' => 'Upprisanir',
+ 'revoke' => 'Afturkalla',
+ 'rss' => 'RSS',
+ 'runtime' => 'Runtime',
+ 'satisfied_in' => 'Ánægður í',
+ 'say-thanks' => 'Vinsamlegast mundu að segja takk og fræ eins lengi og þú getur',
+ 'sd-content' => 'SD efni',
+ 'search' => 'Leita',
+ 'seed-time' => 'Seed tími',
+ 'seeder' => 'Seeder',
+ 'seeders' => 'Seeders',
+ 'seeding' => 'Seeding',
+ 'seedsize' => 'Seedsize',
+ 'seedtime' => 'Seedtime',
+ 'short-completed' => 'C',
+ 'short-leechs' => 'L',
+ 'short-seeds' => 'S',
+ 'show-files' => 'Sýna skrár',
+ 'similar' => 'Svipaðir Torrents',
+ 'size' => 'Stærð',
+ 'special' => 'Sérstakur',
+ 'special-freeleech' => 'Sérstakur Freeleech',
+ 'started' => 'Byrjað',
+ 'status' => 'Staða',
+ 'statistics' => 'Tölfræði',
+ 'stats' => 'Tölfræði',
+ 'sticky' => 'Sticky',
+ 'stream-optimized' => 'Stream bjartsýni',
+ 'subtitle' => 'Texti',
+ 'team-player' => 'Liðsmaður',
+ 'thank' => 'Þakka þér fyrir',
+ 'thanked' => 'Þakka þér',
+ 'thanks' => 'Takk',
+ 'thanks-given' => 'Takk gefið',
+ 'times' => 'Times',
+ 'tip-jar' => 'Ábendingartaska',
+ 'title' => 'Titill',
+ 'titles' => 'Titlar',
+ 'top-completed' => 'Top lokið',
+ 'top-dead' => 'Top dauður',
+ 'top-dying' => 'Efst deyjandi',
+ 'top-leeched' => 'Top leeched',
+ 'top-seeded' => 'Top seeded',
+ 'torrent' => 'Torrent',
+ 'torrent-request' => 'Torrent Request',
+ 'torrent-tips' => 'Samtals : Samtals BON hefur verið áfengi til sendanda, þar af : notandi er frá þér',
+ 'torrent-tips-desc' => 'Þetta verður dregið af lausu bónuspunktunum þínum',
+ 'torrents' => 'Torrents',
+ 'trailer' => 'Skoða eftirvagn',
+ 'type' => 'Tegund',
+ 'types' => 'Tegundir',
+ 'unbookmark' => 'Óbókamerki',
+ 'unsatisfieds' => 'Óánægðir',
+ 'unsticky' => 'Óþolinmóð',
+ 'updated' => 'Uppfært',
+ 'updated_at' => 'Uppfært á',
+ 'uploaded' => 'Hlaðið inn',
+ 'uploaded-by' => 'Hlaðið upp með',
+ 'uploader' => 'Upphlaðari',
+ 'use-fl-token' => 'Notaðu Freeleech tákn',
+ 'video' => 'Vídeó',
+ 'view-more' => 'Sjá meira',
+ 'view-trailer' => 'Skoða eftirvagn',
+ 'votes' => 'Atkvæði',
];
diff --git a/lang/is/user.php b/lang/is/user.php
index 432f7c65c..1d28c0427 100644
--- a/lang/is/user.php
+++ b/lang/is/user.php
@@ -12,316 +12,316 @@
*/
return [
- 'about' => 'Um',
- 'about-me' => 'Um mig',
- 'accepted-at' => 'Samþykkt á',
- 'accepted-by' => 'Samþykkt af',
- 'account-notification' => 'Tilkynningar um reikninga',
- 'account-notification-follow' => 'Fáðu tilkynningu þegar notandi fylgir reikningnum þínum',
- 'account-notification-unfollow' => 'Fáðu tilkynningu þegar notandi fylgir reikningnum þínum',
- 'account-notification-help' => 'Stjórna hvaða tilkynningar eru sendar varðandi reikninginn þinn. Þessar stillingar eru brotnar ef þú leyfir ekki hópum að senda tilkynningar varðandi reikninginn þinn eða ef þú slökkva á tilkynningum',
- 'account-settings' => 'Reikningsstillingar',
- 'achievement-privacy' => 'Árangur stillingar',
- 'achievement-privacy-list' => 'Leyfa notendum að skoða lista yfir árangur þinn',
- 'achievement-help' => 'Stjórna samnýtingu tiltekinna náms tengdar upplýsingar með hópum sem hafa aðgang að prófílnum þínum. Þessar stillingar eru útrýmt ef þú leyfir ekki neinum hópum að fá aðgang að árangri þínum eða ef þú ferð í einkaeign',
- 'achievements' => 'Árangur',
- 'active' => 'Virkur',
- 'active-table' => 'Virkur borð mitt',
- 'active-torrents' => 'Virkir straumar',
- 'active-warning' => 'Virk viðvörun',
- 'active-warnings' => 'Virkar viðvaranir',
- 'add-seedbox' => 'Bæta við Seedbox',
- 'all-torrents' => 'Allir Torrents',
- 'article-comments' => 'Greinar Athugasemdir gerðar',
- 'avatar' => 'Avatar',
- 'avg-seedtime' => 'Meðaltal fræartími',
- 'badges' => 'Merkin',
- 'ban' => 'Ban Notandi',
- 'ban-log' => 'Bannlista',
- 'become-hidden' => 'Verða falinn',
- 'become-visible' => 'Verða sýnileg',
- 'bon' => 'BON',
- 'bon-notification' => 'BON tilkynningastillingar',
- 'bon-notification-gift' => 'Fáðu tilkynningu þegar notandi gefur þér bónus',
- 'bon-notification-help' => 'Stjórna hvaða tilkynningar eru sendar varðandi BON-viðskipti. Þessar stillingar eru brotnar ef þú leyfir ekki hópum að senda tilkynningar varðandi BON eða ef þú slökkva á tilkynningum',
- 'bookmarks' => 'Bókamerki',
- 'bounty-given' => 'Bounty Given',
- 'bounty-received' => 'Bounty Received',
- 'can-chat' => 'Getur spjallað',
- 'can-comment' => 'Getur skrifað ummæli',
- 'can-download' => 'Get Download',
- 'can-invite' => 'Getur boðið',
- 'can-request' => 'Getur óskað eftir',
- 'can-upload' => 'Geta hlaðið upp',
- 'certified-banker' => 'Löggiltur bankastjóri',
- 'certified-banker-desc' => 'Hefur 50.000 eða meira Bón í banka',
- 'certified-downloader' => 'Certified Downloader',
- 'certified-downloader-desc' => 'Niðurhal 100 eða fleiri Torrents!',
- 'certified-seeder' => 'Vottuð sæti',
- 'certified-seeder-desc' => 'Seeding 150 Eða fleiri Torrents!',
- 'change-email' => 'Breyta tölvupósti',
- 'change-email-help' => 'Þú verður að staðfesta reikninginn þinn aftur eftir að þú hefur breytt tölvupóstinum þínum',
- 'change-password' => 'Breyta lykilorði',
- 'change-password-help' => 'Þú verður að skrá þig inn aftur, eftir að þú hefur breytt lykilorðinu þínu',
- 'client-ip-address' => 'Viðskiptavinur IP-tölu',
- 'code' => 'Kóði',
- 'comments' => 'Athugasemdir',
- 'created-on' => 'Búið til á',
- 'credited-download' => 'Credited niðurhal',
- 'credited-upload' => 'Credited Upload',
- 'current-password' => 'Núverandi lykilorð',
- 'custom-title' => 'Sérsniðin titill',
- 'delete' => 'Eyða notanda',
- 'disable-notifications' => 'Slökktu á tilkynningum',
- 'disclaimer' => 'Fyrirvari',
- 'disclaimer-info' => 'Við notum sjálfgefið ekki notendur IP tölur eins og flestir rekja spor einhvers. Með því að bæta fræhólfið þitt hér að neðan er gert ráð fyrir að þú veist að IP tölurnar þínar, sem skráð eru hér að neðan, eru nú geymdar í gagnagrunninum nema þú eyðir skrám.',
- 'disclaimer-info-bordered' => 'Seedbox IPs bætt við mun þá kveikja hár hraði straumur tag á torrents seeded frá IPs skráð hér að neðan',
- 'download-bon' => 'Niðurhal fjarlægð frá BON Store',
- 'download-recorded' => 'Skráð niðurhal',
- 'download-true' => 'True Download',
- 'downloads' => 'Niðurhal',
- 'edit' => 'Breyta notanda',
- 'edit-profile' => 'Breyta prófíl',
- 'enable-notifications' => 'Virkja tilkynningar',
- 'expired' => 'Útrunnið',
- 'expires-on' => 'Rennur út á',
- 'extra' => 'Auka',
- 'filled-request' => 'Fylltir meðlimir',
- 'follow' => 'Fylgja',
- 'follower-privacy' => 'Fylgjast með stillingum',
- 'follower-privacy-list' => 'Leyfa notendum að skoða lista yfir fylgjendur þínar',
- 'follower-help' => 'Stjórna samnýtingu tiltekinna fylgistengdra upplýsinga með hópum sem hafa aðgang að prófílnum þínum. Þessar stillingar eru brotnar ef þú leyfir ekki neinum hópum að opna fylgjendur þínar eða ef þú ferð í einkaaðila',
- 'followers' => 'Fylgjendur',
- 'following-notification' => 'Fylgt eftir notendaskilaboðum',
- 'following-notification-upload' => 'Fáðu tilkynningu þegar eftirfylgjandi notandi hleður upp straumi',
- 'following-notification-help' => 'Stjórna hvaða tilkynningar eru sendar varðandi aðgerðir sem gerðar eru til notenda á staðnum. Þessar stillingar eru brotnar af ef þú leyfir ekki einhverjum hópum að senda tilkynningar varðandi eftirfylgjandi notendur eða ef þú slökkva á tilkynningum',
- 'formats-are-supported' => ': snið eru studd',
- 'forum-notification' => 'Spjallstillingastillingar',
- 'forum-notification-topic' => 'Fá tilkynningu þegar efni sem þú byrjaðir fær nýtt færslu',
- 'forum-notification-help' => 'Stjórna hvaða tilkynningar eru sendar um vettvangsviðskipti. Þessar stillingar eru brotnar af ef þú leyfir ekki neinum hópum að senda tilkynningar um vettvangsviðskipti eða ef þú slökkva á tilkynningum',
- 'forum-privacy' => 'Forum Settings',
- 'forum-privacy-post' => 'Leyfa notendum að skoða lista yfir umræður sem þú hefur sent inn',
- 'forum-privacy-topic' => 'Leyfa notendum að skoða lista yfir umræðuefni sem þú hefur byrjað',
- 'forum-help' => 'Stjórna samnýtingu tiltekinna vettvangs tengdar tölfræði og upplýsingar með hópum sem hafa aðgang að prófílnum þínum. Þessar stillingar eru brotnar ef þú leyfir ekki neinum hópum að komast í vettvangsupplýsingar þínar og upplýsingar eða ef þú ferð í einkaaðila',
- 'forum-signature' => 'Forum undirskrift',
- 'forums' => 'Málþing',
- 'general' => 'Almennt',
- 'general-settings' => 'Almennar stillingar',
- 'gift-given' => 'Gjöf gefið',
- 'gift-received' => 'Gjafabréf móttekin',
- 'go-public' => 'Farðu opinberlega',
- 'go-private' => 'Farðu í einkaeign',
- 'history' => 'Saga',
- 'history-table' => 'Saga Taflan mín',
- 'hit-n-runs' => 'Högg og keyrir',
- 'hit-n-runs-count' => 'Hit og Run Count (All Time)',
- 'hit-n-runs-history' => 'Torrent högg og rekur sögu',
- 'image' => 'Mynd',
- 'important' => 'Mikilvægt',
- 'important-info' => 'Mikilvægar upplýsingar',
- 'information' => 'Upplýsingar',
- 'invite-friend' => 'Bjóddu vini þínum (Email + Message Required)',
- 'invite-tree' => 'Bjóddu Tree',
- 'invites' => 'Biður',
- 'invites-banned' => 'Villa: Boðunarrétturinn þinn hefur verið óvirkur',
- 'invites-banned-desc' => 'Ef þú telur að þetta sé í villu, vinsamlegast hafðu samband við starfsfólk!',
- 'invites-count' => 'Þú hefur: telja bjóðið tákn',
- 'invites-disabled' => 'Athygli: Bjóðir eru óvirkir vegna þess að opna skráningu!',
- 'invites-disabled-desc' => 'Vinsamlegast athugaðu aftur fljótlega!',
- 'invites-rules' => '- Bjóddu aðeins fólki sem þú þekkir og treystir.
- Þú verður haldið persónulega ábyrgð á þeim sem þú býður.
- Dont bjóða þér, við athuga alla boðið notanda.
- Ekki versla eða selja boð.
- Ef maður sem þú bauð er veiddur að svindla, viðskiptareikning eða selja / viðskipti býður, verður þú að vera varað.
',
- 'invites-send' => 'Bjóðir Senda',
- 'last-login' => 'Síðasta innskráning',
- 'locked' => 'Læst',
- 'locked-achievements' => 'Læst afrek',
- 'member-since' => 'Meðlimur síðan',
- 'members-desc' => 'Listi yfir notendur sem skráðir eru á: Titill með öllum hópum. Finndu notanda núna.',
- 'mention-notification' => '@ Tilkynning um tilkynningastillingar',
+ 'about' => 'Um',
+ 'about-me' => 'Um mig',
+ 'accepted-at' => 'Samþykkt á',
+ 'accepted-by' => 'Samþykkt af',
+ 'account-notification' => 'Tilkynningar um reikninga',
+ 'account-notification-follow' => 'Fáðu tilkynningu þegar notandi fylgir reikningnum þínum',
+ 'account-notification-unfollow' => 'Fáðu tilkynningu þegar notandi fylgir reikningnum þínum',
+ 'account-notification-help' => 'Stjórna hvaða tilkynningar eru sendar varðandi reikninginn þinn. Þessar stillingar eru brotnar ef þú leyfir ekki hópum að senda tilkynningar varðandi reikninginn þinn eða ef þú slökkva á tilkynningum',
+ 'account-settings' => 'Reikningsstillingar',
+ 'achievement-privacy' => 'Árangur stillingar',
+ 'achievement-privacy-list' => 'Leyfa notendum að skoða lista yfir árangur þinn',
+ 'achievement-help' => 'Stjórna samnýtingu tiltekinna náms tengdar upplýsingar með hópum sem hafa aðgang að prófílnum þínum. Þessar stillingar eru útrýmt ef þú leyfir ekki neinum hópum að fá aðgang að árangri þínum eða ef þú ferð í einkaeign',
+ 'achievements' => 'Árangur',
+ 'active' => 'Virkur',
+ 'active-table' => 'Virkur borð mitt',
+ 'active-torrents' => 'Virkir straumar',
+ 'active-warning' => 'Virk viðvörun',
+ 'active-warnings' => 'Virkar viðvaranir',
+ 'add-seedbox' => 'Bæta við Seedbox',
+ 'all-torrents' => 'Allir Torrents',
+ 'article-comments' => 'Greinar Athugasemdir gerðar',
+ 'avatar' => 'Avatar',
+ 'avg-seedtime' => 'Meðaltal fræartími',
+ 'badges' => 'Merkin',
+ 'ban' => 'Ban Notandi',
+ 'ban-log' => 'Bannlista',
+ 'become-hidden' => 'Verða falinn',
+ 'become-visible' => 'Verða sýnileg',
+ 'bon' => 'BON',
+ 'bon-notification' => 'BON tilkynningastillingar',
+ 'bon-notification-gift' => 'Fáðu tilkynningu þegar notandi gefur þér bónus',
+ 'bon-notification-help' => 'Stjórna hvaða tilkynningar eru sendar varðandi BON-viðskipti. Þessar stillingar eru brotnar ef þú leyfir ekki hópum að senda tilkynningar varðandi BON eða ef þú slökkva á tilkynningum',
+ 'bookmarks' => 'Bókamerki',
+ 'bounty-given' => 'Bounty Given',
+ 'bounty-received' => 'Bounty Received',
+ 'can-chat' => 'Getur spjallað',
+ 'can-comment' => 'Getur skrifað ummæli',
+ 'can-download' => 'Get Download',
+ 'can-invite' => 'Getur boðið',
+ 'can-request' => 'Getur óskað eftir',
+ 'can-upload' => 'Geta hlaðið upp',
+ 'certified-banker' => 'Löggiltur bankastjóri',
+ 'certified-banker-desc' => 'Hefur 50.000 eða meira Bón í banka',
+ 'certified-downloader' => 'Certified Downloader',
+ 'certified-downloader-desc' => 'Niðurhal 100 eða fleiri Torrents!',
+ 'certified-seeder' => 'Vottuð sæti',
+ 'certified-seeder-desc' => 'Seeding 150 Eða fleiri Torrents!',
+ 'change-email' => 'Breyta tölvupósti',
+ 'change-email-help' => 'Þú verður að staðfesta reikninginn þinn aftur eftir að þú hefur breytt tölvupóstinum þínum',
+ 'change-password' => 'Breyta lykilorði',
+ 'change-password-help' => 'Þú verður að skrá þig inn aftur, eftir að þú hefur breytt lykilorðinu þínu',
+ 'client-ip-address' => 'Viðskiptavinur IP-tölu',
+ 'code' => 'Kóði',
+ 'comments' => 'Athugasemdir',
+ 'created-on' => 'Búið til á',
+ 'credited-download' => 'Credited niðurhal',
+ 'credited-upload' => 'Credited Upload',
+ 'current-password' => 'Núverandi lykilorð',
+ 'custom-title' => 'Sérsniðin titill',
+ 'delete' => 'Eyða notanda',
+ 'disable-notifications' => 'Slökktu á tilkynningum',
+ 'disclaimer' => 'Fyrirvari',
+ 'disclaimer-info' => 'Við notum sjálfgefið ekki notendur IP tölur eins og flestir rekja spor einhvers. Með því að bæta fræhólfið þitt hér að neðan er gert ráð fyrir að þú veist að IP tölurnar þínar, sem skráð eru hér að neðan, eru nú geymdar í gagnagrunninum nema þú eyðir skrám.',
+ 'disclaimer-info-bordered' => 'Seedbox IPs bætt við mun þá kveikja hár hraði straumur tag á torrents seeded frá IPs skráð hér að neðan',
+ 'download-bon' => 'Niðurhal fjarlægð frá BON Store',
+ 'download-recorded' => 'Skráð niðurhal',
+ 'download-true' => 'True Download',
+ 'downloads' => 'Niðurhal',
+ 'edit' => 'Breyta notanda',
+ 'edit-profile' => 'Breyta prófíl',
+ 'enable-notifications' => 'Virkja tilkynningar',
+ 'expired' => 'Útrunnið',
+ 'expires-on' => 'Rennur út á',
+ 'extra' => 'Auka',
+ 'filled-request' => 'Fylltir meðlimir',
+ 'follow' => 'Fylgja',
+ 'follower-privacy' => 'Fylgjast með stillingum',
+ 'follower-privacy-list' => 'Leyfa notendum að skoða lista yfir fylgjendur þínar',
+ 'follower-help' => 'Stjórna samnýtingu tiltekinna fylgistengdra upplýsinga með hópum sem hafa aðgang að prófílnum þínum. Þessar stillingar eru brotnar ef þú leyfir ekki neinum hópum að opna fylgjendur þínar eða ef þú ferð í einkaaðila',
+ 'followers' => 'Fylgjendur',
+ 'following-notification' => 'Fylgt eftir notendaskilaboðum',
+ 'following-notification-upload' => 'Fáðu tilkynningu þegar eftirfylgjandi notandi hleður upp straumi',
+ 'following-notification-help' => 'Stjórna hvaða tilkynningar eru sendar varðandi aðgerðir sem gerðar eru til notenda á staðnum. Þessar stillingar eru brotnar af ef þú leyfir ekki einhverjum hópum að senda tilkynningar varðandi eftirfylgjandi notendur eða ef þú slökkva á tilkynningum',
+ 'formats-are-supported' => ': snið eru studd',
+ 'forum-notification' => 'Spjallstillingastillingar',
+ 'forum-notification-topic' => 'Fá tilkynningu þegar efni sem þú byrjaðir fær nýtt færslu',
+ 'forum-notification-help' => 'Stjórna hvaða tilkynningar eru sendar um vettvangsviðskipti. Þessar stillingar eru brotnar af ef þú leyfir ekki neinum hópum að senda tilkynningar um vettvangsviðskipti eða ef þú slökkva á tilkynningum',
+ 'forum-privacy' => 'Forum Settings',
+ 'forum-privacy-post' => 'Leyfa notendum að skoða lista yfir umræður sem þú hefur sent inn',
+ 'forum-privacy-topic' => 'Leyfa notendum að skoða lista yfir umræðuefni sem þú hefur byrjað',
+ 'forum-help' => 'Stjórna samnýtingu tiltekinna vettvangs tengdar tölfræði og upplýsingar með hópum sem hafa aðgang að prófílnum þínum. Þessar stillingar eru brotnar ef þú leyfir ekki neinum hópum að komast í vettvangsupplýsingar þínar og upplýsingar eða ef þú ferð í einkaaðila',
+ 'forum-signature' => 'Forum undirskrift',
+ 'forums' => 'Málþing',
+ 'general' => 'Almennt',
+ 'general-settings' => 'Almennar stillingar',
+ 'gift-given' => 'Gjöf gefið',
+ 'gift-received' => 'Gjafabréf móttekin',
+ 'go-public' => 'Farðu opinberlega',
+ 'go-private' => 'Farðu í einkaeign',
+ 'history' => 'Saga',
+ 'history-table' => 'Saga Taflan mín',
+ 'hit-n-runs' => 'Högg og keyrir',
+ 'hit-n-runs-count' => 'Hit og Run Count (All Time)',
+ 'hit-n-runs-history' => 'Torrent högg og rekur sögu',
+ 'image' => 'Mynd',
+ 'important' => 'Mikilvægt',
+ 'important-info' => 'Mikilvægar upplýsingar',
+ 'information' => 'Upplýsingar',
+ 'invite-friend' => 'Bjóddu vini þínum (Email + Message Required)',
+ 'invite-tree' => 'Bjóddu Tree',
+ 'invites' => 'Biður',
+ 'invites-banned' => 'Villa: Boðunarrétturinn þinn hefur verið óvirkur',
+ 'invites-banned-desc' => 'Ef þú telur að þetta sé í villu, vinsamlegast hafðu samband við starfsfólk!',
+ 'invites-count' => 'Þú hefur: telja bjóðið tákn',
+ 'invites-disabled' => 'Athygli: Bjóðir eru óvirkir vegna þess að opna skráningu!',
+ 'invites-disabled-desc' => 'Vinsamlegast athugaðu aftur fljótlega!',
+ 'invites-rules' => '- Bjóddu aðeins fólki sem þú þekkir og treystir.
- Þú verður haldið persónulega ábyrgð á þeim sem þú býður.
- Dont bjóða þér, við athuga alla boðið notanda.
- Ekki versla eða selja boð.
- Ef maður sem þú bauð er veiddur að svindla, viðskiptareikning eða selja / viðskipti býður, verður þú að vera varað.
',
+ 'invites-send' => 'Bjóðir Senda',
+ 'last-login' => 'Síðasta innskráning',
+ 'locked' => 'Læst',
+ 'locked-achievements' => 'Læst afrek',
+ 'member-since' => 'Meðlimur síðan',
+ 'members-desc' => 'Listi yfir notendur sem skráðir eru á: Titill með öllum hópum. Finndu notanda núna.',
+ 'mention-notification' => '@ Tilkynning um tilkynningastillingar',
'mention-notification-article-comment' => 'Fáðu tilkynningu þegar þú ert @mentioned í grein ummæli',
'mention-notification-torrent-comment' => 'Fá tilkynningu þegar þú ert @mentioned í torrent athugasemd',
'mention-notification-request-comment' => 'Fá tilkynningu þegar þú ert @mentioned í beiðni um athugasemd',
- 'mention-notification-forum-post' => 'Fáðu tilkynningu þegar þú ert @mentioned á vettvangsstöðu',
- 'mention-notification-help' => 'Stjórna hvaða tilkynningar eru sendar þegar notandi @urboðar þig. Þessar stillingar eru brotnar ef þú leyfir ekki neinum hópum að senda tilkynningar ef notandi @mentions þú eða ef þú slökkva á tilkynningum',
- 'moderated-by' => 'Miðað við: mod á',
- 'my-bonus-points' => 'Bónus stig mín',
- 'my-bookmarks' => 'Bókamerki mín',
- 'my-fl-tokens' => 'FL táknin mín',
- 'my-general-settings' => 'Almennar stillingar mínir',
- 'my-notification' => 'Tilkynning mín',
- 'my-notification-settings' => 'Tilkynningarstillingar mínir',
- 'my-privacy' => 'Persónuvernd mín',
- 'my-privacy-settings' => 'Persónuverndarstillingar mínir',
- 'my-profile' => 'Prófílinn minn',
- 'my-requested' => 'Ég óskaði eftir',
- 'my-security' => 'Öryggi mín',
- 'my-security-settings' => 'Öryggisstillingar mínir',
- 'my-seedboxes' => 'Seedboxes mínir',
- 'my-settings' => 'Stillingar mínir',
- 'my-wishlist' => 'Óskalisti minn',
- 'no-logs' => 'Það eru engar boðskrár í gagnagrunninum fyrir þennan notanda!',
- 'no-seedboxes' => 'Engar frækjur 😔',
- 'not-authorized' => 'Þú hefur ekki leyfi til að skoða þessa síðu. Þessi félagi kýs að vera falinn eins og ninja!',
- 'note' => 'Athugaðu',
- 'notification' => 'Tilkynning',
- 'notification-settings' => 'Tilkynningastillingar',
- 'notification-from-account' => 'Fáðu reikningsskil frá',
- 'notification-from-account-help' => 'Þú færð aðeins reikningstilkynningar frá kerfinu, starfsfólki og eftirfarandi hópum. Þessar stillingar eru brotnar ef þú slekkur á tilkynningum',
- 'notification-from-bon' => 'Fáðu BON tilkynningar frá',
- 'notification-from-bon-help' => 'Þú færð aðeins BON tilkynningar frá kerfinu, starfsmönnum og eftirfarandi hópum. Þessar stillingar eru brotnar ef þú slekkur á tilkynningum',
- 'notification-from-following' => 'Fáðu fylgd notendaskilaboð frá',
- 'notification-from-following-help' => 'Þú færð aðeins eftirfarandi notendaskilaboð frá eftirfarandi hópum. Þessar stillingar eru brotnar ef þú slekkur á tilkynningum',
- 'notification-from-forum' => 'Fáðu tilkynningar frá Forum frá',
- 'notification-from-forum-help' => 'Þú færð aðeins skilaboð frá vettvangi kerfisins, starfsmanna og eftirfarandi hópa. Þessar stillingar eru brotnar ef þú slekkur á tilkynningum',
- 'notification-from-subscription' => 'Fá tilkynningar um áskrift frá',
- 'notification-from-subscription-help' => 'Þú færð aðeins skilaboð frá vettvangi kerfisins, starfsmanna og eftirfarandi hópa. Þessar stillingar eru brotnar ef þú slekkur á tilkynningum',
- 'notification-from-torrent' => 'Fáðu Torrent tilkynningar frá',
- 'notification-from-torrent-help' => 'Þú færð aðeins straumar tilkynningar frá kerfinu, starfsmönnum og eftirfarandi hópum. Þessar stillingar eru brotnar ef þú slekkur á tilkynningum',
- 'notification-from-mention' => 'Móttaka tilkynningar frá',
- 'notification-from-mention-help' => 'Þú færð aðeins @mention tilkynningar frá kerfinu, starfsfólki og eftirfarandi hópum. Þessar stillingar eru brotnar ef þú slekkur á tilkynningum',
- 'notification-from-request' => 'Fáðu beiðni um tilkynningar frá',
- 'notification-from-request-help' => 'Þú færð aðeins beiðni tilkynningar frá kerfinu, starfsmönnum og eftirfarandi hópum. Þessar stillingar eru brotnar ef þú slekkur á tilkynningum',
- 'notifications' => 'Tilkynningar',
- 'offline' => 'Notandi er ótengdur!',
- 'online' => 'Notandi er á netinu!',
- 'options' => 'Valkostir',
- 'other-help' => 'Stjórna miðlun annarra tölfræði og upplýsinga með hópum sem hafa aðgang að prófílnum þínum. Þessar stillingar eru brotnar ef þú leyfir ekki öllum hópum að fá aðgang að öðrum tölfræði þinni og upplýsingum eða ef þú ferð í einkaaðila',
- 'other-privacy' => 'Aðrar stillingar',
- 'other-privacy-online' => 'Leyfa notendum að sjá þig í netnotendaheimilinu',
- 'passkey' => 'PID',
- 'passkey-warning' => 'PID er eins og lykilorðið þitt, þú verður að halda því örugglega!',
- 'pending-achievements' => 'Vonandi árangur',
- 'per-torrent' => 'Per Torrent',
- 'posts' => 'Innlegg',
- 'posts-posted' => 'Forum Posts Sent',
- 'privacy' => 'Persónuvernd',
- 'privacy-settings' => 'Öryggisstillingar',
- 'private-info' => 'Einkamál',
- 'private-forum-profile' => 'Athygli: Þessi meðlimur Topic & Post History hefur verið sett til einka!',
- 'private-profile' => 'Athygli: Þessi prófíll hefur verið settur til einka!',
- 'profile' => 'Prófíll',
- 'profile-desc' => 'Notandi: notendaprófíll skráð á: titil',
- 'profile-privacy' => 'Prófstillingar',
- 'profile-privacy-torrent-count' => 'Deila heildarfjölda niðurhala, upphleðslu, fræja og blóðsykurs',
- 'profile-privacy-torrent-ratio' => 'Deildu heildarupphala / hlaða niður gögnum ásamt skráðum hlutföllum',
- 'profile-privacy-torrent-seed' => 'Deila heildar sáningartíma þínum og meðaltali',
- 'profile-privacy-title' => 'Deila persónulegum titilupplýsingum þínum',
- 'profile-privacy-about' => 'Deila persónulegum upplýsingum um mig',
- 'profile-privacy-bon-extra' => 'Deila BON tölfræði þinni',
- 'profile-privacy-comment-extra' => 'Deila tölfræði um athugasemdir þínar',
- 'profile-privacy-forum-extra' => 'Deila vettvangsstöðu þinni',
- 'profile-privacy-request-extra' => 'Deila beiðnistölunni þinni',
- 'profile-privacy-torrent-extra' => 'Deila straumsstöðu þinni',
- 'profile-privacy-badge' => 'Deila ávöxtunarkostum þínum',
- 'profile-privacy-achievement' => 'Deila nýlegum árangri þínum',
- 'profile-privacy-follower' => 'Deila nýlegum fylgjendum þínum',
- 'profile-privacy-warning' => 'Deila H & R viðvörunum þínum',
- 'profile-privacy-help' => 'Stjórna hvaða tölfræði og upplýsingar birtast á prófílnum þínum. Þessar stillingar eru brotnar af ef þú leyfir ekki neinum hópum að fá aðgang að prófílnum þínum eða ef þú ert að fara í einkaaðila',
- 'public-info' => 'Almennar upplýsingar',
- 'recent-achievements' => 'Nýlegar afrek',
- 'recent-followers' => 'Nýlegar fylgjendur',
- 'registration-date' => 'Skráningar dagur',
- 'report' => 'Skýrsla',
- 'request-help' => 'Stjórna hlutdeild tiltekinnar beiðni sem tengist tölfræði og upplýsingum með hópum sem hafa aðgang að prófílnum þínum. Þessar stillingar eru brotnar niður ef þú leyfir ekki öllum hópum að fá aðgang að viðkomandi tölfræði þinni og upplýsingum eða ef þú ert að fara í einkaaðila',
- 'request' => 'Beiðni',
- 'requested' => 'Óskað eftir',
- 'requests' => 'Beiðnir',
- 'request-comments' => 'Beiðni um athugasemdir gerðar',
- 'request-notification' => 'Beiðni um tilkynningu',
- 'request-notification-bounty' => 'Fá tilkynningu þegar óskað straumur fær nýtt fé',
- 'request-notification-comment' => 'Fá tilkynningu þegar óskað straumur fær nýjan athugasemd',
- 'request-notification-fill' => 'Fá tilkynningu þegar óskað straumur verður fyllt',
- 'request-notification-fill-approve' => 'Fáðu tilkynningu þegar óskað er að fylgjast með straumvælum',
- 'request-notification-fill-reject' => 'Fá tilkynningu þegar óskað er að fylla út beiðni',
- 'request-notification-claim' => 'Fáðu tilkynningu þegar óskað er eftir því sem krafist er',
- 'request-notification-unclaim' => 'Fáðu tilkynningu þegar óskað er eftir því sem óskað er eftir',
- 'request-notification-help' => 'Stjórna hvaða tilkynningar eru sendar varðandi beiðni um starfsemi. Þessar stillingar eru brotnar af ef þú leyfir ekki hópum að senda tilkynningar varðandi beiðni um starfsemi eða ef þú slökkva á tilkynningum',
- 'request-privacy' => 'Beiðni Stillingar',
- 'request-privacy-requested' => 'Leyfa notendum að skoða lista yfir beiðnir sem þú hefur gert',
- 'reset-passkey' => 'Endurstilla lykilorð (PID)',
- 'reset-passkey-help' => 'Þú verður að endurhlaða / endurhlaða öllum virkum straumum þínum, eftir að þú hefur endurstillt PID',
- 'reset-rss' => 'Endurstilla RSS lykill (RID)',
- 'reset-rss-help' => 'Þú verður að endurhlaða alla virka RSS straumana þína, eftir að þú hefur endurstillt RID',
- 'resurrections' => 'Upprisanir',
- 'search' => 'Flýtileit með notendanafni',
- 'security' => 'Öryggi',
- 'security-settings' => 'Öryggisstillingar',
- 'seedboxes' => 'Seedboxes',
- 'seeds' => 'Fræ',
- 'send-invite' => 'Senda Bjóddu',
- 'sender' => 'Sendandi',
- 'settings' => 'Stillingar',
- 'show-passkey' => 'Sýna PID',
- 'staff-noted' => 'Starfsfólk skráð reikningur',
- 'statistics' => 'Tölfræði',
- 'subscription-notification' => 'Tilkynningastillingar fyrir áskrift',
- 'subscription-notification-forum' => 'Fá tilkynningu þegar áskrifandi vettvangur fær nýtt efni',
- 'subscription-notification-topic' => 'Fá tilkynningu þegar áskrifandi efni fær nýjan póst',
- 'subscription-notification-help' => 'Stjórna hvaða tilkynningar eru sendar varðandi áskriftina þína. Þessar stillingar eru brotnar af ef þú leyfir ekki einhverjum hópum að senda tilkynningar um áskriftina þína eða ef þú slökkva á tilkynningum',
- 'thanks-given' => 'Takk fyrir',
- 'thanks-received' => 'Takk móttekið',
- 'tips-given' => 'Ábendingar í ljósi',
- 'tips-received' => 'Ábendingar móttekin',
- 'title' => 'Titill',
- 'top-bankers' => 'Top bankastjóri',
- 'top-downloaders-data' => 'Top Downloaders (Gögn)',
- 'top-leechers' => 'Efst Leechers',
- 'top-leechers-count' => 'Top Leechers (Count)',
- 'top-seeders' => 'Efstu sæti',
- 'top-seeders-count' => 'Efstu sæti (fjöldi)',
- 'top-seeding-size' => 'Top sáning (Stærð)',
- 'top-seedtime' => 'Top seedtime',
- 'top-uploaders-data' => 'Toppur upphalendur (gögn)',
- 'top-uploaders-count' => 'Top Uploaders (Count)',
- 'topics' => 'Topics',
- 'topics-started' => 'Forum Topics Byrjað',
- 'torrent-comments' => 'Torrent Comments Made',
- 'torrent-help' => 'Stjórna því að deila tilteknum straumatengdum tölfræði og upplýsingum með hópum sem hafa aðgang að prófílnum þínum. Þessar stillingar eru brotnar ef þú leyfir ekki neinum hópum að fá aðgang að tengdum tölfræði og upplýsingum þínum eða ef þú ert að fara í einkaaðila',
- 'torrent-notification' => 'Torrent tilkynningastillingar',
- 'torrent-notification-comment' => 'Fá tilkynningu þegar hlaðið straumur fær nýjan athugasemd',
- 'torrent-notification-thank' => 'Fá tilkynningu þegar hlaðið straumur fær nýjan þakka',
- 'torrent-notification-tip' => 'Fá tilkynningu þegar hlaðið straumur fær nýjan ábending',
- 'torrent-notification-help' => 'Stjórna hvaða tilkynningar eru sendar um straumastarfsemi. Þessar stillingar eru brotnar af ef þú leyfir ekki neinum hópum að senda tilkynningar um straumsviðgerðir eða ef þú slökkva á tilkynningum',
- 'torrent-privacy' => 'Torrent stillingar',
- 'torrent-privacy-download' => 'Leyfa notendum að skoða lista yfir strauma sem þú hefur hlaðið niður',
- 'torrent-privacy-upload' => 'Leyfa notendum að skoða lista yfir straumar sem þú hefur hlaðið upp',
- 'torrent-privacy-peer' => 'Leyfa notendum að sjá þig í töflunni um gagnasöfnunina',
- 'torrents' => 'Torrents',
- 'torrents-history' => 'Torrents saga',
- 'total-download' => 'Samtals niðurhal',
- 'total-downloads' => 'Samtals niðurhöl',
- 'total-leeching' => 'Samtals Leeching',
- 'total-seeding' => 'Samtals sáning',
- 'total-seedtime' => 'Samtals seedtime',
- 'total-upload' => 'Samtals upphleðsla',
- 'total-uploads' => 'Samtals Uploads',
- 'unban' => 'Unban User',
- 'unfollow' => 'Fylgdu ekki',
- 'unlocked' => 'Opið',
- 'unlocked-achievements' => 'Opið afrek',
- 'unsatisfieds' => 'Unsatisfieds',
- 'upload-bon' => 'Hlaða inn bætt við frá BON Store',
- 'upload-recorded' => 'Upptaka hlaðið upp',
- 'upload-true' => 'True Upload',
- 'uploads' => 'Upphal',
- 'uploads-table' => 'Uploads Tafla',
- 'user' => 'Notandi',
- 'user-id' => 'notandanafn',
- 'username-seedbox' => 'Notendanafn Seedbox',
- 'visible-to-achievement' => 'Árangur sýnileg til',
- 'visible-to-achievement-help' => 'Árangur þinn verður aðeins sýnilegur fyrir starfsfólk og eftirfarandi hópa. Þessar stillingar eru brotnar ef þú ert að fara í einkaaðila',
- 'visible-to-follower' => 'Fylgjendur sýnilegir til',
- 'visible-to-follower-help' => 'Fylgjendur þínir verða aðeins sýnilegar fyrir starfsfólk og eftirfarandi hópa. Þessar stillingar eru brotnar ef þú ert að fara í einkaaðila',
- 'visible-to-forum' => 'Forum upplýsingar sýnilegt til',
- 'visible-to-forum-help' => 'Vettvangsupplýsingar þínar verða aðeins sýnilegar fyrir starfsfólk og eftirfarandi hópa. Þessar stillingar eru brotnar ef þú ert að fara í einkaaðila',
- 'visible-to-other' => 'Annað sýnilegt til',
- 'visible-to-other-help' => 'Aðrar upplýsingar um reikninginn þinn verða aðeins sýnilegar fyrir starfsfólk og eftirfarandi hópa. Þessar stillingar eru overrideden ef þú ferð í einkaaðila eða ef þú ferð falinn',
- 'visible-to-profile' => 'Profile sýnilegt til',
- 'visible-to-profile-help' => 'Prófíllinn þinn verður aðeins sýnilegur fyrir starfsfólk og eftirfarandi hópa. Þessar stillingar eru brotnar ef þú ert að fara í einkaaðila',
- 'visible-to-request' => 'Beiðni upplýsingar sýnileg til',
- 'visible-to-request-help' => 'Upplýsingarnar þínar munu aðeins verða sýnilegar fyrir starfsfólk og eftirfarandi hópa. Þessar stillingar eru brotnar ef þú ert að fara í einkaaðila',
- 'visible-to-torrent' => 'Torrent Upplýsingar sýnilegt til',
- 'visible-to-torrent-help' => 'Upplýsingar um strauminn þinn verða aðeins sýnilegar fyrir starfsfólk og eftirfarandi hópa. Þessar stillingar eru overrideden ef þú ferð í einkaaðila eða ef þú ferð falinn',
- 'warned-on' => 'Varað við',
- 'warning' => 'Viðvörun',
- 'warning-log' => 'Viðvörunarlisti',
- 'wishlist' => 'Óskalisti',
+ 'mention-notification-forum-post' => 'Fáðu tilkynningu þegar þú ert @mentioned á vettvangsstöðu',
+ 'mention-notification-help' => 'Stjórna hvaða tilkynningar eru sendar þegar notandi @urboðar þig. Þessar stillingar eru brotnar ef þú leyfir ekki neinum hópum að senda tilkynningar ef notandi @mentions þú eða ef þú slökkva á tilkynningum',
+ 'moderated-by' => 'Miðað við: mod á',
+ 'my-bonus-points' => 'Bónus stig mín',
+ 'my-bookmarks' => 'Bókamerki mín',
+ 'my-fl-tokens' => 'FL táknin mín',
+ 'my-general-settings' => 'Almennar stillingar mínir',
+ 'my-notification' => 'Tilkynning mín',
+ 'my-notification-settings' => 'Tilkynningarstillingar mínir',
+ 'my-privacy' => 'Persónuvernd mín',
+ 'my-privacy-settings' => 'Persónuverndarstillingar mínir',
+ 'my-profile' => 'Prófílinn minn',
+ 'my-requested' => 'Ég óskaði eftir',
+ 'my-security' => 'Öryggi mín',
+ 'my-security-settings' => 'Öryggisstillingar mínir',
+ 'my-seedboxes' => 'Seedboxes mínir',
+ 'my-settings' => 'Stillingar mínir',
+ 'my-wishlist' => 'Óskalisti minn',
+ 'no-logs' => 'Það eru engar boðskrár í gagnagrunninum fyrir þennan notanda!',
+ 'no-seedboxes' => 'Engar frækjur 😔',
+ 'not-authorized' => 'Þú hefur ekki leyfi til að skoða þessa síðu. Þessi félagi kýs að vera falinn eins og ninja!',
+ 'note' => 'Athugaðu',
+ 'notification' => 'Tilkynning',
+ 'notification-settings' => 'Tilkynningastillingar',
+ 'notification-from-account' => 'Fáðu reikningsskil frá',
+ 'notification-from-account-help' => 'Þú færð aðeins reikningstilkynningar frá kerfinu, starfsfólki og eftirfarandi hópum. Þessar stillingar eru brotnar ef þú slekkur á tilkynningum',
+ 'notification-from-bon' => 'Fáðu BON tilkynningar frá',
+ 'notification-from-bon-help' => 'Þú færð aðeins BON tilkynningar frá kerfinu, starfsmönnum og eftirfarandi hópum. Þessar stillingar eru brotnar ef þú slekkur á tilkynningum',
+ 'notification-from-following' => 'Fáðu fylgd notendaskilaboð frá',
+ 'notification-from-following-help' => 'Þú færð aðeins eftirfarandi notendaskilaboð frá eftirfarandi hópum. Þessar stillingar eru brotnar ef þú slekkur á tilkynningum',
+ 'notification-from-forum' => 'Fáðu tilkynningar frá Forum frá',
+ 'notification-from-forum-help' => 'Þú færð aðeins skilaboð frá vettvangi kerfisins, starfsmanna og eftirfarandi hópa. Þessar stillingar eru brotnar ef þú slekkur á tilkynningum',
+ 'notification-from-subscription' => 'Fá tilkynningar um áskrift frá',
+ 'notification-from-subscription-help' => 'Þú færð aðeins skilaboð frá vettvangi kerfisins, starfsmanna og eftirfarandi hópa. Þessar stillingar eru brotnar ef þú slekkur á tilkynningum',
+ 'notification-from-torrent' => 'Fáðu Torrent tilkynningar frá',
+ 'notification-from-torrent-help' => 'Þú færð aðeins straumar tilkynningar frá kerfinu, starfsmönnum og eftirfarandi hópum. Þessar stillingar eru brotnar ef þú slekkur á tilkynningum',
+ 'notification-from-mention' => 'Móttaka tilkynningar frá',
+ 'notification-from-mention-help' => 'Þú færð aðeins @mention tilkynningar frá kerfinu, starfsfólki og eftirfarandi hópum. Þessar stillingar eru brotnar ef þú slekkur á tilkynningum',
+ 'notification-from-request' => 'Fáðu beiðni um tilkynningar frá',
+ 'notification-from-request-help' => 'Þú færð aðeins beiðni tilkynningar frá kerfinu, starfsmönnum og eftirfarandi hópum. Þessar stillingar eru brotnar ef þú slekkur á tilkynningum',
+ 'notifications' => 'Tilkynningar',
+ 'offline' => 'Notandi er ótengdur!',
+ 'online' => 'Notandi er á netinu!',
+ 'options' => 'Valkostir',
+ 'other-help' => 'Stjórna miðlun annarra tölfræði og upplýsinga með hópum sem hafa aðgang að prófílnum þínum. Þessar stillingar eru brotnar ef þú leyfir ekki öllum hópum að fá aðgang að öðrum tölfræði þinni og upplýsingum eða ef þú ferð í einkaaðila',
+ 'other-privacy' => 'Aðrar stillingar',
+ 'other-privacy-online' => 'Leyfa notendum að sjá þig í netnotendaheimilinu',
+ 'passkey' => 'PID',
+ 'passkey-warning' => 'PID er eins og lykilorðið þitt, þú verður að halda því örugglega!',
+ 'pending-achievements' => 'Vonandi árangur',
+ 'per-torrent' => 'Per Torrent',
+ 'posts' => 'Innlegg',
+ 'posts-posted' => 'Forum Posts Sent',
+ 'privacy' => 'Persónuvernd',
+ 'privacy-settings' => 'Öryggisstillingar',
+ 'private-info' => 'Einkamál',
+ 'private-forum-profile' => 'Athygli: Þessi meðlimur Topic & Post History hefur verið sett til einka!',
+ 'private-profile' => 'Athygli: Þessi prófíll hefur verið settur til einka!',
+ 'profile' => 'Prófíll',
+ 'profile-desc' => 'Notandi: notendaprófíll skráð á: titil',
+ 'profile-privacy' => 'Prófstillingar',
+ 'profile-privacy-torrent-count' => 'Deila heildarfjölda niðurhala, upphleðslu, fræja og blóðsykurs',
+ 'profile-privacy-torrent-ratio' => 'Deildu heildarupphala / hlaða niður gögnum ásamt skráðum hlutföllum',
+ 'profile-privacy-torrent-seed' => 'Deila heildar sáningartíma þínum og meðaltali',
+ 'profile-privacy-title' => 'Deila persónulegum titilupplýsingum þínum',
+ 'profile-privacy-about' => 'Deila persónulegum upplýsingum um mig',
+ 'profile-privacy-bon-extra' => 'Deila BON tölfræði þinni',
+ 'profile-privacy-comment-extra' => 'Deila tölfræði um athugasemdir þínar',
+ 'profile-privacy-forum-extra' => 'Deila vettvangsstöðu þinni',
+ 'profile-privacy-request-extra' => 'Deila beiðnistölunni þinni',
+ 'profile-privacy-torrent-extra' => 'Deila straumsstöðu þinni',
+ 'profile-privacy-badge' => 'Deila ávöxtunarkostum þínum',
+ 'profile-privacy-achievement' => 'Deila nýlegum árangri þínum',
+ 'profile-privacy-follower' => 'Deila nýlegum fylgjendum þínum',
+ 'profile-privacy-warning' => 'Deila H & R viðvörunum þínum',
+ 'profile-privacy-help' => 'Stjórna hvaða tölfræði og upplýsingar birtast á prófílnum þínum. Þessar stillingar eru brotnar af ef þú leyfir ekki neinum hópum að fá aðgang að prófílnum þínum eða ef þú ert að fara í einkaaðila',
+ 'public-info' => 'Almennar upplýsingar',
+ 'recent-achievements' => 'Nýlegar afrek',
+ 'recent-followers' => 'Nýlegar fylgjendur',
+ 'registration-date' => 'Skráningar dagur',
+ 'report' => 'Skýrsla',
+ 'request-help' => 'Stjórna hlutdeild tiltekinnar beiðni sem tengist tölfræði og upplýsingum með hópum sem hafa aðgang að prófílnum þínum. Þessar stillingar eru brotnar niður ef þú leyfir ekki öllum hópum að fá aðgang að viðkomandi tölfræði þinni og upplýsingum eða ef þú ert að fara í einkaaðila',
+ 'request' => 'Beiðni',
+ 'requested' => 'Óskað eftir',
+ 'requests' => 'Beiðnir',
+ 'request-comments' => 'Beiðni um athugasemdir gerðar',
+ 'request-notification' => 'Beiðni um tilkynningu',
+ 'request-notification-bounty' => 'Fá tilkynningu þegar óskað straumur fær nýtt fé',
+ 'request-notification-comment' => 'Fá tilkynningu þegar óskað straumur fær nýjan athugasemd',
+ 'request-notification-fill' => 'Fá tilkynningu þegar óskað straumur verður fyllt',
+ 'request-notification-fill-approve' => 'Fáðu tilkynningu þegar óskað er að fylgjast með straumvælum',
+ 'request-notification-fill-reject' => 'Fá tilkynningu þegar óskað er að fylla út beiðni',
+ 'request-notification-claim' => 'Fáðu tilkynningu þegar óskað er eftir því sem krafist er',
+ 'request-notification-unclaim' => 'Fáðu tilkynningu þegar óskað er eftir því sem óskað er eftir',
+ 'request-notification-help' => 'Stjórna hvaða tilkynningar eru sendar varðandi beiðni um starfsemi. Þessar stillingar eru brotnar af ef þú leyfir ekki hópum að senda tilkynningar varðandi beiðni um starfsemi eða ef þú slökkva á tilkynningum',
+ 'request-privacy' => 'Beiðni Stillingar',
+ 'request-privacy-requested' => 'Leyfa notendum að skoða lista yfir beiðnir sem þú hefur gert',
+ 'reset-passkey' => 'Endurstilla lykilorð (PID)',
+ 'reset-passkey-help' => 'Þú verður að endurhlaða / endurhlaða öllum virkum straumum þínum, eftir að þú hefur endurstillt PID',
+ 'reset-rss' => 'Endurstilla RSS lykill (RID)',
+ 'reset-rss-help' => 'Þú verður að endurhlaða alla virka RSS straumana þína, eftir að þú hefur endurstillt RID',
+ 'resurrections' => 'Upprisanir',
+ 'search' => 'Flýtileit með notendanafni',
+ 'security' => 'Öryggi',
+ 'security-settings' => 'Öryggisstillingar',
+ 'seedboxes' => 'Seedboxes',
+ 'seeds' => 'Fræ',
+ 'send-invite' => 'Senda Bjóddu',
+ 'sender' => 'Sendandi',
+ 'settings' => 'Stillingar',
+ 'show-passkey' => 'Sýna PID',
+ 'staff-noted' => 'Starfsfólk skráð reikningur',
+ 'statistics' => 'Tölfræði',
+ 'subscription-notification' => 'Tilkynningastillingar fyrir áskrift',
+ 'subscription-notification-forum' => 'Fá tilkynningu þegar áskrifandi vettvangur fær nýtt efni',
+ 'subscription-notification-topic' => 'Fá tilkynningu þegar áskrifandi efni fær nýjan póst',
+ 'subscription-notification-help' => 'Stjórna hvaða tilkynningar eru sendar varðandi áskriftina þína. Þessar stillingar eru brotnar af ef þú leyfir ekki einhverjum hópum að senda tilkynningar um áskriftina þína eða ef þú slökkva á tilkynningum',
+ 'thanks-given' => 'Takk fyrir',
+ 'thanks-received' => 'Takk móttekið',
+ 'tips-given' => 'Ábendingar í ljósi',
+ 'tips-received' => 'Ábendingar móttekin',
+ 'title' => 'Titill',
+ 'top-bankers' => 'Top bankastjóri',
+ 'top-downloaders-data' => 'Top Downloaders (Gögn)',
+ 'top-leechers' => 'Efst Leechers',
+ 'top-leechers-count' => 'Top Leechers (Count)',
+ 'top-seeders' => 'Efstu sæti',
+ 'top-seeders-count' => 'Efstu sæti (fjöldi)',
+ 'top-seeding-size' => 'Top sáning (Stærð)',
+ 'top-seedtime' => 'Top seedtime',
+ 'top-uploaders-data' => 'Toppur upphalendur (gögn)',
+ 'top-uploaders-count' => 'Top Uploaders (Count)',
+ 'topics' => 'Topics',
+ 'topics-started' => 'Forum Topics Byrjað',
+ 'torrent-comments' => 'Torrent Comments Made',
+ 'torrent-help' => 'Stjórna því að deila tilteknum straumatengdum tölfræði og upplýsingum með hópum sem hafa aðgang að prófílnum þínum. Þessar stillingar eru brotnar ef þú leyfir ekki neinum hópum að fá aðgang að tengdum tölfræði og upplýsingum þínum eða ef þú ert að fara í einkaaðila',
+ 'torrent-notification' => 'Torrent tilkynningastillingar',
+ 'torrent-notification-comment' => 'Fá tilkynningu þegar hlaðið straumur fær nýjan athugasemd',
+ 'torrent-notification-thank' => 'Fá tilkynningu þegar hlaðið straumur fær nýjan þakka',
+ 'torrent-notification-tip' => 'Fá tilkynningu þegar hlaðið straumur fær nýjan ábending',
+ 'torrent-notification-help' => 'Stjórna hvaða tilkynningar eru sendar um straumastarfsemi. Þessar stillingar eru brotnar af ef þú leyfir ekki neinum hópum að senda tilkynningar um straumsviðgerðir eða ef þú slökkva á tilkynningum',
+ 'torrent-privacy' => 'Torrent stillingar',
+ 'torrent-privacy-download' => 'Leyfa notendum að skoða lista yfir strauma sem þú hefur hlaðið niður',
+ 'torrent-privacy-upload' => 'Leyfa notendum að skoða lista yfir straumar sem þú hefur hlaðið upp',
+ 'torrent-privacy-peer' => 'Leyfa notendum að sjá þig í töflunni um gagnasöfnunina',
+ 'torrents' => 'Torrents',
+ 'torrents-history' => 'Torrents saga',
+ 'total-download' => 'Samtals niðurhal',
+ 'total-downloads' => 'Samtals niðurhöl',
+ 'total-leeching' => 'Samtals Leeching',
+ 'total-seeding' => 'Samtals sáning',
+ 'total-seedtime' => 'Samtals seedtime',
+ 'total-upload' => 'Samtals upphleðsla',
+ 'total-uploads' => 'Samtals Uploads',
+ 'unban' => 'Unban User',
+ 'unfollow' => 'Fylgdu ekki',
+ 'unlocked' => 'Opið',
+ 'unlocked-achievements' => 'Opið afrek',
+ 'unsatisfieds' => 'Unsatisfieds',
+ 'upload-bon' => 'Hlaða inn bætt við frá BON Store',
+ 'upload-recorded' => 'Upptaka hlaðið upp',
+ 'upload-true' => 'True Upload',
+ 'uploads' => 'Upphal',
+ 'uploads-table' => 'Uploads Tafla',
+ 'user' => 'Notandi',
+ 'user-id' => 'notandanafn',
+ 'username-seedbox' => 'Notendanafn Seedbox',
+ 'visible-to-achievement' => 'Árangur sýnileg til',
+ 'visible-to-achievement-help' => 'Árangur þinn verður aðeins sýnilegur fyrir starfsfólk og eftirfarandi hópa. Þessar stillingar eru brotnar ef þú ert að fara í einkaaðila',
+ 'visible-to-follower' => 'Fylgjendur sýnilegir til',
+ 'visible-to-follower-help' => 'Fylgjendur þínir verða aðeins sýnilegar fyrir starfsfólk og eftirfarandi hópa. Þessar stillingar eru brotnar ef þú ert að fara í einkaaðila',
+ 'visible-to-forum' => 'Forum upplýsingar sýnilegt til',
+ 'visible-to-forum-help' => 'Vettvangsupplýsingar þínar verða aðeins sýnilegar fyrir starfsfólk og eftirfarandi hópa. Þessar stillingar eru brotnar ef þú ert að fara í einkaaðila',
+ 'visible-to-other' => 'Annað sýnilegt til',
+ 'visible-to-other-help' => 'Aðrar upplýsingar um reikninginn þinn verða aðeins sýnilegar fyrir starfsfólk og eftirfarandi hópa. Þessar stillingar eru overrideden ef þú ferð í einkaaðila eða ef þú ferð falinn',
+ 'visible-to-profile' => 'Profile sýnilegt til',
+ 'visible-to-profile-help' => 'Prófíllinn þinn verður aðeins sýnilegur fyrir starfsfólk og eftirfarandi hópa. Þessar stillingar eru brotnar ef þú ert að fara í einkaaðila',
+ 'visible-to-request' => 'Beiðni upplýsingar sýnileg til',
+ 'visible-to-request-help' => 'Upplýsingarnar þínar munu aðeins verða sýnilegar fyrir starfsfólk og eftirfarandi hópa. Þessar stillingar eru brotnar ef þú ert að fara í einkaaðila',
+ 'visible-to-torrent' => 'Torrent Upplýsingar sýnilegt til',
+ 'visible-to-torrent-help' => 'Upplýsingar um strauminn þinn verða aðeins sýnilegar fyrir starfsfólk og eftirfarandi hópa. Þessar stillingar eru overrideden ef þú ferð í einkaaðila eða ef þú ferð falinn',
+ 'warned-on' => 'Varað við',
+ 'warning' => 'Viðvörun',
+ 'warning-log' => 'Viðvörunarlisti',
+ 'wishlist' => 'Óskalisti',
];
diff --git a/lang/is/validation.php b/lang/is/validation.php
index 4832e043c..c9e2daa79 100644
--- a/lang/is/validation.php
+++ b/lang/is/validation.php
@@ -23,108 +23,108 @@ return [
|
*/
- 'accepted' => 'Reiturinn :attribute verður að vera samþykktur.',
- 'active_url' => 'Reiturinn :attribute er ekki leyfileg vefslóð.',
- 'after' => 'Reiturinn :attribute verður að vera dagsetning eftir :date.',
- 'after_or_equal' => 'The :attribute must be a date after or equal to :date.',
- 'alpha' => 'Reiturinn :attribute má aðeins innihalda bókstafi.',
- 'alpha_dash' => 'Reiturinn :attribute má aðeins innihalda bókstafi, tölur og undirstikanir.',
- 'alpha_num' => 'Reiturinn :attribute má aðeins innihalda bókstafi og tölur.',
- 'array' => 'Reiturinn :attribute verður að vera fylki.',
- 'before' => 'Reiturinn :attribute verður að vera dagsetning eftir :date.',
- 'before_or_equal' => 'The :attribute must be a date before or equal to :date.',
- 'between' => [
+ 'accepted' => 'Reiturinn :attribute verður að vera samþykktur.',
+ 'active_url' => 'Reiturinn :attribute er ekki leyfileg vefslóð.',
+ 'after' => 'Reiturinn :attribute verður að vera dagsetning eftir :date.',
+ 'after_or_equal' => 'The :attribute must be a date after or equal to :date.',
+ 'alpha' => 'Reiturinn :attribute má aðeins innihalda bókstafi.',
+ 'alpha_dash' => 'Reiturinn :attribute má aðeins innihalda bókstafi, tölur og undirstikanir.',
+ 'alpha_num' => 'Reiturinn :attribute má aðeins innihalda bókstafi og tölur.',
+ 'array' => 'Reiturinn :attribute verður að vera fylki.',
+ 'before' => 'Reiturinn :attribute verður að vera dagsetning eftir :date.',
+ 'before_or_equal' => 'The :attribute must be a date before or equal to :date.',
+ 'between' => [
'numeric' => 'Reiturinn :attribute verður að vera á milli :min - :max.',
- 'file' => 'Reiturinn :attribute verður að vera á milli :min - :max kílóbæta.',
- 'string' => 'Reiturinn :attribute verður að vera á milli :min - :max stafa.',
- 'array' => 'Reiturinn :attribute verður að vera á milli :min - :max staka.',
+ 'file' => 'Reiturinn :attribute verður að vera á milli :min - :max kílóbæta.',
+ 'string' => 'Reiturinn :attribute verður að vera á milli :min - :max stafa.',
+ 'array' => 'Reiturinn :attribute verður að vera á milli :min - :max staka.',
],
- 'boolean' => 'Reiturinn :attribute verður að vera réttur eða rangur.',
- 'confirmed' => 'Staðfesting á reitnum :attribute passar ekki.',
- 'date' => 'Reiturinn :attribute er ekki rétt dagsetning.',
- 'date_equals' => 'The :attribute must be a date equal to :date.',
- 'date_format' => 'Reiturinn :attribute passar ekki við :format.',
- 'different' => 'Reiturinn :attribute og :other verða að vera ólíkir.',
- 'digits' => 'Reiturinn :attribute verður að vera :digits tölustafir.',
- 'digits_between' => 'Reiturinn :attribute verður að vera á milli :min og :max tölustafa.',
- 'dimensions' => 'The :attribute has invalid image dimensions.',
- 'distinct' => 'The :attribute field has a duplicate value.',
- 'email' => 'Reiturinn :attribute snið netfangsins er ekki rétt.',
- 'file' => 'The :attribute must be a file.',
- 'filled' => 'Reiturinn :attribute verður að innihalda eitthvað.',
- 'exists' => 'Reiturinn :attribute er nú þegar til.',
- 'gt' => [
+ 'boolean' => 'Reiturinn :attribute verður að vera réttur eða rangur.',
+ 'confirmed' => 'Staðfesting á reitnum :attribute passar ekki.',
+ 'date' => 'Reiturinn :attribute er ekki rétt dagsetning.',
+ 'date_equals' => 'The :attribute must be a date equal to :date.',
+ 'date_format' => 'Reiturinn :attribute passar ekki við :format.',
+ 'different' => 'Reiturinn :attribute og :other verða að vera ólíkir.',
+ 'digits' => 'Reiturinn :attribute verður að vera :digits tölustafir.',
+ 'digits_between' => 'Reiturinn :attribute verður að vera á milli :min og :max tölustafa.',
+ 'dimensions' => 'The :attribute has invalid image dimensions.',
+ 'distinct' => 'The :attribute field has a duplicate value.',
+ 'email' => 'Reiturinn :attribute snið netfangsins er ekki rétt.',
+ 'file' => 'The :attribute must be a file.',
+ 'filled' => 'Reiturinn :attribute verður að innihalda eitthvað.',
+ 'exists' => 'Reiturinn :attribute er nú þegar til.',
+ 'gt' => [
'numeric' => 'The :attribute must be greater than :value.',
- 'file' => 'The :attribute must be greater than :value kilobytes.',
- 'string' => 'The :attribute must be greater than :value characters.',
- 'array' => 'The :attribute must have more than :value items.',
+ 'file' => 'The :attribute must be greater than :value kilobytes.',
+ 'string' => 'The :attribute must be greater than :value characters.',
+ 'array' => 'The :attribute must have more than :value items.',
],
- 'gte' => [
+ 'gte' => [
'numeric' => 'The :attribute must be greater than or equal :value.',
- 'file' => 'The :attribute must be greater than or equal :value kilobytes.',
- 'string' => 'The :attribute must be greater than or equal :value characters.',
- 'array' => 'The :attribute must have :value items or more.',
+ 'file' => 'The :attribute must be greater than or equal :value kilobytes.',
+ 'string' => 'The :attribute must be greater than or equal :value characters.',
+ 'array' => 'The :attribute must have :value items or more.',
],
- 'image' => 'Reiturinn :attribute verður að vera mynd.',
- 'in' => 'Reiturinn :attribute er ekki réttur.',
- 'in_array' => 'The :attribute field does not exist in :other.',
- 'integer' => 'Reiturinn :attribute verður að vera tala.',
- 'ip' => 'Reiturinn :attribute verður að vera lögleg IP-tala.',
- 'ipv4' => 'The :attribute must be a valid IPv4 address.',
- 'ipv6' => 'The :attribute must be a valid IPv6 address.',
- 'json' => 'The :attribute must be a valid JSON string.',
- 'lt' => [
+ 'image' => 'Reiturinn :attribute verður að vera mynd.',
+ 'in' => 'Reiturinn :attribute er ekki réttur.',
+ 'in_array' => 'The :attribute field does not exist in :other.',
+ 'integer' => 'Reiturinn :attribute verður að vera tala.',
+ 'ip' => 'Reiturinn :attribute verður að vera lögleg IP-tala.',
+ 'ipv4' => 'The :attribute must be a valid IPv4 address.',
+ 'ipv6' => 'The :attribute must be a valid IPv6 address.',
+ 'json' => 'The :attribute must be a valid JSON string.',
+ 'lt' => [
'numeric' => 'The :attribute must be less than :value.',
- 'file' => 'The :attribute must be less than :value kilobytes.',
- 'string' => 'The :attribute must be less than :value characters.',
- 'array' => 'The :attribute must have less than :value items.',
+ 'file' => 'The :attribute must be less than :value kilobytes.',
+ 'string' => 'The :attribute must be less than :value characters.',
+ 'array' => 'The :attribute must have less than :value items.',
],
- 'lte' => [
+ 'lte' => [
'numeric' => 'The :attribute must be less than or equal :value.',
- 'file' => 'The :attribute must be less than or equal :value kilobytes.',
- 'string' => 'The :attribute must be less than or equal :value characters.',
- 'array' => 'The :attribute must not have more than :value items.',
+ 'file' => 'The :attribute must be less than or equal :value kilobytes.',
+ 'string' => 'The :attribute must be less than or equal :value characters.',
+ 'array' => 'The :attribute must not have more than :value items.',
],
- 'max' => [
+ 'max' => [
'numeric' => 'Reiturinn :attribute verður að innihalda færri stafi en :max.',
- 'file' => 'Reiturinn :attribute verður að vera minni en :max kílóbæt.',
- 'string' => 'Reiturinn :attribute verður að innihalda færri en :max stafi.',
- 'array' => 'Reiturinn :attribute verður að innihalda færri en :max stök.',
+ 'file' => 'Reiturinn :attribute verður að vera minni en :max kílóbæt.',
+ 'string' => 'Reiturinn :attribute verður að innihalda færri en :max stafi.',
+ 'array' => 'Reiturinn :attribute verður að innihalda færri en :max stök.',
],
- 'mimes' => 'Reiturinn :attribute verður að vera skrá af gerðinni: :values.',
- 'mimetypes' => 'Reiturinn :attribute verður að vera skrá af gerðinni: :values.',
- 'min' => [
+ 'mimes' => 'Reiturinn :attribute verður að vera skrá af gerðinni: :values.',
+ 'mimetypes' => 'Reiturinn :attribute verður að vera skrá af gerðinni: :values.',
+ 'min' => [
'numeric' => 'Reiturinn :attribute verður að vera að lágmarki :min tölustafir.',
- 'file' => 'Reiturinn :attribute verður að vera að lágmarki :min kílóbæt.',
- 'string' => 'Reiturinn :attribute verður að vera að lágmarki :min stafir.',
- 'array' => 'Reiturinn :attribute verður að vera að lágmarki :min stök.',
+ 'file' => 'Reiturinn :attribute verður að vera að lágmarki :min kílóbæt.',
+ 'string' => 'Reiturinn :attribute verður að vera að lágmarki :min stafir.',
+ 'array' => 'Reiturinn :attribute verður að vera að lágmarki :min stök.',
],
- 'not_in' => 'Reiturinn :attribute er ógildur.',
- 'not_regex' => 'The :attribute format is invalid.',
- 'numeric' => 'Reiturinn :attribute verður að vera tala.',
- 'present' => 'The :attribute field must be present.',
- 'regex' => 'Reiturinn :attribute er ekki á réttu formi.',
- 'required' => 'Reiturinn :attribute er nauðsynlegur.',
- 'required_if' => 'Reiturinn :attribute er nauðsynlegur þegar :other er :value.',
- 'required_unless' => 'The :attribute field is required unless :other is in :values.',
- 'required_with' => 'The :attribute field is required when :values is present.',
- 'required_with_all' => 'The :attribute field is required when :values is present.',
- 'required_without' => 'The :attribute field is required when :values is not present.',
+ 'not_in' => 'Reiturinn :attribute er ógildur.',
+ 'not_regex' => 'The :attribute format is invalid.',
+ 'numeric' => 'Reiturinn :attribute verður að vera tala.',
+ 'present' => 'The :attribute field must be present.',
+ 'regex' => 'Reiturinn :attribute er ekki á réttu formi.',
+ 'required' => 'Reiturinn :attribute er nauðsynlegur.',
+ 'required_if' => 'Reiturinn :attribute er nauðsynlegur þegar :other er :value.',
+ 'required_unless' => 'The :attribute field is required unless :other is in :values.',
+ 'required_with' => 'The :attribute field is required when :values is present.',
+ 'required_with_all' => 'The :attribute field is required when :values is present.',
+ 'required_without' => 'The :attribute field is required when :values is not present.',
'required_without_all' => 'The :attribute field is required when none of :values are present.',
- 'same' => 'Reiturinn :attribute og :other verða að stemma.',
- 'size' => [
+ 'same' => 'Reiturinn :attribute og :other verða að stemma.',
+ 'size' => [
'numeric' => 'Reiturinn :attribute verður að vera :size.',
- 'file' => 'Reiturinn :attribute verður að vera :size kílóbæt.',
- 'string' => 'Reiturinn :attribute verður að vera :size stafir.',
- 'array' => 'Reiturinn :attribute verður að innihalda :size hluti.',
+ 'file' => 'Reiturinn :attribute verður að vera :size kílóbæt.',
+ 'string' => 'Reiturinn :attribute verður að vera :size stafir.',
+ 'array' => 'Reiturinn :attribute verður að innihalda :size hluti.',
],
- 'starts_with' => 'The :attribute must start with one of the following: :values',
- 'string' => 'The :attribute must be a string.',
- 'timezone' => 'Reiturinn :attribute verður að vera rétt tímabelti.',
- 'unique' => 'Reiturinn :attribute er því miður ekki leyfilegur. Það er annar eins.',
- 'uploaded' => 'The :attribute failed to upload.',
- 'url' => 'Reiturinn :attribute verður að vera netslóð.',
- 'uuid' => 'The :attribute must be a valid UUID.',
+ 'starts_with' => 'The :attribute must start with one of the following: :values',
+ 'string' => 'The :attribute must be a string.',
+ 'timezone' => 'Reiturinn :attribute verður að vera rétt tímabelti.',
+ 'unique' => 'Reiturinn :attribute er því miður ekki leyfilegur. Það er annar eins.',
+ 'uploaded' => 'The :attribute failed to upload.',
+ 'url' => 'Reiturinn :attribute verður að vera netslóð.',
+ 'uuid' => 'The :attribute must be a valid UUID.',
/*
|--------------------------------------------------------------------------
@@ -155,34 +155,34 @@ return [
*/
'attributes' => [
- 'name' => 'Nafn',
- 'username' => 'Notendanafn',
- 'email' => 'Netfang',
- 'first_name' => 'Fornafn',
- 'last_name' => 'Eftirnafn',
- 'password' => 'Lykilorð',
+ 'name' => 'Nafn',
+ 'username' => 'Notendanafn',
+ 'email' => 'Netfang',
+ 'first_name' => 'Fornafn',
+ 'last_name' => 'Eftirnafn',
+ 'password' => 'Lykilorð',
'password_confirmation' => 'Staðfesting á lykilorði',
- 'city' => 'Borg',
- 'country' => 'Land',
- 'address' => 'Heimilisfang',
- 'phone' => 'Heimasími',
- 'mobile' => 'Farsími',
- 'age' => 'Aldur',
- 'sex' => 'Sex',
- 'gender' => 'Kyn',
- 'day' => 'Dagur',
- 'month' => 'Mánuður',
- 'year' => 'Ár',
- 'hour' => 'Klukkutími',
- 'minute' => 'Mínúta',
- 'second' => 'Sekúnda',
- 'title' => 'Titill',
- 'content' => 'Efni',
- 'description' => 'Lýsing',
- 'excerpt' => 'Excerpt',
- 'date' => 'Dagsetning',
- 'time' => 'Tími',
- 'available' => 'Í boði',
- 'size' => 'Stærð',
+ 'city' => 'Borg',
+ 'country' => 'Land',
+ 'address' => 'Heimilisfang',
+ 'phone' => 'Heimasími',
+ 'mobile' => 'Farsími',
+ 'age' => 'Aldur',
+ 'sex' => 'Sex',
+ 'gender' => 'Kyn',
+ 'day' => 'Dagur',
+ 'month' => 'Mánuður',
+ 'year' => 'Ár',
+ 'hour' => 'Klukkutími',
+ 'minute' => 'Mínúta',
+ 'second' => 'Sekúnda',
+ 'title' => 'Titill',
+ 'content' => 'Efni',
+ 'description' => 'Lýsing',
+ 'excerpt' => 'Excerpt',
+ 'date' => 'Dagsetning',
+ 'time' => 'Tími',
+ 'available' => 'Í boði',
+ 'size' => 'Stærð',
],
];
diff --git a/lang/it/articles.php b/lang/it/articles.php
index 00a6e0a94..dbfffe714 100644
--- a/lang/it/articles.php
+++ b/lang/it/articles.php
@@ -12,8 +12,8 @@
*/
return [
- 'articles' => 'articoli',
+ 'articles' => 'articoli',
'meta-articles' => 'Articoli e notizie sul tracker e sulla community',
- 'published-at' => 'Pubblicato su',
- 'read-more' => 'Leggi di più',
+ 'published-at' => 'Pubblicato su',
+ 'read-more' => 'Leggi di più',
];
diff --git a/lang/it/auth.php b/lang/it/auth.php
index 4b2cd7d27..503ec01ba 100644
--- a/lang/it/auth.php
+++ b/lang/it/auth.php
@@ -22,40 +22,40 @@ return [
| these language lines according to your application's requirements.
|
*/
- 'activation-error' => 'Token o account bannato, non valido oppure già confermato!',
- 'activation-success' => 'Account confermato! Ora puoi accedere! ',
- 'add-image' => 'Aggiungi un altro link immagine',
- 'add-profile' => 'Aggiungi un altro link al profilo',
- 'allow-invite-appl' => 'Le registrazioni sono chiuse! Devi essere invitato per registrarti! Tuttavia, le iscrizioni dell applicazione sono aperte.',
- 'allow-invite' => 'Le registrazioni sono chiuse! Devi essere invitato per registrarti! Sei stato reindirizzato alla pagina di accesso! ',
- 'are-you' => 'Tu sei:',
- 'appl-closed' => 'Applications chiuse',
- 'appl-intro' => 'è una comunità chiusa. Devi avere un link di invito per registrarti. Se non riesci a ottenere un invito, puoi compilare la seguente applicazione per iscriverti.',
- 'appl-reason' => 'Come hai conosciuto ":sitename" E perché vuoi farne parte? ',
- 'application-submitted' => 'La tua domanda è stata presentata. Riceverai presto una mail!',
- 'banned' => 'Questo account è bannato!',
- 'check-later' => 'Controlla più tardi!',
- 'delete-image' => 'Elimina l ultimo collegamento immagine',
- 'delete-profile' => 'Elimina l ultimo collegamento al profilo',
- 'email' => 'E-mail',
- 'failed' => 'Credenziali non corrispondenti ai dati registrati.',
- 'invalid-key' => 'Chiave di invito non valida o scaduta!',
- 'login' => 'Login',
- 'login-now-on' => 'Accedi ora su',
- 'logout' => 'Disconnettiti',
- 'lost-password' => 'Dimenticata la Password?',
- 'lost-username' => 'Dimenticato il tuo Username?',
- 'need-invite' => 'Le registrazioni sono chiuse ed hai bisogno di un invito per ottenere accesso!',
- 'not-a-member' => 'Non sei ancora membro? Iscriviti in meno di 30s.',
- 'not-activated' => 'Questo account non è stato attivato ed è ancora nel gruppo di verifica. Sei pregato di controllare la tua email per il link di attivazione. Se non hai ricevuto il codice di attivazione, fai clic su "Password dimenticata" e completa i passaggi.',
- 'proof-min' => '(Minimo 2, Raccomandati 3)',
- 'recover-my-password' => 'Recuperare la mia password',
- 'register-thanks' => 'Grazie per esserti iscritto! Controlla la tua email per convalidare il tuo account',
- 'require-rules' => 'Sei pregato di leggere e accettare le nostre regole scorrendo verso la parte inferiore della pagina.',
- 'signup' => 'Registrazione',
- 'throttle' => 'Troppi tentativi di accesso. Riprova tra :seconds secondi.',
- 'unlock' => 'Sblocca',
- 'veteran' => 'Esperto con i tracker privati',
- 'welcome' => 'Bentornato!',
- 'welcome-restore' => 'Bentornato! Il tuo account non è più disabilitato!',
+ 'activation-error' => 'Token o account bannato, non valido oppure già confermato!',
+ 'activation-success' => 'Account confermato! Ora puoi accedere! ',
+ 'add-image' => 'Aggiungi un altro link immagine',
+ 'add-profile' => 'Aggiungi un altro link al profilo',
+ 'allow-invite-appl' => 'Le registrazioni sono chiuse! Devi essere invitato per registrarti! Tuttavia, le iscrizioni dell applicazione sono aperte.',
+ 'allow-invite' => 'Le registrazioni sono chiuse! Devi essere invitato per registrarti! Sei stato reindirizzato alla pagina di accesso! ',
+ 'are-you' => 'Tu sei:',
+ 'appl-closed' => 'Applications chiuse',
+ 'appl-intro' => 'è una comunità chiusa. Devi avere un link di invito per registrarti. Se non riesci a ottenere un invito, puoi compilare la seguente applicazione per iscriverti.',
+ 'appl-reason' => 'Come hai conosciuto ":sitename" E perché vuoi farne parte? ',
+ 'application-submitted' => 'La tua domanda è stata presentata. Riceverai presto una mail!',
+ 'banned' => 'Questo account è bannato!',
+ 'check-later' => 'Controlla più tardi!',
+ 'delete-image' => 'Elimina l ultimo collegamento immagine',
+ 'delete-profile' => 'Elimina l ultimo collegamento al profilo',
+ 'email' => 'E-mail',
+ 'failed' => 'Credenziali non corrispondenti ai dati registrati.',
+ 'invalid-key' => 'Chiave di invito non valida o scaduta!',
+ 'login' => 'Login',
+ 'login-now-on' => 'Accedi ora su',
+ 'logout' => 'Disconnettiti',
+ 'lost-password' => 'Dimenticata la Password?',
+ 'lost-username' => 'Dimenticato il tuo Username?',
+ 'need-invite' => 'Le registrazioni sono chiuse ed hai bisogno di un invito per ottenere accesso!',
+ 'not-a-member' => 'Non sei ancora membro? Iscriviti in meno di 30s.',
+ 'not-activated' => 'Questo account non è stato attivato ed è ancora nel gruppo di verifica. Sei pregato di controllare la tua email per il link di attivazione. Se non hai ricevuto il codice di attivazione, fai clic su "Password dimenticata" e completa i passaggi.',
+ 'proof-min' => '(Minimo 2, Raccomandati 3)',
+ 'recover-my-password' => 'Recuperare la mia password',
+ 'register-thanks' => 'Grazie per esserti iscritto! Controlla la tua email per convalidare il tuo account',
+ 'require-rules' => 'Sei pregato di leggere e accettare le nostre regole scorrendo verso la parte inferiore della pagina.',
+ 'signup' => 'Registrazione',
+ 'throttle' => 'Troppi tentativi di accesso. Riprova tra :seconds secondi.',
+ 'unlock' => 'Sblocca',
+ 'veteran' => 'Esperto con i tracker privati',
+ 'welcome' => 'Bentornato!',
+ 'welcome-restore' => 'Bentornato! Il tuo account non è più disabilitato!',
];
diff --git a/lang/it/backup.php b/lang/it/backup.php
index 6868f0bb0..7f5fb19ed 100644
--- a/lang/it/backup.php
+++ b/lang/it/backup.php
@@ -12,32 +12,32 @@
*/
return [
- 'actions' => 'Azioni',
- 'backup' => 'Backup',
- 'backup_doesnt_exist' => 'Il file di backup non esiste.',
- 'create_a_new_backup' => 'Crea backup completo',
- 'create_a_new_files_backup' => 'Crea backup di file',
- 'create_a_new_db_backup' => 'Crea backup del database',
- 'create_confirmation_message' => 'Ricaricare la pagina in 3 secondi.',
- 'create_confirmation_title' => 'Backup completato',
- 'create_error_message' => 'Il file di backup NON può essere creato.',
- 'create_error_title' => 'Errore di backup',
- 'create_warning_message' => 'Il tuo backup potrebbe NON essere stato creato. Si prega di controllare i file di registro per i dettagli.',
- 'create_warning_title' => 'Errore sconosciuto',
- 'date' => 'Data',
- 'delete' => 'Elimina',
- 'delete_cancel_message' => 'Il file di backup NON è stato cancellato.',
- 'delete_cancel_title' => 'Va bene',
- 'delete_confirm' => 'Sei sicuro di voler eliminare questo file di backup?',
- 'delete_confirmation_message' => 'Il file di backup è stato cancellato.',
- 'delete_confirmation_title' => 'Fatto',
- 'delete_error_message' => 'Il file di backup NON è stato cancellato.',
- 'delete_error_title' => 'Errore',
- 'download' => 'Scaricare',
- 'existing_backups' => 'Backup esistenti',
- 'file_size' => 'Dimensione del file',
- 'location' => 'Posizione',
- 'manager' => 'Manager',
- 'no_disks_configured' => 'Nessun disco di backup configurato in config / backup.php',
+ 'actions' => 'Azioni',
+ 'backup' => 'Backup',
+ 'backup_doesnt_exist' => 'Il file di backup non esiste.',
+ 'create_a_new_backup' => 'Crea backup completo',
+ 'create_a_new_files_backup' => 'Crea backup di file',
+ 'create_a_new_db_backup' => 'Crea backup del database',
+ 'create_confirmation_message' => 'Ricaricare la pagina in 3 secondi.',
+ 'create_confirmation_title' => 'Backup completato',
+ 'create_error_message' => 'Il file di backup NON può essere creato.',
+ 'create_error_title' => 'Errore di backup',
+ 'create_warning_message' => 'Il tuo backup potrebbe NON essere stato creato. Si prega di controllare i file di registro per i dettagli.',
+ 'create_warning_title' => 'Errore sconosciuto',
+ 'date' => 'Data',
+ 'delete' => 'Elimina',
+ 'delete_cancel_message' => 'Il file di backup NON è stato cancellato.',
+ 'delete_cancel_title' => 'Va bene',
+ 'delete_confirm' => 'Sei sicuro di voler eliminare questo file di backup?',
+ 'delete_confirmation_message' => 'Il file di backup è stato cancellato.',
+ 'delete_confirmation_title' => 'Fatto',
+ 'delete_error_message' => 'Il file di backup NON è stato cancellato.',
+ 'delete_error_title' => 'Errore',
+ 'download' => 'Scaricare',
+ 'existing_backups' => 'Backup esistenti',
+ 'file_size' => 'Dimensione del file',
+ 'location' => 'Posizione',
+ 'manager' => 'Manager',
+ 'no_disks_configured' => 'Nessun disco di backup configurato in config / backup.php',
'only_local_downloads_supported' => 'Sono supportati solo i download dal filesystem locale.',
];
diff --git a/lang/it/blocks.php b/lang/it/blocks.php
index ca7553634..dc41d25a6 100644
--- a/lang/it/blocks.php
+++ b/lang/it/blocks.php
@@ -12,19 +12,19 @@
*/
return [
- 'chatbox' => 'Casella di chat',
- 'click' => 'Clic',
- 'to-enable-editor' => 'per abilitare l editor',
- 'featured-by' => 'Messo in vetrina da',
- 'featured-torrents' => 'Torrents in vetrina',
+ 'chatbox' => 'Casella di chat',
+ 'click' => 'Clic',
+ 'to-enable-editor' => 'per abilitare l editor',
+ 'featured-by' => 'Messo in vetrina da',
+ 'featured-torrents' => 'Torrents in vetrina',
'featured-torrents-intro' => 'Prendili ora!',
- 'featured-until' => 'Questo è in vetrina fino a',
- 'top-torrents' => 'Top Torrents',
- 'latest-posts' => 'Ultimi post',
- 'latest-topics' => 'Ultimi argomenti',
- 'active-in-last' => 'Attivo in ultimo',
- 'users-online' => 'Utenti online',
- 'check-news' => 'Leggi cliccando qui le notizie',
- 'new-news' => 'Nuove notizie ',
- 'new-torrents' => 'Nuovi torrents',
+ 'featured-until' => 'Questo è in vetrina fino a',
+ 'top-torrents' => 'Top Torrents',
+ 'latest-posts' => 'Ultimi post',
+ 'latest-topics' => 'Ultimi argomenti',
+ 'active-in-last' => 'Attivo in ultimo',
+ 'users-online' => 'Utenti online',
+ 'check-news' => 'Leggi cliccando qui le notizie',
+ 'new-news' => 'Nuove notizie ',
+ 'new-torrents' => 'Nuovi torrents',
];
diff --git a/lang/it/bon.php b/lang/it/bon.php
index 5488d0906..70387994c 100644
--- a/lang/it/bon.php
+++ b/lang/it/bon.php
@@ -12,44 +12,44 @@
*/
return [
- 'activated' => 'attivato',
- 'active' => 'Attivato!',
- 'amount' => 'Quantità',
- 'bon' => 'BONUS',
- 'bonus' => 'indennità',
- 'date' => 'Data',
- 'earning' => 'guadagno',
- 'earning-rate' => 'A questo ritmo guadagnerai quanto segue per periodo di tempo ..',
- 'earnings' => 'guadagni',
- 'exchange' => 'Scambio',
- 'exchange-warning' => 'Gli scambi sono definitivi, per favore ricontrolla le tue scelte prima di fare uno scambio.',
- 'extended-stats' => 'Statistiche estese',
- 'gift' => 'Regalo',
- 'gift-bonus' => 'Punti bonus regalo',
- 'gift-to' => 'Punti bonus regalo a',
- 'gifts' => 'I regali',
- 'item' => 'Articolo',
- 'no-refund' => 'NESSUN RIMBORSO!',
- 'per-day' => 'Punti al giorno',
- 'per-hour' => 'Punti per ora',
- 'per-minute' => 'Punti al minuto',
- 'per-month' => 'Punti al mese',
- 'per-second' => 'Punti al secondo',
- 'per-week' => 'Punti per settimana',
- 'per-year' => 'Punti per anno',
- 'points' => 'Punti',
- 'receiver' => 'Ricevitore',
- 'review-seeds' => 'Ripassa tutti i torrenti seminati',
- 'send-gift' => 'Invia REGALO',
- 'sender' => 'Mittente',
- 'store' => 'Negozio',
- 'tips' => 'Suggerimenti',
- 'total' => 'Guadagni complessivi',
- 'total-gifts' => 'In totale BON regali',
- 'total-tips' => 'In Total BON Tips',
+ 'activated' => 'attivato',
+ 'active' => 'Attivato!',
+ 'amount' => 'Quantità',
+ 'bon' => 'BONUS',
+ 'bonus' => 'indennità',
+ 'date' => 'Data',
+ 'earning' => 'guadagno',
+ 'earning-rate' => 'A questo ritmo guadagnerai quanto segue per periodo di tempo ..',
+ 'earnings' => 'guadagni',
+ 'exchange' => 'Scambio',
+ 'exchange-warning' => 'Gli scambi sono definitivi, per favore ricontrolla le tue scelte prima di fare uno scambio.',
+ 'extended-stats' => 'Statistiche estese',
+ 'gift' => 'Regalo',
+ 'gift-bonus' => 'Punti bonus regalo',
+ 'gift-to' => 'Punti bonus regalo a',
+ 'gifts' => 'I regali',
+ 'item' => 'Articolo',
+ 'no-refund' => 'NESSUN RIMBORSO!',
+ 'per-day' => 'Punti al giorno',
+ 'per-hour' => 'Punti per ora',
+ 'per-minute' => 'Punti al minuto',
+ 'per-month' => 'Punti al mese',
+ 'per-second' => 'Punti al secondo',
+ 'per-week' => 'Punti per settimana',
+ 'per-year' => 'Punti per anno',
+ 'points' => 'Punti',
+ 'receiver' => 'Ricevitore',
+ 'review-seeds' => 'Ripassa tutti i torrenti seminati',
+ 'send-gift' => 'Invia REGALO',
+ 'sender' => 'Mittente',
+ 'store' => 'Negozio',
+ 'tips' => 'Suggerimenti',
+ 'total' => 'Guadagni complessivi',
+ 'total-gifts' => 'In totale BON regali',
+ 'total-tips' => 'In Total BON Tips',
'you-have-received-gifts' => 'Hai ricevuto',
- 'you-have-sent-gifts' => 'Hai inviato',
- 'you-have-received-tips' => 'Hai ricevuto',
- 'you-have-sent-tips' => 'Hai inviato',
- 'your-points' => 'I tuoi punti',
+ 'you-have-sent-gifts' => 'Hai inviato',
+ 'you-have-received-tips' => 'Hai ricevuto',
+ 'you-have-sent-tips' => 'Hai inviato',
+ 'your-points' => 'I tuoi punti',
];
diff --git a/lang/it/bot.php b/lang/it/bot.php
index cd011d6f0..2f0aef533 100644
--- a/lang/it/bot.php
+++ b/lang/it/bot.php
@@ -12,15 +12,15 @@
*/
return [
- 'about' => 'Di',
- 'bot' => 'Bot',
- 'bots' => 'Motori di ricerca',
- 'color' => 'Colore',
- 'command' => 'Comando',
- 'edit-bot' => 'Modifica Bot',
+ 'about' => 'Di',
+ 'bot' => 'Bot',
+ 'bots' => 'Motori di ricerca',
+ 'color' => 'Colore',
+ 'command' => 'Comando',
+ 'edit-bot' => 'Modifica Bot',
'emoji-code' => 'Codice Emoji',
- 'help' => 'Aiuto',
- 'icon' => 'Icona',
- 'info' => 'Informazioni',
- 'name' => 'Nome',
+ 'help' => 'Aiuto',
+ 'icon' => 'Icona',
+ 'info' => 'Informazioni',
+ 'name' => 'Nome',
];
diff --git a/lang/it/bug.php b/lang/it/bug.php
index 7c9fda436..a11a798cf 100644
--- a/lang/it/bug.php
+++ b/lang/it/bug.php
@@ -12,15 +12,15 @@
*/
return [
- 'bug-report' => 'Riportare un errore',
+ 'bug-report' => 'Riportare un errore',
'bug-report-description' => 'Segnala un bug del sito',
- 'enter-description' => 'Descrivi il problema nel miglior modo possibile',
- 'enter-email' => 'Per favore inserisci la tua e-mail',
- 'enter-title' => 'Si prega di scegliere un titolo appropriato',
- 'enter-username' => 'Per favore inserisci il tuo cognome',
- 'high' => 'alto',
- 'low' => 'Basso',
- 'priority' => 'Priorità',
- 'priority-description' => 'Scegli solo molto alto se il bug è davvero un problema per l utilizzo del sito.',
- 'very-high' => 'Molto alto',
+ 'enter-description' => 'Descrivi il problema nel miglior modo possibile',
+ 'enter-email' => 'Per favore inserisci la tua e-mail',
+ 'enter-title' => 'Si prega di scegliere un titolo appropriato',
+ 'enter-username' => 'Per favore inserisci il tuo cognome',
+ 'high' => 'alto',
+ 'low' => 'Basso',
+ 'priority' => 'Priorità',
+ 'priority-description' => 'Scegli solo molto alto se il bug è davvero un problema per l utilizzo del sito.',
+ 'very-high' => 'Molto alto',
];
diff --git a/lang/it/common.php b/lang/it/common.php
index cf10bc48e..db0051da2 100644
--- a/lang/it/common.php
+++ b/lang/it/common.php
@@ -12,179 +12,179 @@
*/
return [
- 'a-an-art' => '',
- 'about' => 'Riguardo a noi',
- 'account' => 'Account',
- 'achievement-title' => 'Eccezionale',
+ 'a-an-art' => '',
+ 'about' => 'Riguardo a noi',
+ 'account' => 'Account',
+ 'achievement-title' => 'Eccezionale',
'achievement-unlocked' => 'Hai sbloccato l obiettivo ": nome"',
- 'active' => 'Attivo',
- 'active-warning' => 'Avvertimento attivo',
- 'add' => 'Inserisci',
- 'added' => 'aggiunto',
- 'amount' => 'Quantità',
- 'anonymous' => 'Anonimo',
- 'author' => 'Autore',
- 'balance' => 'Equilibrio',
- 'blacklist' => 'Lista nera clients',
- 'buffer' => 'Buffer',
- 'bug' => 'Segnalare un bug',
- 'but' => 'Ma',
- 'cancel' => 'Annulla',
- 'category' => 'Categoria',
- 'categories' => 'categorie',
- 'close' => 'Chiudi',
- 'comment' => 'Commento',
- 'comments' => 'Commenti',
- 'community' => 'Comunità',
- 'contact' => 'Contatto',
- 'contact-desc' => 'Questa richiesta di contatto verrà inviata al proprietario e ti ricontatterà il prima possibile',
- 'contact-header' => 'Ciao',
- 'create' => 'Creare',
- 'created_at' => 'Creato il',
- 'day' => 'Giorno',
- 'delete' => 'Elimina',
- 'delete-your-comment' => 'Elimina il tuo commento',
- 'description' => 'Descrizione',
- 'direction' => 'Direzione',
- 'disable' => 'disattivare',
- 'doubleup_activated' => 'Modalità doppio caricamento globale attivata',
- 'download' => 'Download',
- 'edit' => 'Modifica',
- 'edit-your-comment' => 'Modifica il tuo commento',
- 'email' => 'E-mail',
- 'email-blacklist' => 'Email Blacklist',
- 'email-whitelist' => 'Email Whitelist',
+ 'active' => 'Attivo',
+ 'active-warning' => 'Avvertimento attivo',
+ 'add' => 'Inserisci',
+ 'added' => 'aggiunto',
+ 'amount' => 'Quantità',
+ 'anonymous' => 'Anonimo',
+ 'author' => 'Autore',
+ 'balance' => 'Equilibrio',
+ 'blacklist' => 'Lista nera clients',
+ 'buffer' => 'Buffer',
+ 'bug' => 'Segnalare un bug',
+ 'but' => 'Ma',
+ 'cancel' => 'Annulla',
+ 'category' => 'Categoria',
+ 'categories' => 'categorie',
+ 'close' => 'Chiudi',
+ 'comment' => 'Commento',
+ 'comments' => 'Commenti',
+ 'community' => 'Comunità',
+ 'contact' => 'Contatto',
+ 'contact-desc' => 'Questa richiesta di contatto verrà inviata al proprietario e ti ricontatterà il prima possibile',
+ 'contact-header' => 'Ciao',
+ 'create' => 'Creare',
+ 'created_at' => 'Creato il',
+ 'day' => 'Giorno',
+ 'delete' => 'Elimina',
+ 'delete-your-comment' => 'Elimina il tuo commento',
+ 'description' => 'Descrizione',
+ 'direction' => 'Direzione',
+ 'disable' => 'disattivare',
+ 'doubleup_activated' => 'Modalità doppio caricamento globale attivata',
+ 'download' => 'Download',
+ 'edit' => 'Modifica',
+ 'edit-your-comment' => 'Modifica il tuo commento',
+ 'email' => 'E-mail',
+ 'email-blacklist' => 'Email Blacklist',
+ 'email-whitelist' => 'Email Whitelist',
'email-list-notactive' => 'Email Whitelist / Blacklist System non è attivato',
- 'enable' => 'Abilitare',
- 'enter' => 'accedere',
- 'error' => 'Errore',
- 'everyday' => 'Ogni giorno',
- 'expired' => 'Scaduto',
- 'extra' => 'Extra',
- 'extra-stats' => 'Extra-Stats',
- 'faq' => 'FAQ',
- 'files' => 'File',
- 'fl_token' => 'Token di Freeleech',
- 'fl_tokens' => 'Token di Freeleech',
- 'for' => 'per',
- 'forum' => 'Forum',
- 'free' => 'Gratuito',
- 'freeleech_activated' => 'Modalità Global Freeleech attivata',
- 'global' => 'Globale',
- 'group' => 'Gruppo',
- 'groups' => 'gruppi',
- 'hidden' => 'Nascosto',
- 'high-speeds' => 'Alte velocità',
- 'home' => 'Homepage',
- 'hot' => 'HOT!',
- 'hour' => 'Ora',
- 'huge' => 'Enorme',
- 'info' => 'Informazioni',
- 'internal' => 'Interno',
- 'ip' => 'IP',
- 'is-allowed' => 'È permesso',
- 'large' => 'Grande',
- 'latest' => 'Più recente',
- 'latest-posts' => 'ultimi post',
- 'latest-topics' => 'Ultimi argomenti',
- 'legal' => 'legale',
- 'legend' => 'Leggenda',
- 'lists' => 'elenchi',
- 'lock-account' => 'Blocca account',
- 'logout' => 'Disconnettersi',
- 'members' => 'Utenti',
- 'message' => 'Messaggio',
- 'minute' => 'minuto',
- 'moderated-by' => 'Moderato da',
- 'moderation' => 'Moderazione',
- 'moderation-approve' => 'Approvare',
- 'moderation-postpone' => 'rinviare',
- 'moderation-reject' => 'Rifiutare',
- 'month' => 'Mese',
- 'months' => 'mesi',
- 'my' => 'Mio',
- 'name' => 'Nome',
- 'navigation' => 'Navigazione',
- 'new' => 'Nuovo!',
- 'new-adj' => 'Nuovo',
- 'news' => 'Notizie',
- 'next' => 'Il prossimo',
- 'no' => 'No',
- 'no-comments' => 'Ancora nessun commento',
- 'no-result' => 'Non ci sono risultati nel database per la query',
- 'notifications' => 'notifiche',
- 'older-than' => 'Più vecchio di',
- 'oldest' => 'il più vecchio',
- 'openreg_activated' => 'Registrazione aperta attivata',
- 'order-by' => 'Ordinato da',
- 'other' => 'Altro',
- 'pages' => 'Pagine',
- 'password' => 'Parola d ordine',
- 'patron' => 'Diventa un Patrono',
- 'pending-torrents' => 'Torrenti in attesa',
- 'personal' => 'Personale',
- 'plural-suffix' => 'S',
- 'port' => 'Porta',
- 'position' => 'Posizione',
- 'posts' => 'Messaggi',
- 'powered-by' => 'Alimentato da UNIT3D',
- 'preview' => 'Anteprima',
- 'previous' => 'Precedente',
- 'progress' => 'Progresso',
- 'publish' => 'Pubblicare',
- 'quantity' => 'Quantità',
- 'quick-search' => 'Ricerca rapida',
- 'ratio' => 'Rapporto',
- 'reason' => 'Ragionare',
- 'remove' => 'Rimuovere',
- 'report' => 'Segnala',
- 'resend' => 'inviare di nuovo',
- 'reporter' => 'Reporter',
- 'required' => 'necessario',
- 'results' => 'risultati',
- 'rss-system' => 'Sistema RSS',
- 'rules' => 'Regole',
- 'save' => 'Salvare',
- 'search' => 'Ricerca',
- 'search-results' => 'Risultati di ricerca',
- 'search-results-desc' => 'Si prega di vedere i risultati qui sotto',
- 'second' => 'Secondo',
- 'select' => 'Selezionare',
- 'sort' => 'Ordinare',
- 'special' => 'Speciale',
- 'staff' => 'Staff',
- 'staff-tools' => 'Strumenti dello Staff',
- 'stats' => 'Statistiche',
- 'status' => 'Stato',
- 'sticked' => 'Sticked',
- 'submit' => 'Sottoscrivi',
- 'subscriptions' => 'Sottoscrizioni',
- 'teams' => 'squadre',
- 'terms' => 'Condizioni d uso',
- 'times' => 'Volte',
- 'title' => 'Titolo',
- 'top-bountied' => 'Top Bountied',
- 'topics' => 'Temi',
- 'tracker-codes' => 'Codici di monitoraggio',
- 'type' => 'Sorgente',
- 'type-verb' => 'genere',
- 'types' => 'tipi',
- 'genre' => 'Genere',
- 'genres' => 'generi',
- 'action' => 'Azione',
- 'actions' => 'Azioni',
- 'unknown' => 'Sconosciuto',
+ 'enable' => 'Abilitare',
+ 'enter' => 'accedere',
+ 'error' => 'Errore',
+ 'everyday' => 'Ogni giorno',
+ 'expired' => 'Scaduto',
+ 'extra' => 'Extra',
+ 'extra-stats' => 'Extra-Stats',
+ 'faq' => 'FAQ',
+ 'files' => 'File',
+ 'fl_token' => 'Token di Freeleech',
+ 'fl_tokens' => 'Token di Freeleech',
+ 'for' => 'per',
+ 'forum' => 'Forum',
+ 'free' => 'Gratuito',
+ 'freeleech_activated' => 'Modalità Global Freeleech attivata',
+ 'global' => 'Globale',
+ 'group' => 'Gruppo',
+ 'groups' => 'gruppi',
+ 'hidden' => 'Nascosto',
+ 'high-speeds' => 'Alte velocità',
+ 'home' => 'Homepage',
+ 'hot' => 'HOT!',
+ 'hour' => 'Ora',
+ 'huge' => 'Enorme',
+ 'info' => 'Informazioni',
+ 'internal' => 'Interno',
+ 'ip' => 'IP',
+ 'is-allowed' => 'È permesso',
+ 'large' => 'Grande',
+ 'latest' => 'Più recente',
+ 'latest-posts' => 'ultimi post',
+ 'latest-topics' => 'Ultimi argomenti',
+ 'legal' => 'legale',
+ 'legend' => 'Leggenda',
+ 'lists' => 'elenchi',
+ 'lock-account' => 'Blocca account',
+ 'logout' => 'Disconnettersi',
+ 'members' => 'Utenti',
+ 'message' => 'Messaggio',
+ 'minute' => 'minuto',
+ 'moderated-by' => 'Moderato da',
+ 'moderation' => 'Moderazione',
+ 'moderation-approve' => 'Approvare',
+ 'moderation-postpone' => 'rinviare',
+ 'moderation-reject' => 'Rifiutare',
+ 'month' => 'Mese',
+ 'months' => 'mesi',
+ 'my' => 'Mio',
+ 'name' => 'Nome',
+ 'navigation' => 'Navigazione',
+ 'new' => 'Nuovo!',
+ 'new-adj' => 'Nuovo',
+ 'news' => 'Notizie',
+ 'next' => 'Il prossimo',
+ 'no' => 'No',
+ 'no-comments' => 'Ancora nessun commento',
+ 'no-result' => 'Non ci sono risultati nel database per la query',
+ 'notifications' => 'notifiche',
+ 'older-than' => 'Più vecchio di',
+ 'oldest' => 'il più vecchio',
+ 'openreg_activated' => 'Registrazione aperta attivata',
+ 'order-by' => 'Ordinato da',
+ 'other' => 'Altro',
+ 'pages' => 'Pagine',
+ 'password' => 'Parola d ordine',
+ 'patron' => 'Diventa un Patrono',
+ 'pending-torrents' => 'Torrenti in attesa',
+ 'personal' => 'Personale',
+ 'plural-suffix' => 'S',
+ 'port' => 'Porta',
+ 'position' => 'Posizione',
+ 'posts' => 'Messaggi',
+ 'powered-by' => 'Alimentato da UNIT3D',
+ 'preview' => 'Anteprima',
+ 'previous' => 'Precedente',
+ 'progress' => 'Progresso',
+ 'publish' => 'Pubblicare',
+ 'quantity' => 'Quantità',
+ 'quick-search' => 'Ricerca rapida',
+ 'ratio' => 'Rapporto',
+ 'reason' => 'Ragionare',
+ 'remove' => 'Rimuovere',
+ 'report' => 'Segnala',
+ 'resend' => 'inviare di nuovo',
+ 'reporter' => 'Reporter',
+ 'required' => 'necessario',
+ 'results' => 'risultati',
+ 'rss-system' => 'Sistema RSS',
+ 'rules' => 'Regole',
+ 'save' => 'Salvare',
+ 'search' => 'Ricerca',
+ 'search-results' => 'Risultati di ricerca',
+ 'search-results-desc' => 'Si prega di vedere i risultati qui sotto',
+ 'second' => 'Secondo',
+ 'select' => 'Selezionare',
+ 'sort' => 'Ordinare',
+ 'special' => 'Speciale',
+ 'staff' => 'Staff',
+ 'staff-tools' => 'Strumenti dello Staff',
+ 'stats' => 'Statistiche',
+ 'status' => 'Stato',
+ 'sticked' => 'Sticked',
+ 'submit' => 'Sottoscrivi',
+ 'subscriptions' => 'Sottoscrizioni',
+ 'teams' => 'squadre',
+ 'terms' => 'Condizioni d uso',
+ 'times' => 'Volte',
+ 'title' => 'Titolo',
+ 'top-bountied' => 'Top Bountied',
+ 'topics' => 'Temi',
+ 'tracker-codes' => 'Codici di monitoraggio',
+ 'type' => 'Sorgente',
+ 'type-verb' => 'genere',
+ 'types' => 'tipi',
+ 'genre' => 'Genere',
+ 'genres' => 'generi',
+ 'action' => 'Azione',
+ 'actions' => 'Azioni',
+ 'unknown' => 'Sconosciuto',
'unlocked-achievement' => 'Hai sbloccato: realizzazione del successo',
- 'upload' => 'Upload',
- 'upload-guide' => 'Guida al caricamento',
- 'user' => 'Utente',
- 'username' => 'Nome utente',
- 'users' => 'utenti',
- 'view' => 'vista',
- 'view-all' => 'Guarda tutto',
- 'warnings' => 'Avvertenze',
- 'year' => 'Anno',
- 'yes' => 'sì',
- 'your' => 'Il tuo',
- 'your-comment' => 'Il tuo commento',
+ 'upload' => 'Upload',
+ 'upload-guide' => 'Guida al caricamento',
+ 'user' => 'Utente',
+ 'username' => 'Nome utente',
+ 'users' => 'utenti',
+ 'view' => 'vista',
+ 'view-all' => 'Guarda tutto',
+ 'warnings' => 'Avvertenze',
+ 'year' => 'Anno',
+ 'yes' => 'sì',
+ 'your' => 'Il tuo',
+ 'your-comment' => 'Il tuo commento',
];
diff --git a/lang/it/email.php b/lang/it/email.php
index 4b7f69f21..9ddb89a71 100644
--- a/lang/it/email.php
+++ b/lang/it/email.php
@@ -12,46 +12,46 @@
*/
return [
- 'activate-account' => 'Attiva account',
- 'ban-reason' => 'Motivazione',
- 'banned-footer' => '- Non sono state rispettate le regole',
- 'banned-header' => 'Sei stato bannato',
- 'bug-description' => 'Problema',
- 'bug-footer' => 'Risolvi quella schifezza',
- 'bug-header' => 'Nuovo bug report da',
- 'bug-priority' => 'Priorità',
- 'bug-title' => 'Titolo del bug',
- 'contact-header' => 'Nuova email di contatto da',
- 'contact-message' => 'Messaggio',
- 'contact-name' => 'Nome',
+ 'activate-account' => 'Attiva account',
+ 'ban-reason' => 'Motivazione',
+ 'banned-footer' => '- Non sono state rispettate le regole',
+ 'banned-header' => 'Sei stato bannato',
+ 'bug-description' => 'Problema',
+ 'bug-footer' => 'Risolvi quella schifezza',
+ 'bug-header' => 'Nuovo bug report da',
+ 'bug-priority' => 'Priorità',
+ 'bug-title' => 'Titolo del bug',
+ 'contact-header' => 'Nuova email di contatto da',
+ 'contact-message' => 'Messaggio',
+ 'contact-name' => 'Nome',
'fail-login-greeting' => 'Accesso all account non riuscito!',
- 'fail-login-line1' => 'È stato rilevato un accesso non riuscito per il tuo account.',
- 'fail-login-line2' => 'Questa richiesta è stata originata da: ip (: host) all indirizzo: time',
- 'fail-login-subject' => 'Notifica di accesso fallita',
- 'footer-link' => 'Se hai problemi a fare clic sul pulsante: actionText, copia e incolla l URL sottostante nel tuo browser web:',
- 'invite-header' => 'Invito a',
- 'invite-invited' => 'Sei stato invitato su',
- 'invite-message' => 'Messaggio',
- 'invite-signup' => 'Iscriviti ora',
- 'newreply-header' => 'C è una nuova risposta nel tuo argomento',
- 'newreply-message' => 'Messaggio',
- 'newreply-replied' => 'Ha risposto al tuo argomento',
- 'newreply-view' => 'Guardalo adesso',
- 'no-email-found' => 'Non siamo riusciti a trovare questa email nel nostro sistema!',
- 'register-code' => 'Per completare la tua attivazione, fai clic sul pulsante in basso',
- 'register-footer' => 'Se il pulsante sopra non funziona, copia e incolla questo URL nella barra degli indirizzi del browser',
- 'register-header' => 'Ciao! Grazie per esserti registrato su',
- 'report-comment' => 'Commento',
- 'report-email' => 'E-mail',
- 'report-header' => 'Ciao amministratore, è stato segnalato un link',
- 'report-link' => 'collegamento',
- 'report-link-hash' => 'Link effettivo',
- 'thanks' => 'Grazie per averlo usato',
- 'unban-footer' => '- Ben tornato!',
- 'unban-header' => 'Sei stato sbannato',
- 'unban-reason' => 'Motivazione',
- 'username-reminder' => 'Recentemente ci hai inviato una richiesta per ricordarti il nome utente. Il tuo nome utente è',
- 'username-sent' => 'Il tuo nome utente è stato inviato al tuo indirizzo email!',
- 'disabled-header' => 'Il tuo account è stato disabilitato',
- 'pruned-header' => 'Il tuo account è stato sospeso',
+ 'fail-login-line1' => 'È stato rilevato un accesso non riuscito per il tuo account.',
+ 'fail-login-line2' => 'Questa richiesta è stata originata da: ip (: host) all indirizzo: time',
+ 'fail-login-subject' => 'Notifica di accesso fallita',
+ 'footer-link' => 'Se hai problemi a fare clic sul pulsante: actionText, copia e incolla l URL sottostante nel tuo browser web:',
+ 'invite-header' => 'Invito a',
+ 'invite-invited' => 'Sei stato invitato su',
+ 'invite-message' => 'Messaggio',
+ 'invite-signup' => 'Iscriviti ora',
+ 'newreply-header' => 'C è una nuova risposta nel tuo argomento',
+ 'newreply-message' => 'Messaggio',
+ 'newreply-replied' => 'Ha risposto al tuo argomento',
+ 'newreply-view' => 'Guardalo adesso',
+ 'no-email-found' => 'Non siamo riusciti a trovare questa email nel nostro sistema!',
+ 'register-code' => 'Per completare la tua attivazione, fai clic sul pulsante in basso',
+ 'register-footer' => 'Se il pulsante sopra non funziona, copia e incolla questo URL nella barra degli indirizzi del browser',
+ 'register-header' => 'Ciao! Grazie per esserti registrato su',
+ 'report-comment' => 'Commento',
+ 'report-email' => 'E-mail',
+ 'report-header' => 'Ciao amministratore, è stato segnalato un link',
+ 'report-link' => 'collegamento',
+ 'report-link-hash' => 'Link effettivo',
+ 'thanks' => 'Grazie per averlo usato',
+ 'unban-footer' => '- Ben tornato!',
+ 'unban-header' => 'Sei stato sbannato',
+ 'unban-reason' => 'Motivazione',
+ 'username-reminder' => 'Recentemente ci hai inviato una richiesta per ricordarti il nome utente. Il tuo nome utente è',
+ 'username-sent' => 'Il tuo nome utente è stato inviato al tuo indirizzo email!',
+ 'disabled-header' => 'Il tuo account è stato disabilitato',
+ 'pruned-header' => 'Il tuo account è stato sospeso',
];
diff --git a/lang/it/forum.php b/lang/it/forum.php
index 7b99f8f73..c3ede7bf8 100644
--- a/lang/it/forum.php
+++ b/lang/it/forum.php
@@ -12,63 +12,63 @@
*/
return [
- 'action' => 'Azione',
- 'activity' => 'Attività',
- 'approved' => 'Approvato',
- 'author' => 'Autore',
- 'bug' => 'insetto',
- 'category-quick-search' => 'Ricerca rapida per nome argomento (all interno della categoria)',
- 'close-topic' => 'Blocca argomento',
- 'closed' => 'Chiuso',
- 'create-new-topic' => 'Crea nuovo argomento',
- 'created' => 'Creato',
- 'current' => 'attuale',
- 'delete-topic' => 'Elimina questo argomento',
- 'denied' => 'negato',
- 'dislike-post' => 'Non mi piace questo post',
- 'display-forum' => 'Mostra argomenti in',
- 'edit-post' => 'Modifica post',
- 'edit-topic' => 'Modifica argomento',
- 'forum' => 'Forum',
- 'forums' => 'Forum',
- 'implemented' => 'implementato',
- 'in' => 'Nel',
- 'invalid' => 'Non valido',
- 'label' => 'Etichetta',
- 'label-system' => 'Sistema di etichette',
- 'last-message' => 'Ultimo messaggio',
- 'last-post-info' => 'Informazioni ultimo post',
- 'latest' => 'Più recente',
- 'like-post' => 'Piace questo post',
- 'meta-category' => 'Elenco dei forum nella categoria',
- 'moderation' => 'Moderazione',
- 'name' => 'Nome',
- 'not-connected' => 'Devi essere connesso',
- 'not-subscribed' => 'Non iscritto',
- 'open' => 'Aperto',
- 'open-topic' => 'Apri questo argomento',
- 'permalink' => 'Permalink',
- 'pin' => 'Fissa',
- 'post' => 'Inviare',
- 'post-quick-search' => 'Ricerca rapida corpo postale',
- 'posts' => 'Messaggi',
- 'quote' => 'Citazione',
- 'read-topic' => 'Leggi l argomento',
- 'replies' => 'risposte',
- 'send-new-topic' => 'Salva questo argomento',
- 'solved' => 'risolto',
- 'state' => 'Stato',
- 'stats' => 'Statistiche',
- 'subscribed' => 'sottoscritto',
+ 'action' => 'Azione',
+ 'activity' => 'Attività',
+ 'approved' => 'Approvato',
+ 'author' => 'Autore',
+ 'bug' => 'insetto',
+ 'category-quick-search' => 'Ricerca rapida per nome argomento (all interno della categoria)',
+ 'close-topic' => 'Blocca argomento',
+ 'closed' => 'Chiuso',
+ 'create-new-topic' => 'Crea nuovo argomento',
+ 'created' => 'Creato',
+ 'current' => 'attuale',
+ 'delete-topic' => 'Elimina questo argomento',
+ 'denied' => 'negato',
+ 'dislike-post' => 'Non mi piace questo post',
+ 'display-forum' => 'Mostra argomenti in',
+ 'edit-post' => 'Modifica post',
+ 'edit-topic' => 'Modifica argomento',
+ 'forum' => 'Forum',
+ 'forums' => 'Forum',
+ 'implemented' => 'implementato',
+ 'in' => 'Nel',
+ 'invalid' => 'Non valido',
+ 'label' => 'Etichetta',
+ 'label-system' => 'Sistema di etichette',
+ 'last-message' => 'Ultimo messaggio',
+ 'last-post-info' => 'Informazioni ultimo post',
+ 'latest' => 'Più recente',
+ 'like-post' => 'Piace questo post',
+ 'meta-category' => 'Elenco dei forum nella categoria',
+ 'moderation' => 'Moderazione',
+ 'name' => 'Nome',
+ 'not-connected' => 'Devi essere connesso',
+ 'not-subscribed' => 'Non iscritto',
+ 'open' => 'Aperto',
+ 'open-topic' => 'Apri questo argomento',
+ 'permalink' => 'Permalink',
+ 'pin' => 'Fissa',
+ 'post' => 'Inviare',
+ 'post-quick-search' => 'Ricerca rapida corpo postale',
+ 'posts' => 'Messaggi',
+ 'quote' => 'Citazione',
+ 'read-topic' => 'Leggi l argomento',
+ 'replies' => 'risposte',
+ 'send-new-topic' => 'Salva questo argomento',
+ 'solved' => 'risolto',
+ 'state' => 'Stato',
+ 'stats' => 'Statistiche',
+ 'subscribed' => 'sottoscritto',
'subscription-quick-search' => 'Ricerca rapida per nome argomento (all interno degli abbonamenti)',
- 'suggestion' => 'Suggerimento',
- 'topic' => 'Argomento',
- 'topic-closed' => 'Questo argomento è chiuso',
- 'topic-name' => 'Nome dell argomento',
- 'topic-quick-search' => 'Argomento Nome ricerca rapida',
- 'topic-title' => 'Titolo di questo argomento',
- 'topics' => 'Temi',
- 'unpin' => 'Sblocca',
- 'view-all' => 'Visualizza tutti gli argomenti',
- 'views' => 'Visualizzazioni',
+ 'suggestion' => 'Suggerimento',
+ 'topic' => 'Argomento',
+ 'topic-closed' => 'Questo argomento è chiuso',
+ 'topic-name' => 'Nome dell argomento',
+ 'topic-quick-search' => 'Argomento Nome ricerca rapida',
+ 'topic-title' => 'Titolo di questo argomento',
+ 'topics' => 'Temi',
+ 'unpin' => 'Sblocca',
+ 'view-all' => 'Visualizza tutti gli argomenti',
+ 'views' => 'Visualizzazioni',
];
diff --git a/lang/it/graveyard.php b/lang/it/graveyard.php
index 0e587b880..09faec252 100644
--- a/lang/it/graveyard.php
+++ b/lang/it/graveyard.php
@@ -12,15 +12,15 @@
*/
return [
- 'dead' => 'Morto',
- 'graveyard' => 'Cimitero',
- 'guidelines' => 'Linee guida',
+ 'dead' => 'Morto',
+ 'graveyard' => 'Cimitero',
+ 'guidelines' => 'Linee guida',
'guidelines-content' => '1) Non puoi resuscitare i tuoi caricamenti.
2) Non resuscitare qualcosa che non puoi impegnare troppo.',
- 'howto' => 'Ecco la regola',
- 'howto-desc1' => 'Devi seminare :name per 30 giorni per una risurrezione di successo. Nel qual caso, quando il vostro seedtime attuale di',
- 'howto-desc2' => 'Sarai ricompensato',
- 'howto-hits' => 'Colpi',
- 'pending' => 'in attesa di',
- 'resurrect' => 'riesumare',
- 'reward' => 'Token Freeleech',
+ 'howto' => 'Ecco la regola',
+ 'howto-desc1' => 'Devi seminare :name per 30 giorni per una risurrezione di successo. Nel qual caso, quando il vostro seedtime attuale di',
+ 'howto-desc2' => 'Sarai ricompensato',
+ 'howto-hits' => 'Colpi',
+ 'pending' => 'in attesa di',
+ 'resurrect' => 'riesumare',
+ 'reward' => 'Token Freeleech',
];
diff --git a/lang/it/notification.php b/lang/it/notification.php
index 6433e59eb..213f36c68 100644
--- a/lang/it/notification.php
+++ b/lang/it/notification.php
@@ -12,14 +12,14 @@
*/
return [
- 'date' => 'Data',
- 'delete' => 'Elimina',
- 'delete-all' => 'Elimina tutte le notifiche',
- 'mark-all-read' => 'Segna tutti come letti',
- 'mark-read' => 'segna come letto',
- 'message' => 'Messaggio',
+ 'date' => 'Data',
+ 'delete' => 'Elimina',
+ 'delete-all' => 'Elimina tutte le notifiche',
+ 'mark-all-read' => 'Segna tutti come letti',
+ 'mark-read' => 'segna come letto',
+ 'message' => 'Messaggio',
'no-notifications' => 'Non sono state trovate notifiche',
- 'notifications' => 'notifiche',
- 'read' => 'Leggere',
- 'title' => 'Titolo',
+ 'notifications' => 'notifiche',
+ 'read' => 'Leggere',
+ 'title' => 'Titolo',
];
diff --git a/lang/it/page.php b/lang/it/page.php
index bfdd5baef..a959f34a0 100644
--- a/lang/it/page.php
+++ b/lang/it/page.php
@@ -12,28 +12,28 @@
*/
return [
- 'aboutus-advantage' => 'Il vantaggio',
- 'aboutus-advantage1' => 'Abbiamo membri e membri esperti che conoscono bene il mondo del video / audio HD e del supporto tecnico.',
- 'aboutus-advantage2' => 'Insieme con la nostra vasta passione per film e programmi TV, offriamo anche una delle migliori selezioni di qualcosa che più non - FANRES! UN GRANDE GRAZIE ai nostri portatori di contenuti.',
- 'aboutus-advantage3' => 'Mentre accettiamo le donazioni per mantenere il sito attivo e funzionante non ci saranno PM o banner pestering sul sito. Non implorare da noi.',
- 'aboutus-advantage4' => 'La nostra comunità non è seconda a nessuno per la sua tenera età. Tra il nostro staff e la base di utenti, eravamo sempre qui per aiutare. Erano appassionati di assicurarsi che la tua esperienza su: il titolo è a dir poco sorprendente.',
- 'aboutus-advantage5' => 'Il nostro servizio è utilizzato quotidianamente da molte persone in tutto il mondo. Abbiamo dimostrato che ci interessa la funzionalità e la sicurezza del nostro codebase e può essere considerato affidabile e affidabile. I nostri sviluppatori lavorano quotidianamente per fornire un vero codice base di nex-gen.',
- 'aboutus-header' => 'Ciao',
- 'aboutus-rules' => 'Cosa abbiamo bisogno di te',
- 'aboutus-rules1' => 'Per essere un membro attivo della comunità! Ciò significa partecipare alle conversazioni in modo produttivo, aggiungere contenuti approvati e aiutare gli altri utenti, se possibile.',
- 'aboutus-rules2' => 'Per leggere le regole per intero e per favore rispettali!',
- 'aboutus-rules3' => 'Dare suggerimenti! Ci stiamo sforzando di rendere: titolo migliore ogni giorno. Non stiamo dicendo che ogni suggerimento verrà usato, ma non fa mai male vedere nuove idee.',
- 'aboutus-welcome' => 'Parliamone',
- 'aboutus-welcome-desc' => ': title è un database Movie / TV / FANRES realizzato dalla comunità . Tutti i dati sono stati aggiunti dalla nostra straordinaria community dal 2017.: i titoli si concentrano principalmente sui contenuti HD, una base di utenti proattiva, una base di codice impressionante / sicura e un team di personale cordiale e disponibile.',
- 'blacklist-browsers' => 'browser',
- 'blacklist-btclient' => 'Client BitTorrent',
- 'blacklist-clients' => 'clienti',
- 'blacklist-desc' => 'I seguenti browser e client Bittorrent sono nella lista nera / Proibiti dall annuncio di: titolo',
- 'blacklist-webbrowser' => 'Programma di navigazione in rete',
+ 'aboutus-advantage' => 'Il vantaggio',
+ 'aboutus-advantage1' => 'Abbiamo membri e membri esperti che conoscono bene il mondo del video / audio HD e del supporto tecnico.',
+ 'aboutus-advantage2' => 'Insieme con la nostra vasta passione per film e programmi TV, offriamo anche una delle migliori selezioni di qualcosa che più non - FANRES! UN GRANDE GRAZIE ai nostri portatori di contenuti.',
+ 'aboutus-advantage3' => 'Mentre accettiamo le donazioni per mantenere il sito attivo e funzionante non ci saranno PM o banner pestering sul sito. Non implorare da noi.',
+ 'aboutus-advantage4' => 'La nostra comunità non è seconda a nessuno per la sua tenera età. Tra il nostro staff e la base di utenti, eravamo sempre qui per aiutare. Erano appassionati di assicurarsi che la tua esperienza su: il titolo è a dir poco sorprendente.',
+ 'aboutus-advantage5' => 'Il nostro servizio è utilizzato quotidianamente da molte persone in tutto il mondo. Abbiamo dimostrato che ci interessa la funzionalità e la sicurezza del nostro codebase e può essere considerato affidabile e affidabile. I nostri sviluppatori lavorano quotidianamente per fornire un vero codice base di nex-gen.',
+ 'aboutus-header' => 'Ciao',
+ 'aboutus-rules' => 'Cosa abbiamo bisogno di te',
+ 'aboutus-rules1' => 'Per essere un membro attivo della comunità! Ciò significa partecipare alle conversazioni in modo produttivo, aggiungere contenuti approvati e aiutare gli altri utenti, se possibile.',
+ 'aboutus-rules2' => 'Per leggere le regole per intero e per favore rispettali!',
+ 'aboutus-rules3' => 'Dare suggerimenti! Ci stiamo sforzando di rendere: titolo migliore ogni giorno. Non stiamo dicendo che ogni suggerimento verrà usato, ma non fa mai male vedere nuove idee.',
+ 'aboutus-welcome' => 'Parliamone',
+ 'aboutus-welcome-desc' => ': title è un database Movie / TV / FANRES realizzato dalla comunità . Tutti i dati sono stati aggiunti dalla nostra straordinaria community dal 2017.: i titoli si concentrano principalmente sui contenuti HD, una base di utenti proattiva, una base di codice impressionante / sicura e un team di personale cordiale e disponibile.',
+ 'blacklist-browsers' => 'browser',
+ 'blacklist-btclient' => 'Client BitTorrent',
+ 'blacklist-clients' => 'clienti',
+ 'blacklist-desc' => 'I seguenti browser e client Bittorrent sono nella lista nera / Proibiti dall annuncio di: titolo',
+ 'blacklist-webbrowser' => 'Programma di navigazione in rete',
'blacklist-emaildomain' => 'Dominio bloccato',
- 'email-blacklist-desc' => 'I seguenti domini di posta elettronica sono bloccati dall essere utilizzati. Non puoi registrarti o inviare un invito al seguente.',
- 'email-whitelist-desc' => 'I seguenti domini di posta elettronica sono i soli domini di posta elettronica ad essere autorizzati. Puoi solo registrarti o inviare un invito usando il seguente.',
- 'staff-group' => 'Gruppo',
- 'staff-title' => 'Titolo',
+ 'email-blacklist-desc' => 'I seguenti domini di posta elettronica sono bloccati dall essere utilizzati. Non puoi registrarti o inviare un invito al seguente.',
+ 'email-whitelist-desc' => 'I seguenti domini di posta elettronica sono i soli domini di posta elettronica ad essere autorizzati. Puoi solo registrarti o inviare un invito usando il seguente.',
+ 'staff-group' => 'Gruppo',
+ 'staff-title' => 'Titolo',
'whitelist-emaildomain' => 'Dominio fidato',
];
diff --git a/lang/it/pagination.php b/lang/it/pagination.php
index 60ce6f3aa..9bf9ba557 100644
--- a/lang/it/pagination.php
+++ b/lang/it/pagination.php
@@ -24,5 +24,5 @@ return [
*/
'previous' => '« Precedente',
- 'next' => 'Successivo »',
+ 'next' => 'Successivo »',
];
diff --git a/lang/it/passwords.php b/lang/it/passwords.php
index dac3d9be9..1089876fc 100644
--- a/lang/it/passwords.php
+++ b/lang/it/passwords.php
@@ -24,8 +24,8 @@ return [
*/
'password' => 'Le password devono essere di almeno 6 caratteri e devono coincidere.',
- 'reset' => 'La password è stata reimpostata!',
- 'sent' => 'Promemoria della password inviato!',
- 'token' => 'Questo token per la reimpostazione della password non è valido.',
- 'user' => 'Non esiste un utente associato a questo indirizzo e-mail.',
+ 'reset' => 'La password è stata reimpostata!',
+ 'sent' => 'Promemoria della password inviato!',
+ 'token' => 'Questo token per la reimpostazione della password non è valido.',
+ 'user' => 'Non esiste un utente associato a questo indirizzo e-mail.',
];
diff --git a/lang/it/pm.php b/lang/it/pm.php
index b000defb3..aafe77394 100644
--- a/lang/it/pm.php
+++ b/lang/it/pm.php
@@ -12,28 +12,28 @@
*/
return [
- 'create' => 'Creare',
- 'delete' => 'Elimina',
+ 'create' => 'Creare',
+ 'delete' => 'Elimina',
'enter-subject' => 'Inserisci l oggetto',
- 'from' => 'Inviato da',
- 'inbox' => 'Posta in arrivo',
+ 'from' => 'Inviato da',
+ 'inbox' => 'Posta in arrivo',
'mark-all-read' => 'Segna tutti i messaggi come letti',
- 'message' => 'Messaggio',
- 'messages' => 'messaggi',
- 'new' => 'Nuovo messaggio',
- 'outbox' => 'In uscita',
- 'private' => 'Privato',
- 'read' => 'Letto',
- 'received-at' => 'Ricevuto',
- 'refresh' => 'ricaricare',
- 'reply' => 'rispondere',
- 'search' => 'Cerca per argomento',
- 'select' => 'Seleziona un utente',
- 'send' => 'Invia PM',
- 'send-to' => 'Invia PM a',
- 'sent' => 'Inviato',
- 'sent-at' => 'Inviato',
- 'subject' => 'Soggetto',
- 'to' => 'A',
- 'unread' => 'Non letto',
+ 'message' => 'Messaggio',
+ 'messages' => 'messaggi',
+ 'new' => 'Nuovo messaggio',
+ 'outbox' => 'In uscita',
+ 'private' => 'Privato',
+ 'read' => 'Letto',
+ 'received-at' => 'Ricevuto',
+ 'refresh' => 'ricaricare',
+ 'reply' => 'rispondere',
+ 'search' => 'Cerca per argomento',
+ 'select' => 'Seleziona un utente',
+ 'send' => 'Invia PM',
+ 'send-to' => 'Invia PM a',
+ 'sent' => 'Inviato',
+ 'sent-at' => 'Inviato',
+ 'subject' => 'Soggetto',
+ 'to' => 'A',
+ 'unread' => 'Non letto',
];
diff --git a/lang/it/poll.php b/lang/it/poll.php
index 5a19b29a7..9109fd5a6 100644
--- a/lang/it/poll.php
+++ b/lang/it/poll.php
@@ -12,18 +12,18 @@
*/
return [
- 'add-option' => 'Aggiungi opzione',
- 'create-poll' => 'Crea sondaggio',
- 'current' => 'Sondaggio (i) corrente',
- 'delete-option' => 'Elimina l opzione',
+ 'add-option' => 'Aggiungi opzione',
+ 'create-poll' => 'Crea sondaggio',
+ 'current' => 'Sondaggio (i) corrente',
+ 'delete-option' => 'Elimina l opzione',
'multiple-choice' => 'Questo è un sondaggio a scelta multipla. Seleziona tutte le risposte che vuoi.',
- 'option' => 'Opzione',
- 'poll' => 'Sondaggio',
- 'polls' => 'sondaggi',
- 'results' => 'Risultati del sondaggio',
- 'title' => 'Titolo',
- 'total' => 'Voti totali di sempre',
- 'vote' => 'Votazione',
- 'vote-now' => 'Ottieni il tuo voto adesso!',
- 'votes' => 'voti',
+ 'option' => 'Opzione',
+ 'poll' => 'Sondaggio',
+ 'polls' => 'sondaggi',
+ 'results' => 'Risultati del sondaggio',
+ 'title' => 'Titolo',
+ 'total' => 'Voti totali di sempre',
+ 'vote' => 'Votazione',
+ 'vote-now' => 'Ottieni il tuo voto adesso!',
+ 'votes' => 'voti',
];
diff --git a/lang/it/request.php b/lang/it/request.php
index 5f861d3f6..eb58e1dac 100644
--- a/lang/it/request.php
+++ b/lang/it/request.php
@@ -12,67 +12,67 @@
*/
return [
- 'add-request' => 'Aggiungi richiesta',
- 'age' => 'Età',
- 'all-requests' => 'Tutte le richieste',
- 'approve' => 'Approvare',
- 'bounty' => 'generosità',
- 'bounty-claimed' => 'Bounty ha sostenuto',
- 'bounty-unclaimed' => 'La taglia non reclamata',
- 'category' => 'Categoria',
- 'claim' => 'Richiesta',
- 'claim-anon-choose' => 'Si prega di scegliere con saggezza',
- 'claim-as-anon' => 'Vorresti rivendicare questo in modo anonimo',
- 'claim-now' => 'Richiedi ora',
- 'claimed' => 'Ha sostenuto',
- 'current' => 'attuale',
- 'delete' => 'Elimina questa richiesta',
+ 'add-request' => 'Aggiungi richiesta',
+ 'age' => 'Età',
+ 'all-requests' => 'Tutte le richieste',
+ 'approve' => 'Approvare',
+ 'bounty' => 'generosità',
+ 'bounty-claimed' => 'Bounty ha sostenuto',
+ 'bounty-unclaimed' => 'La taglia non reclamata',
+ 'category' => 'Categoria',
+ 'claim' => 'Richiesta',
+ 'claim-anon-choose' => 'Si prega di scegliere con saggezza',
+ 'claim-as-anon' => 'Vorresti rivendicare questo in modo anonimo',
+ 'claim-now' => 'Richiedi ora',
+ 'claimed' => 'Ha sostenuto',
+ 'current' => 'attuale',
+ 'delete' => 'Elimina questa richiesta',
'delete-confirmation' => 'Sei sicuro di voler eliminare questa richiesta',
- 'delete-filled' => 'Questa richiesta può essere cancellata solo se non è stata compilata',
- 'description' => 'Descrizione',
- 'dont-have-bps' => 'Non hai abbastanza bonus',
- 'edit-request' => 'Modifica richiesta',
- 'enter-bp' => 'Inserisci punti bonus (minimo 100)',
- 'enter-hash' => 'Inserisci l hash di informazioni del torrente caricato',
- 'fill' => 'Riempire',
- 'fill-request' => 'Compila questa richiesta',
- 'filled' => 'pieno',
- 'filled-by' => 'Riempito da',
- 'for' => 'per',
- 'fulfill' => 'Adempiere',
- 'last-vote' => 'Ultimo voto',
- 'my-requests' => 'Le mie richieste',
- 'no' => 'No,',
- 'no-imdb-id' => 'Tutte le richieste devono contenere un numero IMDB',
- 'no-privileges' => 'Errore: i tuoi diritti di richiesta sono stati disabilitati',
- 'no-privileges-desc' => 'Se ritieni che ciò sia dovuto a errori, contatta il personale',
- 'no-refunds' => 'Gli scambi BON su creazione, riempimento e taglie sono definitivi!
NESSUN RIMBORSO!',
- 'pending' => 'in attesa di',
- 'reason' => 'Ragionare',
- 'reject' => 'Rifiutare',
- 'report' => 'Segnala richiesta',
- 'request' => 'Richiesta',
- 'request-details' => 'Richiedi dettagli',
- 'requested-by' => 'Richiesto da',
- 'requests' => 'richieste',
- 'required' => 'necessario',
- 'reset' => 'Reset',
- 'reset-confirmation' => 'Sei sicuro di voler resettare questa richiesta',
- 'reset-request' => 'Resetta questa richiesta',
- 'reward' => 'Ricompensa',
- 'reward-desc' => 'Quanto bonus ti piacerebbe premiare? Minimo 100 BP',
- 'reward-from' => 'A partire dal',
- 'title' => 'Titolo',
- 'torrent-hash' => 'Torrent Hash',
- 'total-bounty' => 'Taglia totale',
- 'type' => 'genere',
- 'unclaim' => 'Annulla la richiesta',
- 'unfilled' => 'unfilled',
- 'view-filled' => 'Visualizza pieno',
- 'view-unfilled' => 'Visualizza vuoto',
- 'vote' => 'Votazione',
- 'vote-that' => 'Vota questa richiesta',
- 'voters' => 'Gli elettori',
- 'votes' => 'voti',
- 'yes' => 'sì',
+ 'delete-filled' => 'Questa richiesta può essere cancellata solo se non è stata compilata',
+ 'description' => 'Descrizione',
+ 'dont-have-bps' => 'Non hai abbastanza bonus',
+ 'edit-request' => 'Modifica richiesta',
+ 'enter-bp' => 'Inserisci punti bonus (minimo 100)',
+ 'enter-hash' => 'Inserisci l hash di informazioni del torrente caricato',
+ 'fill' => 'Riempire',
+ 'fill-request' => 'Compila questa richiesta',
+ 'filled' => 'pieno',
+ 'filled-by' => 'Riempito da',
+ 'for' => 'per',
+ 'fulfill' => 'Adempiere',
+ 'last-vote' => 'Ultimo voto',
+ 'my-requests' => 'Le mie richieste',
+ 'no' => 'No,',
+ 'no-imdb-id' => 'Tutte le richieste devono contenere un numero IMDB',
+ 'no-privileges' => 'Errore: i tuoi diritti di richiesta sono stati disabilitati',
+ 'no-privileges-desc' => 'Se ritieni che ciò sia dovuto a errori, contatta il personale',
+ 'no-refunds' => 'Gli scambi BON su creazione, riempimento e taglie sono definitivi!
NESSUN RIMBORSO!',
+ 'pending' => 'in attesa di',
+ 'reason' => 'Ragionare',
+ 'reject' => 'Rifiutare',
+ 'report' => 'Segnala richiesta',
+ 'request' => 'Richiesta',
+ 'request-details' => 'Richiedi dettagli',
+ 'requested-by' => 'Richiesto da',
+ 'requests' => 'richieste',
+ 'required' => 'necessario',
+ 'reset' => 'Reset',
+ 'reset-confirmation' => 'Sei sicuro di voler resettare questa richiesta',
+ 'reset-request' => 'Resetta questa richiesta',
+ 'reward' => 'Ricompensa',
+ 'reward-desc' => 'Quanto bonus ti piacerebbe premiare? Minimo 100 BP',
+ 'reward-from' => 'A partire dal',
+ 'title' => 'Titolo',
+ 'torrent-hash' => 'Torrent Hash',
+ 'total-bounty' => 'Taglia totale',
+ 'type' => 'genere',
+ 'unclaim' => 'Annulla la richiesta',
+ 'unfilled' => 'unfilled',
+ 'view-filled' => 'Visualizza pieno',
+ 'view-unfilled' => 'Visualizza vuoto',
+ 'vote' => 'Votazione',
+ 'vote-that' => 'Vota questa richiesta',
+ 'voters' => 'Gli elettori',
+ 'votes' => 'voti',
+ 'yes' => 'sì',
];
diff --git a/lang/it/rss.php b/lang/it/rss.php
index 5db0a9c41..18f8ac121 100644
--- a/lang/it/rss.php
+++ b/lang/it/rss.php
@@ -12,19 +12,19 @@
*/
return [
- 'create' => 'Creare',
+ 'create' => 'Creare',
'create-private-feed' => 'Crea un feed RSS privato',
- 'create-public-feed' => 'Crea un feed RSS pubblico',
- 'delete' => 'Elimina',
- 'edit' => 'modificare',
- 'edit-private-feed' => 'Modifica feed RSS privato',
- 'edit-public-feed' => 'Modifica feed RSS pubblico',
- 'feed' => 'Alimentazione',
- 'feeds' => 'Feed',
- 'name' => 'Nome',
- 'public' => 'Pubblico',
- 'private' => 'Privato',
- 'rss' => 'RSS',
- 'rss-feed' => 'RSS Feed',
- 'type' => 'genere',
+ 'create-public-feed' => 'Crea un feed RSS pubblico',
+ 'delete' => 'Elimina',
+ 'edit' => 'modificare',
+ 'edit-private-feed' => 'Modifica feed RSS privato',
+ 'edit-public-feed' => 'Modifica feed RSS pubblico',
+ 'feed' => 'Alimentazione',
+ 'feeds' => 'Feed',
+ 'name' => 'Nome',
+ 'public' => 'Pubblico',
+ 'private' => 'Privato',
+ 'rss' => 'RSS',
+ 'rss-feed' => 'RSS Feed',
+ 'type' => 'genere',
];
diff --git a/lang/it/staff.php b/lang/it/staff.php
index 53443b099..ff5e01b00 100644
--- a/lang/it/staff.php
+++ b/lang/it/staff.php
@@ -12,48 +12,48 @@
*/
return [
- 'audit-log' => 'Registro delle attività',
- 'articles' => 'Articoli',
- 'applications' => 'Applications',
- 'bans-log' => 'Log dei BAN',
- 'blocks' => 'Blocchi',
- 'bot' => 'Bot',
- 'bots' => 'Motori di ricerca',
- 'chat' => 'Chiacchierare',
- 'config-manager' => 'Responsabile della configurazione',
- 'dashboard' => 'Cruscotto',
- 'failed-login-log' => 'Log accessi non riusciti',
- 'flush-ghost-peers' => 'Colpisci i Ghost',
- 'forums' => 'Forum',
- 'frontend' => 'FrontEnd',
- 'general-tools' => 'Strumenti generali',
- 'groups' => 'Gruppi',
- 'invites-log' => 'Registro inviti',
- 'laravel-log' => 'Log di Laravel',
- 'links' => 'link',
- 'logs' => 'Logs',
- 'mass-pm' => 'PM di massa',
- 'mass-validate-users' => 'Mass Validate Users',
- 'moderation' => 'Moderazione',
- 'pages' => 'Pagine',
- 'please-moderate' => 'Si prega di moderare questo torrent!',
- 'polls' => 'Sondaggi',
- 'reports-log' => 'Registro rapporti',
- 'rss' => 'RSS',
- 'staff-dashboard' => 'Staff Dashboard',
- 'torrent-categories' => 'Categorie Torrent',
- 'torrent-moderation' => 'Moderazione del torrent',
- 'torrent-tools' => 'Strumenti Torrent',
- 'torrent-types' => 'Tipi di Torrents',
- 'torrents' => 'Torrents',
- 'user-gifting' => 'Regalo agli utenti',
- 'user-notes' => 'Registro note utente',
- 'user-search' => 'Ricerca utente',
- 'user-tools' => 'Strumenti utente',
- 'warnings-log' => 'Log avvertimenti',
- 'you-have' => 'Hai',
+ 'audit-log' => 'Registro delle attività',
+ 'articles' => 'Articoli',
+ 'applications' => 'Applications',
+ 'bans-log' => 'Log dei BAN',
+ 'blocks' => 'Blocchi',
+ 'bot' => 'Bot',
+ 'bots' => 'Motori di ricerca',
+ 'chat' => 'Chiacchierare',
+ 'config-manager' => 'Responsabile della configurazione',
+ 'dashboard' => 'Cruscotto',
+ 'failed-login-log' => 'Log accessi non riusciti',
+ 'flush-ghost-peers' => 'Colpisci i Ghost',
+ 'forums' => 'Forum',
+ 'frontend' => 'FrontEnd',
+ 'general-tools' => 'Strumenti generali',
+ 'groups' => 'Gruppi',
+ 'invites-log' => 'Registro inviti',
+ 'laravel-log' => 'Log di Laravel',
+ 'links' => 'link',
+ 'logs' => 'Logs',
+ 'mass-pm' => 'PM di massa',
+ 'mass-validate-users' => 'Mass Validate Users',
+ 'moderation' => 'Moderazione',
+ 'pages' => 'Pagine',
+ 'please-moderate' => 'Si prega di moderare questo torrent!',
+ 'polls' => 'Sondaggi',
+ 'reports-log' => 'Registro rapporti',
+ 'rss' => 'RSS',
+ 'staff-dashboard' => 'Staff Dashboard',
+ 'torrent-categories' => 'Categorie Torrent',
+ 'torrent-moderation' => 'Moderazione del torrent',
+ 'torrent-tools' => 'Strumenti Torrent',
+ 'torrent-types' => 'Tipi di Torrents',
+ 'torrents' => 'Torrents',
+ 'user-gifting' => 'Regalo agli utenti',
+ 'user-notes' => 'Registro note utente',
+ 'user-search' => 'Ricerca utente',
+ 'user-tools' => 'Strumenti utente',
+ 'warnings-log' => 'Log avvertimenti',
+ 'you-have' => 'Hai',
'possible-leech-cheaters' => 'Possibili imbrogli',
- 'chat-tools' => 'Strumenti di chat',
- 'flush-chat' => 'Cancella Chatbox',
- 'seedboxes' => 'Seedbox registrate',
+ 'chat-tools' => 'Strumenti di chat',
+ 'flush-chat' => 'Cancella Chatbox',
+ 'seedboxes' => 'Seedbox registrate',
];
diff --git a/lang/it/stat.php b/lang/it/stat.php
index f2cca4643..b26614528 100644
--- a/lang/it/stat.php
+++ b/lang/it/stat.php
@@ -12,44 +12,44 @@
*/
return [
- 'all-time' => 'Generale',
- 'by-count' => 'Per numero',
- 'by-data' => 'Per dati',
- 'by-volume' => 'Per volume',
- 'group' => 'Gruppo',
- 'groups' => 'Gruppi',
- 'last30days' => 'Ultimi 30 giorni',
- 'nerd-stats' => 'Statistiche nerd',
- 'nerd-stats-desc' => 'Amiamo tutti le statistiche. Ecco alcune che riteniamo importanti',
- 'languages' => 'Lingua',
- 'place' => 'Posizione',
- 'registration-date' => 'Data di registrazione',
- 'request-fulfilled' => 'Richiesta soddisfatta',
- 'request-not-fulfilled' => 'Richiesta non soddisfatta',
+ 'all-time' => 'Generale',
+ 'by-count' => 'Per numero',
+ 'by-data' => 'Per dati',
+ 'by-volume' => 'Per volume',
+ 'group' => 'Gruppo',
+ 'groups' => 'Gruppi',
+ 'last30days' => 'Ultimi 30 giorni',
+ 'nerd-stats' => 'Statistiche nerd',
+ 'nerd-stats-desc' => 'Amiamo tutti le statistiche. Ecco alcune che riteniamo importanti',
+ 'languages' => 'Lingua',
+ 'place' => 'Posizione',
+ 'registration-date' => 'Data di registrazione',
+ 'request-fulfilled' => 'Richiesta soddisfatta',
+ 'request-not-fulfilled' => 'Richiesta non soddisfatta',
'request-pending-aproval' => 'Richiesta in attesa di approvazione',
- 'select-category' => 'Si prega di selezionare una categoria qui sotto',
- 'site-stats' => 'Statistiche del sito',
- 'stats' => 'Statistiche',
- 'stats-format' => 'Tutte le statistiche visualizzate nel formato Top 100',
- 'top-bankers' => 'Top banchieri',
- 'top-bountied' => 'Top Bountied',
- 'top-completed' => 'In alto completato',
- 'top-dead' => 'Top Dead',
- 'top-downloaded' => 'Top Torrent scaricati',
- 'top-downloaders' => 'Top downloader',
- 'top-dying' => 'Top Dying',
- 'top-leeched' => 'Top Leeched',
- 'top-leechers' => 'Leechers migliori',
- 'top-seeded' => 'Top Seed',
- 'top-seeding' => 'Top Seeding',
- 'top-seeders' => 'Top Seeders',
- 'top-seedsize' => 'Top Seedsize',
- 'top-seedtime' => 'Top Seedtime',
- 'top-uploaders' => 'Principali uploader',
- 'total-download' => 'Download totale',
- 'total-torrents' => 'Torrents totali',
- 'total-traffic' => 'Traffico totale',
- 'total-upload' => 'Upload totale',
- 'users-in-group' => 'Utenti nel gruppo',
- 'users-per-group' => 'Utenti per gruppo',
+ 'select-category' => 'Si prega di selezionare una categoria qui sotto',
+ 'site-stats' => 'Statistiche del sito',
+ 'stats' => 'Statistiche',
+ 'stats-format' => 'Tutte le statistiche visualizzate nel formato Top 100',
+ 'top-bankers' => 'Top banchieri',
+ 'top-bountied' => 'Top Bountied',
+ 'top-completed' => 'In alto completato',
+ 'top-dead' => 'Top Dead',
+ 'top-downloaded' => 'Top Torrent scaricati',
+ 'top-downloaders' => 'Top downloader',
+ 'top-dying' => 'Top Dying',
+ 'top-leeched' => 'Top Leeched',
+ 'top-leechers' => 'Leechers migliori',
+ 'top-seeded' => 'Top Seed',
+ 'top-seeding' => 'Top Seeding',
+ 'top-seeders' => 'Top Seeders',
+ 'top-seedsize' => 'Top Seedsize',
+ 'top-seedtime' => 'Top Seedtime',
+ 'top-uploaders' => 'Principali uploader',
+ 'total-download' => 'Download totale',
+ 'total-torrents' => 'Torrents totali',
+ 'total-traffic' => 'Traffico totale',
+ 'total-upload' => 'Upload totale',
+ 'users-in-group' => 'Utenti nel gruppo',
+ 'users-per-group' => 'Utenti per gruppo',
];
diff --git a/lang/it/torrent.php b/lang/it/torrent.php
index fb29ce7a7..aa981847f 100644
--- a/lang/it/torrent.php
+++ b/lang/it/torrent.php
@@ -12,200 +12,200 @@
*/
return [
- 'activity' => 'Attività',
- 'age' => 'Età',
- 'agent' => 'Agente',
- 'alive' => 'Vivo',
- 'announce-url' => 'Annunciare l URL',
- 'announce-url-desc' => 'Devi utilizzare l URL di annuncio che vedi qui sopra quando crei un nuovo torrent.',
- 'announce-url-desc-url' => 'Vedi la nostra guida QUI',
- 'announce-url-desc2' => 'TMDB è stato automatizzato ed è l unico necessario per ottenere poster, descrizioni ed ExtraInfo ',
- 'approved' => 'Approvato',
- 'audio' => 'Audio',
- 'bon-tipped' => 'BONUS di mancia',
- 'bookmark' => 'Segnalibro',
- 'bookmarks' => 'Segnalibri',
- 'bump' => 'urto',
- 'cant-upload' => 'Errore: i tuoi diritti di upload sono disabilitati',
- 'cant-upload-desc' => 'Se credi sia un errore, contatta lo staff',
- 'cards' => 'Locandine',
- 'cards-view' => 'Vista locandine Torrent',
- 'categories' => 'Categorie',
- 'category' => 'Categoria',
- 'client' => 'Client',
- 'commited' => 'commited',
- 'completed' => 'Completato',
- 'completed_at' => 'Completato a',
- 'completed-not-seeding' => 'Hai completato questo download ma non lo seminano più',
- 'created_at' => 'Creato',
- 'credited' => 'accreditato',
- 'current' => 'attuale',
- 'current-filters' => 'Filtri attuali',
- 'currently-leeching' => 'Attualmente Leeching',
- 'currently-seeding' => 'Attualmente seminando',
- 'dead-torrent' => 'Dead Torrent',
- 'dead-torrents' => 'Dead Torrents',
- 'delete-bookmark' => 'Elimina questo segnalibro',
- 'description' => 'Descrizione',
- 'define-tip-amount' => 'Definisci mancia',
- 'discounts' => 'sconti',
- 'double-upload' => 'Doppio caricamento',
- 'download-all' => 'Scarica tutto',
- 'download-check' => 'Scarica il controllo',
- 'downloaded' => 'scaricati',
- 'dying-torrent' => 'Torrent morente',
- 'dying-torrents' => 'Torrents morenti',
- 'encode-settings' => 'Impostazioni di codifica',
- 'estimated-ratio' => 'Rapporto stimato dopo il download',
- 'failed' => 'mancato',
- 'feature' => 'In vetrina',
- 'featured' => 'In primo piano',
- 'featured-desc' => 'I torrents in vetrina sono 100% gratuiti e Doppio caricamento!',
- 'featured-until' => 'Questo è un Torrent in vetrina fino al',
- 'file' => 'File',
- 'filters' => 'filtri',
- 'fl-tokens-left' => 'Hai : token rimasti',
- 'freeleech' => 'Freeleech',
- 'freeleech-token' => 'Token di Freeleech',
- 'general' => 'Generale',
- 'genre' => 'Genere',
- 'global-double-upload' => 'Caricamento doppio globale',
- 'global-freeleech' => 'Global Freeleech',
- 'grant' => 'Concedere',
- 'greater-than' => 'Più grande di',
- 'grouping' => 'Raggruppamento',
- 'groupings' => 'Raggruppamenti',
- 'grouping-categories' => 'Raggruppamento di categorie',
+ 'activity' => 'Attività',
+ 'age' => 'Età',
+ 'agent' => 'Agente',
+ 'alive' => 'Vivo',
+ 'announce-url' => 'Annunciare l URL',
+ 'announce-url-desc' => 'Devi utilizzare l URL di annuncio che vedi qui sopra quando crei un nuovo torrent.',
+ 'announce-url-desc-url' => 'Vedi la nostra guida QUI',
+ 'announce-url-desc2' => 'TMDB è stato automatizzato ed è l unico necessario per ottenere poster, descrizioni ed ExtraInfo ',
+ 'approved' => 'Approvato',
+ 'audio' => 'Audio',
+ 'bon-tipped' => 'BONUS di mancia',
+ 'bookmark' => 'Segnalibro',
+ 'bookmarks' => 'Segnalibri',
+ 'bump' => 'urto',
+ 'cant-upload' => 'Errore: i tuoi diritti di upload sono disabilitati',
+ 'cant-upload-desc' => 'Se credi sia un errore, contatta lo staff',
+ 'cards' => 'Locandine',
+ 'cards-view' => 'Vista locandine Torrent',
+ 'categories' => 'Categorie',
+ 'category' => 'Categoria',
+ 'client' => 'Client',
+ 'commited' => 'commited',
+ 'completed' => 'Completato',
+ 'completed_at' => 'Completato a',
+ 'completed-not-seeding' => 'Hai completato questo download ma non lo seminano più',
+ 'created_at' => 'Creato',
+ 'credited' => 'accreditato',
+ 'current' => 'attuale',
+ 'current-filters' => 'Filtri attuali',
+ 'currently-leeching' => 'Attualmente Leeching',
+ 'currently-seeding' => 'Attualmente seminando',
+ 'dead-torrent' => 'Dead Torrent',
+ 'dead-torrents' => 'Dead Torrents',
+ 'delete-bookmark' => 'Elimina questo segnalibro',
+ 'description' => 'Descrizione',
+ 'define-tip-amount' => 'Definisci mancia',
+ 'discounts' => 'sconti',
+ 'double-upload' => 'Doppio caricamento',
+ 'download-all' => 'Scarica tutto',
+ 'download-check' => 'Scarica il controllo',
+ 'downloaded' => 'scaricati',
+ 'dying-torrent' => 'Torrent morente',
+ 'dying-torrents' => 'Torrents morenti',
+ 'encode-settings' => 'Impostazioni di codifica',
+ 'estimated-ratio' => 'Rapporto stimato dopo il download',
+ 'failed' => 'mancato',
+ 'feature' => 'In vetrina',
+ 'featured' => 'In primo piano',
+ 'featured-desc' => 'I torrents in vetrina sono 100% gratuiti e Doppio caricamento!',
+ 'featured-until' => 'Questo è un Torrent in vetrina fino al',
+ 'file' => 'File',
+ 'filters' => 'filtri',
+ 'fl-tokens-left' => 'Hai : token rimasti',
+ 'freeleech' => 'Freeleech',
+ 'freeleech-token' => 'Token di Freeleech',
+ 'general' => 'Generale',
+ 'genre' => 'Genere',
+ 'global-double-upload' => 'Caricamento doppio globale',
+ 'global-freeleech' => 'Global Freeleech',
+ 'grant' => 'Concedere',
+ 'greater-than' => 'Più grande di',
+ 'grouping' => 'Raggruppamento',
+ 'groupings' => 'Raggruppamenti',
+ 'grouping-categories' => 'Raggruppamento di categorie',
'grouping-categories-desc' => 'Quale categoria vorresti raggruppare?',
- 'grouping-results' => 'Risultati del raggruppamento',
- 'groupings-view' => 'Vista raggruppamenti',
- 'have-completed' => 'Completato',
- 'have-downloaded' => 'scaricati',
- 'have-not-completed' => 'Non completato',
- 'have-not-downloaded' => 'Non scaricato',
- 'health' => 'Salute',
- 'history' => 'Storia',
- 'hitrun' => 'H & R?',
- 'hit-and-runs' => 'Hit and Run',
- 'immune' => 'Immune?',
- 'info' => 'Informazioni',
- 'internal' => 'Interno',
- 'internal-release' => 'Rilascio interno',
- 'last-seed-activity' => 'Ultima attività di condivisione',
- 'last-seeder' => 'Sei l ultimo seminatore rimasto! (è stato scaricato almeno 3 volte)',
- 'last-update' => 'Ultimo aggiornamento',
- 'leave-tip' => 'Lascia una mancia',
- 'leecher' => 'leecher',
- 'leechers' => 'Sanguisughe',
- 'leeching' => 'leeching',
- 'left' => 'Mancano',
- 'legendary-seeder' => 'Seminatore leggendario',
- 'legendary-torrent' => 'Torrent leggendario',
- 'list' => 'Elenco',
- 'me' => 'Me',
- 'media-info' => 'MediaInfo',
- 'media-info-parser' => 'MediaInfo Parser',
- 'media-info-paste' => 'Incolla qui il dump di MediaInfo',
- 'meta-desc' => 'Scarica: nome alla massima velocità',
- 'moderation' => 'Moderazione',
- 'movies' => 'Film',
- 'mvp' => 'MVP',
- 'my-active-torrents' => 'I miei torrents attivi',
- 'name' => 'Nome',
- 'no-bookmarks' => 'Non ci sono segnalibri.',
- 'no-discounts' => 'Attualmente non ci sono sconti',
- 'no-meta' => 'Nessun metadato trovato',
- 'no-privileges' => 'Non è possibile scaricare questo file - si prega di controllare sotto per maggiori informazioni',
- 'no-privileges-desc' => 'Si prega di risolvere i risultati non riusciti sopra per visualizzare il pulsante di download',
- 'not-completed' => 'Iniziato il download ma mai completato',
- 'not-downloaded' => 'Non scaricato',
- 'old-torrent' => 'Vecchio torrent',
- 'optional' => 'Opzionale',
- 'original-output' => 'Mostra / Nascondi l output originale',
- 'participant' => 'Partecipante',
- 'passed' => 'Approvato',
- 'peers' => 'Colleghi',
- 'pending' => 'in attesa di',
- 'personal-freeleech' => 'Freeleech personale',
- 'poster' => 'Poster',
- 'poster-view' => 'Vista poster',
- 'posters' => 'Poster',
- 'prewarn' => 'Prewarned?',
- 'progress' => 'Progresso',
- 'quick-comment' => 'Commento rapido',
- 'quick-tip' => 'Mancia rapida',
- 'rated' => 'Valutato',
- 'rating' => 'Valutazione',
- 'ready' => 'Questo file è pronto per il download',
- 'rejected' => 'Respinto',
- 'released' => 'Rilasciato',
- 'remaining' => 'Rimanente',
- 'request-reseed' => 'Richiesta Reseed',
- 'requires-reseed' => 'Richiede Reseed',
- 'resolution' => 'Res',
- 'resolutions' => 'Res',
- 'resurrections' => 'Resurrezioni',
- 'revoke' => 'Revocare',
- 'rss' => 'RSS',
- 'runtime' => 'Runtime',
- 'satisfied_in' => 'Soddisfatto in',
- 'say-thanks' => 'Per favore, ricordati di ringraziare e di condividere per tutto il tempo che puoi',
- 'sd-content' => 'Contenuto SD',
- 'search' => 'Ricerca',
- 'seed-time' => 'Tempo di seed',
- 'seeder' => 'Seminatore',
- 'seeders' => 'Seminatori',
- 'seeding' => 'Semina',
- 'seedsize' => 'Seedsize',
- 'seedtime' => 'seedtime',
- 'short-completed' => 'C',
- 'short-leechs' => 'L',
- 'short-seeds' => 'S',
- 'show-files' => 'Mostra file',
- 'similar' => 'Torrent simili',
- 'size' => 'Dimensione',
- 'special' => 'Speciale',
- 'special-freeleech' => 'Speciale Freeleech',
- 'started' => 'Iniziato',
- 'status' => 'Stato',
- 'statistics' => 'statistica',
- 'stats' => 'Statistiche',
- 'sticky' => 'Appiccicoso',
- 'stream-optimized' => 'Stream ottimizzato',
- 'subtitle' => 'Sottotitolo',
- 'team-player' => 'Giocatore di squadra',
- 'thank' => 'grazie',
- 'thanked' => 'Ringraziato',
- 'thanks' => 'Grazie',
- 'thanks-given' => 'Grazie dato',
- 'times' => 'Volte',
- 'tip-jar' => 'Barattolo delle mance, salvadanaio',
- 'title' => 'Titolo',
- 'titles' => 'Titoli',
- 'top-completed' => 'Completato il top',
- 'top-dead' => 'Top morto',
- 'top-dying' => 'Top morendo',
- 'top-leeched' => 'Top sanguisughe',
- 'top-seeded' => 'Top seminato',
- 'torrent' => 'Torrent',
- 'torrent-request' => 'Richiesta Torrent',
- 'torrent-tips' => 'In totale :total punti BONUS sono stati consegnati all autore del caricamento, di cui :user provengono da te',
- 'torrent-tips-desc' => 'Questo sarà detratto dai tuoi punti bonus disponibili',
- 'torrents' => 'Torrents',
- 'trailer' => 'Guarda il trailer',
- 'type' => 'Formato',
- 'types' => 'Formati',
- 'unbookmark' => 'Unbookmark',
- 'unsatisfieds' => 'Insoddisfatti',
- 'unsticky' => 'Unsticky',
- 'updated' => 'aggiornato',
- 'updated_at' => 'Aggiornato a',
- 'uploaded' => 'Caricato il',
- 'uploaded-by' => 'Caricato da',
- 'uploader' => 'Uploader',
- 'use-fl-token' => 'Utilizzare un token di Freeleech',
- 'video' => 'video',
- 'view-more' => 'Vedi di più',
- 'view-trailer' => 'Guarda il trailer',
- 'votes' => 'voti',
+ 'grouping-results' => 'Risultati del raggruppamento',
+ 'groupings-view' => 'Vista raggruppamenti',
+ 'have-completed' => 'Completato',
+ 'have-downloaded' => 'scaricati',
+ 'have-not-completed' => 'Non completato',
+ 'have-not-downloaded' => 'Non scaricato',
+ 'health' => 'Salute',
+ 'history' => 'Storia',
+ 'hitrun' => 'H & R?',
+ 'hit-and-runs' => 'Hit and Run',
+ 'immune' => 'Immune?',
+ 'info' => 'Informazioni',
+ 'internal' => 'Interno',
+ 'internal-release' => 'Rilascio interno',
+ 'last-seed-activity' => 'Ultima attività di condivisione',
+ 'last-seeder' => 'Sei l ultimo seminatore rimasto! (è stato scaricato almeno 3 volte)',
+ 'last-update' => 'Ultimo aggiornamento',
+ 'leave-tip' => 'Lascia una mancia',
+ 'leecher' => 'leecher',
+ 'leechers' => 'Sanguisughe',
+ 'leeching' => 'leeching',
+ 'left' => 'Mancano',
+ 'legendary-seeder' => 'Seminatore leggendario',
+ 'legendary-torrent' => 'Torrent leggendario',
+ 'list' => 'Elenco',
+ 'me' => 'Me',
+ 'media-info' => 'MediaInfo',
+ 'media-info-parser' => 'MediaInfo Parser',
+ 'media-info-paste' => 'Incolla qui il dump di MediaInfo',
+ 'meta-desc' => 'Scarica: nome alla massima velocità',
+ 'moderation' => 'Moderazione',
+ 'movies' => 'Film',
+ 'mvp' => 'MVP',
+ 'my-active-torrents' => 'I miei torrents attivi',
+ 'name' => 'Nome',
+ 'no-bookmarks' => 'Non ci sono segnalibri.',
+ 'no-discounts' => 'Attualmente non ci sono sconti',
+ 'no-meta' => 'Nessun metadato trovato',
+ 'no-privileges' => 'Non è possibile scaricare questo file - si prega di controllare sotto per maggiori informazioni',
+ 'no-privileges-desc' => 'Si prega di risolvere i risultati non riusciti sopra per visualizzare il pulsante di download',
+ 'not-completed' => 'Iniziato il download ma mai completato',
+ 'not-downloaded' => 'Non scaricato',
+ 'old-torrent' => 'Vecchio torrent',
+ 'optional' => 'Opzionale',
+ 'original-output' => 'Mostra / Nascondi l output originale',
+ 'participant' => 'Partecipante',
+ 'passed' => 'Approvato',
+ 'peers' => 'Colleghi',
+ 'pending' => 'in attesa di',
+ 'personal-freeleech' => 'Freeleech personale',
+ 'poster' => 'Poster',
+ 'poster-view' => 'Vista poster',
+ 'posters' => 'Poster',
+ 'prewarn' => 'Prewarned?',
+ 'progress' => 'Progresso',
+ 'quick-comment' => 'Commento rapido',
+ 'quick-tip' => 'Mancia rapida',
+ 'rated' => 'Valutato',
+ 'rating' => 'Valutazione',
+ 'ready' => 'Questo file è pronto per il download',
+ 'rejected' => 'Respinto',
+ 'released' => 'Rilasciato',
+ 'remaining' => 'Rimanente',
+ 'request-reseed' => 'Richiesta Reseed',
+ 'requires-reseed' => 'Richiede Reseed',
+ 'resolution' => 'Res',
+ 'resolutions' => 'Res',
+ 'resurrections' => 'Resurrezioni',
+ 'revoke' => 'Revocare',
+ 'rss' => 'RSS',
+ 'runtime' => 'Runtime',
+ 'satisfied_in' => 'Soddisfatto in',
+ 'say-thanks' => 'Per favore, ricordati di ringraziare e di condividere per tutto il tempo che puoi',
+ 'sd-content' => 'Contenuto SD',
+ 'search' => 'Ricerca',
+ 'seed-time' => 'Tempo di seed',
+ 'seeder' => 'Seminatore',
+ 'seeders' => 'Seminatori',
+ 'seeding' => 'Semina',
+ 'seedsize' => 'Seedsize',
+ 'seedtime' => 'seedtime',
+ 'short-completed' => 'C',
+ 'short-leechs' => 'L',
+ 'short-seeds' => 'S',
+ 'show-files' => 'Mostra file',
+ 'similar' => 'Torrent simili',
+ 'size' => 'Dimensione',
+ 'special' => 'Speciale',
+ 'special-freeleech' => 'Speciale Freeleech',
+ 'started' => 'Iniziato',
+ 'status' => 'Stato',
+ 'statistics' => 'statistica',
+ 'stats' => 'Statistiche',
+ 'sticky' => 'Appiccicoso',
+ 'stream-optimized' => 'Stream ottimizzato',
+ 'subtitle' => 'Sottotitolo',
+ 'team-player' => 'Giocatore di squadra',
+ 'thank' => 'grazie',
+ 'thanked' => 'Ringraziato',
+ 'thanks' => 'Grazie',
+ 'thanks-given' => 'Grazie dato',
+ 'times' => 'Volte',
+ 'tip-jar' => 'Barattolo delle mance, salvadanaio',
+ 'title' => 'Titolo',
+ 'titles' => 'Titoli',
+ 'top-completed' => 'Completato il top',
+ 'top-dead' => 'Top morto',
+ 'top-dying' => 'Top morendo',
+ 'top-leeched' => 'Top sanguisughe',
+ 'top-seeded' => 'Top seminato',
+ 'torrent' => 'Torrent',
+ 'torrent-request' => 'Richiesta Torrent',
+ 'torrent-tips' => 'In totale :total punti BONUS sono stati consegnati all autore del caricamento, di cui :user provengono da te',
+ 'torrent-tips-desc' => 'Questo sarà detratto dai tuoi punti bonus disponibili',
+ 'torrents' => 'Torrents',
+ 'trailer' => 'Guarda il trailer',
+ 'type' => 'Formato',
+ 'types' => 'Formati',
+ 'unbookmark' => 'Unbookmark',
+ 'unsatisfieds' => 'Insoddisfatti',
+ 'unsticky' => 'Unsticky',
+ 'updated' => 'aggiornato',
+ 'updated_at' => 'Aggiornato a',
+ 'uploaded' => 'Caricato il',
+ 'uploaded-by' => 'Caricato da',
+ 'uploader' => 'Uploader',
+ 'use-fl-token' => 'Utilizzare un token di Freeleech',
+ 'video' => 'video',
+ 'view-more' => 'Vedi di più',
+ 'view-trailer' => 'Guarda il trailer',
+ 'votes' => 'voti',
];
diff --git a/lang/it/user.php b/lang/it/user.php
index c111047e1..d523827d0 100644
--- a/lang/it/user.php
+++ b/lang/it/user.php
@@ -12,316 +12,316 @@
*/
return [
- 'about' => 'Di',
- 'about-me' => 'Riguardo a me',
- 'accepted-at' => 'Accettato il',
- 'accepted-by' => 'Accettato da',
- 'account-notification' => 'Impostazioni di notifica dell account',
- 'account-notification-follow' => 'Ricevi una notifica quando un utente segue il tuo account',
- 'account-notification-unfollow' => 'Ricevi una notifica quando un utente non segue più il tuo account',
- 'account-notification-help' => 'Controlla quali notifiche vengono inviate riguardanti il tuo account. Queste impostazioni sono sovrascritte se non si consente a gruppi di inviare notifiche relative al proprio account o se si disabilitano le notifiche',
- 'account-settings' => 'Impostazioni dell account',
- 'achievement-privacy' => 'Condivisione dei risultati',
- 'achievement-privacy-list' => 'Consenti agli utenti di visualizzare un elenco dei tuoi risultati',
- 'achievement-help' => 'Controlla la condivisione di specifiche informazioni relative ai risultati con gruppi ai quali è consentito accedere al tuo profilo. Queste impostazioni sono sovrascritte se non permetti a nessun gruppo di accedere ai tuoi risultati o se vai privato',
- 'achievements' => 'Risultati',
- 'active' => 'Attivo',
- 'active-table' => 'Il mio tavolo attivo',
- 'active-torrents' => 'Torrents attivi',
- 'active-warning' => 'Avvertimento attivo',
- 'active-warnings' => 'Avvertimenti attivi',
- 'add-seedbox' => 'Aggiungi Seedbox',
- 'all-torrents' => 'Tutti i torrents',
- 'article-comments' => 'Commenti nel Forum',
- 'avatar' => 'Avatar',
- 'avg-seedtime' => 'Seedtime medio',
- 'badges' => 'Badge',
- 'ban' => 'BAN',
- 'ban-log' => 'Ban Log',
- 'become-hidden' => 'Diventa nascosto',
- 'become-visible' => 'Diventa visibile',
- 'bon' => 'BON',
- 'bon-notification' => 'Impostazioni di notifica BON',
- 'bon-notification-gift' => 'Ricevi una notifica quando un utente ti regala un bonus',
- 'bon-notification-help' => 'Controlla quali notifiche vengono inviate riguardo alle transazioni BON. Queste impostazioni sono sovrascritte se non si consente a nessun gruppo di inviare notifiche relative a BON o se si disabilitano le notifiche',
- 'bookmarks' => 'Segnalibri',
- 'bounty-given' => 'Bonus inviato',
- 'bounty-received' => 'Bonus ricevuto',
- 'can-chat' => 'Può chattare',
- 'can-comment' => 'Può commentare',
- 'can-download' => 'Può scaricare',
- 'can-invite' => 'Può invitare',
- 'can-request' => 'Può richiedere',
- 'can-upload' => 'Può caricare',
- 'certified-banker' => 'Banchiere certificato',
- 'certified-banker-desc' => 'Ha 5.000 o più punti BON In Bank',
- 'certified-downloader' => 'Downloader certificato',
- 'certified-downloader-desc' => 'Download di 100 o più torrents!',
- 'certified-seeder' => 'Seminatore certificato',
- 'certified-seeder-desc' => 'Seminato 150 o più torrents!',
- 'change-email' => 'Cambia email',
- 'change-email-help' => 'Dovrai riconfermare il tuo account, dopo aver cambiato la tua email',
- 'change-password' => 'Cambia la password',
- 'change-password-help' => 'Dovrai accedere di nuovo, dopo aver cambiato la password',
- 'client-ip-address' => 'Indirizzo IP del client',
- 'code' => 'Codice',
- 'comments' => 'Commenti',
- 'created-on' => 'Creato',
- 'credited-download' => 'Download accreditato',
- 'credited-upload' => 'Caricamento accreditato',
- 'current-password' => 'Password attuale',
- 'custom-title' => 'Titolo personalizzato',
- 'delete' => 'Elimina utente',
- 'disable-notifications' => 'Disabilita le notifiche',
- 'disclaimer' => 'Disconoscimento',
- 'disclaimer-info' => 'Per impostazione predefinita, non registriamo gli indirizzi IP degli utenti a differenza della maggior parte dei tracker. Aggiungendo il tuo IP seedbox è previsto che tu sappia che i tuoi IP elencati di seguito sono ora memorizzati nel nostro database a meno che tu non elimini i record.',
- 'disclaimer-info-bordered' => 'Gli IP delle Seedbox aggiunti attivano un tag torrent ad alta velocità sui torrent condivisi dagli IP elencati di seguito',
- 'download-bon' => 'Download rimosso da BON Store',
- 'download-recorded' => 'Download registrato',
- 'download-true' => 'Download effettivo',
- 'downloads' => 'Downloads',
- 'edit' => 'Modifica utente',
- 'edit-profile' => 'Modifica Profilo',
- 'enable-notifications' => 'Attivare le notifiche',
- 'expired' => 'Scaduto',
- 'expires-on' => 'Scade il',
- 'extra' => 'Extra',
- 'filled-request' => 'Richieste esaudite',
- 'follow' => 'Segui',
- 'follower-privacy' => 'Impostazioni follower',
- 'follower-privacy-list' => 'Consenti agli utenti di visualizzare un elenco dei tuoi follower',
- 'follower-help' => 'Controlla la condivisione di specifiche informazioni relative ai follower con gruppi a cui è consentito l accesso al tuo profilo. Queste impostazioni sono sovrascritte se non permetti a nessun gruppo di accedere ai tuoi follower o se vai privato',
- 'followers' => 'Seguaci',
- 'following-notification' => 'Impostazioni di notifica per gli utenti seguiti',
- 'following-notification-upload' => 'Ricevi una notifica quando un utente che segui carica un torrent',
- 'following-notification-help' => 'Controlla quali notifiche vengono inviate riguardo l utente seguito. Queste impostazioni sono sovrascritte se non si consente a nessun gruppo di inviare notifiche relative agli utenti seguiti o se si disabilitano le notifiche',
- 'formats-are-supported' => ': i formati sono supportati',
- 'forum-notification' => 'Impostazioni di notifica del forum',
- 'forum-notification-topic' => 'Ricevi una notifica quando un argomento che hai iniziato riceve un nuovo post',
- 'forum-notification-help' => 'Controlla quali notifiche vengono inviate riguardo alle attività del forum. Queste impostazioni sono sovrascritte se non si consente a gruppi di inviare notifiche relative alle attività del forum o se si disabilitano le notifiche',
- 'forum-privacy' => 'Impostazioni del forum',
- 'forum-privacy-post' => 'Consenti agli utenti di visualizzare un elenco di post che hai pubblicato sul forum',
- 'forum-privacy-topic' => 'Consenti agli utenti di visualizzare un elenco di discussioni che hai avviato sul forum',
- 'forum-help' => 'Controlla la condivisione di statistiche e informazioni relative ai forum specifici con gruppi ai quali è consentito accedere al tuo profilo. Queste impostazioni sono sovrascritte se non si consente a nessun gruppo di accedere alle statistiche e alle informazioni relative al forum o se si è privati',
- 'forum-signature' => 'Firma del forum',
- 'forums' => 'Forum',
- 'general' => 'Generale',
- 'general-settings' => 'Impostazioni generali',
- 'gift-given' => 'Regali fatti',
- 'gift-received' => 'Regali ricevuti',
- 'go-public' => 'Diventa pubblico',
- 'go-private' => 'Diventa privato',
- 'history' => 'Storia',
- 'history-table' => 'La mia storia',
- 'hit-n-runs' => 'Hit and Runs',
- 'hit-n-runs-count' => 'Hit and Run (Totali)',
- 'hit-n-runs-history' => 'Storico Hit and Run',
- 'image' => 'Immagine',
- 'important' => 'Importante',
- 'important-info' => 'Informazioni importanti',
- 'information' => 'Info',
- 'invite-friend' => 'Invita un tuo amico (email + messaggio)',
- 'invite-tree' => 'Diagramma inviti',
- 'invites' => 'Inviti',
- 'invites-banned' => 'Errore: i tuoi diritti di invito sono stati disabilitati',
- 'invites-banned-desc' => 'Se ti senti in errore, contatta lo staff!',
- 'invites-count' => 'Hai: conta inviti token',
- 'invites-disabled' => 'Attenzione: gli inviti sono disabilitati a causa della registrazione aperta!',
- 'invites-disabled-desc' => 'Si prega di controllare presto!',
- 'invites-rules' => '- Invita solo le persone che conosci e di cui ti fidi.
- Sarai ritenuto personalmente responsabile per coloro che inviti.
- Non invitare te stesso, controlliamo ogni utente invitato.
- Non scambiare o vendere Inviti.
- Se tu o una persona che hai invitato viene sorpresa a barare o fare trading account, valuteremo la tua responsabilità.
',
- 'invites-send' => 'Inviti effettuati',
- 'last-login' => 'Ultimo accesso',
- 'locked' => 'Bloccato',
- 'locked-achievements' => 'Risultati bloccati',
- 'member-since' => 'Membro da',
- 'members-desc' => 'Elenco degli utenti registrati su: titolo con tutti i gruppi. Trova un utente ora.',
- 'mention-notification' => '@Memorizzazione delle impostazioni di notifica',
+ 'about' => 'Di',
+ 'about-me' => 'Riguardo a me',
+ 'accepted-at' => 'Accettato il',
+ 'accepted-by' => 'Accettato da',
+ 'account-notification' => 'Impostazioni di notifica dell account',
+ 'account-notification-follow' => 'Ricevi una notifica quando un utente segue il tuo account',
+ 'account-notification-unfollow' => 'Ricevi una notifica quando un utente non segue più il tuo account',
+ 'account-notification-help' => 'Controlla quali notifiche vengono inviate riguardanti il tuo account. Queste impostazioni sono sovrascritte se non si consente a gruppi di inviare notifiche relative al proprio account o se si disabilitano le notifiche',
+ 'account-settings' => 'Impostazioni dell account',
+ 'achievement-privacy' => 'Condivisione dei risultati',
+ 'achievement-privacy-list' => 'Consenti agli utenti di visualizzare un elenco dei tuoi risultati',
+ 'achievement-help' => 'Controlla la condivisione di specifiche informazioni relative ai risultati con gruppi ai quali è consentito accedere al tuo profilo. Queste impostazioni sono sovrascritte se non permetti a nessun gruppo di accedere ai tuoi risultati o se vai privato',
+ 'achievements' => 'Risultati',
+ 'active' => 'Attivo',
+ 'active-table' => 'Il mio tavolo attivo',
+ 'active-torrents' => 'Torrents attivi',
+ 'active-warning' => 'Avvertimento attivo',
+ 'active-warnings' => 'Avvertimenti attivi',
+ 'add-seedbox' => 'Aggiungi Seedbox',
+ 'all-torrents' => 'Tutti i torrents',
+ 'article-comments' => 'Commenti nel Forum',
+ 'avatar' => 'Avatar',
+ 'avg-seedtime' => 'Seedtime medio',
+ 'badges' => 'Badge',
+ 'ban' => 'BAN',
+ 'ban-log' => 'Ban Log',
+ 'become-hidden' => 'Diventa nascosto',
+ 'become-visible' => 'Diventa visibile',
+ 'bon' => 'BON',
+ 'bon-notification' => 'Impostazioni di notifica BON',
+ 'bon-notification-gift' => 'Ricevi una notifica quando un utente ti regala un bonus',
+ 'bon-notification-help' => 'Controlla quali notifiche vengono inviate riguardo alle transazioni BON. Queste impostazioni sono sovrascritte se non si consente a nessun gruppo di inviare notifiche relative a BON o se si disabilitano le notifiche',
+ 'bookmarks' => 'Segnalibri',
+ 'bounty-given' => 'Bonus inviato',
+ 'bounty-received' => 'Bonus ricevuto',
+ 'can-chat' => 'Può chattare',
+ 'can-comment' => 'Può commentare',
+ 'can-download' => 'Può scaricare',
+ 'can-invite' => 'Può invitare',
+ 'can-request' => 'Può richiedere',
+ 'can-upload' => 'Può caricare',
+ 'certified-banker' => 'Banchiere certificato',
+ 'certified-banker-desc' => 'Ha 5.000 o più punti BON In Bank',
+ 'certified-downloader' => 'Downloader certificato',
+ 'certified-downloader-desc' => 'Download di 100 o più torrents!',
+ 'certified-seeder' => 'Seminatore certificato',
+ 'certified-seeder-desc' => 'Seminato 150 o più torrents!',
+ 'change-email' => 'Cambia email',
+ 'change-email-help' => 'Dovrai riconfermare il tuo account, dopo aver cambiato la tua email',
+ 'change-password' => 'Cambia la password',
+ 'change-password-help' => 'Dovrai accedere di nuovo, dopo aver cambiato la password',
+ 'client-ip-address' => 'Indirizzo IP del client',
+ 'code' => 'Codice',
+ 'comments' => 'Commenti',
+ 'created-on' => 'Creato',
+ 'credited-download' => 'Download accreditato',
+ 'credited-upload' => 'Caricamento accreditato',
+ 'current-password' => 'Password attuale',
+ 'custom-title' => 'Titolo personalizzato',
+ 'delete' => 'Elimina utente',
+ 'disable-notifications' => 'Disabilita le notifiche',
+ 'disclaimer' => 'Disconoscimento',
+ 'disclaimer-info' => 'Per impostazione predefinita, non registriamo gli indirizzi IP degli utenti a differenza della maggior parte dei tracker. Aggiungendo il tuo IP seedbox è previsto che tu sappia che i tuoi IP elencati di seguito sono ora memorizzati nel nostro database a meno che tu non elimini i record.',
+ 'disclaimer-info-bordered' => 'Gli IP delle Seedbox aggiunti attivano un tag torrent ad alta velocità sui torrent condivisi dagli IP elencati di seguito',
+ 'download-bon' => 'Download rimosso da BON Store',
+ 'download-recorded' => 'Download registrato',
+ 'download-true' => 'Download effettivo',
+ 'downloads' => 'Downloads',
+ 'edit' => 'Modifica utente',
+ 'edit-profile' => 'Modifica Profilo',
+ 'enable-notifications' => 'Attivare le notifiche',
+ 'expired' => 'Scaduto',
+ 'expires-on' => 'Scade il',
+ 'extra' => 'Extra',
+ 'filled-request' => 'Richieste esaudite',
+ 'follow' => 'Segui',
+ 'follower-privacy' => 'Impostazioni follower',
+ 'follower-privacy-list' => 'Consenti agli utenti di visualizzare un elenco dei tuoi follower',
+ 'follower-help' => 'Controlla la condivisione di specifiche informazioni relative ai follower con gruppi a cui è consentito l accesso al tuo profilo. Queste impostazioni sono sovrascritte se non permetti a nessun gruppo di accedere ai tuoi follower o se vai privato',
+ 'followers' => 'Seguaci',
+ 'following-notification' => 'Impostazioni di notifica per gli utenti seguiti',
+ 'following-notification-upload' => 'Ricevi una notifica quando un utente che segui carica un torrent',
+ 'following-notification-help' => 'Controlla quali notifiche vengono inviate riguardo l utente seguito. Queste impostazioni sono sovrascritte se non si consente a nessun gruppo di inviare notifiche relative agli utenti seguiti o se si disabilitano le notifiche',
+ 'formats-are-supported' => ': i formati sono supportati',
+ 'forum-notification' => 'Impostazioni di notifica del forum',
+ 'forum-notification-topic' => 'Ricevi una notifica quando un argomento che hai iniziato riceve un nuovo post',
+ 'forum-notification-help' => 'Controlla quali notifiche vengono inviate riguardo alle attività del forum. Queste impostazioni sono sovrascritte se non si consente a gruppi di inviare notifiche relative alle attività del forum o se si disabilitano le notifiche',
+ 'forum-privacy' => 'Impostazioni del forum',
+ 'forum-privacy-post' => 'Consenti agli utenti di visualizzare un elenco di post che hai pubblicato sul forum',
+ 'forum-privacy-topic' => 'Consenti agli utenti di visualizzare un elenco di discussioni che hai avviato sul forum',
+ 'forum-help' => 'Controlla la condivisione di statistiche e informazioni relative ai forum specifici con gruppi ai quali è consentito accedere al tuo profilo. Queste impostazioni sono sovrascritte se non si consente a nessun gruppo di accedere alle statistiche e alle informazioni relative al forum o se si è privati',
+ 'forum-signature' => 'Firma del forum',
+ 'forums' => 'Forum',
+ 'general' => 'Generale',
+ 'general-settings' => 'Impostazioni generali',
+ 'gift-given' => 'Regali fatti',
+ 'gift-received' => 'Regali ricevuti',
+ 'go-public' => 'Diventa pubblico',
+ 'go-private' => 'Diventa privato',
+ 'history' => 'Storia',
+ 'history-table' => 'La mia storia',
+ 'hit-n-runs' => 'Hit and Runs',
+ 'hit-n-runs-count' => 'Hit and Run (Totali)',
+ 'hit-n-runs-history' => 'Storico Hit and Run',
+ 'image' => 'Immagine',
+ 'important' => 'Importante',
+ 'important-info' => 'Informazioni importanti',
+ 'information' => 'Info',
+ 'invite-friend' => 'Invita un tuo amico (email + messaggio)',
+ 'invite-tree' => 'Diagramma inviti',
+ 'invites' => 'Inviti',
+ 'invites-banned' => 'Errore: i tuoi diritti di invito sono stati disabilitati',
+ 'invites-banned-desc' => 'Se ti senti in errore, contatta lo staff!',
+ 'invites-count' => 'Hai: conta inviti token',
+ 'invites-disabled' => 'Attenzione: gli inviti sono disabilitati a causa della registrazione aperta!',
+ 'invites-disabled-desc' => 'Si prega di controllare presto!',
+ 'invites-rules' => '- Invita solo le persone che conosci e di cui ti fidi.
- Sarai ritenuto personalmente responsabile per coloro che inviti.
- Non invitare te stesso, controlliamo ogni utente invitato.
- Non scambiare o vendere Inviti.
- Se tu o una persona che hai invitato viene sorpresa a barare o fare trading account, valuteremo la tua responsabilità.
',
+ 'invites-send' => 'Inviti effettuati',
+ 'last-login' => 'Ultimo accesso',
+ 'locked' => 'Bloccato',
+ 'locked-achievements' => 'Risultati bloccati',
+ 'member-since' => 'Membro da',
+ 'members-desc' => 'Elenco degli utenti registrati su: titolo con tutti i gruppi. Trova un utente ora.',
+ 'mention-notification' => '@Memorizzazione delle impostazioni di notifica',
'mention-notification-article-comment' => 'Ricevi una notifica quando sei @mentioned in un commento di un articolo',
'mention-notification-torrent-comment' => 'Ricevi una notifica quando sei @mentioned in un commento torrent',
'mention-notification-request-comment' => 'Ricevi una notifica quando sei @ indicato in un commento di richiesta',
- 'mention-notification-forum-post' => 'Ricevi una notifica quando sei @ indicato in un post sul forum',
- 'mention-notification-help' => 'Controlla quali notifiche vengono inviate quando un utente @ ti ricorda. Queste impostazioni sono sovrascritte se non si consente a nessun gruppo di inviare notifiche se un utente @ ti ricorda o se si disabilitano le notifiche',
- 'moderated-by' => 'Moderato da: mod on',
- 'my-bonus-points' => 'I miei punti bonus',
- 'my-bookmarks' => 'I miei segnalibri',
- 'my-fl-tokens' => 'I miei token FL',
- 'my-general-settings' => 'Le mie impostazioni generali',
- 'my-notification' => 'Le mie notifiche',
- 'my-notification-settings' => 'Le mie impostazioni di notifica',
- 'my-privacy' => 'La mia privacy',
- 'my-privacy-settings' => 'Le mie impostazioni sulla privacy',
- 'my-profile' => 'Il mio profilo',
- 'my-requested' => 'Le mie richieste',
- 'my-security' => 'La mia sicurezza',
- 'my-security-settings' => 'Le mie impostazioni di sicurezza',
- 'my-seedboxes' => 'Le mie Seedbox',
- 'my-settings' => 'Le mie impostazioni',
- 'my-wishlist' => 'La mia lista dei desideri',
- 'no-logs' => 'Non ci sono inviti nel database per questo utente!',
- 'no-seedboxes' => 'Nessuna seedbox 😔',
- 'not-authorized' => 'Non sei autorizzato a visualizzare questa pagina. Questo membro preferisce essere nascosto come un ninja!',
- 'note' => 'Nota',
- 'notification' => 'Notifica',
- 'notification-settings' => 'Impostazioni di notifica',
- 'notification-from-account' => 'Ricevi notifiche account da',
- 'notification-from-account-help' => 'Riceverai solo le notifiche dell account dal sistema, dallo staff e dai seguenti gruppi. Queste impostazioni sono sovrascritte se si disabilitano le notifiche',
- 'notification-from-bon' => 'Ricevi notifiche BON da',
- 'notification-from-bon-help' => 'Riceverai solo notifiche BON dal sistema, dallo staff e dai seguenti gruppi. Queste impostazioni sono sovrascritte se si disabilitano le notifiche',
- 'notification-from-following' => 'Ricevi notifiche utente seguite da',
- 'notification-from-following-help' => 'Riceverai solo le notifiche degli utenti seguiti dai seguenti gruppi. Queste impostazioni sono sovrascritte se si disabilitano le notifiche',
- 'notification-from-forum' => 'Ricevi notifiche del forum da',
- 'notification-from-forum-help' => 'Riceverai solo le notifiche del forum dal sistema, dallo staff e dai seguenti gruppi. Queste impostazioni sono sovrascritte se si disabilitano le notifiche',
- 'notification-from-subscription' => 'Ricevi notifiche di iscrizione da',
- 'notification-from-subscription-help' => 'Riceverai solo le notifiche del forum dal sistema, dallo staff e dai seguenti gruppi. Queste impostazioni sono sovrascritte se si disabilitano le notifiche',
- 'notification-from-torrent' => 'Ricevi notifiche Torrent da',
- 'notification-from-torrent-help' => 'Riceverai solo notifiche torrent dal sistema, dallo staff e dai seguenti gruppi. Queste impostazioni sono sovrascritte se si disabilitano le notifiche',
- 'notification-from-mention' => 'Ricevi notifiche @Mention da',
- 'notification-from-mention-help' => 'Riceverai solo notifiche @mention dal sistema, dallo staff e dai seguenti gruppi. Queste impostazioni sono sovrascritte se si disabilitano le notifiche',
- 'notification-from-request' => 'Ricevi notifiche di richiesta da',
- 'notification-from-request-help' => 'Riceverai solo le notifiche di richiesta dal sistema, dallo staff e dai seguenti gruppi. Queste impostazioni sono sovrascritte se si disabilitano le notifiche',
- 'notifications' => 'notifiche',
- 'offline' => 'L utente è offline!',
- 'online' => 'L utente è online!',
- 'options' => 'Opzioni',
- 'other-help' => 'Controlla la condivisione di altre statistiche e informazioni con gruppi a cui è consentito l accesso al tuo profilo. Queste impostazioni sono sovrascritte se non si consente a nessun gruppo di accedere alle altre statistiche e informazioni o se si è privati',
- 'other-privacy' => 'Altre impostazioni',
- 'other-privacy-online' => 'Consenti agli utenti di vederti tra gli utenti online',
- 'passkey' => 'PID',
- 'passkey-warning' => 'PID è come la tua password, devi tenerlo al sicuro!',
- 'pending-achievements' => 'In attesa di risultati',
- 'per-torrent' => 'Per Torrent',
- 'posts' => 'Messaggi',
- 'posts-posted' => 'Messaggi pubblicati sul forum',
- 'privacy' => 'vita privata',
- 'privacy-settings' => 'Impostazioni della privacy',
- 'private-info' => 'Informazioni private',
- 'private-forum-profile' => 'Attenzione: questoa discussione e la sua cronologia dei post è stata impostata su PRIVATO!',
- 'private-profile' => 'Attenzione: questo profilo è stato impostato su PRIVATO!',
- 'profile' => 'Profilo',
- 'profile-desc' => 'Utente: profilo utente registrato su: titolo',
- 'profile-privacy' => 'Impostazioni del profilo',
- 'profile-privacy-torrent-count' => 'Condividi il tuo numero totale di downloads, uploads, condivisioni e prelievi',
- 'profile-privacy-torrent-ratio' => 'Condividi i tuoi dati di upload / download totali insieme al rapporto registrato',
- 'profile-privacy-torrent-seed' => 'Condividi il tuo tempo di semina totale e la media',
- 'profile-privacy-title' => 'Condividi le informazioni sul titolo personale',
- 'profile-privacy-about' => 'Condividi le tue informazioni personali',
- 'profile-privacy-bon-extra' => 'Condividi le tue statistiche BON',
- 'profile-privacy-comment-extra' => 'Condividi le statistiche dei tuoi commenti',
- 'profile-privacy-forum-extra' => 'Condividi le tue statistiche del forum',
- 'profile-privacy-request-extra' => 'Condividi le tue statistiche di richiesta',
- 'profile-privacy-torrent-extra' => 'Condividi le tue statistiche di torrent',
- 'profile-privacy-badge' => 'Condividi i tuoi badge guadagnati',
- 'profile-privacy-achievement' => 'Condividi i tuoi risultati recenti',
- 'profile-privacy-follower' => 'Condividi i tuoi follower recenti',
- 'profile-privacy-warning' => 'Condividi i tuoi avvisi H & R',
- 'profile-privacy-help' => 'Controlla quali statistiche e informazioni vengono visualizzate sul tuo profilo. Queste impostazioni sono sovrascritte se non permetti a nessun gruppo di accedere al tuo profilo o se vai privato',
- 'public-info' => 'Informazioni pubbliche',
- 'recent-achievements' => 'Risultati recenti',
- 'recent-followers' => 'Seguaci recenti',
- 'registration-date' => 'Data di registrazione',
- 'report' => 'rapporto',
- 'request-help' => 'Controlla la condivisione di statistiche e informazioni relative a richieste specifiche con gruppi a cui è consentito l accesso al tuo profilo. Queste impostazioni sono sovrascritte se non si consente a nessun gruppo di accedere alle statistiche e alle informazioni correlate richieste o se si è privati',
- 'request' => 'Richiesta',
- 'requested' => 'Richieste effettuate',
- 'requests' => 'richieste',
- 'request-comments' => 'Richiedi commenti Made',
- 'request-notification' => 'Richiedi le impostazioni di notifica',
- 'request-notification-bounty' => 'Ricevi una notifica quando un torrent richiesto ottiene una nuova taglia',
- 'request-notification-comment' => 'Ricevi una notifica quando un torrent richiesto ottiene un nuovo commento',
- 'request-notification-fill' => 'Ricevi una notifica quando viene esaudita una richiesta',
- 'request-notification-fill-approve' => 'Ricevi una notifica quando viene approvato un riempimento richiesta',
- 'request-notification-fill-reject' => 'Ricevi una notifica quando viene rifiutato un riempimento richiesta',
- 'request-notification-claim' => 'Ricevi una notifica quando viene rivendicato un torrent richiesto',
- 'request-notification-unclaim' => 'Ricevi una notifica quando un torrent richiesto non viene reclamato',
- 'request-notification-help' => 'Controlla quali notifiche vengono inviate riguardo alle attività di richiesta. Queste impostazioni sono sovrascritte se non si consente a gruppi di inviare notifiche relative alle attività di richiesta o se si disabilitano le notifiche',
- 'request-privacy' => 'Richiedi le impostazioni',
- 'request-privacy-requested' => 'Consenti agli utenti di visualizzare un elenco di richieste che hai fatto',
- 'reset-passkey' => 'Reimposta passkey (PID)',
- 'reset-passkey-help' => 'Dovrai scaricare / caricare nuovamente tutti i tuoi torrent attivi, dopo aver resettato il PID',
- 'reset-rss' => 'Reimposta chiave RSS (RID)',
- 'reset-rss-help' => 'Dovrai ricaricare tutti i tuoi feed RSS attivi, dopo aver resettato il RID',
- 'resurrections' => 'Resurrezioni',
- 'search' => 'Ricerca utente',
- 'security' => 'Sicurezza',
- 'security-settings' => 'Impostazioni di sicurezza',
- 'seedboxes' => 'Seedboxes',
- 'seeds' => 'Condivisi',
- 'send-invite' => 'Manda un invito',
- 'sender' => 'Mittente',
- 'settings' => 'impostazioni',
- 'show-passkey' => 'Mostra PID',
- 'staff-noted' => 'Account annotato dallo Staff',
- 'statistics' => 'statistica',
- 'subscription-notification' => 'Impostazioni di notifica dell abbonamento',
- 'subscription-notification-forum' => 'Ricevi una notifica quando un forum sottoscritto riceve un nuovo argomento',
- 'subscription-notification-topic' => 'Ricevi una notifica quando un argomento sottoscritto riceve un nuovo post',
- 'subscription-notification-help' => 'Controlla quali notifiche vengono inviate in merito ai tuoi abbonamenti. Queste impostazioni sono sovrascritte se non si consente a nessun gruppo di inviare notifiche relative agli abbonamenti o se si disabilitano le notifiche',
- 'thanks-given' => 'Grazie inviati',
- 'thanks-received' => 'Grazie ricevuti',
- 'tips-given' => 'Mancia lasciata',
- 'tips-received' => 'Mancia ricevuta',
- 'title' => 'Titolo',
- 'top-bankers' => 'Top banchieri',
- 'top-downloaders-data' => 'Top downloader (dati)',
- 'top-leechers' => 'Leechers migliori',
- 'top-leechers-count' => 'Top Leechers (numero)',
- 'top-seeders' => 'Top Seeders',
- 'top-seeders-count' => 'Top Seeders (numero)',
- 'top-seeding-size' => 'Top Seeding (dimensioni)',
- 'top-seedtime' => 'Top Seedtime',
- 'top-uploaders-data' => 'Migliori uploader (dati)',
- 'top-uploaders-count' => 'Migliori Uploaders (conteggio)',
- 'topics' => 'Discussioni',
- 'topics-started' => 'Argomenti iniziati nel Forum',
- 'torrent-comments' => 'Commenti Torrent',
- 'torrent-help' => 'Controlla la condivisione di statistiche e informazioni relative ai torrent specifici con gruppi a cui è consentito l accesso al tuo profilo. Queste impostazioni sono sovrascritte se non si consente a nessun gruppo di accedere alle statistiche e alle informazioni relative al torrent o se si è privati',
- 'torrent-notification' => 'Impostazioni di notifica Torrent',
- 'torrent-notification-comment' => 'Ricevi una notifica quando un torrente caricato ottiene un nuovo commento',
- 'torrent-notification-thank' => 'Ricevi una notifica quando un torrente caricato riceve un nuovo ringraziamento',
- 'torrent-notification-tip' => 'Ricevi una notifica quando un torrente caricato ottiene un nuovo suggerimento',
- 'torrent-notification-help' => 'Controlla quali notifiche vengono inviate riguardo alle attività torrent. Queste impostazioni sono sovrascritte se non si consente a nessun gruppo di inviare notifiche relative alle attività torrent o se si disabilitano le notifiche',
- 'torrent-privacy' => 'Impostazioni Torrent',
- 'torrent-privacy-download' => 'Consenti agli utenti di visualizzare un elenco dei torrent che hai scaricato',
- 'torrent-privacy-upload' => 'Consenti agli utenti di visualizzare un elenco dei torrent che hai caricato',
- 'torrent-privacy-peer' => 'Consenti agli utenti di vederti nella cronologia peer dei torrent',
- 'torrents' => 'Torrents',
- 'torrents-history' => 'Torrents History',
- 'total-download' => 'Download totale',
- 'total-downloads' => 'Download totali',
- 'total-leeching' => 'Leeching totale',
- 'total-seeding' => 'Semina totale',
- 'total-seedtime' => 'Seedtime totale',
- 'total-upload' => 'Upload totale',
- 'total-uploads' => 'Uploads totali',
- 'unban' => 'Sbanna',
- 'unfollow' => 'Non seguire più',
- 'unlocked' => 'sbloccato',
- 'unlocked-achievements' => 'Risultati sbloccati',
- 'unsatisfieds' => 'NON soddisfatti',
- 'upload-bon' => 'Upload aggiunto con i BONUS',
- 'upload-recorded' => 'Upload globale',
- 'upload-true' => 'Upload effettivo',
- 'uploads' => 'Upload',
- 'uploads-table' => 'Carica tabella',
- 'user' => 'Utente',
- 'user-id' => 'ID utente',
- 'username-seedbox' => 'Nome utente Seedbox',
- 'visible-to-achievement' => 'Risultati visibili a',
- 'visible-to-achievement-help' => 'I tuoi risultati saranno visibili solo al personale e ai seguenti gruppi. Queste impostazioni sono sovrascritte se vai privato',
- 'visible-to-follower' => 'Seguaci visibili',
- 'visible-to-follower-help' => 'I tuoi follower saranno visibili solo allo staff e ai seguenti gruppi. Queste impostazioni sono sovrascritte se vai privato',
- 'visible-to-forum' => 'Informazioni sul forum Visibile a',
- 'visible-to-forum-help' => 'Le informazioni del tuo forum saranno visibili solo allo staff e ai seguenti gruppi. Queste impostazioni sono sovrascritte se vai privato',
- 'visible-to-other' => 'Altro visibile',
- 'visible-to-other-help' => 'Altre informazioni relative al tuo account saranno visibili solo allo staff e ai seguenti gruppi. Queste impostazioni sono sovrascritte se vai privato o se vai nascosto',
- 'visible-to-profile' => 'Profilo visibile a',
- 'visible-to-profile-help' => 'Il tuo profilo sarà visibile solo al personale e ai seguenti gruppi. Queste impostazioni sono sovrascritte se vai privato',
- 'visible-to-request' => 'Richiedi informazioni visibili a',
- 'visible-to-request-help' => 'Le informazioni sulla tua richiesta saranno visibili solo al personale e ai seguenti gruppi. Queste impostazioni sono sovrascritte se vai privato',
- 'visible-to-torrent' => 'Informazioni sul Torrente Visibile a',
- 'visible-to-torrent-help' => 'Le informazioni sul tuo torrent saranno visibili solo allo staff e ai seguenti gruppi. Queste impostazioni sono sovrascritte se vai privato o se vai nascosto',
- 'warned-on' => 'Avvisato',
- 'warning' => 'avvertimento',
- 'warning-log' => 'Registro avvisi',
- 'wishlist' => 'Lista dei desideri',
+ 'mention-notification-forum-post' => 'Ricevi una notifica quando sei @ indicato in un post sul forum',
+ 'mention-notification-help' => 'Controlla quali notifiche vengono inviate quando un utente @ ti ricorda. Queste impostazioni sono sovrascritte se non si consente a nessun gruppo di inviare notifiche se un utente @ ti ricorda o se si disabilitano le notifiche',
+ 'moderated-by' => 'Moderato da: mod on',
+ 'my-bonus-points' => 'I miei punti bonus',
+ 'my-bookmarks' => 'I miei segnalibri',
+ 'my-fl-tokens' => 'I miei token FL',
+ 'my-general-settings' => 'Le mie impostazioni generali',
+ 'my-notification' => 'Le mie notifiche',
+ 'my-notification-settings' => 'Le mie impostazioni di notifica',
+ 'my-privacy' => 'La mia privacy',
+ 'my-privacy-settings' => 'Le mie impostazioni sulla privacy',
+ 'my-profile' => 'Il mio profilo',
+ 'my-requested' => 'Le mie richieste',
+ 'my-security' => 'La mia sicurezza',
+ 'my-security-settings' => 'Le mie impostazioni di sicurezza',
+ 'my-seedboxes' => 'Le mie Seedbox',
+ 'my-settings' => 'Le mie impostazioni',
+ 'my-wishlist' => 'La mia lista dei desideri',
+ 'no-logs' => 'Non ci sono inviti nel database per questo utente!',
+ 'no-seedboxes' => 'Nessuna seedbox 😔',
+ 'not-authorized' => 'Non sei autorizzato a visualizzare questa pagina. Questo membro preferisce essere nascosto come un ninja!',
+ 'note' => 'Nota',
+ 'notification' => 'Notifica',
+ 'notification-settings' => 'Impostazioni di notifica',
+ 'notification-from-account' => 'Ricevi notifiche account da',
+ 'notification-from-account-help' => 'Riceverai solo le notifiche dell account dal sistema, dallo staff e dai seguenti gruppi. Queste impostazioni sono sovrascritte se si disabilitano le notifiche',
+ 'notification-from-bon' => 'Ricevi notifiche BON da',
+ 'notification-from-bon-help' => 'Riceverai solo notifiche BON dal sistema, dallo staff e dai seguenti gruppi. Queste impostazioni sono sovrascritte se si disabilitano le notifiche',
+ 'notification-from-following' => 'Ricevi notifiche utente seguite da',
+ 'notification-from-following-help' => 'Riceverai solo le notifiche degli utenti seguiti dai seguenti gruppi. Queste impostazioni sono sovrascritte se si disabilitano le notifiche',
+ 'notification-from-forum' => 'Ricevi notifiche del forum da',
+ 'notification-from-forum-help' => 'Riceverai solo le notifiche del forum dal sistema, dallo staff e dai seguenti gruppi. Queste impostazioni sono sovrascritte se si disabilitano le notifiche',
+ 'notification-from-subscription' => 'Ricevi notifiche di iscrizione da',
+ 'notification-from-subscription-help' => 'Riceverai solo le notifiche del forum dal sistema, dallo staff e dai seguenti gruppi. Queste impostazioni sono sovrascritte se si disabilitano le notifiche',
+ 'notification-from-torrent' => 'Ricevi notifiche Torrent da',
+ 'notification-from-torrent-help' => 'Riceverai solo notifiche torrent dal sistema, dallo staff e dai seguenti gruppi. Queste impostazioni sono sovrascritte se si disabilitano le notifiche',
+ 'notification-from-mention' => 'Ricevi notifiche @Mention da',
+ 'notification-from-mention-help' => 'Riceverai solo notifiche @mention dal sistema, dallo staff e dai seguenti gruppi. Queste impostazioni sono sovrascritte se si disabilitano le notifiche',
+ 'notification-from-request' => 'Ricevi notifiche di richiesta da',
+ 'notification-from-request-help' => 'Riceverai solo le notifiche di richiesta dal sistema, dallo staff e dai seguenti gruppi. Queste impostazioni sono sovrascritte se si disabilitano le notifiche',
+ 'notifications' => 'notifiche',
+ 'offline' => 'L utente è offline!',
+ 'online' => 'L utente è online!',
+ 'options' => 'Opzioni',
+ 'other-help' => 'Controlla la condivisione di altre statistiche e informazioni con gruppi a cui è consentito l accesso al tuo profilo. Queste impostazioni sono sovrascritte se non si consente a nessun gruppo di accedere alle altre statistiche e informazioni o se si è privati',
+ 'other-privacy' => 'Altre impostazioni',
+ 'other-privacy-online' => 'Consenti agli utenti di vederti tra gli utenti online',
+ 'passkey' => 'PID',
+ 'passkey-warning' => 'PID è come la tua password, devi tenerlo al sicuro!',
+ 'pending-achievements' => 'In attesa di risultati',
+ 'per-torrent' => 'Per Torrent',
+ 'posts' => 'Messaggi',
+ 'posts-posted' => 'Messaggi pubblicati sul forum',
+ 'privacy' => 'vita privata',
+ 'privacy-settings' => 'Impostazioni della privacy',
+ 'private-info' => 'Informazioni private',
+ 'private-forum-profile' => 'Attenzione: questoa discussione e la sua cronologia dei post è stata impostata su PRIVATO!',
+ 'private-profile' => 'Attenzione: questo profilo è stato impostato su PRIVATO!',
+ 'profile' => 'Profilo',
+ 'profile-desc' => 'Utente: profilo utente registrato su: titolo',
+ 'profile-privacy' => 'Impostazioni del profilo',
+ 'profile-privacy-torrent-count' => 'Condividi il tuo numero totale di downloads, uploads, condivisioni e prelievi',
+ 'profile-privacy-torrent-ratio' => 'Condividi i tuoi dati di upload / download totali insieme al rapporto registrato',
+ 'profile-privacy-torrent-seed' => 'Condividi il tuo tempo di semina totale e la media',
+ 'profile-privacy-title' => 'Condividi le informazioni sul titolo personale',
+ 'profile-privacy-about' => 'Condividi le tue informazioni personali',
+ 'profile-privacy-bon-extra' => 'Condividi le tue statistiche BON',
+ 'profile-privacy-comment-extra' => 'Condividi le statistiche dei tuoi commenti',
+ 'profile-privacy-forum-extra' => 'Condividi le tue statistiche del forum',
+ 'profile-privacy-request-extra' => 'Condividi le tue statistiche di richiesta',
+ 'profile-privacy-torrent-extra' => 'Condividi le tue statistiche di torrent',
+ 'profile-privacy-badge' => 'Condividi i tuoi badge guadagnati',
+ 'profile-privacy-achievement' => 'Condividi i tuoi risultati recenti',
+ 'profile-privacy-follower' => 'Condividi i tuoi follower recenti',
+ 'profile-privacy-warning' => 'Condividi i tuoi avvisi H & R',
+ 'profile-privacy-help' => 'Controlla quali statistiche e informazioni vengono visualizzate sul tuo profilo. Queste impostazioni sono sovrascritte se non permetti a nessun gruppo di accedere al tuo profilo o se vai privato',
+ 'public-info' => 'Informazioni pubbliche',
+ 'recent-achievements' => 'Risultati recenti',
+ 'recent-followers' => 'Seguaci recenti',
+ 'registration-date' => 'Data di registrazione',
+ 'report' => 'rapporto',
+ 'request-help' => 'Controlla la condivisione di statistiche e informazioni relative a richieste specifiche con gruppi a cui è consentito l accesso al tuo profilo. Queste impostazioni sono sovrascritte se non si consente a nessun gruppo di accedere alle statistiche e alle informazioni correlate richieste o se si è privati',
+ 'request' => 'Richiesta',
+ 'requested' => 'Richieste effettuate',
+ 'requests' => 'richieste',
+ 'request-comments' => 'Richiedi commenti Made',
+ 'request-notification' => 'Richiedi le impostazioni di notifica',
+ 'request-notification-bounty' => 'Ricevi una notifica quando un torrent richiesto ottiene una nuova taglia',
+ 'request-notification-comment' => 'Ricevi una notifica quando un torrent richiesto ottiene un nuovo commento',
+ 'request-notification-fill' => 'Ricevi una notifica quando viene esaudita una richiesta',
+ 'request-notification-fill-approve' => 'Ricevi una notifica quando viene approvato un riempimento richiesta',
+ 'request-notification-fill-reject' => 'Ricevi una notifica quando viene rifiutato un riempimento richiesta',
+ 'request-notification-claim' => 'Ricevi una notifica quando viene rivendicato un torrent richiesto',
+ 'request-notification-unclaim' => 'Ricevi una notifica quando un torrent richiesto non viene reclamato',
+ 'request-notification-help' => 'Controlla quali notifiche vengono inviate riguardo alle attività di richiesta. Queste impostazioni sono sovrascritte se non si consente a gruppi di inviare notifiche relative alle attività di richiesta o se si disabilitano le notifiche',
+ 'request-privacy' => 'Richiedi le impostazioni',
+ 'request-privacy-requested' => 'Consenti agli utenti di visualizzare un elenco di richieste che hai fatto',
+ 'reset-passkey' => 'Reimposta passkey (PID)',
+ 'reset-passkey-help' => 'Dovrai scaricare / caricare nuovamente tutti i tuoi torrent attivi, dopo aver resettato il PID',
+ 'reset-rss' => 'Reimposta chiave RSS (RID)',
+ 'reset-rss-help' => 'Dovrai ricaricare tutti i tuoi feed RSS attivi, dopo aver resettato il RID',
+ 'resurrections' => 'Resurrezioni',
+ 'search' => 'Ricerca utente',
+ 'security' => 'Sicurezza',
+ 'security-settings' => 'Impostazioni di sicurezza',
+ 'seedboxes' => 'Seedboxes',
+ 'seeds' => 'Condivisi',
+ 'send-invite' => 'Manda un invito',
+ 'sender' => 'Mittente',
+ 'settings' => 'impostazioni',
+ 'show-passkey' => 'Mostra PID',
+ 'staff-noted' => 'Account annotato dallo Staff',
+ 'statistics' => 'statistica',
+ 'subscription-notification' => 'Impostazioni di notifica dell abbonamento',
+ 'subscription-notification-forum' => 'Ricevi una notifica quando un forum sottoscritto riceve un nuovo argomento',
+ 'subscription-notification-topic' => 'Ricevi una notifica quando un argomento sottoscritto riceve un nuovo post',
+ 'subscription-notification-help' => 'Controlla quali notifiche vengono inviate in merito ai tuoi abbonamenti. Queste impostazioni sono sovrascritte se non si consente a nessun gruppo di inviare notifiche relative agli abbonamenti o se si disabilitano le notifiche',
+ 'thanks-given' => 'Grazie inviati',
+ 'thanks-received' => 'Grazie ricevuti',
+ 'tips-given' => 'Mancia lasciata',
+ 'tips-received' => 'Mancia ricevuta',
+ 'title' => 'Titolo',
+ 'top-bankers' => 'Top banchieri',
+ 'top-downloaders-data' => 'Top downloader (dati)',
+ 'top-leechers' => 'Leechers migliori',
+ 'top-leechers-count' => 'Top Leechers (numero)',
+ 'top-seeders' => 'Top Seeders',
+ 'top-seeders-count' => 'Top Seeders (numero)',
+ 'top-seeding-size' => 'Top Seeding (dimensioni)',
+ 'top-seedtime' => 'Top Seedtime',
+ 'top-uploaders-data' => 'Migliori uploader (dati)',
+ 'top-uploaders-count' => 'Migliori Uploaders (conteggio)',
+ 'topics' => 'Discussioni',
+ 'topics-started' => 'Argomenti iniziati nel Forum',
+ 'torrent-comments' => 'Commenti Torrent',
+ 'torrent-help' => 'Controlla la condivisione di statistiche e informazioni relative ai torrent specifici con gruppi a cui è consentito l accesso al tuo profilo. Queste impostazioni sono sovrascritte se non si consente a nessun gruppo di accedere alle statistiche e alle informazioni relative al torrent o se si è privati',
+ 'torrent-notification' => 'Impostazioni di notifica Torrent',
+ 'torrent-notification-comment' => 'Ricevi una notifica quando un torrente caricato ottiene un nuovo commento',
+ 'torrent-notification-thank' => 'Ricevi una notifica quando un torrente caricato riceve un nuovo ringraziamento',
+ 'torrent-notification-tip' => 'Ricevi una notifica quando un torrente caricato ottiene un nuovo suggerimento',
+ 'torrent-notification-help' => 'Controlla quali notifiche vengono inviate riguardo alle attività torrent. Queste impostazioni sono sovrascritte se non si consente a nessun gruppo di inviare notifiche relative alle attività torrent o se si disabilitano le notifiche',
+ 'torrent-privacy' => 'Impostazioni Torrent',
+ 'torrent-privacy-download' => 'Consenti agli utenti di visualizzare un elenco dei torrent che hai scaricato',
+ 'torrent-privacy-upload' => 'Consenti agli utenti di visualizzare un elenco dei torrent che hai caricato',
+ 'torrent-privacy-peer' => 'Consenti agli utenti di vederti nella cronologia peer dei torrent',
+ 'torrents' => 'Torrents',
+ 'torrents-history' => 'Torrents History',
+ 'total-download' => 'Download totale',
+ 'total-downloads' => 'Download totali',
+ 'total-leeching' => 'Leeching totale',
+ 'total-seeding' => 'Semina totale',
+ 'total-seedtime' => 'Seedtime totale',
+ 'total-upload' => 'Upload totale',
+ 'total-uploads' => 'Uploads totali',
+ 'unban' => 'Sbanna',
+ 'unfollow' => 'Non seguire più',
+ 'unlocked' => 'sbloccato',
+ 'unlocked-achievements' => 'Risultati sbloccati',
+ 'unsatisfieds' => 'NON soddisfatti',
+ 'upload-bon' => 'Upload aggiunto con i BONUS',
+ 'upload-recorded' => 'Upload globale',
+ 'upload-true' => 'Upload effettivo',
+ 'uploads' => 'Upload',
+ 'uploads-table' => 'Carica tabella',
+ 'user' => 'Utente',
+ 'user-id' => 'ID utente',
+ 'username-seedbox' => 'Nome utente Seedbox',
+ 'visible-to-achievement' => 'Risultati visibili a',
+ 'visible-to-achievement-help' => 'I tuoi risultati saranno visibili solo al personale e ai seguenti gruppi. Queste impostazioni sono sovrascritte se vai privato',
+ 'visible-to-follower' => 'Seguaci visibili',
+ 'visible-to-follower-help' => 'I tuoi follower saranno visibili solo allo staff e ai seguenti gruppi. Queste impostazioni sono sovrascritte se vai privato',
+ 'visible-to-forum' => 'Informazioni sul forum Visibile a',
+ 'visible-to-forum-help' => 'Le informazioni del tuo forum saranno visibili solo allo staff e ai seguenti gruppi. Queste impostazioni sono sovrascritte se vai privato',
+ 'visible-to-other' => 'Altro visibile',
+ 'visible-to-other-help' => 'Altre informazioni relative al tuo account saranno visibili solo allo staff e ai seguenti gruppi. Queste impostazioni sono sovrascritte se vai privato o se vai nascosto',
+ 'visible-to-profile' => 'Profilo visibile a',
+ 'visible-to-profile-help' => 'Il tuo profilo sarà visibile solo al personale e ai seguenti gruppi. Queste impostazioni sono sovrascritte se vai privato',
+ 'visible-to-request' => 'Richiedi informazioni visibili a',
+ 'visible-to-request-help' => 'Le informazioni sulla tua richiesta saranno visibili solo al personale e ai seguenti gruppi. Queste impostazioni sono sovrascritte se vai privato',
+ 'visible-to-torrent' => 'Informazioni sul Torrente Visibile a',
+ 'visible-to-torrent-help' => 'Le informazioni sul tuo torrent saranno visibili solo allo staff e ai seguenti gruppi. Queste impostazioni sono sovrascritte se vai privato o se vai nascosto',
+ 'warned-on' => 'Avvisato',
+ 'warning' => 'avvertimento',
+ 'warning-log' => 'Registro avvisi',
+ 'wishlist' => 'Lista dei desideri',
];
diff --git a/lang/it/validation.php b/lang/it/validation.php
index 3bcd6ddd6..c344396ca 100644
--- a/lang/it/validation.php
+++ b/lang/it/validation.php
@@ -23,108 +23,108 @@ return [
|
*/
- 'accepted' => ':attribute deve essere accettato.',
- 'active_url' => ':attribute non è un URL valido.',
- 'after' => ':attribute deve essere una data successiva al :date.',
- 'after_or_equal' => ':attribute deve essere una data successiva o uguale al :date.',
- 'alpha' => ':attribute può contenere solo lettere.',
- 'alpha_dash' => ':attribute può contenere solo lettere, numeri e trattini.',
- 'alpha_num' => ':attribute può contenere solo lettere e numeri.',
- 'array' => ':attribute deve essere un array.',
- 'before' => ':attribute deve essere una data precedente al :date.',
- 'before_or_equal' => ':attribute deve essere una data precedente o uguale al :date.',
- 'between' => [
+ 'accepted' => ':attribute deve essere accettato.',
+ 'active_url' => ':attribute non è un URL valido.',
+ 'after' => ':attribute deve essere una data successiva al :date.',
+ 'after_or_equal' => ':attribute deve essere una data successiva o uguale al :date.',
+ 'alpha' => ':attribute può contenere solo lettere.',
+ 'alpha_dash' => ':attribute può contenere solo lettere, numeri e trattini.',
+ 'alpha_num' => ':attribute può contenere solo lettere e numeri.',
+ 'array' => ':attribute deve essere un array.',
+ 'before' => ':attribute deve essere una data precedente al :date.',
+ 'before_or_equal' => ':attribute deve essere una data precedente o uguale al :date.',
+ 'between' => [
'numeric' => ':attribute deve trovarsi tra :min - :max.',
- 'file' => ':attribute deve trovarsi tra :min - :max kilobyte.',
- 'string' => ':attribute di :min - :max caratteri',
- 'array' => ':attribute deve avere tra :min - :max elementi.',
+ 'file' => ':attribute deve trovarsi tra :min - :max kilobyte.',
+ 'string' => ':attribute di :min - :max caratteri',
+ 'array' => ':attribute deve avere tra :min - :max elementi.',
],
- 'boolean' => 'Il campo :attribute deve essere vero o falso.',
- 'confirmed' => 'Il campo di conferma per :attribute non coincide.',
- 'date' => ':attribute non è una data valida.',
- 'date_equals' => ':attribute deve essere una data e uguale a :date.',
- 'date_format' => ':attribute non coincide con il formato :format.',
- 'different' => ':attribute e :other devono essere differenti.',
- 'digits' => ':attribute deve essere di :digits cifre.',
- 'digits_between' => ':attribute deve essere tra :min e :max cifre.',
- 'dimensions' => "Le dimensioni dell'immagine di :attribute non sono valide.",
- 'distinct' => ':attribute contiene un valore duplicato.',
- 'email' => ':attribute non è valido.',
- 'exists' => ':attribute selezionato non è valido.',
- 'file' => ':attribute deve essere un file.',
- 'filled' => 'Il campo :attribute deve contenere un valore.',
- 'gt' => [
+ 'boolean' => 'Il campo :attribute deve essere vero o falso.',
+ 'confirmed' => 'Il campo di conferma per :attribute non coincide.',
+ 'date' => ':attribute non è una data valida.',
+ 'date_equals' => ':attribute deve essere una data e uguale a :date.',
+ 'date_format' => ':attribute non coincide con il formato :format.',
+ 'different' => ':attribute e :other devono essere differenti.',
+ 'digits' => ':attribute deve essere di :digits cifre.',
+ 'digits_between' => ':attribute deve essere tra :min e :max cifre.',
+ 'dimensions' => "Le dimensioni dell'immagine di :attribute non sono valide.",
+ 'distinct' => ':attribute contiene un valore duplicato.',
+ 'email' => ':attribute non è valido.',
+ 'exists' => ':attribute selezionato non è valido.',
+ 'file' => ':attribute deve essere un file.',
+ 'filled' => 'Il campo :attribute deve contenere un valore.',
+ 'gt' => [
'numeric' => ':attribute deve essere maggiore di :value.',
- 'file' => ':attribute deve essere maggiore di :value kilobyte.',
- 'string' => ':attribute deve contenere più di :value caratteri.',
- 'array' => ':attribute deve contenere più di :value elementi.',
+ 'file' => ':attribute deve essere maggiore di :value kilobyte.',
+ 'string' => ':attribute deve contenere più di :value caratteri.',
+ 'array' => ':attribute deve contenere più di :value elementi.',
],
- 'gte' => [
+ 'gte' => [
'numeric' => ':attribute deve essere uguale o maggiore di :value.',
- 'file' => ':attribute deve essere uguale o maggiore di :value kilobyte.',
- 'string' => ':attribute deve contenere un numero di caratteri uguale o maggiore di :value.',
- 'array' => ':attribute deve contenere un numero di elementi uguale o maggiore di :value.',
+ 'file' => ':attribute deve essere uguale o maggiore di :value kilobyte.',
+ 'string' => ':attribute deve contenere un numero di caratteri uguale o maggiore di :value.',
+ 'array' => ':attribute deve contenere un numero di elementi uguale o maggiore di :value.',
],
- 'image' => ":attribute deve essere un'immagine.",
- 'in' => ':attribute selezionato non è valido.',
- 'in_array' => 'Il valore del campo :attribute non esiste in :other.',
- 'integer' => ':attribute deve essere un numero intero.',
- 'ip' => ':attribute deve essere un indirizzo IP valido.',
- 'ipv4' => ':attribute deve essere un indirizzo IPv4 valido.',
- 'ipv6' => ':attribute deve essere un indirizzo IPv6 valido.',
- 'json' => ':attribute deve essere una stringa JSON valida.',
- 'lt' => [
+ 'image' => ":attribute deve essere un'immagine.",
+ 'in' => ':attribute selezionato non è valido.',
+ 'in_array' => 'Il valore del campo :attribute non esiste in :other.',
+ 'integer' => ':attribute deve essere un numero intero.',
+ 'ip' => ':attribute deve essere un indirizzo IP valido.',
+ 'ipv4' => ':attribute deve essere un indirizzo IPv4 valido.',
+ 'ipv6' => ':attribute deve essere un indirizzo IPv6 valido.',
+ 'json' => ':attribute deve essere una stringa JSON valida.',
+ 'lt' => [
'numeric' => ':attribute deve essere minore di :value.',
- 'file' => ':attribute deve essere minore di :value kilobyte.',
- 'string' => ':attribute deve contenere meno di :value caratteri.',
- 'array' => ':attribute deve contenere meno di :value elementi.',
+ 'file' => ':attribute deve essere minore di :value kilobyte.',
+ 'string' => ':attribute deve contenere meno di :value caratteri.',
+ 'array' => ':attribute deve contenere meno di :value elementi.',
],
- 'lte' => [
+ 'lte' => [
'numeric' => ':attribute deve essere minore o uguale a :value.',
- 'file' => ':attribute deve essere minore o uguale a :value kilobyte.',
- 'string' => ':attribute deve contenere un numero di caratteri minore o uguale a :value.',
- 'array' => ':attribute deve contenere un numero di elementi minore o uguale a :value.',
+ 'file' => ':attribute deve essere minore o uguale a :value kilobyte.',
+ 'string' => ':attribute deve contenere un numero di caratteri minore o uguale a :value.',
+ 'array' => ':attribute deve contenere un numero di elementi minore o uguale a :value.',
],
- 'max' => [
+ 'max' => [
'numeric' => ':attribute non può essere superiore a :max.',
- 'file' => ':attribute non può essere superiore a :max kilobyte.',
- 'string' => ':attribute non può contenere più di :max caratteri.',
- 'array' => ':attribute non può avere più di :max elementi.',
+ 'file' => ':attribute non può essere superiore a :max kilobyte.',
+ 'string' => ':attribute non può contenere più di :max caratteri.',
+ 'array' => ':attribute non può avere più di :max elementi.',
],
- 'mimes' => ':attribute deve essere del tipo: :values.',
- 'mimetypes' => ':attribute deve essere del tipo: :values.',
- 'min' => [
+ 'mimes' => ':attribute deve essere del tipo: :values.',
+ 'mimetypes' => ':attribute deve essere del tipo: :values.',
+ 'min' => [
'numeric' => ':attribute deve essere almeno :min.',
- 'file' => ':attribute deve essere almeno di :min kilobyte.',
- 'string' => ':attribute deve contenere almeno :min caratteri.',
- 'array' => ':attribute deve avere almeno :min elementi.',
+ 'file' => ':attribute deve essere almeno di :min kilobyte.',
+ 'string' => ':attribute deve contenere almeno :min caratteri.',
+ 'array' => ':attribute deve avere almeno :min elementi.',
],
- 'not_in' => 'Il valore selezionato per :attribute non è valido.',
- 'not_regex' => 'Il formato di :attribute non è valido.',
- 'numeric' => ':attribute deve essere un numero.',
- 'present' => 'Il campo :attribute deve essere presente.',
- 'regex' => 'Il formato del campo :attribute non è valido.',
- 'required' => 'Il campo :attribute è richiesto.',
- 'required_if' => 'Il campo :attribute è richiesto quando :other è :value.',
- 'required_unless' => 'Il campo :attribute è richiesto a meno che :other sia in :values.',
- 'required_with' => 'Il campo :attribute è richiesto quando :values è presente.',
- 'required_with_all' => 'Il campo :attribute è richiesto quando :values sono presenti.',
- 'required_without' => 'Il campo :attribute è richiesto quando :values non è presente.',
+ 'not_in' => 'Il valore selezionato per :attribute non è valido.',
+ 'not_regex' => 'Il formato di :attribute non è valido.',
+ 'numeric' => ':attribute deve essere un numero.',
+ 'present' => 'Il campo :attribute deve essere presente.',
+ 'regex' => 'Il formato del campo :attribute non è valido.',
+ 'required' => 'Il campo :attribute è richiesto.',
+ 'required_if' => 'Il campo :attribute è richiesto quando :other è :value.',
+ 'required_unless' => 'Il campo :attribute è richiesto a meno che :other sia in :values.',
+ 'required_with' => 'Il campo :attribute è richiesto quando :values è presente.',
+ 'required_with_all' => 'Il campo :attribute è richiesto quando :values sono presenti.',
+ 'required_without' => 'Il campo :attribute è richiesto quando :values non è presente.',
'required_without_all' => 'Il campo :attribute è richiesto quando nessuno di :values è presente.',
- 'same' => ':attribute e :other devono coincidere.',
- 'size' => [
+ 'same' => ':attribute e :other devono coincidere.',
+ 'size' => [
'numeric' => ':attribute deve essere :size.',
- 'file' => ':attribute deve essere :size kilobyte.',
- 'string' => ':attribute deve contenere :size caratteri.',
- 'array' => ':attribute deve contenere :size elementi.',
+ 'file' => ':attribute deve essere :size kilobyte.',
+ 'string' => ':attribute deve contenere :size caratteri.',
+ 'array' => ':attribute deve contenere :size elementi.',
],
- 'starts_with' => ':attribute deve iniziare con uno dei seguenti: :values',
- 'string' => ':attribute deve essere una stringa.',
- 'timezone' => ':attribute deve essere una zona valida.',
- 'unique' => ':attribute già utilizzato',
- 'uploaded' => ':attribute non è stato caricato.',
- 'url' => 'Il formato del campo :attribute non è valido.',
- 'uuid' => ':attribute deve essere un UUID valido.',
+ 'starts_with' => ':attribute deve iniziare con uno dei seguenti: :values',
+ 'string' => ':attribute deve essere una stringa.',
+ 'timezone' => ':attribute deve essere una zona valida.',
+ 'unique' => ':attribute già utilizzato',
+ 'uploaded' => ':attribute non è stato caricato.',
+ 'url' => 'Il formato del campo :attribute non è valido.',
+ 'uuid' => ':attribute deve essere un UUID valido.',
/*
|--------------------------------------------------------------------------
@@ -155,32 +155,32 @@ return [
*/
'attributes' => [
- 'name' => 'nome',
- 'username' => 'nome utente',
- 'first_name' => 'nome',
- 'last_name' => 'cognome',
+ 'name' => 'nome',
+ 'username' => 'nome utente',
+ 'first_name' => 'nome',
+ 'last_name' => 'cognome',
'password_confirmation' => 'conferma password',
- 'city' => 'città',
- 'country' => 'paese',
- 'address' => 'indirizzo',
- 'phone' => 'telefono',
- 'mobile' => 'cellulare',
- 'age' => 'età',
- 'sex' => 'sesso',
- 'gender' => 'genere',
- 'day' => 'giorno',
- 'month' => 'mese',
- 'year' => 'anno',
- 'hour' => 'ora',
- 'minute' => 'minuto',
- 'second' => 'secondo',
- 'title' => 'titolo',
- 'content' => 'contenuto',
- 'description' => 'descrizione',
- 'excerpt' => 'estratto',
- 'date' => 'data',
- 'time' => 'ora',
- 'available' => 'disponibile',
- 'size' => 'dimensione',
+ 'city' => 'città',
+ 'country' => 'paese',
+ 'address' => 'indirizzo',
+ 'phone' => 'telefono',
+ 'mobile' => 'cellulare',
+ 'age' => 'età',
+ 'sex' => 'sesso',
+ 'gender' => 'genere',
+ 'day' => 'giorno',
+ 'month' => 'mese',
+ 'year' => 'anno',
+ 'hour' => 'ora',
+ 'minute' => 'minuto',
+ 'second' => 'secondo',
+ 'title' => 'titolo',
+ 'content' => 'contenuto',
+ 'description' => 'descrizione',
+ 'excerpt' => 'estratto',
+ 'date' => 'data',
+ 'time' => 'ora',
+ 'available' => 'disponibile',
+ 'size' => 'dimensione',
],
];
diff --git a/lang/ja/articles.php b/lang/ja/articles.php
index 40a78a7f7..9a242177c 100644
--- a/lang/ja/articles.php
+++ b/lang/ja/articles.php
@@ -12,8 +12,8 @@
*/
return [
- 'articles' => '記事',
+ 'articles' => '記事',
'meta-articles' => 'トラッカーとコミュニティに関する記事とニュース',
- 'published-at' => '公開日',
- 'read-more' => '続きを読む',
+ 'published-at' => '公開日',
+ 'read-more' => '続きを読む',
];
diff --git a/lang/ja/auth.php b/lang/ja/auth.php
index 2cbef3232..2bf7bfb60 100644
--- a/lang/ja/auth.php
+++ b/lang/ja/auth.php
@@ -23,6 +23,6 @@ return [
|
*/
- 'failed' => '認証情報と一致するレコードがありません。',
+ 'failed' => '認証情報と一致するレコードがありません。',
'throttle' => 'ログインの試行回数が多すぎます。:seconds 秒後にお試しください。',
];
diff --git a/lang/ja/backup.php b/lang/ja/backup.php
index cf166dd8c..52d5fb9a5 100644
--- a/lang/ja/backup.php
+++ b/lang/ja/backup.php
@@ -12,32 +12,32 @@
*/
return [
- 'actions' => '行動',
- 'backup' => 'バックアップ',
- 'backup_doesnt_exist' => 'バックアップファイルが存在しません。',
- 'create_a_new_backup' => 'フルバックアップを作成する',
- 'create_a_new_files_backup' => 'ファイルの作成バックアップ',
- 'create_a_new_db_backup' => 'データベースバックアップを作成する',
- 'create_confirmation_message' => '3秒でページをリロードします。',
- 'create_confirmation_title' => 'バックアップが完了しました',
- 'create_error_message' => 'バックアップファイルを作成できませんでした。',
- 'create_error_title' => 'バックアップエラー',
- 'create_warning_message' => 'バックアップは作成されていない可能性があります。詳細についてはログファイルを確認してください。',
- 'create_warning_title' => '未知のエラー',
- 'date' => '日付',
- 'delete' => '削除する',
- 'delete_cancel_message' => 'バックアップファイルは削除されていません。',
- 'delete_cancel_title' => '大丈夫です',
- 'delete_confirm' => 'このバックアップファイルを削除してよろしいですか?',
- 'delete_confirmation_message' => 'バックアップファイルが削除されました。',
- 'delete_confirmation_title' => '完了',
- 'delete_error_message' => 'バックアップファイルは削除されていません。',
- 'delete_error_title' => 'エラー',
- 'download' => 'ダウンロード',
- 'existing_backups' => '既存のバックアップ',
- 'file_size' => 'ファイルサイズ',
- 'location' => 'ロケーション',
- 'manager' => '部長',
- 'no_disks_configured' => 'config / backup.phpにバックアップディスクが設定されていません',
+ 'actions' => '行動',
+ 'backup' => 'バックアップ',
+ 'backup_doesnt_exist' => 'バックアップファイルが存在しません。',
+ 'create_a_new_backup' => 'フルバックアップを作成する',
+ 'create_a_new_files_backup' => 'ファイルの作成バックアップ',
+ 'create_a_new_db_backup' => 'データベースバックアップを作成する',
+ 'create_confirmation_message' => '3秒でページをリロードします。',
+ 'create_confirmation_title' => 'バックアップが完了しました',
+ 'create_error_message' => 'バックアップファイルを作成できませんでした。',
+ 'create_error_title' => 'バックアップエラー',
+ 'create_warning_message' => 'バックアップは作成されていない可能性があります。詳細についてはログファイルを確認してください。',
+ 'create_warning_title' => '未知のエラー',
+ 'date' => '日付',
+ 'delete' => '削除する',
+ 'delete_cancel_message' => 'バックアップファイルは削除されていません。',
+ 'delete_cancel_title' => '大丈夫です',
+ 'delete_confirm' => 'このバックアップファイルを削除してよろしいですか?',
+ 'delete_confirmation_message' => 'バックアップファイルが削除されました。',
+ 'delete_confirmation_title' => '完了',
+ 'delete_error_message' => 'バックアップファイルは削除されていません。',
+ 'delete_error_title' => 'エラー',
+ 'download' => 'ダウンロード',
+ 'existing_backups' => '既存のバックアップ',
+ 'file_size' => 'ファイルサイズ',
+ 'location' => 'ロケーション',
+ 'manager' => '部長',
+ 'no_disks_configured' => 'config / backup.phpにバックアップディスクが設定されていません',
'only_local_downloads_supported' => 'ローカルファイルシステムからのダウンロードのみがサポートされています。',
];
diff --git a/lang/ja/blocks.php b/lang/ja/blocks.php
index 98a248b06..11b5a4833 100644
--- a/lang/ja/blocks.php
+++ b/lang/ja/blocks.php
@@ -12,19 +12,19 @@
*/
return [
- 'chatbox' => 'チャットボックス',
- 'click' => 'クリック',
- 'to-enable-editor' => 'エディタを有効にする',
- 'featured-by' => 'で注目',
- 'featured-torrents' => '注目の急流',
+ 'chatbox' => 'チャットボックス',
+ 'click' => 'クリック',
+ 'to-enable-editor' => 'エディタを有効にする',
+ 'featured-by' => 'で注目',
+ 'featured-torrents' => '注目の急流',
'featured-torrents-intro' => 'あなたができるうちにそれらを入手!',
- 'featured-until' => 'これはトレントまで特集されています',
- 'top-torrents' => 'トップ急流',
- 'latest-posts' => '最新の投稿',
- 'latest-topics' => '最新トピックス',
- 'active-in-last' => '最後にアクティブ',
- 'users-online' => 'オンラインのユーザー',
- 'check-news' => 'お知らせ(毎日チェック)',
- 'new-news' => '新しいニュース',
- 'new-torrents' => '新しい急流',
+ 'featured-until' => 'これはトレントまで特集されています',
+ 'top-torrents' => 'トップ急流',
+ 'latest-posts' => '最新の投稿',
+ 'latest-topics' => '最新トピックス',
+ 'active-in-last' => '最後にアクティブ',
+ 'users-online' => 'オンラインのユーザー',
+ 'check-news' => 'お知らせ(毎日チェック)',
+ 'new-news' => '新しいニュース',
+ 'new-torrents' => '新しい急流',
];
diff --git a/lang/ja/bon.php b/lang/ja/bon.php
index d64a22070..10c4bfe0a 100644
--- a/lang/ja/bon.php
+++ b/lang/ja/bon.php
@@ -12,44 +12,44 @@
*/
return [
- 'activated' => '有効化',
- 'active' => '起動しました。',
- 'amount' => '量',
- 'bon' => 'BON',
- 'bonus' => 'ボーナス',
- 'date' => '日付',
- 'earning' => '収益',
- 'earning-rate' => 'この収益率では、時間枠ごとに以下の収益が得られます。',
- 'earnings' => '収益',
- 'exchange' => '交換',
- 'exchange-warning' => '交換は最終的です、交換をする前にあなたの選択を再確認してください。',
- 'extended-stats' => '拡張統計',
- 'gift' => '贈り物',
- 'gift-bonus' => 'ギフトボーナスポイント',
- 'gift-to' => 'ギフトボーナスポイント',
- 'gifts' => 'ギフト',
- 'item' => '項目',
- 'no-refund' => '返金なし!',
- 'per-day' => '1日あたりのポイント',
- 'per-hour' => '1時間あたりのポイント',
- 'per-minute' => '1分あたりのポイント',
- 'per-month' => '1ヶ月あたりのポイント',
- 'per-second' => '1秒あたりのポイント',
- 'per-week' => '1週間あたりの得点',
- 'per-year' => '年間ポイント',
- 'points' => 'ポイント',
- 'receiver' => '受信機',
- 'review-seeds' => 'すべてのシード急流の見直し',
- 'send-gift' => 'ギフトを送る',
- 'sender' => '送信者',
- 'store' => '格納',
- 'tips' => 'ヒント',
- 'total' => '総収益',
- 'total-gifts' => '合計BONギフト',
- 'total-tips' => '合計BONのヒント',
+ 'activated' => '有効化',
+ 'active' => '起動しました。',
+ 'amount' => '量',
+ 'bon' => 'BON',
+ 'bonus' => 'ボーナス',
+ 'date' => '日付',
+ 'earning' => '収益',
+ 'earning-rate' => 'この収益率では、時間枠ごとに以下の収益が得られます。',
+ 'earnings' => '収益',
+ 'exchange' => '交換',
+ 'exchange-warning' => '交換は最終的です、交換をする前にあなたの選択を再確認してください。',
+ 'extended-stats' => '拡張統計',
+ 'gift' => '贈り物',
+ 'gift-bonus' => 'ギフトボーナスポイント',
+ 'gift-to' => 'ギフトボーナスポイント',
+ 'gifts' => 'ギフト',
+ 'item' => '項目',
+ 'no-refund' => '返金なし!',
+ 'per-day' => '1日あたりのポイント',
+ 'per-hour' => '1時間あたりのポイント',
+ 'per-minute' => '1分あたりのポイント',
+ 'per-month' => '1ヶ月あたりのポイント',
+ 'per-second' => '1秒あたりのポイント',
+ 'per-week' => '1週間あたりの得点',
+ 'per-year' => '年間ポイント',
+ 'points' => 'ポイント',
+ 'receiver' => '受信機',
+ 'review-seeds' => 'すべてのシード急流の見直し',
+ 'send-gift' => 'ギフトを送る',
+ 'sender' => '送信者',
+ 'store' => '格納',
+ 'tips' => 'ヒント',
+ 'total' => '総収益',
+ 'total-gifts' => '合計BONギフト',
+ 'total-tips' => '合計BONのヒント',
'you-have-received-gifts' => 'あなたが受け取った',
- 'you-have-sent-gifts' => 'あなたが送信されてきました',
- 'you-have-received-tips' => 'あなたが受け取った',
- 'you-have-sent-tips' => 'あなたが送信されてきました',
- 'your-points' => 'あなたのポイント',
+ 'you-have-sent-gifts' => 'あなたが送信されてきました',
+ 'you-have-received-tips' => 'あなたが受け取った',
+ 'you-have-sent-tips' => 'あなたが送信されてきました',
+ 'your-points' => 'あなたのポイント',
];
diff --git a/lang/ja/bot.php b/lang/ja/bot.php
index c0503fe99..bed15dcfd 100644
--- a/lang/ja/bot.php
+++ b/lang/ja/bot.php
@@ -12,15 +12,15 @@
*/
return [
- 'about' => '約',
- 'bot' => 'ボット',
- 'bots' => 'ボット',
- 'color' => '色',
- 'command' => 'コマンド',
- 'edit-bot' => 'ボットを編集',
+ 'about' => '約',
+ 'bot' => 'ボット',
+ 'bots' => 'ボット',
+ 'color' => '色',
+ 'command' => 'コマンド',
+ 'edit-bot' => 'ボットを編集',
'emoji-code' => '絵文字コード',
- 'help' => '助けて',
- 'icon' => 'アイコン',
- 'info' => '情報',
- 'name' => '名',
+ 'help' => '助けて',
+ 'icon' => 'アイコン',
+ 'info' => '情報',
+ 'name' => '名',
];
diff --git a/lang/ja/bug.php b/lang/ja/bug.php
index 51460aac4..ef656e7a8 100644
--- a/lang/ja/bug.php
+++ b/lang/ja/bug.php
@@ -12,15 +12,15 @@
*/
return [
- 'bug-report' => 'バグレポート',
+ 'bug-report' => 'バグレポート',
'bug-report-description' => 'サイトのバグを報告する',
- 'enter-description' => 'できるだけ問題を説明してください',
- 'enter-email' => 'あなたのメールアドレスを入力してください',
- 'enter-title' => '適切なタイトルを選択してください',
- 'enter-username' => 'ユーザー名を入力してください',
- 'high' => '高い',
- 'low' => '低い',
- 'priority' => '優先度',
- 'priority-description' => 'このバグが本当にこのサイトを使用する上で問題となる場合のみ、非常に高い値を選択してください。',
- 'very-high' => 'すごく高い',
+ 'enter-description' => 'できるだけ問題を説明してください',
+ 'enter-email' => 'あなたのメールアドレスを入力してください',
+ 'enter-title' => '適切なタイトルを選択してください',
+ 'enter-username' => 'ユーザー名を入力してください',
+ 'high' => '高い',
+ 'low' => '低い',
+ 'priority' => '優先度',
+ 'priority-description' => 'このバグが本当にこのサイトを使用する上で問題となる場合のみ、非常に高い値を選択してください。',
+ 'very-high' => 'すごく高い',
];
diff --git a/lang/ja/common.php b/lang/ja/common.php
index e28864a07..54f362119 100644
--- a/lang/ja/common.php
+++ b/lang/ja/common.php
@@ -12,179 +12,179 @@
*/
return [
- 'a-an-art' => '',
- 'about' => '私たちに関しては',
- 'account' => 'アカウント',
- 'achievement-title' => '驚くばかり',
+ 'a-an-art' => '',
+ 'about' => '私たちに関しては',
+ 'account' => 'アカウント',
+ 'achievement-title' => '驚くばかり',
'achievement-unlocked' => '":name"アチーブメントのロックを解除しました',
- 'active' => 'アクティブ',
- 'active-warning' => 'アクティブ警告',
- 'add' => '追加する',
- 'added' => '追加しました',
- 'amount' => '量',
- 'anonymous' => '匿名',
- 'author' => '著者',
- 'balance' => 'バランス',
- 'blacklist' => 'クライアントブラックリスト',
- 'buffer' => 'バッファ',
- 'bug' => 'バグを報告',
- 'but' => 'しかし',
- 'cancel' => 'キャンセル',
- 'category' => 'カテゴリー',
- 'categories' => 'カテゴリー',
- 'close' => '閉じる',
- 'comment' => 'コメント',
- 'comments' => 'コメント',
- 'community' => 'コミュニティ',
- 'contact' => '接触',
- 'contact-desc' => 'この連絡先の要求は所有者に送信され、できるだけ早くあなたに戻ります',
- 'contact-header' => 'こんにちは',
- 'create' => '作成する',
- 'created_at' => '作成日',
- 'day' => '日',
- 'delete' => '削除する',
- 'delete-your-comment' => 'あなたのコメントを削除',
- 'description' => '説明',
- 'direction' => '方向',
- 'disable' => '無効にする',
- 'doubleup_activated' => 'グローバルダブルアップロードモードが有効',
- 'download' => 'ダウンロード',
- 'edit' => '編集する',
- 'edit-your-comment' => 'あなたのコメントを編集する',
- 'email' => 'Eメール',
- 'email-blacklist' => '電子メールブラックリスト',
- 'email-whitelist' => 'メールのホワイトリスト',
+ 'active' => 'アクティブ',
+ 'active-warning' => 'アクティブ警告',
+ 'add' => '追加する',
+ 'added' => '追加しました',
+ 'amount' => '量',
+ 'anonymous' => '匿名',
+ 'author' => '著者',
+ 'balance' => 'バランス',
+ 'blacklist' => 'クライアントブラックリスト',
+ 'buffer' => 'バッファ',
+ 'bug' => 'バグを報告',
+ 'but' => 'しかし',
+ 'cancel' => 'キャンセル',
+ 'category' => 'カテゴリー',
+ 'categories' => 'カテゴリー',
+ 'close' => '閉じる',
+ 'comment' => 'コメント',
+ 'comments' => 'コメント',
+ 'community' => 'コミュニティ',
+ 'contact' => '接触',
+ 'contact-desc' => 'この連絡先の要求は所有者に送信され、できるだけ早くあなたに戻ります',
+ 'contact-header' => 'こんにちは',
+ 'create' => '作成する',
+ 'created_at' => '作成日',
+ 'day' => '日',
+ 'delete' => '削除する',
+ 'delete-your-comment' => 'あなたのコメントを削除',
+ 'description' => '説明',
+ 'direction' => '方向',
+ 'disable' => '無効にする',
+ 'doubleup_activated' => 'グローバルダブルアップロードモードが有効',
+ 'download' => 'ダウンロード',
+ 'edit' => '編集する',
+ 'edit-your-comment' => 'あなたのコメントを編集する',
+ 'email' => 'Eメール',
+ 'email-blacklist' => '電子メールブラックリスト',
+ 'email-whitelist' => 'メールのホワイトリスト',
'email-list-notactive' => '電子メールのホワイトリスト/ブラックリストシステムが有効になっていない',
- 'enable' => '有効にする',
- 'enter' => '入る',
- 'error' => 'エラー',
- 'everyday' => '毎日',
- 'expired' => '期限切れ',
- 'extra' => '追加の',
- 'extra-stats' => '特別統計',
- 'faq' => 'よくある質問',
- 'files' => 'ファイル',
- 'fl_token' => 'フリーリーチトークン',
- 'fl_tokens' => 'フリーリーチトークン',
- 'for' => 'にとって',
- 'forum' => 'フォーラム',
- 'free' => '無料',
- 'freeleech_activated' => 'グローバルフリーリーチモードが有効',
- 'global' => 'グローバル',
- 'group' => 'グループ',
- 'groups' => 'グループ',
- 'hidden' => '隠れた',
- 'high-speeds' => '高速度',
- 'home' => 'ホーム',
- 'hot' => 'ホット!',
- 'hour' => '時',
- 'huge' => '巨大',
- 'info' => '情報',
- 'internal' => '内部',
- 'ip' => 'IP',
- 'is-allowed' => '許可されています',
- 'large' => '大',
- 'latest' => '最新',
- 'latest-posts' => '最新の投稿',
- 'latest-topics' => '最新トピックス',
- 'legal' => '法的',
- 'legend' => '伝説',
- 'lists' => 'リスト',
- 'lock-account' => 'アカウントをロック',
- 'logout' => 'ログアウト',
- 'members' => 'メンバー',
- 'message' => 'メッセージ',
- 'minute' => '分',
- 'moderated-by' => 'によって管理されています',
- 'moderation' => '節度',
- 'moderation-approve' => '承認する',
- 'moderation-postpone' => '延期',
- 'moderation-reject' => '拒否する',
- 'month' => '月',
- 'months' => '月',
- 'my' => '俺の',
- 'name' => '名',
- 'navigation' => 'ナビゲーション',
- 'new' => '新しい!',
- 'new-adj' => '新しい',
- 'news' => 'ニュース',
- 'next' => '次',
- 'no' => 'いいえ',
- 'no-comments' => 'コメントはまだありません',
- 'no-result' => 'データベースにクエリの結果がありません',
- 'notifications' => '通知',
- 'older-than' => 'より古い',
- 'oldest' => '最も古い',
- 'openreg_activated' => 'オープン登録を有効にしました',
- 'order-by' => '並び替え',
- 'other' => 'その他の',
- 'pages' => 'ページ数',
- 'password' => 'パスワード',
- 'patron' => '後援者になる',
- 'pending-torrents' => '保留中の急流',
- 'personal' => '個人的な',
- 'plural-suffix' => 'の',
- 'port' => '港',
- 'position' => 'ポジション',
- 'posts' => '投稿',
- 'powered-by' => 'によって供給UNIT3D',
- 'preview' => 'プレビュー',
- 'previous' => '前',
- 'progress' => '進捗',
- 'publish' => '公開する',
- 'quantity' => '量',
- 'quick-search' => 'クイック検索',
- 'ratio' => '比率',
- 'reason' => '理由',
- 'remove' => '削除する',
- 'report' => '報告書',
- 'resend' => '再送',
- 'reporter' => '記者',
- 'required' => '必須',
- 'results' => '結果',
- 'rss-system' => 'RSSシステム',
- 'rules' => '規則',
- 'save' => '保存する',
- 'search' => 'サーチ',
- 'search-results' => 'の検索結果',
- 'search-results-desc' => '下記の結果をご覧ください。',
- 'second' => '第二',
- 'select' => '選択する',
- 'sort' => 'ソート',
- 'special' => '特殊',
- 'staff' => 'スタッフ',
- 'staff-tools' => 'スタッフツール',
- 'stats' => '統計',
- 'status' => '状態',
- 'sticked' => 'くっついた',
- 'submit' => '提出する',
- 'subscriptions' => '購読',
- 'teams' => 'チーム',
- 'terms' => '利用規約',
- 'times' => 'タイムズ',
- 'title' => 'タイトル',
- 'top-bountied' => 'トップバウンティド',
- 'topics' => 'トピック',
- 'tracker-codes' => 'トラッカーコード',
- 'type' => 'タイプ',
- 'type-verb' => 'タイプ',
- 'types' => 'タイプ',
- 'genre' => 'ジャンル',
- 'genres' => 'ジャンル',
- 'action' => 'アクション',
- 'actions' => '行動',
- 'unknown' => '道の',
+ 'enable' => '有効にする',
+ 'enter' => '入る',
+ 'error' => 'エラー',
+ 'everyday' => '毎日',
+ 'expired' => '期限切れ',
+ 'extra' => '追加の',
+ 'extra-stats' => '特別統計',
+ 'faq' => 'よくある質問',
+ 'files' => 'ファイル',
+ 'fl_token' => 'フリーリーチトークン',
+ 'fl_tokens' => 'フリーリーチトークン',
+ 'for' => 'にとって',
+ 'forum' => 'フォーラム',
+ 'free' => '無料',
+ 'freeleech_activated' => 'グローバルフリーリーチモードが有効',
+ 'global' => 'グローバル',
+ 'group' => 'グループ',
+ 'groups' => 'グループ',
+ 'hidden' => '隠れた',
+ 'high-speeds' => '高速度',
+ 'home' => 'ホーム',
+ 'hot' => 'ホット!',
+ 'hour' => '時',
+ 'huge' => '巨大',
+ 'info' => '情報',
+ 'internal' => '内部',
+ 'ip' => 'IP',
+ 'is-allowed' => '許可されています',
+ 'large' => '大',
+ 'latest' => '最新',
+ 'latest-posts' => '最新の投稿',
+ 'latest-topics' => '最新トピックス',
+ 'legal' => '法的',
+ 'legend' => '伝説',
+ 'lists' => 'リスト',
+ 'lock-account' => 'アカウントをロック',
+ 'logout' => 'ログアウト',
+ 'members' => 'メンバー',
+ 'message' => 'メッセージ',
+ 'minute' => '分',
+ 'moderated-by' => 'によって管理されています',
+ 'moderation' => '節度',
+ 'moderation-approve' => '承認する',
+ 'moderation-postpone' => '延期',
+ 'moderation-reject' => '拒否する',
+ 'month' => '月',
+ 'months' => '月',
+ 'my' => '俺の',
+ 'name' => '名',
+ 'navigation' => 'ナビゲーション',
+ 'new' => '新しい!',
+ 'new-adj' => '新しい',
+ 'news' => 'ニュース',
+ 'next' => '次',
+ 'no' => 'いいえ',
+ 'no-comments' => 'コメントはまだありません',
+ 'no-result' => 'データベースにクエリの結果がありません',
+ 'notifications' => '通知',
+ 'older-than' => 'より古い',
+ 'oldest' => '最も古い',
+ 'openreg_activated' => 'オープン登録を有効にしました',
+ 'order-by' => '並び替え',
+ 'other' => 'その他の',
+ 'pages' => 'ページ数',
+ 'password' => 'パスワード',
+ 'patron' => '後援者になる',
+ 'pending-torrents' => '保留中の急流',
+ 'personal' => '個人的な',
+ 'plural-suffix' => 'の',
+ 'port' => '港',
+ 'position' => 'ポジション',
+ 'posts' => '投稿',
+ 'powered-by' => 'によって供給UNIT3D',
+ 'preview' => 'プレビュー',
+ 'previous' => '前',
+ 'progress' => '進捗',
+ 'publish' => '公開する',
+ 'quantity' => '量',
+ 'quick-search' => 'クイック検索',
+ 'ratio' => '比率',
+ 'reason' => '理由',
+ 'remove' => '削除する',
+ 'report' => '報告書',
+ 'resend' => '再送',
+ 'reporter' => '記者',
+ 'required' => '必須',
+ 'results' => '結果',
+ 'rss-system' => 'RSSシステム',
+ 'rules' => '規則',
+ 'save' => '保存する',
+ 'search' => 'サーチ',
+ 'search-results' => 'の検索結果',
+ 'search-results-desc' => '下記の結果をご覧ください。',
+ 'second' => '第二',
+ 'select' => '選択する',
+ 'sort' => 'ソート',
+ 'special' => '特殊',
+ 'staff' => 'スタッフ',
+ 'staff-tools' => 'スタッフツール',
+ 'stats' => '統計',
+ 'status' => '状態',
+ 'sticked' => 'くっついた',
+ 'submit' => '提出する',
+ 'subscriptions' => '購読',
+ 'teams' => 'チーム',
+ 'terms' => '利用規約',
+ 'times' => 'タイムズ',
+ 'title' => 'タイトル',
+ 'top-bountied' => 'トップバウンティド',
+ 'topics' => 'トピック',
+ 'tracker-codes' => 'トラッカーコード',
+ 'type' => 'タイプ',
+ 'type-verb' => 'タイプ',
+ 'types' => 'タイプ',
+ 'genre' => 'ジャンル',
+ 'genres' => 'ジャンル',
+ 'action' => 'アクション',
+ 'actions' => '行動',
+ 'unknown' => '道の',
'unlocked-achievement' => 'あなたはアンロックしました:達成達成',
- 'upload' => 'アップロードする',
- 'upload-guide' => 'アップロードガイド',
- 'user' => 'ユーザー',
- 'username' => 'ユーザー名',
- 'users' => 'ユーザー',
- 'view' => '見る',
- 'view-all' => '全て見る',
- 'warnings' => '警告',
- 'year' => '年',
- 'yes' => 'はい',
- 'your' => 'きみの',
- 'your-comment' => 'あなたのコメント',
+ 'upload' => 'アップロードする',
+ 'upload-guide' => 'アップロードガイド',
+ 'user' => 'ユーザー',
+ 'username' => 'ユーザー名',
+ 'users' => 'ユーザー',
+ 'view' => '見る',
+ 'view-all' => '全て見る',
+ 'warnings' => '警告',
+ 'year' => '年',
+ 'yes' => 'はい',
+ 'your' => 'きみの',
+ 'your-comment' => 'あなたのコメント',
];
diff --git a/lang/ja/email.php b/lang/ja/email.php
index bfc938c89..2c213b0be 100644
--- a/lang/ja/email.php
+++ b/lang/ja/email.php
@@ -12,46 +12,46 @@
*/
return [
- 'activate-account' => 'アカウントを有効にする',
- 'ban-reason' => '理由',
- 'banned-footer' => 'ルールに従わないことで得られるもの',
- 'banned-header' => 'あなたは禁止されました',
- 'bug-description' => '問題',
- 'bug-footer' => 'そのたわごとを修正',
- 'bug-header' => 'からの新しいバグレポート',
- 'bug-priority' => '優先度',
- 'bug-title' => 'バグタイトル',
- 'contact-header' => 'からの新しい連絡先メール',
- 'contact-message' => 'メッセージ',
- 'contact-name' => '名',
+ 'activate-account' => 'アカウントを有効にする',
+ 'ban-reason' => '理由',
+ 'banned-footer' => 'ルールに従わないことで得られるもの',
+ 'banned-header' => 'あなたは禁止されました',
+ 'bug-description' => '問題',
+ 'bug-footer' => 'そのたわごとを修正',
+ 'bug-header' => 'からの新しいバグレポート',
+ 'bug-priority' => '優先度',
+ 'bug-title' => 'バグタイトル',
+ 'contact-header' => 'からの新しい連絡先メール',
+ 'contact-message' => 'メッセージ',
+ 'contact-name' => '名',
'fail-login-greeting' => 'アカウントのログインに失敗しました。',
- 'fail-login-line1' => 'あなたのアカウントで失敗したログインが検出されました。',
- 'fail-login-line2' => 'この要求は、:ip(:host)at:timeから発生しました',
- 'fail-login-subject' => '失敗したログイン通知',
- 'footer-link' => ':actionTextボタンをクリックできない場合は、下記のURLをコピーしてWebブラウザに貼り付けてください。',
- 'invite-header' => 'への招待',
- 'invite-invited' => 'あなたはに招待されました',
- 'invite-message' => 'メッセージ',
- 'invite-signup' => '今すぐ申し込む',
- 'newreply-header' => 'トピックに新しい返信があります',
- 'newreply-message' => 'メッセージ',
- 'newreply-replied' => 'あなたのトピックに返信しました',
- 'newreply-view' => '今すぐ見る',
- 'no-email-found' => '私たちのシステムでこのEメールを見つけることができませんでした。',
- 'register-code' => 'アカウントの有効化を完了するには、下のボタンをクリックしてください。',
- 'register-footer' => '上記のボタンが機能しない場合は、URLをブラウザのアドレスバーにコピーして貼り付けてください。',
- 'register-header' => 'こんにちは!ご登録ありがとうございます',
- 'report-comment' => 'コメント',
- 'report-email' => 'Eメール',
- 'report-header' => 'こんにちは管理者、リンクが報告されています',
- 'report-link' => 'リンク',
- 'report-link-hash' => '実際のリンク',
- 'thanks' => 'ご利用いただきありがとうございます',
- 'unban-footer' => 'お帰りなさい!',
- 'unban-header' => 'あなたは禁止されていません',
- 'unban-reason' => '理由',
- 'username-reminder' => 'あなたは最近私たちのアプリにあなたのユーザー名のリクエストを送ってきました。あなたのユーザー名は',
- 'username-sent' => 'あなたのユーザー名はあなたのEメールアドレスに送信されました!',
- 'disabled-header' => 'アカウントが無効になっています',
- 'pruned-header' => 'あなたのアカウントは整理されました',
+ 'fail-login-line1' => 'あなたのアカウントで失敗したログインが検出されました。',
+ 'fail-login-line2' => 'この要求は、:ip(:host)at:timeから発生しました',
+ 'fail-login-subject' => '失敗したログイン通知',
+ 'footer-link' => ':actionTextボタンをクリックできない場合は、下記のURLをコピーしてWebブラウザに貼り付けてください。',
+ 'invite-header' => 'への招待',
+ 'invite-invited' => 'あなたはに招待されました',
+ 'invite-message' => 'メッセージ',
+ 'invite-signup' => '今すぐ申し込む',
+ 'newreply-header' => 'トピックに新しい返信があります',
+ 'newreply-message' => 'メッセージ',
+ 'newreply-replied' => 'あなたのトピックに返信しました',
+ 'newreply-view' => '今すぐ見る',
+ 'no-email-found' => '私たちのシステムでこのEメールを見つけることができませんでした。',
+ 'register-code' => 'アカウントの有効化を完了するには、下のボタンをクリックしてください。',
+ 'register-footer' => '上記のボタンが機能しない場合は、URLをブラウザのアドレスバーにコピーして貼り付けてください。',
+ 'register-header' => 'こんにちは!ご登録ありがとうございます',
+ 'report-comment' => 'コメント',
+ 'report-email' => 'Eメール',
+ 'report-header' => 'こんにちは管理者、リンクが報告されています',
+ 'report-link' => 'リンク',
+ 'report-link-hash' => '実際のリンク',
+ 'thanks' => 'ご利用いただきありがとうございます',
+ 'unban-footer' => 'お帰りなさい!',
+ 'unban-header' => 'あなたは禁止されていません',
+ 'unban-reason' => '理由',
+ 'username-reminder' => 'あなたは最近私たちのアプリにあなたのユーザー名のリクエストを送ってきました。あなたのユーザー名は',
+ 'username-sent' => 'あなたのユーザー名はあなたのEメールアドレスに送信されました!',
+ 'disabled-header' => 'アカウントが無効になっています',
+ 'pruned-header' => 'あなたのアカウントは整理されました',
];
diff --git a/lang/ja/forum.php b/lang/ja/forum.php
index f8e8e9c4a..a9e90dc1f 100644
--- a/lang/ja/forum.php
+++ b/lang/ja/forum.php
@@ -12,63 +12,63 @@
*/
return [
- 'action' => 'アクション',
- 'activity' => 'アクティビティ',
- 'approved' => '承認済み',
- 'author' => '著者',
- 'bug' => 'バグ',
- 'category-quick-search' => 'トピック名クイック検索(カテゴリ内)',
- 'close-topic' => 'ロックトピック',
- 'closed' => '閉まっている',
- 'create-new-topic' => '新しいトピックを作成',
- 'created' => '作成した',
- 'current' => '現在',
- 'delete-topic' => 'このトピックを削除',
- 'denied' => '拒否されました',
- 'dislike-post' => 'この投稿を嫌う',
- 'display-forum' => 'にトピックを表示',
- 'edit-post' => '投稿を編集',
- 'edit-topic' => 'トピックを編集',
- 'forum' => 'フォーラム',
- 'forums' => 'フォーラム',
- 'implemented' => '実装済み',
- 'in' => 'に',
- 'invalid' => '無効',
- 'label' => 'ラベル',
- 'label-system' => 'ラベルシステム',
- 'last-message' => '最後のメッセージ',
- 'last-post-info' => '最後の投稿情報',
- 'latest' => '最新',
- 'like-post' => 'この記事のように',
- 'meta-category' => 'カテゴリ内のフォーラムのリスト',
- 'moderation' => '節度',
- 'name' => '名',
- 'not-connected' => 'あなたはつながっている必要があります',
- 'not-subscribed' => '未購読',
- 'open' => '開いた',
- 'open-topic' => 'このトピックを開く',
- 'permalink' => 'パーマリンク',
- 'pin' => 'ピン',
- 'post' => '役職',
- 'post-quick-search' => '投稿本文クイック検索',
- 'posts' => '投稿',
- 'quote' => '見積もり',
- 'read-topic' => 'トピックを読む',
- 'replies' => '返信',
- 'send-new-topic' => 'このトピックを保存',
- 'solved' => '解決しました',
- 'state' => '状態',
- 'stats' => '統計',
- 'subscribed' => '購読しています',
+ 'action' => 'アクション',
+ 'activity' => 'アクティビティ',
+ 'approved' => '承認済み',
+ 'author' => '著者',
+ 'bug' => 'バグ',
+ 'category-quick-search' => 'トピック名クイック検索(カテゴリ内)',
+ 'close-topic' => 'ロックトピック',
+ 'closed' => '閉まっている',
+ 'create-new-topic' => '新しいトピックを作成',
+ 'created' => '作成した',
+ 'current' => '現在',
+ 'delete-topic' => 'このトピックを削除',
+ 'denied' => '拒否されました',
+ 'dislike-post' => 'この投稿を嫌う',
+ 'display-forum' => 'にトピックを表示',
+ 'edit-post' => '投稿を編集',
+ 'edit-topic' => 'トピックを編集',
+ 'forum' => 'フォーラム',
+ 'forums' => 'フォーラム',
+ 'implemented' => '実装済み',
+ 'in' => 'に',
+ 'invalid' => '無効',
+ 'label' => 'ラベル',
+ 'label-system' => 'ラベルシステム',
+ 'last-message' => '最後のメッセージ',
+ 'last-post-info' => '最後の投稿情報',
+ 'latest' => '最新',
+ 'like-post' => 'この記事のように',
+ 'meta-category' => 'カテゴリ内のフォーラムのリスト',
+ 'moderation' => '節度',
+ 'name' => '名',
+ 'not-connected' => 'あなたはつながっている必要があります',
+ 'not-subscribed' => '未購読',
+ 'open' => '開いた',
+ 'open-topic' => 'このトピックを開く',
+ 'permalink' => 'パーマリンク',
+ 'pin' => 'ピン',
+ 'post' => '役職',
+ 'post-quick-search' => '投稿本文クイック検索',
+ 'posts' => '投稿',
+ 'quote' => '見積もり',
+ 'read-topic' => 'トピックを読む',
+ 'replies' => '返信',
+ 'send-new-topic' => 'このトピックを保存',
+ 'solved' => '解決しました',
+ 'state' => '状態',
+ 'stats' => '統計',
+ 'subscribed' => '購読しています',
'subscription-quick-search' => 'トピック名クイック検索(購読内)',
- 'suggestion' => '提案',
- 'topic' => 'トピック',
- 'topic-closed' => 'このトピックは終了しました',
- 'topic-name' => 'トピック名',
- 'topic-quick-search' => 'トピック名クイック検索',
- 'topic-title' => 'このトピックのタイトル',
- 'topics' => 'トピック',
- 'unpin' => '固定解除',
- 'view-all' => 'すべてのトピックを見る',
- 'views' => 'ビュー',
+ 'suggestion' => '提案',
+ 'topic' => 'トピック',
+ 'topic-closed' => 'このトピックは終了しました',
+ 'topic-name' => 'トピック名',
+ 'topic-quick-search' => 'トピック名クイック検索',
+ 'topic-title' => 'このトピックのタイトル',
+ 'topics' => 'トピック',
+ 'unpin' => '固定解除',
+ 'view-all' => 'すべてのトピックを見る',
+ 'views' => 'ビュー',
];
diff --git a/lang/ja/graveyard.php b/lang/ja/graveyard.php
index 1c94d81d5..03b0ac13a 100644
--- a/lang/ja/graveyard.php
+++ b/lang/ja/graveyard.php
@@ -12,15 +12,15 @@
*/
return [
- 'dead' => 'デッド',
- 'graveyard' => '墓地',
- 'guidelines' => 'ガイドライン',
+ 'dead' => 'デッド',
+ 'graveyard' => '墓地',
+ 'guidelines' => 'ガイドライン',
'guidelines-content' => '1)自分のアップロードを復活させることはできません。
2)あなたがやることができない何かを復活させてはいけません。',
- 'howto' => 'ヘレスルール',
- 'howto-desc1' => 'あなたは種を入れなければなりません:成功した再確認のために30日の 名前その場合あなたの現在のseedtimeは',
- 'howto-desc2' => 'あなたは報われる',
- 'howto-hits' => '当たり',
- 'pending' => '保留中',
- 'resurrect' => '復活',
- 'reward' => 'フリーリーチトークン',
+ 'howto' => 'ヘレスルール',
+ 'howto-desc1' => 'あなたは種を入れなければなりません:成功した再確認のために30日の 名前その場合あなたの現在のseedtimeは',
+ 'howto-desc2' => 'あなたは報われる',
+ 'howto-hits' => '当たり',
+ 'pending' => '保留中',
+ 'resurrect' => '復活',
+ 'reward' => 'フリーリーチトークン',
];
diff --git a/lang/ja/notification.php b/lang/ja/notification.php
index 7f0c4ed89..fc2084bb9 100644
--- a/lang/ja/notification.php
+++ b/lang/ja/notification.php
@@ -12,14 +12,14 @@
*/
return [
- 'date' => '日付',
- 'delete' => '削除する',
- 'delete-all' => 'すべての通知を削除',
- 'mark-all-read' => 'すべて既読にする',
- 'mark-read' => '既読にする',
- 'message' => 'メッセージ',
+ 'date' => '日付',
+ 'delete' => '削除する',
+ 'delete-all' => 'すべての通知を削除',
+ 'mark-all-read' => 'すべて既読にする',
+ 'mark-read' => '既読にする',
+ 'message' => 'メッセージ',
'no-notifications' => '通知が見つかりません',
- 'notifications' => '通知',
- 'read' => '読む',
- 'title' => 'タイトル',
+ 'notifications' => '通知',
+ 'read' => '読む',
+ 'title' => 'タイトル',
];
diff --git a/lang/ja/page.php b/lang/ja/page.php
index b40a81dba..1ebe8ac40 100644
--- a/lang/ja/page.php
+++ b/lang/ja/page.php
@@ -12,28 +12,28 @@
*/
return [
- 'aboutus-advantage' => '利点',
- 'aboutus-advantage1' => '私たちは、HDビデオ/オーディオと技術サポートの世界に精通している経験豊富なメンバーとスタッフを持っています。',
- 'aboutus-advantage2' => '映画やテレビ番組に対する私たちの幅広い情熱に加えて、私たちはまた最も好きではないものの中から最高のセレクションの一つを提供します - ファン! BIGは 、当社のコンテンツbringers をお願い致します 。',
- 'aboutus-advantage3' => 'サイトを運営するための寄付は受け付けていますが、サイトに迷惑なPMやバナーはありません。私たちから懇願するようなことはありません。',
- 'aboutus-advantage4' => '私たちのコミュニティは、その若さのために誰にも負けません。私たちのスタッフとユーザーベースの間には、いつでも助けにここにいました。あなたの経験を確かなものにすることに情熱を注いでいました:',
- 'aboutus-advantage5' => '私たちのサービスは世界中の多くの人々によって毎日使用されています。私たちは、コードベースの機能とセキュリティを気にかけており、それが信頼され、信頼されることを証明しています。私たちの開発者は毎日真に次世代のコードベースを提供するために働きます。',
- 'aboutus-header' => 'こんにちは',
- 'aboutus-rules' => '私たちはあなたから必要なもの',
- 'aboutus-rules1' => 'コミュニティの積極的なメンバーになるために!これは、生産的に会話に参加し、承認されたコンテンツを追加し、可能であれば他のユーザーを助けることを意味します。',
- 'aboutus-rules2' => '完全にルールを読み、それらを尊重してください!',
- 'aboutus-rules3' => '提案をします!私たちは日々タイトルを向上させるよう努力しています。私たちはすべての提案が使われると言っているのではありませんが、新しいアイデアを見ても決して害はありません。',
- 'aboutus-welcome' => 'について話しましょう',
- 'aboutus-welcome-desc' => ':titleはコミュニティが構築した Movie / TV / FANRESデータベースです。データのすべての作品は、2017年以来、私たちの素晴らしいコミュニティが追加されました。タイトル強い焦点は、HDコンテンツ、プロアクティブなユーザーベース、素晴らしい/セキュアなコードベースで親切でフレンドリーなスタッフのチームです。',
- 'blacklist-browsers' => 'ブラウザ',
- 'blacklist-btclient' => 'BitTorrentクライアント',
- 'blacklist-clients' => 'クライアント',
- 'blacklist-desc' => '以下のブラウザおよびBitTorrentクライアントは発表を禁止されています',
- 'blacklist-webbrowser' => 'ウェブブラウザ',
+ 'aboutus-advantage' => '利点',
+ 'aboutus-advantage1' => '私たちは、HDビデオ/オーディオと技術サポートの世界に精通している経験豊富なメンバーとスタッフを持っています。',
+ 'aboutus-advantage2' => '映画やテレビ番組に対する私たちの幅広い情熱に加えて、私たちはまた最も好きではないものの中から最高のセレクションの一つを提供します - ファン! BIGは 、当社のコンテンツbringers をお願い致します 。',
+ 'aboutus-advantage3' => 'サイトを運営するための寄付は受け付けていますが、サイトに迷惑なPMやバナーはありません。私たちから懇願するようなことはありません。',
+ 'aboutus-advantage4' => '私たちのコミュニティは、その若さのために誰にも負けません。私たちのスタッフとユーザーベースの間には、いつでも助けにここにいました。あなたの経験を確かなものにすることに情熱を注いでいました:',
+ 'aboutus-advantage5' => '私たちのサービスは世界中の多くの人々によって毎日使用されています。私たちは、コードベースの機能とセキュリティを気にかけており、それが信頼され、信頼されることを証明しています。私たちの開発者は毎日真に次世代のコードベースを提供するために働きます。',
+ 'aboutus-header' => 'こんにちは',
+ 'aboutus-rules' => '私たちはあなたから必要なもの',
+ 'aboutus-rules1' => 'コミュニティの積極的なメンバーになるために!これは、生産的に会話に参加し、承認されたコンテンツを追加し、可能であれば他のユーザーを助けることを意味します。',
+ 'aboutus-rules2' => '完全にルールを読み、それらを尊重してください!',
+ 'aboutus-rules3' => '提案をします!私たちは日々タイトルを向上させるよう努力しています。私たちはすべての提案が使われると言っているのではありませんが、新しいアイデアを見ても決して害はありません。',
+ 'aboutus-welcome' => 'について話しましょう',
+ 'aboutus-welcome-desc' => ':titleはコミュニティが構築した Movie / TV / FANRESデータベースです。データのすべての作品は、2017年以来、私たちの素晴らしいコミュニティが追加されました。タイトル強い焦点は、HDコンテンツ、プロアクティブなユーザーベース、素晴らしい/セキュアなコードベースで親切でフレンドリーなスタッフのチームです。',
+ 'blacklist-browsers' => 'ブラウザ',
+ 'blacklist-btclient' => 'BitTorrentクライアント',
+ 'blacklist-clients' => 'クライアント',
+ 'blacklist-desc' => '以下のブラウザおよびBitTorrentクライアントは発表を禁止されています',
+ 'blacklist-webbrowser' => 'ウェブブラウザ',
'blacklist-emaildomain' => 'ブロックされたドメイン',
- 'email-blacklist-desc' => '次の電子メールドメインは使用されていません。以下に招待を登録または送信することはできません。',
- 'email-whitelist-desc' => '次の電子メールドメインは、使用が許可されている唯一の電子メールドメインです。あなたは以下を使用して招待を登録または送信するだけです。',
- 'staff-group' => 'グループ',
- 'staff-title' => 'タイトル',
+ 'email-blacklist-desc' => '次の電子メールドメインは使用されていません。以下に招待を登録または送信することはできません。',
+ 'email-whitelist-desc' => '次の電子メールドメインは、使用が許可されている唯一の電子メールドメインです。あなたは以下を使用して招待を登録または送信するだけです。',
+ 'staff-group' => 'グループ',
+ 'staff-title' => 'タイトル',
'whitelist-emaildomain' => '信頼されたドメイン',
];
diff --git a/lang/ja/pagination.php b/lang/ja/pagination.php
index bd71b4e11..53160fbe7 100644
--- a/lang/ja/pagination.php
+++ b/lang/ja/pagination.php
@@ -24,5 +24,5 @@ return [
*/
'previous' => '« 前',
- 'next' => '次 »',
+ 'next' => '次 »',
];
diff --git a/lang/ja/passwords.php b/lang/ja/passwords.php
index c76a7296e..a2f70379a 100644
--- a/lang/ja/passwords.php
+++ b/lang/ja/passwords.php
@@ -24,8 +24,8 @@ return [
*/
'password' => 'パスワードは6文字以上かつ確認フィールドと一致していなければなりません。',
- 'reset' => 'パスワードをリセットしました。',
- 'sent' => 'パスワードリマインダーを送信しました。',
- 'token' => 'このパスワードリセットトークンは無効です。',
- 'user' => 'このメールアドレスに一致するユーザーを見つけることが出来ませんでした。',
+ 'reset' => 'パスワードをリセットしました。',
+ 'sent' => 'パスワードリマインダーを送信しました。',
+ 'token' => 'このパスワードリセットトークンは無効です。',
+ 'user' => 'このメールアドレスに一致するユーザーを見つけることが出来ませんでした。',
];
diff --git a/lang/ja/pm.php b/lang/ja/pm.php
index 5e1b27adb..32fb1645c 100644
--- a/lang/ja/pm.php
+++ b/lang/ja/pm.php
@@ -12,28 +12,28 @@
*/
return [
- 'create' => '作成する',
- 'delete' => '削除する',
+ 'create' => '作成する',
+ 'delete' => '削除する',
'enter-subject' => '件名を入力',
- 'from' => 'から',
- 'inbox' => '受信トレイ',
+ 'from' => 'から',
+ 'inbox' => '受信トレイ',
'mark-all-read' => 'すべてのメッセージを既読にする',
- 'message' => 'メッセージ',
- 'messages' => 'メッセージ',
- 'new' => '新しいメッセージ',
- 'outbox' => '送信トレイ',
- 'private' => '非公開',
- 'read' => '読む',
- 'received-at' => 'で受信',
- 'refresh' => '更新する',
- 'reply' => '応答',
- 'search' => '件名で検索',
- 'select' => 'ユーザーを選択',
- 'send' => 'PMを送る',
- 'send-to' => 'にPMを送る',
- 'sent' => '送信済み',
- 'sent-at' => 'に送信',
- 'subject' => '件名',
- 'to' => 'に',
- 'unread' => '未読',
+ 'message' => 'メッセージ',
+ 'messages' => 'メッセージ',
+ 'new' => '新しいメッセージ',
+ 'outbox' => '送信トレイ',
+ 'private' => '非公開',
+ 'read' => '読む',
+ 'received-at' => 'で受信',
+ 'refresh' => '更新する',
+ 'reply' => '応答',
+ 'search' => '件名で検索',
+ 'select' => 'ユーザーを選択',
+ 'send' => 'PMを送る',
+ 'send-to' => 'にPMを送る',
+ 'sent' => '送信済み',
+ 'sent-at' => 'に送信',
+ 'subject' => '件名',
+ 'to' => 'に',
+ 'unread' => '未読',
];
diff --git a/lang/ja/poll.php b/lang/ja/poll.php
index 112e6a846..34ee05683 100644
--- a/lang/ja/poll.php
+++ b/lang/ja/poll.php
@@ -12,18 +12,18 @@
*/
return [
- 'add-option' => 'オプションを追加',
- 'create-poll' => '投票を作成',
- 'current' => '現在の投票',
- 'delete-option' => '削除オプション',
+ 'add-option' => 'オプションを追加',
+ 'create-poll' => '投票を作成',
+ 'current' => '現在の投票',
+ 'delete-option' => '削除オプション',
'multiple-choice' => 'これは多肢選択調査です。好きなだけ答えを選んでください。',
- 'option' => 'オプション',
- 'poll' => '世論調査',
- 'polls' => '世論調査',
- 'results' => '投票結果',
- 'title' => 'タイトル',
- 'total' => 'これまでの総票',
- 'vote' => '投票',
- 'vote-now' => '今すぐあなたの投票を得てください!',
- 'votes' => '投票',
+ 'option' => 'オプション',
+ 'poll' => '世論調査',
+ 'polls' => '世論調査',
+ 'results' => '投票結果',
+ 'title' => 'タイトル',
+ 'total' => 'これまでの総票',
+ 'vote' => '投票',
+ 'vote-now' => '今すぐあなたの投票を得てください!',
+ 'votes' => '投票',
];
diff --git a/lang/ja/request.php b/lang/ja/request.php
index db00310bf..89233e1a0 100644
--- a/lang/ja/request.php
+++ b/lang/ja/request.php
@@ -12,67 +12,67 @@
*/
return [
- 'add-request' => 'リクエストを追加',
- 'age' => '年齢',
- 'all-requests' => 'すべてのリクエスト',
- 'approve' => '承認する',
- 'bounty' => '賞金',
- 'bounty-claimed' => 'バウンティが主張',
- 'bounty-unclaimed' => 'バウンティ未請求',
- 'category' => 'カテゴリー',
- 'claim' => '請求',
- 'claim-anon-choose' => '賢く選んでください',
- 'claim-as-anon' => 'これを匿名で申し立てますか',
- 'claim-now' => '今すぐ申し込む',
- 'claimed' => '申し立て済み',
- 'current' => '現在',
- 'delete' => 'このリクエストを削除',
+ 'add-request' => 'リクエストを追加',
+ 'age' => '年齢',
+ 'all-requests' => 'すべてのリクエスト',
+ 'approve' => '承認する',
+ 'bounty' => '賞金',
+ 'bounty-claimed' => 'バウンティが主張',
+ 'bounty-unclaimed' => 'バウンティ未請求',
+ 'category' => 'カテゴリー',
+ 'claim' => '請求',
+ 'claim-anon-choose' => '賢く選んでください',
+ 'claim-as-anon' => 'これを匿名で申し立てますか',
+ 'claim-now' => '今すぐ申し込む',
+ 'claimed' => '申し立て済み',
+ 'current' => '現在',
+ 'delete' => 'このリクエストを削除',
'delete-confirmation' => 'このリクエストを削除してもよろしいですか',
- 'delete-filled' => 'このリクエストは、入力されていない場合にのみ削除できます',
- 'description' => '説明',
- 'dont-have-bps' => 'あなたは十分なボーナスを持っていません',
- 'edit-request' => 'リクエストを編集',
- 'enter-bp' => 'ボーナスポイントを入力してください(最低100)',
- 'enter-hash' => 'アップロードしたTorrentの情報ハッシュを入力してください',
- 'fill' => '塗りつぶし',
- 'fill-request' => 'このリクエストを記入',
- 'filled' => 'いっぱい',
- 'filled-by' => 'でいっぱい',
- 'for' => 'にとって',
- 'fulfill' => '満たす',
- 'last-vote' => '最後の投票',
- 'my-requests' => '私の要求',
- 'no' => 'いいえ、',
- 'no-imdb-id' => 'すべての要求にはIMDB番号を含める必要があります',
- 'no-privileges' => 'エラー:あなたの要求権は無効にされています',
- 'no-privileges-desc' => 'これが誤っていると思われる場合は、スタッフに連絡してください。',
- 'no-refunds' => '創作、充てん、賞金に関するBON交換は最終的なものです。
返金なし!',
- 'pending' => '保留中',
- 'reason' => '理由',
- 'reject' => '拒否する',
- 'report' => '報告依頼',
- 'request' => '要求',
- 'request-details' => '詳細をリクエストする',
- 'requested-by' => 'に要求された',
- 'requests' => 'リクエスト',
- 'required' => '必須',
- 'reset' => 'リセット',
- 'reset-confirmation' => 'このリクエストをリセットしてよろしいですか?',
- 'reset-request' => 'このリクエストをリセット',
- 'reward' => '褒賞',
- 'reward-desc' => 'あなたはどのくらいのボーナスポイントをもらえますか最低100 BP',
- 'reward-from' => 'から',
- 'title' => 'タイトル',
- 'torrent-hash' => 'トレントハッシュ',
- 'total-bounty' => '合計賞金',
- 'type' => 'タイプ',
- 'unclaim' => 'このリクエストの申し立てを取り消す',
- 'unfilled' => '未記入',
- 'view-filled' => 'いっぱい表示',
- 'view-unfilled' => '未入力を表示',
- 'vote' => '投票',
- 'vote-that' => 'このリクエストに投票する',
- 'voters' => '有権者',
- 'votes' => '投票',
- 'yes' => 'はい',
+ 'delete-filled' => 'このリクエストは、入力されていない場合にのみ削除できます',
+ 'description' => '説明',
+ 'dont-have-bps' => 'あなたは十分なボーナスを持っていません',
+ 'edit-request' => 'リクエストを編集',
+ 'enter-bp' => 'ボーナスポイントを入力してください(最低100)',
+ 'enter-hash' => 'アップロードしたTorrentの情報ハッシュを入力してください',
+ 'fill' => '塗りつぶし',
+ 'fill-request' => 'このリクエストを記入',
+ 'filled' => 'いっぱい',
+ 'filled-by' => 'でいっぱい',
+ 'for' => 'にとって',
+ 'fulfill' => '満たす',
+ 'last-vote' => '最後の投票',
+ 'my-requests' => '私の要求',
+ 'no' => 'いいえ、',
+ 'no-imdb-id' => 'すべての要求にはIMDB番号を含める必要があります',
+ 'no-privileges' => 'エラー:あなたの要求権は無効にされています',
+ 'no-privileges-desc' => 'これが誤っていると思われる場合は、スタッフに連絡してください。',
+ 'no-refunds' => '創作、充てん、賞金に関するBON交換は最終的なものです。
返金なし!',
+ 'pending' => '保留中',
+ 'reason' => '理由',
+ 'reject' => '拒否する',
+ 'report' => '報告依頼',
+ 'request' => '要求',
+ 'request-details' => '詳細をリクエストする',
+ 'requested-by' => 'に要求された',
+ 'requests' => 'リクエスト',
+ 'required' => '必須',
+ 'reset' => 'リセット',
+ 'reset-confirmation' => 'このリクエストをリセットしてよろしいですか?',
+ 'reset-request' => 'このリクエストをリセット',
+ 'reward' => '褒賞',
+ 'reward-desc' => 'あなたはどのくらいのボーナスポイントをもらえますか最低100 BP',
+ 'reward-from' => 'から',
+ 'title' => 'タイトル',
+ 'torrent-hash' => 'トレントハッシュ',
+ 'total-bounty' => '合計賞金',
+ 'type' => 'タイプ',
+ 'unclaim' => 'このリクエストの申し立てを取り消す',
+ 'unfilled' => '未記入',
+ 'view-filled' => 'いっぱい表示',
+ 'view-unfilled' => '未入力を表示',
+ 'vote' => '投票',
+ 'vote-that' => 'このリクエストに投票する',
+ 'voters' => '有権者',
+ 'votes' => '投票',
+ 'yes' => 'はい',
];
diff --git a/lang/ja/rss.php b/lang/ja/rss.php
index a1683114c..e2fc3b1f2 100644
--- a/lang/ja/rss.php
+++ b/lang/ja/rss.php
@@ -12,19 +12,19 @@
*/
return [
- 'create' => '作成する',
+ 'create' => '作成する',
'create-private-feed' => 'プライベートRSSフィードを作成する',
- 'create-public-feed' => '公開RSSフィードを作成する',
- 'delete' => '削除する',
- 'edit' => '編集する',
- 'edit-private-feed' => 'プライベートRSSフィードを編集する',
- 'edit-public-feed' => '公開RSSフィードを編集',
- 'feed' => 'フィード',
- 'feeds' => 'フィード',
- 'name' => '名',
- 'public' => 'パブリック',
- 'private' => '非公開',
- 'rss' => 'RSS',
- 'rss-feed' => 'RSSフィード',
- 'type' => 'タイプ',
+ 'create-public-feed' => '公開RSSフィードを作成する',
+ 'delete' => '削除する',
+ 'edit' => '編集する',
+ 'edit-private-feed' => 'プライベートRSSフィードを編集する',
+ 'edit-public-feed' => '公開RSSフィードを編集',
+ 'feed' => 'フィード',
+ 'feeds' => 'フィード',
+ 'name' => '名',
+ 'public' => 'パブリック',
+ 'private' => '非公開',
+ 'rss' => 'RSS',
+ 'rss-feed' => 'RSSフィード',
+ 'type' => 'タイプ',
];
diff --git a/lang/ja/staff.php b/lang/ja/staff.php
index d78758e43..373b489a3 100644
--- a/lang/ja/staff.php
+++ b/lang/ja/staff.php
@@ -12,48 +12,48 @@
*/
return [
- 'audit-log' => '活動記録',
- 'articles' => '記事',
- 'applications' => 'アプリケーション',
- 'bans-log' => '禁止ログ',
- 'blocks' => 'ブロック',
- 'bot' => 'ボット',
- 'bots' => 'ボット',
- 'chat' => 'チャット',
- 'config-manager' => '構成マネージャー',
- 'dashboard' => 'ダッシュボード',
- 'failed-login-log' => '失敗したログインログ',
- 'flush-ghost-peers' => 'フラッシュゴーストピア',
- 'forums' => 'フォーラム',
- 'frontend' => 'フロントエンド',
- 'general-tools' => '一般的なツール',
- 'groups' => 'グループ',
- 'invites-log' => 'ログを招待する',
- 'laravel-log' => 'ララヴェルログ',
- 'links' => 'リンク集',
- 'logs' => 'ログ',
- 'mass-pm' => 'マスPM',
- 'mass-validate-users' => 'ユーザーの一括検証',
- 'moderation' => '節度',
- 'pages' => 'ページ数',
- 'please-moderate' => 'このTorrentをモデレートしてください。',
- 'polls' => '世論調査',
- 'reports-log' => 'レポートログ',
- 'rss' => 'RSS',
- 'staff-dashboard' => 'スタッフダッシュボード',
- 'torrent-categories' => 'トレントカテゴリー',
- 'torrent-moderation' => '急流の緩和',
- 'torrent-tools' => 'トレントツール',
- 'torrent-types' => '急流のタイプ',
- 'torrents' => '急流',
- 'user-gifting' => 'ユーザーギフト',
- 'user-notes' => 'ユーザーノートログ',
- 'user-search' => 'ユーザー検索',
- 'user-tools' => 'ユーザーツール',
- 'warnings-log' => '警告ログ',
- 'you-have' => 'あなたが持っている',
+ 'audit-log' => '活動記録',
+ 'articles' => '記事',
+ 'applications' => 'アプリケーション',
+ 'bans-log' => '禁止ログ',
+ 'blocks' => 'ブロック',
+ 'bot' => 'ボット',
+ 'bots' => 'ボット',
+ 'chat' => 'チャット',
+ 'config-manager' => '構成マネージャー',
+ 'dashboard' => 'ダッシュボード',
+ 'failed-login-log' => '失敗したログインログ',
+ 'flush-ghost-peers' => 'フラッシュゴーストピア',
+ 'forums' => 'フォーラム',
+ 'frontend' => 'フロントエンド',
+ 'general-tools' => '一般的なツール',
+ 'groups' => 'グループ',
+ 'invites-log' => 'ログを招待する',
+ 'laravel-log' => 'ララヴェルログ',
+ 'links' => 'リンク集',
+ 'logs' => 'ログ',
+ 'mass-pm' => 'マスPM',
+ 'mass-validate-users' => 'ユーザーの一括検証',
+ 'moderation' => '節度',
+ 'pages' => 'ページ数',
+ 'please-moderate' => 'このTorrentをモデレートしてください。',
+ 'polls' => '世論調査',
+ 'reports-log' => 'レポートログ',
+ 'rss' => 'RSS',
+ 'staff-dashboard' => 'スタッフダッシュボード',
+ 'torrent-categories' => 'トレントカテゴリー',
+ 'torrent-moderation' => '急流の緩和',
+ 'torrent-tools' => 'トレントツール',
+ 'torrent-types' => '急流のタイプ',
+ 'torrents' => '急流',
+ 'user-gifting' => 'ユーザーギフト',
+ 'user-notes' => 'ユーザーノートログ',
+ 'user-search' => 'ユーザー検索',
+ 'user-tools' => 'ユーザーツール',
+ 'warnings-log' => '警告ログ',
+ 'you-have' => 'あなたが持っている',
'possible-leech-cheaters' => '可能な詐欺師',
- 'chat-tools' => 'チャットツール',
- 'flush-chat' => 'チャットボックスをフラッシュ',
- 'seedboxes' => '登録済みシードボックス',
+ 'chat-tools' => 'チャットツール',
+ 'flush-chat' => 'チャットボックスをフラッシュ',
+ 'seedboxes' => '登録済みシードボックス',
];
diff --git a/lang/ja/stat.php b/lang/ja/stat.php
index bbe048c2a..03f47e32b 100644
--- a/lang/ja/stat.php
+++ b/lang/ja/stat.php
@@ -12,40 +12,40 @@
*/
return [
- 'by-count' => 'カウントで',
- 'by-data' => 'データ別',
- 'by-volume' => 'ボリューム別',
- 'group' => 'グループ',
- 'groups' => 'グループ',
- 'nerd-stats' => 'オタク統計',
- 'nerd-stats-desc' => '私たちはみんな統計が大好きです。これが私たちが重要だと思ういくつかです',
- 'registration-date' => '登録日',
- 'request-fulfilled' => '満たされた要求',
- 'request-not-fulfilled' => '要求が満たされなかった',
+ 'by-count' => 'カウントで',
+ 'by-data' => 'データ別',
+ 'by-volume' => 'ボリューム別',
+ 'group' => 'グループ',
+ 'groups' => 'グループ',
+ 'nerd-stats' => 'オタク統計',
+ 'nerd-stats-desc' => '私たちはみんな統計が大好きです。これが私たちが重要だと思ういくつかです',
+ 'registration-date' => '登録日',
+ 'request-fulfilled' => '満たされた要求',
+ 'request-not-fulfilled' => '要求が満たされなかった',
'request-pending-aproval' => '保留中のリクエストをリクエスト',
- 'select-category' => '下のカテゴリーを選択してください',
- 'site-stats' => 'サイト統計',
- 'stats' => '統計',
- 'stats-format' => '上位100形式で表示されたすべての統計',
- 'top-bankers' => 'トップバンカー',
- 'top-bountied' => 'トップバウンティド',
- 'top-completed' => 'トップ完了',
- 'top-dead' => 'トップデッド',
- 'top-downloaded' => 'トップダウンロード急流',
- 'top-downloaders' => 'トップダウンローダ',
- 'top-dying' => 'トップダイ',
- 'top-leeched' => 'トップリーチ',
- 'top-leechers' => 'トップLeechers',
- 'top-seeded' => '上シード',
- 'top-seeding' => 'トップシーディング',
- 'top-seeders' => 'トップシーダー',
- 'top-seedsize' => 'トップシードサイズ',
- 'top-seedtime' => 'トップシードタイム',
- 'top-uploaders' => 'トップアップローダー',
- 'total-download' => 'ダウンロード合計',
- 'total-torrents' => '総急流',
- 'total-traffic' => '総トラフィック',
- 'total-upload' => '合計アップロード',
- 'users-in-group' => 'グループ内のユーザー',
- 'users-per-group' => 'グループごとのユーザー',
+ 'select-category' => '下のカテゴリーを選択してください',
+ 'site-stats' => 'サイト統計',
+ 'stats' => '統計',
+ 'stats-format' => '上位100形式で表示されたすべての統計',
+ 'top-bankers' => 'トップバンカー',
+ 'top-bountied' => 'トップバウンティド',
+ 'top-completed' => 'トップ完了',
+ 'top-dead' => 'トップデッド',
+ 'top-downloaded' => 'トップダウンロード急流',
+ 'top-downloaders' => 'トップダウンローダ',
+ 'top-dying' => 'トップダイ',
+ 'top-leeched' => 'トップリーチ',
+ 'top-leechers' => 'トップLeechers',
+ 'top-seeded' => '上シード',
+ 'top-seeding' => 'トップシーディング',
+ 'top-seeders' => 'トップシーダー',
+ 'top-seedsize' => 'トップシードサイズ',
+ 'top-seedtime' => 'トップシードタイム',
+ 'top-uploaders' => 'トップアップローダー',
+ 'total-download' => 'ダウンロード合計',
+ 'total-torrents' => '総急流',
+ 'total-traffic' => '総トラフィック',
+ 'total-upload' => '合計アップロード',
+ 'users-in-group' => 'グループ内のユーザー',
+ 'users-per-group' => 'グループごとのユーザー',
];
diff --git a/lang/ja/torrent.php b/lang/ja/torrent.php
index 6e164a157..b2de25ff7 100644
--- a/lang/ja/torrent.php
+++ b/lang/ja/torrent.php
@@ -12,197 +12,197 @@
*/
return [
- 'activity' => 'アクティビティ',
- 'age' => '年齢',
- 'agent' => 'エージェント',
- 'alive' => '生きている',
- 'announce-url' => 'お知らせURL',
- 'announce-url-desc' => '新しい急流を作成するときに上記の発表URLを使用してください。サイトからダウンロードせずにtorrentを使用したい場合は、privateフラグとsourceを:sourceに設定する必要があります。',
- 'announce-url-desc-url' => '問題がありますか?私たちのガイドを参照してくださいHERE',
- 'announce-url-desc2' => 'すべてのアップロードにTMDBとIMDBが必要です。それはポスター/背景とExtraInfoをつかむのに使用されます',
- 'approved' => '承認済み',
- 'audio' => 'オーディオ',
- 'bon-tipped' => 'BONチップ',
- 'bookmark' => 'しおり',
- 'bookmarks' => 'ブックマーク',
- 'bump' => 'バンプ',
- 'cant-upload' => 'エラー:あなたのアップロード権は無効です',
- 'cant-upload-desc' => 'あなたがこれが間違っていると感じるならば、スタッフに連絡してください',
- 'cards' => 'カード',
- 'cards-view' => 'トレントカードビュー',
- 'categories' => 'カテゴリー',
- 'category' => 'カテゴリー',
- 'client' => 'クライアント',
- 'commited' => 'コミットした',
- 'completed' => '完了しました',
- 'completed_at' => 'で完了',
- 'completed-not-seeding' => 'あなたはこのダウンロードを完了しましたが、もう種まきはしていません',
- 'created_at' => 'で作成された',
- 'credited' => '貸方',
- 'current' => '現在',
- 'current-filters' => '電流フィルタ',
- 'currently-leeching' => '現在ヒーリング',
- 'currently-seeding' => '現在播種',
- 'dead-torrent' => 'デッドトレント',
- 'dead-torrents' => 'デッドトレント',
- 'delete-bookmark' => 'このブックマークを削除',
- 'description' => '説明',
- 'discounts' => '割引',
- 'double-upload' => '二重アップロード',
- 'download-all' => 'すべてダウンロード',
- 'download-check' => 'ダウンロードチェック',
- 'downloaded' => 'ダウンロード済み',
- 'dying-torrent' => '死にかけている急流',
- 'dying-torrents' => '急流の死',
- 'encode-settings' => 'エンコード設定',
- 'estimated-ratio' => 'ダウンロード後の推定比率',
- 'failed' => '失敗しました',
- 'feature' => '特徴',
- 'featured' => 'おすすめ',
- 'featured-desc' => '注目のトレントは 100%無料と 二重アップロード!',
- 'featured-until' => 'これは注目されるまで急流',
- 'file' => 'ファイル',
- 'filters' => 'フィルター',
- 'fl-tokens-left' => 'あなたが持っている :残りのトークン',
- 'freeleech' => 'フリーリーチ',
- 'freeleech-token' => 'フリーリーチトークン',
- 'general' => '全般',
- 'genre' => 'ジャンル',
- 'global-double-upload' => 'グローバルダブルアップロード',
- 'global-freeleech' => 'グローバルフリーリーチ',
- 'grant' => '付与',
- 'greater-than' => 'より大きい',
- 'grouping' => 'グルーピング',
- 'groupings' => 'グルーピング',
- 'grouping-categories' => 'グループ化カテゴリ',
+ 'activity' => 'アクティビティ',
+ 'age' => '年齢',
+ 'agent' => 'エージェント',
+ 'alive' => '生きている',
+ 'announce-url' => 'お知らせURL',
+ 'announce-url-desc' => '新しい急流を作成するときに上記の発表URLを使用してください。サイトからダウンロードせずにtorrentを使用したい場合は、privateフラグとsourceを:sourceに設定する必要があります。',
+ 'announce-url-desc-url' => '問題がありますか?私たちのガイドを参照してくださいHERE',
+ 'announce-url-desc2' => 'すべてのアップロードにTMDBとIMDBが必要です。それはポスター/背景とExtraInfoをつかむのに使用されます',
+ 'approved' => '承認済み',
+ 'audio' => 'オーディオ',
+ 'bon-tipped' => 'BONチップ',
+ 'bookmark' => 'しおり',
+ 'bookmarks' => 'ブックマーク',
+ 'bump' => 'バンプ',
+ 'cant-upload' => 'エラー:あなたのアップロード権は無効です',
+ 'cant-upload-desc' => 'あなたがこれが間違っていると感じるならば、スタッフに連絡してください',
+ 'cards' => 'カード',
+ 'cards-view' => 'トレントカードビュー',
+ 'categories' => 'カテゴリー',
+ 'category' => 'カテゴリー',
+ 'client' => 'クライアント',
+ 'commited' => 'コミットした',
+ 'completed' => '完了しました',
+ 'completed_at' => 'で完了',
+ 'completed-not-seeding' => 'あなたはこのダウンロードを完了しましたが、もう種まきはしていません',
+ 'created_at' => 'で作成された',
+ 'credited' => '貸方',
+ 'current' => '現在',
+ 'current-filters' => '電流フィルタ',
+ 'currently-leeching' => '現在ヒーリング',
+ 'currently-seeding' => '現在播種',
+ 'dead-torrent' => 'デッドトレント',
+ 'dead-torrents' => 'デッドトレント',
+ 'delete-bookmark' => 'このブックマークを削除',
+ 'description' => '説明',
+ 'discounts' => '割引',
+ 'double-upload' => '二重アップロード',
+ 'download-all' => 'すべてダウンロード',
+ 'download-check' => 'ダウンロードチェック',
+ 'downloaded' => 'ダウンロード済み',
+ 'dying-torrent' => '死にかけている急流',
+ 'dying-torrents' => '急流の死',
+ 'encode-settings' => 'エンコード設定',
+ 'estimated-ratio' => 'ダウンロード後の推定比率',
+ 'failed' => '失敗しました',
+ 'feature' => '特徴',
+ 'featured' => 'おすすめ',
+ 'featured-desc' => '注目のトレントは 100%無料と 二重アップロード!',
+ 'featured-until' => 'これは注目されるまで急流',
+ 'file' => 'ファイル',
+ 'filters' => 'フィルター',
+ 'fl-tokens-left' => 'あなたが持っている :残りのトークン',
+ 'freeleech' => 'フリーリーチ',
+ 'freeleech-token' => 'フリーリーチトークン',
+ 'general' => '全般',
+ 'genre' => 'ジャンル',
+ 'global-double-upload' => 'グローバルダブルアップロード',
+ 'global-freeleech' => 'グローバルフリーリーチ',
+ 'grant' => '付与',
+ 'greater-than' => 'より大きい',
+ 'grouping' => 'グルーピング',
+ 'groupings' => 'グルーピング',
+ 'grouping-categories' => 'グループ化カテゴリ',
'grouping-categories-desc' => 'どのカテゴリに分類しますか?',
- 'grouping-results' => 'グループ化結果',
- 'groupings-view' => 'グルーピングビュー',
- 'have-completed' => '完了しました',
- 'have-downloaded' => 'ダウンロード済み',
- 'have-not-completed' => 'まだ終わってない',
- 'have-not-downloaded' => 'ダウンロードしていない',
- 'health' => '健康',
- 'history' => '歴史',
- 'hitrun' => 'H&R?',
- 'hit-and-runs' => 'ヒット数と実行数',
- 'immune' => '免疫?',
- 'info' => '情報',
- 'internal' => '内部',
- 'internal-release' => '内部リリース',
- 'last-seed-activity' => '最後の種の活動',
- 'last-seeder' => 'あなたは最後の残りの種蒔きです! (少なくとも3回ダウンロードされています)',
- 'last-update' => '最後の更新',
- 'leave-tip' => 'チップを残す',
- 'leecher' => 'リーチャー',
- 'leechers' => 'リーチャーズ',
- 'leeching' => 'リーヒング',
- 'left' => '左',
- 'legendary-seeder' => '伝説のシーダー',
- 'legendary-torrent' => '伝説の急流',
- 'list' => 'リスト',
- 'me' => '私',
- 'media-info' => 'MediaInfo',
- 'media-info-parser' => 'MediaInfoパーサ',
- 'media-info-paste' => 'ここにMediaInfoダンプを貼り付けます',
- 'meta-desc' => 'ダウンロード:最高速度での名前',
- 'moderation' => '節度',
- 'movies' => '映画',
- 'mvp' => 'MVP',
- 'my-active-torrents' => '私の活動的な急流',
- 'name' => '名',
- 'no-bookmarks' => 'ブックマークが見つかりません。',
- 'no-discounts' => '現在割引はありません',
- 'no-meta' => 'メタデータが見つかりません',
- 'no-privileges' => 'あなたはこのファイルをダウンロードすることができません - 詳細については下記をチェックしてください',
- 'no-privileges-desc' => '表示されるダウンロードボタンのために上記の失敗した結果を解決してください',
- 'not-completed' => 'ダウンロードを開始したが完了していない',
- 'not-downloaded' => 'ダウンロードしていない',
- 'old-torrent' => 'オールドトレント',
- 'optional' => 'オプション',
- 'original-output' => '元の出力を表示/隠す',
- 'participant' => '参加者',
- 'passed' => '合格',
- 'peers' => '仲間',
- 'pending' => '保留中',
- 'personal-freeleech' => 'パーソナルフリーリーチ',
- 'poster' => 'ポスター',
- 'poster-view' => 'ポスター表示',
- 'posters' => 'ポスター',
- 'prewarn' => '警告しましたか?',
- 'progress' => '進捗',
- 'quick-comment' => 'クイックコメント',
- 'quick-tip' => 'クイックチップ金額',
- 'rated' => '評価済み',
- 'rating' => '評価',
- 'ready' => 'このファイルはダウンロードの準備ができています',
- 'rejected' => '拒否されました',
- 'released' => '発売日',
- 'remaining' => '残り',
- 'request-reseed' => 'シードをリクエスト',
- 'requires-reseed' => '播種が必要',
- 'resurrections' => '復活',
- 'revoke' => '取り消す',
- 'rss' => 'RSS',
- 'runtime' => 'ランタイム',
- 'satisfied_in' => 'に満足',
- 'say-thanks' => 'できる限り感謝と種を言うことを忘れないでください',
- 'sd-content' => 'SDコンテンツ',
- 'search' => 'サーチ',
- 'seed-time' => 'シードタイム',
- 'seeder' => 'シーダー',
- 'seeders' => 'シーダー',
- 'seeding' => '種まき',
- 'seedsize' => '種子サイズ',
- 'seedtime' => 'シードタイム',
- 'short-completed' => 'C',
- 'short-leechs' => 'L',
- 'short-seeds' => 'S',
- 'show-files' => 'ファイルを表示',
- 'similar' => '同じような急流',
- 'size' => 'サイズ',
- 'special' => '特殊',
- 'special-freeleech' => '特別フリーリーチ',
- 'started' => '始めました',
- 'status' => '状態',
- 'statistics' => '統計',
- 'stats' => '統計',
- 'sticky' => 'スティッキー',
- 'stream-optimized' => 'ストリーム最適化',
- 'subtitle' => '字幕',
- 'team-player' => 'チームプレイヤー',
- 'thank' => '感謝',
- 'thanked' => 'ありがとう',
- 'thanks' => 'ありがとう',
- 'thanks-given' => 'ありがとう',
- 'times' => 'タイムズ',
- 'tip-jar' => 'チップジャー',
- 'title' => 'タイトル',
- 'titles' => 'タイトル',
- 'top-completed' => 'トップ完了',
- 'top-dead' => '上死者',
- 'top-dying' => '死にかけている',
- 'top-leeched' => 'トップリーチ',
- 'top-seeded' => '上シード',
- 'torrent' => '急流',
- 'torrent-request' => 'トレントリクエスト',
- 'torrent-tips' => '合計:合計 BONは、そのうちのアップローダーに傾けてきた:ユーザーがあなたからあります',
- 'torrent-tips-desc' => 'これはあなたの利用可能なボーナスポイントから差し引かれます',
- 'torrents' => '急流',
- 'trailer' => '予告編を見る',
- 'type' => 'タイプ',
- 'types' => 'タイプ',
- 'unbookmark' => 'ブックマーク解除',
- 'unsatisfieds' => '不満',
- 'unsticky' => 'ベタベタ',
- 'updated' => '更新しました',
- 'updated_at' => 'で更新されました',
- 'uploaded' => 'アップロード済み',
- 'uploaded-by' => 'アップロード者',
- 'uploader' => 'アップローダ',
- 'use-fl-token' => 'フリーリーチトークンを使用する',
- 'video' => 'ビデオ',
- 'view-more' => 'もっと見る',
- 'view-trailer' => '予告編を見る',
- 'votes' => '投票',
+ 'grouping-results' => 'グループ化結果',
+ 'groupings-view' => 'グルーピングビュー',
+ 'have-completed' => '完了しました',
+ 'have-downloaded' => 'ダウンロード済み',
+ 'have-not-completed' => 'まだ終わってない',
+ 'have-not-downloaded' => 'ダウンロードしていない',
+ 'health' => '健康',
+ 'history' => '歴史',
+ 'hitrun' => 'H&R?',
+ 'hit-and-runs' => 'ヒット数と実行数',
+ 'immune' => '免疫?',
+ 'info' => '情報',
+ 'internal' => '内部',
+ 'internal-release' => '内部リリース',
+ 'last-seed-activity' => '最後の種の活動',
+ 'last-seeder' => 'あなたは最後の残りの種蒔きです! (少なくとも3回ダウンロードされています)',
+ 'last-update' => '最後の更新',
+ 'leave-tip' => 'チップを残す',
+ 'leecher' => 'リーチャー',
+ 'leechers' => 'リーチャーズ',
+ 'leeching' => 'リーヒング',
+ 'left' => '左',
+ 'legendary-seeder' => '伝説のシーダー',
+ 'legendary-torrent' => '伝説の急流',
+ 'list' => 'リスト',
+ 'me' => '私',
+ 'media-info' => 'MediaInfo',
+ 'media-info-parser' => 'MediaInfoパーサ',
+ 'media-info-paste' => 'ここにMediaInfoダンプを貼り付けます',
+ 'meta-desc' => 'ダウンロード:最高速度での名前',
+ 'moderation' => '節度',
+ 'movies' => '映画',
+ 'mvp' => 'MVP',
+ 'my-active-torrents' => '私の活動的な急流',
+ 'name' => '名',
+ 'no-bookmarks' => 'ブックマークが見つかりません。',
+ 'no-discounts' => '現在割引はありません',
+ 'no-meta' => 'メタデータが見つかりません',
+ 'no-privileges' => 'あなたはこのファイルをダウンロードすることができません - 詳細については下記をチェックしてください',
+ 'no-privileges-desc' => '表示されるダウンロードボタンのために上記の失敗した結果を解決してください',
+ 'not-completed' => 'ダウンロードを開始したが完了していない',
+ 'not-downloaded' => 'ダウンロードしていない',
+ 'old-torrent' => 'オールドトレント',
+ 'optional' => 'オプション',
+ 'original-output' => '元の出力を表示/隠す',
+ 'participant' => '参加者',
+ 'passed' => '合格',
+ 'peers' => '仲間',
+ 'pending' => '保留中',
+ 'personal-freeleech' => 'パーソナルフリーリーチ',
+ 'poster' => 'ポスター',
+ 'poster-view' => 'ポスター表示',
+ 'posters' => 'ポスター',
+ 'prewarn' => '警告しましたか?',
+ 'progress' => '進捗',
+ 'quick-comment' => 'クイックコメント',
+ 'quick-tip' => 'クイックチップ金額',
+ 'rated' => '評価済み',
+ 'rating' => '評価',
+ 'ready' => 'このファイルはダウンロードの準備ができています',
+ 'rejected' => '拒否されました',
+ 'released' => '発売日',
+ 'remaining' => '残り',
+ 'request-reseed' => 'シードをリクエスト',
+ 'requires-reseed' => '播種が必要',
+ 'resurrections' => '復活',
+ 'revoke' => '取り消す',
+ 'rss' => 'RSS',
+ 'runtime' => 'ランタイム',
+ 'satisfied_in' => 'に満足',
+ 'say-thanks' => 'できる限り感謝と種を言うことを忘れないでください',
+ 'sd-content' => 'SDコンテンツ',
+ 'search' => 'サーチ',
+ 'seed-time' => 'シードタイム',
+ 'seeder' => 'シーダー',
+ 'seeders' => 'シーダー',
+ 'seeding' => '種まき',
+ 'seedsize' => '種子サイズ',
+ 'seedtime' => 'シードタイム',
+ 'short-completed' => 'C',
+ 'short-leechs' => 'L',
+ 'short-seeds' => 'S',
+ 'show-files' => 'ファイルを表示',
+ 'similar' => '同じような急流',
+ 'size' => 'サイズ',
+ 'special' => '特殊',
+ 'special-freeleech' => '特別フリーリーチ',
+ 'started' => '始めました',
+ 'status' => '状態',
+ 'statistics' => '統計',
+ 'stats' => '統計',
+ 'sticky' => 'スティッキー',
+ 'stream-optimized' => 'ストリーム最適化',
+ 'subtitle' => '字幕',
+ 'team-player' => 'チームプレイヤー',
+ 'thank' => '感謝',
+ 'thanked' => 'ありがとう',
+ 'thanks' => 'ありがとう',
+ 'thanks-given' => 'ありがとう',
+ 'times' => 'タイムズ',
+ 'tip-jar' => 'チップジャー',
+ 'title' => 'タイトル',
+ 'titles' => 'タイトル',
+ 'top-completed' => 'トップ完了',
+ 'top-dead' => '上死者',
+ 'top-dying' => '死にかけている',
+ 'top-leeched' => 'トップリーチ',
+ 'top-seeded' => '上シード',
+ 'torrent' => '急流',
+ 'torrent-request' => 'トレントリクエスト',
+ 'torrent-tips' => '合計:合計 BONは、そのうちのアップローダーに傾けてきた:ユーザーがあなたからあります',
+ 'torrent-tips-desc' => 'これはあなたの利用可能なボーナスポイントから差し引かれます',
+ 'torrents' => '急流',
+ 'trailer' => '予告編を見る',
+ 'type' => 'タイプ',
+ 'types' => 'タイプ',
+ 'unbookmark' => 'ブックマーク解除',
+ 'unsatisfieds' => '不満',
+ 'unsticky' => 'ベタベタ',
+ 'updated' => '更新しました',
+ 'updated_at' => 'で更新されました',
+ 'uploaded' => 'アップロード済み',
+ 'uploaded-by' => 'アップロード者',
+ 'uploader' => 'アップローダ',
+ 'use-fl-token' => 'フリーリーチトークンを使用する',
+ 'video' => 'ビデオ',
+ 'view-more' => 'もっと見る',
+ 'view-trailer' => '予告編を見る',
+ 'votes' => '投票',
];
diff --git a/lang/ja/user.php b/lang/ja/user.php
index 479a19461..678e11b05 100644
--- a/lang/ja/user.php
+++ b/lang/ja/user.php
@@ -12,316 +12,316 @@
*/
return [
- 'about' => '約',
- 'about-me' => '私について',
- 'accepted-at' => 'で受け入れられた',
- 'accepted-by' => 'に受け入れられた',
- 'account-notification' => 'アカウント通知設定',
- 'account-notification-follow' => 'ユーザーがアカウントをフォローしたときに通知を受け取る',
- 'account-notification-unfollow' => 'ユーザーが自分のアカウントをフォロー解除したときに通知を受け取る',
- 'account-notification-help' => 'アカウントに関してどの通知を送信するかを制御します。自分のアカウントに関する通知の送信をグループに許可しない場合、または通知を無効にすると、これらの設定は上書きされます',
- 'account-settings' => 'アカウント設定',
- 'achievement-privacy' => '達成設定',
- 'achievement-privacy-list' => 'ユーザーがあなたの実績のリストを見ることを許可する',
- 'achievement-help' => 'あなたのプロフィールへのアクセスが許可されているグループとの特定の業績関連情報の共有を制御します。これらの設定は、他のグループがあなたの実績にアクセスすることを許可しない場合、またはあなたがプライベートになる場合に上書きされます',
- 'achievements' => '実績',
- 'active' => 'アクティブ',
- 'active-table' => '私のアクティブテーブル',
- 'active-torrents' => 'アクティブトレント',
- 'active-warning' => 'アクティブな警告',
- 'active-warnings' => 'アクティブな警告',
- 'add-seedbox' => 'シードボックスを追加',
- 'all-torrents' => 'すべての急流',
- 'article-comments' => '記事のコメント',
- 'avatar' => 'アバター',
- 'avg-seedtime' => '平均シードタイム',
- 'badges' => 'バッジ',
- 'ban' => '禁止ユーザー',
- 'ban-log' => '禁止ログ',
- 'become-hidden' => '隠される',
- 'become-visible' => '見えるようになる',
- 'bon' => 'BON',
- 'bon-notification' => 'BON通知設定',
- 'bon-notification-gift' => 'ユーザーがあなたにプレゼントを贈ったときに通知を受け取る',
- 'bon-notification-help' => 'BON取引に関してどの通知を送信するかを制御します。どのグループもBONに関する通知の送信を許可しない場合、または通知を無効にすると、これらの設定は無効になります。',
- 'bookmarks' => 'ブックマーク',
- 'bounty-given' => '与えられた賞金',
- 'bounty-received' => '受け取った賞金',
- 'can-chat' => 'チャットできます',
- 'can-comment' => 'コメントできます',
- 'can-download' => 'ダウンロードできます',
- 'can-invite' => '招待できます',
- 'can-request' => '要求することができます',
- 'can-upload' => 'アップロードできます',
- 'certified-banker' => '認定バンカー',
- 'certified-banker-desc' => '銀行に50,000以上のBONがあります',
- 'certified-downloader' => '認定ダウンローダー',
- 'certified-downloader-desc' => '100以上の急流をダウンロードしました!',
- 'certified-seeder' => '認定シーダー',
- 'certified-seeder-desc' => '150以上の急流を播種!',
- 'change-email' => 'メールアドレスを変更',
- 'change-email-help' => 'メールアドレスを変更した後は、アカウントを再確認する必要があります。',
- 'change-password' => 'パスワードを変更する',
- 'change-password-help' => 'パスワードを変更した後は、もう一度ログインする必要があります。',
- 'client-ip-address' => 'クライアントIPアドレス',
- 'code' => 'コード',
- 'comments' => 'コメント',
- 'created-on' => '作成日',
- 'credited-download' => 'クレジットダウンロード',
- 'credited-upload' => 'クレジットアップロード',
- 'current-password' => '現在のパスワード',
- 'custom-title' => 'カスタムタイトル',
- 'delete' => 'ユーザーを削除',
- 'disable-notifications' => '通知を無効にする',
- 'disclaimer' => '免責事項',
- 'disclaimer-info' => 'デフォルトでは、ほとんどのトラッカーのようにユーザーのIPアドレスを記録しません。シードボックスIPを下に追加することで、レコードを削除しない限り、以下にリストされているIPが現在データベースに保存されていることがわかります。',
- 'disclaimer-info-bordered' => '追加されたシードボックスIPは、次に下記のIPからシードされたトレントに高速トレントタグをトリガーします。',
- 'download-bon' => 'ダウンロードはBONストアから削除されました',
- 'download-recorded' => '記録されたダウンロード',
- 'download-true' => '真のダウンロード',
- 'downloads' => 'ダウンロード',
- 'edit' => 'ユーザーを編集',
- 'edit-profile' => 'プロファイル編集',
- 'enable-notifications' => '通知を有効にします',
- 'expired' => '期限切れ',
- 'expires-on' => '期限切れ',
- 'extra' => '追加の',
- 'filled-request' => '満たされたメンバーのリクエスト',
- 'follow' => 'た',
- 'follower-privacy' => 'フォロワー設定',
- 'follower-privacy-list' => 'ユーザーがあなたのフォロワーのリストを閲覧できるようにする',
- 'follower-help' => 'あなたのプロフィールへのアクセスが許可されているグループとの特定のフォロワー関連情報の共有を制御します。これらの設定は、あなたが他のグループにあなたのフォロワーへのアクセスを許可しない場合や、あなたがプライベートになった場合に上書きされます。',
- 'followers' => 'フォロワー',
- 'following-notification' => 'フォローされているユーザー通知設定',
- 'following-notification-upload' => 'フォローしているユーザーがtorrentをアップロードしたときに通知を受け取る',
- 'following-notification-help' => 'フォローされているユーザーサイトの操作に関してどの通知を送信するかを制御します。あなたはどのグループがユーザーを追ったり、 通知を無効にする場合に関する通知を送信することができない場合は、これらの設定は上書きされます',
- 'formats-are-supported' => 'フォーマットがサポートされている',
- 'forum-notification' => 'フォーラム通知設定',
- 'forum-notification-topic' => '開始したトピックが新しい投稿を受けたときに通知を受け取る',
- 'forum-notification-help' => 'フォーラムの活動に関してどの通知を送信するかを制御します。グループがフォーラムの活動に関する通知を送信できないようにするか、通知を無効にすると、これらの設定は無効になります',
- 'forum-privacy' => 'フォーラム設定',
- 'forum-privacy-post' => '自分が投稿したフォーラム投稿のリストをユーザーに表示させる',
- 'forum-privacy-topic' => '開始したフォーラムトピックの一覧をユーザーに表示させる',
- 'forum-help' => 'あなたのプロフィールへのアクセスが許可されているグループとの特定のフォーラム関連の統計および情報の共有を制御します。あなたが他のグループがあなたのフォーラム関連の統計と情報にアクセスすることを許可しないか、あなたがあなたがプライベートになった場合、これらの設定は上書きされます',
- 'forum-signature' => 'フォーラムの署名',
- 'forums' => 'フォーラム',
- 'general' => '全般',
- 'general-settings' => '一般設定',
- 'gift-given' => 'ギフトプレゼント',
- 'gift-received' => '受け取ったギフト',
- 'go-public' => '公開する',
- 'go-private' => '非公開にする',
- 'history' => '歴史',
- 'history-table' => '私の歴史表',
- 'hit-n-runs' => 'ヒットアンドラン',
- 'hit-n-runs-count' => 'ヒット数と実行数(常時)',
- 'hit-n-runs-history' => '急流のヒットとランの歴史',
- 'image' => '画像',
- 'important' => '重要',
- 'important-info' => '重要な情報',
- 'information' => '情報',
- 'invite-friend' => '友達を招待する(Eメール+メッセージが必要です)',
- 'invite-tree' => 'ツリーを招待',
- 'invites' => '招待状',
- 'invites-banned' => 'エラー:招待の権利が無効になっています',
- 'invites-banned-desc' => 'あなたがこれが間違っていると感じるならば、スタッフに連絡してください!',
- 'invites-count' => '招待トークンを数える',
- 'invites-disabled' => '注意:オープン登録のため招待状は無効になっています!',
- 'invites-disabled-desc' => 'すぐに戻って確認してください!',
- 'invites-rules' => '- 知っている人と信頼できる人だけを招待してください。
- あなたはあなたが招待した人に対して個人的に責任があるとみなされます。
- 自分を招待しないでください。招待されたすべてのユーザーをチェックします。
- 招待状を売買しないでください。
- あなたが招待した人が不正行為、取引口座、または売買/取引の招待を受けた場合は、警告が表示されます。
',
- 'invites-send' => '招待を送る',
- 'last-login' => '前回のログイン',
- 'locked' => 'ロック済み',
- 'locked-achievements' => 'ロックされた実績',
- 'member-since' => '以来のメンバー',
- 'members-desc' => '登録されているユーザーのリスト:すべてのグループのタイトル。今すぐユーザーを見つけます。',
- 'mention-notification' => '@メンション通知設定',
+ 'about' => '約',
+ 'about-me' => '私について',
+ 'accepted-at' => 'で受け入れられた',
+ 'accepted-by' => 'に受け入れられた',
+ 'account-notification' => 'アカウント通知設定',
+ 'account-notification-follow' => 'ユーザーがアカウントをフォローしたときに通知を受け取る',
+ 'account-notification-unfollow' => 'ユーザーが自分のアカウントをフォロー解除したときに通知を受け取る',
+ 'account-notification-help' => 'アカウントに関してどの通知を送信するかを制御します。自分のアカウントに関する通知の送信をグループに許可しない場合、または通知を無効にすると、これらの設定は上書きされます',
+ 'account-settings' => 'アカウント設定',
+ 'achievement-privacy' => '達成設定',
+ 'achievement-privacy-list' => 'ユーザーがあなたの実績のリストを見ることを許可する',
+ 'achievement-help' => 'あなたのプロフィールへのアクセスが許可されているグループとの特定の業績関連情報の共有を制御します。これらの設定は、他のグループがあなたの実績にアクセスすることを許可しない場合、またはあなたがプライベートになる場合に上書きされます',
+ 'achievements' => '実績',
+ 'active' => 'アクティブ',
+ 'active-table' => '私のアクティブテーブル',
+ 'active-torrents' => 'アクティブトレント',
+ 'active-warning' => 'アクティブな警告',
+ 'active-warnings' => 'アクティブな警告',
+ 'add-seedbox' => 'シードボックスを追加',
+ 'all-torrents' => 'すべての急流',
+ 'article-comments' => '記事のコメント',
+ 'avatar' => 'アバター',
+ 'avg-seedtime' => '平均シードタイム',
+ 'badges' => 'バッジ',
+ 'ban' => '禁止ユーザー',
+ 'ban-log' => '禁止ログ',
+ 'become-hidden' => '隠される',
+ 'become-visible' => '見えるようになる',
+ 'bon' => 'BON',
+ 'bon-notification' => 'BON通知設定',
+ 'bon-notification-gift' => 'ユーザーがあなたにプレゼントを贈ったときに通知を受け取る',
+ 'bon-notification-help' => 'BON取引に関してどの通知を送信するかを制御します。どのグループもBONに関する通知の送信を許可しない場合、または通知を無効にすると、これらの設定は無効になります。',
+ 'bookmarks' => 'ブックマーク',
+ 'bounty-given' => '与えられた賞金',
+ 'bounty-received' => '受け取った賞金',
+ 'can-chat' => 'チャットできます',
+ 'can-comment' => 'コメントできます',
+ 'can-download' => 'ダウンロードできます',
+ 'can-invite' => '招待できます',
+ 'can-request' => '要求することができます',
+ 'can-upload' => 'アップロードできます',
+ 'certified-banker' => '認定バンカー',
+ 'certified-banker-desc' => '銀行に50,000以上のBONがあります',
+ 'certified-downloader' => '認定ダウンローダー',
+ 'certified-downloader-desc' => '100以上の急流をダウンロードしました!',
+ 'certified-seeder' => '認定シーダー',
+ 'certified-seeder-desc' => '150以上の急流を播種!',
+ 'change-email' => 'メールアドレスを変更',
+ 'change-email-help' => 'メールアドレスを変更した後は、アカウントを再確認する必要があります。',
+ 'change-password' => 'パスワードを変更する',
+ 'change-password-help' => 'パスワードを変更した後は、もう一度ログインする必要があります。',
+ 'client-ip-address' => 'クライアントIPアドレス',
+ 'code' => 'コード',
+ 'comments' => 'コメント',
+ 'created-on' => '作成日',
+ 'credited-download' => 'クレジットダウンロード',
+ 'credited-upload' => 'クレジットアップロード',
+ 'current-password' => '現在のパスワード',
+ 'custom-title' => 'カスタムタイトル',
+ 'delete' => 'ユーザーを削除',
+ 'disable-notifications' => '通知を無効にする',
+ 'disclaimer' => '免責事項',
+ 'disclaimer-info' => 'デフォルトでは、ほとんどのトラッカーのようにユーザーのIPアドレスを記録しません。シードボックスIPを下に追加することで、レコードを削除しない限り、以下にリストされているIPが現在データベースに保存されていることがわかります。',
+ 'disclaimer-info-bordered' => '追加されたシードボックスIPは、次に下記のIPからシードされたトレントに高速トレントタグをトリガーします。',
+ 'download-bon' => 'ダウンロードはBONストアから削除されました',
+ 'download-recorded' => '記録されたダウンロード',
+ 'download-true' => '真のダウンロード',
+ 'downloads' => 'ダウンロード',
+ 'edit' => 'ユーザーを編集',
+ 'edit-profile' => 'プロファイル編集',
+ 'enable-notifications' => '通知を有効にします',
+ 'expired' => '期限切れ',
+ 'expires-on' => '期限切れ',
+ 'extra' => '追加の',
+ 'filled-request' => '満たされたメンバーのリクエスト',
+ 'follow' => 'た',
+ 'follower-privacy' => 'フォロワー設定',
+ 'follower-privacy-list' => 'ユーザーがあなたのフォロワーのリストを閲覧できるようにする',
+ 'follower-help' => 'あなたのプロフィールへのアクセスが許可されているグループとの特定のフォロワー関連情報の共有を制御します。これらの設定は、あなたが他のグループにあなたのフォロワーへのアクセスを許可しない場合や、あなたがプライベートになった場合に上書きされます。',
+ 'followers' => 'フォロワー',
+ 'following-notification' => 'フォローされているユーザー通知設定',
+ 'following-notification-upload' => 'フォローしているユーザーがtorrentをアップロードしたときに通知を受け取る',
+ 'following-notification-help' => 'フォローされているユーザーサイトの操作に関してどの通知を送信するかを制御します。あなたはどのグループがユーザーを追ったり、 通知を無効にする場合に関する通知を送信することができない場合は、これらの設定は上書きされます',
+ 'formats-are-supported' => 'フォーマットがサポートされている',
+ 'forum-notification' => 'フォーラム通知設定',
+ 'forum-notification-topic' => '開始したトピックが新しい投稿を受けたときに通知を受け取る',
+ 'forum-notification-help' => 'フォーラムの活動に関してどの通知を送信するかを制御します。グループがフォーラムの活動に関する通知を送信できないようにするか、通知を無効にすると、これらの設定は無効になります',
+ 'forum-privacy' => 'フォーラム設定',
+ 'forum-privacy-post' => '自分が投稿したフォーラム投稿のリストをユーザーに表示させる',
+ 'forum-privacy-topic' => '開始したフォーラムトピックの一覧をユーザーに表示させる',
+ 'forum-help' => 'あなたのプロフィールへのアクセスが許可されているグループとの特定のフォーラム関連の統計および情報の共有を制御します。あなたが他のグループがあなたのフォーラム関連の統計と情報にアクセスすることを許可しないか、あなたがあなたがプライベートになった場合、これらの設定は上書きされます',
+ 'forum-signature' => 'フォーラムの署名',
+ 'forums' => 'フォーラム',
+ 'general' => '全般',
+ 'general-settings' => '一般設定',
+ 'gift-given' => 'ギフトプレゼント',
+ 'gift-received' => '受け取ったギフト',
+ 'go-public' => '公開する',
+ 'go-private' => '非公開にする',
+ 'history' => '歴史',
+ 'history-table' => '私の歴史表',
+ 'hit-n-runs' => 'ヒットアンドラン',
+ 'hit-n-runs-count' => 'ヒット数と実行数(常時)',
+ 'hit-n-runs-history' => '急流のヒットとランの歴史',
+ 'image' => '画像',
+ 'important' => '重要',
+ 'important-info' => '重要な情報',
+ 'information' => '情報',
+ 'invite-friend' => '友達を招待する(Eメール+メッセージが必要です)',
+ 'invite-tree' => 'ツリーを招待',
+ 'invites' => '招待状',
+ 'invites-banned' => 'エラー:招待の権利が無効になっています',
+ 'invites-banned-desc' => 'あなたがこれが間違っていると感じるならば、スタッフに連絡してください!',
+ 'invites-count' => '招待トークンを数える',
+ 'invites-disabled' => '注意:オープン登録のため招待状は無効になっています!',
+ 'invites-disabled-desc' => 'すぐに戻って確認してください!',
+ 'invites-rules' => '- 知っている人と信頼できる人だけを招待してください。
- あなたはあなたが招待した人に対して個人的に責任があるとみなされます。
- 自分を招待しないでください。招待されたすべてのユーザーをチェックします。
- 招待状を売買しないでください。
- あなたが招待した人が不正行為、取引口座、または売買/取引の招待を受けた場合は、警告が表示されます。
',
+ 'invites-send' => '招待を送る',
+ 'last-login' => '前回のログイン',
+ 'locked' => 'ロック済み',
+ 'locked-achievements' => 'ロックされた実績',
+ 'member-since' => '以来のメンバー',
+ 'members-desc' => '登録されているユーザーのリスト:すべてのグループのタイトル。今すぐユーザーを見つけます。',
+ 'mention-notification' => '@メンション通知設定',
'mention-notification-article-comment' => '記事のコメントに@が記載されているときに通知を受け取る',
'mention-notification-torrent-comment' => 'トレントコメントに@言及しているときに通知を受け取る',
'mention-notification-request-comment' => 'あなたがリクエストコメントに@述べられているときに通知を受け取る',
- 'mention-notification-forum-post' => 'あなたがフォーラム投稿に@述べられているときに通知を受け取る',
- 'mention-notification-help' => 'ユーザーが@メンションを送信したときに送信される通知を制御します。ユーザーが@メンションしていることを通知した場合、または通知を無効にした場合に、どのグループからも通知の送信を許可しない場合、これらの設定は上書きされます。',
- 'moderated-by' => 'モデレート:mod on',
- 'my-bonus-points' => '私のボーナスポイント',
- 'my-bookmarks' => '私のブックマーク',
- 'my-fl-tokens' => '私のFLトークン',
- 'my-general-settings' => '私の一般設定',
- 'my-notification' => '私の通知',
- 'my-notification-settings' => '私の通知設定',
- 'my-privacy' => '私のプライバシー',
- 'my-privacy-settings' => '私のプライバシー設定',
- 'my-profile' => '私のプロフィール',
- 'my-requested' => '私の要求',
- 'my-security' => '私のセキュリティ',
- 'my-security-settings' => '私のセキュリティ設定',
- 'my-seedboxes' => '私のシードボックス',
- 'my-settings' => '私の設定',
- 'my-wishlist' => '私のほしい物リスト',
- 'no-logs' => 'このユーザーのデータベースに招待ログはありません。',
- 'no-seedboxes' => 'シードボックスなし',
- 'not-authorized' => 'このページを閲覧する権限がありません。このメンバーは忍者のように隠されていることを好みます',
- 'note' => '注意',
- 'notification' => 'お知らせ',
- 'notification-settings' => '通知設定',
- 'notification-from-account' => 'からアカウント通知を受け取る',
- 'notification-from-account-help' => 'システム、スタッフ、および以下のグループからのみアカウント通知を受け取ります。 通知を無効にすると 、これらの設定は無効になります。',
- 'notification-from-bon' => 'からBON通知を受け取る',
- 'notification-from-bon-help' => 'システム、スタッフ、および以下のグループからのみBON通知を受け取ります。 通知を無効にすると 、これらの設定は無効になります。',
- 'notification-from-following' => 'フォローしているユーザーからの通知を受け取る',
- 'notification-from-following-help' => 'あなたは以下のグループからのフォローユーザー通知のみを受け取るでしょう。 通知を無効にすると 、これらの設定は無効になります。',
- 'notification-from-forum' => 'からフォーラム通知を受け取る',
- 'notification-from-forum-help' => 'あなたは、システム、スタッフ、および以下のグループからのフォーラム通知のみを受け取ります。 通知を無効にすると 、これらの設定は無効になります。',
- 'notification-from-subscription' => 'から購読通知を受け取る',
- 'notification-from-subscription-help' => 'あなたは、システム、スタッフ、および以下のグループからのフォーラム通知のみを受け取ります。 通知を無効にすると 、これらの設定は無効になります。',
- 'notification-from-torrent' => 'からトレント通知を受け取る',
- 'notification-from-torrent-help' => 'あなたはシステム、スタッフと以下のグループから急流通知を受け取るだけです。 通知を無効にすると 、これらの設定は無効になります。',
- 'notification-from-mention' => 'から@Mention通知を受け取る',
- 'notification-from-mention-help' => 'あなたはシステム、スタッフ、そして以下のグループからのみ@メンション通知を受け取るでしょう。 通知を無効にすると 、これらの設定は無効になります。',
- 'notification-from-request' => 'からの要求通知を受け取る',
- 'notification-from-request-help' => 'あなたはシステム、スタッフ、そして以下のグループからのみリクエスト通知を受け取ります。 通知を無効にすると 、これらの設定は無効になります。',
- 'notifications' => '通知',
- 'offline' => 'ユーザーはオフラインです。',
- 'online' => 'ユーザーはオンラインです。',
- 'options' => 'オプション',
- 'other-help' => '自分のプロフィールへのアクセスが許可されているグループとの他の統計や情報の共有を制御します。これらの設定は、他の統計や情報へのアクセスを他のグループに許可しない場合、またはプライベートにする場合に上書きされます',
- 'other-privacy' => 'その他の設定',
- 'other-privacy-online' => 'ユーザーがオンラインユーザーブロックであなたに会えるようにする',
- 'passkey' => 'PID',
- 'passkey-warning' => 'PIDはあなたのパスワードに似ています、あなたはそれを安全に保たなければなりません!',
- 'pending-achievements' => '保留中の実績',
- 'per-torrent' => '1トレントあたり',
- 'posts' => '投稿',
- 'posts-posted' => 'フォーラム投稿投稿',
- 'privacy' => 'プライバシー',
- 'privacy-settings' => 'プライバシー設定',
- 'private-info' => '個人情報',
- 'private-forum-profile' => '注意:このメンバーのトピックと投稿履歴はプライベートに設定されました。',
- 'private-profile' => '注意:このプロファイルはPRIVATEに設定されています。',
- 'profile' => 'プロフィール',
- 'profile-desc' => 'ユーザー:登録されているユーザープロフィール:title',
- 'profile-privacy' => 'プロファイル設定',
- 'profile-privacy-torrent-count' => 'ダウンロード、アップロード、シード、リーチの合計数を共有する',
- 'profile-privacy-torrent-ratio' => '記録された比率と一緒にあなたの総アップロード/ダウンロードデータを共有する',
- 'profile-privacy-torrent-seed' => '合計播種時間と平均を共有する',
- 'profile-privacy-title' => '個人の役職情報を共有する',
- 'profile-privacy-about' => '私の情報についてあなたの個人情報を共有する',
- 'profile-privacy-bon-extra' => 'あなたのBON統計を共有する',
- 'profile-privacy-comment-extra' => 'あなたのコメント統計を共有する',
- 'profile-privacy-forum-extra' => 'フォーラムの統計を共有する',
- 'profile-privacy-request-extra' => 'リクエストの統計情報を共有する',
- 'profile-privacy-torrent-extra' => 'あなたのトレント統計を共有する',
- 'profile-privacy-badge' => '獲得したバッジを共有する',
- 'profile-privacy-achievement' => '最近の実績を共有する',
- 'profile-privacy-follower' => '最近のフォロワーを共有する',
- 'profile-privacy-warning' => 'H&Rの警告を共有する',
- 'profile-privacy-help' => 'プロフィールに表示する統計と情報を制御します。どのグループからもあなたのプロフィールへのアクセスを許可しない場合、またはあなたがプライベートになる場合、これらの設定は上書きされます',
- 'public-info' => '公開情報',
- 'recent-achievements' => '最近の実績',
- 'recent-followers' => '最近のフォロワー',
- 'registration-date' => '登録日',
- 'report' => '報告書',
- 'request-help' => 'あなたのプロフィールへのアクセスが許可されているグループとの特定のリクエスト関連の統計と情報の共有を制御します。これらの設定は、あなたが要求した関連統計や情報へのアクセスを他のグループに許可しない場合、またはあなたがプライベートになった場合に上書きされます。',
- 'request' => '要求',
- 'requested' => '要求された',
- 'requests' => 'リクエスト',
- 'request-comments' => 'コメントのリクエスト',
- 'request-notification' => '通知設定の要求',
- 'request-notification-bounty' => '要求された急流が新しい賞金を獲得したときに通知を受け取る',
- 'request-notification-comment' => '要求された急流が新しいコメントを得たときに通知を受け取る',
- 'request-notification-fill' => '要求された急流がいっぱいになったときに通知を受け取る',
- 'request-notification-fill-approve' => '要求されたトレントフィルが承認されたときに通知を受け取る',
- 'request-notification-fill-reject' => '要求された急流の塗りつぶしが拒否されたときに通知を受け取る',
- 'request-notification-claim' => '要求された急流が主張されたときに通知を受け取る',
- 'request-notification-unclaim' => '要求された急流が要求されなくなったときに通知を受け取る',
- 'request-notification-help' => 'リクエストアクティビティに関してどの通知を送信するかを制御します。あなたは、どのグループが要求活動に関する通知を送信することはできません場合や、 通知を無効にした場合、これらの設定は上書きされます',
- 'request-privacy' => 'リクエスト設定',
- 'request-privacy-requested' => '自分が行ったリクエストの一覧をユーザーに表示する',
- 'reset-passkey' => 'パスキーのリセット(PID)',
- 'reset-passkey-help' => 'PIDをリセットした後は、すべてのアクティブなトレントを再ダウンロード/再アップロードする必要があります。',
- 'reset-rss' => 'RSSキーをリセット(RID)',
- 'reset-rss-help' => 'RIDをリセットした後は、アクティブなRSSフィードをすべて再ロードする必要があります。',
- 'resurrections' => '復活',
- 'search' => 'ユーザー名によるクイック検索',
- 'security' => 'セキュリティ',
- 'security-settings' => 'セキュリティ設定',
- 'seedboxes' => 'シードボックス',
- 'seeds' => '種',
- 'send-invite' => '招待を送る',
- 'sender' => '送信者',
- 'settings' => '設定',
- 'show-passkey' => 'PIDを表示',
- 'staff-noted' => 'スタッフ注目アカウント',
- 'statistics' => '統計',
- 'subscription-notification' => '購読通知設定',
- 'subscription-notification-forum' => '購読しているフォーラムが新しいトピックを取得したときに通知を受け取る',
- 'subscription-notification-topic' => '購読しているトピックが新しい投稿を受け取ったときに通知を受け取る',
- 'subscription-notification-help' => '購読に関してどの通知を送信するかを制御します。購読に関する通知の送信をグループに許可しない場合、または通知を無効にすると、これらの設定は無効になります。',
- 'thanks-given' => '与えられたありがとう',
- 'thanks-received' => 'ありがとうございました',
- 'tips-given' => '与えられたヒント',
- 'tips-received' => '受け取ったヒント',
- 'title' => 'タイトル',
- 'top-bankers' => 'トップバンカー',
- 'top-downloaders-data' => 'トップダウンローダ(データ)',
- 'top-leechers' => 'トップLeechers',
- 'top-leechers-count' => 'トップリーチャー(数)',
- 'top-seeders' => 'トップシーダー',
- 'top-seeders-count' => 'トップシーダー(数)',
- 'top-seeding-size' => 'トップシーディング(サイズ)',
- 'top-seedtime' => 'トップシードタイム',
- 'top-uploaders-data' => 'トップアップローダ(データ)',
- 'top-uploaders-count' => 'トップアップローダ(数)',
- 'topics' => 'トピック',
- 'topics-started' => 'フォーラムトピックス開始',
- 'torrent-comments' => 'トレントコメント',
- 'torrent-help' => 'あなたのプロフィールへのアクセスが許可されているグループとの特定のtorrent関連の統計や情報の共有を制御します。グループがあなたのtorrent関連の統計や情報にアクセスすることを許可しない場合、あるいはあなたがプライベートになる場合、これらの設定は上書きされます',
- 'torrent-notification' => 'トレント通知設定',
- 'torrent-notification-comment' => 'アップロードされた急流が新しいコメントを得たときに通知を受け取る',
- 'torrent-notification-thank' => 'アップロードされた急流が新しい感謝を受けたときに通知を受け取る',
- 'torrent-notification-tip' => 'アップロードされた急流が新しいヒントを得たときに通知を受け取る',
- 'torrent-notification-help' => 'トレント活動に関してどの通知を送信するかを制御します。これらの設定は、どのグループもtorrentアクティビティに関する通知を送信できないようにした場合、または通知を無効にした場合は無効になります',
- 'torrent-privacy' => 'トレント設定',
- 'torrent-privacy-download' => 'ダウンロードした急流の一覧を他のユーザーに表示させる',
- 'torrent-privacy-upload' => 'アップロードしたトレントの一覧をユーザーに表示させる',
- 'torrent-privacy-peer' => 'Torrentピア履歴テーブルでユーザーにあなたと会うことを許可する',
- 'torrents' => '急流',
- 'torrents-history' => '急流の歴史',
- 'total-download' => 'ダウンロード合計',
- 'total-downloads' => 'ダウンロード数',
- 'total-leeching' => 'トータルリーチング',
- 'total-seeding' => 'トータルシーディング',
- 'total-seedtime' => '合計シードタイム',
- 'total-upload' => '合計アップロード',
- 'total-uploads' => '合計アップロード数',
- 'unban' => '非公開ユーザー',
- 'unfollow' => 'フォローを解除',
- 'unlocked' => 'ロック解除',
- 'unlocked-achievements' => 'ロック解除された実績',
- 'unsatisfieds' => '不満',
- 'upload-bon' => 'BONストアから追加されたアップロード',
- 'upload-recorded' => '記録されたアップロード',
- 'upload-true' => '真のアップロード',
- 'uploads' => 'アップロード',
- 'uploads-table' => 'テーブルをアップロード',
- 'user' => 'ユーザー',
- 'user-id' => 'ユーザーID',
- 'username-seedbox' => 'ユーザー名シードボックス',
- 'visible-to-achievement' => '目に見える成果',
- 'visible-to-achievement-help' => 'あなたの業績はスタッフと以下のグループにしか見えません。これらの設定は、 プライベートにすると上書きされます。',
- 'visible-to-follower' => 'フォロワー',
- 'visible-to-follower-help' => 'あなたのフォロワーは、スタッフと以下のグループにしか見えません。これらの設定は、 プライベートにすると上書きされます。',
- 'visible-to-forum' => 'フォーラム情報',
- 'visible-to-forum-help' => 'あなたのフォーラム情報はスタッフと以下のグループにしか見えません。これらの設定は、 プライベートにすると上書きされます。',
- 'visible-to-other' => 'その他に見える',
- 'visible-to-other-help' => 'あなたのアカウントに関するその他の情報は、スタッフと以下のグループにしか見えません。これらの設定は、 個人的に行った場合、または隠しに行った場合に上書きされます。',
- 'visible-to-profile' => '表示プロファイル',
- 'visible-to-profile-help' => 'あなたのプロフィールはスタッフと以下のグループにしか見えません。これらの設定は、 プライベートにすると上書きされます。',
- 'visible-to-request' => '閲覧可能な情報を要求する',
- 'visible-to-request-help' => 'あなたのリクエスト情報はスタッフと以下のグループにしか見えません。これらの設定は、 プライベートにすると上書きされます。',
- 'visible-to-torrent' => 'に表示されるTorrent情報',
- 'visible-to-torrent-help' => 'あなたの急流情報は、スタッフと以下のグループにしか見えません。これらの設定は、 個人的に行った場合、または隠しに行った場合に上書きされます。',
- 'warned-on' => '警告された',
- 'warning' => '警告',
- 'warning-log' => '警告ログ',
- 'wishlist' => 'ほしい物リスト',
+ 'mention-notification-forum-post' => 'あなたがフォーラム投稿に@述べられているときに通知を受け取る',
+ 'mention-notification-help' => 'ユーザーが@メンションを送信したときに送信される通知を制御します。ユーザーが@メンションしていることを通知した場合、または通知を無効にした場合に、どのグループからも通知の送信を許可しない場合、これらの設定は上書きされます。',
+ 'moderated-by' => 'モデレート:mod on',
+ 'my-bonus-points' => '私のボーナスポイント',
+ 'my-bookmarks' => '私のブックマーク',
+ 'my-fl-tokens' => '私のFLトークン',
+ 'my-general-settings' => '私の一般設定',
+ 'my-notification' => '私の通知',
+ 'my-notification-settings' => '私の通知設定',
+ 'my-privacy' => '私のプライバシー',
+ 'my-privacy-settings' => '私のプライバシー設定',
+ 'my-profile' => '私のプロフィール',
+ 'my-requested' => '私の要求',
+ 'my-security' => '私のセキュリティ',
+ 'my-security-settings' => '私のセキュリティ設定',
+ 'my-seedboxes' => '私のシードボックス',
+ 'my-settings' => '私の設定',
+ 'my-wishlist' => '私のほしい物リスト',
+ 'no-logs' => 'このユーザーのデータベースに招待ログはありません。',
+ 'no-seedboxes' => 'シードボックスなし',
+ 'not-authorized' => 'このページを閲覧する権限がありません。このメンバーは忍者のように隠されていることを好みます',
+ 'note' => '注意',
+ 'notification' => 'お知らせ',
+ 'notification-settings' => '通知設定',
+ 'notification-from-account' => 'からアカウント通知を受け取る',
+ 'notification-from-account-help' => 'システム、スタッフ、および以下のグループからのみアカウント通知を受け取ります。 通知を無効にすると 、これらの設定は無効になります。',
+ 'notification-from-bon' => 'からBON通知を受け取る',
+ 'notification-from-bon-help' => 'システム、スタッフ、および以下のグループからのみBON通知を受け取ります。 通知を無効にすると 、これらの設定は無効になります。',
+ 'notification-from-following' => 'フォローしているユーザーからの通知を受け取る',
+ 'notification-from-following-help' => 'あなたは以下のグループからのフォローユーザー通知のみを受け取るでしょう。 通知を無効にすると 、これらの設定は無効になります。',
+ 'notification-from-forum' => 'からフォーラム通知を受け取る',
+ 'notification-from-forum-help' => 'あなたは、システム、スタッフ、および以下のグループからのフォーラム通知のみを受け取ります。 通知を無効にすると 、これらの設定は無効になります。',
+ 'notification-from-subscription' => 'から購読通知を受け取る',
+ 'notification-from-subscription-help' => 'あなたは、システム、スタッフ、および以下のグループからのフォーラム通知のみを受け取ります。 通知を無効にすると 、これらの設定は無効になります。',
+ 'notification-from-torrent' => 'からトレント通知を受け取る',
+ 'notification-from-torrent-help' => 'あなたはシステム、スタッフと以下のグループから急流通知を受け取るだけです。 通知を無効にすると 、これらの設定は無効になります。',
+ 'notification-from-mention' => 'から@Mention通知を受け取る',
+ 'notification-from-mention-help' => 'あなたはシステム、スタッフ、そして以下のグループからのみ@メンション通知を受け取るでしょう。 通知を無効にすると 、これらの設定は無効になります。',
+ 'notification-from-request' => 'からの要求通知を受け取る',
+ 'notification-from-request-help' => 'あなたはシステム、スタッフ、そして以下のグループからのみリクエスト通知を受け取ります。 通知を無効にすると 、これらの設定は無効になります。',
+ 'notifications' => '通知',
+ 'offline' => 'ユーザーはオフラインです。',
+ 'online' => 'ユーザーはオンラインです。',
+ 'options' => 'オプション',
+ 'other-help' => '自分のプロフィールへのアクセスが許可されているグループとの他の統計や情報の共有を制御します。これらの設定は、他の統計や情報へのアクセスを他のグループに許可しない場合、またはプライベートにする場合に上書きされます',
+ 'other-privacy' => 'その他の設定',
+ 'other-privacy-online' => 'ユーザーがオンラインユーザーブロックであなたに会えるようにする',
+ 'passkey' => 'PID',
+ 'passkey-warning' => 'PIDはあなたのパスワードに似ています、あなたはそれを安全に保たなければなりません!',
+ 'pending-achievements' => '保留中の実績',
+ 'per-torrent' => '1トレントあたり',
+ 'posts' => '投稿',
+ 'posts-posted' => 'フォーラム投稿投稿',
+ 'privacy' => 'プライバシー',
+ 'privacy-settings' => 'プライバシー設定',
+ 'private-info' => '個人情報',
+ 'private-forum-profile' => '注意:このメンバーのトピックと投稿履歴はプライベートに設定されました。',
+ 'private-profile' => '注意:このプロファイルはPRIVATEに設定されています。',
+ 'profile' => 'プロフィール',
+ 'profile-desc' => 'ユーザー:登録されているユーザープロフィール:title',
+ 'profile-privacy' => 'プロファイル設定',
+ 'profile-privacy-torrent-count' => 'ダウンロード、アップロード、シード、リーチの合計数を共有する',
+ 'profile-privacy-torrent-ratio' => '記録された比率と一緒にあなたの総アップロード/ダウンロードデータを共有する',
+ 'profile-privacy-torrent-seed' => '合計播種時間と平均を共有する',
+ 'profile-privacy-title' => '個人の役職情報を共有する',
+ 'profile-privacy-about' => '私の情報についてあなたの個人情報を共有する',
+ 'profile-privacy-bon-extra' => 'あなたのBON統計を共有する',
+ 'profile-privacy-comment-extra' => 'あなたのコメント統計を共有する',
+ 'profile-privacy-forum-extra' => 'フォーラムの統計を共有する',
+ 'profile-privacy-request-extra' => 'リクエストの統計情報を共有する',
+ 'profile-privacy-torrent-extra' => 'あなたのトレント統計を共有する',
+ 'profile-privacy-badge' => '獲得したバッジを共有する',
+ 'profile-privacy-achievement' => '最近の実績を共有する',
+ 'profile-privacy-follower' => '最近のフォロワーを共有する',
+ 'profile-privacy-warning' => 'H&Rの警告を共有する',
+ 'profile-privacy-help' => 'プロフィールに表示する統計と情報を制御します。どのグループからもあなたのプロフィールへのアクセスを許可しない場合、またはあなたがプライベートになる場合、これらの設定は上書きされます',
+ 'public-info' => '公開情報',
+ 'recent-achievements' => '最近の実績',
+ 'recent-followers' => '最近のフォロワー',
+ 'registration-date' => '登録日',
+ 'report' => '報告書',
+ 'request-help' => 'あなたのプロフィールへのアクセスが許可されているグループとの特定のリクエスト関連の統計と情報の共有を制御します。これらの設定は、あなたが要求した関連統計や情報へのアクセスを他のグループに許可しない場合、またはあなたがプライベートになった場合に上書きされます。',
+ 'request' => '要求',
+ 'requested' => '要求された',
+ 'requests' => 'リクエスト',
+ 'request-comments' => 'コメントのリクエスト',
+ 'request-notification' => '通知設定の要求',
+ 'request-notification-bounty' => '要求された急流が新しい賞金を獲得したときに通知を受け取る',
+ 'request-notification-comment' => '要求された急流が新しいコメントを得たときに通知を受け取る',
+ 'request-notification-fill' => '要求された急流がいっぱいになったときに通知を受け取る',
+ 'request-notification-fill-approve' => '要求されたトレントフィルが承認されたときに通知を受け取る',
+ 'request-notification-fill-reject' => '要求された急流の塗りつぶしが拒否されたときに通知を受け取る',
+ 'request-notification-claim' => '要求された急流が主張されたときに通知を受け取る',
+ 'request-notification-unclaim' => '要求された急流が要求されなくなったときに通知を受け取る',
+ 'request-notification-help' => 'リクエストアクティビティに関してどの通知を送信するかを制御します。あなたは、どのグループが要求活動に関する通知を送信することはできません場合や、 通知を無効にした場合、これらの設定は上書きされます',
+ 'request-privacy' => 'リクエスト設定',
+ 'request-privacy-requested' => '自分が行ったリクエストの一覧をユーザーに表示する',
+ 'reset-passkey' => 'パスキーのリセット(PID)',
+ 'reset-passkey-help' => 'PIDをリセットした後は、すべてのアクティブなトレントを再ダウンロード/再アップロードする必要があります。',
+ 'reset-rss' => 'RSSキーをリセット(RID)',
+ 'reset-rss-help' => 'RIDをリセットした後は、アクティブなRSSフィードをすべて再ロードする必要があります。',
+ 'resurrections' => '復活',
+ 'search' => 'ユーザー名によるクイック検索',
+ 'security' => 'セキュリティ',
+ 'security-settings' => 'セキュリティ設定',
+ 'seedboxes' => 'シードボックス',
+ 'seeds' => '種',
+ 'send-invite' => '招待を送る',
+ 'sender' => '送信者',
+ 'settings' => '設定',
+ 'show-passkey' => 'PIDを表示',
+ 'staff-noted' => 'スタッフ注目アカウント',
+ 'statistics' => '統計',
+ 'subscription-notification' => '購読通知設定',
+ 'subscription-notification-forum' => '購読しているフォーラムが新しいトピックを取得したときに通知を受け取る',
+ 'subscription-notification-topic' => '購読しているトピックが新しい投稿を受け取ったときに通知を受け取る',
+ 'subscription-notification-help' => '購読に関してどの通知を送信するかを制御します。購読に関する通知の送信をグループに許可しない場合、または通知を無効にすると、これらの設定は無効になります。',
+ 'thanks-given' => '与えられたありがとう',
+ 'thanks-received' => 'ありがとうございました',
+ 'tips-given' => '与えられたヒント',
+ 'tips-received' => '受け取ったヒント',
+ 'title' => 'タイトル',
+ 'top-bankers' => 'トップバンカー',
+ 'top-downloaders-data' => 'トップダウンローダ(データ)',
+ 'top-leechers' => 'トップLeechers',
+ 'top-leechers-count' => 'トップリーチャー(数)',
+ 'top-seeders' => 'トップシーダー',
+ 'top-seeders-count' => 'トップシーダー(数)',
+ 'top-seeding-size' => 'トップシーディング(サイズ)',
+ 'top-seedtime' => 'トップシードタイム',
+ 'top-uploaders-data' => 'トップアップローダ(データ)',
+ 'top-uploaders-count' => 'トップアップローダ(数)',
+ 'topics' => 'トピック',
+ 'topics-started' => 'フォーラムトピックス開始',
+ 'torrent-comments' => 'トレントコメント',
+ 'torrent-help' => 'あなたのプロフィールへのアクセスが許可されているグループとの特定のtorrent関連の統計や情報の共有を制御します。グループがあなたのtorrent関連の統計や情報にアクセスすることを許可しない場合、あるいはあなたがプライベートになる場合、これらの設定は上書きされます',
+ 'torrent-notification' => 'トレント通知設定',
+ 'torrent-notification-comment' => 'アップロードされた急流が新しいコメントを得たときに通知を受け取る',
+ 'torrent-notification-thank' => 'アップロードされた急流が新しい感謝を受けたときに通知を受け取る',
+ 'torrent-notification-tip' => 'アップロードされた急流が新しいヒントを得たときに通知を受け取る',
+ 'torrent-notification-help' => 'トレント活動に関してどの通知を送信するかを制御します。これらの設定は、どのグループもtorrentアクティビティに関する通知を送信できないようにした場合、または通知を無効にした場合は無効になります',
+ 'torrent-privacy' => 'トレント設定',
+ 'torrent-privacy-download' => 'ダウンロードした急流の一覧を他のユーザーに表示させる',
+ 'torrent-privacy-upload' => 'アップロードしたトレントの一覧をユーザーに表示させる',
+ 'torrent-privacy-peer' => 'Torrentピア履歴テーブルでユーザーにあなたと会うことを許可する',
+ 'torrents' => '急流',
+ 'torrents-history' => '急流の歴史',
+ 'total-download' => 'ダウンロード合計',
+ 'total-downloads' => 'ダウンロード数',
+ 'total-leeching' => 'トータルリーチング',
+ 'total-seeding' => 'トータルシーディング',
+ 'total-seedtime' => '合計シードタイム',
+ 'total-upload' => '合計アップロード',
+ 'total-uploads' => '合計アップロード数',
+ 'unban' => '非公開ユーザー',
+ 'unfollow' => 'フォローを解除',
+ 'unlocked' => 'ロック解除',
+ 'unlocked-achievements' => 'ロック解除された実績',
+ 'unsatisfieds' => '不満',
+ 'upload-bon' => 'BONストアから追加されたアップロード',
+ 'upload-recorded' => '記録されたアップロード',
+ 'upload-true' => '真のアップロード',
+ 'uploads' => 'アップロード',
+ 'uploads-table' => 'テーブルをアップロード',
+ 'user' => 'ユーザー',
+ 'user-id' => 'ユーザーID',
+ 'username-seedbox' => 'ユーザー名シードボックス',
+ 'visible-to-achievement' => '目に見える成果',
+ 'visible-to-achievement-help' => 'あなたの業績はスタッフと以下のグループにしか見えません。これらの設定は、 プライベートにすると上書きされます。',
+ 'visible-to-follower' => 'フォロワー',
+ 'visible-to-follower-help' => 'あなたのフォロワーは、スタッフと以下のグループにしか見えません。これらの設定は、 プライベートにすると上書きされます。',
+ 'visible-to-forum' => 'フォーラム情報',
+ 'visible-to-forum-help' => 'あなたのフォーラム情報はスタッフと以下のグループにしか見えません。これらの設定は、 プライベートにすると上書きされます。',
+ 'visible-to-other' => 'その他に見える',
+ 'visible-to-other-help' => 'あなたのアカウントに関するその他の情報は、スタッフと以下のグループにしか見えません。これらの設定は、 個人的に行った場合、または隠しに行った場合に上書きされます。',
+ 'visible-to-profile' => '表示プロファイル',
+ 'visible-to-profile-help' => 'あなたのプロフィールはスタッフと以下のグループにしか見えません。これらの設定は、 プライベートにすると上書きされます。',
+ 'visible-to-request' => '閲覧可能な情報を要求する',
+ 'visible-to-request-help' => 'あなたのリクエスト情報はスタッフと以下のグループにしか見えません。これらの設定は、 プライベートにすると上書きされます。',
+ 'visible-to-torrent' => 'に表示されるTorrent情報',
+ 'visible-to-torrent-help' => 'あなたの急流情報は、スタッフと以下のグループにしか見えません。これらの設定は、 個人的に行った場合、または隠しに行った場合に上書きされます。',
+ 'warned-on' => '警告された',
+ 'warning' => '警告',
+ 'warning-log' => '警告ログ',
+ 'wishlist' => 'ほしい物リスト',
];
diff --git a/lang/ja/validation.php b/lang/ja/validation.php
index 8f19154ac..f3ba61492 100644
--- a/lang/ja/validation.php
+++ b/lang/ja/validation.php
@@ -23,108 +23,108 @@ return [
|
*/
- 'accepted' => ':attributeを承認してください。',
- 'active_url' => ':attributeは、有効なURLではありません。',
- 'after' => ':attributeには、:dateより後の日付を指定してください。',
- 'after_or_equal' => ':attributeには、:date以降の日付を指定してください。',
- 'alpha' => ':attributeには、アルファベッドのみ使用できます。',
- 'alpha_dash' => ":attributeには、英数字('A-Z','a-z','0-9')とハイフンと下線('-','_')が使用できます。",
- 'alpha_num' => ":attributeには、英数字('A-Z','a-z','0-9')が使用できます。",
- 'array' => ':attributeには、配列を指定してください。',
- 'before' => ':attributeには、:dateより前の日付を指定してください。',
+ 'accepted' => ':attributeを承認してください。',
+ 'active_url' => ':attributeは、有効なURLではありません。',
+ 'after' => ':attributeには、:dateより後の日付を指定してください。',
+ 'after_or_equal' => ':attributeには、:date以降の日付を指定してください。',
+ 'alpha' => ':attributeには、アルファベッドのみ使用できます。',
+ 'alpha_dash' => ":attributeには、英数字('A-Z','a-z','0-9')とハイフンと下線('-','_')が使用できます。",
+ 'alpha_num' => ":attributeには、英数字('A-Z','a-z','0-9')が使用できます。",
+ 'array' => ':attributeには、配列を指定してください。',
+ 'before' => ':attributeには、:dateより前の日付を指定してください。',
'before_or_equal' => ':attributeには、:date以前の日付を指定してください。',
- 'between' => [
+ 'between' => [
'numeric' => ':attributeには、:minから、:maxまでの数字を指定してください。',
- 'file' => ':attributeには、:min KBから:max KBまでのサイズのファイルを指定してください。',
- 'string' => ':attributeは、:min文字から:max文字にしてください。',
- 'array' => ':attributeの項目は、:min個から:max個にしてください。',
+ 'file' => ':attributeには、:min KBから:max KBまでのサイズのファイルを指定してください。',
+ 'string' => ':attributeは、:min文字から:max文字にしてください。',
+ 'array' => ':attributeの項目は、:min個から:max個にしてください。',
],
- 'boolean' => ":attributeには、'true'か'false'を指定してください。",
- 'confirmed' => ':attributeと:attribute確認が一致しません。',
- 'date' => ':attributeは、正しい日付ではありません。',
- 'date_equals' => ':attributeは:dateに等しい日付でなければなりません。',
- 'date_format' => ":attributeの形式は、':format'と合いません。",
- 'different' => ':attributeと:otherには、異なるものを指定してください。',
- 'digits' => ':attributeは、:digits桁にしてください。',
- 'digits_between' => ':attributeは、:min桁から:max桁にしてください。',
- 'dimensions' => ':attributeの画像サイズが無効です',
- 'distinct' => ':attributeの値が重複しています。',
- 'email' => ':attributeは、有効なメールアドレス形式で指定してください。',
- 'exists' => '選択された:attributeは、有効ではありません。',
- 'file' => ':attributeはファイルでなければいけません。',
- 'filled' => ':attributeは必須です。',
- 'gt' => [
+ 'boolean' => ":attributeには、'true'か'false'を指定してください。",
+ 'confirmed' => ':attributeと:attribute確認が一致しません。',
+ 'date' => ':attributeは、正しい日付ではありません。',
+ 'date_equals' => ':attributeは:dateに等しい日付でなければなりません。',
+ 'date_format' => ":attributeの形式は、':format'と合いません。",
+ 'different' => ':attributeと:otherには、異なるものを指定してください。',
+ 'digits' => ':attributeは、:digits桁にしてください。',
+ 'digits_between' => ':attributeは、:min桁から:max桁にしてください。',
+ 'dimensions' => ':attributeの画像サイズが無効です',
+ 'distinct' => ':attributeの値が重複しています。',
+ 'email' => ':attributeは、有効なメールアドレス形式で指定してください。',
+ 'exists' => '選択された:attributeは、有効ではありません。',
+ 'file' => ':attributeはファイルでなければいけません。',
+ 'filled' => ':attributeは必須です。',
+ 'gt' => [
'numeric' => ':attributeは、:valueより大きくなければなりません。',
- 'file' => ':attributeは、:value KBより大きくなければなりません。',
- 'string' => ':attributeは、:value文字より大きくなければなりません。',
- 'array' => ':attributeの項目数は、:value個より大きくなければなりません。',
+ 'file' => ':attributeは、:value KBより大きくなければなりません。',
+ 'string' => ':attributeは、:value文字より大きくなければなりません。',
+ 'array' => ':attributeの項目数は、:value個より大きくなければなりません。',
],
- 'gte' => [
+ 'gte' => [
'numeric' => ':attributeは、:value以上でなければなりません。',
- 'file' => ':attributeは、:value KB以上でなければなりません。',
- 'string' => ':attributeは、:value文字以上でなければなりません。',
- 'array' => ':attributeの項目数は、:value個以上でなければなりません。',
+ 'file' => ':attributeは、:value KB以上でなければなりません。',
+ 'string' => ':attributeは、:value文字以上でなければなりません。',
+ 'array' => ':attributeの項目数は、:value個以上でなければなりません。',
],
- 'image' => ':attributeには、画像を指定してください。',
- 'in' => '選択された:attributeは、有効ではありません。',
- 'in_array' => ':attributeが:otherに存在しません。',
- 'integer' => ':attributeには、整数を指定してください。',
- 'ip' => ':attributeには、有効なIPアドレスを指定してください。',
- 'ipv4' => ':attributeはIPv4アドレスを指定してください。',
- 'ipv6' => ':attributeはIPv6アドレスを指定してください。',
- 'json' => ':attributeには、有効なJSON文字列を指定してください。',
- 'lt' => [
+ 'image' => ':attributeには、画像を指定してください。',
+ 'in' => '選択された:attributeは、有効ではありません。',
+ 'in_array' => ':attributeが:otherに存在しません。',
+ 'integer' => ':attributeには、整数を指定してください。',
+ 'ip' => ':attributeには、有効なIPアドレスを指定してください。',
+ 'ipv4' => ':attributeはIPv4アドレスを指定してください。',
+ 'ipv6' => ':attributeはIPv6アドレスを指定してください。',
+ 'json' => ':attributeには、有効なJSON文字列を指定してください。',
+ 'lt' => [
'numeric' => ':attributeは、:valueより小さくなければなりません。',
- 'file' => ':attributeは、:value KBより小さくなければなりません。',
- 'string' => ':attributeは、:value文字より小さくなければなりません。',
- 'array' => ':attributeの項目数は、:value個より小さくなければなりません。',
+ 'file' => ':attributeは、:value KBより小さくなければなりません。',
+ 'string' => ':attributeは、:value文字より小さくなければなりません。',
+ 'array' => ':attributeの項目数は、:value個より小さくなければなりません。',
],
- 'lte' => [
+ 'lte' => [
'numeric' => ':attributeは、:value以下でなければなりません。',
- 'file' => ':attributeは、:value KB以下でなければなりません。',
- 'string' => ':attributeは、:value文字以下でなければなりません。',
- 'array' => ':attributeの項目数は、:value個以下でなければなりません。',
+ 'file' => ':attributeは、:value KB以下でなければなりません。',
+ 'string' => ':attributeは、:value文字以下でなければなりません。',
+ 'array' => ':attributeの項目数は、:value個以下でなければなりません。',
],
- 'max' => [
+ 'max' => [
'numeric' => ':attributeには、:max以下の数字を指定してください。',
- 'file' => ':attributeには、:max KB以下のファイルを指定してください。',
- 'string' => ':attributeは、:max文字以下にしてください。',
- 'array' => ':attributeの項目は、:max個以下にしてください。',
+ 'file' => ':attributeには、:max KB以下のファイルを指定してください。',
+ 'string' => ':attributeは、:max文字以下にしてください。',
+ 'array' => ':attributeの項目は、:max個以下にしてください。',
],
- 'mimes' => ':attributeには、:valuesタイプのファイルを指定してください。',
- 'mimetypes' => ':attributeには、:valuesタイプのファイルを指定してください。',
- 'min' => [
+ 'mimes' => ':attributeには、:valuesタイプのファイルを指定してください。',
+ 'mimetypes' => ':attributeには、:valuesタイプのファイルを指定してください。',
+ 'min' => [
'numeric' => ':attributeには、:min以上の数字を指定してください。',
- 'file' => ':attributeには、:min KB以上のファイルを指定してください。',
- 'string' => ':attributeは、:min文字以上にしてください。',
- 'array' => ':attributeの項目は、:min個以上にしてください。',
+ 'file' => ':attributeには、:min KB以上のファイルを指定してください。',
+ 'string' => ':attributeは、:min文字以上にしてください。',
+ 'array' => ':attributeの項目は、:min個以上にしてください。',
],
- 'not_in' => '選択された:attributeは、有効ではありません。',
- 'not_regex' => ':attributeの形式が無効です。',
- 'numeric' => ':attributeには、数字を指定してください。',
- 'present' => ':attributeが存在している必要があります。',
- 'regex' => ':attributeには、有効な正規表現を指定してください。',
- 'required' => ':attributeは、必ず指定してください。',
- 'required_if' => ':otherが:valueの場合、:attributeを指定してください。',
- 'required_unless' => ':otherが:values以外の場合、:attributeを指定してください。',
- 'required_with' => ':valuesが指定されている場合、:attributeも指定してください。',
- 'required_with_all' => ':valuesが全て指定されている場合、:attributeも指定してください。',
- 'required_without' => ':valuesが指定されていない場合、:attributeを指定してください。',
+ 'not_in' => '選択された:attributeは、有効ではありません。',
+ 'not_regex' => ':attributeの形式が無効です。',
+ 'numeric' => ':attributeには、数字を指定してください。',
+ 'present' => ':attributeが存在している必要があります。',
+ 'regex' => ':attributeには、有効な正規表現を指定してください。',
+ 'required' => ':attributeは、必ず指定してください。',
+ 'required_if' => ':otherが:valueの場合、:attributeを指定してください。',
+ 'required_unless' => ':otherが:values以外の場合、:attributeを指定してください。',
+ 'required_with' => ':valuesが指定されている場合、:attributeも指定してください。',
+ 'required_with_all' => ':valuesが全て指定されている場合、:attributeも指定してください。',
+ 'required_without' => ':valuesが指定されていない場合、:attributeを指定してください。',
'required_without_all' => ':valuesが全て指定されていない場合、:attributeを指定してください。',
- 'same' => ':attributeと:otherが一致しません。',
- 'size' => [
+ 'same' => ':attributeと:otherが一致しません。',
+ 'size' => [
'numeric' => ':attributeには、:sizeを指定してください。',
- 'file' => ':attributeには、:size KBのファイルを指定してください。',
- 'string' => ':attributeは、:size文字にしてください。',
- 'array' => ':attributeの項目は、:size個にしてください。',
+ 'file' => ':attributeには、:size KBのファイルを指定してください。',
+ 'string' => ':attributeは、:size文字にしてください。',
+ 'array' => ':attributeの項目は、:size個にしてください。',
],
- 'starts_with' => ':attributeは、次のいずれかで始まる必要があります。:values',
- 'string' => ':attributeには、文字を指定してください。',
- 'timezone' => ':attributeには、有効なタイムゾーンを指定してください。',
- 'unique' => '指定の:attributeは既に使用されています。',
- 'uploaded' => ':attributeのアップロードに失敗しました。',
- 'url' => ':attributeは、有効なURL形式で指定してください。',
- 'uuid' => ':attributeは、有効なUUIDでなければなりません。',
+ 'starts_with' => ':attributeは、次のいずれかで始まる必要があります。:values',
+ 'string' => ':attributeには、文字を指定してください。',
+ 'timezone' => ':attributeには、有効なタイムゾーンを指定してください。',
+ 'unique' => '指定の:attributeは既に使用されています。',
+ 'uploaded' => ':attributeのアップロードに失敗しました。',
+ 'url' => ':attributeは、有効なURL形式で指定してください。',
+ 'uuid' => ':attributeは、有効なUUIDでなければなりません。',
/*
|--------------------------------------------------------------------------
diff --git a/lang/ka/articles.php b/lang/ka/articles.php
index cdcaf0b74..62157f04c 100644
--- a/lang/ka/articles.php
+++ b/lang/ka/articles.php
@@ -12,8 +12,8 @@
*/
return [
- 'articles' => 'სტატიები',
+ 'articles' => 'სტატიები',
'meta-articles' => 'სტატიები და სიახლეები ტრეკერისა და საზოგადოების შესახებ',
- 'published-at' => 'გამოქვეყნებულია',
- 'read-more' => 'Წაიკითხე მეტი',
+ 'published-at' => 'გამოქვეყნებულია',
+ 'read-more' => 'Წაიკითხე მეტი',
];
diff --git a/lang/ka/auth.php b/lang/ka/auth.php
index 90b48eb4a..f5fe61436 100644
--- a/lang/ka/auth.php
+++ b/lang/ka/auth.php
@@ -23,6 +23,6 @@ return [
|
*/
- 'failed' => 'მომხმარებელი ამ მონაცემებით არ არსებობს.',
+ 'failed' => 'მომხმარებელი ამ მონაცემებით არ არსებობს.',
'throttle' => 'წარუმატებელი ავტორიზაცია. გთხოვთ, სცადოთ :seconds წამში.',
];
diff --git a/lang/ka/backup.php b/lang/ka/backup.php
index 11851a674..339d79e60 100644
--- a/lang/ka/backup.php
+++ b/lang/ka/backup.php
@@ -12,32 +12,32 @@
*/
return [
- 'actions' => 'მოქმედებები',
- 'backup' => 'სარეზერვო',
- 'backup_doesnt_exist' => 'სარეზერვო ფაილი არ არსებობს.',
- 'create_a_new_backup' => 'სრული სარეზერვო შექმნა',
- 'create_a_new_files_backup' => 'ფაილების შექმნა Backup',
- 'create_a_new_db_backup' => 'მონაცემთა ბაზა სარეზერვო შექმნა',
- 'create_confirmation_message' => 'გვერდის გადატვირთვა 3 წამში.',
- 'create_confirmation_title' => 'სარეზერვო დასრულდა',
- 'create_error_message' => 'სარეზერვო ფაილი ვერ შეიქმნა.',
- 'create_error_title' => 'სარეზერვო შეცდომა',
- 'create_warning_message' => 'თქვენი სარეზერვო შეიძლება არ შეიქმნას. გთხოვთ, შეამოწმოთ ჟურნალის ფაილების დეტალები.',
- 'create_warning_title' => 'Უცნობი შეცდომა',
- 'date' => 'თარიღი',
- 'delete' => 'წაშლა',
- 'delete_cancel_message' => 'სარეზერვო ფაილი არ არის წაშლილი.',
- 'delete_cancel_title' => 'Ყველაფერი კარგადაა',
- 'delete_confirm' => 'დარწმუნებული ხართ ამ სარეზერვო ფაილის წაშლა?',
- 'delete_confirmation_message' => 'სარეზერვო ფაილი წაიშალა.',
- 'delete_confirmation_title' => 'შესრულებულია',
- 'delete_error_message' => 'სარეზერვო ფაილი არ არის წაშლილი.',
- 'delete_error_title' => 'შეცდომა',
- 'download' => 'ჩამოტვირთვა',
- 'existing_backups' => 'არსებული სარეზერვო',
- 'file_size' => 'Ფაილის ზომა',
- 'location' => 'მდებარეობა',
- 'manager' => 'მენეჯერი',
- 'no_disks_configured' => 'არ არის სარეზერვო დისკის კონფიგურაცია config / backup.php',
+ 'actions' => 'მოქმედებები',
+ 'backup' => 'სარეზერვო',
+ 'backup_doesnt_exist' => 'სარეზერვო ფაილი არ არსებობს.',
+ 'create_a_new_backup' => 'სრული სარეზერვო შექმნა',
+ 'create_a_new_files_backup' => 'ფაილების შექმნა Backup',
+ 'create_a_new_db_backup' => 'მონაცემთა ბაზა სარეზერვო შექმნა',
+ 'create_confirmation_message' => 'გვერდის გადატვირთვა 3 წამში.',
+ 'create_confirmation_title' => 'სარეზერვო დასრულდა',
+ 'create_error_message' => 'სარეზერვო ფაილი ვერ შეიქმნა.',
+ 'create_error_title' => 'სარეზერვო შეცდომა',
+ 'create_warning_message' => 'თქვენი სარეზერვო შეიძლება არ შეიქმნას. გთხოვთ, შეამოწმოთ ჟურნალის ფაილების დეტალები.',
+ 'create_warning_title' => 'Უცნობი შეცდომა',
+ 'date' => 'თარიღი',
+ 'delete' => 'წაშლა',
+ 'delete_cancel_message' => 'სარეზერვო ფაილი არ არის წაშლილი.',
+ 'delete_cancel_title' => 'Ყველაფერი კარგადაა',
+ 'delete_confirm' => 'დარწმუნებული ხართ ამ სარეზერვო ფაილის წაშლა?',
+ 'delete_confirmation_message' => 'სარეზერვო ფაილი წაიშალა.',
+ 'delete_confirmation_title' => 'შესრულებულია',
+ 'delete_error_message' => 'სარეზერვო ფაილი არ არის წაშლილი.',
+ 'delete_error_title' => 'შეცდომა',
+ 'download' => 'ჩამოტვირთვა',
+ 'existing_backups' => 'არსებული სარეზერვო',
+ 'file_size' => 'Ფაილის ზომა',
+ 'location' => 'მდებარეობა',
+ 'manager' => 'მენეჯერი',
+ 'no_disks_configured' => 'არ არის სარეზერვო დისკის კონფიგურაცია config / backup.php',
'only_local_downloads_supported' => 'მხარდაჭერილია ლოკალური ფაილური სისტემისგან მხოლოდ ჩამოტვირთვები.',
];
diff --git a/lang/ka/blocks.php b/lang/ka/blocks.php
index 86f3f4ac0..303c49082 100644
--- a/lang/ka/blocks.php
+++ b/lang/ka/blocks.php
@@ -12,19 +12,19 @@
*/
return [
- 'chatbox' => 'ჩატი ყუთი',
- 'click' => 'დაწკაპეთ',
- 'to-enable-editor' => 'რედაქტორის ჩართვა',
- 'featured-by' => 'მიერ გამორჩეული',
- 'featured-torrents' => 'მთავარი ტორენტები',
+ 'chatbox' => 'ჩატი ყუთი',
+ 'click' => 'დაწკაპეთ',
+ 'to-enable-editor' => 'რედაქტორის ჩართვა',
+ 'featured-by' => 'მიერ გამორჩეული',
+ 'featured-torrents' => 'მთავარი ტორენტები',
'featured-torrents-intro' => 'მიიღეთ დრო, როცა შენ შეგიძლია!',
- 'featured-until' => 'ეს არის გამორჩეული ტორენტი სანამ',
- 'top-torrents' => 'ყველაზე ტორენტები',
- 'latest-posts' => 'უახლესი პოსტები',
- 'latest-topics' => 'უახლესი თემები',
- 'active-in-last' => 'აქტიური ბოლო',
- 'users-online' => 'მომხმარებელი ონლაინი',
- 'check-news' => 'სიახლეები (ყოველდღიურად შემოწმება)',
- 'new-news' => 'Ახალი ამბები',
- 'new-torrents' => 'ახალი ტორენტები',
+ 'featured-until' => 'ეს არის გამორჩეული ტორენტი სანამ',
+ 'top-torrents' => 'ყველაზე ტორენტები',
+ 'latest-posts' => 'უახლესი პოსტები',
+ 'latest-topics' => 'უახლესი თემები',
+ 'active-in-last' => 'აქტიური ბოლო',
+ 'users-online' => 'მომხმარებელი ონლაინი',
+ 'check-news' => 'სიახლეები (ყოველდღიურად შემოწმება)',
+ 'new-news' => 'Ახალი ამბები',
+ 'new-torrents' => 'ახალი ტორენტები',
];
diff --git a/lang/ka/bon.php b/lang/ka/bon.php
index b44426c61..df9579b03 100644
--- a/lang/ka/bon.php
+++ b/lang/ka/bon.php
@@ -12,44 +12,44 @@
*/
return [
- 'activated' => 'გააქტიურებულია',
- 'active' => 'ჩართულია!',
- 'amount' => 'თანხა',
- 'bon' => 'BON',
- 'bonus' => 'ბონუსი',
- 'date' => 'თარიღი',
- 'earning' => 'რამაც',
- 'earning-rate' => 'მოგების მიღების მომენტში თქვენ მიიღებთ შემდეგ ვადას.',
- 'earnings' => 'მოგება',
- 'exchange' => 'Გაცვლა',
- 'exchange-warning' => 'ბირჟები საბოლოოა, გთხოვთ გაორმაგოთ თქვენი არჩევანი გაცვლის დაწყებამდე.',
- 'extended-stats' => 'გაფართოებული სტატისტიკა',
- 'gift' => 'საჩუქარი',
- 'gift-bonus' => 'საჩუქარი ბონუს ქულები',
- 'gift-to' => 'საჩუქარი ბონუს ქულა',
- 'gifts' => 'საჩუქრები',
- 'item' => 'საქონელი',
- 'no-refund' => 'არ არის რეფლუნდები!',
- 'per-day' => 'ქულები ერთ დღეში',
- 'per-hour' => 'ქულები თითო საათი',
- 'per-minute' => 'პუნქტები წუთში',
- 'per-month' => 'ქულები თვეში',
- 'per-second' => 'პუნქტები წამში',
- 'per-week' => 'ქულები კვირაში',
- 'per-year' => 'ქულები წელიწადში',
- 'points' => 'ქულები',
- 'receiver' => 'მიმღები',
- 'review-seeds' => 'განიხილეთ ყველა სელექციური ტორენტი',
- 'send-gift' => 'Საჩუქრის გაგზავნა',
- 'sender' => 'გამგზავნი',
- 'store' => 'მაღაზია',
- 'tips' => 'Რჩევები',
- 'total' => 'სრული გამომუშავება',
- 'total-gifts' => 'სულ BON საჩუქრები',
- 'total-tips' => 'სულ BON რჩევები',
+ 'activated' => 'გააქტიურებულია',
+ 'active' => 'ჩართულია!',
+ 'amount' => 'თანხა',
+ 'bon' => 'BON',
+ 'bonus' => 'ბონუსი',
+ 'date' => 'თარიღი',
+ 'earning' => 'რამაც',
+ 'earning-rate' => 'მოგების მიღების მომენტში თქვენ მიიღებთ შემდეგ ვადას.',
+ 'earnings' => 'მოგება',
+ 'exchange' => 'Გაცვლა',
+ 'exchange-warning' => 'ბირჟები საბოლოოა, გთხოვთ გაორმაგოთ თქვენი არჩევანი გაცვლის დაწყებამდე.',
+ 'extended-stats' => 'გაფართოებული სტატისტიკა',
+ 'gift' => 'საჩუქარი',
+ 'gift-bonus' => 'საჩუქარი ბონუს ქულები',
+ 'gift-to' => 'საჩუქარი ბონუს ქულა',
+ 'gifts' => 'საჩუქრები',
+ 'item' => 'საქონელი',
+ 'no-refund' => 'არ არის რეფლუნდები!',
+ 'per-day' => 'ქულები ერთ დღეში',
+ 'per-hour' => 'ქულები თითო საათი',
+ 'per-minute' => 'პუნქტები წუთში',
+ 'per-month' => 'ქულები თვეში',
+ 'per-second' => 'პუნქტები წამში',
+ 'per-week' => 'ქულები კვირაში',
+ 'per-year' => 'ქულები წელიწადში',
+ 'points' => 'ქულები',
+ 'receiver' => 'მიმღები',
+ 'review-seeds' => 'განიხილეთ ყველა სელექციური ტორენტი',
+ 'send-gift' => 'Საჩუქრის გაგზავნა',
+ 'sender' => 'გამგზავნი',
+ 'store' => 'მაღაზია',
+ 'tips' => 'Რჩევები',
+ 'total' => 'სრული გამომუშავება',
+ 'total-gifts' => 'სულ BON საჩუქრები',
+ 'total-tips' => 'სულ BON რჩევები',
'you-have-received-gifts' => 'Თქვენ მიიღეთ',
- 'you-have-sent-gifts' => 'თქვენ გაიგზავნა',
- 'you-have-received-tips' => 'Თქვენ მიიღეთ',
- 'you-have-sent-tips' => 'თქვენ გაიგზავნა',
- 'your-points' => 'შენი ქულები',
+ 'you-have-sent-gifts' => 'თქვენ გაიგზავნა',
+ 'you-have-received-tips' => 'Თქვენ მიიღეთ',
+ 'you-have-sent-tips' => 'თქვენ გაიგზავნა',
+ 'your-points' => 'შენი ქულები',
];
diff --git a/lang/ka/bot.php b/lang/ka/bot.php
index 12c06c7d1..b8525d753 100644
--- a/lang/ka/bot.php
+++ b/lang/ka/bot.php
@@ -12,15 +12,15 @@
*/
return [
- 'about' => 'შესახებ',
- 'bot' => 'ბოტ',
- 'bots' => 'ბოტები',
- 'color' => 'ფერი',
- 'command' => 'ბრძანება',
- 'edit-bot' => 'რედაქტირება Bot',
+ 'about' => 'შესახებ',
+ 'bot' => 'ბოტ',
+ 'bots' => 'ბოტები',
+ 'color' => 'ფერი',
+ 'command' => 'ბრძანება',
+ 'edit-bot' => 'რედაქტირება Bot',
'emoji-code' => 'ემოის კოდექსი',
- 'help' => 'დახმარება',
- 'icon' => 'Ხატი',
- 'info' => 'ინფორმაცია',
- 'name' => 'სახელი',
+ 'help' => 'დახმარება',
+ 'icon' => 'Ხატი',
+ 'info' => 'ინფორმაცია',
+ 'name' => 'სახელი',
];
diff --git a/lang/ka/bug.php b/lang/ka/bug.php
index 5ddf0ce76..00134edde 100644
--- a/lang/ka/bug.php
+++ b/lang/ka/bug.php
@@ -12,15 +12,15 @@
*/
return [
- 'bug-report' => 'Bug ანგარიში',
+ 'bug-report' => 'Bug ანგარიში',
'bug-report-description' => 'საიტის შეცდომის შესახებ ანგარიში',
- 'enter-description' => 'აღწერეთ პრობლემა მაქსიმალურად მაქსიმალურად',
- 'enter-email' => 'გთხოვთ, შეიყვანოთ თქვენი ელ. ფოსტა',
- 'enter-title' => 'გთხოვთ, აირჩიოთ შესაბამისი სათაური',
- 'enter-username' => 'გთხოვთ შეიყვანოთ თქვენი სახელი',
- 'high' => 'მაღალი',
- 'low' => 'დაბალი',
- 'priority' => 'პრიორიტეტი',
- 'priority-description' => 'არჩევა მხოლოდ ძალიან მაღალია, თუ bug მართლაც პრობლემაა საიტის გამოყენებისათვის.',
- 'very-high' => 'Ძალიან მაღალი',
+ 'enter-description' => 'აღწერეთ პრობლემა მაქსიმალურად მაქსიმალურად',
+ 'enter-email' => 'გთხოვთ, შეიყვანოთ თქვენი ელ. ფოსტა',
+ 'enter-title' => 'გთხოვთ, აირჩიოთ შესაბამისი სათაური',
+ 'enter-username' => 'გთხოვთ შეიყვანოთ თქვენი სახელი',
+ 'high' => 'მაღალი',
+ 'low' => 'დაბალი',
+ 'priority' => 'პრიორიტეტი',
+ 'priority-description' => 'არჩევა მხოლოდ ძალიან მაღალია, თუ bug მართლაც პრობლემაა საიტის გამოყენებისათვის.',
+ 'very-high' => 'Ძალიან მაღალი',
];
diff --git a/lang/ka/common.php b/lang/ka/common.php
index 24a32a2d3..8b8787d02 100644
--- a/lang/ka/common.php
+++ b/lang/ka/common.php
@@ -12,179 +12,179 @@
*/
return [
- 'a-an-art' => '',
- 'about' => 'Ჩვენს შესახებ',
- 'account' => 'ანგარიში',
- 'achievement-title' => 'გასაოცარია',
+ 'a-an-art' => '',
+ 'about' => 'Ჩვენს შესახებ',
+ 'account' => 'ანგარიში',
+ 'achievement-title' => 'გასაოცარია',
'achievement-unlocked' => 'თქვენ გახსნილია: "სახელი" მიღწევა',
- 'active' => 'აქტიური',
- 'active-warning' => 'აქტიური გაფრთხილება',
- 'add' => 'დამატება',
- 'added' => 'დამატებულია',
- 'amount' => 'თანხა',
- 'anonymous' => 'ანონიმური',
- 'author' => 'ავტორი',
- 'balance' => 'Ბალანსი',
- 'blacklist' => 'კლიენტის Blacklist',
- 'buffer' => 'ბუფერი',
- 'bug' => 'Შეატყობინე შეცდომა',
- 'but' => 'მაგრამ',
- 'cancel' => 'გაუქმება',
- 'category' => 'კატეგორია',
- 'categories' => 'კატეგორიები',
- 'close' => 'დახურვა',
- 'comment' => 'კომენტარი',
- 'comments' => 'კომენტარები',
- 'community' => 'თანამეგობრობა',
- 'contact' => 'კონტაქტი',
- 'contact-desc' => 'ეს კონტაქტის მოთხოვნა გადაეგზავნება მფლობელს და დაგიბრუნდებათ რაც შეიძლება მალე',
- 'contact-header' => 'გამარჯობა',
- 'create' => 'Შექმნა',
- 'created_at' => 'შექმნილია',
- 'day' => 'Დღის',
- 'delete' => 'წაშლა',
- 'delete-your-comment' => 'თქვენი კომენტარის წაშლა',
- 'description' => 'აღწერა',
- 'direction' => 'მიმართულება',
- 'disable' => 'გამორთვა',
- 'doubleup_activated' => 'გლობალური ორმაგი ატვირთვა რეჟიმი გააქტიურდა',
- 'download' => 'ჩამოტვირთვა',
- 'edit' => 'რედაქტირება',
- 'edit-your-comment' => 'თქვენი კომენტარის რედაქტირება',
- 'email' => 'ელ.ფოსტა',
- 'email-blacklist' => 'Email Blacklist',
- 'email-whitelist' => 'ელ-ფოსტის გაგზავნა',
+ 'active' => 'აქტიური',
+ 'active-warning' => 'აქტიური გაფრთხილება',
+ 'add' => 'დამატება',
+ 'added' => 'დამატებულია',
+ 'amount' => 'თანხა',
+ 'anonymous' => 'ანონიმური',
+ 'author' => 'ავტორი',
+ 'balance' => 'Ბალანსი',
+ 'blacklist' => 'კლიენტის Blacklist',
+ 'buffer' => 'ბუფერი',
+ 'bug' => 'Შეატყობინე შეცდომა',
+ 'but' => 'მაგრამ',
+ 'cancel' => 'გაუქმება',
+ 'category' => 'კატეგორია',
+ 'categories' => 'კატეგორიები',
+ 'close' => 'დახურვა',
+ 'comment' => 'კომენტარი',
+ 'comments' => 'კომენტარები',
+ 'community' => 'თანამეგობრობა',
+ 'contact' => 'კონტაქტი',
+ 'contact-desc' => 'ეს კონტაქტის მოთხოვნა გადაეგზავნება მფლობელს და დაგიბრუნდებათ რაც შეიძლება მალე',
+ 'contact-header' => 'გამარჯობა',
+ 'create' => 'Შექმნა',
+ 'created_at' => 'შექმნილია',
+ 'day' => 'Დღის',
+ 'delete' => 'წაშლა',
+ 'delete-your-comment' => 'თქვენი კომენტარის წაშლა',
+ 'description' => 'აღწერა',
+ 'direction' => 'მიმართულება',
+ 'disable' => 'გამორთვა',
+ 'doubleup_activated' => 'გლობალური ორმაგი ატვირთვა რეჟიმი გააქტიურდა',
+ 'download' => 'ჩამოტვირთვა',
+ 'edit' => 'რედაქტირება',
+ 'edit-your-comment' => 'თქვენი კომენტარის რედაქტირება',
+ 'email' => 'ელ.ფოსტა',
+ 'email-blacklist' => 'Email Blacklist',
+ 'email-whitelist' => 'ელ-ფოსტის გაგზავნა',
'email-list-notactive' => 'Email Whitelist / Blacklist სისტემა არ არის გააქტიურებული',
- 'enable' => 'ჩართვა',
- 'enter' => 'შეიყვანეთ',
- 'error' => 'შეცდომა',
- 'everyday' => 'Ყოველ დღე',
- 'expired' => 'ვადაგასულია',
- 'extra' => 'დამატებითი',
- 'extra-stats' => 'დამატებითი-სტატისტიკა',
- 'faq' => 'კითხვა',
- 'files' => 'ფაილები',
- 'fl_token' => 'Freeleech Token',
- 'fl_tokens' => 'Freeleech ჟეტონები',
- 'for' => 'ამისთვის',
- 'forum' => 'ფორუმი',
- 'free' => 'უფასო',
- 'freeleech_activated' => 'გლობალური Freeleech რეჟიმი გააქტიურდა',
- 'global' => 'გლობალური',
- 'group' => 'ჯგუფი',
- 'groups' => 'ჯგუფები',
- 'hidden' => 'დამალული',
- 'high-speeds' => 'მაღალი სიჩქარეები',
- 'home' => 'მთავარი',
- 'hot' => 'Ცხელი!',
- 'hour' => 'საათი',
- 'huge' => 'უზარმაზარი',
- 'info' => 'ინფორმაცია',
- 'internal' => 'შიდა',
- 'ip' => 'IP',
- 'is-allowed' => 'ნებადართულია',
- 'large' => 'დიდი',
- 'latest' => 'უახლესი',
- 'latest-posts' => 'უახლესი პოსტები',
- 'latest-topics' => 'უახლესი თემები',
- 'legal' => 'იურიდიული',
- 'legend' => 'ლეგენდა',
- 'lists' => 'სიები',
- 'lock-account' => 'ანგარიშის ჩაკეტვა',
- 'logout' => 'გამოსვლა',
- 'members' => 'წევრები',
- 'message' => 'შეტყობინება',
- 'minute' => 'წუთი',
- 'moderated-by' => 'მოდერატორი',
- 'moderation' => 'მოდერაცია',
- 'moderation-approve' => 'დამტკიცება',
- 'moderation-postpone' => 'გადადგილება',
- 'moderation-reject' => 'Უარყოს',
- 'month' => 'თვე',
- 'months' => 'თვეები',
- 'my' => 'Ჩემი',
- 'name' => 'სახელი',
- 'navigation' => 'ნავიგაცია',
- 'new' => 'ახალი!',
- 'new-adj' => 'ახალი',
- 'news' => 'ახალი ამბები',
- 'next' => 'შემდეგი',
- 'no' => 'არა',
- 'no-comments' => 'ჯერ არ არის კომენტარები',
- 'no-result' => 'არ არსებობს მონაცემთა ბაზაში შეკითხვის შედეგი',
- 'notifications' => 'შეტყობინებები',
- 'older-than' => 'Უფრო ძველი ვიდრე',
- 'oldest' => 'Უძველესი',
- 'openreg_activated' => 'ღია რეგისტრაციის გააქტიურება',
- 'order-by' => 'დაალაგე',
- 'other' => 'სხვა',
- 'pages' => 'გვერდები',
- 'password' => 'პაროლი',
- 'patron' => 'გახდე მფარველი',
- 'pending-torrents' => 'მიმდინარე ტორენტით',
- 'personal' => 'პირადი',
- 'plural-suffix' => 's',
- 'port' => 'პორტი',
- 'position' => 'პოზიცია',
- 'posts' => 'პოსტები',
- 'powered-by' => 'Powered by UNIT3D',
- 'preview' => 'Preview',
- 'previous' => 'წინა',
- 'progress' => 'პროგრესი',
- 'publish' => 'გამოაქვეყნეთ',
- 'quantity' => 'რაოდენობა',
- 'quick-search' => 'Სწრაფი ძებნა',
- 'ratio' => 'თანაფარდობა',
- 'reason' => 'მიზეზი',
- 'remove' => 'წაშლა',
- 'report' => 'ანგარიში',
- 'resend' => 'Ხელახლა გაგზავნა',
- 'reporter' => 'რეპორტიორი',
- 'required' => 'საჭიროა',
- 'results' => 'შედეგები',
- 'rss-system' => 'RSS სისტემა',
- 'rules' => 'წესები',
- 'save' => 'Შენახვა',
- 'search' => 'ძიება',
- 'search-results' => 'Ძიების შედეგები',
- 'search-results-desc' => 'იხილეთ თქვენი შედეგები ქვემოთ',
- 'second' => 'მეორე',
- 'select' => 'აირჩიეთ',
- 'sort' => 'სორტირება',
- 'special' => 'სპეციალური',
- 'staff' => 'თანამშრომლები',
- 'staff-tools' => 'პერსონალის ინსტრუმენტები',
- 'stats' => 'სტატისტიკა',
- 'status' => 'სტატუსი',
- 'sticked' => 'გაჩერდა',
- 'submit' => 'წარმოადგინეთ',
- 'subscriptions' => 'გამოწერები',
- 'teams' => 'გუნდები',
- 'terms' => 'Მოხმარების პირობები',
- 'times' => 'Times',
- 'title' => 'სათაური',
- 'top-bountied' => 'ყველაზე დაბრკოლება',
- 'topics' => 'თემები',
- 'tracker-codes' => 'ტრეკერის კოდები',
- 'type' => 'ტიპი',
- 'type-verb' => 'ტიპი',
- 'types' => 'სახეები',
- 'genre' => 'ჟანრი',
- 'genres' => 'ჟანრები',
- 'action' => 'აქცია',
- 'actions' => 'მოქმედებები',
- 'unknown' => 'უცნობი',
+ 'enable' => 'ჩართვა',
+ 'enter' => 'შეიყვანეთ',
+ 'error' => 'შეცდომა',
+ 'everyday' => 'Ყოველ დღე',
+ 'expired' => 'ვადაგასულია',
+ 'extra' => 'დამატებითი',
+ 'extra-stats' => 'დამატებითი-სტატისტიკა',
+ 'faq' => 'კითხვა',
+ 'files' => 'ფაილები',
+ 'fl_token' => 'Freeleech Token',
+ 'fl_tokens' => 'Freeleech ჟეტონები',
+ 'for' => 'ამისთვის',
+ 'forum' => 'ფორუმი',
+ 'free' => 'უფასო',
+ 'freeleech_activated' => 'გლობალური Freeleech რეჟიმი გააქტიურდა',
+ 'global' => 'გლობალური',
+ 'group' => 'ჯგუფი',
+ 'groups' => 'ჯგუფები',
+ 'hidden' => 'დამალული',
+ 'high-speeds' => 'მაღალი სიჩქარეები',
+ 'home' => 'მთავარი',
+ 'hot' => 'Ცხელი!',
+ 'hour' => 'საათი',
+ 'huge' => 'უზარმაზარი',
+ 'info' => 'ინფორმაცია',
+ 'internal' => 'შიდა',
+ 'ip' => 'IP',
+ 'is-allowed' => 'ნებადართულია',
+ 'large' => 'დიდი',
+ 'latest' => 'უახლესი',
+ 'latest-posts' => 'უახლესი პოსტები',
+ 'latest-topics' => 'უახლესი თემები',
+ 'legal' => 'იურიდიული',
+ 'legend' => 'ლეგენდა',
+ 'lists' => 'სიები',
+ 'lock-account' => 'ანგარიშის ჩაკეტვა',
+ 'logout' => 'გამოსვლა',
+ 'members' => 'წევრები',
+ 'message' => 'შეტყობინება',
+ 'minute' => 'წუთი',
+ 'moderated-by' => 'მოდერატორი',
+ 'moderation' => 'მოდერაცია',
+ 'moderation-approve' => 'დამტკიცება',
+ 'moderation-postpone' => 'გადადგილება',
+ 'moderation-reject' => 'Უარყოს',
+ 'month' => 'თვე',
+ 'months' => 'თვეები',
+ 'my' => 'Ჩემი',
+ 'name' => 'სახელი',
+ 'navigation' => 'ნავიგაცია',
+ 'new' => 'ახალი!',
+ 'new-adj' => 'ახალი',
+ 'news' => 'ახალი ამბები',
+ 'next' => 'შემდეგი',
+ 'no' => 'არა',
+ 'no-comments' => 'ჯერ არ არის კომენტარები',
+ 'no-result' => 'არ არსებობს მონაცემთა ბაზაში შეკითხვის შედეგი',
+ 'notifications' => 'შეტყობინებები',
+ 'older-than' => 'Უფრო ძველი ვიდრე',
+ 'oldest' => 'Უძველესი',
+ 'openreg_activated' => 'ღია რეგისტრაციის გააქტიურება',
+ 'order-by' => 'დაალაგე',
+ 'other' => 'სხვა',
+ 'pages' => 'გვერდები',
+ 'password' => 'პაროლი',
+ 'patron' => 'გახდე მფარველი',
+ 'pending-torrents' => 'მიმდინარე ტორენტით',
+ 'personal' => 'პირადი',
+ 'plural-suffix' => 's',
+ 'port' => 'პორტი',
+ 'position' => 'პოზიცია',
+ 'posts' => 'პოსტები',
+ 'powered-by' => 'Powered by UNIT3D',
+ 'preview' => 'Preview',
+ 'previous' => 'წინა',
+ 'progress' => 'პროგრესი',
+ 'publish' => 'გამოაქვეყნეთ',
+ 'quantity' => 'რაოდენობა',
+ 'quick-search' => 'Სწრაფი ძებნა',
+ 'ratio' => 'თანაფარდობა',
+ 'reason' => 'მიზეზი',
+ 'remove' => 'წაშლა',
+ 'report' => 'ანგარიში',
+ 'resend' => 'Ხელახლა გაგზავნა',
+ 'reporter' => 'რეპორტიორი',
+ 'required' => 'საჭიროა',
+ 'results' => 'შედეგები',
+ 'rss-system' => 'RSS სისტემა',
+ 'rules' => 'წესები',
+ 'save' => 'Შენახვა',
+ 'search' => 'ძიება',
+ 'search-results' => 'Ძიების შედეგები',
+ 'search-results-desc' => 'იხილეთ თქვენი შედეგები ქვემოთ',
+ 'second' => 'მეორე',
+ 'select' => 'აირჩიეთ',
+ 'sort' => 'სორტირება',
+ 'special' => 'სპეციალური',
+ 'staff' => 'თანამშრომლები',
+ 'staff-tools' => 'პერსონალის ინსტრუმენტები',
+ 'stats' => 'სტატისტიკა',
+ 'status' => 'სტატუსი',
+ 'sticked' => 'გაჩერდა',
+ 'submit' => 'წარმოადგინეთ',
+ 'subscriptions' => 'გამოწერები',
+ 'teams' => 'გუნდები',
+ 'terms' => 'Მოხმარების პირობები',
+ 'times' => 'Times',
+ 'title' => 'სათაური',
+ 'top-bountied' => 'ყველაზე დაბრკოლება',
+ 'topics' => 'თემები',
+ 'tracker-codes' => 'ტრეკერის კოდები',
+ 'type' => 'ტიპი',
+ 'type-verb' => 'ტიპი',
+ 'types' => 'სახეები',
+ 'genre' => 'ჟანრი',
+ 'genres' => 'ჟანრები',
+ 'action' => 'აქცია',
+ 'actions' => 'მოქმედებები',
+ 'unknown' => 'უცნობი',
'unlocked-achievement' => 'თქვენ გახსნა: მიღწევის მიღწევა',
- 'upload' => 'ატვირთვა',
- 'upload-guide' => 'ატვირთვის სახელმძღვანელო',
- 'user' => 'მომხმარებელი',
- 'username' => 'სახელი',
- 'users' => 'მომხმარებელი',
- 'view' => 'ნახვა',
- 'view-all' => 'Ყველას ნახვა',
- 'warnings' => 'გაფრთხილებები',
- 'year' => 'წელი',
- 'yes' => 'დიახ',
- 'your' => 'შენი',
- 'your-comment' => 'Შენი კომენტარი',
+ 'upload' => 'ატვირთვა',
+ 'upload-guide' => 'ატვირთვის სახელმძღვანელო',
+ 'user' => 'მომხმარებელი',
+ 'username' => 'სახელი',
+ 'users' => 'მომხმარებელი',
+ 'view' => 'ნახვა',
+ 'view-all' => 'Ყველას ნახვა',
+ 'warnings' => 'გაფრთხილებები',
+ 'year' => 'წელი',
+ 'yes' => 'დიახ',
+ 'your' => 'შენი',
+ 'your-comment' => 'Შენი კომენტარი',
];
diff --git a/lang/ka/email.php b/lang/ka/email.php
index 3b32e5026..0fc8be42a 100644
--- a/lang/ka/email.php
+++ b/lang/ka/email.php
@@ -12,46 +12,46 @@
*/
return [
- 'activate-account' => 'ანგარიშის გააქტიურება',
- 'ban-reason' => 'მიზეზი',
- 'banned-footer' => 'რაც თქვენ მიიღებთ წესების არარსებობას',
- 'banned-header' => 'შენ უკვე აიკრძალა',
- 'bug-description' => 'პრობლემა',
- 'bug-footer' => 'ფიქსის ეს Shit',
- 'bug-header' => 'ახალი შეცდომის ანგარიში',
- 'bug-priority' => 'პრიორიტეტი',
- 'bug-title' => 'შეცდომის სათაური',
- 'contact-header' => 'ახალი საკონტაქტო ფოსტა',
- 'contact-message' => 'შეტყობინება',
- 'contact-name' => 'სახელი',
+ 'activate-account' => 'ანგარიშის გააქტიურება',
+ 'ban-reason' => 'მიზეზი',
+ 'banned-footer' => 'რაც თქვენ მიიღებთ წესების არარსებობას',
+ 'banned-header' => 'შენ უკვე აიკრძალა',
+ 'bug-description' => 'პრობლემა',
+ 'bug-footer' => 'ფიქსის ეს Shit',
+ 'bug-header' => 'ახალი შეცდომის ანგარიში',
+ 'bug-priority' => 'პრიორიტეტი',
+ 'bug-title' => 'შეცდომის სათაური',
+ 'contact-header' => 'ახალი საკონტაქტო ფოსტა',
+ 'contact-message' => 'შეტყობინება',
+ 'contact-name' => 'სახელი',
'fail-login-greeting' => 'ანგარიშის შესვლა ვერ მოხერხდა!',
- 'fail-login-line1' => 'თქვენი ანგარიშის გამოვლენა ვერ მოხერხდა.',
- 'fail-login-line2' => 'ეს მოთხოვნა წარმოიშვა: IP (: host) დროს: დრო',
- 'fail-login-subject' => 'ჩაიშალა შესვლა შეტყობინება',
- 'footer-link' => 'თუ თქვენ გაქვთ პრობლემები დაჭერით: actionText ღილაკი, დააკოპირეთ URL- ის ქვემოთ მოყვანილი ვებ-ბრაუზერი:',
- 'invite-header' => 'მოწვევა',
- 'invite-invited' => 'თქვენ მიწვეული ხართ',
- 'invite-message' => 'შეტყობინება',
- 'invite-signup' => 'Დარეგისტრირდით ახლავე',
- 'newreply-header' => 'თქვენს თემში ახალი პასუხია',
- 'newreply-message' => 'შეტყობინება',
- 'newreply-replied' => 'უპასუხა თქვენს თემას',
- 'newreply-view' => 'ნახვა ახლა',
- 'no-email-found' => 'ამ ელფოსტა ვერ იპოვა ჩვენი სისტემაში!',
- 'register-code' => 'შეავსოთ თქვენი ანგარიშის აქტივაცია დააწკაპუნეთ ღილაკს ქვემოთ',
- 'register-footer' => 'თუ ღილაკს ზემოთ არ მუშაობს, დააკოპირეთ URL თქვენს ბრაუზერებში მისამართების ზოლში',
- 'register-header' => 'გამარჯობა! გმადლობთ ხელმოწერისთვის',
- 'report-comment' => 'კომენტარი',
- 'report-email' => 'ელ.ფოსტა',
- 'report-header' => 'Hi Admin, ლინკი უკვე ცნობილია',
- 'report-link' => 'Ბმული',
- 'report-link-hash' => 'ფაქტობრივი ბმული',
- 'thanks' => 'გმადლობთ გამოყენებისათვის',
- 'unban-footer' => 'Კეთილი იყოს თქვენი დაბრუნება!',
- 'unban-header' => 'თქვენ დაუცველი ხართ',
- 'unban-reason' => 'მიზეზი',
- 'username-reminder' => 'თქვენ ცოტა ხნის წინ გამოგვიგზავნეთ თქვენი აპლიკაციის შესახებ თქვენი მომხმარებლის სახელი. თქვენი სახელია',
- 'username-sent' => 'თქვენი მომხმარებლის სახელი გაიგზავნა თქვენს ელ.',
- 'disabled-header' => 'თქვენი ანგარიში გამორთულია',
- 'pruned-header' => 'თქვენი ანგარიში გაწყდა',
+ 'fail-login-line1' => 'თქვენი ანგარიშის გამოვლენა ვერ მოხერხდა.',
+ 'fail-login-line2' => 'ეს მოთხოვნა წარმოიშვა: IP (: host) დროს: დრო',
+ 'fail-login-subject' => 'ჩაიშალა შესვლა შეტყობინება',
+ 'footer-link' => 'თუ თქვენ გაქვთ პრობლემები დაჭერით: actionText ღილაკი, დააკოპირეთ URL- ის ქვემოთ მოყვანილი ვებ-ბრაუზერი:',
+ 'invite-header' => 'მოწვევა',
+ 'invite-invited' => 'თქვენ მიწვეული ხართ',
+ 'invite-message' => 'შეტყობინება',
+ 'invite-signup' => 'Დარეგისტრირდით ახლავე',
+ 'newreply-header' => 'თქვენს თემში ახალი პასუხია',
+ 'newreply-message' => 'შეტყობინება',
+ 'newreply-replied' => 'უპასუხა თქვენს თემას',
+ 'newreply-view' => 'ნახვა ახლა',
+ 'no-email-found' => 'ამ ელფოსტა ვერ იპოვა ჩვენი სისტემაში!',
+ 'register-code' => 'შეავსოთ თქვენი ანგარიშის აქტივაცია დააწკაპუნეთ ღილაკს ქვემოთ',
+ 'register-footer' => 'თუ ღილაკს ზემოთ არ მუშაობს, დააკოპირეთ URL თქვენს ბრაუზერებში მისამართების ზოლში',
+ 'register-header' => 'გამარჯობა! გმადლობთ ხელმოწერისთვის',
+ 'report-comment' => 'კომენტარი',
+ 'report-email' => 'ელ.ფოსტა',
+ 'report-header' => 'Hi Admin, ლინკი უკვე ცნობილია',
+ 'report-link' => 'Ბმული',
+ 'report-link-hash' => 'ფაქტობრივი ბმული',
+ 'thanks' => 'გმადლობთ გამოყენებისათვის',
+ 'unban-footer' => 'Კეთილი იყოს თქვენი დაბრუნება!',
+ 'unban-header' => 'თქვენ დაუცველი ხართ',
+ 'unban-reason' => 'მიზეზი',
+ 'username-reminder' => 'თქვენ ცოტა ხნის წინ გამოგვიგზავნეთ თქვენი აპლიკაციის შესახებ თქვენი მომხმარებლის სახელი. თქვენი სახელია',
+ 'username-sent' => 'თქვენი მომხმარებლის სახელი გაიგზავნა თქვენს ელ.',
+ 'disabled-header' => 'თქვენი ანგარიში გამორთულია',
+ 'pruned-header' => 'თქვენი ანგარიში გაწყდა',
];
diff --git a/lang/ka/forum.php b/lang/ka/forum.php
index f20bd9176..bc3863bd0 100644
--- a/lang/ka/forum.php
+++ b/lang/ka/forum.php
@@ -12,63 +12,63 @@
*/
return [
- 'action' => 'აქცია',
- 'activity' => 'აქტიურობა',
- 'approved' => 'დამტკიცებულია',
- 'author' => 'ავტორი',
- 'bug' => 'Bug',
- 'category-quick-search' => 'თემის სწრაფი ძიება (კატეგორიაში)',
- 'close-topic' => 'დაბლოკვის თემა',
- 'closed' => 'დახურულია',
- 'create-new-topic' => 'ახალი თემის შექმნა',
- 'created' => 'შექმნილია',
- 'current' => 'მიმდინარე',
- 'delete-topic' => 'წაშალე ეს თემა',
- 'denied' => 'Უარყოფილი',
- 'dislike-post' => 'ამ პოსტისგან განსხვავებით',
- 'display-forum' => 'თემების ჩვენება',
- 'edit-post' => 'პოსტის რედაქტირება',
- 'edit-topic' => 'თემის რედაქტირება',
- 'forum' => 'ფორუმი',
- 'forums' => 'ფორუმები',
- 'implemented' => 'განხორციელებული',
- 'in' => 'შემოსული',
- 'invalid' => 'არასწორია',
- 'label' => 'ლეიბლი',
- 'label-system' => 'ლეიბლი სისტემა',
- 'last-message' => 'ბოლო შეტყობინება',
- 'last-post-info' => 'ბოლო პოსტის ინფორმაცია',
- 'latest' => 'უახლესი',
- 'like-post' => 'ამ პოსტის მსგავსად',
- 'meta-category' => 'ფორუმების სია კატეგორიაში',
- 'moderation' => 'მოდერაცია',
- 'name' => 'სახელი',
- 'not-connected' => 'თქვენ უნდა უკავშირდებოდეს',
- 'not-subscribed' => 'არ არის გამოწერილი',
- 'open' => 'გახსნა',
- 'open-topic' => 'გახსენით ეს თემა',
- 'permalink' => 'პერმაბმული',
- 'pin' => 'Pin',
- 'post' => 'პოსტი',
- 'post-quick-search' => 'ფოსტის სწრაფი ძიება',
- 'posts' => 'პოსტები',
- 'quote' => 'ციტატა',
- 'read-topic' => 'წაიკითხეთ თემა',
- 'replies' => 'პასუხები',
- 'send-new-topic' => 'შეინახეთ ეს თემა',
- 'solved' => 'გადაწყდა',
- 'state' => 'სახელმწიფო',
- 'stats' => 'სტატისტიკა',
- 'subscribed' => 'გამოწერილია',
+ 'action' => 'აქცია',
+ 'activity' => 'აქტიურობა',
+ 'approved' => 'დამტკიცებულია',
+ 'author' => 'ავტორი',
+ 'bug' => 'Bug',
+ 'category-quick-search' => 'თემის სწრაფი ძიება (კატეგორიაში)',
+ 'close-topic' => 'დაბლოკვის თემა',
+ 'closed' => 'დახურულია',
+ 'create-new-topic' => 'ახალი თემის შექმნა',
+ 'created' => 'შექმნილია',
+ 'current' => 'მიმდინარე',
+ 'delete-topic' => 'წაშალე ეს თემა',
+ 'denied' => 'Უარყოფილი',
+ 'dislike-post' => 'ამ პოსტისგან განსხვავებით',
+ 'display-forum' => 'თემების ჩვენება',
+ 'edit-post' => 'პოსტის რედაქტირება',
+ 'edit-topic' => 'თემის რედაქტირება',
+ 'forum' => 'ფორუმი',
+ 'forums' => 'ფორუმები',
+ 'implemented' => 'განხორციელებული',
+ 'in' => 'შემოსული',
+ 'invalid' => 'არასწორია',
+ 'label' => 'ლეიბლი',
+ 'label-system' => 'ლეიბლი სისტემა',
+ 'last-message' => 'ბოლო შეტყობინება',
+ 'last-post-info' => 'ბოლო პოსტის ინფორმაცია',
+ 'latest' => 'უახლესი',
+ 'like-post' => 'ამ პოსტის მსგავსად',
+ 'meta-category' => 'ფორუმების სია კატეგორიაში',
+ 'moderation' => 'მოდერაცია',
+ 'name' => 'სახელი',
+ 'not-connected' => 'თქვენ უნდა უკავშირდებოდეს',
+ 'not-subscribed' => 'არ არის გამოწერილი',
+ 'open' => 'გახსნა',
+ 'open-topic' => 'გახსენით ეს თემა',
+ 'permalink' => 'პერმაბმული',
+ 'pin' => 'Pin',
+ 'post' => 'პოსტი',
+ 'post-quick-search' => 'ფოსტის სწრაფი ძიება',
+ 'posts' => 'პოსტები',
+ 'quote' => 'ციტატა',
+ 'read-topic' => 'წაიკითხეთ თემა',
+ 'replies' => 'პასუხები',
+ 'send-new-topic' => 'შეინახეთ ეს თემა',
+ 'solved' => 'გადაწყდა',
+ 'state' => 'სახელმწიფო',
+ 'stats' => 'სტატისტიკა',
+ 'subscribed' => 'გამოწერილია',
'subscription-quick-search' => 'თემის სწრაფი ძიება (გამოწერების ფარგლებში)',
- 'suggestion' => 'შემოთავაზება',
- 'topic' => 'Თემა',
- 'topic-closed' => 'ეს თემა დახურულია',
- 'topic-name' => 'თემის სახელი',
- 'topic-quick-search' => 'თემის სწრაფი ძიება',
- 'topic-title' => 'ამ თემის სათაური',
- 'topics' => 'თემები',
- 'unpin' => 'გაუქმება',
- 'view-all' => 'ყველა თემის ნახვა',
- 'views' => 'Დათვალიერება',
+ 'suggestion' => 'შემოთავაზება',
+ 'topic' => 'Თემა',
+ 'topic-closed' => 'ეს თემა დახურულია',
+ 'topic-name' => 'თემის სახელი',
+ 'topic-quick-search' => 'თემის სწრაფი ძიება',
+ 'topic-title' => 'ამ თემის სათაური',
+ 'topics' => 'თემები',
+ 'unpin' => 'გაუქმება',
+ 'view-all' => 'ყველა თემის ნახვა',
+ 'views' => 'Დათვალიერება',
];
diff --git a/lang/ka/graveyard.php b/lang/ka/graveyard.php
index a963de97b..7ff38950f 100644
--- a/lang/ka/graveyard.php
+++ b/lang/ka/graveyard.php
@@ -12,15 +12,15 @@
*/
return [
- 'dead' => 'მკვდარი',
- 'graveyard' => 'სასაფლაო',
- 'guidelines' => 'სახელმძღვანელოები',
+ 'dead' => 'მკვდარი',
+ 'graveyard' => 'სასაფლაო',
+ 'guidelines' => 'სახელმძღვანელოები',
'guidelines-content' => '1) თქვენ არ შეგიძლიათ აღადგინოთ საკუთარი ატვირთვები.
2) Dont resurrect რაღაც ვერ ჩაიდინოს ძალიან.',
- 'howto' => 'აი ის წესი',
- 'howto-desc1' => 'თქვენ უნდა გაიზარდოთ : სახელი 30 დღის განმავლობაში წარმატებული რესსუქციებისთვის. ამ შემთხვევაში, როდესაც თქვენი მიმდინარე სათესლე',
- 'howto-desc2' => 'თქვენ დაჯილდოვდებით',
- 'howto-hits' => 'ჰიტები',
- 'pending' => 'მიმდინარეობს',
- 'resurrect' => 'Აღადგენს',
- 'reward' => 'Freeleech სიმბოლოებს',
+ 'howto' => 'აი ის წესი',
+ 'howto-desc1' => 'თქვენ უნდა გაიზარდოთ : სახელი 30 დღის განმავლობაში წარმატებული რესსუქციებისთვის. ამ შემთხვევაში, როდესაც თქვენი მიმდინარე სათესლე',
+ 'howto-desc2' => 'თქვენ დაჯილდოვდებით',
+ 'howto-hits' => 'ჰიტები',
+ 'pending' => 'მიმდინარეობს',
+ 'resurrect' => 'Აღადგენს',
+ 'reward' => 'Freeleech სიმბოლოებს',
];
diff --git a/lang/ka/notification.php b/lang/ka/notification.php
index c86fd2227..3df50cc8d 100644
--- a/lang/ka/notification.php
+++ b/lang/ka/notification.php
@@ -12,14 +12,14 @@
*/
return [
- 'date' => 'თარიღი',
- 'delete' => 'წაშლა',
- 'delete-all' => 'ყველა შეტყობინების წაშლა',
- 'mark-all-read' => 'მონიშნე ყველა როგორც წაკითხული',
- 'mark-read' => 'მონიშნე როგორც წაკითხული',
- 'message' => 'შეტყობინება',
+ 'date' => 'თარიღი',
+ 'delete' => 'წაშლა',
+ 'delete-all' => 'ყველა შეტყობინების წაშლა',
+ 'mark-all-read' => 'მონიშნე ყველა როგორც წაკითხული',
+ 'mark-read' => 'მონიშნე როგორც წაკითხული',
+ 'message' => 'შეტყობინება',
'no-notifications' => 'შეტყობინებები არ არის ნაპოვნი',
- 'notifications' => 'შეტყობინებები',
- 'read' => 'წაიკითხეთ',
- 'title' => 'სათაური',
+ 'notifications' => 'შეტყობინებები',
+ 'read' => 'წაიკითხეთ',
+ 'title' => 'სათაური',
];
diff --git a/lang/ka/page.php b/lang/ka/page.php
index a0b7dfdc2..37443a4ae 100644
--- a/lang/ka/page.php
+++ b/lang/ka/page.php
@@ -12,28 +12,28 @@
*/
return [
- 'aboutus-advantage' => 'Უპირატესობა',
- 'aboutus-advantage1' => 'ჩვენ გამოცდილი წევრები და თანამშრომლები, რომლებიც კარგად გათვითცნობიერებულნი არიან HD ვიდეო / აუდიო და ტექნიკური მხარდაჭერის სამყაროში.',
- 'aboutus-advantage2' => 'ჩვენს ფილმებსა და სატელევიზიო გადაცემებთან ერთად ჩვენ ვცდილობთ, რომ ჩვენ ვთავაზობთ ერთ-ერთ საუკეთესო არჩევანს, რაც ყველაზე მეტად - ფანები! დიდი მადლობა ჩვენს კონტენტზე.',
- 'aboutus-advantage3' => 'მიუხედავად იმისა, რომ ჩვენ გავაკეთებთ შემოწირულობების შენარჩუნება საიტი up და გაშვებული არ იქნება pestering PMs ან ბანერები საიტზე. არ გთხოვ',
- 'aboutus-advantage4' => 'ჩვენი საზოგადოება მეორეა მისი ადრეული ასაკიდან. ჩვენს თანამშრომლებსა და მომხმარებლისგან შორის ყოველთვის იყო დახმარება. იყო ვნებიანი შესახებ მიღების დარწმუნებული თქვენი გამოცდილება: სათაური არაფერია მოკლე საოცარი.',
- 'aboutus-advantage5' => 'ჩვენი სერვისი ყოველდღიურად იყენებს ბევრ ადამიანს მთელს მსოფლიოში. ჩვენ დავამტკიცეთ, რომ ჩვენ ვზრუნავთ ჩვენს კოდექსის ფუნქციონალურობასა და უსაფრთხოებაზე და ის შეიძლება იყოს სანდო და დაეყრდნო. ჩვენი დეველოპერები ყოველდღიურად მუშაობენ ჭეშმარიტად nex-gen კოდექსის შესაქმნელად.',
- 'aboutus-header' => 'გამარჯობა',
- 'aboutus-rules' => 'რა გჭირდება ჩვენგან',
- 'aboutus-rules1' => 'თანამეგობრობის აქტიური წევრი იყოს! ეს ნიშნავს, რომ ხელი შევუწყოთ საუბრებში პროდუქტიულად, დაამატეთ დამტკიცებული შინაარსი და დავეხმაროთ სხვა მომხმარებლებს, თუ შეძლებთ.',
- 'aboutus-rules2' => 'წესების სრული წაკითხვისთვის და პატივი სცეს მათ!',
- 'aboutus-rules3' => 'წინადადებების გაკეთება! ჩვენ ვცდილობთ გავაკეთოთ: სათაური უკეთესია ყოველ დღე. ჩვენ არ ვამბობთ, რომ ყველა წინადადება გამოყენებული იქნება, მაგრამ ეს არასდროს გტკივა ახალი იდეების ნახვაში.',
- 'aboutus-welcome' => 'მოდით ვისაუბროთ',
- 'aboutus-welcome-desc' => ': სათაური არის საზოგადოების აშენებული Movie / TV / FANRES მონაცემთა ბაზა. ყველა მონაცემი მონაცემები დაემატა ჩვენი საოცარი საზოგადოების მიერ 2017 წლიდან: სათაურები ძლიერი ფოკუსირებულია HD- ის შინაარსით, პროაქტიული მომხმარებლისთვის, გასაოცარია / უსაფრთხო კოდიბისა და სასარგებლო და მეგობრული პერსონალის გუნდში.',
- 'blacklist-browsers' => 'ბრაუზერები',
- 'blacklist-btclient' => 'BitTorrent კლიენტი',
- 'blacklist-clients' => 'კლიენტები',
- 'blacklist-desc' => 'შემდეგი ბრაუზერები და Bittorrent კლიენტები Blacklisted / აკრძალულია საწყისი Annoucing To: სათაური',
- 'blacklist-webbrowser' => 'ვებ ბრაუზერი',
+ 'aboutus-advantage' => 'Უპირატესობა',
+ 'aboutus-advantage1' => 'ჩვენ გამოცდილი წევრები და თანამშრომლები, რომლებიც კარგად გათვითცნობიერებულნი არიან HD ვიდეო / აუდიო და ტექნიკური მხარდაჭერის სამყაროში.',
+ 'aboutus-advantage2' => 'ჩვენს ფილმებსა და სატელევიზიო გადაცემებთან ერთად ჩვენ ვცდილობთ, რომ ჩვენ ვთავაზობთ ერთ-ერთ საუკეთესო არჩევანს, რაც ყველაზე მეტად - ფანები! დიდი მადლობა ჩვენს კონტენტზე.',
+ 'aboutus-advantage3' => 'მიუხედავად იმისა, რომ ჩვენ გავაკეთებთ შემოწირულობების შენარჩუნება საიტი up და გაშვებული არ იქნება pestering PMs ან ბანერები საიტზე. არ გთხოვ',
+ 'aboutus-advantage4' => 'ჩვენი საზოგადოება მეორეა მისი ადრეული ასაკიდან. ჩვენს თანამშრომლებსა და მომხმარებლისგან შორის ყოველთვის იყო დახმარება. იყო ვნებიანი შესახებ მიღების დარწმუნებული თქვენი გამოცდილება: სათაური არაფერია მოკლე საოცარი.',
+ 'aboutus-advantage5' => 'ჩვენი სერვისი ყოველდღიურად იყენებს ბევრ ადამიანს მთელს მსოფლიოში. ჩვენ დავამტკიცეთ, რომ ჩვენ ვზრუნავთ ჩვენს კოდექსის ფუნქციონალურობასა და უსაფრთხოებაზე და ის შეიძლება იყოს სანდო და დაეყრდნო. ჩვენი დეველოპერები ყოველდღიურად მუშაობენ ჭეშმარიტად nex-gen კოდექსის შესაქმნელად.',
+ 'aboutus-header' => 'გამარჯობა',
+ 'aboutus-rules' => 'რა გჭირდება ჩვენგან',
+ 'aboutus-rules1' => 'თანამეგობრობის აქტიური წევრი იყოს! ეს ნიშნავს, რომ ხელი შევუწყოთ საუბრებში პროდუქტიულად, დაამატეთ დამტკიცებული შინაარსი და დავეხმაროთ სხვა მომხმარებლებს, თუ შეძლებთ.',
+ 'aboutus-rules2' => 'წესების სრული წაკითხვისთვის და პატივი სცეს მათ!',
+ 'aboutus-rules3' => 'წინადადებების გაკეთება! ჩვენ ვცდილობთ გავაკეთოთ: სათაური უკეთესია ყოველ დღე. ჩვენ არ ვამბობთ, რომ ყველა წინადადება გამოყენებული იქნება, მაგრამ ეს არასდროს გტკივა ახალი იდეების ნახვაში.',
+ 'aboutus-welcome' => 'მოდით ვისაუბროთ',
+ 'aboutus-welcome-desc' => ': სათაური არის საზოგადოების აშენებული Movie / TV / FANRES მონაცემთა ბაზა. ყველა მონაცემი მონაცემები დაემატა ჩვენი საოცარი საზოგადოების მიერ 2017 წლიდან: სათაურები ძლიერი ფოკუსირებულია HD- ის შინაარსით, პროაქტიული მომხმარებლისთვის, გასაოცარია / უსაფრთხო კოდიბისა და სასარგებლო და მეგობრული პერსონალის გუნდში.',
+ 'blacklist-browsers' => 'ბრაუზერები',
+ 'blacklist-btclient' => 'BitTorrent კლიენტი',
+ 'blacklist-clients' => 'კლიენტები',
+ 'blacklist-desc' => 'შემდეგი ბრაუზერები და Bittorrent კლიენტები Blacklisted / აკრძალულია საწყისი Annoucing To: სათაური',
+ 'blacklist-webbrowser' => 'ვებ ბრაუზერი',
'blacklist-emaildomain' => 'დაბლოკა დომენი',
- 'email-blacklist-desc' => 'შემდეგ ელ დომენები დაიბლოკება ხდება გამოყენებული. თქვენ ვერ დარეგისტრირდით ან გააგზავნეთ მოწვევა შემდეგზე.',
- 'email-whitelist-desc' => 'შემდეგ ელ დომენები არიან მხოლოდ ელ დომენები დაშვებული უნდა იქნას გამოყენებული. თქვენ შეგიძლიათ დარეგისტრირდეთ ან გააგზავნოთ მოწვევა შემდეგზე.',
- 'staff-group' => 'ჯგუფი',
- 'staff-title' => 'სათაური',
+ 'email-blacklist-desc' => 'შემდეგ ელ დომენები დაიბლოკება ხდება გამოყენებული. თქვენ ვერ დარეგისტრირდით ან გააგზავნეთ მოწვევა შემდეგზე.',
+ 'email-whitelist-desc' => 'შემდეგ ელ დომენები არიან მხოლოდ ელ დომენები დაშვებული უნდა იქნას გამოყენებული. თქვენ შეგიძლიათ დარეგისტრირდეთ ან გააგზავნოთ მოწვევა შემდეგზე.',
+ 'staff-group' => 'ჯგუფი',
+ 'staff-title' => 'სათაური',
'whitelist-emaildomain' => 'სანდო დომენი',
];
diff --git a/lang/ka/pagination.php b/lang/ka/pagination.php
index 50fef90b0..49234327c 100644
--- a/lang/ka/pagination.php
+++ b/lang/ka/pagination.php
@@ -24,5 +24,5 @@ return [
*/
'previous' => '« წინა',
- 'next' => 'შემდეგი »',
+ 'next' => 'შემდეგი »',
];
diff --git a/lang/ka/passwords.php b/lang/ka/passwords.php
index a54b8d8e0..6b1cbae93 100644
--- a/lang/ka/passwords.php
+++ b/lang/ka/passwords.php
@@ -24,8 +24,8 @@ return [
*/
'password' => 'პაროლი უნდა შედგებოდეს მინიმუმ 6 სიმბოლოსგან და ემთხვეოდეს დადასტურებას.',
- 'reset' => 'თქვენი პაროლი განახლებულია!',
- 'sent' => 'თქვენს ელ.ფოსტაზე მიიღებთ პაროლის განახლების ბმულს!',
- 'token' => 'პაროლის განახლების კოდი არასწორია.',
- 'user' => 'მომხმარებელი ამ მონაცემებით არ არსებობს.',
+ 'reset' => 'თქვენი პაროლი განახლებულია!',
+ 'sent' => 'თქვენს ელ.ფოსტაზე მიიღებთ პაროლის განახლების ბმულს!',
+ 'token' => 'პაროლის განახლების კოდი არასწორია.',
+ 'user' => 'მომხმარებელი ამ მონაცემებით არ არსებობს.',
];
diff --git a/lang/ka/pm.php b/lang/ka/pm.php
index 71f779494..5a5b75f9d 100644
--- a/lang/ka/pm.php
+++ b/lang/ka/pm.php
@@ -12,28 +12,28 @@
*/
return [
- 'create' => 'Შექმნა',
- 'delete' => 'წაშლა',
+ 'create' => 'Შექმნა',
+ 'delete' => 'წაშლა',
'enter-subject' => 'შეიტანეთ სათაური',
- 'from' => 'მდებარეობა',
- 'inbox' => 'Შემომავალი',
+ 'from' => 'მდებარეობა',
+ 'inbox' => 'Შემომავალი',
'mark-all-read' => 'წაიკითხეთ ყველა წერილი',
- 'message' => 'შეტყობინება',
- 'messages' => 'შეტყობინებები',
- 'new' => 'Ახალი შეტყობინება',
- 'outbox' => 'Outbox',
- 'private' => 'პირადი',
- 'read' => 'წაიკითხეთ',
- 'received-at' => 'მიღებულ იქნა',
- 'refresh' => 'განახლება',
- 'reply' => 'პასუხი',
- 'search' => 'თემატიკის ძიება',
- 'select' => 'აირჩიეთ მომხმარებელი',
- 'send' => 'PM გაგზავნა',
- 'send-to' => 'პირადი PM',
- 'sent' => 'Გაგზავნილი',
- 'sent-at' => 'გაგზავნილი At',
- 'subject' => 'თემატიკა',
- 'to' => 'დან',
- 'unread' => 'წაუკითხავი',
+ 'message' => 'შეტყობინება',
+ 'messages' => 'შეტყობინებები',
+ 'new' => 'Ახალი შეტყობინება',
+ 'outbox' => 'Outbox',
+ 'private' => 'პირადი',
+ 'read' => 'წაიკითხეთ',
+ 'received-at' => 'მიღებულ იქნა',
+ 'refresh' => 'განახლება',
+ 'reply' => 'პასუხი',
+ 'search' => 'თემატიკის ძიება',
+ 'select' => 'აირჩიეთ მომხმარებელი',
+ 'send' => 'PM გაგზავნა',
+ 'send-to' => 'პირადი PM',
+ 'sent' => 'Გაგზავნილი',
+ 'sent-at' => 'გაგზავნილი At',
+ 'subject' => 'თემატიკა',
+ 'to' => 'დან',
+ 'unread' => 'წაუკითხავი',
];
diff --git a/lang/ka/poll.php b/lang/ka/poll.php
index c6904777c..49b2939b4 100644
--- a/lang/ka/poll.php
+++ b/lang/ka/poll.php
@@ -12,18 +12,18 @@
*/
return [
- 'add-option' => 'დამატება ვარიანტი',
- 'create-poll' => 'გამოკითხვის შექმნა',
- 'current' => 'მიმდინარე გამოკითხვა',
- 'delete-option' => 'წაშლა ვარიანტი',
+ 'add-option' => 'დამატება ვარიანტი',
+ 'create-poll' => 'გამოკითხვის შექმნა',
+ 'current' => 'მიმდინარე გამოკითხვა',
+ 'delete-option' => 'წაშლა ვარიანტი',
'multiple-choice' => 'ეს არის მრავალჯერადი არჩევანი გამოკითხვა. აირჩიეთ როგორც ბევრი პასუხი, როგორც გსურთ.',
- 'option' => 'ვარიანტი',
- 'poll' => 'გამოკითხვა',
- 'polls' => 'გამოკითხვები',
- 'results' => 'გამოკითხვა შედეგები',
- 'title' => 'სათაური',
- 'total' => 'სულ რაოდენობა თითქმის',
- 'vote' => 'ხმის მიცემა',
- 'vote-now' => 'მიიღეთ ხმის მიცემა ახლა!',
- 'votes' => 'ხმების რაოდენობა',
+ 'option' => 'ვარიანტი',
+ 'poll' => 'გამოკითხვა',
+ 'polls' => 'გამოკითხვები',
+ 'results' => 'გამოკითხვა შედეგები',
+ 'title' => 'სათაური',
+ 'total' => 'სულ რაოდენობა თითქმის',
+ 'vote' => 'ხმის მიცემა',
+ 'vote-now' => 'მიიღეთ ხმის მიცემა ახლა!',
+ 'votes' => 'ხმების რაოდენობა',
];
diff --git a/lang/ka/request.php b/lang/ka/request.php
index 4244c1e20..f87d92cd9 100644
--- a/lang/ka/request.php
+++ b/lang/ka/request.php
@@ -12,67 +12,67 @@
*/
return [
- 'add-request' => 'მოთხოვნის დამატება',
- 'age' => 'ასაკი',
- 'all-requests' => 'ყველა მოთხოვნა',
- 'approve' => 'დამტკიცება',
- 'bounty' => 'Bounty',
- 'bounty-claimed' => 'Bounty მტკიცებით',
- 'bounty-unclaimed' => 'Bounty unclaimed',
- 'category' => 'კატეგორია',
- 'claim' => 'Მოთხოვნა',
- 'claim-anon-choose' => 'გთხოვთ, აირჩიოთ კარგად',
- 'claim-as-anon' => 'გსურთ, რომ მოითხოვოთ ეს უკანასკნელად',
- 'claim-now' => 'პრეტენზია ახლა',
- 'claimed' => 'აცხადებდნენ',
- 'current' => 'მიმდინარე',
- 'delete' => 'ამ მოთხოვნის წაშლა',
+ 'add-request' => 'მოთხოვნის დამატება',
+ 'age' => 'ასაკი',
+ 'all-requests' => 'ყველა მოთხოვნა',
+ 'approve' => 'დამტკიცება',
+ 'bounty' => 'Bounty',
+ 'bounty-claimed' => 'Bounty მტკიცებით',
+ 'bounty-unclaimed' => 'Bounty unclaimed',
+ 'category' => 'კატეგორია',
+ 'claim' => 'Მოთხოვნა',
+ 'claim-anon-choose' => 'გთხოვთ, აირჩიოთ კარგად',
+ 'claim-as-anon' => 'გსურთ, რომ მოითხოვოთ ეს უკანასკნელად',
+ 'claim-now' => 'პრეტენზია ახლა',
+ 'claimed' => 'აცხადებდნენ',
+ 'current' => 'მიმდინარე',
+ 'delete' => 'ამ მოთხოვნის წაშლა',
'delete-confirmation' => 'დარწმუნებული ხართ, რომ გსურთ ამ მოთხოვნის წაშლა',
- 'delete-filled' => 'ეს მოთხოვნა შეიძლება წაიშალოს თუ ის არ არის შევსებული',
- 'description' => 'აღწერა',
- 'dont-have-bps' => 'თქვენ არ გაქვთ საკმარისი ბონუსი',
- 'edit-request' => 'მოთხოვნის რედაქტირება',
- 'enter-bp' => 'შეიყვანეთ ბონუს ქულა (მინიმუმ 100)',
- 'enter-hash' => 'შეიყვანეთ ატვირთული ტორენტის ინფორმაცია Hash',
- 'fill' => 'შეავსეთ',
- 'fill-request' => 'შეავსეთ ეს მოთხოვნა',
- 'filled' => 'შევსებული',
- 'filled-by' => 'შევსებული',
- 'for' => 'ამისთვის',
- 'fulfill' => 'შეასრულოს',
- 'last-vote' => 'ბოლო ხმა',
- 'my-requests' => 'ჩემი მოთხოვნები',
- 'no' => 'არა,',
- 'no-imdb-id' => 'ყველა მოთხოვნა უნდა შეიცავდეს IMDB ნომერს',
- 'no-privileges' => 'შეცდომა: თქვენი მოთხოვნის უფლებები გამორთულია',
- 'no-privileges-desc' => 'თუ ფიქრობთ, რომ ეს შეცდომაა, გთხოვთ დაუკავშირდეთ თანამშრომლებს',
- 'no-refunds' => 'BON ბირჟებზე შექმნის, შევსების და Bounties საბოლოო!
არ არის რეფლუნდები!',
- 'pending' => 'მიმდინარეობს',
- 'reason' => 'მიზეზი',
- 'reject' => 'Უარყოს',
- 'report' => 'მოთხოვნის დაკითხვა',
- 'request' => 'მოთხოვნა',
- 'request-details' => 'დეტალების მოთხოვნა',
- 'requested-by' => 'Მიერ მოთხოვნილი',
- 'requests' => 'მოთხოვნები',
- 'required' => 'საჭიროა',
- 'reset' => 'გადატვირთვა',
- 'reset-confirmation' => 'დარწმუნებული ხართ, რომ გსურთ ეს მოთხოვნა გადატვირთოთ',
- 'reset-request' => 'აღადგინეთ ეს მოთხოვნა',
- 'reward' => 'Ჯილდო',
- 'reward-desc' => 'რამდენი ბონუს პუნქტი გისურვებთ? მინიმუმ 100 BP',
- 'reward-from' => 'მდებარეობა',
- 'title' => 'სათაური',
- 'torrent-hash' => 'ტორენტი ჰეში',
- 'total-bounty' => 'მთლიანი Bounty',
- 'type' => 'ტიპი',
- 'unclaim' => 'ამ მოთხოვნის დაკმაყოფილება',
- 'unfilled' => 'შეუსრულებელი',
- 'view-filled' => 'ნახვა შევსებულია',
- 'view-unfilled' => 'იხილეთ unfilled',
- 'vote' => 'ხმის მიცემა',
- 'vote-that' => 'ეს მოთხოვნა',
- 'voters' => 'ამომრჩეველი',
- 'votes' => 'ხმების რაოდენობა',
- 'yes' => 'დიახ',
+ 'delete-filled' => 'ეს მოთხოვნა შეიძლება წაიშალოს თუ ის არ არის შევსებული',
+ 'description' => 'აღწერა',
+ 'dont-have-bps' => 'თქვენ არ გაქვთ საკმარისი ბონუსი',
+ 'edit-request' => 'მოთხოვნის რედაქტირება',
+ 'enter-bp' => 'შეიყვანეთ ბონუს ქულა (მინიმუმ 100)',
+ 'enter-hash' => 'შეიყვანეთ ატვირთული ტორენტის ინფორმაცია Hash',
+ 'fill' => 'შეავსეთ',
+ 'fill-request' => 'შეავსეთ ეს მოთხოვნა',
+ 'filled' => 'შევსებული',
+ 'filled-by' => 'შევსებული',
+ 'for' => 'ამისთვის',
+ 'fulfill' => 'შეასრულოს',
+ 'last-vote' => 'ბოლო ხმა',
+ 'my-requests' => 'ჩემი მოთხოვნები',
+ 'no' => 'არა,',
+ 'no-imdb-id' => 'ყველა მოთხოვნა უნდა შეიცავდეს IMDB ნომერს',
+ 'no-privileges' => 'შეცდომა: თქვენი მოთხოვნის უფლებები გამორთულია',
+ 'no-privileges-desc' => 'თუ ფიქრობთ, რომ ეს შეცდომაა, გთხოვთ დაუკავშირდეთ თანამშრომლებს',
+ 'no-refunds' => 'BON ბირჟებზე შექმნის, შევსების და Bounties საბოლოო!
არ არის რეფლუნდები!',
+ 'pending' => 'მიმდინარეობს',
+ 'reason' => 'მიზეზი',
+ 'reject' => 'Უარყოს',
+ 'report' => 'მოთხოვნის დაკითხვა',
+ 'request' => 'მოთხოვნა',
+ 'request-details' => 'დეტალების მოთხოვნა',
+ 'requested-by' => 'Მიერ მოთხოვნილი',
+ 'requests' => 'მოთხოვნები',
+ 'required' => 'საჭიროა',
+ 'reset' => 'გადატვირთვა',
+ 'reset-confirmation' => 'დარწმუნებული ხართ, რომ გსურთ ეს მოთხოვნა გადატვირთოთ',
+ 'reset-request' => 'აღადგინეთ ეს მოთხოვნა',
+ 'reward' => 'Ჯილდო',
+ 'reward-desc' => 'რამდენი ბონუს პუნქტი გისურვებთ? მინიმუმ 100 BP',
+ 'reward-from' => 'მდებარეობა',
+ 'title' => 'სათაური',
+ 'torrent-hash' => 'ტორენტი ჰეში',
+ 'total-bounty' => 'მთლიანი Bounty',
+ 'type' => 'ტიპი',
+ 'unclaim' => 'ამ მოთხოვნის დაკმაყოფილება',
+ 'unfilled' => 'შეუსრულებელი',
+ 'view-filled' => 'ნახვა შევსებულია',
+ 'view-unfilled' => 'იხილეთ unfilled',
+ 'vote' => 'ხმის მიცემა',
+ 'vote-that' => 'ეს მოთხოვნა',
+ 'voters' => 'ამომრჩეველი',
+ 'votes' => 'ხმების რაოდენობა',
+ 'yes' => 'დიახ',
];
diff --git a/lang/ka/rss.php b/lang/ka/rss.php
index 045ecde68..9312d2055 100644
--- a/lang/ka/rss.php
+++ b/lang/ka/rss.php
@@ -12,19 +12,19 @@
*/
return [
- 'create' => 'Შექმნა',
+ 'create' => 'Შექმნა',
'create-private-feed' => 'შექმნა პირადი RSS Feed',
- 'create-public-feed' => 'შექმენით RSS RSS Feed',
- 'delete' => 'წაშლა',
- 'edit' => 'რედაქტირება',
- 'edit-private-feed' => 'რედაქტირება პირადი RSS Feed',
- 'edit-public-feed' => 'რედაქტირება Public RSS Feed',
- 'feed' => 'არხი',
- 'feeds' => 'არხები',
- 'name' => 'სახელი',
- 'public' => 'საზოგადოება',
- 'private' => 'პირადი',
- 'rss' => 'RSS',
- 'rss-feed' => 'RSS არხი',
- 'type' => 'ტიპი',
+ 'create-public-feed' => 'შექმენით RSS RSS Feed',
+ 'delete' => 'წაშლა',
+ 'edit' => 'რედაქტირება',
+ 'edit-private-feed' => 'რედაქტირება პირადი RSS Feed',
+ 'edit-public-feed' => 'რედაქტირება Public RSS Feed',
+ 'feed' => 'არხი',
+ 'feeds' => 'არხები',
+ 'name' => 'სახელი',
+ 'public' => 'საზოგადოება',
+ 'private' => 'პირადი',
+ 'rss' => 'RSS',
+ 'rss-feed' => 'RSS არხი',
+ 'type' => 'ტიპი',
];
diff --git a/lang/ka/staff.php b/lang/ka/staff.php
index 27b2a10e4..795cf6e0e 100644
--- a/lang/ka/staff.php
+++ b/lang/ka/staff.php
@@ -12,48 +12,48 @@
*/
return [
- 'audit-log' => 'აქტივობის შესვლა',
- 'articles' => 'სტატიები',
- 'applications' => 'პროგრამები',
- 'bans-log' => 'ჩატვირთვა შესვლა',
- 'blocks' => 'ბლოკები',
- 'bot' => 'ბოტ',
- 'bots' => 'ბოტები',
- 'chat' => 'Სასაუბრო',
- 'config-manager' => 'კონფიგურაციის მენეჯერი',
- 'dashboard' => 'Dashboard',
- 'failed-login-log' => 'შესვლა შესვლა ვერ მოხერხდა',
- 'flush-ghost-peers' => 'ფლეში Ghost თანატოლები',
- 'forums' => 'ფორუმები',
- 'frontend' => 'Frontend',
- 'general-tools' => 'ზოგადი ინსტრუმენტები',
- 'groups' => 'ჯგუფები',
- 'invites-log' => 'იწვევს შესვლას',
- 'laravel-log' => 'Laravel შესვლა',
- 'links' => 'ბმულები',
- 'logs' => 'ლოგები',
- 'mass-pm' => 'მასობრივი პრემია',
- 'mass-validate-users' => 'მასობრივი დამტკიცების მომხმარებლები',
- 'moderation' => 'მოდერაცია',
- 'pages' => 'გვერდები',
- 'please-moderate' => 'გთხოვთ, მოითმინოთ ეს ტორენტი!',
- 'polls' => 'გამოკითხვები',
- 'reports-log' => 'ანგარიშების შესვლა',
- 'rss' => 'RSS',
- 'staff-dashboard' => 'პერსონალის Dashboard',
- 'torrent-categories' => 'ტორენტების კატეგორიები',
- 'torrent-moderation' => 'ტორენტის მოდერაცია',
- 'torrent-tools' => 'ტორენტის ინსტრუმენტები',
- 'torrent-types' => 'ტორენტის ტიპები',
- 'torrents' => 'ტორენტები',
- 'user-gifting' => 'მომხმარებელი Gifting',
- 'user-notes' => 'მომხმარებელი შენიშვნები შესვლა',
- 'user-search' => 'მომხმარებლის ძებნა',
- 'user-tools' => 'მომხმარებელი ინსტრუმენტები',
- 'warnings-log' => 'გაფრთხილებების შესვლა',
- 'you-have' => 'Შენ გაქვს',
+ 'audit-log' => 'აქტივობის შესვლა',
+ 'articles' => 'სტატიები',
+ 'applications' => 'პროგრამები',
+ 'bans-log' => 'ჩატვირთვა შესვლა',
+ 'blocks' => 'ბლოკები',
+ 'bot' => 'ბოტ',
+ 'bots' => 'ბოტები',
+ 'chat' => 'Სასაუბრო',
+ 'config-manager' => 'კონფიგურაციის მენეჯერი',
+ 'dashboard' => 'Dashboard',
+ 'failed-login-log' => 'შესვლა შესვლა ვერ მოხერხდა',
+ 'flush-ghost-peers' => 'ფლეში Ghost თანატოლები',
+ 'forums' => 'ფორუმები',
+ 'frontend' => 'Frontend',
+ 'general-tools' => 'ზოგადი ინსტრუმენტები',
+ 'groups' => 'ჯგუფები',
+ 'invites-log' => 'იწვევს შესვლას',
+ 'laravel-log' => 'Laravel შესვლა',
+ 'links' => 'ბმულები',
+ 'logs' => 'ლოგები',
+ 'mass-pm' => 'მასობრივი პრემია',
+ 'mass-validate-users' => 'მასობრივი დამტკიცების მომხმარებლები',
+ 'moderation' => 'მოდერაცია',
+ 'pages' => 'გვერდები',
+ 'please-moderate' => 'გთხოვთ, მოითმინოთ ეს ტორენტი!',
+ 'polls' => 'გამოკითხვები',
+ 'reports-log' => 'ანგარიშების შესვლა',
+ 'rss' => 'RSS',
+ 'staff-dashboard' => 'პერსონალის Dashboard',
+ 'torrent-categories' => 'ტორენტების კატეგორიები',
+ 'torrent-moderation' => 'ტორენტის მოდერაცია',
+ 'torrent-tools' => 'ტორენტის ინსტრუმენტები',
+ 'torrent-types' => 'ტორენტის ტიპები',
+ 'torrents' => 'ტორენტები',
+ 'user-gifting' => 'მომხმარებელი Gifting',
+ 'user-notes' => 'მომხმარებელი შენიშვნები შესვლა',
+ 'user-search' => 'მომხმარებლის ძებნა',
+ 'user-tools' => 'მომხმარებელი ინსტრუმენტები',
+ 'warnings-log' => 'გაფრთხილებების შესვლა',
+ 'you-have' => 'Შენ გაქვს',
'possible-leech-cheaters' => 'შესაძლო ქამრები',
- 'chat-tools' => 'ჩეთის ინსტრუმენტები',
- 'flush-chat' => 'ფლეში ჩატი',
- 'seedboxes' => 'რეგისტრირებული Seedboxes',
+ 'chat-tools' => 'ჩეთის ინსტრუმენტები',
+ 'flush-chat' => 'ფლეში ჩატი',
+ 'seedboxes' => 'რეგისტრირებული Seedboxes',
];
diff --git a/lang/ka/stat.php b/lang/ka/stat.php
index 30882d330..d04969647 100644
--- a/lang/ka/stat.php
+++ b/lang/ka/stat.php
@@ -12,40 +12,40 @@
*/
return [
- 'by-count' => 'დათვლა',
- 'by-data' => 'მონაცემთა მიხედვით',
- 'by-volume' => 'მოცულობით',
- 'group' => 'ჯგუფი',
- 'groups' => 'ჯგუფები',
- 'nerd-stats' => 'Nerd სტატისტიკა',
- 'nerd-stats-desc' => 'ჩვენ ყველას გვიყვარს სტატისტიკა. აქ არის რამდენიმე, რომ ჩვენ მნიშვნელოვანია',
- 'registration-date' => 'Რეგისტრაციის თარიღი',
- 'request-fulfilled' => 'მოთხოვნა შესრულდა',
- 'request-not-fulfilled' => 'მოთხოვნა არ შესრულდა',
+ 'by-count' => 'დათვლა',
+ 'by-data' => 'მონაცემთა მიხედვით',
+ 'by-volume' => 'მოცულობით',
+ 'group' => 'ჯგუფი',
+ 'groups' => 'ჯგუფები',
+ 'nerd-stats' => 'Nerd სტატისტიკა',
+ 'nerd-stats-desc' => 'ჩვენ ყველას გვიყვარს სტატისტიკა. აქ არის რამდენიმე, რომ ჩვენ მნიშვნელოვანია',
+ 'registration-date' => 'Რეგისტრაციის თარიღი',
+ 'request-fulfilled' => 'მოთხოვნა შესრულდა',
+ 'request-not-fulfilled' => 'მოთხოვნა არ შესრულდა',
'request-pending-aproval' => 'მოითხოვეთ მიმდინარე აპლოდისმენტები',
- 'select-category' => 'გთხოვთ აირჩიოთ კატეგორია ქვემოთ',
- 'site-stats' => 'საიტის სტატისტიკა',
- 'stats' => 'სტატისტიკა',
- 'stats-format' => 'ყველა სტატისტიკა ნაჩვენებია 100 საუკეთესო ფორმატში',
- 'top-bankers' => 'ყველაზე ბანკირები',
- 'top-bountied' => 'ყველაზე დაბრკოლება',
- 'top-completed' => 'დასრულებული',
- 'top-dead' => 'ყველაზე მკვდარი',
- 'top-downloaded' => 'ყველაზე ხშირად ჩამოტვირთული ტორენტები',
- 'top-downloaders' => 'ყველაზე ჩამოტვირთვები',
- 'top-dying' => 'ყველაზე კვდება',
- 'top-leeched' => 'ყველაზე ლიკვიდაცია',
- 'top-leechers' => 'Top Leechers',
- 'top-seeded' => 'ყველაზე Seeded',
- 'top-seeding' => 'ყველაზე სელექტი',
- 'top-seeders' => 'ყველაზე სელექტორები',
- 'top-seedsize' => 'ყველაზე Seedsize',
- 'top-seedtime' => 'ყველაზე თესლი',
- 'top-uploaders' => 'ყველაზე ატვირთული მოთამაშეები',
- 'total-download' => 'სულ ჩამოტვირთვა',
- 'total-torrents' => 'სულ ტორენტები',
- 'total-traffic' => 'სულ მოძრაობა',
- 'total-upload' => 'სულ ატვირთვა',
- 'users-in-group' => 'მომხმარებელი ჯგუფში',
- 'users-per-group' => 'მომხმარებელი Per ჯგუფი',
+ 'select-category' => 'გთხოვთ აირჩიოთ კატეგორია ქვემოთ',
+ 'site-stats' => 'საიტის სტატისტიკა',
+ 'stats' => 'სტატისტიკა',
+ 'stats-format' => 'ყველა სტატისტიკა ნაჩვენებია 100 საუკეთესო ფორმატში',
+ 'top-bankers' => 'ყველაზე ბანკირები',
+ 'top-bountied' => 'ყველაზე დაბრკოლება',
+ 'top-completed' => 'დასრულებული',
+ 'top-dead' => 'ყველაზე მკვდარი',
+ 'top-downloaded' => 'ყველაზე ხშირად ჩამოტვირთული ტორენტები',
+ 'top-downloaders' => 'ყველაზე ჩამოტვირთვები',
+ 'top-dying' => 'ყველაზე კვდება',
+ 'top-leeched' => 'ყველაზე ლიკვიდაცია',
+ 'top-leechers' => 'Top Leechers',
+ 'top-seeded' => 'ყველაზე Seeded',
+ 'top-seeding' => 'ყველაზე სელექტი',
+ 'top-seeders' => 'ყველაზე სელექტორები',
+ 'top-seedsize' => 'ყველაზე Seedsize',
+ 'top-seedtime' => 'ყველაზე თესლი',
+ 'top-uploaders' => 'ყველაზე ატვირთული მოთამაშეები',
+ 'total-download' => 'სულ ჩამოტვირთვა',
+ 'total-torrents' => 'სულ ტორენტები',
+ 'total-traffic' => 'სულ მოძრაობა',
+ 'total-upload' => 'სულ ატვირთვა',
+ 'users-in-group' => 'მომხმარებელი ჯგუფში',
+ 'users-per-group' => 'მომხმარებელი Per ჯგუფი',
];
diff --git a/lang/ka/torrent.php b/lang/ka/torrent.php
index adddbd48b..0cdc32e7a 100644
--- a/lang/ka/torrent.php
+++ b/lang/ka/torrent.php
@@ -12,197 +12,197 @@
*/
return [
- 'activity' => 'აქტიურობა',
- 'age' => 'ასაკი',
- 'agent' => 'აგენტი',
- 'alive' => 'ცოცხალია',
- 'announce-url' => 'გამოაცხადეთ URL',
- 'announce-url-desc' => 'გთხოვთ, გამოვიყენოთ ახალი URL, როდესაც ახალი ტორენტის შექმნა. თუ გსურთ გამოიყენოთ თქვენი ტორენტი საიტიდან ჩამოტვირთვის გარეშე, თქვენ უნდა დააყენოთ კერძო დროშა და წყარო: წყარო',
- 'announce-url-desc-url' => 'Პრობლემის ქონა? იხილეთ ჩვენი გზამკვლევი აქ',
- 'announce-url-desc2' => 'TMDB და IMDB აუცილებელია ყველა ატვირთვისთვის! იგი გამოიყენება პლაკატების / Backdrops და ExtraInfo',
- 'approved' => 'დამტკიცებულია',
- 'audio' => 'აუდიო',
- 'bon-tipped' => 'BON Tipped',
- 'bookmark' => 'Bookmark',
- 'bookmarks' => 'სანიშნი',
- 'bump' => 'Bump',
- 'cant-upload' => 'შეცდომა: თქვენი ატვირთვის უფლება შეზღუდულია',
- 'cant-upload-desc' => 'თუ ფიქრობთ, რომ ეს შეცდომაა, გთხოვთ დაუკავშირდეთ თანამშრომლებს',
- 'cards' => 'ბარათები',
- 'cards-view' => 'ტორენტების ბარათების ნახვა',
- 'categories' => 'კატეგორიები',
- 'category' => 'კატეგორია',
- 'client' => 'კლიენტი',
- 'commited' => 'ჩაერთო',
- 'completed' => 'დასრულდა',
- 'completed_at' => 'დასრულებულია',
- 'completed-not-seeding' => 'თქვენ ეს პროგრამა დასრულდა, მაგრამ ვეღარ გრძელდება',
- 'created_at' => 'შექმნილია',
- 'credited' => 'დაკრედიტდება',
- 'current' => 'მიმდინარე',
- 'current-filters' => 'მიმდინარე ფილტრები',
- 'currently-leeching' => 'ამჟამად Leeching',
- 'currently-seeding' => 'ამჟამად სათესლე',
- 'dead-torrent' => 'მკვდარი ტორენტი',
- 'dead-torrents' => 'მკვდარი ტორენტები',
- 'delete-bookmark' => 'წაიკითხეთ ეს სანიშნე',
- 'description' => 'აღწერა',
- 'discounts' => 'ფასდაკლება',
- 'double-upload' => 'ორმაგი ატვირთვა',
- 'download-all' => 'ჩამოტვირთეთ ყველა',
- 'download-check' => 'ჩამოტვირთვა შემოწმება',
- 'downloaded' => 'გადმოწერილი',
- 'dying-torrent' => 'კვდება ტორენტი',
- 'dying-torrents' => 'კვდება ტორენტები',
- 'encode-settings' => 'Encode პარამეტრები',
- 'estimated-ratio' => 'სავარაუდო თანაფარდობა ჩამოტვირთვის შემდეგ',
- 'failed' => 'ვერ მოხერხდა',
- 'feature' => 'მხატვრული',
- 'featured' => 'გამორჩეული',
- 'featured-desc' => 'გამორჩეული ტორენტები არიან 100% თავისუფალი და ორმაგი ატვირთვა!',
- 'featured-until' => 'ეს არის Featured Torrent სანამ',
- 'file' => 'ფაილი',
- 'filters' => 'ფილტრები',
- 'fl-tokens-left' => 'Შენ გაქვს : ტოქნები დარჩა',
- 'freeleech' => 'Freeleech',
- 'freeleech-token' => 'Freeleech Token',
- 'general' => 'ზოგადი',
- 'genre' => 'ჟანრი',
- 'global-double-upload' => 'გლობალური ორმაგი ატვირთვა',
- 'global-freeleech' => 'გლობალური თავისუფლება',
- 'grant' => 'გრანტი',
- 'greater-than' => 'Უფრო მეტი ვიდრე',
- 'grouping' => 'დაჯგუფება',
- 'groupings' => 'ჯგუფები',
- 'grouping-categories' => 'დაჯგუფების კატეგორიები',
+ 'activity' => 'აქტიურობა',
+ 'age' => 'ასაკი',
+ 'agent' => 'აგენტი',
+ 'alive' => 'ცოცხალია',
+ 'announce-url' => 'გამოაცხადეთ URL',
+ 'announce-url-desc' => 'გთხოვთ, გამოვიყენოთ ახალი URL, როდესაც ახალი ტორენტის შექმნა. თუ გსურთ გამოიყენოთ თქვენი ტორენტი საიტიდან ჩამოტვირთვის გარეშე, თქვენ უნდა დააყენოთ კერძო დროშა და წყარო: წყარო',
+ 'announce-url-desc-url' => 'Პრობლემის ქონა? იხილეთ ჩვენი გზამკვლევი აქ',
+ 'announce-url-desc2' => 'TMDB და IMDB აუცილებელია ყველა ატვირთვისთვის! იგი გამოიყენება პლაკატების / Backdrops და ExtraInfo',
+ 'approved' => 'დამტკიცებულია',
+ 'audio' => 'აუდიო',
+ 'bon-tipped' => 'BON Tipped',
+ 'bookmark' => 'Bookmark',
+ 'bookmarks' => 'სანიშნი',
+ 'bump' => 'Bump',
+ 'cant-upload' => 'შეცდომა: თქვენი ატვირთვის უფლება შეზღუდულია',
+ 'cant-upload-desc' => 'თუ ფიქრობთ, რომ ეს შეცდომაა, გთხოვთ დაუკავშირდეთ თანამშრომლებს',
+ 'cards' => 'ბარათები',
+ 'cards-view' => 'ტორენტების ბარათების ნახვა',
+ 'categories' => 'კატეგორიები',
+ 'category' => 'კატეგორია',
+ 'client' => 'კლიენტი',
+ 'commited' => 'ჩაერთო',
+ 'completed' => 'დასრულდა',
+ 'completed_at' => 'დასრულებულია',
+ 'completed-not-seeding' => 'თქვენ ეს პროგრამა დასრულდა, მაგრამ ვეღარ გრძელდება',
+ 'created_at' => 'შექმნილია',
+ 'credited' => 'დაკრედიტდება',
+ 'current' => 'მიმდინარე',
+ 'current-filters' => 'მიმდინარე ფილტრები',
+ 'currently-leeching' => 'ამჟამად Leeching',
+ 'currently-seeding' => 'ამჟამად სათესლე',
+ 'dead-torrent' => 'მკვდარი ტორენტი',
+ 'dead-torrents' => 'მკვდარი ტორენტები',
+ 'delete-bookmark' => 'წაიკითხეთ ეს სანიშნე',
+ 'description' => 'აღწერა',
+ 'discounts' => 'ფასდაკლება',
+ 'double-upload' => 'ორმაგი ატვირთვა',
+ 'download-all' => 'ჩამოტვირთეთ ყველა',
+ 'download-check' => 'ჩამოტვირთვა შემოწმება',
+ 'downloaded' => 'გადმოწერილი',
+ 'dying-torrent' => 'კვდება ტორენტი',
+ 'dying-torrents' => 'კვდება ტორენტები',
+ 'encode-settings' => 'Encode პარამეტრები',
+ 'estimated-ratio' => 'სავარაუდო თანაფარდობა ჩამოტვირთვის შემდეგ',
+ 'failed' => 'ვერ მოხერხდა',
+ 'feature' => 'მხატვრული',
+ 'featured' => 'გამორჩეული',
+ 'featured-desc' => 'გამორჩეული ტორენტები არიან 100% თავისუფალი და ორმაგი ატვირთვა!',
+ 'featured-until' => 'ეს არის Featured Torrent სანამ',
+ 'file' => 'ფაილი',
+ 'filters' => 'ფილტრები',
+ 'fl-tokens-left' => 'Შენ გაქვს : ტოქნები დარჩა',
+ 'freeleech' => 'Freeleech',
+ 'freeleech-token' => 'Freeleech Token',
+ 'general' => 'ზოგადი',
+ 'genre' => 'ჟანრი',
+ 'global-double-upload' => 'გლობალური ორმაგი ატვირთვა',
+ 'global-freeleech' => 'გლობალური თავისუფლება',
+ 'grant' => 'გრანტი',
+ 'greater-than' => 'Უფრო მეტი ვიდრე',
+ 'grouping' => 'დაჯგუფება',
+ 'groupings' => 'ჯგუფები',
+ 'grouping-categories' => 'დაჯგუფების კატეგორიები',
'grouping-categories-desc' => 'რომელი კატეგორიის გსურთ დაჯგუფება?',
- 'grouping-results' => 'დაჯგუფების შედეგები',
- 'groupings-view' => 'ჯგუფების ნახვა',
- 'have-completed' => 'დასრულდა',
- 'have-downloaded' => 'გადმოწერილი',
- 'have-not-completed' => 'Არ არის დასრულებული',
- 'have-not-downloaded' => 'არ არის გადმოწერილი',
- 'health' => 'ჯანმრთელობა',
- 'history' => 'ისტორია',
- 'hitrun' => 'H & R?',
- 'hit-and-runs' => 'მოხვდა და გაუშვით რიცხვები',
- 'immune' => 'იმუნური?',
- 'info' => 'ინფორმაცია',
- 'internal' => 'შიდა',
- 'internal-release' => 'შიდა გათავისუფლება',
- 'last-seed-activity' => 'გასული სათესლე საქმიანობა',
- 'last-seeder' => 'თქვენ ხართ ბოლო დარჩენილი Seeder! (უკვე გადმოწერილია 3 ჯერ)',
- 'last-update' => 'Ბოლო განახლება',
- 'leave-tip' => 'დატოვე წვერი',
- 'leecher' => 'ლეჩერი',
- 'leechers' => 'ლეჩერები',
- 'leeching' => 'Leeching',
- 'left' => 'მარცხენა',
- 'legendary-seeder' => 'ლეგენდარული სათესლე',
- 'legendary-torrent' => 'ლეგენდარული ტორენტი',
- 'list' => 'სია',
- 'me' => 'მე',
- 'media-info' => 'მედიაინფო',
- 'media-info-parser' => 'მედიაინფორმა Parser',
- 'media-info-paste' => 'Paste MediaInfo ნაგავსაყრელი აქ',
- 'meta-desc' => 'ჩამოტვირთვა: სახელი მაქსიმალური სიჩქარით',
- 'moderation' => 'მოდერაცია',
- 'movies' => 'ფილმები',
- 'mvp' => 'MVP',
- 'my-active-torrents' => 'ჩემი აქტიური ტორენტები',
- 'name' => 'სახელი',
- 'no-bookmarks' => 'არ არსებობს სანიშნეები.',
- 'no-discounts' => 'ამჟამად ფასდაკლება არ არის',
- 'no-meta' => 'მეტამონაცემები ვერ მოიძებნა',
- 'no-privileges' => 'ამ ფაილის ჩამოტვირთვა ვერ ხერხდება - დამატებითი ინფორმაცია იხილეთ ქვემოთ',
- 'no-privileges-desc' => 'გთხოვთ, გადმოიწეროთ წარუმატებელი შედეგების ზემოთ ჩამოტვირთვის ღილაკზე',
- 'not-completed' => 'დაიწყო ჩამოტვირთვა, მაგრამ არასოდეს დასრულდა',
- 'not-downloaded' => 'არ არის გადმოწერილი',
- 'old-torrent' => 'ძველი ტორენტი',
- 'optional' => 'სურვილისამებრ',
- 'original-output' => 'ორიგინალური გამოტანის ჩვენება / დამალვა',
- 'participant' => 'Მონაწილე',
- 'passed' => 'გავიდა',
- 'peers' => 'თანატოლები',
- 'pending' => 'მიმდინარეობს',
- 'personal-freeleech' => 'პირადი Freeleech',
- 'poster' => 'პოსტერი',
- 'poster-view' => 'პოსტერის ნახვა',
- 'posters' => 'პლაკატები',
- 'prewarn' => 'წინამორბედი?',
- 'progress' => 'პროგრესი',
- 'quick-comment' => 'სწრაფი კომენტარი',
- 'quick-tip' => 'სწრაფი წვერი თანხები',
- 'rated' => 'Შეფასებული',
- 'rating' => 'რეიტინგი',
- 'ready' => 'ეს ფაილი მზად არის ჩამოტვირთვისთვის',
- 'rejected' => 'უარყოფილია',
- 'released' => 'გამოვიდა',
- 'remaining' => 'დარჩენილია',
- 'request-reseed' => 'მოთხოვნა Reseed',
- 'requires-reseed' => 'მოითხოვს Reseed',
- 'resurrections' => 'მკვდრები',
- 'revoke' => 'გაუქმება',
- 'rss' => 'RSS',
- 'runtime' => 'Runtime',
- 'satisfied_in' => 'კმაყოფილი',
- 'say-thanks' => 'გთხოვთ გახსოვდეთ ვთქვა მადლობა და თესლი რადგან თქვენ შეგიძლიათ',
- 'sd-content' => 'SD ფაილი',
- 'search' => 'ძიება',
- 'seed-time' => 'დათესილი დრო',
- 'seeder' => 'სელექციონერი',
- 'seeders' => 'სელექტორები',
- 'seeding' => 'Დათესვა',
- 'seedsize' => 'Seedsize',
- 'seedtime' => 'Seedtime',
- 'short-completed' => 'გ',
- 'short-leechs' => 'ლ',
- 'short-seeds' => 'ს',
- 'show-files' => 'ფაილების ჩვენება',
- 'similar' => 'მსგავსი ტორენტები',
- 'size' => 'ზომა',
- 'special' => 'სპეციალური',
- 'special-freeleech' => 'სპეციალური Freeleech',
- 'started' => 'დაიწყო',
- 'status' => 'სტატუსი',
- 'statistics' => 'სტატისტიკა',
- 'stats' => 'სტატისტიკა',
- 'sticky' => 'წებოვანი',
- 'stream-optimized' => 'ნაკადის ოპტიმიზაცია',
- 'subtitle' => 'სუბტიტრი',
- 'team-player' => 'Გუნდური მოთამაშე',
- 'thank' => 'მადლობა',
- 'thanked' => 'მადლობა',
- 'thanks' => 'მადლობა',
- 'thanks-given' => 'მადლობა გადაუხადა',
- 'times' => 'Times',
- 'tip-jar' => 'წვერი ჯარი',
- 'title' => 'სათაური',
- 'titles' => 'სათაურები',
- 'top-completed' => 'ყველაზე დასრულებული',
- 'top-dead' => 'ყველაზე მკვდარი',
- 'top-dying' => 'ყველაზე კვდება',
- 'top-leeched' => 'ყველაზე ლიკვიდაცია',
- 'top-seeded' => 'ყველაზე სეზონი',
- 'torrent' => 'ტორენტი',
- 'torrent-request' => 'ტორენტის მოთხოვნა',
- 'torrent-tips' => 'სულ : სულ BON უკვე გადაუშვა uploader, რომელიც : მომხმარებელი ხართ თქვენგან',
- 'torrent-tips-desc' => 'ეს გამოითვლება თქვენი ხელმისაწვდომი ბონუს ქულებისგან',
- 'torrents' => 'ტორენტები',
- 'trailer' => 'ტრეილერის ნახვა',
- 'type' => 'ტიპი',
- 'types' => 'სახეები',
- 'unbookmark' => 'Unbookmark',
- 'unsatisfieds' => 'უკმაყოფილო',
- 'unsticky' => 'შეუძლებელია',
- 'updated' => 'განახლებულია',
- 'updated_at' => 'განახლდა',
- 'uploaded' => 'ატვირთულია',
- 'uploaded-by' => 'ატვირთულია',
- 'uploader' => 'ატვირთვა',
- 'use-fl-token' => 'გამოიყენეთ Freeleech ნიშნად',
- 'video' => 'ვიდეო',
- 'view-more' => 'იხილეთ მეტი',
- 'view-trailer' => 'ტრეილერის ნახვა',
- 'votes' => 'ხმების რაოდენობა',
+ 'grouping-results' => 'დაჯგუფების შედეგები',
+ 'groupings-view' => 'ჯგუფების ნახვა',
+ 'have-completed' => 'დასრულდა',
+ 'have-downloaded' => 'გადმოწერილი',
+ 'have-not-completed' => 'Არ არის დასრულებული',
+ 'have-not-downloaded' => 'არ არის გადმოწერილი',
+ 'health' => 'ჯანმრთელობა',
+ 'history' => 'ისტორია',
+ 'hitrun' => 'H & R?',
+ 'hit-and-runs' => 'მოხვდა და გაუშვით რიცხვები',
+ 'immune' => 'იმუნური?',
+ 'info' => 'ინფორმაცია',
+ 'internal' => 'შიდა',
+ 'internal-release' => 'შიდა გათავისუფლება',
+ 'last-seed-activity' => 'გასული სათესლე საქმიანობა',
+ 'last-seeder' => 'თქვენ ხართ ბოლო დარჩენილი Seeder! (უკვე გადმოწერილია 3 ჯერ)',
+ 'last-update' => 'Ბოლო განახლება',
+ 'leave-tip' => 'დატოვე წვერი',
+ 'leecher' => 'ლეჩერი',
+ 'leechers' => 'ლეჩერები',
+ 'leeching' => 'Leeching',
+ 'left' => 'მარცხენა',
+ 'legendary-seeder' => 'ლეგენდარული სათესლე',
+ 'legendary-torrent' => 'ლეგენდარული ტორენტი',
+ 'list' => 'სია',
+ 'me' => 'მე',
+ 'media-info' => 'მედიაინფო',
+ 'media-info-parser' => 'მედიაინფორმა Parser',
+ 'media-info-paste' => 'Paste MediaInfo ნაგავსაყრელი აქ',
+ 'meta-desc' => 'ჩამოტვირთვა: სახელი მაქსიმალური სიჩქარით',
+ 'moderation' => 'მოდერაცია',
+ 'movies' => 'ფილმები',
+ 'mvp' => 'MVP',
+ 'my-active-torrents' => 'ჩემი აქტიური ტორენტები',
+ 'name' => 'სახელი',
+ 'no-bookmarks' => 'არ არსებობს სანიშნეები.',
+ 'no-discounts' => 'ამჟამად ფასდაკლება არ არის',
+ 'no-meta' => 'მეტამონაცემები ვერ მოიძებნა',
+ 'no-privileges' => 'ამ ფაილის ჩამოტვირთვა ვერ ხერხდება - დამატებითი ინფორმაცია იხილეთ ქვემოთ',
+ 'no-privileges-desc' => 'გთხოვთ, გადმოიწეროთ წარუმატებელი შედეგების ზემოთ ჩამოტვირთვის ღილაკზე',
+ 'not-completed' => 'დაიწყო ჩამოტვირთვა, მაგრამ არასოდეს დასრულდა',
+ 'not-downloaded' => 'არ არის გადმოწერილი',
+ 'old-torrent' => 'ძველი ტორენტი',
+ 'optional' => 'სურვილისამებრ',
+ 'original-output' => 'ორიგინალური გამოტანის ჩვენება / დამალვა',
+ 'participant' => 'Მონაწილე',
+ 'passed' => 'გავიდა',
+ 'peers' => 'თანატოლები',
+ 'pending' => 'მიმდინარეობს',
+ 'personal-freeleech' => 'პირადი Freeleech',
+ 'poster' => 'პოსტერი',
+ 'poster-view' => 'პოსტერის ნახვა',
+ 'posters' => 'პლაკატები',
+ 'prewarn' => 'წინამორბედი?',
+ 'progress' => 'პროგრესი',
+ 'quick-comment' => 'სწრაფი კომენტარი',
+ 'quick-tip' => 'სწრაფი წვერი თანხები',
+ 'rated' => 'Შეფასებული',
+ 'rating' => 'რეიტინგი',
+ 'ready' => 'ეს ფაილი მზად არის ჩამოტვირთვისთვის',
+ 'rejected' => 'უარყოფილია',
+ 'released' => 'გამოვიდა',
+ 'remaining' => 'დარჩენილია',
+ 'request-reseed' => 'მოთხოვნა Reseed',
+ 'requires-reseed' => 'მოითხოვს Reseed',
+ 'resurrections' => 'მკვდრები',
+ 'revoke' => 'გაუქმება',
+ 'rss' => 'RSS',
+ 'runtime' => 'Runtime',
+ 'satisfied_in' => 'კმაყოფილი',
+ 'say-thanks' => 'გთხოვთ გახსოვდეთ ვთქვა მადლობა და თესლი რადგან თქვენ შეგიძლიათ',
+ 'sd-content' => 'SD ფაილი',
+ 'search' => 'ძიება',
+ 'seed-time' => 'დათესილი დრო',
+ 'seeder' => 'სელექციონერი',
+ 'seeders' => 'სელექტორები',
+ 'seeding' => 'Დათესვა',
+ 'seedsize' => 'Seedsize',
+ 'seedtime' => 'Seedtime',
+ 'short-completed' => 'გ',
+ 'short-leechs' => 'ლ',
+ 'short-seeds' => 'ს',
+ 'show-files' => 'ფაილების ჩვენება',
+ 'similar' => 'მსგავსი ტორენტები',
+ 'size' => 'ზომა',
+ 'special' => 'სპეციალური',
+ 'special-freeleech' => 'სპეციალური Freeleech',
+ 'started' => 'დაიწყო',
+ 'status' => 'სტატუსი',
+ 'statistics' => 'სტატისტიკა',
+ 'stats' => 'სტატისტიკა',
+ 'sticky' => 'წებოვანი',
+ 'stream-optimized' => 'ნაკადის ოპტიმიზაცია',
+ 'subtitle' => 'სუბტიტრი',
+ 'team-player' => 'Გუნდური მოთამაშე',
+ 'thank' => 'მადლობა',
+ 'thanked' => 'მადლობა',
+ 'thanks' => 'მადლობა',
+ 'thanks-given' => 'მადლობა გადაუხადა',
+ 'times' => 'Times',
+ 'tip-jar' => 'წვერი ჯარი',
+ 'title' => 'სათაური',
+ 'titles' => 'სათაურები',
+ 'top-completed' => 'ყველაზე დასრულებული',
+ 'top-dead' => 'ყველაზე მკვდარი',
+ 'top-dying' => 'ყველაზე კვდება',
+ 'top-leeched' => 'ყველაზე ლიკვიდაცია',
+ 'top-seeded' => 'ყველაზე სეზონი',
+ 'torrent' => 'ტორენტი',
+ 'torrent-request' => 'ტორენტის მოთხოვნა',
+ 'torrent-tips' => 'სულ : სულ BON უკვე გადაუშვა uploader, რომელიც : მომხმარებელი ხართ თქვენგან',
+ 'torrent-tips-desc' => 'ეს გამოითვლება თქვენი ხელმისაწვდომი ბონუს ქულებისგან',
+ 'torrents' => 'ტორენტები',
+ 'trailer' => 'ტრეილერის ნახვა',
+ 'type' => 'ტიპი',
+ 'types' => 'სახეები',
+ 'unbookmark' => 'Unbookmark',
+ 'unsatisfieds' => 'უკმაყოფილო',
+ 'unsticky' => 'შეუძლებელია',
+ 'updated' => 'განახლებულია',
+ 'updated_at' => 'განახლდა',
+ 'uploaded' => 'ატვირთულია',
+ 'uploaded-by' => 'ატვირთულია',
+ 'uploader' => 'ატვირთვა',
+ 'use-fl-token' => 'გამოიყენეთ Freeleech ნიშნად',
+ 'video' => 'ვიდეო',
+ 'view-more' => 'იხილეთ მეტი',
+ 'view-trailer' => 'ტრეილერის ნახვა',
+ 'votes' => 'ხმების რაოდენობა',
];
diff --git a/lang/ka/user.php b/lang/ka/user.php
index 77d98584d..c76f3bbd7 100644
--- a/lang/ka/user.php
+++ b/lang/ka/user.php
@@ -12,316 +12,316 @@
*/
return [
- 'about' => 'შესახებ',
- 'about-me' => 'Ჩემს შესახებ',
- 'accepted-at' => 'მიღებულია',
- 'accepted-by' => 'მიღებულია',
- 'account-notification' => 'ანგარიშის შეტყობინებების პარამეტრები',
- 'account-notification-follow' => 'მიიღეთ შეტყობინება, როდესაც მომხმარებელი თქვენს ანგარიშზე მიდის',
- 'account-notification-unfollow' => 'მიიღე შეტყობინება, როდესაც მომხმარებელი არ იღებს თქვენს ანგარიშს',
- 'account-notification-help' => 'თქვენი ანგარიშის შესახებ შეტყობინებების გაგზავნის კონტროლი. ეს პარამეტრების გადალახვაა, თუ არ დაუშვებს რაიმე ჯგუფს თქვენი ანგარიშის შესახებ შეტყობინებების გაგზავნა ან თუ გამორთე შეტყობინებები',
- 'account-settings' => 'Ანგარიშის პარამეტრები',
- 'achievement-privacy' => 'მიღწევის პარამეტრები',
- 'achievement-privacy-list' => 'ნება მიეცი მომხმარებელს თქვენს მიღწევების სიას',
- 'achievement-help' => 'გააკონტროლეთ კონკრეტული მიღწევების დაკავშირებული ინფორმაციის გაზიარება ჯგუფებთან, რომლებიც დაშვებულია თქვენს პროფილზე. ეს პარამეტრების გადალახვაა, თუ არ დაუშვებს რაიმე ჯგუფს თქვენი მიღწევების წვდომისთვის ან პირადი ინფორმაციის მისაღებად',
- 'achievements' => 'მიღწევები',
- 'active' => 'აქტიური',
- 'active-table' => 'ჩემი აქტიური მაგიდა',
- 'active-torrents' => 'აქტიური ტორენტები',
- 'active-warning' => 'აქტიური გაფრთხილება',
- 'active-warnings' => 'აქტიური გაფრთხილებები',
- 'add-seedbox' => 'დამატება Seedbox',
- 'all-torrents' => 'ყველა ტორენტი',
- 'article-comments' => 'მუხლი კომენტარი გააკეთა',
- 'avatar' => 'ავატარა',
- 'avg-seedtime' => 'საშუალო Seedtime',
- 'badges' => 'ბადები',
- 'ban' => 'ბანკის მომხმარებელი',
- 'ban-log' => 'პან შესვლა',
- 'become-hidden' => 'გახდე დამალული',
- 'become-visible' => 'გახდი ხილული',
- 'bon' => 'BON',
- 'bon-notification' => 'BON შეტყობინებების პარამეტრები',
- 'bon-notification-gift' => 'მიიღეთ შეტყობინება, როდესაც მომხმარებელი გიხდით საჩუქრად',
- 'bon-notification-help' => 'კონტროლი, რომელიც შეტყობინებას აგზავნის ბონ გარიგებებზე. ეს პარამეტრების გადალახვაა, თუ არ დაუშვებთ რომელიმე ჯგუფს BON- ის შეტყობინებების გასაგზავნად ან შეტყობინებების გაუქმების შემთხვევაში',
- 'bookmarks' => 'სანიშნი',
- 'bounty-given' => 'Bounty მოცემული',
- 'bounty-received' => 'Bounty მიიღო',
- 'can-chat' => 'შეგიძლიათ ესაუბროთ',
- 'can-comment' => 'შენიშვნა',
- 'can-download' => 'შეგიძლიათ ჩამოტვირთოთ',
- 'can-invite' => 'შეუძლია მოიწვიოს',
- 'can-request' => 'შეგიძლიათ მოითხოვოთ',
- 'can-upload' => 'ატვირთვა შეუძლია',
- 'certified-banker' => 'სერტიფიცირებული ბანკირი',
- 'certified-banker-desc' => 'აქვს 50,000 ან მეტი ბანკის ბანკში',
- 'certified-downloader' => 'სერტიფიცირებული Downloader',
- 'certified-downloader-desc' => 'ჩამოტვირთული 100 ან მეტი ტორენტი!',
- 'certified-seeder' => 'სერტიფიცირებული სელექტორი',
- 'certified-seeder-desc' => 'დათესვა 150 ან მეტი ტორენტი!',
- 'change-email' => 'ელ.ფოსტის შეცვლა',
- 'change-email-help' => 'თქვენს ანგარიშს ხელახლა დაადასტურებთ, ელ-ფოსტის შეცვლის შემდეგ',
- 'change-password' => 'Პაროლის შეცვლა',
- 'change-password-help' => 'თქვენ კვლავ შემოხვიდეთ სისტემაში, შეცვალეთ თქვენი პაროლი',
- 'client-ip-address' => 'კლიენტის IP მისამართი',
- 'code' => 'კოდექსი',
- 'comments' => 'კომენტარები',
- 'created-on' => 'Შექმნილია',
- 'credited-download' => 'დაკრედიტებული ჩამოტვირთვა',
- 'credited-upload' => 'კრედიტის ატვირთვა',
- 'current-password' => 'Მიმდინარე პაროლი',
- 'custom-title' => 'საბაჟო დასახელება',
- 'delete' => 'წაშალე მომხმარებელი',
- 'disable-notifications' => 'შეტყობინებების გამორთვა',
- 'disclaimer' => 'პასუხისმგებლობის უარყოფა',
- 'disclaimer-info' => 'ჩვენ, ჩვეულებრივ, არ დავუმატოთ მომხმარებლები IP მისამართები, როგორიცაა ყველაზე ტრეკერები. დასძინა თქვენი seedbox IP ქვემოთ მოსალოდნელია, რომ თქვენ იცით თქვენი IP მისამართები ახლა ინახება ჩვენს ბაზაში თუ თქვენ წაშალოთ ჩანაწერი.',
- 'disclaimer-info-bordered' => 'Seedbox IPs დამატებული შემდეგ გამოიწვევს გამოიწვიოს მაღალ სიჩქარე ტორენტის ტეგი ქვემოთ ჩამოთვლილ IP- ებისგან დათესილი',
- 'download-bon' => 'ჩამოტვირთეთ მოხსნა BON მაღაზია',
- 'download-recorded' => 'ჩაწერილი ჩამოტვირთვა',
- 'download-true' => 'მართალია ჩამოტვირთვა',
- 'downloads' => 'ჩამოტვირთვები',
- 'edit' => 'რედაქტირება მომხმარებელი',
- 'edit-profile' => 'Პროფილის რედაქტირება',
- 'enable-notifications' => 'შეტყობინებების ჩართვა',
- 'expired' => 'ვადაგასულია',
- 'expires-on' => 'იწურება',
- 'extra' => 'დამატებითი',
- 'filled-request' => 'შევსებული წევრები ითხოვენ',
- 'follow' => 'Გაყოლა',
- 'follower-privacy' => 'მიმდევარი პარამეტრები',
- 'follower-privacy-list' => 'მომხმარებლების ნებას რთავს თქვენი მიმდევრების სიის ნახვა',
- 'follower-help' => 'გააკონტროლეთ კონკრეტული მიმდევრობის შესახებ ინფორმაციის გაზიარება იმ ჯგუფებთან, რომლებიც დაშვებულია თქვენს პროფილზე. ეს პარამეტრების გადალახვაა, თუ რომელიმე ჯგუფს არ მისცემს თქვენს მიმდევრებზე წვდომას ან პირადი წასვლას',
- 'followers' => 'მიმდევრები',
- 'following-notification' => 'მოყვება მომხმარებლის შეტყობინებების პარამეტრები',
- 'following-notification-upload' => 'მიიღეთ შეტყობინება, როდესაც მოყვება მომხმარებელი ატვირთავს ტორენტს',
- 'following-notification-help' => 'კონტროლი, რომელიც შეტყობინებას აგზავნის მომხმარებლის მოქმედებასთან დაკავშირებით. ეს პარამეტრების გადალახვაა, თუ რომელიმე ჯგუფს არ მისცემს საშუალებას გამოაგზავნოთ შეტყობინებები შეტყობინებების შესახებ, ან გააუქმეთ შეტყობინებები',
- 'formats-are-supported' => ': ფორმატების მხარდაჭერა',
- 'forum-notification' => 'ფორუმი შეტყობინებების პარამეტრები',
- 'forum-notification-topic' => 'მიიღეთ შეტყობინება, როდესაც თემა დაიწყო, რომლითაც დაიწყე ახალი პოსტი',
- 'forum-notification-help' => 'კონტროლი, რომლის შეტყობინებებიც იგზავნება ფორუმის საქმიანობაზე. ეს პარამეტრების გადალახვაა, თუ რომელიმე ჯგუფს არ აძლევს საშუალებას გამოაგზავნოთ შეტყობინებები ფორუმის საქმიანობის შესახებ ან თუ გამორთეთ შეტყობინებები',
- 'forum-privacy' => 'ფორუმი პარამეტრები',
- 'forum-privacy-post' => 'ნება დართეთ მომხმარებლებს ფორუმზე განთავსებული პოსტების სია',
- 'forum-privacy-topic' => 'მომხმარებელთა მოსაზრებების ფორუმის დათვალიერება, რომელთა დაწყებაც დაიწყე',
- 'forum-help' => 'გააკონტროლეთ კონკრეტული ფორუმთან დაკავშირებული სტატისტიკის გაზიარება და ინფორმაცია იმ ჯგუფებთან, რომლებიც დაშვებულია თქვენს პროფილზე. ეს პარამეტრების გადალახვაა, თუ არ დაუშვებს რაიმე ჯგუფს თქვენი ფორუმთან დაკავშირებული სტატისტიკისა და ინფორმაციის ხელმისაწვდომობისთვის ან პირადი ინფორმაციის მიტანის შემთხვევაში',
- 'forum-signature' => 'ფორუმი ხელმოწერა',
- 'forums' => 'ფორუმები',
- 'general' => 'ზოგადი',
- 'general-settings' => 'ძირითადი პარამეტრები',
- 'gift-given' => 'საჩუქარი',
- 'gift-received' => 'საჩუქარი მიიღო',
- 'go-public' => 'წავიდეთ საჯარო',
- 'go-private' => 'წავიდეთ კერძო',
- 'history' => 'ისტორია',
- 'history-table' => 'ჩემი ისტორიის ცხრილი',
- 'hit-n-runs' => 'მოხვდა და ეშვება',
- 'hit-n-runs-count' => 'Hit და Run Count (ყველა დროის)',
- 'hit-n-runs-history' => 'ტორენტი მოხვდა და იწყებს ისტორიას',
- 'image' => 'გამოსახულება',
- 'important' => 'Მნიშვნელოვანი',
- 'important-info' => 'მნიშვნელოვანი ინფორმაცია',
- 'information' => 'ინფორმაცია',
- 'invite-friend' => 'მოიწვიე შენი მეგობარი (ელ.ფოსტის შეტყობინება საჭირო)',
- 'invite-tree' => 'მოიწვიე ხე',
- 'invites' => 'იწვევს',
- 'invites-banned' => 'შეცდომა: თქვენი მოწვევის უფლება შეზღუდულია',
- 'invites-banned-desc' => 'თუ ფიქრობთ, რომ ეს შეცდომაა, გთხოვთ დაუკავშირდეთ თანამშრომლებს!',
- 'invites-count' => 'თქვენ გაქვთ: ითვლიან ჟეტონები',
- 'invites-disabled' => 'ყურადღება: გააქტიურებულია რეგისტრაციის გაუქმების გამო',
- 'invites-disabled-desc' => 'გთხოვთ, შეამოწმოთ მალე!',
- 'invites-rules' => '- მხოლოდ იმ ადამიანებს მოიწვიე, რომლებსაც იცნობ და ენდობით.
- თქვენ პირადად პასუხისმგებლობას ეპატიჟებით მათთვის, ვინც მოიწვევა.
- Dont მოიწვიე, ჩვენ შეამოწმეთ ყველა მოწვეული მომხმარებელი.
- მოვაჭრე ან გაყიდვა იწვევს.
- თუ მიიწვიეს პიროვნება, რომელიც დაიბრუნა მოტყუების, სავაჭრო ანგარიშის ან გაყიდვის / სავაჭრო მიწვევის შესახებ, გაფრთხილებთ.
',
- 'invites-send' => 'იგზავნება გაგზავნა',
- 'last-login' => 'Უკანასკნელი შესვლა',
- 'locked' => 'ჩაკეტილი',
- 'locked-achievements' => 'ჩაკეტილი მიღწევები',
- 'member-since' => 'Წევრი წლიდან',
- 'members-desc' => 'რეგისტრირებული მომხმარებლების სია: სათაური ყველა ჯგუფთან. იპოვეთ მომხმარებელი ახლა.',
- 'mention-notification' => '@ შეტყობინებების შეტყობინებების პარამეტრები',
+ 'about' => 'შესახებ',
+ 'about-me' => 'Ჩემს შესახებ',
+ 'accepted-at' => 'მიღებულია',
+ 'accepted-by' => 'მიღებულია',
+ 'account-notification' => 'ანგარიშის შეტყობინებების პარამეტრები',
+ 'account-notification-follow' => 'მიიღეთ შეტყობინება, როდესაც მომხმარებელი თქვენს ანგარიშზე მიდის',
+ 'account-notification-unfollow' => 'მიიღე შეტყობინება, როდესაც მომხმარებელი არ იღებს თქვენს ანგარიშს',
+ 'account-notification-help' => 'თქვენი ანგარიშის შესახებ შეტყობინებების გაგზავნის კონტროლი. ეს პარამეტრების გადალახვაა, თუ არ დაუშვებს რაიმე ჯგუფს თქვენი ანგარიშის შესახებ შეტყობინებების გაგზავნა ან თუ გამორთე შეტყობინებები',
+ 'account-settings' => 'Ანგარიშის პარამეტრები',
+ 'achievement-privacy' => 'მიღწევის პარამეტრები',
+ 'achievement-privacy-list' => 'ნება მიეცი მომხმარებელს თქვენს მიღწევების სიას',
+ 'achievement-help' => 'გააკონტროლეთ კონკრეტული მიღწევების დაკავშირებული ინფორმაციის გაზიარება ჯგუფებთან, რომლებიც დაშვებულია თქვენს პროფილზე. ეს პარამეტრების გადალახვაა, თუ არ დაუშვებს რაიმე ჯგუფს თქვენი მიღწევების წვდომისთვის ან პირადი ინფორმაციის მისაღებად',
+ 'achievements' => 'მიღწევები',
+ 'active' => 'აქტიური',
+ 'active-table' => 'ჩემი აქტიური მაგიდა',
+ 'active-torrents' => 'აქტიური ტორენტები',
+ 'active-warning' => 'აქტიური გაფრთხილება',
+ 'active-warnings' => 'აქტიური გაფრთხილებები',
+ 'add-seedbox' => 'დამატება Seedbox',
+ 'all-torrents' => 'ყველა ტორენტი',
+ 'article-comments' => 'მუხლი კომენტარი გააკეთა',
+ 'avatar' => 'ავატარა',
+ 'avg-seedtime' => 'საშუალო Seedtime',
+ 'badges' => 'ბადები',
+ 'ban' => 'ბანკის მომხმარებელი',
+ 'ban-log' => 'პან შესვლა',
+ 'become-hidden' => 'გახდე დამალული',
+ 'become-visible' => 'გახდი ხილული',
+ 'bon' => 'BON',
+ 'bon-notification' => 'BON შეტყობინებების პარამეტრები',
+ 'bon-notification-gift' => 'მიიღეთ შეტყობინება, როდესაც მომხმარებელი გიხდით საჩუქრად',
+ 'bon-notification-help' => 'კონტროლი, რომელიც შეტყობინებას აგზავნის ბონ გარიგებებზე. ეს პარამეტრების გადალახვაა, თუ არ დაუშვებთ რომელიმე ჯგუფს BON- ის შეტყობინებების გასაგზავნად ან შეტყობინებების გაუქმების შემთხვევაში',
+ 'bookmarks' => 'სანიშნი',
+ 'bounty-given' => 'Bounty მოცემული',
+ 'bounty-received' => 'Bounty მიიღო',
+ 'can-chat' => 'შეგიძლიათ ესაუბროთ',
+ 'can-comment' => 'შენიშვნა',
+ 'can-download' => 'შეგიძლიათ ჩამოტვირთოთ',
+ 'can-invite' => 'შეუძლია მოიწვიოს',
+ 'can-request' => 'შეგიძლიათ მოითხოვოთ',
+ 'can-upload' => 'ატვირთვა შეუძლია',
+ 'certified-banker' => 'სერტიფიცირებული ბანკირი',
+ 'certified-banker-desc' => 'აქვს 50,000 ან მეტი ბანკის ბანკში',
+ 'certified-downloader' => 'სერტიფიცირებული Downloader',
+ 'certified-downloader-desc' => 'ჩამოტვირთული 100 ან მეტი ტორენტი!',
+ 'certified-seeder' => 'სერტიფიცირებული სელექტორი',
+ 'certified-seeder-desc' => 'დათესვა 150 ან მეტი ტორენტი!',
+ 'change-email' => 'ელ.ფოსტის შეცვლა',
+ 'change-email-help' => 'თქვენს ანგარიშს ხელახლა დაადასტურებთ, ელ-ფოსტის შეცვლის შემდეგ',
+ 'change-password' => 'Პაროლის შეცვლა',
+ 'change-password-help' => 'თქვენ კვლავ შემოხვიდეთ სისტემაში, შეცვალეთ თქვენი პაროლი',
+ 'client-ip-address' => 'კლიენტის IP მისამართი',
+ 'code' => 'კოდექსი',
+ 'comments' => 'კომენტარები',
+ 'created-on' => 'Შექმნილია',
+ 'credited-download' => 'დაკრედიტებული ჩამოტვირთვა',
+ 'credited-upload' => 'კრედიტის ატვირთვა',
+ 'current-password' => 'Მიმდინარე პაროლი',
+ 'custom-title' => 'საბაჟო დასახელება',
+ 'delete' => 'წაშალე მომხმარებელი',
+ 'disable-notifications' => 'შეტყობინებების გამორთვა',
+ 'disclaimer' => 'პასუხისმგებლობის უარყოფა',
+ 'disclaimer-info' => 'ჩვენ, ჩვეულებრივ, არ დავუმატოთ მომხმარებლები IP მისამართები, როგორიცაა ყველაზე ტრეკერები. დასძინა თქვენი seedbox IP ქვემოთ მოსალოდნელია, რომ თქვენ იცით თქვენი IP მისამართები ახლა ინახება ჩვენს ბაზაში თუ თქვენ წაშალოთ ჩანაწერი.',
+ 'disclaimer-info-bordered' => 'Seedbox IPs დამატებული შემდეგ გამოიწვევს გამოიწვიოს მაღალ სიჩქარე ტორენტის ტეგი ქვემოთ ჩამოთვლილ IP- ებისგან დათესილი',
+ 'download-bon' => 'ჩამოტვირთეთ მოხსნა BON მაღაზია',
+ 'download-recorded' => 'ჩაწერილი ჩამოტვირთვა',
+ 'download-true' => 'მართალია ჩამოტვირთვა',
+ 'downloads' => 'ჩამოტვირთვები',
+ 'edit' => 'რედაქტირება მომხმარებელი',
+ 'edit-profile' => 'Პროფილის რედაქტირება',
+ 'enable-notifications' => 'შეტყობინებების ჩართვა',
+ 'expired' => 'ვადაგასულია',
+ 'expires-on' => 'იწურება',
+ 'extra' => 'დამატებითი',
+ 'filled-request' => 'შევსებული წევრები ითხოვენ',
+ 'follow' => 'Გაყოლა',
+ 'follower-privacy' => 'მიმდევარი პარამეტრები',
+ 'follower-privacy-list' => 'მომხმარებლების ნებას რთავს თქვენი მიმდევრების სიის ნახვა',
+ 'follower-help' => 'გააკონტროლეთ კონკრეტული მიმდევრობის შესახებ ინფორმაციის გაზიარება იმ ჯგუფებთან, რომლებიც დაშვებულია თქვენს პროფილზე. ეს პარამეტრების გადალახვაა, თუ რომელიმე ჯგუფს არ მისცემს თქვენს მიმდევრებზე წვდომას ან პირადი წასვლას',
+ 'followers' => 'მიმდევრები',
+ 'following-notification' => 'მოყვება მომხმარებლის შეტყობინებების პარამეტრები',
+ 'following-notification-upload' => 'მიიღეთ შეტყობინება, როდესაც მოყვება მომხმარებელი ატვირთავს ტორენტს',
+ 'following-notification-help' => 'კონტროლი, რომელიც შეტყობინებას აგზავნის მომხმარებლის მოქმედებასთან დაკავშირებით. ეს პარამეტრების გადალახვაა, თუ რომელიმე ჯგუფს არ მისცემს საშუალებას გამოაგზავნოთ შეტყობინებები შეტყობინებების შესახებ, ან გააუქმეთ შეტყობინებები',
+ 'formats-are-supported' => ': ფორმატების მხარდაჭერა',
+ 'forum-notification' => 'ფორუმი შეტყობინებების პარამეტრები',
+ 'forum-notification-topic' => 'მიიღეთ შეტყობინება, როდესაც თემა დაიწყო, რომლითაც დაიწყე ახალი პოსტი',
+ 'forum-notification-help' => 'კონტროლი, რომლის შეტყობინებებიც იგზავნება ფორუმის საქმიანობაზე. ეს პარამეტრების გადალახვაა, თუ რომელიმე ჯგუფს არ აძლევს საშუალებას გამოაგზავნოთ შეტყობინებები ფორუმის საქმიანობის შესახებ ან თუ გამორთეთ შეტყობინებები',
+ 'forum-privacy' => 'ფორუმი პარამეტრები',
+ 'forum-privacy-post' => 'ნება დართეთ მომხმარებლებს ფორუმზე განთავსებული პოსტების სია',
+ 'forum-privacy-topic' => 'მომხმარებელთა მოსაზრებების ფორუმის დათვალიერება, რომელთა დაწყებაც დაიწყე',
+ 'forum-help' => 'გააკონტროლეთ კონკრეტული ფორუმთან დაკავშირებული სტატისტიკის გაზიარება და ინფორმაცია იმ ჯგუფებთან, რომლებიც დაშვებულია თქვენს პროფილზე. ეს პარამეტრების გადალახვაა, თუ არ დაუშვებს რაიმე ჯგუფს თქვენი ფორუმთან დაკავშირებული სტატისტიკისა და ინფორმაციის ხელმისაწვდომობისთვის ან პირადი ინფორმაციის მიტანის შემთხვევაში',
+ 'forum-signature' => 'ფორუმი ხელმოწერა',
+ 'forums' => 'ფორუმები',
+ 'general' => 'ზოგადი',
+ 'general-settings' => 'ძირითადი პარამეტრები',
+ 'gift-given' => 'საჩუქარი',
+ 'gift-received' => 'საჩუქარი მიიღო',
+ 'go-public' => 'წავიდეთ საჯარო',
+ 'go-private' => 'წავიდეთ კერძო',
+ 'history' => 'ისტორია',
+ 'history-table' => 'ჩემი ისტორიის ცხრილი',
+ 'hit-n-runs' => 'მოხვდა და ეშვება',
+ 'hit-n-runs-count' => 'Hit და Run Count (ყველა დროის)',
+ 'hit-n-runs-history' => 'ტორენტი მოხვდა და იწყებს ისტორიას',
+ 'image' => 'გამოსახულება',
+ 'important' => 'Მნიშვნელოვანი',
+ 'important-info' => 'მნიშვნელოვანი ინფორმაცია',
+ 'information' => 'ინფორმაცია',
+ 'invite-friend' => 'მოიწვიე შენი მეგობარი (ელ.ფოსტის შეტყობინება საჭირო)',
+ 'invite-tree' => 'მოიწვიე ხე',
+ 'invites' => 'იწვევს',
+ 'invites-banned' => 'შეცდომა: თქვენი მოწვევის უფლება შეზღუდულია',
+ 'invites-banned-desc' => 'თუ ფიქრობთ, რომ ეს შეცდომაა, გთხოვთ დაუკავშირდეთ თანამშრომლებს!',
+ 'invites-count' => 'თქვენ გაქვთ: ითვლიან ჟეტონები',
+ 'invites-disabled' => 'ყურადღება: გააქტიურებულია რეგისტრაციის გაუქმების გამო',
+ 'invites-disabled-desc' => 'გთხოვთ, შეამოწმოთ მალე!',
+ 'invites-rules' => '- მხოლოდ იმ ადამიანებს მოიწვიე, რომლებსაც იცნობ და ენდობით.
- თქვენ პირადად პასუხისმგებლობას ეპატიჟებით მათთვის, ვინც მოიწვევა.
- Dont მოიწვიე, ჩვენ შეამოწმეთ ყველა მოწვეული მომხმარებელი.
- მოვაჭრე ან გაყიდვა იწვევს.
- თუ მიიწვიეს პიროვნება, რომელიც დაიბრუნა მოტყუების, სავაჭრო ანგარიშის ან გაყიდვის / სავაჭრო მიწვევის შესახებ, გაფრთხილებთ.
',
+ 'invites-send' => 'იგზავნება გაგზავნა',
+ 'last-login' => 'Უკანასკნელი შესვლა',
+ 'locked' => 'ჩაკეტილი',
+ 'locked-achievements' => 'ჩაკეტილი მიღწევები',
+ 'member-since' => 'Წევრი წლიდან',
+ 'members-desc' => 'რეგისტრირებული მომხმარებლების სია: სათაური ყველა ჯგუფთან. იპოვეთ მომხმარებელი ახლა.',
+ 'mention-notification' => '@ შეტყობინებების შეტყობინებების პარამეტრები',
'mention-notification-article-comment' => 'მიიღე შეტყობინება, როდესაც თქვენ ხართ სტატიის კომენტარში',
'mention-notification-torrent-comment' => 'მიიღე შეტყობინება, როდესაც ხარ ტორენტის კომენტარში',
'mention-notification-request-comment' => 'მიიღე შეტყობინება, როდესაც მოთხოვნის შენიშვნაში შედიხართ',
- 'mention-notification-forum-post' => 'მიიღე შეტყობინება, როდესაც თქვენ ხართ ფორუმის განყოფილებაში',
- 'mention-notification-help' => 'კონტროლი, რომლის შეტყობინებებიც იგზავნება, როდესაც მომხმარებელს მიმართავს. ეს პარამეტრების გადალახვაა, თუ არ დაუშვებს რაიმე ჯგუფს შეტყობინებების გასაგზავნად, თუ მომხმარებელი გაგაჩნიათ ან თუ გამორთვა შეტყობინებები',
- 'moderated-by' => 'მოდერატორი: mod',
- 'my-bonus-points' => 'ჩემი ბონუს ქულა',
- 'my-bookmarks' => 'ჩემი სანიშნეები',
- 'my-fl-tokens' => 'ჩემი FL სიგნალი',
- 'my-general-settings' => 'ჩემი ზოგადი პარამეტრები',
- 'my-notification' => 'ჩემი შეტყობინება',
- 'my-notification-settings' => 'ჩემი შეტყობინებების პარამეტრები',
- 'my-privacy' => 'ჩემი კონფიდენციალობა',
- 'my-privacy-settings' => 'ჩემი კონფიდენციალურობის პარამეტრები',
- 'my-profile' => 'Ჩემი პროფილი',
- 'my-requested' => 'ჩემი მოთხოვნა',
- 'my-security' => 'ჩემი უსაფრთხოება',
- 'my-security-settings' => 'ჩემი უსაფრთხოების პარამეტრები',
- 'my-seedboxes' => 'ჩემი Seedboxes',
- 'my-settings' => 'ჩემი პარამეტრები',
- 'my-wishlist' => 'ჩემი სურვილების სია',
- 'no-logs' => 'ამ მომხმარებლის მონაცემთა ბაზაში არ მოიწვიოთ ჟურნალი!',
- 'no-seedboxes' => 'არა სათესლეები 😔',
- 'not-authorized' => 'ამ გვერდის სანახავად არ არის უფლებამოსილი. ეს წევრი ურჩევნია დაიმალოს, როგორც ninja!',
- 'note' => 'შენიშვნა',
- 'notification' => 'შეტყობინება',
- 'notification-settings' => 'შეტყობინებების პარამეტრები',
- 'notification-from-account' => 'მიიღეთ ანგარიშის შეტყობინებები',
- 'notification-from-account-help' => 'თქვენ მიიღებთ მხოლოდ ანგარიშის შეტყობინებებს სისტემის, პერსონალისა და შემდეგ ჯგუფებს. ეს პარამეტრების გადალახვაა, თუ გამორთვა შეტყობინებები',
- 'notification-from-bon' => 'მიღება BON შეტყობინებები დან',
- 'notification-from-bon-help' => 'თქვენ მიიღებთ მხოლოდ BON შეტყობინებას სისტემის, პერსონალისა და შემდეგი ჯგუფებისგან. ეს პარამეტრების გადალახვაა, თუ გამორთვა შეტყობინებები',
- 'notification-from-following' => 'მიმღები მომხმარებლის შეტყობინებების მიღება',
- 'notification-from-following-help' => 'თქვენ მიიღებთ შემდეგ შეტყობინებებს შემდეგ ჯგუფებს. ეს პარამეტრების გადალახვაა, თუ გამორთვა შეტყობინებები',
- 'notification-from-forum' => 'ფორუმის შეტყობინებების მიღება',
- 'notification-from-forum-help' => 'თქვენ მხოლოდ მიიღებთ ფორუმს შეტყობინებებს სისტემის, პერსონალისა და შემდეგი ჯგუფებისგან. ეს პარამეტრების გადალახვაა, თუ გამორთვა შეტყობინებები',
- 'notification-from-subscription' => 'მიიღეთ გამოწერა შეტყობინებები დან',
- 'notification-from-subscription-help' => 'თქვენ მხოლოდ მიიღებთ ფორუმს შეტყობინებებს სისტემის, პერსონალისა და შემდეგი ჯგუფებისგან. ეს პარამეტრების გადალახვაა, თუ გამორთვა შეტყობინებები',
- 'notification-from-torrent' => 'მიიღეთ დავალებების შეტყობინებები',
- 'notification-from-torrent-help' => 'თქვენ მხოლოდ მიიღებთ ტორენტი შეტყობინებებს სისტემის, პერსონალისა და შემდეგი ჯგუფებისგან. ეს პარამეტრების გადალახვაა, თუ გამორთვა შეტყობინებები',
- 'notification-from-mention' => 'მიღება @ მიღება შეტყობინებები',
- 'notification-from-mention-help' => 'თქვენ მიიღებთ მხოლოდ სისტემის შეტყობინებებს სისტემის, პერსონალისა და შემდეგ ჯგუფებს. ეს პარამეტრების გადალახვაა, თუ გამორთვა შეტყობინებები',
- 'notification-from-request' => 'განაცხადის მიღება',
- 'notification-from-request-help' => 'თქვენ მიიღებთ მხოლოდ შეტყობინებების მიღებას სისტემის, პერსონალისა და შემდეგ ჯგუფებისგან. ეს პარამეტრების გადალახვაა, თუ გამორთვა შეტყობინებები',
- 'notifications' => 'შეტყობინებები',
- 'offline' => 'მომხმარებელი ჩართულია!',
- 'online' => 'მომხმარებელი ონლაინშია!',
- 'options' => 'Პარამეტრები',
- 'other-help' => 'გააკონტროლეთ სხვა სტატისტიკისა და ინფორმაციის გაზიარება, რომლებიც დაშვებულია თქვენს პროფილზე. ეს პარამეტრების გადალახვაა, თუ არ დაუშვებს რაიმე ჯგუფს თქვენი სხვა სტატისტიკისა და ინფორმაციის წვდომის უფლება, ან თუ პირადი წასვლა',
- 'other-privacy' => 'სხვა პარამეტრები',
- 'other-privacy-online' => 'მომხმარებლების გაცნობა თქვენს ონლაინ მომხმარებელთა ბლოკში',
- 'passkey' => 'PID',
- 'passkey-warning' => 'PID ჰგავს თქვენს პაროლს, შეინახეთ იგი უსაფრთხოდ!',
- 'pending-achievements' => 'მიღწეული მიღწევები',
- 'per-torrent' => 'პოსტი ტორენტი',
- 'posts' => 'პოსტები',
- 'posts-posted' => 'ფორუმი პოსტები გამოგზავნილია',
- 'privacy' => 'კონფიდენციალურობა',
- 'privacy-settings' => 'Კონფიდენციალურობის პარამეტრები',
- 'private-info' => 'პირადი ინფორმაცია',
- 'private-forum-profile' => 'ყურადღება: ამ წევრებს თემატიკა და პოსტი ისტორია დაიყარა PRIVATE!',
- 'private-profile' => 'ყურადღება: ეს პროფილი შეიქმნა PRIVATE!',
- 'profile' => 'პროფილი',
- 'profile-desc' => 'მომხმარებელი: მომხმარებლის პროფილი რეგისტრირებული: სათაური',
- 'profile-privacy' => 'პროფილის პარამეტრები',
- 'profile-privacy-torrent-count' => 'გაუზიარეთ თქვენი საერთო რაოდენობის ჩამოტვირთვები, ატვირთვები, თესლები და ჩანთები',
- 'profile-privacy-torrent-ratio' => 'თქვენი საერთო ატვირთვის / ჩამოტვირთვის მონაცემების გაზიარება დაფიქსირებული თანაფარდობით',
- 'profile-privacy-torrent-seed' => 'გაუზიარეთ თქვენი სათესლე დრო და საშუალო წილი',
- 'profile-privacy-title' => 'გაუზიარეთ თქვენი პირადი სათაური ინფორმაცია',
- 'profile-privacy-about' => 'გაუზიარეთ თქვენი პერსონალური ინფორმაცია ჩემს შესახებ',
- 'profile-privacy-bon-extra' => 'გაუზიარეთ თქვენი BON სტატისტიკა',
- 'profile-privacy-comment-extra' => 'გაუზიარეთ თქვენი კომენტარი სტატისტიკა',
- 'profile-privacy-forum-extra' => 'გაუზიარეთ თქვენი სტატისტიკა სტატისტიკა',
- 'profile-privacy-request-extra' => 'თქვენი მოთხოვნის სტატისტიკის გაზიარება',
- 'profile-privacy-torrent-extra' => 'გაუზიარეთ თქვენი ტორენტი სტატისტიკა',
- 'profile-privacy-badge' => 'გაზიარეთ თქვენი სამკერდე ნიშნები',
- 'profile-privacy-achievement' => 'გაუზიარეთ თქვენი ბოლო მიღწევები',
- 'profile-privacy-follower' => 'გაუზიარეთ თქვენი ბოლოდროინდელი მიმდევრები',
- 'profile-privacy-warning' => 'გაუზიარეთ თქვენი H & R გაფრთხილებები',
- 'profile-privacy-help' => 'კონტროლი, რომელიც სტატისტიკასა და ინფორმაციას შეიცავს თქვენს პროფილში. ეს პარამეტრების გადალახვაა, თუ არ დაუშვებს რაიმე ჯგუფს თქვენს პროფილზე წვდომისთვის ან პირადი ინფორმაციის მისაღებად',
- 'public-info' => 'საჯარო ინფორმაცია',
- 'recent-achievements' => 'ბოლო მიღწევები',
- 'recent-followers' => 'ბოლო მიმდევრები',
- 'registration-date' => 'Რეგისტრაციის თარიღი',
- 'report' => 'ანგარიში',
- 'request-help' => 'გააკონტროლეთ კონკრეტული მოთხოვნის დაკავშირებული სტატისტიკის გაზიარება და ინფორმაცია თქვენს ჯგუფებთან, რომლებიც დაშვებულია თქვენი პროფილისთვის. ეს პარამეტრების გადალახვაა, თუ რომელიმე ჯგუფს არ დაუშვებს თქვენს მიერ მოთხოვნილი სტატისტიკისა და ინფორმაციის წვდომის უფლება, ან გადადით პირად',
- 'request' => 'მოთხოვნა',
- 'requested' => 'Მოთხოვნილი',
- 'requests' => 'მოთხოვნები',
- 'request-comments' => 'მოთხოვნა გააკეთა',
- 'request-notification' => 'შეტყობინებების პარამეტრების მოთხოვნა',
- 'request-notification-bounty' => 'მიიღე შეტყობინება, როდესაც მოთხოვნილი ტორენტი იღებს ახალ ბაზას',
- 'request-notification-comment' => 'მიიღე შეტყობინება, როდესაც მოთხოვნილი ტორენტი იღებს ახალ კომენტარს',
- 'request-notification-fill' => 'მიიღეთ შეტყობინება, როდესაც მოთხოვნილი ტორენტი ივსება',
- 'request-notification-fill-approve' => 'მიიღე შეტყობინება, როდესაც მოთხოვნილი ტორენტი შევსება დამტკიცდება',
- 'request-notification-fill-reject' => 'მიიღე შეტყობინება, როდესაც მოთხოვნილი ტორენტი შევსება უარყოფილია',
- 'request-notification-claim' => 'მიიღე შეტყობინება, როდესაც მოთხოვნილი ტორენტი იღებს მოთხოვნას',
- 'request-notification-unclaim' => 'მიიღე შეტყობინება, როდესაც მოთხოვნილი ტორენტი იღებს დაუყონებელს',
- 'request-notification-help' => 'კონტროლი, რომლის შეტყობინებებიც გაიგზავნება მოთხოვნის შემთხვევაში. ეს პარამეტრების გადალახვაა, თუ არ დაუშვებს რაიმე ჯგუფს განაცხადების გაგზავნის შესახებ შეტყობინებების გაგზავნა ან თუ გამორთე შეტყობინებები',
- 'request-privacy' => 'პარამეტრების მოთხოვნა',
- 'request-privacy-requested' => 'ნება დართეთ მომხმარებლებს, რომ მიიღოთ მოთხოვნის სია, რომლებიც თქვენ გააკეთეთ',
- 'reset-passkey' => 'პაროლის გადატვირთვა (PID)',
- 'reset-passkey-help' => 'თქვენ უნდა ხელახლა ჩამოტვირთოთ / ხელახლა ატვირთოთ ყველა თქვენი აქტიური ტორენტი, გადატვირთვის შემდეგ PID',
- 'reset-rss' => 'RSS გასაღების გადატვირთვა (RID)',
- 'reset-rss-help' => 'RID- ის გადატვირთვის შემდეგ, თქვენი აქტიური RSS არხების ხელახლა ჩატვირთვა მოგიწევთ',
- 'resurrections' => 'მკვდრები',
- 'search' => 'სწრაფი ძებნა მომხმარებლის სახელით',
- 'security' => 'უსაფრთხოება',
- 'security-settings' => 'Უსაფრთხოების პარამეტრები',
- 'seedboxes' => 'Seedboxes',
- 'seeds' => 'თესლი',
- 'send-invite' => 'პირადი მოწვევა',
- 'sender' => 'გამგზავნი',
- 'settings' => 'პარამეტრები',
- 'show-passkey' => 'PID- ის ჩვენება',
- 'staff-noted' => 'თანამშრომლები',
- 'statistics' => 'სტატისტიკა',
- 'subscription-notification' => 'გამოწერა შეტყობინებების პარამეტრები',
- 'subscription-notification-forum' => 'მიიღე შეტყობინება, როდესაც გამოწერილი ფორუმი იღებს ახალ თემას',
- 'subscription-notification-topic' => 'მიიღე შეტყობინება, როდესაც გამოწერილი თემა იღებს ახალ პოსტს',
- 'subscription-notification-help' => 'თქვენი შეტყობინებების შესახებ შეტყობინებების გაგზავნის კონტროლი. ეს პარამეტრების გადალახვაა, თუ არ დაუშვებთ ჯგუფებს, რომ გააგზავნოთ შეტყობინებები თქვენს ხელმოწერებთან დაკავშირებით ან გააუქმეთ შეტყობინებები',
- 'thanks-given' => 'მადლობა',
- 'thanks-received' => 'მადლობა მიიღო',
- 'tips-given' => 'მინიშნებები',
- 'tips-received' => 'მიღებული რჩევები',
- 'title' => 'სათაური',
- 'top-bankers' => 'ყველაზე ბანკირები',
- 'top-downloaders-data' => 'ყველაზე ჩამოტვირთვები (მონაცემები)',
- 'top-leechers' => 'Top Leechers',
- 'top-leechers-count' => 'ყველაზე ლეჩერები (გრაფი)',
- 'top-seeders' => 'ყველაზე სელექტორები',
- 'top-seeders-count' => 'ყველაზე სელექტორები (გრაფი)',
- 'top-seeding-size' => 'ყველაზე მეწამული (ზომა)',
- 'top-seedtime' => 'ყველაზე თესლი',
- 'top-uploaders-data' => 'ყველაზე ატვირთული მომხმარებლები (მონაცემები)',
- 'top-uploaders-count' => 'ყველაზე ატვირთვა (გრაფი)',
- 'topics' => 'თემები',
- 'topics-started' => 'ფორუმი თემები დაიწყო',
- 'torrent-comments' => 'ტორენტი კომენტარები გააკეთა',
- 'torrent-help' => 'გააკონტროლეთ კონკრეტული ტორენტის მონათესავე სტატისტიკის გაზიარება და ინფორმაცია თქვენს ჯგუფებთან, რომლებიც დაშვებულია თქვენს პროფილზე. ეს პარამეტრების გადალახვაა, თუ არ დაუშვებს რაიმე ჯგუფს თქვენი ტორენტის მონათესავე სტატისტიკისა და ინფორმაციის წვდომისთვის, ან პირადი ინფორმაციის მიღებაზე',
- 'torrent-notification' => 'ტორენტის შეტყობინების პარამეტრები',
- 'torrent-notification-comment' => 'მიიღეთ შეტყობინება, როდესაც ატვირთული ტორენტი იღებს ახალ კომენტარს',
- 'torrent-notification-thank' => 'მიიღეთ შეტყობინება, როდესაც ატვირთული ტორენტი იღებს ახალ მადლობას',
- 'torrent-notification-tip' => 'ატვირთეთ შეტყობინება, როდესაც ატვირთული ტორენტი იღებს ახალ წვეტს',
- 'torrent-notification-help' => 'კონტროლი, რომელიც შეტყობინებას აგზავნის ტორენტების საქმიანობის შესახებ. ეს პარამეტრების გადალახვაა, თუ არ დაუშვებს რაიმე ჯგუფს, რომ გააგზავნოთ შეტყობინებები ტორენტულ საქმიანობასთან დაკავშირებით ან გააუქმეთ შეტყობინებები',
- 'torrent-privacy' => 'ტორენტის პარამეტრები',
- 'torrent-privacy-download' => 'ნება დართეთ მომხმარებელს, რომ გადმოწერილი ტორენტების ჩამონათვალის ნახვა',
- 'torrent-privacy-upload' => 'ნება დართეთ მომხმარებლებს, რომ ატვირთოთ ტორენტების სია',
- 'torrent-privacy-peer' => 'ნება დართეთ მომხმარებლებს დაათვალიეროთ ტორენტის ისტორიის ცხრილში',
- 'torrents' => 'ტორენტები',
- 'torrents-history' => 'ტორენტების ისტორია',
- 'total-download' => 'სულ ჩამოტვირთვა',
- 'total-downloads' => 'სულ ჩამოტვირთვები',
- 'total-leeching' => 'სულ leeching',
- 'total-seeding' => 'სულ სეზონი',
- 'total-seedtime' => 'სულ Seedtime',
- 'total-upload' => 'სულ ატვირთვა',
- 'total-uploads' => 'სულ ატვირთვები',
- 'unban' => 'მომხმარებელი არ არის',
- 'unfollow' => 'დაუცველი',
- 'unlocked' => 'გახსნილია',
- 'unlocked-achievements' => 'Unlocked მიღწევები',
- 'unsatisfieds' => 'უშედეგოდ',
- 'upload-bon' => 'ატვირთვა დამატებულია BON მაღაზიადან',
- 'upload-recorded' => 'ჩაწერილი ატვირთვა',
- 'upload-true' => 'True ატვირთვა',
- 'uploads' => 'ატვირთვა',
- 'uploads-table' => 'ატვირთვა ცხრილი',
- 'user' => 'მომხმარებელი',
- 'user-id' => 'მომხმარებლის იდენტიფიკაცია',
- 'username-seedbox' => 'ნიკი Seedbox',
- 'visible-to-achievement' => 'მიღწევები ჩანს',
- 'visible-to-achievement-help' => 'თქვენი მიღწევები მხოლოდ ხილული იქნება პერსონალისთვის და შემდეგი ჯგუფებისთვის. ამ პარამეტრების გადალახვაა თუ მიდიხარ პირადი',
- 'visible-to-follower' => 'მიმდევრები ხილულია',
- 'visible-to-follower-help' => 'თქვენი მიმდევრები მხოლოდ პერსონალისა და შემდეგი ჯგუფებისთვის ხილული იქნება. ამ პარამეტრების გადალახვაა თუ მიდიხარ პირადი',
- 'visible-to-forum' => 'ფორუმი ინფორმაცია ხილულია',
- 'visible-to-forum-help' => 'თქვენი ფორუმის ინფორმაცია მხოლოდ პერსონალისა და შემდეგი ჯგუფებისთვის იქნება ხილული. ამ პარამეტრების გადალახვაა თუ მიდიხარ პირადი',
- 'visible-to-other' => 'სხვა ხილული',
- 'visible-to-other-help' => 'თქვენს ანგარიშთან დაკავშირებული სხვა ინფორმაცია მხოლოდ პერსონალისა და შემდეგი ჯგუფებისთვის იქნება ხილული. ეს პარამეტრების გადალახვაა, თუ წახვალთ პირადი ან თუ დამალული',
- 'visible-to-profile' => 'პროფილის ხილვა',
- 'visible-to-profile-help' => 'თქვენი პროფილი მხოლოდ პერსონალისა და შემდეგ ჯგუფების ხილვადია. ამ პარამეტრების გადალახვაა თუ მიდიხარ პირადი',
- 'visible-to-request' => 'ინფორმაციის მოძიება საჭიროა',
- 'visible-to-request-help' => 'თქვენი მოთხოვნის ინფორმაცია მხოლოდ პერსონალისა და შემდეგი ჯგუფებისთვის იქნება ხილული. ამ პარამეტრების გადალახვაა თუ მიდიხარ პირადი',
- 'visible-to-torrent' => 'Torrent ინფორმაცია ხილულია',
- 'visible-to-torrent-help' => 'თქვენი ტორენტი ინფორმაცია მხოლოდ პერსონალისა და შემდეგი ჯგუფებისთვის ხილული იქნება. ეს პარამეტრების გადალახვაა, თუ წახვალთ პირადი ან თუ დამალული',
- 'warned-on' => 'გააფრთხილა',
- 'warning' => 'გაფრთხილება',
- 'warning-log' => 'გაფრთხილების შესვლა',
- 'wishlist' => 'სასურველია',
+ 'mention-notification-forum-post' => 'მიიღე შეტყობინება, როდესაც თქვენ ხართ ფორუმის განყოფილებაში',
+ 'mention-notification-help' => 'კონტროლი, რომლის შეტყობინებებიც იგზავნება, როდესაც მომხმარებელს მიმართავს. ეს პარამეტრების გადალახვაა, თუ არ დაუშვებს რაიმე ჯგუფს შეტყობინებების გასაგზავნად, თუ მომხმარებელი გაგაჩნიათ ან თუ გამორთვა შეტყობინებები',
+ 'moderated-by' => 'მოდერატორი: mod',
+ 'my-bonus-points' => 'ჩემი ბონუს ქულა',
+ 'my-bookmarks' => 'ჩემი სანიშნეები',
+ 'my-fl-tokens' => 'ჩემი FL სიგნალი',
+ 'my-general-settings' => 'ჩემი ზოგადი პარამეტრები',
+ 'my-notification' => 'ჩემი შეტყობინება',
+ 'my-notification-settings' => 'ჩემი შეტყობინებების პარამეტრები',
+ 'my-privacy' => 'ჩემი კონფიდენციალობა',
+ 'my-privacy-settings' => 'ჩემი კონფიდენციალურობის პარამეტრები',
+ 'my-profile' => 'Ჩემი პროფილი',
+ 'my-requested' => 'ჩემი მოთხოვნა',
+ 'my-security' => 'ჩემი უსაფრთხოება',
+ 'my-security-settings' => 'ჩემი უსაფრთხოების პარამეტრები',
+ 'my-seedboxes' => 'ჩემი Seedboxes',
+ 'my-settings' => 'ჩემი პარამეტრები',
+ 'my-wishlist' => 'ჩემი სურვილების სია',
+ 'no-logs' => 'ამ მომხმარებლის მონაცემთა ბაზაში არ მოიწვიოთ ჟურნალი!',
+ 'no-seedboxes' => 'არა სათესლეები 😔',
+ 'not-authorized' => 'ამ გვერდის სანახავად არ არის უფლებამოსილი. ეს წევრი ურჩევნია დაიმალოს, როგორც ninja!',
+ 'note' => 'შენიშვნა',
+ 'notification' => 'შეტყობინება',
+ 'notification-settings' => 'შეტყობინებების პარამეტრები',
+ 'notification-from-account' => 'მიიღეთ ანგარიშის შეტყობინებები',
+ 'notification-from-account-help' => 'თქვენ მიიღებთ მხოლოდ ანგარიშის შეტყობინებებს სისტემის, პერსონალისა და შემდეგ ჯგუფებს. ეს პარამეტრების გადალახვაა, თუ გამორთვა შეტყობინებები',
+ 'notification-from-bon' => 'მიღება BON შეტყობინებები დან',
+ 'notification-from-bon-help' => 'თქვენ მიიღებთ მხოლოდ BON შეტყობინებას სისტემის, პერსონალისა და შემდეგი ჯგუფებისგან. ეს პარამეტრების გადალახვაა, თუ გამორთვა შეტყობინებები',
+ 'notification-from-following' => 'მიმღები მომხმარებლის შეტყობინებების მიღება',
+ 'notification-from-following-help' => 'თქვენ მიიღებთ შემდეგ შეტყობინებებს შემდეგ ჯგუფებს. ეს პარამეტრების გადალახვაა, თუ გამორთვა შეტყობინებები',
+ 'notification-from-forum' => 'ფორუმის შეტყობინებების მიღება',
+ 'notification-from-forum-help' => 'თქვენ მხოლოდ მიიღებთ ფორუმს შეტყობინებებს სისტემის, პერსონალისა და შემდეგი ჯგუფებისგან. ეს პარამეტრების გადალახვაა, თუ გამორთვა შეტყობინებები',
+ 'notification-from-subscription' => 'მიიღეთ გამოწერა შეტყობინებები დან',
+ 'notification-from-subscription-help' => 'თქვენ მხოლოდ მიიღებთ ფორუმს შეტყობინებებს სისტემის, პერსონალისა და შემდეგი ჯგუფებისგან. ეს პარამეტრების გადალახვაა, თუ გამორთვა შეტყობინებები',
+ 'notification-from-torrent' => 'მიიღეთ დავალებების შეტყობინებები',
+ 'notification-from-torrent-help' => 'თქვენ მხოლოდ მიიღებთ ტორენტი შეტყობინებებს სისტემის, პერსონალისა და შემდეგი ჯგუფებისგან. ეს პარამეტრების გადალახვაა, თუ გამორთვა შეტყობინებები',
+ 'notification-from-mention' => 'მიღება @ მიღება შეტყობინებები',
+ 'notification-from-mention-help' => 'თქვენ მიიღებთ მხოლოდ სისტემის შეტყობინებებს სისტემის, პერსონალისა და შემდეგ ჯგუფებს. ეს პარამეტრების გადალახვაა, თუ გამორთვა შეტყობინებები',
+ 'notification-from-request' => 'განაცხადის მიღება',
+ 'notification-from-request-help' => 'თქვენ მიიღებთ მხოლოდ შეტყობინებების მიღებას სისტემის, პერსონალისა და შემდეგ ჯგუფებისგან. ეს პარამეტრების გადალახვაა, თუ გამორთვა შეტყობინებები',
+ 'notifications' => 'შეტყობინებები',
+ 'offline' => 'მომხმარებელი ჩართულია!',
+ 'online' => 'მომხმარებელი ონლაინშია!',
+ 'options' => 'Პარამეტრები',
+ 'other-help' => 'გააკონტროლეთ სხვა სტატისტიკისა და ინფორმაციის გაზიარება, რომლებიც დაშვებულია თქვენს პროფილზე. ეს პარამეტრების გადალახვაა, თუ არ დაუშვებს რაიმე ჯგუფს თქვენი სხვა სტატისტიკისა და ინფორმაციის წვდომის უფლება, ან თუ პირადი წასვლა',
+ 'other-privacy' => 'სხვა პარამეტრები',
+ 'other-privacy-online' => 'მომხმარებლების გაცნობა თქვენს ონლაინ მომხმარებელთა ბლოკში',
+ 'passkey' => 'PID',
+ 'passkey-warning' => 'PID ჰგავს თქვენს პაროლს, შეინახეთ იგი უსაფრთხოდ!',
+ 'pending-achievements' => 'მიღწეული მიღწევები',
+ 'per-torrent' => 'პოსტი ტორენტი',
+ 'posts' => 'პოსტები',
+ 'posts-posted' => 'ფორუმი პოსტები გამოგზავნილია',
+ 'privacy' => 'კონფიდენციალურობა',
+ 'privacy-settings' => 'Კონფიდენციალურობის პარამეტრები',
+ 'private-info' => 'პირადი ინფორმაცია',
+ 'private-forum-profile' => 'ყურადღება: ამ წევრებს თემატიკა და პოსტი ისტორია დაიყარა PRIVATE!',
+ 'private-profile' => 'ყურადღება: ეს პროფილი შეიქმნა PRIVATE!',
+ 'profile' => 'პროფილი',
+ 'profile-desc' => 'მომხმარებელი: მომხმარებლის პროფილი რეგისტრირებული: სათაური',
+ 'profile-privacy' => 'პროფილის პარამეტრები',
+ 'profile-privacy-torrent-count' => 'გაუზიარეთ თქვენი საერთო რაოდენობის ჩამოტვირთვები, ატვირთვები, თესლები და ჩანთები',
+ 'profile-privacy-torrent-ratio' => 'თქვენი საერთო ატვირთვის / ჩამოტვირთვის მონაცემების გაზიარება დაფიქსირებული თანაფარდობით',
+ 'profile-privacy-torrent-seed' => 'გაუზიარეთ თქვენი სათესლე დრო და საშუალო წილი',
+ 'profile-privacy-title' => 'გაუზიარეთ თქვენი პირადი სათაური ინფორმაცია',
+ 'profile-privacy-about' => 'გაუზიარეთ თქვენი პერსონალური ინფორმაცია ჩემს შესახებ',
+ 'profile-privacy-bon-extra' => 'გაუზიარეთ თქვენი BON სტატისტიკა',
+ 'profile-privacy-comment-extra' => 'გაუზიარეთ თქვენი კომენტარი სტატისტიკა',
+ 'profile-privacy-forum-extra' => 'გაუზიარეთ თქვენი სტატისტიკა სტატისტიკა',
+ 'profile-privacy-request-extra' => 'თქვენი მოთხოვნის სტატისტიკის გაზიარება',
+ 'profile-privacy-torrent-extra' => 'გაუზიარეთ თქვენი ტორენტი სტატისტიკა',
+ 'profile-privacy-badge' => 'გაზიარეთ თქვენი სამკერდე ნიშნები',
+ 'profile-privacy-achievement' => 'გაუზიარეთ თქვენი ბოლო მიღწევები',
+ 'profile-privacy-follower' => 'გაუზიარეთ თქვენი ბოლოდროინდელი მიმდევრები',
+ 'profile-privacy-warning' => 'გაუზიარეთ თქვენი H & R გაფრთხილებები',
+ 'profile-privacy-help' => 'კონტროლი, რომელიც სტატისტიკასა და ინფორმაციას შეიცავს თქვენს პროფილში. ეს პარამეტრების გადალახვაა, თუ არ დაუშვებს რაიმე ჯგუფს თქვენს პროფილზე წვდომისთვის ან პირადი ინფორმაციის მისაღებად',
+ 'public-info' => 'საჯარო ინფორმაცია',
+ 'recent-achievements' => 'ბოლო მიღწევები',
+ 'recent-followers' => 'ბოლო მიმდევრები',
+ 'registration-date' => 'Რეგისტრაციის თარიღი',
+ 'report' => 'ანგარიში',
+ 'request-help' => 'გააკონტროლეთ კონკრეტული მოთხოვნის დაკავშირებული სტატისტიკის გაზიარება და ინფორმაცია თქვენს ჯგუფებთან, რომლებიც დაშვებულია თქვენი პროფილისთვის. ეს პარამეტრების გადალახვაა, თუ რომელიმე ჯგუფს არ დაუშვებს თქვენს მიერ მოთხოვნილი სტატისტიკისა და ინფორმაციის წვდომის უფლება, ან გადადით პირად',
+ 'request' => 'მოთხოვნა',
+ 'requested' => 'Მოთხოვნილი',
+ 'requests' => 'მოთხოვნები',
+ 'request-comments' => 'მოთხოვნა გააკეთა',
+ 'request-notification' => 'შეტყობინებების პარამეტრების მოთხოვნა',
+ 'request-notification-bounty' => 'მიიღე შეტყობინება, როდესაც მოთხოვნილი ტორენტი იღებს ახალ ბაზას',
+ 'request-notification-comment' => 'მიიღე შეტყობინება, როდესაც მოთხოვნილი ტორენტი იღებს ახალ კომენტარს',
+ 'request-notification-fill' => 'მიიღეთ შეტყობინება, როდესაც მოთხოვნილი ტორენტი ივსება',
+ 'request-notification-fill-approve' => 'მიიღე შეტყობინება, როდესაც მოთხოვნილი ტორენტი შევსება დამტკიცდება',
+ 'request-notification-fill-reject' => 'მიიღე შეტყობინება, როდესაც მოთხოვნილი ტორენტი შევსება უარყოფილია',
+ 'request-notification-claim' => 'მიიღე შეტყობინება, როდესაც მოთხოვნილი ტორენტი იღებს მოთხოვნას',
+ 'request-notification-unclaim' => 'მიიღე შეტყობინება, როდესაც მოთხოვნილი ტორენტი იღებს დაუყონებელს',
+ 'request-notification-help' => 'კონტროლი, რომლის შეტყობინებებიც გაიგზავნება მოთხოვნის შემთხვევაში. ეს პარამეტრების გადალახვაა, თუ არ დაუშვებს რაიმე ჯგუფს განაცხადების გაგზავნის შესახებ შეტყობინებების გაგზავნა ან თუ გამორთე შეტყობინებები',
+ 'request-privacy' => 'პარამეტრების მოთხოვნა',
+ 'request-privacy-requested' => 'ნება დართეთ მომხმარებლებს, რომ მიიღოთ მოთხოვნის სია, რომლებიც თქვენ გააკეთეთ',
+ 'reset-passkey' => 'პაროლის გადატვირთვა (PID)',
+ 'reset-passkey-help' => 'თქვენ უნდა ხელახლა ჩამოტვირთოთ / ხელახლა ატვირთოთ ყველა თქვენი აქტიური ტორენტი, გადატვირთვის შემდეგ PID',
+ 'reset-rss' => 'RSS გასაღების გადატვირთვა (RID)',
+ 'reset-rss-help' => 'RID- ის გადატვირთვის შემდეგ, თქვენი აქტიური RSS არხების ხელახლა ჩატვირთვა მოგიწევთ',
+ 'resurrections' => 'მკვდრები',
+ 'search' => 'სწრაფი ძებნა მომხმარებლის სახელით',
+ 'security' => 'უსაფრთხოება',
+ 'security-settings' => 'Უსაფრთხოების პარამეტრები',
+ 'seedboxes' => 'Seedboxes',
+ 'seeds' => 'თესლი',
+ 'send-invite' => 'პირადი მოწვევა',
+ 'sender' => 'გამგზავნი',
+ 'settings' => 'პარამეტრები',
+ 'show-passkey' => 'PID- ის ჩვენება',
+ 'staff-noted' => 'თანამშრომლები',
+ 'statistics' => 'სტატისტიკა',
+ 'subscription-notification' => 'გამოწერა შეტყობინებების პარამეტრები',
+ 'subscription-notification-forum' => 'მიიღე შეტყობინება, როდესაც გამოწერილი ფორუმი იღებს ახალ თემას',
+ 'subscription-notification-topic' => 'მიიღე შეტყობინება, როდესაც გამოწერილი თემა იღებს ახალ პოსტს',
+ 'subscription-notification-help' => 'თქვენი შეტყობინებების შესახებ შეტყობინებების გაგზავნის კონტროლი. ეს პარამეტრების გადალახვაა, თუ არ დაუშვებთ ჯგუფებს, რომ გააგზავნოთ შეტყობინებები თქვენს ხელმოწერებთან დაკავშირებით ან გააუქმეთ შეტყობინებები',
+ 'thanks-given' => 'მადლობა',
+ 'thanks-received' => 'მადლობა მიიღო',
+ 'tips-given' => 'მინიშნებები',
+ 'tips-received' => 'მიღებული რჩევები',
+ 'title' => 'სათაური',
+ 'top-bankers' => 'ყველაზე ბანკირები',
+ 'top-downloaders-data' => 'ყველაზე ჩამოტვირთვები (მონაცემები)',
+ 'top-leechers' => 'Top Leechers',
+ 'top-leechers-count' => 'ყველაზე ლეჩერები (გრაფი)',
+ 'top-seeders' => 'ყველაზე სელექტორები',
+ 'top-seeders-count' => 'ყველაზე სელექტორები (გრაფი)',
+ 'top-seeding-size' => 'ყველაზე მეწამული (ზომა)',
+ 'top-seedtime' => 'ყველაზე თესლი',
+ 'top-uploaders-data' => 'ყველაზე ატვირთული მომხმარებლები (მონაცემები)',
+ 'top-uploaders-count' => 'ყველაზე ატვირთვა (გრაფი)',
+ 'topics' => 'თემები',
+ 'topics-started' => 'ფორუმი თემები დაიწყო',
+ 'torrent-comments' => 'ტორენტი კომენტარები გააკეთა',
+ 'torrent-help' => 'გააკონტროლეთ კონკრეტული ტორენტის მონათესავე სტატისტიკის გაზიარება და ინფორმაცია თქვენს ჯგუფებთან, რომლებიც დაშვებულია თქვენს პროფილზე. ეს პარამეტრების გადალახვაა, თუ არ დაუშვებს რაიმე ჯგუფს თქვენი ტორენტის მონათესავე სტატისტიკისა და ინფორმაციის წვდომისთვის, ან პირადი ინფორმაციის მიღებაზე',
+ 'torrent-notification' => 'ტორენტის შეტყობინების პარამეტრები',
+ 'torrent-notification-comment' => 'მიიღეთ შეტყობინება, როდესაც ატვირთული ტორენტი იღებს ახალ კომენტარს',
+ 'torrent-notification-thank' => 'მიიღეთ შეტყობინება, როდესაც ატვირთული ტორენტი იღებს ახალ მადლობას',
+ 'torrent-notification-tip' => 'ატვირთეთ შეტყობინება, როდესაც ატვირთული ტორენტი იღებს ახალ წვეტს',
+ 'torrent-notification-help' => 'კონტროლი, რომელიც შეტყობინებას აგზავნის ტორენტების საქმიანობის შესახებ. ეს პარამეტრების გადალახვაა, თუ არ დაუშვებს რაიმე ჯგუფს, რომ გააგზავნოთ შეტყობინებები ტორენტულ საქმიანობასთან დაკავშირებით ან გააუქმეთ შეტყობინებები',
+ 'torrent-privacy' => 'ტორენტის პარამეტრები',
+ 'torrent-privacy-download' => 'ნება დართეთ მომხმარებელს, რომ გადმოწერილი ტორენტების ჩამონათვალის ნახვა',
+ 'torrent-privacy-upload' => 'ნება დართეთ მომხმარებლებს, რომ ატვირთოთ ტორენტების სია',
+ 'torrent-privacy-peer' => 'ნება დართეთ მომხმარებლებს დაათვალიეროთ ტორენტის ისტორიის ცხრილში',
+ 'torrents' => 'ტორენტები',
+ 'torrents-history' => 'ტორენტების ისტორია',
+ 'total-download' => 'სულ ჩამოტვირთვა',
+ 'total-downloads' => 'სულ ჩამოტვირთვები',
+ 'total-leeching' => 'სულ leeching',
+ 'total-seeding' => 'სულ სეზონი',
+ 'total-seedtime' => 'სულ Seedtime',
+ 'total-upload' => 'სულ ატვირთვა',
+ 'total-uploads' => 'სულ ატვირთვები',
+ 'unban' => 'მომხმარებელი არ არის',
+ 'unfollow' => 'დაუცველი',
+ 'unlocked' => 'გახსნილია',
+ 'unlocked-achievements' => 'Unlocked მიღწევები',
+ 'unsatisfieds' => 'უშედეგოდ',
+ 'upload-bon' => 'ატვირთვა დამატებულია BON მაღაზიადან',
+ 'upload-recorded' => 'ჩაწერილი ატვირთვა',
+ 'upload-true' => 'True ატვირთვა',
+ 'uploads' => 'ატვირთვა',
+ 'uploads-table' => 'ატვირთვა ცხრილი',
+ 'user' => 'მომხმარებელი',
+ 'user-id' => 'მომხმარებლის იდენტიფიკაცია',
+ 'username-seedbox' => 'ნიკი Seedbox',
+ 'visible-to-achievement' => 'მიღწევები ჩანს',
+ 'visible-to-achievement-help' => 'თქვენი მიღწევები მხოლოდ ხილული იქნება პერსონალისთვის და შემდეგი ჯგუფებისთვის. ამ პარამეტრების გადალახვაა თუ მიდიხარ პირადი',
+ 'visible-to-follower' => 'მიმდევრები ხილულია',
+ 'visible-to-follower-help' => 'თქვენი მიმდევრები მხოლოდ პერსონალისა და შემდეგი ჯგუფებისთვის ხილული იქნება. ამ პარამეტრების გადალახვაა თუ მიდიხარ პირადი',
+ 'visible-to-forum' => 'ფორუმი ინფორმაცია ხილულია',
+ 'visible-to-forum-help' => 'თქვენი ფორუმის ინფორმაცია მხოლოდ პერსონალისა და შემდეგი ჯგუფებისთვის იქნება ხილული. ამ პარამეტრების გადალახვაა თუ მიდიხარ პირადი',
+ 'visible-to-other' => 'სხვა ხილული',
+ 'visible-to-other-help' => 'თქვენს ანგარიშთან დაკავშირებული სხვა ინფორმაცია მხოლოდ პერსონალისა და შემდეგი ჯგუფებისთვის იქნება ხილული. ეს პარამეტრების გადალახვაა, თუ წახვალთ პირადი ან თუ დამალული',
+ 'visible-to-profile' => 'პროფილის ხილვა',
+ 'visible-to-profile-help' => 'თქვენი პროფილი მხოლოდ პერსონალისა და შემდეგ ჯგუფების ხილვადია. ამ პარამეტრების გადალახვაა თუ მიდიხარ პირადი',
+ 'visible-to-request' => 'ინფორმაციის მოძიება საჭიროა',
+ 'visible-to-request-help' => 'თქვენი მოთხოვნის ინფორმაცია მხოლოდ პერსონალისა და შემდეგი ჯგუფებისთვის იქნება ხილული. ამ პარამეტრების გადალახვაა თუ მიდიხარ პირადი',
+ 'visible-to-torrent' => 'Torrent ინფორმაცია ხილულია',
+ 'visible-to-torrent-help' => 'თქვენი ტორენტი ინფორმაცია მხოლოდ პერსონალისა და შემდეგი ჯგუფებისთვის ხილული იქნება. ეს პარამეტრების გადალახვაა, თუ წახვალთ პირადი ან თუ დამალული',
+ 'warned-on' => 'გააფრთხილა',
+ 'warning' => 'გაფრთხილება',
+ 'warning-log' => 'გაფრთხილების შესვლა',
+ 'wishlist' => 'სასურველია',
];
diff --git a/lang/ka/validation.php b/lang/ka/validation.php
index 6a67e707d..a799e1ae8 100644
--- a/lang/ka/validation.php
+++ b/lang/ka/validation.php
@@ -23,108 +23,108 @@ return [
|
*/
- 'accepted' => ':attribute უნდა იყოს მონიშნული.',
- 'active_url' => ':attribute უნდა იყოს URL მისამართი.',
- 'after' => ':attribute უნდა იყოს :date-ის შემდეგ.',
- 'after_or_equal' => ':attribute უნდა იყოს :date-ის შემდეგ ან მისი ტოლი.',
- 'alpha' => ':attribute უნდა შეიცავდეს მხოლოდ ასოებს.',
- 'alpha_dash' => ':attribute უნდა შეიცავდეს მხოლოდ ასოებს, რიცხვებს და ტირეებს.',
- 'alpha_num' => ':attribute უნდა შეიცავდეს მხოლოდ ასოებს და რიცხვებს.',
- 'array' => ':attribute უნდა იყოს მასივი.',
- 'before' => ':attribute უნდა იყოს :date-მდე.',
- 'before_or_equal' => ':attribute უნდა იყოს :date-მდე ან მისი ტოლი.',
- 'between' => [
+ 'accepted' => ':attribute უნდა იყოს მონიშნული.',
+ 'active_url' => ':attribute უნდა იყოს URL მისამართი.',
+ 'after' => ':attribute უნდა იყოს :date-ის შემდეგ.',
+ 'after_or_equal' => ':attribute უნდა იყოს :date-ის შემდეგ ან მისი ტოლი.',
+ 'alpha' => ':attribute უნდა შეიცავდეს მხოლოდ ასოებს.',
+ 'alpha_dash' => ':attribute უნდა შეიცავდეს მხოლოდ ასოებს, რიცხვებს და ტირეებს.',
+ 'alpha_num' => ':attribute უნდა შეიცავდეს მხოლოდ ასოებს და რიცხვებს.',
+ 'array' => ':attribute უნდა იყოს მასივი.',
+ 'before' => ':attribute უნდა იყოს :date-მდე.',
+ 'before_or_equal' => ':attribute უნდა იყოს :date-მდე ან მისი ტოლი.',
+ 'between' => [
'numeric' => ':attribute უნდა იყოს :min-სა და :max-ს შორის.',
- 'file' => ':attribute უნდა იყოს :min-სა და :max კილობაიტს შორის.',
- 'string' => ':attribute უნდა იყოს :min-სა და :max სიმბოლოს შორის.',
- 'array' => ':attribute-ის რაოდენობა უნდა იყოს :min-დან :max-მდე.',
+ 'file' => ':attribute უნდა იყოს :min-სა და :max კილობაიტს შორის.',
+ 'string' => ':attribute უნდა იყოს :min-სა და :max სიმბოლოს შორის.',
+ 'array' => ':attribute-ის რაოდენობა უნდა იყოს :min-დან :max-მდე.',
],
- 'boolean' => ':attribute უნდა იყოს true, false, 0 ან 1.',
- 'confirmed' => ':attribute არ ემთხვევა დადასტურებას.',
- 'date' => ':attribute შეიცავს თარიღის არასწორ ფორმატს.',
- 'date_equals' => 'The :attribute must be a date equal to :date.',
- 'date_format' => ':attribute არ ემთხვევა თარიღის ფორმატს: :format.',
- 'different' => ':attribute და :other არ უნდა ემთხვეოდეს ერთმანეთს.',
- 'digits' => ':attribute უნდა შედგებოდეს :digits ციფრისგან.',
- 'digits_between' => ':attribute უნდა შედგებოდეს :min-დან :max ციფრამბდე.',
- 'dimensions' => ':attribute შეიცავს სურათის არასწორ ზომებს.',
- 'distinct' => ':attribute უნდა იყოს უნიკალური.',
- 'email' => ':attribute უნდა იყოს სწორი ელ.ფოსტა.',
- 'exists' => 'ასეთი :attribute არ არსებობს.',
- 'file' => ':attribute უნდა იყოს ფაილი.',
- 'filled' => ':attribute აუცილებელია.',
- 'gt' => [
+ 'boolean' => ':attribute უნდა იყოს true, false, 0 ან 1.',
+ 'confirmed' => ':attribute არ ემთხვევა დადასტურებას.',
+ 'date' => ':attribute შეიცავს თარიღის არასწორ ფორმატს.',
+ 'date_equals' => 'The :attribute must be a date equal to :date.',
+ 'date_format' => ':attribute არ ემთხვევა თარიღის ფორმატს: :format.',
+ 'different' => ':attribute და :other არ უნდა ემთხვეოდეს ერთმანეთს.',
+ 'digits' => ':attribute უნდა შედგებოდეს :digits ციფრისგან.',
+ 'digits_between' => ':attribute უნდა შედგებოდეს :min-დან :max ციფრამბდე.',
+ 'dimensions' => ':attribute შეიცავს სურათის არასწორ ზომებს.',
+ 'distinct' => ':attribute უნდა იყოს უნიკალური.',
+ 'email' => ':attribute უნდა იყოს სწორი ელ.ფოსტა.',
+ 'exists' => 'ასეთი :attribute არ არსებობს.',
+ 'file' => ':attribute უნდა იყოს ფაილი.',
+ 'filled' => ':attribute აუცილებელია.',
+ 'gt' => [
'numeric' => ':attribute უნდა იყოს :value-ზე მეტი.',
- 'file' => ':attribute უნდა იყოს :value კილობაიტზე მეტი.',
- 'string' => ':attribute უნდა შეიცავდეს :value სიმბოლოზე მეტს.',
- 'array' => ':attribute უნდა შეიცავლდეს :value ელემენტზე მეტს.',
+ 'file' => ':attribute უნდა იყოს :value კილობაიტზე მეტი.',
+ 'string' => ':attribute უნდა შეიცავდეს :value სიმბოლოზე მეტს.',
+ 'array' => ':attribute უნდა შეიცავლდეს :value ელემენტზე მეტს.',
],
- 'gte' => [
+ 'gte' => [
'numeric' => ':attribute უნდა იყოს მინიმუმ :value.',
- 'file' => ':attribute უნდა იყოს მინიმუმ :value კილობაიტი.',
- 'string' => ':attribute უნდა შეიცავდეს მინიმუმ :value სიმბოლოს.',
- 'array' => ':attribute უნდა შეიცავდეს მინიმუმ :value ელემენტს.',
+ 'file' => ':attribute უნდა იყოს მინიმუმ :value კილობაიტი.',
+ 'string' => ':attribute უნდა შეიცავდეს მინიმუმ :value სიმბოლოს.',
+ 'array' => ':attribute უნდა შეიცავდეს მინიმუმ :value ელემენტს.',
],
- 'image' => ':attribute უნდა იყოს სურათი.',
- 'in' => 'მითითებული :attribute არასწორია.',
- 'in_array' => ':attribute უნდა არსებობდეს :other-ში.',
- 'integer' => ':attribute უნდა იყოს მთელი რიცხვი.',
- 'ip' => ':attribute უნდა იყოს IP მისამართი.',
- 'ipv4' => ':attribute უნდა იყოს IPv4 მისამართი.',
- 'ipv6' => ':attribute უნდა იყოს IPv6 მისამართი.',
- 'json' => ':attribute უნდა იყოს JSON ტიპის.',
- 'lt' => [
+ 'image' => ':attribute უნდა იყოს სურათი.',
+ 'in' => 'მითითებული :attribute არასწორია.',
+ 'in_array' => ':attribute უნდა არსებობდეს :other-ში.',
+ 'integer' => ':attribute უნდა იყოს მთელი რიცხვი.',
+ 'ip' => ':attribute უნდა იყოს IP მისამართი.',
+ 'ipv4' => ':attribute უნდა იყოს IPv4 მისამართი.',
+ 'ipv6' => ':attribute უნდა იყოს IPv6 მისამართი.',
+ 'json' => ':attribute უნდა იყოს JSON ტიპის.',
+ 'lt' => [
'numeric' => ':attribute უნდა იყოს :value-ზე ნაკლები.',
- 'file' => ':attribute უნდა იყოს :value კილობაიტზე ნაკლები.',
- 'string' => ':attribute უნდა შეიცავდეს :value სიმბოლოზე ნაკლებს.',
- 'array' => ':attribute უნდა შეიცავლდეს :value ელემენტზე ნაკლებს.',
+ 'file' => ':attribute უნდა იყოს :value კილობაიტზე ნაკლები.',
+ 'string' => ':attribute უნდა შეიცავდეს :value სიმბოლოზე ნაკლებს.',
+ 'array' => ':attribute უნდა შეიცავლდეს :value ელემენტზე ნაკლებს.',
],
- 'lte' => [
+ 'lte' => [
'numeric' => ':attribute უნდა იყოს მაქსიმუმ :value.',
- 'file' => ':attribute უნდა იყოს მაქსიმუმ :value კილობაიტი.',
- 'string' => ':attribute უნდა შეიცავდეს მაქსიმუმ :value სიმბოლოს.',
- 'array' => ':attribute უნდა შეიცავდეს მაქსიმუმ :value ელემენტს.',
+ 'file' => ':attribute უნდა იყოს მაქსიმუმ :value კილობაიტი.',
+ 'string' => ':attribute უნდა შეიცავდეს მაქსიმუმ :value სიმბოლოს.',
+ 'array' => ':attribute უნდა შეიცავდეს მაქსიმუმ :value ელემენტს.',
],
- 'max' => [
+ 'max' => [
'numeric' => ':attribute არ უნდა აღემატებოდეს :max-ს.',
- 'file' => ':attribute არ უნდა აღემატებოდეს :max კილობაიტს.',
- 'string' => ':attribute არ უნდა აღემატებოდეს :max სიმბოლოს.',
- 'array' => ':attribute-ის რაოდენობა არ უნდა აღემატებოდეს :max-ს.',
+ 'file' => ':attribute არ უნდა აღემატებოდეს :max კილობაიტს.',
+ 'string' => ':attribute არ უნდა აღემატებოდეს :max სიმბოლოს.',
+ 'array' => ':attribute-ის რაოდენობა არ უნდა აღემატებოდეს :max-ს.',
],
- 'mimes' => ':attribute უნდა იყოს შემდეგი ტიპის: :values.',
- 'mimetypes' => ':attribute უნდა იყოს შემდეგი ტიპის: :values.',
- 'min' => [
+ 'mimes' => ':attribute უნდა იყოს შემდეგი ტიპის: :values.',
+ 'mimetypes' => ':attribute უნდა იყოს შემდეგი ტიპის: :values.',
+ 'min' => [
'numeric' => ':attribute უნდა იყოს მინიმუმ :min.',
- 'file' => ':attribute უნდა იყოს მინიმუმ :min კილობაიტი.',
- 'string' => ':attribute უნდა შეიცავდეს მინიმუმ :min სიმბოლოს.',
- 'array' => ':attribute უნდა იყოს მინიმუმ :min.',
+ 'file' => ':attribute უნდა იყოს მინიმუმ :min კილობაიტი.',
+ 'string' => ':attribute უნდა შეიცავდეს მინიმუმ :min სიმბოლოს.',
+ 'array' => ':attribute უნდა იყოს მინიმუმ :min.',
],
- 'not_in' => 'მითითებული :attribute არასწორია.',
- 'not_regex' => ':attribute არასწორ ფორმატშია.',
- 'numeric' => ':attribute უნდა იყოს რიცხვი.',
- 'present' => ':attribute უნდა არსებობდეს, თუნდაც ცარიელი.',
- 'regex' => ':attribute არ ემთხვევა ფორმატს.',
- 'required' => ':attribute აუცილებელია.',
- 'required_if' => ':attribute აუცილებელია, თუ :other-ის მნიშვნელობა ემთხვევა :value-ს.',
- 'required_unless' => ':attribute აუცილებელია, თუ :values არ შეიცავს :other-ს.',
- 'required_with' => ':attribute აუცილებელია, თუ :values მითითებულია.',
- 'required_with_all' => ':attribute აუცილებელია, თუ :values მითითებულია.',
- 'required_without' => ':attribute აუცილებელია, თუ :values არ არის მითითებული.',
+ 'not_in' => 'მითითებული :attribute არასწორია.',
+ 'not_regex' => ':attribute არასწორ ფორმატშია.',
+ 'numeric' => ':attribute უნდა იყოს რიცხვი.',
+ 'present' => ':attribute უნდა არსებობდეს, თუნდაც ცარიელი.',
+ 'regex' => ':attribute არ ემთხვევა ფორმატს.',
+ 'required' => ':attribute აუცილებელია.',
+ 'required_if' => ':attribute აუცილებელია, თუ :other-ის მნიშვნელობა ემთხვევა :value-ს.',
+ 'required_unless' => ':attribute აუცილებელია, თუ :values არ შეიცავს :other-ს.',
+ 'required_with' => ':attribute აუცილებელია, თუ :values მითითებულია.',
+ 'required_with_all' => ':attribute აუცილებელია, თუ :values მითითებულია.',
+ 'required_without' => ':attribute აუცილებელია, თუ :values არ არის მითითებული.',
'required_without_all' => ':attribute აუცილებელია, თუ :values არ არის მითითებული.',
- 'same' => ':attribute და :other უნდა ემთხვეოდეს ერთმანეთს.',
- 'size' => [
+ 'same' => ':attribute და :other უნდა ემთხვეოდეს ერთმანეთს.',
+ 'size' => [
'numeric' => ':attribute უნდა იყოს :size-ის ტოლი.',
- 'file' => ':attribute უნდა იყოს :size კილობაიტი.',
- 'string' => ':attribute უნდა შედგებოდეს :size სიმბოლოსგან.',
- 'array' => ':attribute უნდა შეიცავდეს :size ელემენტს.',
+ 'file' => ':attribute უნდა იყოს :size კილობაიტი.',
+ 'string' => ':attribute უნდა შედგებოდეს :size სიმბოლოსგან.',
+ 'array' => ':attribute უნდა შეიცავდეს :size ელემენტს.',
],
- 'starts_with' => 'The :attribute must start with one of the following: :values',
- 'string' => ':attribute უნდა იყოს ტექსტი.',
- 'timezone' => ':attribute უნდა იყოს სასაათო სარტყელი.',
- 'unique' => 'ასეთი :attribute უკვე არსებობს.',
- 'uploaded' => ':attribute-ის ატვირთვა ვერ მოხერხდა.',
- 'url' => ':attribute უნდა იყოს URL მისამართი.',
- 'uuid' => 'The :attribute must be a valid UUID.',
+ 'starts_with' => 'The :attribute must start with one of the following: :values',
+ 'string' => ':attribute უნდა იყოს ტექსტი.',
+ 'timezone' => ':attribute უნდა იყოს სასაათო სარტყელი.',
+ 'unique' => 'ასეთი :attribute უკვე არსებობს.',
+ 'uploaded' => ':attribute-ის ატვირთვა ვერ მოხერხდა.',
+ 'url' => ':attribute უნდა იყოს URL მისამართი.',
+ 'uuid' => 'The :attribute must be a valid UUID.',
/*
|--------------------------------------------------------------------------
diff --git a/lang/kk/articles.php b/lang/kk/articles.php
index 8a6a95fd4..7e8b6552e 100644
--- a/lang/kk/articles.php
+++ b/lang/kk/articles.php
@@ -12,8 +12,8 @@
*/
return [
- 'articles' => 'Мақалалар',
+ 'articles' => 'Мақалалар',
'meta-articles' => 'Мақалалар мен трекер және қауымдастық туралы жаңалықтар',
- 'published-at' => 'Жарияланды',
- 'read-more' => 'Ары қарай оқу',
+ 'published-at' => 'Жарияланды',
+ 'read-more' => 'Ары қарай оқу',
];
diff --git a/lang/kk/auth.php b/lang/kk/auth.php
index 5b2a4499a..ac0ce0c2f 100644
--- a/lang/kk/auth.php
+++ b/lang/kk/auth.php
@@ -23,6 +23,6 @@ return [
|
*/
- 'failed' => 'Тіркелгі деректері біздің жазбаларымызға сай емес.',
+ 'failed' => 'Тіркелгі деректері біздің жазбаларымызға сай емес.',
'throttle' => 'Кіру әрекеті тым көп болды. :seconds секундтан соң қайталап көріңіз.',
];
diff --git a/lang/kk/backup.php b/lang/kk/backup.php
index a6e194953..4430a1323 100644
--- a/lang/kk/backup.php
+++ b/lang/kk/backup.php
@@ -12,32 +12,32 @@
*/
return [
- 'actions' => 'Әрекеттер',
- 'backup' => 'Сақтық көшірме жасау',
- 'backup_doesnt_exist' => 'Сақтық көшірме файлы жоқ.',
- 'create_a_new_backup' => 'Толық сақтық көшірме жасау',
- 'create_a_new_files_backup' => 'Файлдар сақтық көшірмесін жасау',
- 'create_a_new_db_backup' => 'Дерекқорды сақтық көшірмесін жасау',
- 'create_confirmation_message' => 'Бетті 3 секундта қайта жүктеу.',
- 'create_confirmation_title' => 'Сақтық көшірмесі аяқталды',
- 'create_error_message' => 'Сақтық көшірме файлы жасалмады.',
- 'create_error_title' => 'Сақтық көшірмелеу қатесі',
- 'create_warning_message' => 'Сақтық көшірменің жасалмауы мүмкін. Мәліметтер үшін журнал файлдарын тексеріңіз.',
- 'create_warning_title' => 'Белгісіз қате',
- 'date' => 'Күні',
- 'delete' => 'Жою',
- 'delete_cancel_message' => 'Сақтық көшірме файлы жойылмады.',
- 'delete_cancel_title' => 'Ештене етпейді',
- 'delete_confirm' => 'Бұл сақтық көшірме файлын жойғыңыз келе ме?',
- 'delete_confirmation_message' => 'Сақтық көшірме файлы жойылды.',
- 'delete_confirmation_title' => 'Аяқталды',
- 'delete_error_message' => 'Сақтық көшірме файлы жойылмады.',
- 'delete_error_title' => 'Қате',
- 'download' => 'Жүктеу',
- 'existing_backups' => 'Бар резервтік көшірмелер',
- 'file_size' => 'Файл өлшемі',
- 'location' => 'Орналасуы',
- 'manager' => 'Менеджер',
- 'no_disks_configured' => 'Config / backup.php ішіне конфигурацияланбаған резервтік дискілер жоқ',
+ 'actions' => 'Әрекеттер',
+ 'backup' => 'Сақтық көшірме жасау',
+ 'backup_doesnt_exist' => 'Сақтық көшірме файлы жоқ.',
+ 'create_a_new_backup' => 'Толық сақтық көшірме жасау',
+ 'create_a_new_files_backup' => 'Файлдар сақтық көшірмесін жасау',
+ 'create_a_new_db_backup' => 'Дерекқорды сақтық көшірмесін жасау',
+ 'create_confirmation_message' => 'Бетті 3 секундта қайта жүктеу.',
+ 'create_confirmation_title' => 'Сақтық көшірмесі аяқталды',
+ 'create_error_message' => 'Сақтық көшірме файлы жасалмады.',
+ 'create_error_title' => 'Сақтық көшірмелеу қатесі',
+ 'create_warning_message' => 'Сақтық көшірменің жасалмауы мүмкін. Мәліметтер үшін журнал файлдарын тексеріңіз.',
+ 'create_warning_title' => 'Белгісіз қате',
+ 'date' => 'Күні',
+ 'delete' => 'Жою',
+ 'delete_cancel_message' => 'Сақтық көшірме файлы жойылмады.',
+ 'delete_cancel_title' => 'Ештене етпейді',
+ 'delete_confirm' => 'Бұл сақтық көшірме файлын жойғыңыз келе ме?',
+ 'delete_confirmation_message' => 'Сақтық көшірме файлы жойылды.',
+ 'delete_confirmation_title' => 'Аяқталды',
+ 'delete_error_message' => 'Сақтық көшірме файлы жойылмады.',
+ 'delete_error_title' => 'Қате',
+ 'download' => 'Жүктеу',
+ 'existing_backups' => 'Бар резервтік көшірмелер',
+ 'file_size' => 'Файл өлшемі',
+ 'location' => 'Орналасуы',
+ 'manager' => 'Менеджер',
+ 'no_disks_configured' => 'Config / backup.php ішіне конфигурацияланбаған резервтік дискілер жоқ',
'only_local_downloads_supported' => 'Жергілікті файлдық жүйеден тек қана жүктеледі.',
];
diff --git a/lang/kk/blocks.php b/lang/kk/blocks.php
index 811e072f8..86ca2ebf3 100644
--- a/lang/kk/blocks.php
+++ b/lang/kk/blocks.php
@@ -12,19 +12,19 @@
*/
return [
- 'chatbox' => 'Чат-код',
- 'click' => 'Басыңыз',
- 'to-enable-editor' => 'редакторды қосу',
- 'featured-by' => 'Таңдаулы',
- 'featured-torrents' => 'Үздік торрент',
+ 'chatbox' => 'Чат-код',
+ 'click' => 'Басыңыз',
+ 'to-enable-editor' => 'редакторды қосу',
+ 'featured-by' => 'Таңдаулы',
+ 'featured-torrents' => 'Үздік торрент',
'featured-torrents-intro' => 'Сіз қолыңыздан келгенше алыңыз!',
- 'featured-until' => 'Бұл таңдалған торрент',
- 'top-torrents' => 'Үздік торрент',
- 'latest-posts' => 'Соңғы жазбалар',
- 'latest-topics' => 'Соңғы тақырыптар',
- 'active-in-last' => 'Соңында белсенді',
- 'users-online' => 'Пайдаланушылар Online',
- 'check-news' => 'Жаңалықтар (күн сайын тексеру)',
- 'new-news' => 'Жаңа жаңалықтар',
- 'new-torrents' => 'Жаңа торрент',
+ 'featured-until' => 'Бұл таңдалған торрент',
+ 'top-torrents' => 'Үздік торрент',
+ 'latest-posts' => 'Соңғы жазбалар',
+ 'latest-topics' => 'Соңғы тақырыптар',
+ 'active-in-last' => 'Соңында белсенді',
+ 'users-online' => 'Пайдаланушылар Online',
+ 'check-news' => 'Жаңалықтар (күн сайын тексеру)',
+ 'new-news' => 'Жаңа жаңалықтар',
+ 'new-torrents' => 'Жаңа торрент',
];
diff --git a/lang/kk/bon.php b/lang/kk/bon.php
index ac02af5e2..fbe384bc7 100644
--- a/lang/kk/bon.php
+++ b/lang/kk/bon.php
@@ -12,44 +12,44 @@
*/
return [
- 'activated' => 'Қосылған',
- 'active' => 'Қосылған!',
- 'amount' => 'Сома',
- 'bon' => 'BON',
- 'bonus' => 'Бонус',
- 'date' => 'Күні',
- 'earning' => 'Табыс',
- 'earning-rate' => 'Бұл табыстылық мөлшерлемесі бойынша сіз кез-келген уақыт бойынша келесі табысқа ие боласыз.',
- 'earnings' => 'Табыс',
- 'exchange' => 'Айырбастау',
- 'exchange-warning' => 'Алмастар түпкілікті, айырбастаудан бұрын таңдауларыңызды екі рет тексеріңіз.',
- 'extended-stats' => 'Кеңейтілген статистика',
- 'gift' => 'Сыйлық',
- 'gift-bonus' => 'Сыйлық бонус ұпайлары',
- 'gift-to' => 'Сыйлық бонус ұпайлары',
- 'gifts' => 'Сыйлықтар',
- 'item' => 'Элемент',
- 'no-refund' => 'ЖОҚ қайтармайды!',
- 'per-day' => 'Бір күндік ұпай',
- 'per-hour' => 'Бір сағаттық ұпай',
- 'per-minute' => 'Ұпайлар минутына',
- 'per-month' => 'Бір айдағы ұпай',
- 'per-second' => 'Екінші секунд',
- 'per-week' => 'Апта бойынша ұпайлар',
- 'per-year' => 'Жылына бір рет',
- 'points' => 'Ұпайлар',
- 'receiver' => 'Қабылдағыш',
- 'review-seeds' => 'Барлық тұқымдық торренттерді шолыңыз',
- 'send-gift' => 'Сыйлық жіберу',
- 'sender' => 'Жіберуші',
- 'store' => 'Дүкен',
- 'tips' => 'Кеңестер',
- 'total' => 'Жалпы пайда',
- 'total-gifts' => 'Total BON сыйлықтарында',
- 'total-tips' => 'Барлығы BON кеңестерінде',
+ 'activated' => 'Қосылған',
+ 'active' => 'Қосылған!',
+ 'amount' => 'Сома',
+ 'bon' => 'BON',
+ 'bonus' => 'Бонус',
+ 'date' => 'Күні',
+ 'earning' => 'Табыс',
+ 'earning-rate' => 'Бұл табыстылық мөлшерлемесі бойынша сіз кез-келген уақыт бойынша келесі табысқа ие боласыз.',
+ 'earnings' => 'Табыс',
+ 'exchange' => 'Айырбастау',
+ 'exchange-warning' => 'Алмастар түпкілікті, айырбастаудан бұрын таңдауларыңызды екі рет тексеріңіз.',
+ 'extended-stats' => 'Кеңейтілген статистика',
+ 'gift' => 'Сыйлық',
+ 'gift-bonus' => 'Сыйлық бонус ұпайлары',
+ 'gift-to' => 'Сыйлық бонус ұпайлары',
+ 'gifts' => 'Сыйлықтар',
+ 'item' => 'Элемент',
+ 'no-refund' => 'ЖОҚ қайтармайды!',
+ 'per-day' => 'Бір күндік ұпай',
+ 'per-hour' => 'Бір сағаттық ұпай',
+ 'per-minute' => 'Ұпайлар минутына',
+ 'per-month' => 'Бір айдағы ұпай',
+ 'per-second' => 'Екінші секунд',
+ 'per-week' => 'Апта бойынша ұпайлар',
+ 'per-year' => 'Жылына бір рет',
+ 'points' => 'Ұпайлар',
+ 'receiver' => 'Қабылдағыш',
+ 'review-seeds' => 'Барлық тұқымдық торренттерді шолыңыз',
+ 'send-gift' => 'Сыйлық жіберу',
+ 'sender' => 'Жіберуші',
+ 'store' => 'Дүкен',
+ 'tips' => 'Кеңестер',
+ 'total' => 'Жалпы пайда',
+ 'total-gifts' => 'Total BON сыйлықтарында',
+ 'total-tips' => 'Барлығы BON кеңестерінде',
'you-have-received-gifts' => 'Сіз алдық',
- 'you-have-sent-gifts' => 'Сіз жібердіңіз',
- 'you-have-received-tips' => 'Сіз алдық',
- 'you-have-sent-tips' => 'Сіз жібердіңіз',
- 'your-points' => 'Сіздің ұпайларыңыз',
+ 'you-have-sent-gifts' => 'Сіз жібердіңіз',
+ 'you-have-received-tips' => 'Сіз алдық',
+ 'you-have-sent-tips' => 'Сіз жібердіңіз',
+ 'your-points' => 'Сіздің ұпайларыңыз',
];
diff --git a/lang/kk/bot.php b/lang/kk/bot.php
index deb2872c0..0a71bd0df 100644
--- a/lang/kk/bot.php
+++ b/lang/kk/bot.php
@@ -12,15 +12,15 @@
*/
return [
- 'about' => 'Біз туралы',
- 'bot' => 'Бот',
- 'bots' => 'Боттар',
- 'color' => 'Түстер',
- 'command' => 'Команда',
- 'edit-bot' => 'Бетті өңдеу',
+ 'about' => 'Біз туралы',
+ 'bot' => 'Бот',
+ 'bots' => 'Боттар',
+ 'color' => 'Түстер',
+ 'command' => 'Команда',
+ 'edit-bot' => 'Бетті өңдеу',
'emoji-code' => 'Эмодзи коды',
- 'help' => 'Көмектесіңдер',
- 'icon' => 'Белгіше',
- 'info' => 'Ақпарат',
- 'name' => 'Атауы',
+ 'help' => 'Көмектесіңдер',
+ 'icon' => 'Белгіше',
+ 'info' => 'Ақпарат',
+ 'name' => 'Атауы',
];
diff --git a/lang/kk/bug.php b/lang/kk/bug.php
index 62830c243..ad49a8a10 100644
--- a/lang/kk/bug.php
+++ b/lang/kk/bug.php
@@ -12,15 +12,15 @@
*/
return [
- 'bug-report' => 'Қате туралы есеп',
+ 'bug-report' => 'Қате туралы есеп',
'bug-report-description' => 'Қате туралы хабарлау сайт',
- 'enter-description' => 'Мәселе мүмкіндігінше жақсы сипаттаңыз',
- 'enter-email' => 'Электрондық поштаңызды енгізіңіз',
- 'enter-title' => 'Тиісті тақырыпты таңдаңыз',
- 'enter-username' => 'Пайдаланушы атыңызды енгізіңіз',
- 'high' => 'Жоғары',
- 'low' => 'Төмен',
- 'priority' => 'Басымдық',
- 'priority-description' => 'Егер қате шынымен сайтты пайдалануда қиындық болса, өте жоғары мәнді таңдаңыз.',
- 'very-high' => 'Өте биік',
+ 'enter-description' => 'Мәселе мүмкіндігінше жақсы сипаттаңыз',
+ 'enter-email' => 'Электрондық поштаңызды енгізіңіз',
+ 'enter-title' => 'Тиісті тақырыпты таңдаңыз',
+ 'enter-username' => 'Пайдаланушы атыңызды енгізіңіз',
+ 'high' => 'Жоғары',
+ 'low' => 'Төмен',
+ 'priority' => 'Басымдық',
+ 'priority-description' => 'Егер қате шынымен сайтты пайдалануда қиындық болса, өте жоғары мәнді таңдаңыз.',
+ 'very-high' => 'Өте биік',
];
diff --git a/lang/kk/common.php b/lang/kk/common.php
index 83e0bea08..2075db795 100644
--- a/lang/kk/common.php
+++ b/lang/kk/common.php
@@ -12,179 +12,179 @@
*/
return [
- 'a-an-art' => '',
- 'about' => 'Біз туралы',
- 'account' => 'Шот',
- 'achievement-title' => 'Тамаша',
+ 'a-an-art' => '',
+ 'about' => 'Біз туралы',
+ 'account' => 'Шот',
+ 'achievement-title' => 'Тамаша',
'achievement-unlocked' => 'Сіз «: атау» жетістігін аштыңыз',
- 'active' => 'Белсенді',
- 'active-warning' => 'Белсенді ескерту',
- 'add' => 'Қосу',
- 'added' => 'Қосылған',
- 'amount' => 'Сома',
- 'anonymous' => 'Аноним',
- 'author' => 'Автор',
- 'balance' => 'Баланс',
- 'blacklist' => 'Клиенттің қара тізімдемесі',
- 'buffer' => 'Буфер',
- 'bug' => 'Қате туралы хабарлау',
- 'but' => 'Бірақ',
- 'cancel' => 'Болдырмау',
- 'category' => 'Санат',
- 'categories' => 'Санаттар',
- 'close' => 'Жабық',
- 'comment' => 'Түсініктеме',
- 'comments' => 'Пікірлер',
- 'community' => 'Қоғамдастық',
- 'contact' => 'Байланыс',
- 'contact-desc' => 'Бұл байланыс туралы сұрау иесіне жіберіледі және мүмкіндігінше тезірек сізге қайтарылады',
- 'contact-header' => 'Сәлеметсіз бе',
- 'create' => 'Жасаңыз',
- 'created_at' => 'Құрылды',
- 'day' => 'Күні',
- 'delete' => 'Жою',
- 'delete-your-comment' => 'Пікіріңізді жойыңыз',
- 'description' => 'Сипаттама',
- 'direction' => 'Бағыт',
- 'disable' => 'Өшіру',
- 'doubleup_activated' => 'Жаһандық қос жүктеу режимі белсендірілді',
- 'download' => 'Жүктеу',
- 'edit' => 'Өңдеу',
- 'edit-your-comment' => 'Пікіріңізді өңдеңіз',
- 'email' => 'Электрондық пошта',
- 'email-blacklist' => 'Электрондық пошта қара тізім',
- 'email-whitelist' => 'Электрондық пошта ақ тізімі',
+ 'active' => 'Белсенді',
+ 'active-warning' => 'Белсенді ескерту',
+ 'add' => 'Қосу',
+ 'added' => 'Қосылған',
+ 'amount' => 'Сома',
+ 'anonymous' => 'Аноним',
+ 'author' => 'Автор',
+ 'balance' => 'Баланс',
+ 'blacklist' => 'Клиенттің қара тізімдемесі',
+ 'buffer' => 'Буфер',
+ 'bug' => 'Қате туралы хабарлау',
+ 'but' => 'Бірақ',
+ 'cancel' => 'Болдырмау',
+ 'category' => 'Санат',
+ 'categories' => 'Санаттар',
+ 'close' => 'Жабық',
+ 'comment' => 'Түсініктеме',
+ 'comments' => 'Пікірлер',
+ 'community' => 'Қоғамдастық',
+ 'contact' => 'Байланыс',
+ 'contact-desc' => 'Бұл байланыс туралы сұрау иесіне жіберіледі және мүмкіндігінше тезірек сізге қайтарылады',
+ 'contact-header' => 'Сәлеметсіз бе',
+ 'create' => 'Жасаңыз',
+ 'created_at' => 'Құрылды',
+ 'day' => 'Күні',
+ 'delete' => 'Жою',
+ 'delete-your-comment' => 'Пікіріңізді жойыңыз',
+ 'description' => 'Сипаттама',
+ 'direction' => 'Бағыт',
+ 'disable' => 'Өшіру',
+ 'doubleup_activated' => 'Жаһандық қос жүктеу режимі белсендірілді',
+ 'download' => 'Жүктеу',
+ 'edit' => 'Өңдеу',
+ 'edit-your-comment' => 'Пікіріңізді өңдеңіз',
+ 'email' => 'Электрондық пошта',
+ 'email-blacklist' => 'Электрондық пошта қара тізім',
+ 'email-whitelist' => 'Электрондық пошта ақ тізімі',
'email-list-notactive' => 'Электрондық пошта ақ тізімін / қара тізім жүйесі қосылмаған',
- 'enable' => 'Қосу',
- 'enter' => 'Кіру',
- 'error' => 'Қате',
- 'everyday' => 'Күн сайын',
- 'expired' => 'Жарамдылық мерзімі өткен',
- 'extra' => 'Қосымша',
- 'extra-stats' => 'Қосымша статистика',
- 'faq' => 'Жиі қойылатын сұрақтар',
- 'files' => 'Файлдар',
- 'fl_token' => 'Freeleech Token',
- 'fl_tokens' => 'Freeleech Tokens',
- 'for' => 'үшін',
- 'forum' => 'Форум',
- 'free' => 'Тегін',
- 'freeleech_activated' => 'Global Freeleech режимі белсендірілді',
- 'global' => 'Ғаламдық',
- 'group' => 'Топ',
- 'groups' => 'Топтар',
- 'hidden' => 'Жасырын',
- 'high-speeds' => 'Жоғары жылдамдықтар',
- 'home' => 'Үйі',
- 'hot' => 'Ыстық!',
- 'hour' => 'Сағат',
- 'huge' => 'Үлкен',
- 'info' => 'Ақпарат',
- 'internal' => 'Ішкі',
- 'ip' => 'IP',
- 'is-allowed' => 'рұқсат етіледі',
- 'large' => 'Үлкен',
- 'latest' => 'Соңғы',
- 'latest-posts' => 'Соңғы жазбалар',
- 'latest-topics' => 'Соңғы тақырыптар',
- 'legal' => 'Құқықтық',
- 'legend' => 'Аңыз',
- 'lists' => 'Тізімдер',
- 'lock-account' => 'Тіркелгіні құлыптау',
- 'logout' => 'Шығу',
- 'members' => 'Мүшелер',
- 'message' => 'Хабар',
- 'minute' => 'Минут',
- 'moderated-by' => 'Моделдендірілген',
- 'moderation' => 'Модерация',
- 'moderation-approve' => 'Бекіту',
- 'moderation-postpone' => 'Кейінге қалдыру',
- 'moderation-reject' => 'Қабылдамау',
- 'month' => 'Ай',
- 'months' => 'Айлар',
- 'my' => 'Менің',
- 'name' => 'Атауы',
- 'navigation' => 'Навигация',
- 'new' => 'Жаңа!',
- 'new-adj' => 'Жаңа',
- 'news' => 'Жаңалықтар',
- 'next' => 'Келесі',
- 'no' => 'Жоқ',
- 'no-comments' => 'Пікірлер жоқ',
- 'no-result' => 'Сұрау үшін дерекқорда нәтиже жоқ',
- 'notifications' => 'Хабарламалар',
- 'older-than' => 'Егдеден көп',
- 'oldest' => 'Ең ескі',
- 'openreg_activated' => 'Ашық тіркеу белсендірілді',
- 'order-by' => 'Бойынша сұрыптау',
- 'other' => 'Басқа',
- 'pages' => 'Беттер',
- 'password' => 'Құпия сөз',
- 'patron' => 'Кәсіпкер болыңыз',
- 'pending-torrents' => 'Күтілуде торрент',
- 'personal' => 'Жеке',
- 'plural-suffix' => 'с',
- 'port' => 'Порт',
- 'position' => 'Позиция',
- 'posts' => 'Хабарламалар',
- 'powered-by' => 'UNIT3D арқылы жұмыс істейді',
- 'preview' => 'Алдын ала қарау',
- 'previous' => 'Алдыңғы',
- 'progress' => 'Прогресс',
- 'publish' => 'Жариялау',
- 'quantity' => 'Саны',
- 'quick-search' => 'Жылдам іздеу',
- 'ratio' => 'Арақатынас',
- 'reason' => 'Себеп',
- 'remove' => 'Жою',
- 'report' => 'Есеп',
- 'resend' => 'Қайта жіберу',
- 'reporter' => 'Репортер',
- 'required' => 'Міндетті',
- 'results' => 'Нәтижелері',
- 'rss-system' => 'RSS жүйесі',
- 'rules' => 'Ережелер',
- 'save' => 'Сақтау',
- 'search' => 'Іздеу',
- 'search-results' => 'Іздеу нәтижелері',
- 'search-results-desc' => 'Төмендегі нәтижелеріңізді қараңыз',
- 'second' => 'Екіншіден',
- 'select' => 'Таңдаңыз',
- 'sort' => 'Сұрыптау',
- 'special' => 'Арнайы',
- 'staff' => 'Қызметкерлер',
- 'staff-tools' => 'Қызметкерлер құралы',
- 'stats' => 'Статистика',
- 'status' => 'Күйі',
- 'sticked' => 'Соққыға ұшырады',
- 'submit' => 'Жіберу',
- 'subscriptions' => 'Жазылымдар',
- 'teams' => 'Командалар',
- 'terms' => 'Қолдану ережелері',
- 'times' => 'Уақыт',
- 'title' => 'Тақырып',
- 'top-bountied' => 'Ең көп сатылған',
- 'topics' => 'Тақырыптар',
- 'tracker-codes' => 'Tracker кодтары',
- 'type' => 'Түрі',
- 'type-verb' => 'Түрі',
- 'types' => 'Түрлері',
- 'genre' => 'Жанр',
- 'genres' => 'Жанрлар',
- 'action' => 'Әрекет',
- 'actions' => 'Әрекеттер',
- 'unknown' => 'Белгісіз',
+ 'enable' => 'Қосу',
+ 'enter' => 'Кіру',
+ 'error' => 'Қате',
+ 'everyday' => 'Күн сайын',
+ 'expired' => 'Жарамдылық мерзімі өткен',
+ 'extra' => 'Қосымша',
+ 'extra-stats' => 'Қосымша статистика',
+ 'faq' => 'Жиі қойылатын сұрақтар',
+ 'files' => 'Файлдар',
+ 'fl_token' => 'Freeleech Token',
+ 'fl_tokens' => 'Freeleech Tokens',
+ 'for' => 'үшін',
+ 'forum' => 'Форум',
+ 'free' => 'Тегін',
+ 'freeleech_activated' => 'Global Freeleech режимі белсендірілді',
+ 'global' => 'Ғаламдық',
+ 'group' => 'Топ',
+ 'groups' => 'Топтар',
+ 'hidden' => 'Жасырын',
+ 'high-speeds' => 'Жоғары жылдамдықтар',
+ 'home' => 'Үйі',
+ 'hot' => 'Ыстық!',
+ 'hour' => 'Сағат',
+ 'huge' => 'Үлкен',
+ 'info' => 'Ақпарат',
+ 'internal' => 'Ішкі',
+ 'ip' => 'IP',
+ 'is-allowed' => 'рұқсат етіледі',
+ 'large' => 'Үлкен',
+ 'latest' => 'Соңғы',
+ 'latest-posts' => 'Соңғы жазбалар',
+ 'latest-topics' => 'Соңғы тақырыптар',
+ 'legal' => 'Құқықтық',
+ 'legend' => 'Аңыз',
+ 'lists' => 'Тізімдер',
+ 'lock-account' => 'Тіркелгіні құлыптау',
+ 'logout' => 'Шығу',
+ 'members' => 'Мүшелер',
+ 'message' => 'Хабар',
+ 'minute' => 'Минут',
+ 'moderated-by' => 'Моделдендірілген',
+ 'moderation' => 'Модерация',
+ 'moderation-approve' => 'Бекіту',
+ 'moderation-postpone' => 'Кейінге қалдыру',
+ 'moderation-reject' => 'Қабылдамау',
+ 'month' => 'Ай',
+ 'months' => 'Айлар',
+ 'my' => 'Менің',
+ 'name' => 'Атауы',
+ 'navigation' => 'Навигация',
+ 'new' => 'Жаңа!',
+ 'new-adj' => 'Жаңа',
+ 'news' => 'Жаңалықтар',
+ 'next' => 'Келесі',
+ 'no' => 'Жоқ',
+ 'no-comments' => 'Пікірлер жоқ',
+ 'no-result' => 'Сұрау үшін дерекқорда нәтиже жоқ',
+ 'notifications' => 'Хабарламалар',
+ 'older-than' => 'Егдеден көп',
+ 'oldest' => 'Ең ескі',
+ 'openreg_activated' => 'Ашық тіркеу белсендірілді',
+ 'order-by' => 'Бойынша сұрыптау',
+ 'other' => 'Басқа',
+ 'pages' => 'Беттер',
+ 'password' => 'Құпия сөз',
+ 'patron' => 'Кәсіпкер болыңыз',
+ 'pending-torrents' => 'Күтілуде торрент',
+ 'personal' => 'Жеке',
+ 'plural-suffix' => 'с',
+ 'port' => 'Порт',
+ 'position' => 'Позиция',
+ 'posts' => 'Хабарламалар',
+ 'powered-by' => 'UNIT3D арқылы жұмыс істейді',
+ 'preview' => 'Алдын ала қарау',
+ 'previous' => 'Алдыңғы',
+ 'progress' => 'Прогресс',
+ 'publish' => 'Жариялау',
+ 'quantity' => 'Саны',
+ 'quick-search' => 'Жылдам іздеу',
+ 'ratio' => 'Арақатынас',
+ 'reason' => 'Себеп',
+ 'remove' => 'Жою',
+ 'report' => 'Есеп',
+ 'resend' => 'Қайта жіберу',
+ 'reporter' => 'Репортер',
+ 'required' => 'Міндетті',
+ 'results' => 'Нәтижелері',
+ 'rss-system' => 'RSS жүйесі',
+ 'rules' => 'Ережелер',
+ 'save' => 'Сақтау',
+ 'search' => 'Іздеу',
+ 'search-results' => 'Іздеу нәтижелері',
+ 'search-results-desc' => 'Төмендегі нәтижелеріңізді қараңыз',
+ 'second' => 'Екіншіден',
+ 'select' => 'Таңдаңыз',
+ 'sort' => 'Сұрыптау',
+ 'special' => 'Арнайы',
+ 'staff' => 'Қызметкерлер',
+ 'staff-tools' => 'Қызметкерлер құралы',
+ 'stats' => 'Статистика',
+ 'status' => 'Күйі',
+ 'sticked' => 'Соққыға ұшырады',
+ 'submit' => 'Жіберу',
+ 'subscriptions' => 'Жазылымдар',
+ 'teams' => 'Командалар',
+ 'terms' => 'Қолдану ережелері',
+ 'times' => 'Уақыт',
+ 'title' => 'Тақырып',
+ 'top-bountied' => 'Ең көп сатылған',
+ 'topics' => 'Тақырыптар',
+ 'tracker-codes' => 'Tracker кодтары',
+ 'type' => 'Түрі',
+ 'type-verb' => 'Түрі',
+ 'types' => 'Түрлері',
+ 'genre' => 'Жанр',
+ 'genres' => 'Жанрлар',
+ 'action' => 'Әрекет',
+ 'actions' => 'Әрекеттер',
+ 'unknown' => 'Белгісіз',
'unlocked-achievement' => 'Сіз аштыңыз: жетістікке жету',
- 'upload' => 'Жүктеп салу',
- 'upload-guide' => 'Жүктеу нұсқаулығы',
- 'user' => 'Пайдаланушы',
- 'username' => 'Пайдаланушы аты',
- 'users' => 'Пайдаланушылар',
- 'view' => 'Көрініс',
- 'view-all' => 'Барлығын көру',
- 'warnings' => 'Ескертулер',
- 'year' => 'Жыл',
- 'yes' => 'Иә',
- 'your' => 'Сіздің',
- 'your-comment' => 'Сіздің пікіріңіз',
+ 'upload' => 'Жүктеп салу',
+ 'upload-guide' => 'Жүктеу нұсқаулығы',
+ 'user' => 'Пайдаланушы',
+ 'username' => 'Пайдаланушы аты',
+ 'users' => 'Пайдаланушылар',
+ 'view' => 'Көрініс',
+ 'view-all' => 'Барлығын көру',
+ 'warnings' => 'Ескертулер',
+ 'year' => 'Жыл',
+ 'yes' => 'Иә',
+ 'your' => 'Сіздің',
+ 'your-comment' => 'Сіздің пікіріңіз',
];
diff --git a/lang/kk/email.php b/lang/kk/email.php
index 0842caeda..2d0aec382 100644
--- a/lang/kk/email.php
+++ b/lang/kk/email.php
@@ -12,46 +12,46 @@
*/
return [
- 'activate-account' => 'Есептік жазбаны іске қосыңыз',
- 'ban-reason' => 'Себеп',
- 'banned-footer' => 'Ережелерді орындамағандықтан, сіз өзіңіз алатын нәрсе',
- 'banned-header' => 'Сізге тыйым салынған',
- 'bug-description' => 'Мәселе',
- 'bug-footer' => 'Fix That Shit',
- 'bug-header' => 'Жаңадан қате туралы есеп',
- 'bug-priority' => 'Басымдық',
- 'bug-title' => 'Қате тақырыбы',
- 'contact-header' => 'Жаңадан байланыс хат',
- 'contact-message' => 'Хабар',
- 'contact-name' => 'Атауы',
+ 'activate-account' => 'Есептік жазбаны іске қосыңыз',
+ 'ban-reason' => 'Себеп',
+ 'banned-footer' => 'Ережелерді орындамағандықтан, сіз өзіңіз алатын нәрсе',
+ 'banned-header' => 'Сізге тыйым салынған',
+ 'bug-description' => 'Мәселе',
+ 'bug-footer' => 'Fix That Shit',
+ 'bug-header' => 'Жаңадан қате туралы есеп',
+ 'bug-priority' => 'Басымдық',
+ 'bug-title' => 'Қате тақырыбы',
+ 'contact-header' => 'Жаңадан байланыс хат',
+ 'contact-message' => 'Хабар',
+ 'contact-name' => 'Атауы',
'fail-login-greeting' => 'Есептік жазба кіру сәтсіз аяқталды!',
- 'fail-login-line1' => 'Тіркелгіңіз үшін сәтсіз кіріс анықталды.',
- 'fail-login-line2' => 'Бұл сұраныс: ip (: host) уақытында пайда болды',
- 'fail-login-subject' => 'Кіру туралы хабарландыру сәтсіз аяқталды',
- 'footer-link' => 'Егер сізде қиындықтарға тап болсаңыз: actionText түймесі, төмендегі URL мекенжайын веб-браузерге көшіріп, қойыңыз:',
- 'invite-header' => 'Шақыру',
- 'invite-invited' => 'Сізге шақырылды',
- 'invite-message' => 'Хабар',
- 'invite-signup' => 'Қазір тіркеліңіз',
- 'newreply-header' => 'Тақырыпта жаңа жауап бар',
- 'newreply-message' => 'Хабар',
- 'newreply-replied' => 'Тақырыпқа жауап берді',
- 'newreply-view' => 'Қазір көру',
- 'no-email-found' => 'Бұл электрондық поштаны біздің жүйеде таба алмадық!',
- 'register-code' => 'Тіркелгіні белсендіруді аяқтау үшін төмендегі батырманы басыңыз',
- 'register-footer' => 'Егер жоғарыдағы түйме жұмыс істемесе, URL мекенжайын шолғыштар мекенжай жолына көшіріп қойыңыз',
- 'register-header' => 'Сәлеметсіз бе! Тіркелгеніңізге рахмет',
- 'report-comment' => 'Түсініктеме',
- 'report-email' => 'Электрондық пошта',
- 'report-header' => 'Сәлеметсіздер ме, Әкімші сілтеме жасалды',
- 'report-link' => 'Сілтеме',
- 'report-link-hash' => 'Нақты байланыс',
- 'thanks' => 'Пайдаланғаныңыз үшін рақмет',
- 'unban-footer' => 'Қайта келуінмен!',
- 'unban-header' => 'Сізге тыйым салынған',
- 'unban-reason' => 'Себеп',
- 'username-reminder' => 'Жақында біз өзіңіздің қолданбадағы пайдаланушы атыңыз туралы сұрау жібердіңіз. Пайдаланушы атыңыз',
- 'username-sent' => 'Пайдаланушы атыңыз электрондық поштаңызға жіберілді!',
- 'disabled-header' => 'Есептік жазбаңыз өшірілді',
- 'pruned-header' => 'Сіздің Есептік жазбаңыз болды',
+ 'fail-login-line1' => 'Тіркелгіңіз үшін сәтсіз кіріс анықталды.',
+ 'fail-login-line2' => 'Бұл сұраныс: ip (: host) уақытында пайда болды',
+ 'fail-login-subject' => 'Кіру туралы хабарландыру сәтсіз аяқталды',
+ 'footer-link' => 'Егер сізде қиындықтарға тап болсаңыз: actionText түймесі, төмендегі URL мекенжайын веб-браузерге көшіріп, қойыңыз:',
+ 'invite-header' => 'Шақыру',
+ 'invite-invited' => 'Сізге шақырылды',
+ 'invite-message' => 'Хабар',
+ 'invite-signup' => 'Қазір тіркеліңіз',
+ 'newreply-header' => 'Тақырыпта жаңа жауап бар',
+ 'newreply-message' => 'Хабар',
+ 'newreply-replied' => 'Тақырыпқа жауап берді',
+ 'newreply-view' => 'Қазір көру',
+ 'no-email-found' => 'Бұл электрондық поштаны біздің жүйеде таба алмадық!',
+ 'register-code' => 'Тіркелгіні белсендіруді аяқтау үшін төмендегі батырманы басыңыз',
+ 'register-footer' => 'Егер жоғарыдағы түйме жұмыс істемесе, URL мекенжайын шолғыштар мекенжай жолына көшіріп қойыңыз',
+ 'register-header' => 'Сәлеметсіз бе! Тіркелгеніңізге рахмет',
+ 'report-comment' => 'Түсініктеме',
+ 'report-email' => 'Электрондық пошта',
+ 'report-header' => 'Сәлеметсіздер ме, Әкімші сілтеме жасалды',
+ 'report-link' => 'Сілтеме',
+ 'report-link-hash' => 'Нақты байланыс',
+ 'thanks' => 'Пайдаланғаныңыз үшін рақмет',
+ 'unban-footer' => 'Қайта келуінмен!',
+ 'unban-header' => 'Сізге тыйым салынған',
+ 'unban-reason' => 'Себеп',
+ 'username-reminder' => 'Жақында біз өзіңіздің қолданбадағы пайдаланушы атыңыз туралы сұрау жібердіңіз. Пайдаланушы атыңыз',
+ 'username-sent' => 'Пайдаланушы атыңыз электрондық поштаңызға жіберілді!',
+ 'disabled-header' => 'Есептік жазбаңыз өшірілді',
+ 'pruned-header' => 'Сіздің Есептік жазбаңыз болды',
];
diff --git a/lang/kk/forum.php b/lang/kk/forum.php
index dfc8a189e..25d4e4328 100644
--- a/lang/kk/forum.php
+++ b/lang/kk/forum.php
@@ -12,63 +12,63 @@
*/
return [
- 'action' => 'Әрекет',
- 'activity' => 'Қызмет',
- 'approved' => 'Бекітілген',
- 'author' => 'Автор',
- 'bug' => 'Қате',
- 'category-quick-search' => 'Тақырып атауы жылдам іздеу (санат шегінде)',
- 'close-topic' => 'Тақырыпты құлыптау',
- 'closed' => 'Жабық',
- 'create-new-topic' => 'Жаңа тақырып жасау',
- 'created' => 'Құрылды',
- 'current' => 'Ағымдағы',
- 'delete-topic' => 'Бұл тақырыпты жою',
- 'denied' => 'Бас тартылды',
- 'dislike-post' => 'Бұл хабарды ұнатпау',
- 'display-forum' => 'Тақырыптарды көрсету',
- 'edit-post' => 'Постты өңдеу',
- 'edit-topic' => 'Тақырыпты өңдеу',
- 'forum' => 'Форум',
- 'forums' => 'Форумдар',
- 'implemented' => 'Орындалды',
- 'in' => 'Ин',
- 'invalid' => 'Жарамсыз',
- 'label' => 'Заттаңба',
- 'label-system' => 'Жапсырма жүйесі',
- 'last-message' => 'Соңғы хабарлама',
- 'last-post-info' => 'Соңғы хабарлама туралы ақпарат',
- 'latest' => 'Соңғы',
- 'like-post' => 'Бұл хабарлама сияқты',
- 'meta-category' => 'Санаттағы форумдар тізімі',
- 'moderation' => 'Модерация',
- 'name' => 'Атауы',
- 'not-connected' => 'Сіз қосылуға тиіссіз',
- 'not-subscribed' => 'Жазылмаған',
- 'open' => 'Ашық',
- 'open-topic' => 'Бұл тақырыпты ашыңыз',
- 'permalink' => 'Тұрақты сілтеме',
- 'pin' => 'Қосу',
- 'post' => 'Post',
- 'post-quick-search' => 'Тез арада іздеу',
- 'posts' => 'Хабарламалар',
- 'quote' => 'Дәйексөз',
- 'read-topic' => 'Тақырыпты оқыңыз',
- 'replies' => 'Жауаптар',
- 'send-new-topic' => 'Бұл тақырыпты сақтау',
- 'solved' => 'Шешілді',
- 'state' => 'Мемлекет',
- 'stats' => 'Статистика',
- 'subscribed' => 'Жазылды',
+ 'action' => 'Әрекет',
+ 'activity' => 'Қызмет',
+ 'approved' => 'Бекітілген',
+ 'author' => 'Автор',
+ 'bug' => 'Қате',
+ 'category-quick-search' => 'Тақырып атауы жылдам іздеу (санат шегінде)',
+ 'close-topic' => 'Тақырыпты құлыптау',
+ 'closed' => 'Жабық',
+ 'create-new-topic' => 'Жаңа тақырып жасау',
+ 'created' => 'Құрылды',
+ 'current' => 'Ағымдағы',
+ 'delete-topic' => 'Бұл тақырыпты жою',
+ 'denied' => 'Бас тартылды',
+ 'dislike-post' => 'Бұл хабарды ұнатпау',
+ 'display-forum' => 'Тақырыптарды көрсету',
+ 'edit-post' => 'Постты өңдеу',
+ 'edit-topic' => 'Тақырыпты өңдеу',
+ 'forum' => 'Форум',
+ 'forums' => 'Форумдар',
+ 'implemented' => 'Орындалды',
+ 'in' => 'Ин',
+ 'invalid' => 'Жарамсыз',
+ 'label' => 'Заттаңба',
+ 'label-system' => 'Жапсырма жүйесі',
+ 'last-message' => 'Соңғы хабарлама',
+ 'last-post-info' => 'Соңғы хабарлама туралы ақпарат',
+ 'latest' => 'Соңғы',
+ 'like-post' => 'Бұл хабарлама сияқты',
+ 'meta-category' => 'Санаттағы форумдар тізімі',
+ 'moderation' => 'Модерация',
+ 'name' => 'Атауы',
+ 'not-connected' => 'Сіз қосылуға тиіссіз',
+ 'not-subscribed' => 'Жазылмаған',
+ 'open' => 'Ашық',
+ 'open-topic' => 'Бұл тақырыпты ашыңыз',
+ 'permalink' => 'Тұрақты сілтеме',
+ 'pin' => 'Қосу',
+ 'post' => 'Post',
+ 'post-quick-search' => 'Тез арада іздеу',
+ 'posts' => 'Хабарламалар',
+ 'quote' => 'Дәйексөз',
+ 'read-topic' => 'Тақырыпты оқыңыз',
+ 'replies' => 'Жауаптар',
+ 'send-new-topic' => 'Бұл тақырыпты сақтау',
+ 'solved' => 'Шешілді',
+ 'state' => 'Мемлекет',
+ 'stats' => 'Статистика',
+ 'subscribed' => 'Жазылды',
'subscription-quick-search' => 'Тақырып атауы жылдам іздеу (жазылымдар ішінде)',
- 'suggestion' => 'Ұсыныс',
- 'topic' => 'Тақырып',
- 'topic-closed' => 'Бұл тақырып жабық',
- 'topic-name' => 'Тақырып атауы',
- 'topic-quick-search' => 'Тақырып атауы тез іздеу',
- 'topic-title' => 'Тақырыптың тақырыбы',
- 'topics' => 'Тақырыптар',
- 'unpin' => 'Босату',
- 'view-all' => 'Барлық тақырыптарды қарау',
- 'views' => 'Көріністер',
+ 'suggestion' => 'Ұсыныс',
+ 'topic' => 'Тақырып',
+ 'topic-closed' => 'Бұл тақырып жабық',
+ 'topic-name' => 'Тақырып атауы',
+ 'topic-quick-search' => 'Тақырып атауы тез іздеу',
+ 'topic-title' => 'Тақырыптың тақырыбы',
+ 'topics' => 'Тақырыптар',
+ 'unpin' => 'Босату',
+ 'view-all' => 'Барлық тақырыптарды қарау',
+ 'views' => 'Көріністер',
];
diff --git a/lang/kk/graveyard.php b/lang/kk/graveyard.php
index 80ec3725d..5881225a8 100644
--- a/lang/kk/graveyard.php
+++ b/lang/kk/graveyard.php
@@ -12,15 +12,15 @@
*/
return [
- 'dead' => 'Өлі',
- 'graveyard' => 'Могилев',
- 'guidelines' => 'Нұсқаулық',
+ 'dead' => 'Өлі',
+ 'graveyard' => 'Могилев',
+ 'guidelines' => 'Нұсқаулық',
'guidelines-content' => '1) Өзіңіздің кері жүктеуіңізді қайта тірілте алмайсыз.
2) Сондай-ақ, сіз жасай алмайтын нәрсені тірілтуге болмайды.',
- 'howto' => 'Ереж Ереже',
- 'howto-desc1' => 'Сіз тұқымның : табысты қалпына келтіру үшін 30 күн аты . Қандай жағдайларда сіздің ағымдағы ұрықтың дәні',
- 'howto-desc2' => 'Сізге сыйақы беріледі',
- 'howto-hits' => 'Хиттер',
- 'pending' => 'Күтілуде',
- 'resurrect' => 'Қайта түзету',
- 'reward' => 'Фрейлеэк таңбалары',
+ 'howto' => 'Ереж Ереже',
+ 'howto-desc1' => 'Сіз тұқымның : табысты қалпына келтіру үшін 30 күн аты . Қандай жағдайларда сіздің ағымдағы ұрықтың дәні',
+ 'howto-desc2' => 'Сізге сыйақы беріледі',
+ 'howto-hits' => 'Хиттер',
+ 'pending' => 'Күтілуде',
+ 'resurrect' => 'Қайта түзету',
+ 'reward' => 'Фрейлеэк таңбалары',
];
diff --git a/lang/kk/notification.php b/lang/kk/notification.php
index 372d111a7..97e3ac080 100644
--- a/lang/kk/notification.php
+++ b/lang/kk/notification.php
@@ -12,14 +12,14 @@
*/
return [
- 'date' => 'Күні',
- 'delete' => 'Жою',
- 'delete-all' => 'Барлық хабарландыруларды жою',
- 'mark-all-read' => 'Барлығын оқылған деп белгілеу',
- 'mark-read' => 'оқылған деп белгілеу',
- 'message' => 'Хабар',
+ 'date' => 'Күні',
+ 'delete' => 'Жою',
+ 'delete-all' => 'Барлық хабарландыруларды жою',
+ 'mark-all-read' => 'Барлығын оқылған деп белгілеу',
+ 'mark-read' => 'оқылған деп белгілеу',
+ 'message' => 'Хабар',
'no-notifications' => 'Хабарламалар табылған жоқ',
- 'notifications' => 'Хабарламалар',
- 'read' => 'Оқылды',
- 'title' => 'Тақырып',
+ 'notifications' => 'Хабарламалар',
+ 'read' => 'Оқылды',
+ 'title' => 'Тақырып',
];
diff --git a/lang/kk/page.php b/lang/kk/page.php
index da262b3e9..bd97dd455 100644
--- a/lang/kk/page.php
+++ b/lang/kk/page.php
@@ -12,28 +12,28 @@
*/
return [
- 'aboutus-advantage' => 'Артықшылық',
- 'aboutus-advantage1' => 'Бізде HD бейне / аудио және техникалық қолдау әлемінде жақсы білетін қызметкерлер мен қызметкерлер бар.',
- 'aboutus-advantage2' => 'Кинофильмдер мен телешоуларға деген үлкен құмарлықтарымызбен қатар, біз ең жақсы нәрселердің ең жақсы таңдауларын ұсынамыз - ФАНРЕС! Мазмұнды жеткізушілерге үлкен рахмет .',
- 'aboutus-advantage3' => 'Сайтты ұстап тұру үшін қайырымдылық шараларын қабылдайтын болсақ, онда сайтта пневматикалық премерлер немесе баннерлер болмайды. Бізден жалбарынбаңыз.',
- 'aboutus-advantage4' => 'Біздің қоғамымыз оның ерте жасында ешкімді алаламайды. Қызметкерлеріміз бен пайдаланушы базасы арасында әрдайым көмектесуге болатын. Сіздің тәжірибеңізге көз жеткізіңіз: атағы таңқаларлық емес.',
- 'aboutus-advantage5' => 'Біздің қызметіміз күнделікті көптеген адамдар арқылы қолданылады. Weve біздің codebase функционалдығы мен қауіпсіздігі туралы қамқорлық екенімізді дәлелдеді және оған сенім артуға және сүйенуге болады. Біздің әзірлеушілер күнделікті жұмыс істейді, шынымен nex-ген кодтық негізін қамтамасыз ету үшін.',
- 'aboutus-header' => 'сәлем',
- 'aboutus-rules' => 'Сізден бізге не қажет',
- 'aboutus-rules1' => 'Қауымдастықтың белсенді мүшесі болу! Бұл әңгімелесулерге тиімді түрде қосылуға, бекітілген мазмұнды қосуға және мүмкіндіктері бар басқа пайдаланушыларға көмектесуді білдіреді.',
- 'aboutus-rules2' => 'Ережелерді толық оқып, оларға құрметпен қарауды өтінемін!',
- 'aboutus-rules3' => 'Ұсыныстар жасаңыз! Біз әр күнді жақсы атауға тырысамыз. Біз әр ұсыныстың қолданылатындығын айтамыз, бірақ ол жаңа идеяларға ешқашан қайғырмайды.',
- 'aboutus-welcome' => 'Әңгімелесу',
- 'aboutus-welcome-desc' => ': title - бұл қауымдастықтан құрылған Movie / TV / FANRES дерекқоры. Әрбір деректер бөлігі 2017 жылдан бастап біздің ғажайып қоғамдастықтың тарапынан қосылды: Атаулар А-Я күшті фокус HD контент, белсенді userbase, тамаша / қауіпсіз Codebase және пайдалы және мейірімді команда болып табылады.',
- 'blacklist-browsers' => 'Браузерлер',
- 'blacklist-btclient' => 'BitTorrent клиенті',
- 'blacklist-clients' => 'Клиенттер',
- 'blacklist-desc' => 'Келесі браузерлер мен Bittorrent клиенттері қара тізімге енгізілген / тыйым салынған: атау',
- 'blacklist-webbrowser' => 'Веб-шолғыш',
+ 'aboutus-advantage' => 'Артықшылық',
+ 'aboutus-advantage1' => 'Бізде HD бейне / аудио және техникалық қолдау әлемінде жақсы білетін қызметкерлер мен қызметкерлер бар.',
+ 'aboutus-advantage2' => 'Кинофильмдер мен телешоуларға деген үлкен құмарлықтарымызбен қатар, біз ең жақсы нәрселердің ең жақсы таңдауларын ұсынамыз - ФАНРЕС! Мазмұнды жеткізушілерге үлкен рахмет .',
+ 'aboutus-advantage3' => 'Сайтты ұстап тұру үшін қайырымдылық шараларын қабылдайтын болсақ, онда сайтта пневматикалық премерлер немесе баннерлер болмайды. Бізден жалбарынбаңыз.',
+ 'aboutus-advantage4' => 'Біздің қоғамымыз оның ерте жасында ешкімді алаламайды. Қызметкерлеріміз бен пайдаланушы базасы арасында әрдайым көмектесуге болатын. Сіздің тәжірибеңізге көз жеткізіңіз: атағы таңқаларлық емес.',
+ 'aboutus-advantage5' => 'Біздің қызметіміз күнделікті көптеген адамдар арқылы қолданылады. Weve біздің codebase функционалдығы мен қауіпсіздігі туралы қамқорлық екенімізді дәлелдеді және оған сенім артуға және сүйенуге болады. Біздің әзірлеушілер күнделікті жұмыс істейді, шынымен nex-ген кодтық негізін қамтамасыз ету үшін.',
+ 'aboutus-header' => 'сәлем',
+ 'aboutus-rules' => 'Сізден бізге не қажет',
+ 'aboutus-rules1' => 'Қауымдастықтың белсенді мүшесі болу! Бұл әңгімелесулерге тиімді түрде қосылуға, бекітілген мазмұнды қосуға және мүмкіндіктері бар басқа пайдаланушыларға көмектесуді білдіреді.',
+ 'aboutus-rules2' => 'Ережелерді толық оқып, оларға құрметпен қарауды өтінемін!',
+ 'aboutus-rules3' => 'Ұсыныстар жасаңыз! Біз әр күнді жақсы атауға тырысамыз. Біз әр ұсыныстың қолданылатындығын айтамыз, бірақ ол жаңа идеяларға ешқашан қайғырмайды.',
+ 'aboutus-welcome' => 'Әңгімелесу',
+ 'aboutus-welcome-desc' => ': title - бұл қауымдастықтан құрылған Movie / TV / FANRES дерекқоры. Әрбір деректер бөлігі 2017 жылдан бастап біздің ғажайып қоғамдастықтың тарапынан қосылды: Атаулар А-Я күшті фокус HD контент, белсенді userbase, тамаша / қауіпсіз Codebase және пайдалы және мейірімді команда болып табылады.',
+ 'blacklist-browsers' => 'Браузерлер',
+ 'blacklist-btclient' => 'BitTorrent клиенті',
+ 'blacklist-clients' => 'Клиенттер',
+ 'blacklist-desc' => 'Келесі браузерлер мен Bittorrent клиенттері қара тізімге енгізілген / тыйым салынған: атау',
+ 'blacklist-webbrowser' => 'Веб-шолғыш',
'blacklist-emaildomain' => 'Блокталған домен',
- 'email-blacklist-desc' => 'Келесі электрондық пошта домендері пайдаланылған кезде бұғатталған. Сіз тіркеле алмайсыз немесе келесіге шақыру жібере аласыз.',
- 'email-whitelist-desc' => 'Келесі электрондық пошта домендері тек электрондық пошта домендерін пайдалануға рұқсат етілген. Сіз тек тіркелуіңізге немесе келесі шақыру арқылы шақыру жібере аласыз.',
- 'staff-group' => 'Топ',
- 'staff-title' => 'Тақырып',
+ 'email-blacklist-desc' => 'Келесі электрондық пошта домендері пайдаланылған кезде бұғатталған. Сіз тіркеле алмайсыз немесе келесіге шақыру жібере аласыз.',
+ 'email-whitelist-desc' => 'Келесі электрондық пошта домендері тек электрондық пошта домендерін пайдалануға рұқсат етілген. Сіз тек тіркелуіңізге немесе келесі шақыру арқылы шақыру жібере аласыз.',
+ 'staff-group' => 'Топ',
+ 'staff-title' => 'Тақырып',
'whitelist-emaildomain' => 'Сенімді домен',
];
diff --git a/lang/kk/pagination.php b/lang/kk/pagination.php
index 90106bacd..641aee2cc 100644
--- a/lang/kk/pagination.php
+++ b/lang/kk/pagination.php
@@ -24,5 +24,5 @@ return [
*/
'previous' => '« Алдыңғы',
- 'next' => 'Келесі »',
+ 'next' => 'Келесі »',
];
diff --git a/lang/kk/passwords.php b/lang/kk/passwords.php
index e335fdba4..fd3064fa5 100644
--- a/lang/kk/passwords.php
+++ b/lang/kk/passwords.php
@@ -24,8 +24,8 @@ return [
*/
'password' => 'Құпиясөздердің ұзындығы кемінде алты таңба болуы және ол растауға сәйкес болуы керек.',
- 'reset' => 'Құпия сөзіңіз қайта орнатылды!',
- 'sent' => 'Сізге құпия сөзді қайта орнату сілтемесін жібердік!',
- 'token' => 'Осы құпиясөзді қайта орнату таңбалауышы жарамсыз.',
- 'user' => 'Бұл электрондық поштамен ешбір пайдаланушыны таба алмадық.',
+ 'reset' => 'Құпия сөзіңіз қайта орнатылды!',
+ 'sent' => 'Сізге құпия сөзді қайта орнату сілтемесін жібердік!',
+ 'token' => 'Осы құпиясөзді қайта орнату таңбалауышы жарамсыз.',
+ 'user' => 'Бұл электрондық поштамен ешбір пайдаланушыны таба алмадық.',
];
diff --git a/lang/kk/pm.php b/lang/kk/pm.php
index 0799c224e..06e407b17 100644
--- a/lang/kk/pm.php
+++ b/lang/kk/pm.php
@@ -12,28 +12,28 @@
*/
return [
- 'create' => 'Жасаңыз',
- 'delete' => 'Жою',
+ 'create' => 'Жасаңыз',
+ 'delete' => 'Жою',
'enter-subject' => 'Тақырыпты енгізіңіз',
- 'from' => 'Қайдан',
- 'inbox' => 'Кіріс жәшігі',
+ 'from' => 'Қайдан',
+ 'inbox' => 'Кіріс жәшігі',
'mark-all-read' => 'Барлық хабарламаларды оқылған деп белгілеңіз',
- 'message' => 'Хабар',
- 'messages' => 'Хабарламалар',
- 'new' => 'Жаңа хабарлама',
- 'outbox' => 'Шығыс жәшігі',
- 'private' => 'Жеке',
- 'read' => 'Оқылды',
- 'received-at' => 'Алынған',
- 'refresh' => 'Жаңарту',
- 'reply' => 'Жауап беру',
- 'search' => 'Тақырып бойынша іздеу',
- 'select' => 'Пайдаланушыны таңдаңыз',
- 'send' => 'PM жіберіңіз',
- 'send-to' => 'Жіберу PM To',
- 'sent' => 'Жіберілді',
- 'sent-at' => 'Жіберілген',
- 'subject' => 'Тақырып',
- 'to' => 'Кімге',
- 'unread' => 'Оқылмаған',
+ 'message' => 'Хабар',
+ 'messages' => 'Хабарламалар',
+ 'new' => 'Жаңа хабарлама',
+ 'outbox' => 'Шығыс жәшігі',
+ 'private' => 'Жеке',
+ 'read' => 'Оқылды',
+ 'received-at' => 'Алынған',
+ 'refresh' => 'Жаңарту',
+ 'reply' => 'Жауап беру',
+ 'search' => 'Тақырып бойынша іздеу',
+ 'select' => 'Пайдаланушыны таңдаңыз',
+ 'send' => 'PM жіберіңіз',
+ 'send-to' => 'Жіберу PM To',
+ 'sent' => 'Жіберілді',
+ 'sent-at' => 'Жіберілген',
+ 'subject' => 'Тақырып',
+ 'to' => 'Кімге',
+ 'unread' => 'Оқылмаған',
];
diff --git a/lang/kk/poll.php b/lang/kk/poll.php
index df34f5221..9d9c0f05f 100644
--- a/lang/kk/poll.php
+++ b/lang/kk/poll.php
@@ -12,18 +12,18 @@
*/
return [
- 'add-option' => 'Параметрді қосу',
- 'create-poll' => 'Сауалнама жасау',
- 'current' => 'Ағымдағы сұраулар (лар)',
- 'delete-option' => 'Параметрді жою',
+ 'add-option' => 'Параметрді қосу',
+ 'create-poll' => 'Сауалнама жасау',
+ 'current' => 'Ағымдағы сұраулар (лар)',
+ 'delete-option' => 'Параметрді жою',
'multiple-choice' => 'Бұл бірнеше таңдауды сұрау. Қалағаныңызша көп жауаптарыңызды таңдаңыз.',
- 'option' => 'Опция',
- 'poll' => 'Сауалдама',
- 'polls' => 'Сауалнамалар',
- 'results' => 'Сауалдама нәтижелері',
- 'title' => 'Тақырып',
- 'total' => 'Дауыстардың барлығы',
- 'vote' => 'Дауыс',
- 'vote-now' => 'Дауыстарды қазір алыңыз!',
- 'votes' => 'Дауыстар',
+ 'option' => 'Опция',
+ 'poll' => 'Сауалдама',
+ 'polls' => 'Сауалнамалар',
+ 'results' => 'Сауалдама нәтижелері',
+ 'title' => 'Тақырып',
+ 'total' => 'Дауыстардың барлығы',
+ 'vote' => 'Дауыс',
+ 'vote-now' => 'Дауыстарды қазір алыңыз!',
+ 'votes' => 'Дауыстар',
];
diff --git a/lang/kk/request.php b/lang/kk/request.php
index f1770196b..28be7f831 100644
--- a/lang/kk/request.php
+++ b/lang/kk/request.php
@@ -12,67 +12,67 @@
*/
return [
- 'add-request' => 'Сұрау қосу',
- 'age' => 'Жасы',
- 'all-requests' => 'Барлық сұраулар',
- 'approve' => 'Бекіту',
- 'bounty' => 'Bounty',
- 'bounty-claimed' => 'Bounty мәлімдеді',
- 'bounty-unclaimed' => 'Bounty талап етілмеді',
- 'category' => 'Санат',
- 'claim' => 'Талап',
- 'claim-anon-choose' => 'Ақылмен таңдаңыз',
- 'claim-as-anon' => 'Сіз бұл туралы мүлдем талап етпекпіз',
- 'claim-now' => 'Шағым қазір',
- 'claimed' => 'Талап етілді',
- 'current' => 'Ағымдағы',
- 'delete' => 'Осы сұрауды жою',
+ 'add-request' => 'Сұрау қосу',
+ 'age' => 'Жасы',
+ 'all-requests' => 'Барлық сұраулар',
+ 'approve' => 'Бекіту',
+ 'bounty' => 'Bounty',
+ 'bounty-claimed' => 'Bounty мәлімдеді',
+ 'bounty-unclaimed' => 'Bounty талап етілмеді',
+ 'category' => 'Санат',
+ 'claim' => 'Талап',
+ 'claim-anon-choose' => 'Ақылмен таңдаңыз',
+ 'claim-as-anon' => 'Сіз бұл туралы мүлдем талап етпекпіз',
+ 'claim-now' => 'Шағым қазір',
+ 'claimed' => 'Талап етілді',
+ 'current' => 'Ағымдағы',
+ 'delete' => 'Осы сұрауды жою',
'delete-confirmation' => 'Осы Сұранымды жойғыңыз келгеніне сенімдісіз бе?',
- 'delete-filled' => 'Бұл сұрау толтырылмаған жағдайда ғана жойылуы мүмкін',
- 'description' => 'Сипаттама',
- 'dont-have-bps' => 'Бонус жеткіліксіз',
- 'edit-request' => 'Сұрауды өңдеу',
- 'enter-bp' => 'Бонустық ұпайларды енгізу (кемінде 100)',
- 'enter-hash' => 'Жүктеп салынған торренің Info Хэштерін енгізіңіз',
- 'fill' => 'Толтырыңыз',
- 'fill-request' => 'Бұл сұранысты толтырыңыз',
- 'filled' => 'Толтырылған',
- 'filled-by' => 'Толтырылған',
- 'for' => 'үшін',
- 'fulfill' => 'Орындалады',
- 'last-vote' => 'Соңғы дауыс',
- 'my-requests' => 'Менің сұрауларым',
- 'no' => 'Жоқ,',
- 'no-imdb-id' => 'Барлық сұраулар IMDB нөмірін қамтуы керек',
- 'no-privileges' => 'Қате: сұрауыңыздың құқықтары өшірілді',
- 'no-privileges-desc' => 'Егер сіз қателесіп жатсаңыз, қызметкерлерге хабарласыңыз',
- 'no-refunds' => 'Жасау, толтыру және жеңілдіктерге арналған BON биржалары соңғы болып табылады!
ЖОҚҚАН ҚАЙТАРУСЫЗ!',
- 'pending' => 'Күтілуде',
- 'reason' => 'Себеп',
- 'reject' => 'Қабылдамау',
- 'report' => 'Есеп беру туралы сұрау',
- 'request' => 'Сұрау',
- 'request-details' => 'Мәліметтерді сұрау',
- 'requested-by' => 'Сұратылған',
- 'requests' => 'Сұраулар',
- 'required' => 'Міндетті',
- 'reset' => 'Қалпына келтіру',
- 'reset-confirmation' => 'Осы сұранымды қалпына келтіргіңіз келгеніне сенімдісіз бе?',
- 'reset-request' => 'Осы сұранымды қалпына келтіріңіз',
- 'reward' => 'Сыйақы',
- 'reward-desc' => 'Сыйлықтың қанша бонусы бар? Ең аз 100 БП',
- 'reward-from' => 'Қайдан',
- 'title' => 'Тақырып',
- 'torrent-hash' => 'Торрент хеші',
- 'total-bounty' => 'Жалпы сыйақы',
- 'type' => 'Түрі',
- 'unclaim' => 'Бұл сұранысты талап ету',
- 'unfilled' => 'Толтырылмаған',
- 'view-filled' => 'Толтырылған көрініс',
- 'view-unfilled' => 'Толтырылмаған көрініс',
- 'vote' => 'Дауыс',
- 'vote-that' => 'Осы сұранымға дауыс беріңіз',
- 'voters' => 'Сайлаушылар',
- 'votes' => 'Дауыстар',
- 'yes' => 'Иә',
+ 'delete-filled' => 'Бұл сұрау толтырылмаған жағдайда ғана жойылуы мүмкін',
+ 'description' => 'Сипаттама',
+ 'dont-have-bps' => 'Бонус жеткіліксіз',
+ 'edit-request' => 'Сұрауды өңдеу',
+ 'enter-bp' => 'Бонустық ұпайларды енгізу (кемінде 100)',
+ 'enter-hash' => 'Жүктеп салынған торренің Info Хэштерін енгізіңіз',
+ 'fill' => 'Толтырыңыз',
+ 'fill-request' => 'Бұл сұранысты толтырыңыз',
+ 'filled' => 'Толтырылған',
+ 'filled-by' => 'Толтырылған',
+ 'for' => 'үшін',
+ 'fulfill' => 'Орындалады',
+ 'last-vote' => 'Соңғы дауыс',
+ 'my-requests' => 'Менің сұрауларым',
+ 'no' => 'Жоқ,',
+ 'no-imdb-id' => 'Барлық сұраулар IMDB нөмірін қамтуы керек',
+ 'no-privileges' => 'Қате: сұрауыңыздың құқықтары өшірілді',
+ 'no-privileges-desc' => 'Егер сіз қателесіп жатсаңыз, қызметкерлерге хабарласыңыз',
+ 'no-refunds' => 'Жасау, толтыру және жеңілдіктерге арналған BON биржалары соңғы болып табылады!
ЖОҚҚАН ҚАЙТАРУСЫЗ!',
+ 'pending' => 'Күтілуде',
+ 'reason' => 'Себеп',
+ 'reject' => 'Қабылдамау',
+ 'report' => 'Есеп беру туралы сұрау',
+ 'request' => 'Сұрау',
+ 'request-details' => 'Мәліметтерді сұрау',
+ 'requested-by' => 'Сұратылған',
+ 'requests' => 'Сұраулар',
+ 'required' => 'Міндетті',
+ 'reset' => 'Қалпына келтіру',
+ 'reset-confirmation' => 'Осы сұранымды қалпына келтіргіңіз келгеніне сенімдісіз бе?',
+ 'reset-request' => 'Осы сұранымды қалпына келтіріңіз',
+ 'reward' => 'Сыйақы',
+ 'reward-desc' => 'Сыйлықтың қанша бонусы бар? Ең аз 100 БП',
+ 'reward-from' => 'Қайдан',
+ 'title' => 'Тақырып',
+ 'torrent-hash' => 'Торрент хеші',
+ 'total-bounty' => 'Жалпы сыйақы',
+ 'type' => 'Түрі',
+ 'unclaim' => 'Бұл сұранысты талап ету',
+ 'unfilled' => 'Толтырылмаған',
+ 'view-filled' => 'Толтырылған көрініс',
+ 'view-unfilled' => 'Толтырылмаған көрініс',
+ 'vote' => 'Дауыс',
+ 'vote-that' => 'Осы сұранымға дауыс беріңіз',
+ 'voters' => 'Сайлаушылар',
+ 'votes' => 'Дауыстар',
+ 'yes' => 'Иә',
];
diff --git a/lang/kk/rss.php b/lang/kk/rss.php
index ce1557e9f..e0d3e382f 100644
--- a/lang/kk/rss.php
+++ b/lang/kk/rss.php
@@ -12,19 +12,19 @@
*/
return [
- 'create' => 'Жасаңыз',
+ 'create' => 'Жасаңыз',
'create-private-feed' => 'Жеке RSS арнасын жасау',
- 'create-public-feed' => 'Жалпыға қолжетімді RSS арнасын жасау',
- 'delete' => 'Жою',
- 'edit' => 'Өңдеу',
- 'edit-private-feed' => 'Жеке RSS арнасын өзгерту',
- 'edit-public-feed' => 'Жалпыға қолжетімді RSS арнасын өңдеу',
- 'feed' => 'Feed',
- 'feeds' => 'Арна',
- 'name' => 'Атауы',
- 'public' => 'Қоғамдық',
- 'private' => 'Жеке',
- 'rss' => 'RSS',
- 'rss-feed' => 'RSS арнасы',
- 'type' => 'Түрі',
+ 'create-public-feed' => 'Жалпыға қолжетімді RSS арнасын жасау',
+ 'delete' => 'Жою',
+ 'edit' => 'Өңдеу',
+ 'edit-private-feed' => 'Жеке RSS арнасын өзгерту',
+ 'edit-public-feed' => 'Жалпыға қолжетімді RSS арнасын өңдеу',
+ 'feed' => 'Feed',
+ 'feeds' => 'Арна',
+ 'name' => 'Атауы',
+ 'public' => 'Қоғамдық',
+ 'private' => 'Жеке',
+ 'rss' => 'RSS',
+ 'rss-feed' => 'RSS арнасы',
+ 'type' => 'Түрі',
];
diff --git a/lang/kk/staff.php b/lang/kk/staff.php
index 924e47a46..3b964ebcb 100644
--- a/lang/kk/staff.php
+++ b/lang/kk/staff.php
@@ -12,48 +12,48 @@
*/
return [
- 'audit-log' => 'Әрекет журналы',
- 'articles' => 'Мақалалар',
- 'applications' => 'Өтініштер',
- 'bans-log' => 'Bans Log',
- 'blocks' => 'Блок',
- 'bot' => 'Бот',
- 'bots' => 'Боттар',
- 'chat' => 'Чат',
- 'config-manager' => 'Конфигурация менеджері',
- 'dashboard' => 'Басқару тақтасы',
- 'failed-login-log' => 'Кіру сәтсіз аяқталды',
- 'flush-ghost-peers' => 'Құрметті әріптестер',
- 'forums' => 'Форумдар',
- 'frontend' => 'Алғы жақ',
- 'general-tools' => 'Жалпы құралдар',
- 'groups' => 'Топтар',
- 'invites-log' => 'Журналға шақырады',
- 'laravel-log' => 'Laravel Log',
- 'links' => 'Сілтемелер',
- 'logs' => 'Журналдар',
- 'mass-pm' => 'Кәрім Мәсімов',
- 'mass-validate-users' => 'Пайдаланушыларды жаппай тексеріңіз',
- 'moderation' => 'Модерация',
- 'pages' => 'Беттер',
- 'please-moderate' => 'Осы торретті модерациялауды сұраймыз!',
- 'polls' => 'Сауалнамалар',
- 'reports-log' => 'Есептер журналы',
- 'rss' => 'RSS',
- 'staff-dashboard' => 'Қызметкерлер тақтасы',
- 'torrent-categories' => 'Торрент санаттары',
- 'torrent-moderation' => 'Torrent Moderation',
- 'torrent-tools' => 'Torrent құралдары',
- 'torrent-types' => 'Торрент түрлері',
- 'torrents' => 'Torrents',
- 'user-gifting' => 'User Gifting',
- 'user-notes' => 'Пайдаланушы жазбалары журналы',
- 'user-search' => 'Пайдаланушы іздеу',
- 'user-tools' => 'Пайдаланушы құралдары',
- 'warnings-log' => 'Ескертулер журналы',
- 'you-have' => 'Сенде бар',
+ 'audit-log' => 'Әрекет журналы',
+ 'articles' => 'Мақалалар',
+ 'applications' => 'Өтініштер',
+ 'bans-log' => 'Bans Log',
+ 'blocks' => 'Блок',
+ 'bot' => 'Бот',
+ 'bots' => 'Боттар',
+ 'chat' => 'Чат',
+ 'config-manager' => 'Конфигурация менеджері',
+ 'dashboard' => 'Басқару тақтасы',
+ 'failed-login-log' => 'Кіру сәтсіз аяқталды',
+ 'flush-ghost-peers' => 'Құрметті әріптестер',
+ 'forums' => 'Форумдар',
+ 'frontend' => 'Алғы жақ',
+ 'general-tools' => 'Жалпы құралдар',
+ 'groups' => 'Топтар',
+ 'invites-log' => 'Журналға шақырады',
+ 'laravel-log' => 'Laravel Log',
+ 'links' => 'Сілтемелер',
+ 'logs' => 'Журналдар',
+ 'mass-pm' => 'Кәрім Мәсімов',
+ 'mass-validate-users' => 'Пайдаланушыларды жаппай тексеріңіз',
+ 'moderation' => 'Модерация',
+ 'pages' => 'Беттер',
+ 'please-moderate' => 'Осы торретті модерациялауды сұраймыз!',
+ 'polls' => 'Сауалнамалар',
+ 'reports-log' => 'Есептер журналы',
+ 'rss' => 'RSS',
+ 'staff-dashboard' => 'Қызметкерлер тақтасы',
+ 'torrent-categories' => 'Торрент санаттары',
+ 'torrent-moderation' => 'Torrent Moderation',
+ 'torrent-tools' => 'Torrent құралдары',
+ 'torrent-types' => 'Торрент түрлері',
+ 'torrents' => 'Torrents',
+ 'user-gifting' => 'User Gifting',
+ 'user-notes' => 'Пайдаланушы жазбалары журналы',
+ 'user-search' => 'Пайдаланушы іздеу',
+ 'user-tools' => 'Пайдаланушы құралдары',
+ 'warnings-log' => 'Ескертулер журналы',
+ 'you-have' => 'Сенде бар',
'possible-leech-cheaters' => 'Мүмкін болатын алаяқтар',
- 'chat-tools' => 'Сөйлесу құралдары',
- 'flush-chat' => 'Чатқұрылғыны жуу',
- 'seedboxes' => 'Тіркелген Seedboxes',
+ 'chat-tools' => 'Сөйлесу құралдары',
+ 'flush-chat' => 'Чатқұрылғыны жуу',
+ 'seedboxes' => 'Тіркелген Seedboxes',
];
diff --git a/lang/kk/stat.php b/lang/kk/stat.php
index 96b7b4930..b968eb1f9 100644
--- a/lang/kk/stat.php
+++ b/lang/kk/stat.php
@@ -12,40 +12,40 @@
*/
return [
- 'by-count' => 'Сандар бойынша',
- 'by-data' => 'Деректер бойынша',
- 'by-volume' => 'Көлемі бойынша',
- 'group' => 'Топ',
- 'groups' => 'Топтар',
- 'nerd-stats' => 'Nerd статистикасы',
- 'nerd-stats-desc' => 'Біз барлық статистиканы жақсы көреміз. Міне, біз маңызды нәрселерді таба аламыз',
- 'registration-date' => 'Тіркеу күні',
- 'request-fulfilled' => 'Өтініш орындалды',
- 'request-not-fulfilled' => 'Сұраныс орындалмады',
+ 'by-count' => 'Сандар бойынша',
+ 'by-data' => 'Деректер бойынша',
+ 'by-volume' => 'Көлемі бойынша',
+ 'group' => 'Топ',
+ 'groups' => 'Топтар',
+ 'nerd-stats' => 'Nerd статистикасы',
+ 'nerd-stats-desc' => 'Біз барлық статистиканы жақсы көреміз. Міне, біз маңызды нәрселерді таба аламыз',
+ 'registration-date' => 'Тіркеу күні',
+ 'request-fulfilled' => 'Өтініш орындалды',
+ 'request-not-fulfilled' => 'Сұраныс орындалмады',
'request-pending-aproval' => 'Күтпеген бекіту',
- 'select-category' => 'Төмендегі санатты таңдаңыз',
- 'site-stats' => 'Сайт статистикасы',
- 'stats' => 'Статистика',
- 'stats-format' => 'Барлық статистика 100-ші форматта көрсетілді',
- 'top-bankers' => 'Жоғарғы банкирлер',
- 'top-bountied' => 'Ең көп сатылған',
- 'top-completed' => 'Жоғарғы аяқталды',
- 'top-dead' => 'Үздік өлім',
- 'top-downloaded' => 'Үздік жүктелген торрент',
- 'top-downloaders' => 'Үздік жүктеп салушылар',
- 'top-dying' => 'Жоғарғы өлім',
- 'top-leeched' => 'Жоғарғы Leeched',
- 'top-leechers' => 'Үздік лейгерлер',
- 'top-seeded' => 'Жоғарғы сығылған',
- 'top-seeding' => 'Жоғарғы егіс',
- 'top-seeders' => 'Жоғарғы сепкіштер',
- 'top-seedsize' => 'Жоғарғы тұқымдық',
- 'top-seedtime' => 'Үздік сүт дәмі',
- 'top-uploaders' => 'Жоғарғы жүктеушілер',
- 'total-download' => 'Барлығы жүктеу',
- 'total-torrents' => 'Total Torrents',
- 'total-traffic' => 'Жалпы трафик',
- 'total-upload' => 'Жалпы жүктеу',
- 'users-in-group' => 'Топтағы пайдаланушылар',
- 'users-per-group' => 'Топтар бойынша пайдаланушылар',
+ 'select-category' => 'Төмендегі санатты таңдаңыз',
+ 'site-stats' => 'Сайт статистикасы',
+ 'stats' => 'Статистика',
+ 'stats-format' => 'Барлық статистика 100-ші форматта көрсетілді',
+ 'top-bankers' => 'Жоғарғы банкирлер',
+ 'top-bountied' => 'Ең көп сатылған',
+ 'top-completed' => 'Жоғарғы аяқталды',
+ 'top-dead' => 'Үздік өлім',
+ 'top-downloaded' => 'Үздік жүктелген торрент',
+ 'top-downloaders' => 'Үздік жүктеп салушылар',
+ 'top-dying' => 'Жоғарғы өлім',
+ 'top-leeched' => 'Жоғарғы Leeched',
+ 'top-leechers' => 'Үздік лейгерлер',
+ 'top-seeded' => 'Жоғарғы сығылған',
+ 'top-seeding' => 'Жоғарғы егіс',
+ 'top-seeders' => 'Жоғарғы сепкіштер',
+ 'top-seedsize' => 'Жоғарғы тұқымдық',
+ 'top-seedtime' => 'Үздік сүт дәмі',
+ 'top-uploaders' => 'Жоғарғы жүктеушілер',
+ 'total-download' => 'Барлығы жүктеу',
+ 'total-torrents' => 'Total Torrents',
+ 'total-traffic' => 'Жалпы трафик',
+ 'total-upload' => 'Жалпы жүктеу',
+ 'users-in-group' => 'Топтағы пайдаланушылар',
+ 'users-per-group' => 'Топтар бойынша пайдаланушылар',
];
diff --git a/lang/kk/torrent.php b/lang/kk/torrent.php
index 405bb27ed..6ccfccaea 100644
--- a/lang/kk/torrent.php
+++ b/lang/kk/torrent.php
@@ -12,197 +12,197 @@
*/
return [
- 'activity' => 'Қызмет',
- 'age' => 'Жасы',
- 'agent' => 'Агент',
- 'alive' => 'Өмір сүру',
- 'announce-url' => 'URL жариялау',
- 'announce-url-desc' => 'Жаңа торрент жасаған кезде жоғарыда айтылған URL мекенжайын пайдаланыңыз. Егер торрентіңізді оны сайттан жүктеместен пайдаланғыңыз келсе, сіз жеке туды және дереккөзді көзге қоюыңыз керек: көзі',
- 'announce-url-desc-url' => 'Ақау бар ма? Біздің нұсқаулықты HERE қараңыз',
- 'announce-url-desc2' => 'Барлық жүктеулер үшін TMDB және IMDB қажет! Плакаттар / фондар мен қосымша ақпарат алу үшін пайдаланылады',
- 'approved' => 'Бекітілген',
- 'audio' => 'Аудио',
- 'bon-tipped' => 'BON Tipped',
- 'bookmark' => 'Бетбелгі',
- 'bookmarks' => 'Бетбелгілер',
- 'bump' => 'Соққы',
- 'cant-upload' => 'Қате: Жүктеу құқықтары ажыратылған',
- 'cant-upload-desc' => 'Қате туындаған жағдайда, қызметкерлерге хабарласыңыз',
- 'cards' => 'Карталар',
- 'cards-view' => 'Torrent карталарын көру',
- 'categories' => 'Санаттар',
- 'category' => 'Санат',
- 'client' => 'Клиент',
- 'commited' => 'Орындалады',
- 'completed' => 'Аяқталды',
- 'completed_at' => 'Аяқталды',
- 'completed-not-seeding' => 'Сіз бұл жүктемені толтырдыңыз, бірақ оны бұдан әрі егуге болмайды',
- 'created_at' => 'Жасалған',
- 'credited' => 'Несиелендірілген',
- 'current' => 'Ағымдағы',
- 'current-filters' => 'Ағымдағы сүзгілер',
- 'currently-leeching' => 'Қазіргі уақытта Leeching',
- 'currently-seeding' => 'Қазіргі уақытта егіс',
- 'dead-torrent' => 'Өлі торрент',
- 'dead-torrents' => 'Dead Torrents',
- 'delete-bookmark' => 'Бұл белгішені жою',
- 'description' => 'Сипаттама',
- 'discounts' => 'Жеңілдіктер',
- 'double-upload' => 'Қос жүктеу',
- 'download-all' => 'Барлығын жүктеп алыңыз',
- 'download-check' => 'Тексеруді жүктеңіз',
- 'downloaded' => 'Жүктелген',
- 'dying-torrent' => 'Өлген торрент',
- 'dying-torrents' => 'Өлтіретін торрент',
- 'encode-settings' => 'Параметрлерді кодтау',
- 'estimated-ratio' => 'Жүктеп алғаннан кейін есептелген ара қатынас',
- 'failed' => 'Аяқталмады',
- 'feature' => 'Ерекшелігі',
- 'featured' => 'Таңдаулы',
- 'featured-desc' => 'Үздік торрент бар 100% Тегін және Қос жүктеу!',
- 'featured-until' => 'Бұл әзірге дейін арнайы торрент',
- 'file' => 'Файл',
- 'filters' => 'Сүзгілер',
- 'fl-tokens-left' => 'Сенде бар : таңбалар солға',
- 'freeleech' => 'Freeleech',
- 'freeleech-token' => 'Freeleech Token',
- 'general' => 'Жалпы',
- 'genre' => 'Жанр',
- 'global-double-upload' => 'Жаһандық екі рет жүктеу',
- 'global-freeleech' => 'Global Freeleech',
- 'grant' => 'Грант',
- 'greater-than' => 'Үлкен',
- 'grouping' => 'Топтау',
- 'groupings' => 'Топтау',
- 'grouping-categories' => 'Санаттарды топтау',
+ 'activity' => 'Қызмет',
+ 'age' => 'Жасы',
+ 'agent' => 'Агент',
+ 'alive' => 'Өмір сүру',
+ 'announce-url' => 'URL жариялау',
+ 'announce-url-desc' => 'Жаңа торрент жасаған кезде жоғарыда айтылған URL мекенжайын пайдаланыңыз. Егер торрентіңізді оны сайттан жүктеместен пайдаланғыңыз келсе, сіз жеке туды және дереккөзді көзге қоюыңыз керек: көзі',
+ 'announce-url-desc-url' => 'Ақау бар ма? Біздің нұсқаулықты HERE қараңыз',
+ 'announce-url-desc2' => 'Барлық жүктеулер үшін TMDB және IMDB қажет! Плакаттар / фондар мен қосымша ақпарат алу үшін пайдаланылады',
+ 'approved' => 'Бекітілген',
+ 'audio' => 'Аудио',
+ 'bon-tipped' => 'BON Tipped',
+ 'bookmark' => 'Бетбелгі',
+ 'bookmarks' => 'Бетбелгілер',
+ 'bump' => 'Соққы',
+ 'cant-upload' => 'Қате: Жүктеу құқықтары ажыратылған',
+ 'cant-upload-desc' => 'Қате туындаған жағдайда, қызметкерлерге хабарласыңыз',
+ 'cards' => 'Карталар',
+ 'cards-view' => 'Torrent карталарын көру',
+ 'categories' => 'Санаттар',
+ 'category' => 'Санат',
+ 'client' => 'Клиент',
+ 'commited' => 'Орындалады',
+ 'completed' => 'Аяқталды',
+ 'completed_at' => 'Аяқталды',
+ 'completed-not-seeding' => 'Сіз бұл жүктемені толтырдыңыз, бірақ оны бұдан әрі егуге болмайды',
+ 'created_at' => 'Жасалған',
+ 'credited' => 'Несиелендірілген',
+ 'current' => 'Ағымдағы',
+ 'current-filters' => 'Ағымдағы сүзгілер',
+ 'currently-leeching' => 'Қазіргі уақытта Leeching',
+ 'currently-seeding' => 'Қазіргі уақытта егіс',
+ 'dead-torrent' => 'Өлі торрент',
+ 'dead-torrents' => 'Dead Torrents',
+ 'delete-bookmark' => 'Бұл белгішені жою',
+ 'description' => 'Сипаттама',
+ 'discounts' => 'Жеңілдіктер',
+ 'double-upload' => 'Қос жүктеу',
+ 'download-all' => 'Барлығын жүктеп алыңыз',
+ 'download-check' => 'Тексеруді жүктеңіз',
+ 'downloaded' => 'Жүктелген',
+ 'dying-torrent' => 'Өлген торрент',
+ 'dying-torrents' => 'Өлтіретін торрент',
+ 'encode-settings' => 'Параметрлерді кодтау',
+ 'estimated-ratio' => 'Жүктеп алғаннан кейін есептелген ара қатынас',
+ 'failed' => 'Аяқталмады',
+ 'feature' => 'Ерекшелігі',
+ 'featured' => 'Таңдаулы',
+ 'featured-desc' => 'Үздік торрент бар 100% Тегін және Қос жүктеу!',
+ 'featured-until' => 'Бұл әзірге дейін арнайы торрент',
+ 'file' => 'Файл',
+ 'filters' => 'Сүзгілер',
+ 'fl-tokens-left' => 'Сенде бар : таңбалар солға',
+ 'freeleech' => 'Freeleech',
+ 'freeleech-token' => 'Freeleech Token',
+ 'general' => 'Жалпы',
+ 'genre' => 'Жанр',
+ 'global-double-upload' => 'Жаһандық екі рет жүктеу',
+ 'global-freeleech' => 'Global Freeleech',
+ 'grant' => 'Грант',
+ 'greater-than' => 'Үлкен',
+ 'grouping' => 'Топтау',
+ 'groupings' => 'Топтау',
+ 'grouping-categories' => 'Санаттарды топтау',
'grouping-categories-desc' => 'Қандай категориялар тобын алғыңыз келеді?',
- 'grouping-results' => 'Нәтижелерді топтастыру',
- 'groupings-view' => 'Топтау көрінісі',
- 'have-completed' => 'Аяқталды',
- 'have-downloaded' => 'Жүктелген',
- 'have-not-completed' => 'Аяқталмады',
- 'have-not-downloaded' => 'Жүктелмеді',
- 'health' => 'Денсаулық',
- 'history' => 'Тарих',
- 'hitrun' => 'H & R?',
- 'hit-and-runs' => 'Hit және Run санау',
- 'immune' => 'Иммундық?',
- 'info' => 'Ақпарат',
- 'internal' => 'Ішкі',
- 'internal-release' => 'Ішкі босату',
- 'last-seed-activity' => 'Соңғы тұқым белсенділігі',
- 'last-seeder' => 'Сіз соңғы ұрығысыз! (3 рет жүктелді)',
- 'last-update' => 'Соңғы жаңарту',
- 'leave-tip' => 'Кеңес қалдырыңыз',
- 'leecher' => 'Leecher',
- 'leechers' => 'Leechers',
- 'leeching' => 'Тыңдау',
- 'left' => 'Сол',
- 'legendary-seeder' => 'Аңызға айналған сепкіш',
- 'legendary-torrent' => 'Аңызға айналған торрент',
- 'list' => 'Тізім',
- 'me' => 'Мен',
- 'media-info' => 'MediaInfo',
- 'media-info-parser' => 'MediaInfo Parser',
- 'media-info-paste' => 'Мұнда MediaInfo тастаңыз',
- 'meta-desc' => 'Жүктеу: ең жылдамдықпен аты',
- 'moderation' => 'Модерация',
- 'movies' => 'Фильмдер',
- 'mvp' => 'MVP',
- 'my-active-torrents' => 'Менің белсенді торрентім',
- 'name' => 'Атауы',
- 'no-bookmarks' => 'Бетбелгілер табылған жоқ.',
- 'no-discounts' => 'Қазіргі уақытта жеңілдіктер жоқ',
- 'no-meta' => 'Метадеректер табылмады',
- 'no-privileges' => 'Сіз бұл файлды жүктей алмайсыз - толығырақ ақпарат алу үшін төмендегіні қараңыз',
- 'no-privileges-desc' => 'Жүктелу түймесінің жоғарыда көрсетілген сәтсіз нәтижелерін шешіңіз',
- 'not-completed' => 'Жүктеу басталды, бірақ ешқашан аяқталды',
- 'not-downloaded' => 'Жүктелмеді',
- 'old-torrent' => 'Ескі торрент',
- 'optional' => 'Қосымша',
- 'original-output' => 'Бастапқы шығуды көрсету / жасыру',
- 'participant' => 'Қатысушы',
- 'passed' => 'Өткізді',
- 'peers' => 'Құрбылар',
- 'pending' => 'Күтілуде',
- 'personal-freeleech' => 'Дербес Freeleech',
- 'poster' => 'Плакат',
- 'poster-view' => 'Плакаттың көрінісі',
- 'posters' => 'Плакаттар',
- 'prewarn' => 'Алдын ала ескертілген бе?',
- 'progress' => 'Прогресс',
- 'quick-comment' => 'Жылдам түсініктеме',
- 'quick-tip' => 'Жылдам ұштар саны',
- 'rated' => 'Бағаланған',
- 'rating' => 'Рейтинг',
- 'ready' => 'Бұл файл жүктеуге дайын',
- 'rejected' => 'Қабылданбады',
- 'released' => 'Босатылған',
- 'remaining' => 'Қалған',
- 'request-reseed' => 'Талап етуді сұрау',
- 'requires-reseed' => 'Талап етуді талап етеді',
- 'resurrections' => 'Қайта қалпына келтіру',
- 'revoke' => 'Тыйым салу',
- 'rss' => 'RSS',
- 'runtime' => 'Runtime',
- 'satisfied_in' => 'Қанағаттанған',
- 'say-thanks' => 'Ұзақ уақыт бойы сіздерге рахмет және тұқым айтуға ұмытпаңыз',
- 'sd-content' => 'SD мазмұны',
- 'search' => 'Іздеу',
- 'seed-time' => 'Тұқымдық уақыт',
- 'seeder' => 'Дәнді дақыл',
- 'seeders' => 'Сепкіштер',
- 'seeding' => 'Егіс',
- 'seedsize' => 'Тұқымдық',
- 'seedtime' => 'Ұрықтану уақыты',
- 'short-completed' => 'C',
- 'short-leechs' => 'L.',
- 'short-seeds' => 'S',
- 'show-files' => 'Файлдарды көрсету',
- 'similar' => 'Similar Torrents',
- 'size' => 'Өлшемі',
- 'special' => 'Арнайы',
- 'special-freeleech' => 'Арнайы Фрелеэх',
- 'started' => 'Басталды',
- 'status' => 'Күйі',
- 'statistics' => 'Статистика',
- 'stats' => 'Статистика',
- 'sticky' => 'Жабысқақ',
- 'stream-optimized' => 'Ағын оңтайландырылды',
- 'subtitle' => 'Субтитр',
- 'team-player' => 'Топ ойыншысы',
- 'thank' => 'Рахмет',
- 'thanked' => 'Рахмет',
- 'thanks' => 'Рахмет',
- 'thanks-given' => 'Берілген рахмет',
- 'times' => 'Уақыт',
- 'tip-jar' => 'Кеңес банка',
- 'title' => 'Тақырып',
- 'titles' => 'Тақырыптар',
- 'top-completed' => 'Жоғарыдан аяқталды',
- 'top-dead' => 'Жоғарғы өлі',
- 'top-dying' => 'Жоғарғы өлім',
- 'top-leeched' => 'Жоғарғы лежал',
- 'top-seeded' => 'Жоғарыдан егілген',
- 'torrent' => 'Torrent',
- 'torrent-request' => 'Торрент сұрауы',
- 'torrent-tips' => 'Барлығы : жалпы БОН жүктеушіге жіберілді, оның ішінде : пайдаланушы сізден',
- 'torrent-tips-desc' => 'Бұл сіздің қол жетімді бонус ұпайларынан шегеріледі',
- 'torrents' => 'Torrents',
- 'trailer' => 'Трейлерді көру',
- 'type' => 'Түрі',
- 'types' => 'Түрлері',
- 'unbookmark' => 'Unbookmark',
- 'unsatisfieds' => 'Қанағаттанарлықсыз',
- 'unsticky' => 'Тұрақты емес',
- 'updated' => 'Жаңартылған',
- 'updated_at' => 'Жаңартылған',
- 'uploaded' => 'Жүктелді',
- 'uploaded-by' => 'Жүктеп салынған',
- 'uploader' => 'Жүктеуші',
- 'use-fl-token' => 'Freeleech Token пайдалану',
- 'video' => 'Бейне',
- 'view-more' => 'Қосымша мәліметтер',
- 'view-trailer' => 'Трейлерді көру',
- 'votes' => 'Дауыстар',
+ 'grouping-results' => 'Нәтижелерді топтастыру',
+ 'groupings-view' => 'Топтау көрінісі',
+ 'have-completed' => 'Аяқталды',
+ 'have-downloaded' => 'Жүктелген',
+ 'have-not-completed' => 'Аяқталмады',
+ 'have-not-downloaded' => 'Жүктелмеді',
+ 'health' => 'Денсаулық',
+ 'history' => 'Тарих',
+ 'hitrun' => 'H & R?',
+ 'hit-and-runs' => 'Hit және Run санау',
+ 'immune' => 'Иммундық?',
+ 'info' => 'Ақпарат',
+ 'internal' => 'Ішкі',
+ 'internal-release' => 'Ішкі босату',
+ 'last-seed-activity' => 'Соңғы тұқым белсенділігі',
+ 'last-seeder' => 'Сіз соңғы ұрығысыз! (3 рет жүктелді)',
+ 'last-update' => 'Соңғы жаңарту',
+ 'leave-tip' => 'Кеңес қалдырыңыз',
+ 'leecher' => 'Leecher',
+ 'leechers' => 'Leechers',
+ 'leeching' => 'Тыңдау',
+ 'left' => 'Сол',
+ 'legendary-seeder' => 'Аңызға айналған сепкіш',
+ 'legendary-torrent' => 'Аңызға айналған торрент',
+ 'list' => 'Тізім',
+ 'me' => 'Мен',
+ 'media-info' => 'MediaInfo',
+ 'media-info-parser' => 'MediaInfo Parser',
+ 'media-info-paste' => 'Мұнда MediaInfo тастаңыз',
+ 'meta-desc' => 'Жүктеу: ең жылдамдықпен аты',
+ 'moderation' => 'Модерация',
+ 'movies' => 'Фильмдер',
+ 'mvp' => 'MVP',
+ 'my-active-torrents' => 'Менің белсенді торрентім',
+ 'name' => 'Атауы',
+ 'no-bookmarks' => 'Бетбелгілер табылған жоқ.',
+ 'no-discounts' => 'Қазіргі уақытта жеңілдіктер жоқ',
+ 'no-meta' => 'Метадеректер табылмады',
+ 'no-privileges' => 'Сіз бұл файлды жүктей алмайсыз - толығырақ ақпарат алу үшін төмендегіні қараңыз',
+ 'no-privileges-desc' => 'Жүктелу түймесінің жоғарыда көрсетілген сәтсіз нәтижелерін шешіңіз',
+ 'not-completed' => 'Жүктеу басталды, бірақ ешқашан аяқталды',
+ 'not-downloaded' => 'Жүктелмеді',
+ 'old-torrent' => 'Ескі торрент',
+ 'optional' => 'Қосымша',
+ 'original-output' => 'Бастапқы шығуды көрсету / жасыру',
+ 'participant' => 'Қатысушы',
+ 'passed' => 'Өткізді',
+ 'peers' => 'Құрбылар',
+ 'pending' => 'Күтілуде',
+ 'personal-freeleech' => 'Дербес Freeleech',
+ 'poster' => 'Плакат',
+ 'poster-view' => 'Плакаттың көрінісі',
+ 'posters' => 'Плакаттар',
+ 'prewarn' => 'Алдын ала ескертілген бе?',
+ 'progress' => 'Прогресс',
+ 'quick-comment' => 'Жылдам түсініктеме',
+ 'quick-tip' => 'Жылдам ұштар саны',
+ 'rated' => 'Бағаланған',
+ 'rating' => 'Рейтинг',
+ 'ready' => 'Бұл файл жүктеуге дайын',
+ 'rejected' => 'Қабылданбады',
+ 'released' => 'Босатылған',
+ 'remaining' => 'Қалған',
+ 'request-reseed' => 'Талап етуді сұрау',
+ 'requires-reseed' => 'Талап етуді талап етеді',
+ 'resurrections' => 'Қайта қалпына келтіру',
+ 'revoke' => 'Тыйым салу',
+ 'rss' => 'RSS',
+ 'runtime' => 'Runtime',
+ 'satisfied_in' => 'Қанағаттанған',
+ 'say-thanks' => 'Ұзақ уақыт бойы сіздерге рахмет және тұқым айтуға ұмытпаңыз',
+ 'sd-content' => 'SD мазмұны',
+ 'search' => 'Іздеу',
+ 'seed-time' => 'Тұқымдық уақыт',
+ 'seeder' => 'Дәнді дақыл',
+ 'seeders' => 'Сепкіштер',
+ 'seeding' => 'Егіс',
+ 'seedsize' => 'Тұқымдық',
+ 'seedtime' => 'Ұрықтану уақыты',
+ 'short-completed' => 'C',
+ 'short-leechs' => 'L.',
+ 'short-seeds' => 'S',
+ 'show-files' => 'Файлдарды көрсету',
+ 'similar' => 'Similar Torrents',
+ 'size' => 'Өлшемі',
+ 'special' => 'Арнайы',
+ 'special-freeleech' => 'Арнайы Фрелеэх',
+ 'started' => 'Басталды',
+ 'status' => 'Күйі',
+ 'statistics' => 'Статистика',
+ 'stats' => 'Статистика',
+ 'sticky' => 'Жабысқақ',
+ 'stream-optimized' => 'Ағын оңтайландырылды',
+ 'subtitle' => 'Субтитр',
+ 'team-player' => 'Топ ойыншысы',
+ 'thank' => 'Рахмет',
+ 'thanked' => 'Рахмет',
+ 'thanks' => 'Рахмет',
+ 'thanks-given' => 'Берілген рахмет',
+ 'times' => 'Уақыт',
+ 'tip-jar' => 'Кеңес банка',
+ 'title' => 'Тақырып',
+ 'titles' => 'Тақырыптар',
+ 'top-completed' => 'Жоғарыдан аяқталды',
+ 'top-dead' => 'Жоғарғы өлі',
+ 'top-dying' => 'Жоғарғы өлім',
+ 'top-leeched' => 'Жоғарғы лежал',
+ 'top-seeded' => 'Жоғарыдан егілген',
+ 'torrent' => 'Torrent',
+ 'torrent-request' => 'Торрент сұрауы',
+ 'torrent-tips' => 'Барлығы : жалпы БОН жүктеушіге жіберілді, оның ішінде : пайдаланушы сізден',
+ 'torrent-tips-desc' => 'Бұл сіздің қол жетімді бонус ұпайларынан шегеріледі',
+ 'torrents' => 'Torrents',
+ 'trailer' => 'Трейлерді көру',
+ 'type' => 'Түрі',
+ 'types' => 'Түрлері',
+ 'unbookmark' => 'Unbookmark',
+ 'unsatisfieds' => 'Қанағаттанарлықсыз',
+ 'unsticky' => 'Тұрақты емес',
+ 'updated' => 'Жаңартылған',
+ 'updated_at' => 'Жаңартылған',
+ 'uploaded' => 'Жүктелді',
+ 'uploaded-by' => 'Жүктеп салынған',
+ 'uploader' => 'Жүктеуші',
+ 'use-fl-token' => 'Freeleech Token пайдалану',
+ 'video' => 'Бейне',
+ 'view-more' => 'Қосымша мәліметтер',
+ 'view-trailer' => 'Трейлерді көру',
+ 'votes' => 'Дауыстар',
];
diff --git a/lang/kk/user.php b/lang/kk/user.php
index 53e785d41..2aa0cdd53 100644
--- a/lang/kk/user.php
+++ b/lang/kk/user.php
@@ -12,316 +12,316 @@
*/
return [
- 'about' => 'Біз туралы',
- 'about-me' => 'Мен туралы',
- 'accepted-at' => 'Қабылданды',
- 'accepted-by' => 'Қабылданған',
- 'account-notification' => 'Есептік жазбаның хабарландыру параметрлері',
- 'account-notification-follow' => 'Пайдаланушы есептік жазбаңызды қадағалаған кезде хабарландыру алыңыз',
- 'account-notification-unfollow' => 'Пайдаланушы есептік жазбаңызды бұзған кезде хабарландыру алыңыз',
- 'account-notification-help' => 'Есептік жазбаңызға қатысты қандай хабарландырулар жіберілгенін бақылау. Егер сіз қандай да бір топтар есептік жазбаңызға қатысты хабарландыруларды жіберуге мүмкіндік береді немесе Хабарландыруларды өшірсеңіз болмаса, Бұл параметрлер ауыстырылады',
- 'account-settings' => 'Аккаунт баптаулары',
- 'achievement-privacy' => 'Жетістік параметрлері',
- 'achievement-privacy-list' => 'Пайдаланушыларға сіздің жетістіктеріңіздің тізімін көруге рұқсат ету',
- 'achievement-help' => 'Профильге қол жеткізуге рұқсат етілген топтармен нақты жетістіктерге қатысты ақпаратты ортақ пайдалануды бақылаңыз. Егер сіз қандай да бір топтардың сіздің жетістіктеріңізге қол жеткізуге рұқсат бермейтін болсаңыз немесе Жеке қолданылса, бұл параметрлер алдын ала анықталады',
- 'achievements' => 'Жетістіктер',
- 'active' => 'Белсенді',
- 'active-table' => 'Менің белсенді үстелім',
- 'active-torrents' => 'Белсенді торрент',
- 'active-warning' => 'Белсенді ескерту',
- 'active-warnings' => 'Белсенді ескертулер',
- 'add-seedbox' => 'Seedbox қосыңыз',
- 'all-torrents' => 'Барлық торрент',
- 'article-comments' => 'Мақалалар Пікірлер жасалды',
- 'avatar' => 'Аватар',
- 'avg-seedtime' => 'Орта дәнекерлеу уақыты',
- 'badges' => 'Белгілер',
- 'ban' => 'Қолданушыға тыйым салу',
- 'ban-log' => 'Ban Log',
- 'become-hidden' => 'Жасырын болыңыз',
- 'become-visible' => 'Көрінетін болыңыз',
- 'bon' => 'BON',
- 'bon-notification' => 'BON хабарландыру параметрлері',
- 'bon-notification-gift' => 'Пайдаланушы сізді сыйлыққа берген кезде хабарландыру алыңыз',
- 'bon-notification-help' => 'БОН транзакцияларына қатысты қандай хабарландырулар жіберілетінін бақылау. Хабарландыруларды өшіру, егер сіз кез келген топтар BON қатысты хабарландыруларды немесе жіберу үшін мүмкіндік бермейді, егер Бұл параметрлер ауыстырылады',
- 'bookmarks' => 'Бетбелгілер',
- 'bounty-given' => 'Бердік берілді',
- 'bounty-received' => 'Bounty алынды',
- 'can-chat' => 'Чат мүмкін',
- 'can-comment' => 'Түсініктеме бере алады ма?',
- 'can-download' => 'Жүктеп алуға болады',
- 'can-invite' => 'Шақыруға болады',
- 'can-request' => 'Сұратуы мүмкін',
- 'can-upload' => 'Жүктеп бере алады',
- 'certified-banker' => 'Сертификатталған банкир',
- 'certified-banker-desc' => 'Банкте 50 000 немесе одан көп БСҚ бар',
- 'certified-downloader' => 'Сертификатталған жүктеуші',
- 'certified-downloader-desc' => '100 немесе одан көп торрентті көшіріп алыңыз!',
- 'certified-seeder' => 'Certified Seeder',
- 'certified-seeder-desc' => 'Ұрық 150 немесе одан да көп торрент!',
- 'change-email' => 'Электрондық поштаны өзгерту',
- 'change-email-help' => 'Электрондық поштаны өзгерткеннен кейін есептік жазбаңызды қайта растауыңыз керек',
- 'change-password' => 'Құпия сөзді өзгерту',
- 'change-password-help' => 'Құпия сөзіңізді өзгерткеннен кейін қайтадан кіруіңіз керек',
- 'client-ip-address' => 'Клиенттің IP мекенжайы',
- 'code' => 'Код',
- 'comments' => 'Пікірлер',
- 'created-on' => 'Құрылды',
- 'credited-download' => 'Сенімді жүктеу',
- 'credited-upload' => 'Кредиттелген жүктеу',
- 'current-password' => 'Ағымдағы Құпия сөз',
- 'custom-title' => 'Өзгертпелі атауы',
- 'delete' => 'Пайдаланушыны жою',
- 'disable-notifications' => 'Хабарландыруларды өшіру',
- 'disclaimer' => 'Жауапкершілігі шектеулі',
- 'disclaimer-info' => 'Әдепкі бойынша, біз көптеген IP мекенжайларын пайдаланушылар сияқты жүйеге кірмейміз. Төменде келтірілген IP тіркелгілерін қосу арқылы төменде тізімделген IP-ті жазбаларыңызды жоймасаңыз, біздің дерекқорда сақталғанын білесіз.',
- 'disclaimer-info-bordered' => 'Қосылған Seedbox IP-лері төменде көрсетілген IP-файлдардан алынған торренттерде жоғары жылдамдықтағы торрент тегіне қосылады',
- 'download-bon' => 'Жүктеу BON Store дүкенінен жойылды',
- 'download-recorded' => 'Жазылған жүктеу',
- 'download-true' => 'Нақты жүктеу',
- 'downloads' => 'Жүктеулер',
- 'edit' => 'Пайдаланушыны өңдеу',
- 'edit-profile' => 'Профильді өңдеу',
- 'enable-notifications' => 'Хабарландыруларды қосу',
- 'expired' => 'Жарамдылық мерзімі өткен',
- 'expires-on' => 'Мерзімі аяқталады',
- 'extra' => 'Қосымша',
- 'filled-request' => 'Толтырылған мүше сұраулары',
- 'follow' => 'Кейінгі',
- 'follower-privacy' => 'Follower параметрлері',
- 'follower-privacy-list' => 'Пайдаланушыларға ізбасарларыңыздың тізімін көруге рұқсат ету',
- 'follower-help' => 'Профиліңізге кіруге рұқсат етілген топтармен нақты оқырмандарға қатысты ақпараттарды ортақ пайдалануды бақылаңыз. Егер сіз кез келген топқа ізбасарларыңызға кіруге рұқсат бермеген болсаңыз немесе Жеке болып қалсаңыз, бұл параметрлер алдын ала анықталады',
- 'followers' => 'Оқушылар',
- 'following-notification' => 'Кейінгі пайдаланушы ескерту параметрлері',
- 'following-notification-upload' => 'Кейінгі пайдаланушы торрені кері жүктегенде хабарландыруды алыңыз',
- 'following-notification-help' => 'Кейінгі пайдаланушының торап әрекеттеріне қатысты қандай хабарландырулар жіберілгенін бақылау. Егер сіз қандай да бір топтар пайдаланушылар соңынан немесе Хабарландыруларды өшірсеңіз қатысты хабарландыруларды жіберуге мүмкіндік бермейді, егер Бұл параметрлер ауыстырылады',
- 'formats-are-supported' => ': пішімдерге қолдау көрсетіледі',
- 'forum-notification' => 'Форумның хабарландыру параметрлері',
- 'forum-notification-topic' => 'Сіз бастаған тақырып жаңа жазбаны алған кезде хабарландыру алыңыз',
- 'forum-notification-help' => 'Форум әрекеттеріне қатысты қандай хабарлама жіберілетінін бақылау. Егер сіз қандай да бір топтар форум қызметін немесе, егер сіз өшіру хабарламалар қатысты хабарландыруларды жіберуге мүмкіндік бермейді, егер Бұл параметрлер ауыстырылады',
- 'forum-privacy' => 'Форум параметрлері',
- 'forum-privacy-post' => 'Пайдаланушыларға жіберген форум посттарының тізімін көруге рұқсат ету',
- 'forum-privacy-topic' => 'Пайдаланушыларға сіз басталған форум тақырыптарының тізімін көруге рұқсат ету',
- 'forum-help' => 'Профильге қол жеткізуге рұқсат етілген топтармен арнайы форумға қатысты статистикалар мен ақпарат алмасуды бақылаңыз. Бұл параметрлер ешқандай топтарға форумға қатысты статистикаға және ақпаратқа кіруге рұқсат бермесе немесе егер сіз Жеке болып қалсаңыз, бұл параметрлер алдын ала анықталады',
- 'forum-signature' => 'Форум қолы',
- 'forums' => 'Форумдар',
- 'general' => 'Жалпы',
- 'general-settings' => 'Жалпы параметрлер',
- 'gift-given' => 'Сыйлық берілді',
- 'gift-received' => 'Сыйлық алынды',
- 'go-public' => 'Қоғамға барыңыз',
- 'go-private' => 'Жеке кіріңіз',
- 'history' => 'Тарих',
- 'history-table' => 'Менің тарихым кестесі',
- 'hit-n-runs' => 'Hit және Runs',
- 'hit-n-runs-count' => 'Hit және Run Count (Барлық уақыт)',
- 'hit-n-runs-history' => 'Torrent Hit және тарихты іске қосады',
- 'image' => 'Сурет',
- 'important' => 'Маңызды',
- 'important-info' => 'Маңызды ақпарат',
- 'information' => 'ақпарат',
- 'invite-friend' => 'Досыңызды шақырыңыз (Электрондық пошта + Хабарлама міндетті)',
- 'invite-tree' => 'Ағашты шақыру',
- 'invites' => 'Шақырады',
- 'invites-banned' => 'Қате: Сіздің шақыруыңыздың құқықтары бұзылған',
- 'invites-banned-desc' => 'Егер сіз қателесеңіз, қызметкерлермен хабарласыңыз!',
- 'invites-count' => 'Сізде бар: count Тыйналарды шақыру',
- 'invites-disabled' => 'Назар аударыңыз: Тіркелуді ашуға байланысты шақырулар жасалады!',
- 'invites-disabled-desc' => 'Жақында тексеріңіз!',
- 'invites-rules' => '- Тек сіз білетін және сенетін адамдар шақырыңыз.
- Сіз шақыратын адамдар үшін жеке жауапты боласыз.
- Өзіңізді шақырмаңыз, біз кез-келген шақырылған пайдаланушыны тексереміз.
- Шақыруды сатпаңыз немесе сатпаңыз.
- Егер сіз шақырған адам алдауды, сауда-саттық шотын немесе сату / сауда-саттықты шақырса, сізге ескертіледі.
',
- 'invites-send' => 'Жіберуді шақырады',
- 'last-login' => 'Соңғы кіру',
- 'locked' => 'Құлыпталды',
- 'locked-achievements' => 'Жабық жетістіктер',
- 'member-since' => 'Қатысушы уақыттан бастап',
- 'members-desc' => 'Тіркелген пайдаланушылар тізімі: барлық топтармен тақырып. Қазір пайдаланушыны табу.',
- 'mention-notification' => 'Хабарландыру параметрлері @Mention',
+ 'about' => 'Біз туралы',
+ 'about-me' => 'Мен туралы',
+ 'accepted-at' => 'Қабылданды',
+ 'accepted-by' => 'Қабылданған',
+ 'account-notification' => 'Есептік жазбаның хабарландыру параметрлері',
+ 'account-notification-follow' => 'Пайдаланушы есептік жазбаңызды қадағалаған кезде хабарландыру алыңыз',
+ 'account-notification-unfollow' => 'Пайдаланушы есептік жазбаңызды бұзған кезде хабарландыру алыңыз',
+ 'account-notification-help' => 'Есептік жазбаңызға қатысты қандай хабарландырулар жіберілгенін бақылау. Егер сіз қандай да бір топтар есептік жазбаңызға қатысты хабарландыруларды жіберуге мүмкіндік береді немесе Хабарландыруларды өшірсеңіз болмаса, Бұл параметрлер ауыстырылады',
+ 'account-settings' => 'Аккаунт баптаулары',
+ 'achievement-privacy' => 'Жетістік параметрлері',
+ 'achievement-privacy-list' => 'Пайдаланушыларға сіздің жетістіктеріңіздің тізімін көруге рұқсат ету',
+ 'achievement-help' => 'Профильге қол жеткізуге рұқсат етілген топтармен нақты жетістіктерге қатысты ақпаратты ортақ пайдалануды бақылаңыз. Егер сіз қандай да бір топтардың сіздің жетістіктеріңізге қол жеткізуге рұқсат бермейтін болсаңыз немесе Жеке қолданылса, бұл параметрлер алдын ала анықталады',
+ 'achievements' => 'Жетістіктер',
+ 'active' => 'Белсенді',
+ 'active-table' => 'Менің белсенді үстелім',
+ 'active-torrents' => 'Белсенді торрент',
+ 'active-warning' => 'Белсенді ескерту',
+ 'active-warnings' => 'Белсенді ескертулер',
+ 'add-seedbox' => 'Seedbox қосыңыз',
+ 'all-torrents' => 'Барлық торрент',
+ 'article-comments' => 'Мақалалар Пікірлер жасалды',
+ 'avatar' => 'Аватар',
+ 'avg-seedtime' => 'Орта дәнекерлеу уақыты',
+ 'badges' => 'Белгілер',
+ 'ban' => 'Қолданушыға тыйым салу',
+ 'ban-log' => 'Ban Log',
+ 'become-hidden' => 'Жасырын болыңыз',
+ 'become-visible' => 'Көрінетін болыңыз',
+ 'bon' => 'BON',
+ 'bon-notification' => 'BON хабарландыру параметрлері',
+ 'bon-notification-gift' => 'Пайдаланушы сізді сыйлыққа берген кезде хабарландыру алыңыз',
+ 'bon-notification-help' => 'БОН транзакцияларына қатысты қандай хабарландырулар жіберілетінін бақылау. Хабарландыруларды өшіру, егер сіз кез келген топтар BON қатысты хабарландыруларды немесе жіберу үшін мүмкіндік бермейді, егер Бұл параметрлер ауыстырылады',
+ 'bookmarks' => 'Бетбелгілер',
+ 'bounty-given' => 'Бердік берілді',
+ 'bounty-received' => 'Bounty алынды',
+ 'can-chat' => 'Чат мүмкін',
+ 'can-comment' => 'Түсініктеме бере алады ма?',
+ 'can-download' => 'Жүктеп алуға болады',
+ 'can-invite' => 'Шақыруға болады',
+ 'can-request' => 'Сұратуы мүмкін',
+ 'can-upload' => 'Жүктеп бере алады',
+ 'certified-banker' => 'Сертификатталған банкир',
+ 'certified-banker-desc' => 'Банкте 50 000 немесе одан көп БСҚ бар',
+ 'certified-downloader' => 'Сертификатталған жүктеуші',
+ 'certified-downloader-desc' => '100 немесе одан көп торрентті көшіріп алыңыз!',
+ 'certified-seeder' => 'Certified Seeder',
+ 'certified-seeder-desc' => 'Ұрық 150 немесе одан да көп торрент!',
+ 'change-email' => 'Электрондық поштаны өзгерту',
+ 'change-email-help' => 'Электрондық поштаны өзгерткеннен кейін есептік жазбаңызды қайта растауыңыз керек',
+ 'change-password' => 'Құпия сөзді өзгерту',
+ 'change-password-help' => 'Құпия сөзіңізді өзгерткеннен кейін қайтадан кіруіңіз керек',
+ 'client-ip-address' => 'Клиенттің IP мекенжайы',
+ 'code' => 'Код',
+ 'comments' => 'Пікірлер',
+ 'created-on' => 'Құрылды',
+ 'credited-download' => 'Сенімді жүктеу',
+ 'credited-upload' => 'Кредиттелген жүктеу',
+ 'current-password' => 'Ағымдағы Құпия сөз',
+ 'custom-title' => 'Өзгертпелі атауы',
+ 'delete' => 'Пайдаланушыны жою',
+ 'disable-notifications' => 'Хабарландыруларды өшіру',
+ 'disclaimer' => 'Жауапкершілігі шектеулі',
+ 'disclaimer-info' => 'Әдепкі бойынша, біз көптеген IP мекенжайларын пайдаланушылар сияқты жүйеге кірмейміз. Төменде келтірілген IP тіркелгілерін қосу арқылы төменде тізімделген IP-ті жазбаларыңызды жоймасаңыз, біздің дерекқорда сақталғанын білесіз.',
+ 'disclaimer-info-bordered' => 'Қосылған Seedbox IP-лері төменде көрсетілген IP-файлдардан алынған торренттерде жоғары жылдамдықтағы торрент тегіне қосылады',
+ 'download-bon' => 'Жүктеу BON Store дүкенінен жойылды',
+ 'download-recorded' => 'Жазылған жүктеу',
+ 'download-true' => 'Нақты жүктеу',
+ 'downloads' => 'Жүктеулер',
+ 'edit' => 'Пайдаланушыны өңдеу',
+ 'edit-profile' => 'Профильді өңдеу',
+ 'enable-notifications' => 'Хабарландыруларды қосу',
+ 'expired' => 'Жарамдылық мерзімі өткен',
+ 'expires-on' => 'Мерзімі аяқталады',
+ 'extra' => 'Қосымша',
+ 'filled-request' => 'Толтырылған мүше сұраулары',
+ 'follow' => 'Кейінгі',
+ 'follower-privacy' => 'Follower параметрлері',
+ 'follower-privacy-list' => 'Пайдаланушыларға ізбасарларыңыздың тізімін көруге рұқсат ету',
+ 'follower-help' => 'Профиліңізге кіруге рұқсат етілген топтармен нақты оқырмандарға қатысты ақпараттарды ортақ пайдалануды бақылаңыз. Егер сіз кез келген топқа ізбасарларыңызға кіруге рұқсат бермеген болсаңыз немесе Жеке болып қалсаңыз, бұл параметрлер алдын ала анықталады',
+ 'followers' => 'Оқушылар',
+ 'following-notification' => 'Кейінгі пайдаланушы ескерту параметрлері',
+ 'following-notification-upload' => 'Кейінгі пайдаланушы торрені кері жүктегенде хабарландыруды алыңыз',
+ 'following-notification-help' => 'Кейінгі пайдаланушының торап әрекеттеріне қатысты қандай хабарландырулар жіберілгенін бақылау. Егер сіз қандай да бір топтар пайдаланушылар соңынан немесе Хабарландыруларды өшірсеңіз қатысты хабарландыруларды жіберуге мүмкіндік бермейді, егер Бұл параметрлер ауыстырылады',
+ 'formats-are-supported' => ': пішімдерге қолдау көрсетіледі',
+ 'forum-notification' => 'Форумның хабарландыру параметрлері',
+ 'forum-notification-topic' => 'Сіз бастаған тақырып жаңа жазбаны алған кезде хабарландыру алыңыз',
+ 'forum-notification-help' => 'Форум әрекеттеріне қатысты қандай хабарлама жіберілетінін бақылау. Егер сіз қандай да бір топтар форум қызметін немесе, егер сіз өшіру хабарламалар қатысты хабарландыруларды жіберуге мүмкіндік бермейді, егер Бұл параметрлер ауыстырылады',
+ 'forum-privacy' => 'Форум параметрлері',
+ 'forum-privacy-post' => 'Пайдаланушыларға жіберген форум посттарының тізімін көруге рұқсат ету',
+ 'forum-privacy-topic' => 'Пайдаланушыларға сіз басталған форум тақырыптарының тізімін көруге рұқсат ету',
+ 'forum-help' => 'Профильге қол жеткізуге рұқсат етілген топтармен арнайы форумға қатысты статистикалар мен ақпарат алмасуды бақылаңыз. Бұл параметрлер ешқандай топтарға форумға қатысты статистикаға және ақпаратқа кіруге рұқсат бермесе немесе егер сіз Жеке болып қалсаңыз, бұл параметрлер алдын ала анықталады',
+ 'forum-signature' => 'Форум қолы',
+ 'forums' => 'Форумдар',
+ 'general' => 'Жалпы',
+ 'general-settings' => 'Жалпы параметрлер',
+ 'gift-given' => 'Сыйлық берілді',
+ 'gift-received' => 'Сыйлық алынды',
+ 'go-public' => 'Қоғамға барыңыз',
+ 'go-private' => 'Жеке кіріңіз',
+ 'history' => 'Тарих',
+ 'history-table' => 'Менің тарихым кестесі',
+ 'hit-n-runs' => 'Hit және Runs',
+ 'hit-n-runs-count' => 'Hit және Run Count (Барлық уақыт)',
+ 'hit-n-runs-history' => 'Torrent Hit және тарихты іске қосады',
+ 'image' => 'Сурет',
+ 'important' => 'Маңызды',
+ 'important-info' => 'Маңызды ақпарат',
+ 'information' => 'ақпарат',
+ 'invite-friend' => 'Досыңызды шақырыңыз (Электрондық пошта + Хабарлама міндетті)',
+ 'invite-tree' => 'Ағашты шақыру',
+ 'invites' => 'Шақырады',
+ 'invites-banned' => 'Қате: Сіздің шақыруыңыздың құқықтары бұзылған',
+ 'invites-banned-desc' => 'Егер сіз қателесеңіз, қызметкерлермен хабарласыңыз!',
+ 'invites-count' => 'Сізде бар: count Тыйналарды шақыру',
+ 'invites-disabled' => 'Назар аударыңыз: Тіркелуді ашуға байланысты шақырулар жасалады!',
+ 'invites-disabled-desc' => 'Жақында тексеріңіз!',
+ 'invites-rules' => '- Тек сіз білетін және сенетін адамдар шақырыңыз.
- Сіз шақыратын адамдар үшін жеке жауапты боласыз.
- Өзіңізді шақырмаңыз, біз кез-келген шақырылған пайдаланушыны тексереміз.
- Шақыруды сатпаңыз немесе сатпаңыз.
- Егер сіз шақырған адам алдауды, сауда-саттық шотын немесе сату / сауда-саттықты шақырса, сізге ескертіледі.
',
+ 'invites-send' => 'Жіберуді шақырады',
+ 'last-login' => 'Соңғы кіру',
+ 'locked' => 'Құлыпталды',
+ 'locked-achievements' => 'Жабық жетістіктер',
+ 'member-since' => 'Қатысушы уақыттан бастап',
+ 'members-desc' => 'Тіркелген пайдаланушылар тізімі: барлық топтармен тақырып. Қазір пайдаланушыны табу.',
+ 'mention-notification' => 'Хабарландыру параметрлері @Mention',
'mention-notification-article-comment' => 'Түсініктемедегі мақалаға қатысты болғанда хабарландыру алыңыз',
'mention-notification-torrent-comment' => 'Торрент түсініктемесінде @mentioned болған кезде хабарландыру алыңыз',
'mention-notification-request-comment' => 'Түсініктеме түсініктемесінде @mentioned болғанда хабарландыру алыңыз',
- 'mention-notification-forum-post' => 'Хабарламаңызды форумда орналастырылған @ қабылданған кезде алу',
- 'mention-notification-help' => 'Пайдаланушы @ шығарып жатқанда қандай хабарландырулар жіберілетінін бақылау. Бұл параметрлер егер пайдаланушы @ хабарландырулар жіберген жағдайда ешбір топқа хабарландыру жіберуге рұқсат бермеген жағдайда немесе егер сіз ескертулерді өшірсеңіз,',
- 'moderated-by' => 'Moderated by: mod on',
- 'my-bonus-points' => 'Менің Бонус ұпайларым',
- 'my-bookmarks' => 'Менің бетбелгілерім',
- 'my-fl-tokens' => 'Менің FL белгішелерім',
- 'my-general-settings' => 'Менің Жалпы параметрлерім',
- 'my-notification' => 'Менің хабарландыруым',
- 'my-notification-settings' => 'Менің хабарландыру параметрлері',
- 'my-privacy' => 'Менің құпиялылығым',
- 'my-privacy-settings' => 'Менің құпиялылық параметрлері',
- 'my-profile' => 'Менің профилім',
- 'my-requested' => 'Менің сұранысым',
- 'my-security' => 'Менің қауіпсіздігім',
- 'my-security-settings' => 'Менің қауіпсіздік параметрлері',
- 'my-seedboxes' => 'Менің Seedboxes',
- 'my-settings' => 'Менің параметрлерім',
- 'my-wishlist' => 'Менің тілектерім',
- 'no-logs' => 'Бұл пайдаланушы үшін дерекқорда шақыру журналы жоқ!',
- 'no-seedboxes' => 'No seedboxes 😔',
- 'not-authorized' => 'Сіз бұл бетті қарауға рұқсатыңыз жоқ. Бұл мүше ниндзя сияқты жасырынып көреді!',
- 'note' => 'Ескерту',
- 'notification' => 'Хабарлама',
- 'notification-settings' => 'Хабарландыру параметрлері',
- 'notification-from-account' => 'Тіркелгіңізден хабарландырулар алу',
- 'notification-from-account-help' => 'Сіз жүйеден, қызметкерлерден және келесі топтардан тек тіркелгі туралы ескертулерді аласыз. Хабарламаларды өшірсеңіз, бұл параметрлер алдын ала анықталады',
- 'notification-from-bon' => 'BON хабарландыруларын алу',
- 'notification-from-bon-help' => 'Сіз тек жүйеден, қызметкерлерден және келесі топтардан BON хабарландыруларын аласыз. Хабарламаларды өшірсеңіз, бұл параметрлер алдын ала анықталады',
- 'notification-from-following' => 'Келесіден кейінгі пайдаланушы хабарландыруларын алыңыз',
- 'notification-from-following-help' => 'Келесі топтардан кейінгі пайдаланушы хабарландыруларын ғана аласыз. Хабарламаларды өшірсеңіз, бұл параметрлер алдын ала анықталады',
- 'notification-from-forum' => 'Қайдан хабарландырулар алу',
- 'notification-from-forum-help' => 'Сіз жүйеден, қызметкерлерден және келесі топтардан форум туралы хабарламаларды аласыз. Хабарламаларды өшірсеңіз, бұл параметрлер алдын ала анықталады',
- 'notification-from-subscription' => 'Жазылым хабарландыруларын алу',
- 'notification-from-subscription-help' => 'Сіз жүйеден, қызметкерлерден және келесі топтардан форум туралы хабарламаларды аласыз. Хабарламаларды өшірсеңіз, бұл параметрлер алдын ала анықталады',
- 'notification-from-torrent' => 'Torrent хабарландыруларын алу',
- 'notification-from-torrent-help' => 'Сіз жүйеден, қызметкерлерден және келесі топтардан торрент хабарламаларын аласыз. Хабарламаларды өшірсеңіз, бұл параметрлер алдын ала анықталады',
- 'notification-from-mention' => '@Mention хабарландыруларын алу',
- 'notification-from-mention-help' => 'Сіз жүйеден, қызметкерлерден және келесі топтардан @mention хабарландыруларын аласыз. Хабарламаларды өшірсеңіз, бұл параметрлер алдын ала анықталады',
- 'notification-from-request' => 'Қайдан сұрау туралы хабарламаларды алу',
- 'notification-from-request-help' => 'Сіз жүйеден, қызметкерлерден және келесі топтардан тек сұраныс туралы ескертулерді аласыз. Хабарламаларды өшірсеңіз, бұл параметрлер алдын ала анықталады',
- 'notifications' => 'Хабарламалар',
- 'offline' => 'Пайдаланушы желіден тыс!',
- 'online' => 'Пайдаланушы желіде!',
- 'options' => 'Опциялар',
- 'other-help' => 'Профильіңізге кіруге рұқсат етілген топтармен басқа статистикалар мен ақпараттың бөлісуін бақылаңыз. Егер сіз ешқандай топтардың басқа статистикаға және мәліметтерге кіруіне рұқсат бермейтін болсаңыз немесе Жеке болып қалсаңыз, бұл параметрлер алдын ала анықталады',
- 'other-privacy' => 'Басқа параметрлер',
- 'other-privacy-online' => 'Пайдаланушылар сізді желідегі пайдаланушылар блогында көруге рұқсат етіңіз',
- 'passkey' => 'PID',
- 'passkey-warning' => 'PID құпия сөзіңізге ұқсас, оны қауіпсіз сақтау керек!',
- 'pending-achievements' => 'Жетістіктер күтілуде',
- 'per-torrent' => 'Торрент үшін',
- 'posts' => 'Хабарламалар',
- 'posts-posted' => 'Форум Хабарлар Хабарламалар',
- 'privacy' => 'Құпиялылық',
- 'privacy-settings' => 'Құпиялылық параметрлері',
- 'private-info' => 'Жеке ақпарат',
- 'private-forum-profile' => 'Назар аударыңыз: Тақырыптар мен жариялау тарихы мүшелеріне PRIVATE орнатылды!',
- 'private-profile' => 'Назар аударыңыз: бұл профиль PRIVATE үшін орнатылды!',
- 'profile' => 'Профиль',
- 'profile-desc' => 'Қатысушы: пайдаланушы профилі тіркелген: тақырып',
- 'profile-privacy' => 'Профиль параметрлері',
- 'profile-privacy-torrent-count' => 'Жүктеулердің, жүктеулердің, тұқымдардың және сүлгірлердің жалпы санын бөлісіңіз',
- 'profile-privacy-torrent-ratio' => 'Жалпы жүктеп / жүктеу деректеріңізді жазылған коэффициентпен бірге бөлісіңіз',
- 'profile-privacy-torrent-seed' => 'Орташа егу уақытын және орташа мәніңізді бөлісіңіз',
- 'profile-privacy-title' => 'Жеке атаңыздың ақпаратын бөлісіңіз',
- 'profile-privacy-about' => 'Мен туралы жеке ақпаратыңызды бөлісіңіз',
- 'profile-privacy-bon-extra' => 'BON статистикаңызды бөлісіңіз',
- 'profile-privacy-comment-extra' => 'Пікір статистикаңызды бөлісіңіз',
- 'profile-privacy-forum-extra' => 'Форум статистикаңызды бөлісіңіз',
- 'profile-privacy-request-extra' => 'Сұрау статистикаңызды бөлісіңіз',
- 'profile-privacy-torrent-extra' => 'Торрент статистикаңызды бөлісіңіз',
- 'profile-privacy-badge' => 'Қойылған бейдждерді бөлісіңіз',
- 'profile-privacy-achievement' => 'Соңғы жетістіктеріңізді бөлісіңіз',
- 'profile-privacy-follower' => 'Жақындағылармен бөлісіңіз',
- 'profile-privacy-warning' => 'H & R ескертулеріңізді бөлісіңіз',
- 'profile-privacy-help' => 'Профильде қандай статистикалық ақпарат пен ақпараттардың пайда болуын бақылау. Бұл параметрлер ешқандай топтың сіздің профиліңізге кіруіне рұқсат бермеген жағдайда немесе Жеке болып қалсаңыз, бұл параметрлер алдын ала анықталады',
- 'public-info' => 'Қоғамдық ақпарат',
- 'recent-achievements' => 'Соңғы жетістіктер',
- 'recent-followers' => 'Соңғы тыңдаушылар',
- 'registration-date' => 'Тіркеу күні',
- 'report' => 'Есеп',
- 'request-help' => 'Өзіңіздің профиліңізге кіруге рұқсат етілген топтармен нақты сұрау салумен байланысты статистиканы және ақпаратты бөлісуді бақылаңыз. Егер сіз кез-келген топқа сұратылған статистикаға және ақпаратыңызға қатынаса алмасаңыз немесе Жеке болып қалсаңыз, бұл параметрлер алдын ала анықталады',
- 'request' => 'Сұрау',
- 'requested' => 'Сұратылған',
- 'requests' => 'Сұраулар',
- 'request-comments' => 'Түсіндірмелер сұралады',
- 'request-notification' => 'Хабарландыру параметрлерін сұрау',
- 'request-notification-bounty' => 'Сұралған торрен жаңа награданы алған кезде хабарландыру алыңыз',
- 'request-notification-comment' => 'Сұралған торрент жаңа түсініктеме алған кезде хабарландыру алу',
- 'request-notification-fill' => 'Сұралған торр толтырылған кезде хабарландыру алу',
- 'request-notification-fill-approve' => 'Сұралған торрент толтырылған кезде хабарландыру алу',
- 'request-notification-fill-reject' => 'Сұралған торрент толтырылғаннан кейін хабарландыру алу',
- 'request-notification-claim' => 'Талап етілетін торрент талап етілгенде хабарландыру алу',
- 'request-notification-unclaim' => 'Сұратылған торрент талап етілмеген кезде хабарландыру алу',
- 'request-notification-help' => 'Сұрау әрекеттеріне қатысты қандай хабарлама жіберілетінін бақылау. Егер сіз қандай да бір топтар сұрау қызметіне қатысты хабарландыруларды жіберуге мүмкіндік бермейді немесе егер Хабарландыруларды өшірсеңіз Бұл параметрлер ауыстырылады',
- 'request-privacy' => 'Параметрлер сұрау',
- 'request-privacy-requested' => 'Пайдаланушыларға жасаған сұраулар тізімін көруге рұқсат ету',
- 'reset-passkey' => 'Құпия пернесінің ысыру (PID)',
- 'reset-passkey-help' => 'PID-ты қалпына келтіргеннен кейін барлық белсенді торрларды қайта жүктеу / қайта жүктеу қажет болады',
- 'reset-rss' => 'RSS кілтін қалпына келтіру (RID)',
- 'reset-rss-help' => 'RID-ды қалпына келтіргеннен кейін барлық белсенді RSS арналарын қайта жүктеуге тура келеді',
- 'resurrections' => 'Қайта қалпына келтіру',
- 'search' => 'Пайдаланушы аты бойынша жылдам іздеу',
- 'security' => 'Қауіпсіздік',
- 'security-settings' => 'Қауіпсіздік параметрлері',
- 'seedboxes' => 'Тұқымдықтар',
- 'seeds' => 'Тұқымдар',
- 'send-invite' => 'Шақыруды жіберу',
- 'sender' => 'Жіберуші',
- 'settings' => 'Параметрлер',
- 'show-passkey' => 'PID көрсету',
- 'staff-noted' => 'Қызметкерлер есептік жазба жасады',
- 'statistics' => 'Статистика',
- 'subscription-notification' => 'Жазылым туралы хабарландыру параметрлері',
- 'subscription-notification-forum' => 'Жазылған форум жаңа тақырыпқа ие болғанда хабарландыру алыңыз',
- 'subscription-notification-topic' => 'Жазылған тақырып жаңа хабар алған кезде хабарландыру алыңыз',
- 'subscription-notification-help' => 'Жазылымдарға қатысты қандай хабарландырулар жіберілгенін бақылау. Егер сіз қандай да бір топтар жазылымдары қатысты хабарландыруларды жіберуге мүмкіндік бермейді немесе егер Хабарландыруларды өшірсеңіз Бұл параметрлер ауыстырылады',
- 'thanks-given' => 'Спасибо',
- 'thanks-received' => 'Рахмет алынды',
- 'tips-given' => 'Ұсынылған кеңестер',
- 'tips-received' => 'Алынған кеңестер',
- 'title' => 'Тақырып',
- 'top-bankers' => 'Жоғарғы банкирлер',
- 'top-downloaders-data' => 'Үздік жүктеп салушылар (деректер)',
- 'top-leechers' => 'Үздік лейгерлер',
- 'top-leechers-count' => 'Үздік Leechers (Count)',
- 'top-seeders' => 'Жоғарғы сепкіштер',
- 'top-seeders-count' => 'Top Seeders (Count)',
- 'top-seeding-size' => 'Жоғарғы топырақ (мөлшері)',
- 'top-seedtime' => 'Үздік сүт дәмі',
- 'top-uploaders-data' => 'Жоғарғы жүктеушілер (деректер)',
- 'top-uploaders-count' => 'Жоғарғы жүктеп салушылар (Count)',
- 'topics' => 'Тақырыптар',
- 'topics-started' => 'Форум тақырыптары басталды',
- 'torrent-comments' => 'Torrent Пікірлер жасалды',
- 'torrent-help' => 'Арнайы статистиканы және ақпаратыңызды профиліңізге кіруге рұқсат етілген топтармен бөлісуді бақылаңыз. Егер бұл тораптарға қатысты статистикаға және ақпаратқа қол жеткізуге рұқсат бермейтін болсаңыз немесе егер сіз Жеке болып қалсаңыз, бұл параметрлер алдын ала анықталады',
- 'torrent-notification' => 'Torrent Notification Settings',
- 'torrent-notification-comment' => 'Жүктелген торрент жаңа түсініктеме алған кезде хабарландыруды алыңыз',
- 'torrent-notification-thank' => 'Жүктелген торрент жаңа алғыс алған кезде хабарландыру алу',
- 'torrent-notification-tip' => 'Жүктелген торрент жаңа кеңесті алған кезде хабарландыруды алыңыз',
- 'torrent-notification-help' => 'Торрент қызметіне қатысты қандай хабарландырулар жіберілгенін бақылау. Егер сіз қандай да бір топтар торрент қызметіне қатысты хабарландыруларды жіберуге мүмкіндік бермейді немесе егер Хабарландыруларды өшірсеңіз Бұл параметрлер ауыстырылады',
- 'torrent-privacy' => 'Torrent параметрлері',
- 'torrent-privacy-download' => 'Пайдаланушылар жүктеген торрент тізімін көруге рұқсат ету',
- 'torrent-privacy-upload' => 'Пайдаланушыларға жүктеп берген торрент тізімін көруге рұқсат ету',
- 'torrent-privacy-peer' => 'Пайдаланушылар сізді торрент серіктестерінің тарих кестесінде көруге рұқсат ету',
- 'torrents' => 'Torrents',
- 'torrents-history' => 'Таррент тарихы',
- 'total-download' => 'Барлығы жүктеу',
- 'total-downloads' => 'Барлығы жүктеледі',
- 'total-leeching' => 'Total Leeching',
- 'total-seeding' => 'Барлығы егіс',
- 'total-seedtime' => 'Барлығы Seedtime',
- 'total-upload' => 'Жалпы жүктеу',
- 'total-uploads' => 'Жалпы жүктеулер',
- 'unban' => 'Unban пайдаланушысы',
- 'unfollow' => 'Белгілеу',
- 'unlocked' => 'Құлыпталған',
- 'unlocked-achievements' => 'Ашылған жетістіктер',
- 'unsatisfieds' => 'Unsatisfieds',
- 'upload-bon' => 'BON дүкенінен қотарылған жүктеу',
- 'upload-recorded' => 'Жазылған жүктеу',
- 'upload-true' => 'Шынайы жүктеу',
- 'uploads' => 'Жүктеулер',
- 'uploads-table' => 'Кері жүктеу кестесі',
- 'user' => 'Пайдаланушы',
- 'user-id' => 'Қолданушының ID',
- 'username-seedbox' => 'Пайдаланушы аты Seedbox',
- 'visible-to-achievement' => 'Жетістіктер көрінетін',
- 'visible-to-achievement-help' => 'Сіздің жетістіктеріңіз тек персоналға және келесі топтарға көрінеді. Бұл параметрлер Private (Жеке) күйіне өтіп кетсе, ескіреді',
- 'visible-to-follower' => 'Оқырмандарға көрінуі',
- 'visible-to-follower-help' => 'Сіздің ізбасарларыңыз тек персоналға және келесі топтарға көрінеді. Бұл параметрлер Private (Жеке) күйіне өтіп кетсе, ескіреді',
- 'visible-to-forum' => 'Форум туралы ақпарат көрінеді',
- 'visible-to-forum-help' => 'Форум ақпараты тек персоналға және келесі топтарға көрінеді. Бұл параметрлер Private (Жеке) күйіне өтіп кетсе, ескіреді',
- 'visible-to-other' => 'Басқа көрінетін',
- 'visible-to-other-help' => 'Есептік жазбаңызға қатысты басқа ақпарат қызметкерлерге және келесі топтарға ғана көрінеді. Бұл параметрлер «Жекеге өту» немесе «Жасырын» параметрін таңдасаңыз, алдын ала анықталады',
- 'visible-to-profile' => 'Профиль көре алады',
- 'visible-to-profile-help' => 'Профиліңіз тек персоналға және келесі топтарға көрінеді. Бұл параметрлер Private (Жеке) күйіне өтіп кетсе, ескіреді',
- 'visible-to-request' => 'Ақпаратты сұратуға болады',
- 'visible-to-request-help' => 'Сіздің сұрауыңыз туралы ақпарат қызметкерлерге және келесі топтарға ғана көрінеді. Бұл параметрлер Private (Жеке) күйіне өтіп кетсе, ескіреді',
- 'visible-to-torrent' => 'Торрент туралы ақпарат көрінеді',
- 'visible-to-torrent-help' => 'Сіздің торрентіңіз тек персоналға және келесі топтарға көрінеді. Бұл параметрлер «Жекеге өту» немесе «Жасырын» параметрін таңдасаңыз, алдын ала анықталады',
- 'warned-on' => 'Назар аударыңыз',
- 'warning' => 'Ескерту',
- 'warning-log' => 'Ескерту журналы',
- 'wishlist' => 'Тізім',
+ 'mention-notification-forum-post' => 'Хабарламаңызды форумда орналастырылған @ қабылданған кезде алу',
+ 'mention-notification-help' => 'Пайдаланушы @ шығарып жатқанда қандай хабарландырулар жіберілетінін бақылау. Бұл параметрлер егер пайдаланушы @ хабарландырулар жіберген жағдайда ешбір топқа хабарландыру жіберуге рұқсат бермеген жағдайда немесе егер сіз ескертулерді өшірсеңіз,',
+ 'moderated-by' => 'Moderated by: mod on',
+ 'my-bonus-points' => 'Менің Бонус ұпайларым',
+ 'my-bookmarks' => 'Менің бетбелгілерім',
+ 'my-fl-tokens' => 'Менің FL белгішелерім',
+ 'my-general-settings' => 'Менің Жалпы параметрлерім',
+ 'my-notification' => 'Менің хабарландыруым',
+ 'my-notification-settings' => 'Менің хабарландыру параметрлері',
+ 'my-privacy' => 'Менің құпиялылығым',
+ 'my-privacy-settings' => 'Менің құпиялылық параметрлері',
+ 'my-profile' => 'Менің профилім',
+ 'my-requested' => 'Менің сұранысым',
+ 'my-security' => 'Менің қауіпсіздігім',
+ 'my-security-settings' => 'Менің қауіпсіздік параметрлері',
+ 'my-seedboxes' => 'Менің Seedboxes',
+ 'my-settings' => 'Менің параметрлерім',
+ 'my-wishlist' => 'Менің тілектерім',
+ 'no-logs' => 'Бұл пайдаланушы үшін дерекқорда шақыру журналы жоқ!',
+ 'no-seedboxes' => 'No seedboxes 😔',
+ 'not-authorized' => 'Сіз бұл бетті қарауға рұқсатыңыз жоқ. Бұл мүше ниндзя сияқты жасырынып көреді!',
+ 'note' => 'Ескерту',
+ 'notification' => 'Хабарлама',
+ 'notification-settings' => 'Хабарландыру параметрлері',
+ 'notification-from-account' => 'Тіркелгіңізден хабарландырулар алу',
+ 'notification-from-account-help' => 'Сіз жүйеден, қызметкерлерден және келесі топтардан тек тіркелгі туралы ескертулерді аласыз. Хабарламаларды өшірсеңіз, бұл параметрлер алдын ала анықталады',
+ 'notification-from-bon' => 'BON хабарландыруларын алу',
+ 'notification-from-bon-help' => 'Сіз тек жүйеден, қызметкерлерден және келесі топтардан BON хабарландыруларын аласыз. Хабарламаларды өшірсеңіз, бұл параметрлер алдын ала анықталады',
+ 'notification-from-following' => 'Келесіден кейінгі пайдаланушы хабарландыруларын алыңыз',
+ 'notification-from-following-help' => 'Келесі топтардан кейінгі пайдаланушы хабарландыруларын ғана аласыз. Хабарламаларды өшірсеңіз, бұл параметрлер алдын ала анықталады',
+ 'notification-from-forum' => 'Қайдан хабарландырулар алу',
+ 'notification-from-forum-help' => 'Сіз жүйеден, қызметкерлерден және келесі топтардан форум туралы хабарламаларды аласыз. Хабарламаларды өшірсеңіз, бұл параметрлер алдын ала анықталады',
+ 'notification-from-subscription' => 'Жазылым хабарландыруларын алу',
+ 'notification-from-subscription-help' => 'Сіз жүйеден, қызметкерлерден және келесі топтардан форум туралы хабарламаларды аласыз. Хабарламаларды өшірсеңіз, бұл параметрлер алдын ала анықталады',
+ 'notification-from-torrent' => 'Torrent хабарландыруларын алу',
+ 'notification-from-torrent-help' => 'Сіз жүйеден, қызметкерлерден және келесі топтардан торрент хабарламаларын аласыз. Хабарламаларды өшірсеңіз, бұл параметрлер алдын ала анықталады',
+ 'notification-from-mention' => '@Mention хабарландыруларын алу',
+ 'notification-from-mention-help' => 'Сіз жүйеден, қызметкерлерден және келесі топтардан @mention хабарландыруларын аласыз. Хабарламаларды өшірсеңіз, бұл параметрлер алдын ала анықталады',
+ 'notification-from-request' => 'Қайдан сұрау туралы хабарламаларды алу',
+ 'notification-from-request-help' => 'Сіз жүйеден, қызметкерлерден және келесі топтардан тек сұраныс туралы ескертулерді аласыз. Хабарламаларды өшірсеңіз, бұл параметрлер алдын ала анықталады',
+ 'notifications' => 'Хабарламалар',
+ 'offline' => 'Пайдаланушы желіден тыс!',
+ 'online' => 'Пайдаланушы желіде!',
+ 'options' => 'Опциялар',
+ 'other-help' => 'Профильіңізге кіруге рұқсат етілген топтармен басқа статистикалар мен ақпараттың бөлісуін бақылаңыз. Егер сіз ешқандай топтардың басқа статистикаға және мәліметтерге кіруіне рұқсат бермейтін болсаңыз немесе Жеке болып қалсаңыз, бұл параметрлер алдын ала анықталады',
+ 'other-privacy' => 'Басқа параметрлер',
+ 'other-privacy-online' => 'Пайдаланушылар сізді желідегі пайдаланушылар блогында көруге рұқсат етіңіз',
+ 'passkey' => 'PID',
+ 'passkey-warning' => 'PID құпия сөзіңізге ұқсас, оны қауіпсіз сақтау керек!',
+ 'pending-achievements' => 'Жетістіктер күтілуде',
+ 'per-torrent' => 'Торрент үшін',
+ 'posts' => 'Хабарламалар',
+ 'posts-posted' => 'Форум Хабарлар Хабарламалар',
+ 'privacy' => 'Құпиялылық',
+ 'privacy-settings' => 'Құпиялылық параметрлері',
+ 'private-info' => 'Жеке ақпарат',
+ 'private-forum-profile' => 'Назар аударыңыз: Тақырыптар мен жариялау тарихы мүшелеріне PRIVATE орнатылды!',
+ 'private-profile' => 'Назар аударыңыз: бұл профиль PRIVATE үшін орнатылды!',
+ 'profile' => 'Профиль',
+ 'profile-desc' => 'Қатысушы: пайдаланушы профилі тіркелген: тақырып',
+ 'profile-privacy' => 'Профиль параметрлері',
+ 'profile-privacy-torrent-count' => 'Жүктеулердің, жүктеулердің, тұқымдардың және сүлгірлердің жалпы санын бөлісіңіз',
+ 'profile-privacy-torrent-ratio' => 'Жалпы жүктеп / жүктеу деректеріңізді жазылған коэффициентпен бірге бөлісіңіз',
+ 'profile-privacy-torrent-seed' => 'Орташа егу уақытын және орташа мәніңізді бөлісіңіз',
+ 'profile-privacy-title' => 'Жеке атаңыздың ақпаратын бөлісіңіз',
+ 'profile-privacy-about' => 'Мен туралы жеке ақпаратыңызды бөлісіңіз',
+ 'profile-privacy-bon-extra' => 'BON статистикаңызды бөлісіңіз',
+ 'profile-privacy-comment-extra' => 'Пікір статистикаңызды бөлісіңіз',
+ 'profile-privacy-forum-extra' => 'Форум статистикаңызды бөлісіңіз',
+ 'profile-privacy-request-extra' => 'Сұрау статистикаңызды бөлісіңіз',
+ 'profile-privacy-torrent-extra' => 'Торрент статистикаңызды бөлісіңіз',
+ 'profile-privacy-badge' => 'Қойылған бейдждерді бөлісіңіз',
+ 'profile-privacy-achievement' => 'Соңғы жетістіктеріңізді бөлісіңіз',
+ 'profile-privacy-follower' => 'Жақындағылармен бөлісіңіз',
+ 'profile-privacy-warning' => 'H & R ескертулеріңізді бөлісіңіз',
+ 'profile-privacy-help' => 'Профильде қандай статистикалық ақпарат пен ақпараттардың пайда болуын бақылау. Бұл параметрлер ешқандай топтың сіздің профиліңізге кіруіне рұқсат бермеген жағдайда немесе Жеке болып қалсаңыз, бұл параметрлер алдын ала анықталады',
+ 'public-info' => 'Қоғамдық ақпарат',
+ 'recent-achievements' => 'Соңғы жетістіктер',
+ 'recent-followers' => 'Соңғы тыңдаушылар',
+ 'registration-date' => 'Тіркеу күні',
+ 'report' => 'Есеп',
+ 'request-help' => 'Өзіңіздің профиліңізге кіруге рұқсат етілген топтармен нақты сұрау салумен байланысты статистиканы және ақпаратты бөлісуді бақылаңыз. Егер сіз кез-келген топқа сұратылған статистикаға және ақпаратыңызға қатынаса алмасаңыз немесе Жеке болып қалсаңыз, бұл параметрлер алдын ала анықталады',
+ 'request' => 'Сұрау',
+ 'requested' => 'Сұратылған',
+ 'requests' => 'Сұраулар',
+ 'request-comments' => 'Түсіндірмелер сұралады',
+ 'request-notification' => 'Хабарландыру параметрлерін сұрау',
+ 'request-notification-bounty' => 'Сұралған торрен жаңа награданы алған кезде хабарландыру алыңыз',
+ 'request-notification-comment' => 'Сұралған торрент жаңа түсініктеме алған кезде хабарландыру алу',
+ 'request-notification-fill' => 'Сұралған торр толтырылған кезде хабарландыру алу',
+ 'request-notification-fill-approve' => 'Сұралған торрент толтырылған кезде хабарландыру алу',
+ 'request-notification-fill-reject' => 'Сұралған торрент толтырылғаннан кейін хабарландыру алу',
+ 'request-notification-claim' => 'Талап етілетін торрент талап етілгенде хабарландыру алу',
+ 'request-notification-unclaim' => 'Сұратылған торрент талап етілмеген кезде хабарландыру алу',
+ 'request-notification-help' => 'Сұрау әрекеттеріне қатысты қандай хабарлама жіберілетінін бақылау. Егер сіз қандай да бір топтар сұрау қызметіне қатысты хабарландыруларды жіберуге мүмкіндік бермейді немесе егер Хабарландыруларды өшірсеңіз Бұл параметрлер ауыстырылады',
+ 'request-privacy' => 'Параметрлер сұрау',
+ 'request-privacy-requested' => 'Пайдаланушыларға жасаған сұраулар тізімін көруге рұқсат ету',
+ 'reset-passkey' => 'Құпия пернесінің ысыру (PID)',
+ 'reset-passkey-help' => 'PID-ты қалпына келтіргеннен кейін барлық белсенді торрларды қайта жүктеу / қайта жүктеу қажет болады',
+ 'reset-rss' => 'RSS кілтін қалпына келтіру (RID)',
+ 'reset-rss-help' => 'RID-ды қалпына келтіргеннен кейін барлық белсенді RSS арналарын қайта жүктеуге тура келеді',
+ 'resurrections' => 'Қайта қалпына келтіру',
+ 'search' => 'Пайдаланушы аты бойынша жылдам іздеу',
+ 'security' => 'Қауіпсіздік',
+ 'security-settings' => 'Қауіпсіздік параметрлері',
+ 'seedboxes' => 'Тұқымдықтар',
+ 'seeds' => 'Тұқымдар',
+ 'send-invite' => 'Шақыруды жіберу',
+ 'sender' => 'Жіберуші',
+ 'settings' => 'Параметрлер',
+ 'show-passkey' => 'PID көрсету',
+ 'staff-noted' => 'Қызметкерлер есептік жазба жасады',
+ 'statistics' => 'Статистика',
+ 'subscription-notification' => 'Жазылым туралы хабарландыру параметрлері',
+ 'subscription-notification-forum' => 'Жазылған форум жаңа тақырыпқа ие болғанда хабарландыру алыңыз',
+ 'subscription-notification-topic' => 'Жазылған тақырып жаңа хабар алған кезде хабарландыру алыңыз',
+ 'subscription-notification-help' => 'Жазылымдарға қатысты қандай хабарландырулар жіберілгенін бақылау. Егер сіз қандай да бір топтар жазылымдары қатысты хабарландыруларды жіберуге мүмкіндік бермейді немесе егер Хабарландыруларды өшірсеңіз Бұл параметрлер ауыстырылады',
+ 'thanks-given' => 'Спасибо',
+ 'thanks-received' => 'Рахмет алынды',
+ 'tips-given' => 'Ұсынылған кеңестер',
+ 'tips-received' => 'Алынған кеңестер',
+ 'title' => 'Тақырып',
+ 'top-bankers' => 'Жоғарғы банкирлер',
+ 'top-downloaders-data' => 'Үздік жүктеп салушылар (деректер)',
+ 'top-leechers' => 'Үздік лейгерлер',
+ 'top-leechers-count' => 'Үздік Leechers (Count)',
+ 'top-seeders' => 'Жоғарғы сепкіштер',
+ 'top-seeders-count' => 'Top Seeders (Count)',
+ 'top-seeding-size' => 'Жоғарғы топырақ (мөлшері)',
+ 'top-seedtime' => 'Үздік сүт дәмі',
+ 'top-uploaders-data' => 'Жоғарғы жүктеушілер (деректер)',
+ 'top-uploaders-count' => 'Жоғарғы жүктеп салушылар (Count)',
+ 'topics' => 'Тақырыптар',
+ 'topics-started' => 'Форум тақырыптары басталды',
+ 'torrent-comments' => 'Torrent Пікірлер жасалды',
+ 'torrent-help' => 'Арнайы статистиканы және ақпаратыңызды профиліңізге кіруге рұқсат етілген топтармен бөлісуді бақылаңыз. Егер бұл тораптарға қатысты статистикаға және ақпаратқа қол жеткізуге рұқсат бермейтін болсаңыз немесе егер сіз Жеке болып қалсаңыз, бұл параметрлер алдын ала анықталады',
+ 'torrent-notification' => 'Torrent Notification Settings',
+ 'torrent-notification-comment' => 'Жүктелген торрент жаңа түсініктеме алған кезде хабарландыруды алыңыз',
+ 'torrent-notification-thank' => 'Жүктелген торрент жаңа алғыс алған кезде хабарландыру алу',
+ 'torrent-notification-tip' => 'Жүктелген торрент жаңа кеңесті алған кезде хабарландыруды алыңыз',
+ 'torrent-notification-help' => 'Торрент қызметіне қатысты қандай хабарландырулар жіберілгенін бақылау. Егер сіз қандай да бір топтар торрент қызметіне қатысты хабарландыруларды жіберуге мүмкіндік бермейді немесе егер Хабарландыруларды өшірсеңіз Бұл параметрлер ауыстырылады',
+ 'torrent-privacy' => 'Torrent параметрлері',
+ 'torrent-privacy-download' => 'Пайдаланушылар жүктеген торрент тізімін көруге рұқсат ету',
+ 'torrent-privacy-upload' => 'Пайдаланушыларға жүктеп берген торрент тізімін көруге рұқсат ету',
+ 'torrent-privacy-peer' => 'Пайдаланушылар сізді торрент серіктестерінің тарих кестесінде көруге рұқсат ету',
+ 'torrents' => 'Torrents',
+ 'torrents-history' => 'Таррент тарихы',
+ 'total-download' => 'Барлығы жүктеу',
+ 'total-downloads' => 'Барлығы жүктеледі',
+ 'total-leeching' => 'Total Leeching',
+ 'total-seeding' => 'Барлығы егіс',
+ 'total-seedtime' => 'Барлығы Seedtime',
+ 'total-upload' => 'Жалпы жүктеу',
+ 'total-uploads' => 'Жалпы жүктеулер',
+ 'unban' => 'Unban пайдаланушысы',
+ 'unfollow' => 'Белгілеу',
+ 'unlocked' => 'Құлыпталған',
+ 'unlocked-achievements' => 'Ашылған жетістіктер',
+ 'unsatisfieds' => 'Unsatisfieds',
+ 'upload-bon' => 'BON дүкенінен қотарылған жүктеу',
+ 'upload-recorded' => 'Жазылған жүктеу',
+ 'upload-true' => 'Шынайы жүктеу',
+ 'uploads' => 'Жүктеулер',
+ 'uploads-table' => 'Кері жүктеу кестесі',
+ 'user' => 'Пайдаланушы',
+ 'user-id' => 'Қолданушының ID',
+ 'username-seedbox' => 'Пайдаланушы аты Seedbox',
+ 'visible-to-achievement' => 'Жетістіктер көрінетін',
+ 'visible-to-achievement-help' => 'Сіздің жетістіктеріңіз тек персоналға және келесі топтарға көрінеді. Бұл параметрлер Private (Жеке) күйіне өтіп кетсе, ескіреді',
+ 'visible-to-follower' => 'Оқырмандарға көрінуі',
+ 'visible-to-follower-help' => 'Сіздің ізбасарларыңыз тек персоналға және келесі топтарға көрінеді. Бұл параметрлер Private (Жеке) күйіне өтіп кетсе, ескіреді',
+ 'visible-to-forum' => 'Форум туралы ақпарат көрінеді',
+ 'visible-to-forum-help' => 'Форум ақпараты тек персоналға және келесі топтарға көрінеді. Бұл параметрлер Private (Жеке) күйіне өтіп кетсе, ескіреді',
+ 'visible-to-other' => 'Басқа көрінетін',
+ 'visible-to-other-help' => 'Есептік жазбаңызға қатысты басқа ақпарат қызметкерлерге және келесі топтарға ғана көрінеді. Бұл параметрлер «Жекеге өту» немесе «Жасырын» параметрін таңдасаңыз, алдын ала анықталады',
+ 'visible-to-profile' => 'Профиль көре алады',
+ 'visible-to-profile-help' => 'Профиліңіз тек персоналға және келесі топтарға көрінеді. Бұл параметрлер Private (Жеке) күйіне өтіп кетсе, ескіреді',
+ 'visible-to-request' => 'Ақпаратты сұратуға болады',
+ 'visible-to-request-help' => 'Сіздің сұрауыңыз туралы ақпарат қызметкерлерге және келесі топтарға ғана көрінеді. Бұл параметрлер Private (Жеке) күйіне өтіп кетсе, ескіреді',
+ 'visible-to-torrent' => 'Торрент туралы ақпарат көрінеді',
+ 'visible-to-torrent-help' => 'Сіздің торрентіңіз тек персоналға және келесі топтарға көрінеді. Бұл параметрлер «Жекеге өту» немесе «Жасырын» параметрін таңдасаңыз, алдын ала анықталады',
+ 'warned-on' => 'Назар аударыңыз',
+ 'warning' => 'Ескерту',
+ 'warning-log' => 'Ескерту журналы',
+ 'wishlist' => 'Тізім',
];
diff --git a/lang/kk/validation.php b/lang/kk/validation.php
index ad9d8dd88..4f0cc422c 100644
--- a/lang/kk/validation.php
+++ b/lang/kk/validation.php
@@ -23,108 +23,108 @@ return [
|
*/
- 'accepted' => ' :attribute қабылдануы керек.',
- 'active_url' => ' :attribute жарамды URL мекенжайы емес.',
- 'after' => ' :attribute мәні :date күнінен кейінгі күн болуы керек.',
- 'after_or_equal' => ' :attribute мәні :date күнінен кейінгі күн немесе тең болуы керек.',
- 'alpha' => ' :attribute тек әріптерден тұруы керек.',
- 'alpha_dash' => ' :attribute тек әріптерден, сандардан және сызықшалардан тұруы керек.',
- 'alpha_num' => ' :attribute тек әріптерден және сандардан тұруы керек.',
- 'array' => ' :attribute жиым болуы керек.',
- 'before' => ' :attribute мәні :date күнінен дейінгі күн болуы керек.',
- 'before_or_equal' => ' :attribute мәні :date күнінен дейінгі күн немесе тең болуы керек.',
- 'between' => [
+ 'accepted' => ' :attribute қабылдануы керек.',
+ 'active_url' => ' :attribute жарамды URL мекенжайы емес.',
+ 'after' => ' :attribute мәні :date күнінен кейінгі күн болуы керек.',
+ 'after_or_equal' => ' :attribute мәні :date күнінен кейінгі күн немесе тең болуы керек.',
+ 'alpha' => ' :attribute тек әріптерден тұруы керек.',
+ 'alpha_dash' => ' :attribute тек әріптерден, сандардан және сызықшалардан тұруы керек.',
+ 'alpha_num' => ' :attribute тек әріптерден және сандардан тұруы керек.',
+ 'array' => ' :attribute жиым болуы керек.',
+ 'before' => ' :attribute мәні :date күнінен дейінгі күн болуы керек.',
+ 'before_or_equal' => ' :attribute мәні :date күнінен дейінгі күн немесе тең болуы керек.',
+ 'between' => [
'numeric' => ' :attribute мәні :min және :max аралығында болуы керек.',
- 'file' => ' :attribute көлемі :min және :max килобайт аралығында болуы керек.',
- 'string' => ' :attribute тармағы :min және :max аралығындағы таңбалардан тұруы керек.',
- 'array' => ' :attribute жиымы :min және :max аралығындағы элементтерден тұруы керек.',
+ 'file' => ' :attribute көлемі :min және :max килобайт аралығында болуы керек.',
+ 'string' => ' :attribute тармағы :min және :max аралығындағы таңбалардан тұруы керек.',
+ 'array' => ' :attribute жиымы :min және :max аралығындағы элементтерден тұруы керек.',
],
- 'boolean' => ' :attribute жолы шын немесе жалған мән болуы керек.',
- 'confirmed' => ' :attribute растауы сәйкес емес.',
- 'date' => ' :attribute жарамды күн емес.',
- 'date_equals' => ' :attribute мәні :date күнімен тең болуы керек.',
- 'date_format' => ' :attribute пішімі :format пішіміне сай емес.',
- 'different' => ' :attribute және :other әр түрлі болуы керек.',
- 'digits' => ' :attribute мәні :digits сан болуы керек.',
- 'digits_between' => ' :attribute мәні :min және :max аралығындағы сан болуы керек.',
- 'dimensions' => ' :attribute сурет өлшемі жарамсыз.',
- 'distinct' => ' :attribute жолында қосарланған мән бар.',
- 'email' => ' :attribute жарамды электрондық пошта мекенжайы болуы керек.',
- 'exists' => ' таңдалған :attribute жарамсыз.',
- 'file' => ' :attribute файл болуы тиіс.',
- 'filled' => ' :attribute жолы толтырылуы керек.',
- 'gt' => [
+ 'boolean' => ' :attribute жолы шын немесе жалған мән болуы керек.',
+ 'confirmed' => ' :attribute растауы сәйкес емес.',
+ 'date' => ' :attribute жарамды күн емес.',
+ 'date_equals' => ' :attribute мәні :date күнімен тең болуы керек.',
+ 'date_format' => ' :attribute пішімі :format пішіміне сай емес.',
+ 'different' => ' :attribute және :other әр түрлі болуы керек.',
+ 'digits' => ' :attribute мәні :digits сан болуы керек.',
+ 'digits_between' => ' :attribute мәні :min және :max аралығындағы сан болуы керек.',
+ 'dimensions' => ' :attribute сурет өлшемі жарамсыз.',
+ 'distinct' => ' :attribute жолында қосарланған мән бар.',
+ 'email' => ' :attribute жарамды электрондық пошта мекенжайы болуы керек.',
+ 'exists' => ' таңдалған :attribute жарамсыз.',
+ 'file' => ' :attribute файл болуы тиіс.',
+ 'filled' => ' :attribute жолы толтырылуы керек.',
+ 'gt' => [
'numeric' => ' :attribute мәні :value үлкен болуы керек.',
- 'file' => ' :attribute файл өлшемі :value килобайттан үлкен болуы керек.',
- 'string' => ' :attribute мәні :value таңбалардан үлкен болуы керек.',
- 'array' => ' :attribute мәні :value элементтерден үлкен болуы керек.',
+ 'file' => ' :attribute файл өлшемі :value килобайттан үлкен болуы керек.',
+ 'string' => ' :attribute мәні :value таңбалардан үлкен болуы керек.',
+ 'array' => ' :attribute мәні :value элементтерден үлкен болуы керек.',
],
- 'gte' => [
+ 'gte' => [
'numeric' => ' :attribute мәні :value үлкен немесе тең болуы керек.',
- 'file' => ' :attribute файл өлшемі :value килобайттан үлкен немесе тең болуы керек.',
- 'string' => ' :attribute мәні :value таңбалардан үлкен немесе тең болуы керек.',
- 'array' => ' :attribute мәні :value элементтерден үлкен немесе тең болуы керек.',
+ 'file' => ' :attribute файл өлшемі :value килобайттан үлкен немесе тең болуы керек.',
+ 'string' => ' :attribute мәні :value таңбалардан үлкен немесе тең болуы керек.',
+ 'array' => ' :attribute мәні :value элементтерден үлкен немесе тең болуы керек.',
],
- 'image' => ' :attribute кескін болуы керек.',
- 'in' => ' таңдалған :attribute жарамсыз.',
- 'in_array' => ' :attribute жолы :other ішінде жоқ.',
- 'integer' => ' :attribute бүтін сан болуы керек.',
- 'ip' => ' :attribute жарамды IP мекенжайы болуы керек.',
- 'ipv4' => ' :attribute жарамды IPv4 мекенжайы болуы керек.',
- 'ipv6' => ' :attribute жарамды IPv6 мекенжайы болуы керек.',
- 'json' => ' :attribute жарамды JSON тармағы болуы керек.',
- 'lt' => [
+ 'image' => ' :attribute кескін болуы керек.',
+ 'in' => ' таңдалған :attribute жарамсыз.',
+ 'in_array' => ' :attribute жолы :other ішінде жоқ.',
+ 'integer' => ' :attribute бүтін сан болуы керек.',
+ 'ip' => ' :attribute жарамды IP мекенжайы болуы керек.',
+ 'ipv4' => ' :attribute жарамды IPv4 мекенжайы болуы керек.',
+ 'ipv6' => ' :attribute жарамды IPv6 мекенжайы болуы керек.',
+ 'json' => ' :attribute жарамды JSON тармағы болуы керек.',
+ 'lt' => [
'numeric' => ' :attribute мәні :value кіші болуы керек.',
- 'file' => ' :attribute файл өлшемі :value килобайттан кіші болуы керек.',
- 'string' => ' :attribute мәні :value таңбалардан кіші болуы керек.',
- 'array' => ' :attribute мәні :value элементтерден кіші болуы керек.',
+ 'file' => ' :attribute файл өлшемі :value килобайттан кіші болуы керек.',
+ 'string' => ' :attribute мәні :value таңбалардан кіші болуы керек.',
+ 'array' => ' :attribute мәні :value элементтерден кіші болуы керек.',
],
- 'lte' => [
+ 'lte' => [
'numeric' => ' :attribute мәні :value кіші немесе тең болуы керек.',
- 'file' => ' :attribute файл өлшемі :value килобайттан кіші неменсе тең болуы керек.',
- 'string' => ' :attribute мәні :value таңбалардан кіші немесе тең болуы керек.',
- 'array' => ' :attribute мәні :value элементтерден кіші немесе тең болуы керек.',
+ 'file' => ' :attribute файл өлшемі :value килобайттан кіші неменсе тең болуы керек.',
+ 'string' => ' :attribute мәні :value таңбалардан кіші немесе тең болуы керек.',
+ 'array' => ' :attribute мәні :value элементтерден кіші немесе тең болуы керек.',
],
- 'max' => [
+ 'max' => [
'numeric' => ' :attribute мәні :max мәнінен көп болмауы керек.',
- 'file' => ' :attribute мәні :max килобайттан көп болмауы керек.',
- 'string' => ' :attribute тармағы :max таңбадан ұзын болмауы керек.',
- 'array' => ' :attribute жиымының құрамы :max элементтен аспауы керек.',
+ 'file' => ' :attribute мәні :max килобайттан көп болмауы керек.',
+ 'string' => ' :attribute тармағы :max таңбадан ұзын болмауы керек.',
+ 'array' => ' :attribute жиымының құрамы :max элементтен аспауы керек.',
],
- 'mimes' => ' :attribute мынадай файл түрі болуы керек: :values.',
- 'mimetypes' => ' :attribute мынадай файл түрі болуы керек: :values.',
- 'min' => [
+ 'mimes' => ' :attribute мынадай файл түрі болуы керек: :values.',
+ 'mimetypes' => ' :attribute мынадай файл түрі болуы керек: :values.',
+ 'min' => [
'numeric' => ' :attribute кемінде :min болуы керек.',
- 'file' => ' :attribute көлемі кемінде :min килобайт болуы керек.',
- 'string' => ' :attribute кемінде :min таңбадан тұруы керек.',
- 'array' => ' :attribute кемінде :min элементтен тұруы керек.',
+ 'file' => ' :attribute көлемі кемінде :min килобайт болуы керек.',
+ 'string' => ' :attribute кемінде :min таңбадан тұруы керек.',
+ 'array' => ' :attribute кемінде :min элементтен тұруы керек.',
],
- 'not_in' => ' таңдалған :attribute жарамсыз.',
- 'not_regex' => ' таңдалған :attribute форматы жарамсыз.',
- 'numeric' => ' :attribute сан болуы керек.',
- 'present' => ' :attribute болуы керек.',
- 'regex' => ' :attribute пішімі жарамсыз.',
- 'required' => ' :attribute жолы толтырылуы керек.',
- 'required_if' => ' :attribute жолы :other мәні :value болған кезде толтырылуы керек.',
- 'required_unless' => ' :attribute жолы :other мәні :values ішінде болмағанда толтырылуы керек.',
- 'required_with' => ' :attribute жолы :values болғанда толтырылуы керек.',
- 'required_with_all' => ' :attribute жолы :values болғанда толтырылуы керек.',
- 'required_without' => ' :attribute жолы :values болмағанда толтырылуы керек.',
+ 'not_in' => ' таңдалған :attribute жарамсыз.',
+ 'not_regex' => ' таңдалған :attribute форматы жарамсыз.',
+ 'numeric' => ' :attribute сан болуы керек.',
+ 'present' => ' :attribute болуы керек.',
+ 'regex' => ' :attribute пішімі жарамсыз.',
+ 'required' => ' :attribute жолы толтырылуы керек.',
+ 'required_if' => ' :attribute жолы :other мәні :value болған кезде толтырылуы керек.',
+ 'required_unless' => ' :attribute жолы :other мәні :values ішінде болмағанда толтырылуы керек.',
+ 'required_with' => ' :attribute жолы :values болғанда толтырылуы керек.',
+ 'required_with_all' => ' :attribute жолы :values болғанда толтырылуы керек.',
+ 'required_without' => ' :attribute жолы :values болмағанда толтырылуы керек.',
'required_without_all' => ' :attribute жолы ешбір :values болмағанда толтырылуы керек.',
- 'same' => ' :attribute және :other сәйкес болуы керек.',
- 'size' => [
+ 'same' => ' :attribute және :other сәйкес болуы керек.',
+ 'size' => [
'numeric' => ' :attribute көлемі :size болуы керек.',
- 'file' => ' :attribute көлемі :size килобайт болуы керек.',
- 'string' => ' :attribute тармағы :size таңбадан тұруы керек.',
- 'array' => ' :attribute жиымы :size элементтен тұруы керек.',
+ 'file' => ' :attribute көлемі :size килобайт болуы керек.',
+ 'string' => ' :attribute тармағы :size таңбадан тұруы керек.',
+ 'array' => ' :attribute жиымы :size элементтен тұруы керек.',
],
- 'starts_with' => ' :attribute келесі мәндердің біреуінен басталуы керек: :values',
- 'string' => ' :attribute тармақ болуы керек.',
- 'timezone' => ' :attribute жарамды аймақ болуы керек.',
- 'unique' => ' :attribute бұрын алынған.',
- 'uploaded' => ' :attribute жүктелуі сәтсіз аяқталды.',
- 'url' => ' :attribute пішімі жарамсыз.',
- 'uuid' => ' :attribute мәні жарамды UUID болуы керек.',
+ 'starts_with' => ' :attribute келесі мәндердің біреуінен басталуы керек: :values',
+ 'string' => ' :attribute тармақ болуы керек.',
+ 'timezone' => ' :attribute жарамды аймақ болуы керек.',
+ 'unique' => ' :attribute бұрын алынған.',
+ 'uploaded' => ' :attribute жүктелуі сәтсіз аяқталды.',
+ 'url' => ' :attribute пішімі жарамсыз.',
+ 'uuid' => ' :attribute мәні жарамды UUID болуы керек.',
/*
|--------------------------------------------------------------------------
@@ -155,11 +155,11 @@ return [
*/
'attributes' => [
- 'test_name' => 'Сынақ атауы',
- 'test_description' => 'Сынақ сипаттамасы',
- 'test_locale' => 'Тілі',
- 'image' => 'Кескін',
+ 'test_name' => 'Сынақ атауы',
+ 'test_description' => 'Сынақ сипаттамасы',
+ 'test_locale' => 'Тілі',
+ 'image' => 'Кескін',
'result_text_under_image' => 'Кескін астындағы нәтиже мәтіні',
- 'short_text' => 'Қысқа мәтін',
+ 'short_text' => 'Қысқа мәтін',
],
];
diff --git a/lang/km/articles.php b/lang/km/articles.php
index 5f7beabc4..6e79a7b8c 100644
--- a/lang/km/articles.php
+++ b/lang/km/articles.php
@@ -12,8 +12,8 @@
*/
return [
- 'articles' => 'អត្ថបទ',
+ 'articles' => 'អត្ថបទ',
'meta-articles' => 'អត្ថបទនិងព័ត៌មាននៅលើកម្មវិធីតាមដាននិងសហគមន៍',
- 'published-at' => 'បោះពុម្ភផ្សាយនៅ',
- 'read-more' => 'អានបន្ថែម',
+ 'published-at' => 'បោះពុម្ភផ្សាយនៅ',
+ 'read-more' => 'អានបន្ថែម',
];
diff --git a/lang/km/auth.php b/lang/km/auth.php
index fc51cd165..ee4eeafde 100644
--- a/lang/km/auth.php
+++ b/lang/km/auth.php
@@ -23,6 +23,6 @@ return [
|
*/
- 'failed' => 'These credentials do not match our records.',
+ 'failed' => 'These credentials do not match our records.',
'throttle' => 'Too many login attempts. Please try again in :seconds seconds.',
];
diff --git a/lang/km/backup.php b/lang/km/backup.php
index 7b1c66785..38a73cff4 100644
--- a/lang/km/backup.php
+++ b/lang/km/backup.php
@@ -12,32 +12,32 @@
*/
return [
- 'actions' => 'សកម្មភាព',
- 'backup' => 'បម្រុងទុក',
- 'backup_doesnt_exist' => 'ឯកសារបម្រុងទុកមិនមានទេ។',
- 'create_a_new_backup' => 'បង្កើតការបម្រុងទុកពេញ',
- 'create_a_new_files_backup' => 'បង្កើតការបម្រុងទុកឯកសារ',
- 'create_a_new_db_backup' => 'បង្កើតការបម្រុងទុកមូលដ្ឋានទិន្នន័យ',
- 'create_confirmation_message' => 'ផ្ទុកទំព័រឡើងវិញក្នុងរយៈពេល 3 វិនាទី។',
- 'create_confirmation_title' => 'ការបម្រុងទុកបានបញ្ចប់',
- 'create_error_message' => 'មិនអាចបង្កើតឯកសារបម្រុងទុកបានទេ។',
- 'create_error_title' => 'កំហុសបម្រុងទុក',
- 'create_warning_message' => 'ការបម្រុងទុករបស់អ្នកប្រហែលជាមិនត្រូវបានបង្កើតទេ។ សូមពិនិត្យឯកសារកំណត់ហេតុសម្រាប់ព័ត៌មានលម្អិត។',
- 'create_warning_title' => 'មិនស្គាល់កំហុស',
- 'date' => 'កាលបរិច្ឆេទ',
- 'delete' => 'លុប',
- 'delete_cancel_message' => 'ឯកសារបម្រុងទុកមិនត្រូវបានលុបទេ។',
- 'delete_cancel_title' => 'មិនអីទេ',
- 'delete_confirm' => 'តើអ្នកប្រាកដថាអ្នកចង់លុបឯកសារបម្រុងទុកនេះមែនទេ?',
- 'delete_confirmation_message' => 'ឯកសារបម្រុងទុកត្រូវបានលុប។',
- 'delete_confirmation_title' => 'ធ្វើ',
- 'delete_error_message' => 'ឯកសារបម្រុងទុកមិនត្រូវបានលុបទេ។',
- 'delete_error_title' => 'កំហុស',
- 'download' => 'ទាញយក',
- 'existing_backups' => 'ការបម្រុងទុកដែលមានស្រាប់',
- 'file_size' => 'ទំហំឯកសារ',
- 'location' => 'ទីកន្លែង',
- 'manager' => 'អ្នកគ្រប់គ្រង',
- 'no_disks_configured' => 'គ្មានថាសបម្រុងទុកដែលបានកំណត់រចនាសម្ព័ន្ធក្នុង config / backup.php ទេ',
+ 'actions' => 'សកម្មភាព',
+ 'backup' => 'បម្រុងទុក',
+ 'backup_doesnt_exist' => 'ឯកសារបម្រុងទុកមិនមានទេ។',
+ 'create_a_new_backup' => 'បង្កើតការបម្រុងទុកពេញ',
+ 'create_a_new_files_backup' => 'បង្កើតការបម្រុងទុកឯកសារ',
+ 'create_a_new_db_backup' => 'បង្កើតការបម្រុងទុកមូលដ្ឋានទិន្នន័យ',
+ 'create_confirmation_message' => 'ផ្ទុកទំព័រឡើងវិញក្នុងរយៈពេល 3 វិនាទី។',
+ 'create_confirmation_title' => 'ការបម្រុងទុកបានបញ្ចប់',
+ 'create_error_message' => 'មិនអាចបង្កើតឯកសារបម្រុងទុកបានទេ។',
+ 'create_error_title' => 'កំហុសបម្រុងទុក',
+ 'create_warning_message' => 'ការបម្រុងទុករបស់អ្នកប្រហែលជាមិនត្រូវបានបង្កើតទេ។ សូមពិនិត្យឯកសារកំណត់ហេតុសម្រាប់ព័ត៌មានលម្អិត។',
+ 'create_warning_title' => 'មិនស្គាល់កំហុស',
+ 'date' => 'កាលបរិច្ឆេទ',
+ 'delete' => 'លុប',
+ 'delete_cancel_message' => 'ឯកសារបម្រុងទុកមិនត្រូវបានលុបទេ។',
+ 'delete_cancel_title' => 'មិនអីទេ',
+ 'delete_confirm' => 'តើអ្នកប្រាកដថាអ្នកចង់លុបឯកសារបម្រុងទុកនេះមែនទេ?',
+ 'delete_confirmation_message' => 'ឯកសារបម្រុងទុកត្រូវបានលុប។',
+ 'delete_confirmation_title' => 'ធ្វើ',
+ 'delete_error_message' => 'ឯកសារបម្រុងទុកមិនត្រូវបានលុបទេ។',
+ 'delete_error_title' => 'កំហុស',
+ 'download' => 'ទាញយក',
+ 'existing_backups' => 'ការបម្រុងទុកដែលមានស្រាប់',
+ 'file_size' => 'ទំហំឯកសារ',
+ 'location' => 'ទីកន្លែង',
+ 'manager' => 'អ្នកគ្រប់គ្រង',
+ 'no_disks_configured' => 'គ្មានថាសបម្រុងទុកដែលបានកំណត់រចនាសម្ព័ន្ធក្នុង config / backup.php ទេ',
'only_local_downloads_supported' => 'មានតែការទាញយកពីប្រព័ន្ធឯកសារមូលដ្ឋានតែប៉ុណ្ណោះ។',
];
diff --git a/lang/km/blocks.php b/lang/km/blocks.php
index ab993b317..9874ca280 100644
--- a/lang/km/blocks.php
+++ b/lang/km/blocks.php
@@ -12,19 +12,19 @@
*/
return [
- 'chatbox' => 'ប្រអប់ជជែក',
- 'click' => 'សូមចុច',
- 'to-enable-editor' => 'ដើម្បីបើកកម្មវិធីនិពន្ធ',
- 'featured-by' => 'លក្ខណៈពិសេសដោយ',
- 'featured-torrents' => 'Torrent លក្ខណៈពិសេស',
+ 'chatbox' => 'ប្រអប់ជជែក',
+ 'click' => 'សូមចុច',
+ 'to-enable-editor' => 'ដើម្បីបើកកម្មវិធីនិពន្ធ',
+ 'featured-by' => 'លក្ខណៈពិសេសដោយ',
+ 'featured-torrents' => 'Torrent លក្ខណៈពិសេស',
'featured-torrents-intro' => 'ទទួលពួកគេខណៈដែលអ្នកអាចធ្វើបាន!',
- 'featured-until' => 'នេះគឺជា torrent លក្ខណៈពិសេសរហូតដល់',
- 'top-torrents' => 'កំពូល Torrents',
- 'latest-posts' => 'ប្រកាសចុងក្រោយបំផុត',
- 'latest-topics' => 'ប្រធានបទថ្មីៗ',
- 'active-in-last' => 'សកម្មនៅចុងក្រោយ',
- 'users-online' => 'អ្នកប្រើលើបណ្តាញ',
- 'check-news' => 'ព័ត៌មាន (ពិនិត្យមើលប្រចាំថ្ងៃ)',
- 'new-news' => 'ព័ត៌មានថ្មី',
- 'new-torrents' => 'torrent ថ្មី',
+ 'featured-until' => 'នេះគឺជា torrent លក្ខណៈពិសេសរហូតដល់',
+ 'top-torrents' => 'កំពូល Torrents',
+ 'latest-posts' => 'ប្រកាសចុងក្រោយបំផុត',
+ 'latest-topics' => 'ប្រធានបទថ្មីៗ',
+ 'active-in-last' => 'សកម្មនៅចុងក្រោយ',
+ 'users-online' => 'អ្នកប្រើលើបណ្តាញ',
+ 'check-news' => 'ព័ត៌មាន (ពិនិត្យមើលប្រចាំថ្ងៃ)',
+ 'new-news' => 'ព័ត៌មានថ្មី',
+ 'new-torrents' => 'torrent ថ្មី',
];
diff --git a/lang/km/bon.php b/lang/km/bon.php
index 9bc9f8e12..c715218bc 100644
--- a/lang/km/bon.php
+++ b/lang/km/bon.php
@@ -12,44 +12,44 @@
*/
return [
- 'activated' => 'បានធ្វើសកម្មភាព',
- 'active' => 'បានធ្វើសកម្មភាព!',
- 'amount' => 'ចំនួន',
- 'bon' => 'អរ',
- 'bonus' => 'ប្រាក់រង្វាន់',
- 'date' => 'កាលបរិច្ឆេទ',
- 'earning' => 'រក',
- 'earning-rate' => 'នៅអត្រារកប្រាក់ចំណូលនេះអ្នកនឹងទទួលបានដូចខាងក្រោមក្នុងកំឡុងពេលវេលា ..',
- 'earnings' => 'ប្រាក់ចំណូល',
- 'exchange' => 'ប្តូរប្រាក់',
- 'exchange-warning' => 'ការផ្លាស់ប្តូរជាចុងក្រោយសូមពិនិត្យមើលឡើងវិញនូវជម្រើសរបស់អ្នកមុនពេលធ្វើការផ្លាស់ប្តូរ។',
- 'extended-stats' => 'ស្ថិតិបន្ថែម',
- 'gift' => 'អំណោយ',
- 'gift-bonus' => 'ពិន្ទុរង្វាន់អំណោយ',
- 'gift-to' => 'ពិន្ទុរង្វាន់អំណោយទានដើម្បី',
- 'gifts' => 'អំណោយ',
- 'item' => 'ធាតុ',
- 'no-refund' => 'គ្មានប្រាក់កក់ទេ!',
- 'per-day' => 'ពិន្ទុក្នុងមួយថ្ងៃ',
- 'per-hour' => 'ពិន្ទុក្នុងមួយម៉ោង',
- 'per-minute' => 'ពិន្ទុក្នុងមួយនាទី',
- 'per-month' => 'ពិន្ទុក្នុងមួយខែ',
- 'per-second' => 'ពិន្ទុក្នុងមួយវិនាទី',
- 'per-week' => 'ពិន្ទុក្នុងមួយសប្តាហ៍',
- 'per-year' => 'ពិន្ទុក្នុងមួយឆ្នាំ',
- 'points' => 'ចំណុច',
- 'receiver' => 'អ្នកទទួល',
- 'review-seeds' => 'ពិនិត្យឡើងវិញនូវរាល់ Torrent ដែលបានបញ្ចូលគ្នា',
- 'send-gift' => 'ផ្ញើអំណោយ',
- 'sender' => 'អ្នកផ្ញើ',
- 'store' => 'រក្សាទុក',
- 'tips' => 'ព័ត៌មានជំនួយ',
- 'total' => 'ប្រាក់ចំណូលសរុប',
- 'total-gifts' => 'ក្នុងអំណោយសរុប BON',
- 'total-tips' => 'នៅក្នុងគន្លឹះ Total BON',
+ 'activated' => 'បានធ្វើសកម្មភាព',
+ 'active' => 'បានធ្វើសកម្មភាព!',
+ 'amount' => 'ចំនួន',
+ 'bon' => 'អរ',
+ 'bonus' => 'ប្រាក់រង្វាន់',
+ 'date' => 'កាលបរិច្ឆេទ',
+ 'earning' => 'រក',
+ 'earning-rate' => 'នៅអត្រារកប្រាក់ចំណូលនេះអ្នកនឹងទទួលបានដូចខាងក្រោមក្នុងកំឡុងពេលវេលា ..',
+ 'earnings' => 'ប្រាក់ចំណូល',
+ 'exchange' => 'ប្តូរប្រាក់',
+ 'exchange-warning' => 'ការផ្លាស់ប្តូរជាចុងក្រោយសូមពិនិត្យមើលឡើងវិញនូវជម្រើសរបស់អ្នកមុនពេលធ្វើការផ្លាស់ប្តូរ។',
+ 'extended-stats' => 'ស្ថិតិបន្ថែម',
+ 'gift' => 'អំណោយ',
+ 'gift-bonus' => 'ពិន្ទុរង្វាន់អំណោយ',
+ 'gift-to' => 'ពិន្ទុរង្វាន់អំណោយទានដើម្បី',
+ 'gifts' => 'អំណោយ',
+ 'item' => 'ធាតុ',
+ 'no-refund' => 'គ្មានប្រាក់កក់ទេ!',
+ 'per-day' => 'ពិន្ទុក្នុងមួយថ្ងៃ',
+ 'per-hour' => 'ពិន្ទុក្នុងមួយម៉ោង',
+ 'per-minute' => 'ពិន្ទុក្នុងមួយនាទី',
+ 'per-month' => 'ពិន្ទុក្នុងមួយខែ',
+ 'per-second' => 'ពិន្ទុក្នុងមួយវិនាទី',
+ 'per-week' => 'ពិន្ទុក្នុងមួយសប្តាហ៍',
+ 'per-year' => 'ពិន្ទុក្នុងមួយឆ្នាំ',
+ 'points' => 'ចំណុច',
+ 'receiver' => 'អ្នកទទួល',
+ 'review-seeds' => 'ពិនិត្យឡើងវិញនូវរាល់ Torrent ដែលបានបញ្ចូលគ្នា',
+ 'send-gift' => 'ផ្ញើអំណោយ',
+ 'sender' => 'អ្នកផ្ញើ',
+ 'store' => 'រក្សាទុក',
+ 'tips' => 'ព័ត៌មានជំនួយ',
+ 'total' => 'ប្រាក់ចំណូលសរុប',
+ 'total-gifts' => 'ក្នុងអំណោយសរុប BON',
+ 'total-tips' => 'នៅក្នុងគន្លឹះ Total BON',
'you-have-received-gifts' => 'អ្នកបានទទួល',
- 'you-have-sent-gifts' => 'អ្នកបានផ្ញើ',
- 'you-have-received-tips' => 'អ្នកបានទទួល',
- 'you-have-sent-tips' => 'អ្នកបានផ្ញើ',
- 'your-points' => 'ចំណុចរបស់អ្នក',
+ 'you-have-sent-gifts' => 'អ្នកបានផ្ញើ',
+ 'you-have-received-tips' => 'អ្នកបានទទួល',
+ 'you-have-sent-tips' => 'អ្នកបានផ្ញើ',
+ 'your-points' => 'ចំណុចរបស់អ្នក',
];
diff --git a/lang/km/bot.php b/lang/km/bot.php
index fa78e8750..15fbca6ad 100644
--- a/lang/km/bot.php
+++ b/lang/km/bot.php
@@ -12,15 +12,15 @@
*/
return [
- 'about' => 'អំពី',
- 'bot' => 'Bot',
- 'bots' => 'Bots',
- 'color' => 'ពណ៌',
- 'command' => 'ពាក្យបញ្ជា',
- 'edit-bot' => 'កែសម្រួល Bot',
+ 'about' => 'អំពី',
+ 'bot' => 'Bot',
+ 'bots' => 'Bots',
+ 'color' => 'ពណ៌',
+ 'command' => 'ពាក្យបញ្ជា',
+ 'edit-bot' => 'កែសម្រួល Bot',
'emoji-code' => 'លេខកូដសញ្ញាអារម្មណ៍',
- 'help' => 'ជំនួយ',
- 'icon' => 'រូបតំណាង',
- 'info' => 'ពត៌មាន',
- 'name' => 'ឈ្មោះ',
+ 'help' => 'ជំនួយ',
+ 'icon' => 'រូបតំណាង',
+ 'info' => 'ពត៌មាន',
+ 'name' => 'ឈ្មោះ',
];
diff --git a/lang/km/bug.php b/lang/km/bug.php
index 751c7792c..de0fae1b6 100644
--- a/lang/km/bug.php
+++ b/lang/km/bug.php
@@ -12,15 +12,15 @@
*/
return [
- 'bug-report' => 'របាយការណ៍កំហុស',
+ 'bug-report' => 'របាយការណ៍កំហុស',
'bug-report-description' => 'រាយការណ៍កំហុសគេហទំព័រ',
- 'enter-description' => 'រៀបរាប់អំពីបញ្ហាឱ្យបានល្អបំផុត',
- 'enter-email' => 'សូមបញ្ចូលអ៊ីម៉ែលរបស់អ្នក',
- 'enter-title' => 'សូមជ្រើសរើសចំណងជើងត្រឹមត្រូវ',
- 'enter-username' => 'សូមបញ្ចូលឈ្មោះអ្នកប្រើរបស់អ្នក',
- 'high' => 'ខ្ពស់',
- 'low' => 'ទាប',
- 'priority' => 'អាទិភាព',
- 'priority-description' => 'ជ្រើសរើសតែខ្ពស់បំផុតប្រសិនបើកំហុសពិតជាបញ្ហាសម្រាប់ការប្រើប្រាស់គេហទំព័រ។',
- 'very-high' => 'ខ្ពស់ណាស់',
+ 'enter-description' => 'រៀបរាប់អំពីបញ្ហាឱ្យបានល្អបំផុត',
+ 'enter-email' => 'សូមបញ្ចូលអ៊ីម៉ែលរបស់អ្នក',
+ 'enter-title' => 'សូមជ្រើសរើសចំណងជើងត្រឹមត្រូវ',
+ 'enter-username' => 'សូមបញ្ចូលឈ្មោះអ្នកប្រើរបស់អ្នក',
+ 'high' => 'ខ្ពស់',
+ 'low' => 'ទាប',
+ 'priority' => 'អាទិភាព',
+ 'priority-description' => 'ជ្រើសរើសតែខ្ពស់បំផុតប្រសិនបើកំហុសពិតជាបញ្ហាសម្រាប់ការប្រើប្រាស់គេហទំព័រ។',
+ 'very-high' => 'ខ្ពស់ណាស់',
];
diff --git a/lang/km/common.php b/lang/km/common.php
index 8cdd3aa4e..a0928770b 100644
--- a/lang/km/common.php
+++ b/lang/km/common.php
@@ -12,179 +12,179 @@
*/
return [
- 'a-an-art' => '',
- 'about' => 'អំពីពួកយើង',
- 'account' => 'គណនី',
- 'achievement-title' => 'ល្អមែនទែន',
+ 'a-an-art' => '',
+ 'about' => 'អំពីពួកយើង',
+ 'account' => 'គណនី',
+ 'achievement-title' => 'ល្អមែនទែន',
'achievement-unlocked' => 'អ្នកបានដោះសោសមិទ្ធផល ": ឈ្មោះ"',
- 'active' => 'សកម្ម',
- 'active-warning' => 'ការព្រមានសកម្ម',
- 'add' => 'បន្ថែម',
- 'added' => 'បានបន្ថែម',
- 'amount' => 'ចំនួន',
- 'anonymous' => 'អនាមិក',
- 'author' => 'អ្នកនិពន្ធ',
- 'balance' => 'តុល្យភាព',
- 'blacklist' => 'បញ្ជីខ្មៅអតិថិជន',
- 'buffer' => 'សតិបណ្តោះអាសន្ន',
- 'bug' => 'រាយការណ៍កំហុស',
- 'but' => 'ប៉ុន្តែ',
- 'cancel' => 'បោះបង់',
- 'category' => 'ប្រភេទ',
- 'categories' => 'ប្រភេទ',
- 'close' => 'បិទ',
- 'comment' => 'មតិយោបល់',
- 'comments' => 'យោបល់',
- 'community' => 'សហគមន៍',
- 'contact' => 'ទំនាក់ទំនង',
- 'contact-desc' => 'សំណើទំនាក់ទំនងនេះនឹងត្រូវបានផ្ញើទៅម្ចាស់ហើយនឹងត្រលប់មកអ្នកវិញតាមដែលអាចធ្វើបាន',
- 'contact-header' => 'ជំរាបសួរ',
- 'create' => 'បង្កើត',
- 'created_at' => 'បានបង្កើតនៅ',
- 'day' => 'ថ្ងៃ',
- 'delete' => 'លុប',
- 'delete-your-comment' => 'លុបមតិយោបល់របស់អ្នក',
- 'description' => 'ការពិពណ៌នា',
- 'direction' => 'ទិស',
- 'disable' => 'បិទ',
- 'doubleup_activated' => 'របៀបផ្ទុកទ្វេដងសកលបានធ្វើឱ្យសកម្ម',
- 'download' => 'ទាញយក',
- 'edit' => 'កែប្រែ',
- 'edit-your-comment' => 'កែសម្រួលមតិយោបល់របស់អ្នក',
- 'email' => 'អ៊ីម៉ែល',
- 'email-blacklist' => 'បញ្ជីខ្មៅអ៊ីមែល',
- 'email-whitelist' => 'បញ្ជីលេខអ៊ីមែល',
+ 'active' => 'សកម្ម',
+ 'active-warning' => 'ការព្រមានសកម្ម',
+ 'add' => 'បន្ថែម',
+ 'added' => 'បានបន្ថែម',
+ 'amount' => 'ចំនួន',
+ 'anonymous' => 'អនាមិក',
+ 'author' => 'អ្នកនិពន្ធ',
+ 'balance' => 'តុល្យភាព',
+ 'blacklist' => 'បញ្ជីខ្មៅអតិថិជន',
+ 'buffer' => 'សតិបណ្តោះអាសន្ន',
+ 'bug' => 'រាយការណ៍កំហុស',
+ 'but' => 'ប៉ុន្តែ',
+ 'cancel' => 'បោះបង់',
+ 'category' => 'ប្រភេទ',
+ 'categories' => 'ប្រភេទ',
+ 'close' => 'បិទ',
+ 'comment' => 'មតិយោបល់',
+ 'comments' => 'យោបល់',
+ 'community' => 'សហគមន៍',
+ 'contact' => 'ទំនាក់ទំនង',
+ 'contact-desc' => 'សំណើទំនាក់ទំនងនេះនឹងត្រូវបានផ្ញើទៅម្ចាស់ហើយនឹងត្រលប់មកអ្នកវិញតាមដែលអាចធ្វើបាន',
+ 'contact-header' => 'ជំរាបសួរ',
+ 'create' => 'បង្កើត',
+ 'created_at' => 'បានបង្កើតនៅ',
+ 'day' => 'ថ្ងៃ',
+ 'delete' => 'លុប',
+ 'delete-your-comment' => 'លុបមតិយោបល់របស់អ្នក',
+ 'description' => 'ការពិពណ៌នា',
+ 'direction' => 'ទិស',
+ 'disable' => 'បិទ',
+ 'doubleup_activated' => 'របៀបផ្ទុកទ្វេដងសកលបានធ្វើឱ្យសកម្ម',
+ 'download' => 'ទាញយក',
+ 'edit' => 'កែប្រែ',
+ 'edit-your-comment' => 'កែសម្រួលមតិយោបល់របស់អ្នក',
+ 'email' => 'អ៊ីម៉ែល',
+ 'email-blacklist' => 'បញ្ជីខ្មៅអ៊ីមែល',
+ 'email-whitelist' => 'បញ្ជីលេខអ៊ីមែល',
'email-list-notactive' => 'ប្រព័ន្ធបញ្ជីសបញ្ជូល / បញ្ជីខ្មៅត្រូវបានធ្វើឱ្យសកម្ម',
- 'enable' => 'អនុញ្ញាត',
- 'enter' => 'បញ្ចូល',
- 'error' => 'កំហុស',
- 'everyday' => 'ជារៀងរាល់ថ្ងៃ',
- 'expired' => 'បានផុតកំណត់',
- 'extra' => 'បន្ថែម',
- 'extra-stats' => 'ស្ថានភាពបន្ថែម',
- 'faq' => 'សំនួរញឹកញាប់',
- 'files' => 'ឯកសារ',
- 'fl_token' => 'Freeleech Token',
- 'fl_tokens' => 'Freeleech Token',
- 'for' => 'សម្រាប់',
- 'forum' => 'វេទិកា',
- 'free' => 'ឥតគិតថ្លៃ',
- 'freeleech_activated' => 'របៀប Freeleech សកលបានធ្វើឱ្យសកម្ម',
- 'global' => 'សកល',
- 'group' => 'ក្រុម',
- 'groups' => 'ក្រុម',
- 'hidden' => 'លាក់',
- 'high-speeds' => 'ល្បឿនលឿន',
- 'home' => 'ផ្ទះ',
- 'hot' => 'ក្តៅ!',
- 'hour' => 'ម៉ោង',
- 'huge' => 'ធំ',
- 'info' => 'ពត៌មាន',
- 'internal' => 'ខាងក្នុង',
- 'ip' => 'IP',
- 'is-allowed' => 'ត្រូវបានអនុញ្ញាត',
- 'large' => 'ធំ',
- 'latest' => 'ចុងក្រោយ',
- 'latest-posts' => 'ប្រកាសចុងក្រោយបំផុត',
- 'latest-topics' => 'ប្រធានបទថ្មីៗ',
- 'legal' => 'ច្បាប់',
- 'legend' => 'តាង',
- 'lists' => 'បញ្ជី',
- 'lock-account' => 'ចាក់សោគណនី',
- 'logout' => 'ចាកចេញ',
- 'members' => 'សមាជិក',
- 'message' => 'សារ',
- 'minute' => 'នាទី',
- 'moderated-by' => 'សម្របសម្រួលដោយ',
- 'moderation' => 'ការសម្រុះសម្រួល',
- 'moderation-approve' => 'យល់ព្រម',
- 'moderation-postpone' => 'ពន្យាពេល',
- 'moderation-reject' => 'បដិសេធ',
- 'month' => 'ខែ',
- 'months' => 'ខែ',
- 'my' => 'របស់ខ្ញុំ',
- 'name' => 'ឈ្មោះ',
- 'navigation' => 'ការរុករក',
- 'new' => 'ថ្មី!',
- 'new-adj' => 'ថ្មី',
- 'news' => 'ព័ត៌មាន',
- 'next' => 'បន្ទាប់',
- 'no' => 'ទេ',
- 'no-comments' => 'គ្មានយោបល់នៅឡើយទេ',
- 'no-result' => 'មិនមានលទ្ធផលក្នុងមូលដ្ឋានទិន្នន័យសម្រាប់សំណួរទេ',
- 'notifications' => 'ការជូនដំណឹង',
- 'older-than' => 'ចាស់ជាង',
- 'oldest' => 'ចាស់បំផុត',
- 'openreg_activated' => 'បានបើកដំណើរការការចុះឈ្មោះបើក',
- 'order-by' => 'តម្រៀបតាម',
- 'other' => 'ផ្សេងទៀត',
- 'pages' => 'ទំព័រ',
- 'password' => 'ពាក្យសម្ងាត់',
- 'patron' => 'ក្លាយជាអ្នកដើរតួ',
- 'pending-torrents' => 'កំពុងរង់ចាំ torrent',
- 'personal' => 'ផ្ទាល់ខ្លួន',
- 'plural-suffix' => 's',
- 'port' => 'ច្រក',
- 'position' => 'ទីតាំង',
- 'posts' => 'ប្រកាស',
- 'powered-by' => 'ឧបត្ថម្ភដោយ UNIT3D',
- 'preview' => 'មើលជាមុន',
- 'previous' => 'ពីមុន',
- 'progress' => 'វឌ្ឍនភាព',
- 'publish' => 'ផ្សាយ',
- 'quantity' => 'បរិមាណ',
- 'quick-search' => 'ការស្វែងរកឆាប់រហ័ស',
- 'ratio' => 'សមាមាត្រ',
- 'reason' => 'មូលហេតុ',
- 'remove' => 'យកចេញ',
- 'report' => 'របាយការណ៍',
- 'resend' => 'ផ្ញើបន្ត',
- 'reporter' => 'អ្នកយកព័ត៌មាន',
- 'required' => 'ទាមទារ',
- 'results' => 'លទ្ធផល',
- 'rss-system' => 'ប្រព័ន្ធ RSS',
- 'rules' => 'ច្បាប់',
- 'save' => 'រក្សាទុក',
- 'search' => 'ស្វែងរក',
- 'search-results' => 'លទ្ធផលស្វែងរក',
- 'search-results-desc' => 'សូមមើលលទ្ធផលរបស់អ្នកខាងក្រោម',
- 'second' => 'ទីពីរ',
- 'select' => 'ជ្រើសរើស',
- 'sort' => 'តម្រៀប',
- 'special' => 'ពិសេស',
- 'staff' => 'បុគ្គលិក',
- 'staff-tools' => 'ឧបករណ៍បុគ្គលិក',
- 'stats' => 'ស្ថិតិ',
- 'status' => 'ស្ថានភាព',
- 'sticked' => 'បានទាត់',
- 'submit' => 'ដាក់ស្នើ',
- 'subscriptions' => 'ការជាវ',
- 'teams' => 'ក្រុម',
- 'terms' => 'ល័ក្ខខ័ណ្ឌនៃការប្រើប្រាស់',
- 'times' => 'ពេលវេលា',
- 'title' => 'ចំណងជើង',
- 'top-bountied' => 'កំពូលផ្ដល់ជូន',
- 'topics' => 'ប្រធានបទ',
- 'tracker-codes' => 'លេខកូដតាមដាន',
- 'type' => 'វាយ',
- 'type-verb' => 'វាយ',
- 'types' => 'ប្រភេទ',
- 'genre' => 'ប្រភេទ',
- 'genres' => 'ប្រភេទ',
- 'action' => 'សកម្មភាព',
- 'actions' => 'សកម្មភាព',
- 'unknown' => 'មិនស្គាល់',
+ 'enable' => 'អនុញ្ញាត',
+ 'enter' => 'បញ្ចូល',
+ 'error' => 'កំហុស',
+ 'everyday' => 'ជារៀងរាល់ថ្ងៃ',
+ 'expired' => 'បានផុតកំណត់',
+ 'extra' => 'បន្ថែម',
+ 'extra-stats' => 'ស្ថានភាពបន្ថែម',
+ 'faq' => 'សំនួរញឹកញាប់',
+ 'files' => 'ឯកសារ',
+ 'fl_token' => 'Freeleech Token',
+ 'fl_tokens' => 'Freeleech Token',
+ 'for' => 'សម្រាប់',
+ 'forum' => 'វេទិកា',
+ 'free' => 'ឥតគិតថ្លៃ',
+ 'freeleech_activated' => 'របៀប Freeleech សកលបានធ្វើឱ្យសកម្ម',
+ 'global' => 'សកល',
+ 'group' => 'ក្រុម',
+ 'groups' => 'ក្រុម',
+ 'hidden' => 'លាក់',
+ 'high-speeds' => 'ល្បឿនលឿន',
+ 'home' => 'ផ្ទះ',
+ 'hot' => 'ក្តៅ!',
+ 'hour' => 'ម៉ោង',
+ 'huge' => 'ធំ',
+ 'info' => 'ពត៌មាន',
+ 'internal' => 'ខាងក្នុង',
+ 'ip' => 'IP',
+ 'is-allowed' => 'ត្រូវបានអនុញ្ញាត',
+ 'large' => 'ធំ',
+ 'latest' => 'ចុងក្រោយ',
+ 'latest-posts' => 'ប្រកាសចុងក្រោយបំផុត',
+ 'latest-topics' => 'ប្រធានបទថ្មីៗ',
+ 'legal' => 'ច្បាប់',
+ 'legend' => 'តាង',
+ 'lists' => 'បញ្ជី',
+ 'lock-account' => 'ចាក់សោគណនី',
+ 'logout' => 'ចាកចេញ',
+ 'members' => 'សមាជិក',
+ 'message' => 'សារ',
+ 'minute' => 'នាទី',
+ 'moderated-by' => 'សម្របសម្រួលដោយ',
+ 'moderation' => 'ការសម្រុះសម្រួល',
+ 'moderation-approve' => 'យល់ព្រម',
+ 'moderation-postpone' => 'ពន្យាពេល',
+ 'moderation-reject' => 'បដិសេធ',
+ 'month' => 'ខែ',
+ 'months' => 'ខែ',
+ 'my' => 'របស់ខ្ញុំ',
+ 'name' => 'ឈ្មោះ',
+ 'navigation' => 'ការរុករក',
+ 'new' => 'ថ្មី!',
+ 'new-adj' => 'ថ្មី',
+ 'news' => 'ព័ត៌មាន',
+ 'next' => 'បន្ទាប់',
+ 'no' => 'ទេ',
+ 'no-comments' => 'គ្មានយោបល់នៅឡើយទេ',
+ 'no-result' => 'មិនមានលទ្ធផលក្នុងមូលដ្ឋានទិន្នន័យសម្រាប់សំណួរទេ',
+ 'notifications' => 'ការជូនដំណឹង',
+ 'older-than' => 'ចាស់ជាង',
+ 'oldest' => 'ចាស់បំផុត',
+ 'openreg_activated' => 'បានបើកដំណើរការការចុះឈ្មោះបើក',
+ 'order-by' => 'តម្រៀបតាម',
+ 'other' => 'ផ្សេងទៀត',
+ 'pages' => 'ទំព័រ',
+ 'password' => 'ពាក្យសម្ងាត់',
+ 'patron' => 'ក្លាយជាអ្នកដើរតួ',
+ 'pending-torrents' => 'កំពុងរង់ចាំ torrent',
+ 'personal' => 'ផ្ទាល់ខ្លួន',
+ 'plural-suffix' => 's',
+ 'port' => 'ច្រក',
+ 'position' => 'ទីតាំង',
+ 'posts' => 'ប្រកាស',
+ 'powered-by' => 'ឧបត្ថម្ភដោយ UNIT3D',
+ 'preview' => 'មើលជាមុន',
+ 'previous' => 'ពីមុន',
+ 'progress' => 'វឌ្ឍនភាព',
+ 'publish' => 'ផ្សាយ',
+ 'quantity' => 'បរិមាណ',
+ 'quick-search' => 'ការស្វែងរកឆាប់រហ័ស',
+ 'ratio' => 'សមាមាត្រ',
+ 'reason' => 'មូលហេតុ',
+ 'remove' => 'យកចេញ',
+ 'report' => 'របាយការណ៍',
+ 'resend' => 'ផ្ញើបន្ត',
+ 'reporter' => 'អ្នកយកព័ត៌មាន',
+ 'required' => 'ទាមទារ',
+ 'results' => 'លទ្ធផល',
+ 'rss-system' => 'ប្រព័ន្ធ RSS',
+ 'rules' => 'ច្បាប់',
+ 'save' => 'រក្សាទុក',
+ 'search' => 'ស្វែងរក',
+ 'search-results' => 'លទ្ធផលស្វែងរក',
+ 'search-results-desc' => 'សូមមើលលទ្ធផលរបស់អ្នកខាងក្រោម',
+ 'second' => 'ទីពីរ',
+ 'select' => 'ជ្រើសរើស',
+ 'sort' => 'តម្រៀប',
+ 'special' => 'ពិសេស',
+ 'staff' => 'បុគ្គលិក',
+ 'staff-tools' => 'ឧបករណ៍បុគ្គលិក',
+ 'stats' => 'ស្ថិតិ',
+ 'status' => 'ស្ថានភាព',
+ 'sticked' => 'បានទាត់',
+ 'submit' => 'ដាក់ស្នើ',
+ 'subscriptions' => 'ការជាវ',
+ 'teams' => 'ក្រុម',
+ 'terms' => 'ល័ក្ខខ័ណ្ឌនៃការប្រើប្រាស់',
+ 'times' => 'ពេលវេលា',
+ 'title' => 'ចំណងជើង',
+ 'top-bountied' => 'កំពូលផ្ដល់ជូន',
+ 'topics' => 'ប្រធានបទ',
+ 'tracker-codes' => 'លេខកូដតាមដាន',
+ 'type' => 'វាយ',
+ 'type-verb' => 'វាយ',
+ 'types' => 'ប្រភេទ',
+ 'genre' => 'ប្រភេទ',
+ 'genres' => 'ប្រភេទ',
+ 'action' => 'សកម្មភាព',
+ 'actions' => 'សកម្មភាព',
+ 'unknown' => 'មិនស្គាល់',
'unlocked-achievement' => 'អ្នកបានដោះសោ: សមិទ្ធផលសមិទ្ធផល',
- 'upload' => 'ផ្ទុកឡើង',
- 'upload-guide' => 'មគ្គុទេសក៍ផ្ទុក',
- 'user' => 'អ្នកប្រើ',
- 'username' => 'ឈ្មោះអ្នកប្រើប្រាស់',
- 'users' => 'អ្នកប្រើ',
- 'view' => 'មើល',
- 'view-all' => 'បង្ហាញទាំងអស់',
- 'warnings' => 'ការព្រមាន',
- 'year' => 'ឆ្នាំ',
- 'yes' => 'បាទ',
- 'your' => 'របស់អ្នក',
- 'your-comment' => 'មតិយោបល់របស់អ្នក',
+ 'upload' => 'ផ្ទុកឡើង',
+ 'upload-guide' => 'មគ្គុទេសក៍ផ្ទុក',
+ 'user' => 'អ្នកប្រើ',
+ 'username' => 'ឈ្មោះអ្នកប្រើប្រាស់',
+ 'users' => 'អ្នកប្រើ',
+ 'view' => 'មើល',
+ 'view-all' => 'បង្ហាញទាំងអស់',
+ 'warnings' => 'ការព្រមាន',
+ 'year' => 'ឆ្នាំ',
+ 'yes' => 'បាទ',
+ 'your' => 'របស់អ្នក',
+ 'your-comment' => 'មតិយោបល់របស់អ្នក',
];
diff --git a/lang/km/email.php b/lang/km/email.php
index 81e64b422..c23f95ee2 100644
--- a/lang/km/email.php
+++ b/lang/km/email.php
@@ -12,46 +12,46 @@
*/
return [
- 'activate-account' => 'ធ្វើសកម្មភាពគណនី',
- 'ban-reason' => 'មូលហេតុ',
- 'banned-footer' => 'អ្វីដែលអ្នកទទួលបានសម្រាប់ការមិនធ្វើតាមច្បាប់',
- 'banned-header' => 'អ្នកត្រូវបានហាមឃាត់',
- 'bug-description' => 'បញ្ហា',
- 'bug-footer' => 'ជួសជុលថាលាមក',
- 'bug-header' => 'របាយការណ៍កំហុសថ្មីពី',
- 'bug-priority' => 'អាទិភាព',
- 'bug-title' => 'ចំណងជើងកំហុស',
- 'contact-header' => 'សំបុត្រទំនាក់ទំនងថ្មីពី',
- 'contact-message' => 'សារ',
- 'contact-name' => 'ឈ្មោះ',
+ 'activate-account' => 'ធ្វើសកម្មភាពគណនី',
+ 'ban-reason' => 'មូលហេតុ',
+ 'banned-footer' => 'អ្វីដែលអ្នកទទួលបានសម្រាប់ការមិនធ្វើតាមច្បាប់',
+ 'banned-header' => 'អ្នកត្រូវបានហាមឃាត់',
+ 'bug-description' => 'បញ្ហា',
+ 'bug-footer' => 'ជួសជុលថាលាមក',
+ 'bug-header' => 'របាយការណ៍កំហុសថ្មីពី',
+ 'bug-priority' => 'អាទិភាព',
+ 'bug-title' => 'ចំណងជើងកំហុស',
+ 'contact-header' => 'សំបុត្រទំនាក់ទំនងថ្មីពី',
+ 'contact-message' => 'សារ',
+ 'contact-name' => 'ឈ្មោះ',
'fail-login-greeting' => 'ការចូលគណនីបានបរាជ័យ!',
- 'fail-login-line1' => 'ការចូលមិនបានសម្រេចត្រូវបានរកឃើញសម្រាប់គណនីរបស់អ្នក។',
- 'fail-login-line2' => 'សំណើនេះមានប្រភពមកពី: ip (: host) នៅ: ពេលវេលា',
- 'fail-login-subject' => 'បានបរាជ័យក្នុងការជូនដំណឹងចូល',
- 'footer-link' => 'ប្រសិនបើអ្នកមានបញ្ហាក្នុងការចុចប៊ូតុង: actionText ចម្លងនិងបិទភ្ជាប់ URL ខាងក្រោមទៅក្នុងកម្មវិធីរុករកបណ្ដាញរបស់អ្នក:',
- 'invite-header' => 'លិខិតអញ្ជើញទៅ',
- 'invite-invited' => 'អ្នកត្រូវបានអញ្ជើញឱ្យចូលរួម',
- 'invite-message' => 'សារ',
- 'invite-signup' => 'ចុះឈ្មោះឥឡូវនេះ',
- 'newreply-header' => 'មានការឆ្លើយតបថ្មីនៅក្នុងប្រធានបទរបស់អ្នក',
- 'newreply-message' => 'សារ',
- 'newreply-replied' => 'បានឆ្លើយតបទៅនឹងប្រធានបទរបស់អ្នក',
- 'newreply-view' => 'មើលវាឥឡូវនេះ',
- 'no-email-found' => 'យើងមិនអាចរកឃើញអ៊ីមែលនេះនៅក្នុងប្រព័ន្ធរបស់យើង!',
- 'register-code' => 'ដើម្បីបញ្ចប់សកម្មភាពគណនីសូមចុចប៊ូតុងខាងក្រោម',
- 'register-footer' => 'ប្រសិនបើប៊ូតុងខាងលើមិនដំណើរការសូមចំលងនិងបិទភ្ជាប់ URL ទៅក្នុងរបាអាសយដ្ឋានរបស់អ្នក',
- 'register-header' => 'សួស្ដី! អរគុណសម្រាប់ការចុះឈ្មោះ',
- 'report-comment' => 'មតិយោបល់',
- 'report-email' => 'អ៊ីម៉ែល',
- 'report-header' => 'សួស្តីរដ្ឋបាលតំណត្រូវបានគេរាយការណ៍',
- 'report-link' => 'តំណ',
- 'report-link-hash' => 'តំណពិតប្រាកដ',
- 'thanks' => 'សូមអរគុណសម្រាប់ការប្រើប្រាស់',
- 'unban-footer' => 'ស្វាគមន៏ការត្រលប់មកវិញ!',
- 'unban-header' => 'អ្នកមិនត្រូវបានហាមឃាត់',
- 'unban-reason' => 'មូលហេតុ',
- 'username-reminder' => 'ពេលនេះអ្នកបានផ្ញើសំណើសម្រាប់ឈ្មោះអ្នកប្រើរបស់អ្នកនៅលើកម្មវិធីរបស់យើង។ ឈ្មោះអ្នកប្រើរបស់អ្នក',
- 'username-sent' => 'ឈ្មោះអ្នកប្រើរបស់អ្នកត្រូវបានផ្ញើទៅអាសយដ្ឋានអ៊ីមែលរបស់អ្នក!',
- 'disabled-header' => 'គណនីរបស់អ្នកត្រូវបានបិទ',
- 'pruned-header' => 'គណនីរបស់អ្នកបានត្រូវកាត់ចេញ',
+ 'fail-login-line1' => 'ការចូលមិនបានសម្រេចត្រូវបានរកឃើញសម្រាប់គណនីរបស់អ្នក។',
+ 'fail-login-line2' => 'សំណើនេះមានប្រភពមកពី: ip (: host) នៅ: ពេលវេលា',
+ 'fail-login-subject' => 'បានបរាជ័យក្នុងការជូនដំណឹងចូល',
+ 'footer-link' => 'ប្រសិនបើអ្នកមានបញ្ហាក្នុងការចុចប៊ូតុង: actionText ចម្លងនិងបិទភ្ជាប់ URL ខាងក្រោមទៅក្នុងកម្មវិធីរុករកបណ្ដាញរបស់អ្នក:',
+ 'invite-header' => 'លិខិតអញ្ជើញទៅ',
+ 'invite-invited' => 'អ្នកត្រូវបានអញ្ជើញឱ្យចូលរួម',
+ 'invite-message' => 'សារ',
+ 'invite-signup' => 'ចុះឈ្មោះឥឡូវនេះ',
+ 'newreply-header' => 'មានការឆ្លើយតបថ្មីនៅក្នុងប្រធានបទរបស់អ្នក',
+ 'newreply-message' => 'សារ',
+ 'newreply-replied' => 'បានឆ្លើយតបទៅនឹងប្រធានបទរបស់អ្នក',
+ 'newreply-view' => 'មើលវាឥឡូវនេះ',
+ 'no-email-found' => 'យើងមិនអាចរកឃើញអ៊ីមែលនេះនៅក្នុងប្រព័ន្ធរបស់យើង!',
+ 'register-code' => 'ដើម្បីបញ្ចប់សកម្មភាពគណនីសូមចុចប៊ូតុងខាងក្រោម',
+ 'register-footer' => 'ប្រសិនបើប៊ូតុងខាងលើមិនដំណើរការសូមចំលងនិងបិទភ្ជាប់ URL ទៅក្នុងរបាអាសយដ្ឋានរបស់អ្នក',
+ 'register-header' => 'សួស្ដី! អរគុណសម្រាប់ការចុះឈ្មោះ',
+ 'report-comment' => 'មតិយោបល់',
+ 'report-email' => 'អ៊ីម៉ែល',
+ 'report-header' => 'សួស្តីរដ្ឋបាលតំណត្រូវបានគេរាយការណ៍',
+ 'report-link' => 'តំណ',
+ 'report-link-hash' => 'តំណពិតប្រាកដ',
+ 'thanks' => 'សូមអរគុណសម្រាប់ការប្រើប្រាស់',
+ 'unban-footer' => 'ស្វាគមន៏ការត្រលប់មកវិញ!',
+ 'unban-header' => 'អ្នកមិនត្រូវបានហាមឃាត់',
+ 'unban-reason' => 'មូលហេតុ',
+ 'username-reminder' => 'ពេលនេះអ្នកបានផ្ញើសំណើសម្រាប់ឈ្មោះអ្នកប្រើរបស់អ្នកនៅលើកម្មវិធីរបស់យើង។ ឈ្មោះអ្នកប្រើរបស់អ្នក',
+ 'username-sent' => 'ឈ្មោះអ្នកប្រើរបស់អ្នកត្រូវបានផ្ញើទៅអាសយដ្ឋានអ៊ីមែលរបស់អ្នក!',
+ 'disabled-header' => 'គណនីរបស់អ្នកត្រូវបានបិទ',
+ 'pruned-header' => 'គណនីរបស់អ្នកបានត្រូវកាត់ចេញ',
];
diff --git a/lang/km/forum.php b/lang/km/forum.php
index a483e7599..eaecd0cae 100644
--- a/lang/km/forum.php
+++ b/lang/km/forum.php
@@ -12,63 +12,63 @@
*/
return [
- 'action' => 'សកម្មភាព',
- 'activity' => 'សកម្មភាព',
- 'approved' => 'បានអនុម័ត',
- 'author' => 'អ្នកនិពន្ធ',
- 'bug' => 'កំហុស',
- 'category-quick-search' => 'ឈ្មោះប្រធានបទស្វែងរករហ័ស (ក្នុងប្រភេទ)',
- 'close-topic' => 'ចាក់សោប្រធានបទ',
- 'closed' => 'បានបិទ',
- 'create-new-topic' => 'បង្កើតប្រធានបទថ្មី',
- 'created' => 'បានបង្កើត',
- 'current' => 'នាពេលបច្ចុប្បន្ន',
- 'delete-topic' => 'លុបប្រធានបទនេះ',
- 'denied' => 'បដិសេធ',
- 'dislike-post' => 'មិនចូលចិត្តភ្នំពេញប៉ុស្តិ៍នេះ',
- 'display-forum' => 'បង្ហាញប្រធានបទនៅក្នុង',
- 'edit-post' => 'កែសម្រួលប្រកាស',
- 'edit-topic' => 'កែប្រធានបទ',
- 'forum' => 'វេទិកា',
- 'forums' => 'វេទិកា',
- 'implemented' => 'បានអនុវត្ត',
- 'in' => 'ចូល',
- 'invalid' => 'មិនត្រឹមត្រូវ',
- 'label' => 'ស្លាកសញ្ញា',
- 'label-system' => 'ប្រព័ន្ធស្លាក',
- 'last-message' => 'សារចុងក្រោយ',
- 'last-post-info' => 'ព័ត៌មានចុងក្រោយបំផុត',
- 'latest' => 'ចុងក្រោយ',
- 'like-post' => 'ចូលចិត្តអត្ថបទនេះ',
- 'meta-category' => 'បញ្ជីវេទិកាក្នុងប្រភេទ',
- 'moderation' => 'ការសម្រុះសម្រួល',
- 'name' => 'ឈ្មោះ',
- 'not-connected' => 'អ្នកត្រូវតែភ្ជាប់',
- 'not-subscribed' => 'មិនបានជាវ',
- 'open' => 'បើក',
- 'open-topic' => 'បើកប្រធានបទនេះ',
- 'permalink' => 'Permalink',
- 'pin' => 'ពិន',
- 'post' => 'ភ្នំពេញប៉ុស្តិ៍',
- 'post-quick-search' => 'ស្វែងរករហ័សស្វែងរករាងកាយ',
- 'posts' => 'ប្រកាស',
- 'quote' => 'សម្រង់',
- 'read-topic' => 'អានប្រធានបទ',
- 'replies' => 'ឆ្លើយតប',
- 'send-new-topic' => 'រក្សាទុកប្រធានបទនេះ',
- 'solved' => 'បានដោះស្រាយ',
- 'state' => 'រដ្ឋ',
- 'stats' => 'ស្ថិតិ',
- 'subscribed' => 'បានជាវ',
+ 'action' => 'សកម្មភាព',
+ 'activity' => 'សកម្មភាព',
+ 'approved' => 'បានអនុម័ត',
+ 'author' => 'អ្នកនិពន្ធ',
+ 'bug' => 'កំហុស',
+ 'category-quick-search' => 'ឈ្មោះប្រធានបទស្វែងរករហ័ស (ក្នុងប្រភេទ)',
+ 'close-topic' => 'ចាក់សោប្រធានបទ',
+ 'closed' => 'បានបិទ',
+ 'create-new-topic' => 'បង្កើតប្រធានបទថ្មី',
+ 'created' => 'បានបង្កើត',
+ 'current' => 'នាពេលបច្ចុប្បន្ន',
+ 'delete-topic' => 'លុបប្រធានបទនេះ',
+ 'denied' => 'បដិសេធ',
+ 'dislike-post' => 'មិនចូលចិត្តភ្នំពេញប៉ុស្តិ៍នេះ',
+ 'display-forum' => 'បង្ហាញប្រធានបទនៅក្នុង',
+ 'edit-post' => 'កែសម្រួលប្រកាស',
+ 'edit-topic' => 'កែប្រធានបទ',
+ 'forum' => 'វេទិកា',
+ 'forums' => 'វេទិកា',
+ 'implemented' => 'បានអនុវត្ត',
+ 'in' => 'ចូល',
+ 'invalid' => 'មិនត្រឹមត្រូវ',
+ 'label' => 'ស្លាកសញ្ញា',
+ 'label-system' => 'ប្រព័ន្ធស្លាក',
+ 'last-message' => 'សារចុងក្រោយ',
+ 'last-post-info' => 'ព័ត៌មានចុងក្រោយបំផុត',
+ 'latest' => 'ចុងក្រោយ',
+ 'like-post' => 'ចូលចិត្តអត្ថបទនេះ',
+ 'meta-category' => 'បញ្ជីវេទិកាក្នុងប្រភេទ',
+ 'moderation' => 'ការសម្រុះសម្រួល',
+ 'name' => 'ឈ្មោះ',
+ 'not-connected' => 'អ្នកត្រូវតែភ្ជាប់',
+ 'not-subscribed' => 'មិនបានជាវ',
+ 'open' => 'បើក',
+ 'open-topic' => 'បើកប្រធានបទនេះ',
+ 'permalink' => 'Permalink',
+ 'pin' => 'ពិន',
+ 'post' => 'ភ្នំពេញប៉ុស្តិ៍',
+ 'post-quick-search' => 'ស្វែងរករហ័សស្វែងរករាងកាយ',
+ 'posts' => 'ប្រកាស',
+ 'quote' => 'សម្រង់',
+ 'read-topic' => 'អានប្រធានបទ',
+ 'replies' => 'ឆ្លើយតប',
+ 'send-new-topic' => 'រក្សាទុកប្រធានបទនេះ',
+ 'solved' => 'បានដោះស្រាយ',
+ 'state' => 'រដ្ឋ',
+ 'stats' => 'ស្ថិតិ',
+ 'subscribed' => 'បានជាវ',
'subscription-quick-search' => 'ឈ្មោះប្រធានបទស្វែងរករហ័ស (នៅក្នុងការជាវ)',
- 'suggestion' => 'ការផ្តល់យោបល់',
- 'topic' => 'ប្រធានបទ',
- 'topic-closed' => 'ប្រធានបទនេះត្រូវបានបិទ',
- 'topic-name' => 'ឈ្មោះប្រធានបទ',
- 'topic-quick-search' => 'ឈ្មោះប្រធានបទស្វែងរករហ័ស',
- 'topic-title' => 'ចំណងជើងនៃប្រធានបទនេះ',
- 'topics' => 'ប្រធានបទ',
- 'unpin' => 'មិនភ្ជាប់',
- 'view-all' => 'មើលប្រធានបទទាំងអស់',
- 'views' => 'ទស្សនៈ',
+ 'suggestion' => 'ការផ្តល់យោបល់',
+ 'topic' => 'ប្រធានបទ',
+ 'topic-closed' => 'ប្រធានបទនេះត្រូវបានបិទ',
+ 'topic-name' => 'ឈ្មោះប្រធានបទ',
+ 'topic-quick-search' => 'ឈ្មោះប្រធានបទស្វែងរករហ័ស',
+ 'topic-title' => 'ចំណងជើងនៃប្រធានបទនេះ',
+ 'topics' => 'ប្រធានបទ',
+ 'unpin' => 'មិនភ្ជាប់',
+ 'view-all' => 'មើលប្រធានបទទាំងអស់',
+ 'views' => 'ទស្សនៈ',
];
diff --git a/lang/km/graveyard.php b/lang/km/graveyard.php
index 4838ebb0b..391a2e64c 100644
--- a/lang/km/graveyard.php
+++ b/lang/km/graveyard.php
@@ -12,15 +12,15 @@
*/
return [
- 'dead' => 'ស្លាប់',
- 'graveyard' => 'កប់ខ្មោច',
- 'guidelines' => 'គោលការណ៍ណែនាំ',
+ 'dead' => 'ស្លាប់',
+ 'graveyard' => 'កប់ខ្មោច',
+ 'guidelines' => 'គោលការណ៍ណែនាំ',
'guidelines-content' => '1) អ្នកមិនអាចបង្កើតការផ្ទុកឡើងរបស់អ្នកឡើងវិញបានទេ។
2) មិនត្រូវធ្វើអ្វីដែលអ្នកមិនអាចធ្វើបានទេ។',
- 'howto' => 'Heres Rule',
- 'howto-desc1' => 'អ្នកត្រូវមានពូជ : ដាក់ឈ្មោះ រយៈពេល 30 ថ្ងៃ ដើម្បីទទួលបានភាពជោគជ័យ។ នៅក្នុងករណីដែលពេល seedtime បច្ចុប្បន្នរបស់អ្នក',
- 'howto-desc2' => 'អ្នកនឹងទទួលបានរង្វាន់',
- 'howto-hits' => 'ចុច',
- 'pending' => 'កំពុងរង់ចាំ',
- 'resurrect' => 'រស់ឡើងវិញ',
- 'reward' => 'និមិត្តសញ្ញា Freeleech',
+ 'howto' => 'Heres Rule',
+ 'howto-desc1' => 'អ្នកត្រូវមានពូជ : ដាក់ឈ្មោះ រយៈពេល 30 ថ្ងៃ ដើម្បីទទួលបានភាពជោគជ័យ។ នៅក្នុងករណីដែលពេល seedtime បច្ចុប្បន្នរបស់អ្នក',
+ 'howto-desc2' => 'អ្នកនឹងទទួលបានរង្វាន់',
+ 'howto-hits' => 'ចុច',
+ 'pending' => 'កំពុងរង់ចាំ',
+ 'resurrect' => 'រស់ឡើងវិញ',
+ 'reward' => 'និមិត្តសញ្ញា Freeleech',
];
diff --git a/lang/km/notification.php b/lang/km/notification.php
index 942cf1572..1297b8dbe 100644
--- a/lang/km/notification.php
+++ b/lang/km/notification.php
@@ -12,14 +12,14 @@
*/
return [
- 'date' => 'កាលបរិច្ឆេទ',
- 'delete' => 'លុប',
- 'delete-all' => 'លុបការជូនដំណឹងទាំងអស់',
- 'mark-all-read' => 'សម្គាល់ទាំងអស់ថាអាន',
- 'mark-read' => 'សម្គាល់ថាអាន',
- 'message' => 'សារ',
+ 'date' => 'កាលបរិច្ឆេទ',
+ 'delete' => 'លុប',
+ 'delete-all' => 'លុបការជូនដំណឹងទាំងអស់',
+ 'mark-all-read' => 'សម្គាល់ទាំងអស់ថាអាន',
+ 'mark-read' => 'សម្គាល់ថាអាន',
+ 'message' => 'សារ',
'no-notifications' => 'គ្មានការជូនដំណឹងទេ',
- 'notifications' => 'ការជូនដំណឹង',
- 'read' => 'អាន',
- 'title' => 'ចំណងជើង',
+ 'notifications' => 'ការជូនដំណឹង',
+ 'read' => 'អាន',
+ 'title' => 'ចំណងជើង',
];
diff --git a/lang/km/page.php b/lang/km/page.php
index 518bba353..12b2aa6d2 100644
--- a/lang/km/page.php
+++ b/lang/km/page.php
@@ -12,28 +12,28 @@
*/
return [
- 'aboutus-advantage' => 'អត្ថប្រយោជន៍',
- 'aboutus-advantage1' => 'យើងបានជួបប្រទះសមាជិកនិងបុគ្គលិកដែលមានភាពល្បីល្បាញនៅក្នុងពិភព HD / អូឌីយ៉ូនិងការគាំទ្រផ្នែកបច្ចេកទេស។',
- 'aboutus-advantage2' => 'ជាមួយនឹងចំណង់ចំណូលចិត្តទូលំទូលាយរបស់យើងសម្រាប់ខ្សែភាពយន្តនិងកម្មវិធីទូរទស្សន៍យើងក៏ផ្តល់ជូននូវជម្រើសដ៏ល្អបំផុតមួយនៃអ្វីដែលភាគច្រើនមិនចឹង - FANRES! សូមអរគុណច្រើន ដល់ អ្នក នាំយកមាតិការបស់យើង។',
- 'aboutus-advantage3' => 'ខណៈពេលដែលយើងទទួលយកការបរិច្ចាគដើម្បីរក្សាទីតាំងនិងដំណើរការវានឹងមិនមាន PMs ឬបដានៅលើវេបសាយទេ។ មិនសុំអង្វរពីយើងទេ។',
- 'aboutus-advantage4' => 'សហគមន៍របស់យើងស្ថិតក្នុងលំដាប់ទី 2 គ្មាននរណាម្នាក់ទេតាំងពីវ័យក្មេង។ រវាងបុគ្គលិកនិងមូលដ្ឋានអ្នកប្រើរបស់យើងតែងតែនៅទីនេះដើម្បីជួយ។ មានការងប់ងល់អំពីការធ្វើឱ្យប្រាកដថាបទពិសោធរបស់អ្នកនៅលើ: ចំណងជើងគឺគ្មានអ្វីខ្លីនៃការអស្ចារ្យ។',
- 'aboutus-advantage5' => 'សេវាកម្មរបស់យើងត្រូវបានប្រើជារៀងរាល់ថ្ងៃដោយមនុស្សជាច្រើននៅទូទាំងពិភពលោក។ Weve បានបង្ហាញថាយើងយកចិត្តទុកដាក់លើមុខងារនិងសុវត្ថិភាពនៃមូលដ្ឋានកូដរបស់យើងហើយវាអាចទុកចិត្តនិងពឹងផ្អែកលើ។ អ្នកអភិវឌ្ឍន៍របស់យើងធ្វើការជារៀងរាល់ថ្ងៃដើម្បីផ្តល់នូវ codebase nex-gen ពិតប្រាកដ។',
- 'aboutus-header' => 'សួស្តី',
- 'aboutus-rules' => 'អ្វីដែលយើងត្រូវការពីអ្នក',
- 'aboutus-rules1' => 'ធ្វើជាសមាជិកសកម្មនៃសហគមន៍! នេះមានន័យថាចូលរួមក្នុងការសន្ទនាប្រកបដោយប្រសិទ្ធភាពបន្ថែមមាតិកាបានអនុម័តនិងជួយអ្នកប្រើផ្សេងទៀតបើអ្នកអាច។',
- 'aboutus-rules2' => 'ដើម្បីអានច្បាប់ពេញលេញនិងសូមគោរពពួកគេ!',
- 'aboutus-rules3' => 'ធ្វើការស្នើ! យើងកំពុងប្រឹងប្រែងដើម្បីធ្វើឱ្យចំណងជើងកាន់តែប្រសើរឡើងជារៀងរាល់ថ្ងៃ។ យើងមិននិយាយថារាល់សំណូមពរនឹងត្រូវបានប្រើទេប៉ុន្តែវាមិនដែលឈឺចាប់ដើម្បីមើលគំនិតថ្មីទេ។',
- 'aboutus-welcome' => 'អនុញ្ញាតឱ្យនិយាយអំពី',
- 'aboutus-welcome-desc' => ': ចំណងជើងគឺជាមូលដ្ឋានទិន្នន័យខ្សែភាពយន្ត / ទូរទស្សន៍ / ហ្វាន ដែលបង្កើតឡើងដោយសហគមន៍ ។ ទិន្នន័យទាំងអស់ត្រូវបានបន្ថែមដោយសហគមន៍ដ៏អស្ចារ្យរបស់យើងតាំងពីឆ្នាំ 2017 ។ ចំណងជើង ផ្តោតសំខាន់ គឺនៅលើមាតិកា HD មូលដ្ឋានអ្នកប្រើសកម្មមូលដ្ឋានគ្រឹះលេខកូដសុវត្ថិភាព / សុវត្ថិភាពនិងក្រុមបុគ្គលិកដែលមានប្រយោជន៍និងរួសរាយ។',
- 'blacklist-browsers' => 'កម្មវិធីរុករក',
- 'blacklist-btclient' => 'កម្មវិធី BitTorrent',
- 'blacklist-clients' => 'អតិថិជន',
- 'blacklist-desc' => 'កម្មវិធីរុករកនិង Bittorrent អតិថិជនត្រូវបានហាមឃាត់ / ហាមឃាត់ពី Annoucing ទៅ: ចំណងជើង',
- 'blacklist-webbrowser' => 'កម្មវិធីរុករកបណ្ដាញ',
+ 'aboutus-advantage' => 'អត្ថប្រយោជន៍',
+ 'aboutus-advantage1' => 'យើងបានជួបប្រទះសមាជិកនិងបុគ្គលិកដែលមានភាពល្បីល្បាញនៅក្នុងពិភព HD / អូឌីយ៉ូនិងការគាំទ្រផ្នែកបច្ចេកទេស។',
+ 'aboutus-advantage2' => 'ជាមួយនឹងចំណង់ចំណូលចិត្តទូលំទូលាយរបស់យើងសម្រាប់ខ្សែភាពយន្តនិងកម្មវិធីទូរទស្សន៍យើងក៏ផ្តល់ជូននូវជម្រើសដ៏ល្អបំផុតមួយនៃអ្វីដែលភាគច្រើនមិនចឹង - FANRES! សូមអរគុណច្រើន ដល់ អ្នក នាំយកមាតិការបស់យើង។',
+ 'aboutus-advantage3' => 'ខណៈពេលដែលយើងទទួលយកការបរិច្ចាគដើម្បីរក្សាទីតាំងនិងដំណើរការវានឹងមិនមាន PMs ឬបដានៅលើវេបសាយទេ។ មិនសុំអង្វរពីយើងទេ។',
+ 'aboutus-advantage4' => 'សហគមន៍របស់យើងស្ថិតក្នុងលំដាប់ទី 2 គ្មាននរណាម្នាក់ទេតាំងពីវ័យក្មេង។ រវាងបុគ្គលិកនិងមូលដ្ឋានអ្នកប្រើរបស់យើងតែងតែនៅទីនេះដើម្បីជួយ។ មានការងប់ងល់អំពីការធ្វើឱ្យប្រាកដថាបទពិសោធរបស់អ្នកនៅលើ: ចំណងជើងគឺគ្មានអ្វីខ្លីនៃការអស្ចារ្យ។',
+ 'aboutus-advantage5' => 'សេវាកម្មរបស់យើងត្រូវបានប្រើជារៀងរាល់ថ្ងៃដោយមនុស្សជាច្រើននៅទូទាំងពិភពលោក។ Weve បានបង្ហាញថាយើងយកចិត្តទុកដាក់លើមុខងារនិងសុវត្ថិភាពនៃមូលដ្ឋានកូដរបស់យើងហើយវាអាចទុកចិត្តនិងពឹងផ្អែកលើ។ អ្នកអភិវឌ្ឍន៍របស់យើងធ្វើការជារៀងរាល់ថ្ងៃដើម្បីផ្តល់នូវ codebase nex-gen ពិតប្រាកដ។',
+ 'aboutus-header' => 'សួស្តី',
+ 'aboutus-rules' => 'អ្វីដែលយើងត្រូវការពីអ្នក',
+ 'aboutus-rules1' => 'ធ្វើជាសមាជិកសកម្មនៃសហគមន៍! នេះមានន័យថាចូលរួមក្នុងការសន្ទនាប្រកបដោយប្រសិទ្ធភាពបន្ថែមមាតិកាបានអនុម័តនិងជួយអ្នកប្រើផ្សេងទៀតបើអ្នកអាច។',
+ 'aboutus-rules2' => 'ដើម្បីអានច្បាប់ពេញលេញនិងសូមគោរពពួកគេ!',
+ 'aboutus-rules3' => 'ធ្វើការស្នើ! យើងកំពុងប្រឹងប្រែងដើម្បីធ្វើឱ្យចំណងជើងកាន់តែប្រសើរឡើងជារៀងរាល់ថ្ងៃ។ យើងមិននិយាយថារាល់សំណូមពរនឹងត្រូវបានប្រើទេប៉ុន្តែវាមិនដែលឈឺចាប់ដើម្បីមើលគំនិតថ្មីទេ។',
+ 'aboutus-welcome' => 'អនុញ្ញាតឱ្យនិយាយអំពី',
+ 'aboutus-welcome-desc' => ': ចំណងជើងគឺជាមូលដ្ឋានទិន្នន័យខ្សែភាពយន្ត / ទូរទស្សន៍ / ហ្វាន ដែលបង្កើតឡើងដោយសហគមន៍ ។ ទិន្នន័យទាំងអស់ត្រូវបានបន្ថែមដោយសហគមន៍ដ៏អស្ចារ្យរបស់យើងតាំងពីឆ្នាំ 2017 ។ ចំណងជើង ផ្តោតសំខាន់ គឺនៅលើមាតិកា HD មូលដ្ឋានអ្នកប្រើសកម្មមូលដ្ឋានគ្រឹះលេខកូដសុវត្ថិភាព / សុវត្ថិភាពនិងក្រុមបុគ្គលិកដែលមានប្រយោជន៍និងរួសរាយ។',
+ 'blacklist-browsers' => 'កម្មវិធីរុករក',
+ 'blacklist-btclient' => 'កម្មវិធី BitTorrent',
+ 'blacklist-clients' => 'អតិថិជន',
+ 'blacklist-desc' => 'កម្មវិធីរុករកនិង Bittorrent អតិថិជនត្រូវបានហាមឃាត់ / ហាមឃាត់ពី Annoucing ទៅ: ចំណងជើង',
+ 'blacklist-webbrowser' => 'កម្មវិធីរុករកបណ្ដាញ',
'blacklist-emaildomain' => 'ប្លុកដែន',
- 'email-blacklist-desc' => 'ដែនអ៊ីម៉ែលខាងក្រោមត្រូវបានហាមឃាត់មិនឱ្យប្រើ។ អ្នកមិនអាចចុះឈ្មោះរឺផ្ញើលិខិតអញ្ជើញចូលរួមដូចខាងក្រោម។',
- 'email-whitelist-desc' => 'ដែនអ៊ីម៉ែលខាងក្រោមគឺជាដែនអ៊ីមែលតែប៉ុណ្ណោះដែលត្រូវបានអនុញ្ញាត។ អ្នកអាចចុះឈ្មោះឬផ្ញើការអញ្ជើញដោយប្រើដូចខាងក្រោម។',
- 'staff-group' => 'ក្រុម',
- 'staff-title' => 'ចំណងជើង',
+ 'email-blacklist-desc' => 'ដែនអ៊ីម៉ែលខាងក្រោមត្រូវបានហាមឃាត់មិនឱ្យប្រើ។ អ្នកមិនអាចចុះឈ្មោះរឺផ្ញើលិខិតអញ្ជើញចូលរួមដូចខាងក្រោម។',
+ 'email-whitelist-desc' => 'ដែនអ៊ីម៉ែលខាងក្រោមគឺជាដែនអ៊ីមែលតែប៉ុណ្ណោះដែលត្រូវបានអនុញ្ញាត។ អ្នកអាចចុះឈ្មោះឬផ្ញើការអញ្ជើញដោយប្រើដូចខាងក្រោម។',
+ 'staff-group' => 'ក្រុម',
+ 'staff-title' => 'ចំណងជើង',
'whitelist-emaildomain' => 'ដែនទុកចិត្ត',
];
diff --git a/lang/km/pagination.php b/lang/km/pagination.php
index 4f8953fb8..1eb1a3460 100644
--- a/lang/km/pagination.php
+++ b/lang/km/pagination.php
@@ -24,5 +24,5 @@ return [
*/
'previous' => '« មុន',
- 'next' => 'បន្ទាប់ »',
+ 'next' => 'បន្ទាប់ »',
];
diff --git a/lang/km/passwords.php b/lang/km/passwords.php
index d7e0d80a3..30dac0427 100644
--- a/lang/km/passwords.php
+++ b/lang/km/passwords.php
@@ -24,8 +24,8 @@ return [
*/
'password' => 'ពាក្យសម្ងាត់ត្រូវតែមានយ៉ាងហោចណាស់ប្រាំមួយតួអក្សរនិងផ្គូផ្គងជាមួយការបញ្ជាក់។',
- 'reset' => 'Password has been reset!',
- 'sent' => 'ពាក្យសម្ងាត់ដែលបានរំលឹកបានផ្ញើរួចរាល់!',
- 'token' => 'ពាក្យសម្ងាត់ដែលកំណត់ឡើងវិញគឺមិនត្រឹមត្រូវទេ។',
- 'user' => 'យើងមិនអាចរកឃើញអ្នកប្រើដែលមានអាសយដ្ឋានអ៊ីមែលមួយនេះទេ។',
+ 'reset' => 'Password has been reset!',
+ 'sent' => 'ពាក្យសម្ងាត់ដែលបានរំលឹកបានផ្ញើរួចរាល់!',
+ 'token' => 'ពាក្យសម្ងាត់ដែលកំណត់ឡើងវិញគឺមិនត្រឹមត្រូវទេ។',
+ 'user' => 'យើងមិនអាចរកឃើញអ្នកប្រើដែលមានអាសយដ្ឋានអ៊ីមែលមួយនេះទេ។',
];
diff --git a/lang/km/pm.php b/lang/km/pm.php
index 37d6f648d..b79fc9c3d 100644
--- a/lang/km/pm.php
+++ b/lang/km/pm.php
@@ -12,28 +12,28 @@
*/
return [
- 'create' => 'បង្កើត',
- 'delete' => 'លុប',
+ 'create' => 'បង្កើត',
+ 'delete' => 'លុប',
'enter-subject' => 'បញ្ចូលប្រធានបទ',
- 'from' => 'ពី',
- 'inbox' => 'ប្រអប់សំបុត្រ',
+ 'from' => 'ពី',
+ 'inbox' => 'ប្រអប់សំបុត្រ',
'mark-all-read' => 'សម្គាល់សារទាំងអស់ជាអាន',
- 'message' => 'សារ',
- 'messages' => 'សារ',
- 'new' => 'សារថ្មី',
- 'outbox' => 'ប្រអប់ចេញ',
- 'private' => 'ឯកជន',
- 'read' => 'អាន',
- 'received-at' => 'បានទទួលនៅ',
- 'refresh' => 'ធ្វើឱ្យស្រស់',
- 'reply' => 'ឆ្លើយតប',
- 'search' => 'ស្វែងរកតាមប្រធានបទ',
- 'select' => 'ជ្រើសរើសអ្នកប្រើ',
- 'send' => 'ផ្ញើ PM',
- 'send-to' => 'ផ្ញើ PM ទៅ',
- 'sent' => 'បានផ្ញើ',
- 'sent-at' => 'បញ្ជូនមក',
- 'subject' => 'ប្រធានបទ',
- 'to' => 'ទៅ',
- 'unread' => 'មិនទាន់អាន',
+ 'message' => 'សារ',
+ 'messages' => 'សារ',
+ 'new' => 'សារថ្មី',
+ 'outbox' => 'ប្រអប់ចេញ',
+ 'private' => 'ឯកជន',
+ 'read' => 'អាន',
+ 'received-at' => 'បានទទួលនៅ',
+ 'refresh' => 'ធ្វើឱ្យស្រស់',
+ 'reply' => 'ឆ្លើយតប',
+ 'search' => 'ស្វែងរកតាមប្រធានបទ',
+ 'select' => 'ជ្រើសរើសអ្នកប្រើ',
+ 'send' => 'ផ្ញើ PM',
+ 'send-to' => 'ផ្ញើ PM ទៅ',
+ 'sent' => 'បានផ្ញើ',
+ 'sent-at' => 'បញ្ជូនមក',
+ 'subject' => 'ប្រធានបទ',
+ 'to' => 'ទៅ',
+ 'unread' => 'មិនទាន់អាន',
];
diff --git a/lang/km/poll.php b/lang/km/poll.php
index 0a49de52a..8e5a57c3f 100644
--- a/lang/km/poll.php
+++ b/lang/km/poll.php
@@ -12,18 +12,18 @@
*/
return [
- 'add-option' => 'បន្ថែមជម្រើស',
- 'create-poll' => 'បង្កើតការស្ទង់មតិ',
- 'current' => 'ការស្ទង់មតិបច្ចុប្បន្ន (s បាន)',
- 'delete-option' => 'លុបជម្រើស',
+ 'add-option' => 'បន្ថែមជម្រើស',
+ 'create-poll' => 'បង្កើតការស្ទង់មតិ',
+ 'current' => 'ការស្ទង់មតិបច្ចុប្បន្ន (s បាន)',
+ 'delete-option' => 'លុបជម្រើស',
'multiple-choice' => 'នេះគឺជាការស្ទង់មតិជម្រើសច្រើន។ ជ្រើសចម្លើយច្រើនតាមដែលអ្នកចូលចិត្ត។',
- 'option' => 'ជម្រើស',
- 'poll' => 'ការស្ទង់មតិ',
- 'polls' => 'ការស្ទង់មតិ',
- 'results' => 'លទ្ធផលបោះឆ្នោត',
- 'title' => 'ចំណងជើង',
- 'total' => 'ការបោះឆ្នោតសរុបដែលមិនធ្លាប់មាន',
- 'vote' => 'បោះឆ្នោត',
- 'vote-now' => 'ទទួលបានការបោះឆ្នោតរបស់អ្នកឥឡូវនេះ!',
- 'votes' => 'ការបោះឆ្នោត',
+ 'option' => 'ជម្រើស',
+ 'poll' => 'ការស្ទង់មតិ',
+ 'polls' => 'ការស្ទង់មតិ',
+ 'results' => 'លទ្ធផលបោះឆ្នោត',
+ 'title' => 'ចំណងជើង',
+ 'total' => 'ការបោះឆ្នោតសរុបដែលមិនធ្លាប់មាន',
+ 'vote' => 'បោះឆ្នោត',
+ 'vote-now' => 'ទទួលបានការបោះឆ្នោតរបស់អ្នកឥឡូវនេះ!',
+ 'votes' => 'ការបោះឆ្នោត',
];
diff --git a/lang/km/request.php b/lang/km/request.php
index eabfba351..c39ffd766 100644
--- a/lang/km/request.php
+++ b/lang/km/request.php
@@ -12,67 +12,67 @@
*/
return [
- 'add-request' => 'បន្ថែមសំណើ',
- 'age' => 'អាយុ',
- 'all-requests' => 'សំណើទាំងអស់',
- 'approve' => 'យល់ព្រម',
- 'bounty' => 'ប្រាក់រង្វាន់',
- 'bounty-claimed' => 'Bounty បានអះអាង',
- 'bounty-unclaimed' => 'Bounty មិនបានអះអាង',
- 'category' => 'ប្រភេទ',
- 'claim' => 'ទាមទារ',
- 'claim-anon-choose' => 'សូមជ្រើសរើសដោយប្រាជ្ញា',
- 'claim-as-anon' => 'តើអ្នកចង់អះអាងនេះជាភាពមិនអនុលោមទេ',
- 'claim-now' => 'ទាមទារពេលនេះ',
- 'claimed' => 'បានទាមទារ',
- 'current' => 'នាពេលបច្ចុប្បន្ន',
- 'delete' => 'លុបសំណើនេះ',
+ 'add-request' => 'បន្ថែមសំណើ',
+ 'age' => 'អាយុ',
+ 'all-requests' => 'សំណើទាំងអស់',
+ 'approve' => 'យល់ព្រម',
+ 'bounty' => 'ប្រាក់រង្វាន់',
+ 'bounty-claimed' => 'Bounty បានអះអាង',
+ 'bounty-unclaimed' => 'Bounty មិនបានអះអាង',
+ 'category' => 'ប្រភេទ',
+ 'claim' => 'ទាមទារ',
+ 'claim-anon-choose' => 'សូមជ្រើសរើសដោយប្រាជ្ញា',
+ 'claim-as-anon' => 'តើអ្នកចង់អះអាងនេះជាភាពមិនអនុលោមទេ',
+ 'claim-now' => 'ទាមទារពេលនេះ',
+ 'claimed' => 'បានទាមទារ',
+ 'current' => 'នាពេលបច្ចុប្បន្ន',
+ 'delete' => 'លុបសំណើនេះ',
'delete-confirmation' => 'តើអ្នកប្រាកដជាចង់លុបសំណើនេះ',
- 'delete-filled' => 'សំណើនេះអាចត្រូវបានលុបបើវាមិនត្រូវបានបំពេញ',
- 'description' => 'ការពិពណ៌នា',
- 'dont-have-bps' => 'អ្នកមិនមានប្រាក់រង្វាន់គ្រប់គ្រាន់',
- 'edit-request' => 'កែសំណើ',
- 'enter-bp' => 'បញ្ចូលពិន្ទុប្រាក់រង្វាន់ (តិចបំផុត 100)',
- 'enter-hash' => 'បញ្ចូលព័ត៌មានសម្រាំងនៃ Torrent ដែលបានផ្ទុកឡើង',
- 'fill' => 'បំពេញ',
- 'fill-request' => 'បំពេញសំណើនេះ',
- 'filled' => 'បានបំពេញ',
- 'filled-by' => 'បំពេញដោយ',
- 'for' => 'សម្រាប់',
- 'fulfill' => 'បំពេញ',
- 'last-vote' => 'ការបោះឆ្នោតចុងក្រោយ',
- 'my-requests' => 'សំណើរបស់ខ្ញុំ',
- 'no' => 'ទេ,',
- 'no-imdb-id' => 'រាល់សំណើទាំងអស់ត្រូវមានលេខ IMDB',
- 'no-privileges' => 'កំហុស: សិទ្ធិស្នើសុំរបស់អ្នកត្រូវបានបិទ',
- 'no-privileges-desc' => 'ប្រសិនបើអ្នកគិតថាវាមានកំហុសសូមទាក់ទងបុគ្គលិក',
- 'no-refunds' => 'BON ការផ្លាស់ប្តូរនៅលើការបង្កើតការបំពេញនិងរង្វាន់គឺជាចុងក្រោយ!
គ្មានប្រាក់កក់ទេ!',
- 'pending' => 'កំពុងរង់ចាំ',
- 'reason' => 'មូលហេតុ',
- 'reject' => 'បដិសេធ',
- 'report' => 'ស្នើសុំរបាយការណ៍',
- 'request' => 'សំណើ',
- 'request-details' => 'ស្នើសុំពត៌មានលំអិត',
- 'requested-by' => 'សំណូមពរដោយ',
- 'requests' => 'សំណូមពរ',
- 'required' => 'ទាមទារ',
- 'reset' => 'កំណត់ឡើងវិញ',
- 'reset-confirmation' => 'តើអ្នកប្រាកដថាអ្នកចង់កំណត់សំណើនេះទេ',
- 'reset-request' => 'កំណត់ការស្នើសុំនេះឡើងវិញ',
- 'reward' => 'រង្វាន់',
- 'reward-desc' => 'តើអ្នកចង់បានពិន្ទុបន្ថែមប៉ុន្មាន? អប្បរមា 100 ប៊ីប',
- 'reward-from' => 'ពី',
- 'title' => 'ចំណងជើង',
- 'torrent-hash' => 'Torrent Hash',
- 'total-bounty' => 'ប្រាក់រង្វាន់សរុប',
- 'type' => 'វាយ',
- 'unclaim' => 'មិនទាមទារសំណើនេះ',
- 'unfilled' => 'មិនបានបំពេញ',
- 'view-filled' => 'មើលពេញ',
- 'view-unfilled' => 'មើលមិនគ្រប់គ្រាន់',
- 'vote' => 'បោះឆ្នោត',
- 'vote-that' => 'បោះឆ្នោតសំណើនេះ',
- 'voters' => 'អ្នកបោះឆ្នោត',
- 'votes' => 'ការបោះឆ្នោត',
- 'yes' => 'បាទ',
+ 'delete-filled' => 'សំណើនេះអាចត្រូវបានលុបបើវាមិនត្រូវបានបំពេញ',
+ 'description' => 'ការពិពណ៌នា',
+ 'dont-have-bps' => 'អ្នកមិនមានប្រាក់រង្វាន់គ្រប់គ្រាន់',
+ 'edit-request' => 'កែសំណើ',
+ 'enter-bp' => 'បញ្ចូលពិន្ទុប្រាក់រង្វាន់ (តិចបំផុត 100)',
+ 'enter-hash' => 'បញ្ចូលព័ត៌មានសម្រាំងនៃ Torrent ដែលបានផ្ទុកឡើង',
+ 'fill' => 'បំពេញ',
+ 'fill-request' => 'បំពេញសំណើនេះ',
+ 'filled' => 'បានបំពេញ',
+ 'filled-by' => 'បំពេញដោយ',
+ 'for' => 'សម្រាប់',
+ 'fulfill' => 'បំពេញ',
+ 'last-vote' => 'ការបោះឆ្នោតចុងក្រោយ',
+ 'my-requests' => 'សំណើរបស់ខ្ញុំ',
+ 'no' => 'ទេ,',
+ 'no-imdb-id' => 'រាល់សំណើទាំងអស់ត្រូវមានលេខ IMDB',
+ 'no-privileges' => 'កំហុស: សិទ្ធិស្នើសុំរបស់អ្នកត្រូវបានបិទ',
+ 'no-privileges-desc' => 'ប្រសិនបើអ្នកគិតថាវាមានកំហុសសូមទាក់ទងបុគ្គលិក',
+ 'no-refunds' => 'BON ការផ្លាស់ប្តូរនៅលើការបង្កើតការបំពេញនិងរង្វាន់គឺជាចុងក្រោយ!
គ្មានប្រាក់កក់ទេ!',
+ 'pending' => 'កំពុងរង់ចាំ',
+ 'reason' => 'មូលហេតុ',
+ 'reject' => 'បដិសេធ',
+ 'report' => 'ស្នើសុំរបាយការណ៍',
+ 'request' => 'សំណើ',
+ 'request-details' => 'ស្នើសុំពត៌មានលំអិត',
+ 'requested-by' => 'សំណូមពរដោយ',
+ 'requests' => 'សំណូមពរ',
+ 'required' => 'ទាមទារ',
+ 'reset' => 'កំណត់ឡើងវិញ',
+ 'reset-confirmation' => 'តើអ្នកប្រាកដថាអ្នកចង់កំណត់សំណើនេះទេ',
+ 'reset-request' => 'កំណត់ការស្នើសុំនេះឡើងវិញ',
+ 'reward' => 'រង្វាន់',
+ 'reward-desc' => 'តើអ្នកចង់បានពិន្ទុបន្ថែមប៉ុន្មាន? អប្បរមា 100 ប៊ីប',
+ 'reward-from' => 'ពី',
+ 'title' => 'ចំណងជើង',
+ 'torrent-hash' => 'Torrent Hash',
+ 'total-bounty' => 'ប្រាក់រង្វាន់សរុប',
+ 'type' => 'វាយ',
+ 'unclaim' => 'មិនទាមទារសំណើនេះ',
+ 'unfilled' => 'មិនបានបំពេញ',
+ 'view-filled' => 'មើលពេញ',
+ 'view-unfilled' => 'មើលមិនគ្រប់គ្រាន់',
+ 'vote' => 'បោះឆ្នោត',
+ 'vote-that' => 'បោះឆ្នោតសំណើនេះ',
+ 'voters' => 'អ្នកបោះឆ្នោត',
+ 'votes' => 'ការបោះឆ្នោត',
+ 'yes' => 'បាទ',
];
diff --git a/lang/km/rss.php b/lang/km/rss.php
index 9e7d8795b..be330d67d 100644
--- a/lang/km/rss.php
+++ b/lang/km/rss.php
@@ -12,19 +12,19 @@
*/
return [
- 'create' => 'បង្កើត',
+ 'create' => 'បង្កើត',
'create-private-feed' => 'បង្កើតមតិព័ត៌មាន RSS ឯកជន',
- 'create-public-feed' => 'បង្កើតមតិព័ត៌មាន RSS សាធារណៈ',
- 'delete' => 'លុប',
- 'edit' => 'កែប្រែ',
- 'edit-private-feed' => 'កែសម្រួល RSS Feed ឯកជន',
- 'edit-public-feed' => 'កែសម្រួលមតិព័ត៌មានជាសាធារណៈ',
- 'feed' => 'មតិព័ត៌មាន',
- 'feeds' => 'មតិព័ត៌មាន',
- 'name' => 'ឈ្មោះ',
- 'public' => 'ជាសាធារណៈ',
- 'private' => 'ឯកជន',
- 'rss' => 'RSS',
- 'rss-feed' => 'មតិព័ត៌មាន RSS',
- 'type' => 'វាយ',
+ 'create-public-feed' => 'បង្កើតមតិព័ត៌មាន RSS សាធារណៈ',
+ 'delete' => 'លុប',
+ 'edit' => 'កែប្រែ',
+ 'edit-private-feed' => 'កែសម្រួល RSS Feed ឯកជន',
+ 'edit-public-feed' => 'កែសម្រួលមតិព័ត៌មានជាសាធារណៈ',
+ 'feed' => 'មតិព័ត៌មាន',
+ 'feeds' => 'មតិព័ត៌មាន',
+ 'name' => 'ឈ្មោះ',
+ 'public' => 'ជាសាធារណៈ',
+ 'private' => 'ឯកជន',
+ 'rss' => 'RSS',
+ 'rss-feed' => 'មតិព័ត៌មាន RSS',
+ 'type' => 'វាយ',
];
diff --git a/lang/km/staff.php b/lang/km/staff.php
index 3106fee2d..e77f4066b 100644
--- a/lang/km/staff.php
+++ b/lang/km/staff.php
@@ -12,48 +12,48 @@
*/
return [
- 'audit-log' => 'របាយការណ៍សកម្មភាព',
- 'articles' => 'អត្ថបទ',
- 'applications' => 'កម្មវិធី',
- 'bans-log' => 'បំរាមកំណត់ហេតុ',
- 'blocks' => 'ប្លុក',
- 'bot' => 'Bot',
- 'bots' => 'Bots',
- 'chat' => 'ជជែក',
- 'config-manager' => 'កម្មវិធីកំណត់រចនាសម្ព័ន្ធ',
- 'dashboard' => 'ផ្ទាំងគ្រប់គ្រង',
- 'failed-login-log' => 'បានបរាជ័យក្នុងការចូលកំណត់ហេតុ',
- 'flush-ghost-peers' => 'ត្រកូលព្រលឹងមនុស្ស',
- 'forums' => 'វេទិកា',
- 'frontend' => 'ផ្នែកខាងមុខ',
- 'general-tools' => 'ឧបករណ៍ទូទៅ',
- 'groups' => 'ក្រុម',
- 'invites-log' => 'អញ្ជើញកំណត់ហេតុ',
- 'laravel-log' => 'Laravel Log',
- 'links' => 'តំណភ្ជាប់',
- 'logs' => 'កំណត់ត្រា',
- 'mass-pm' => 'នាយករដ្ឋមន្រ្តី',
- 'mass-validate-users' => 'អ្នកប្រើមានសុពលភាពច្រើន',
- 'moderation' => 'ការសម្រុះសម្រួល',
- 'pages' => 'ទំព័រ',
- 'please-moderate' => 'សូមលៃតម្រូវ Torrent នេះ!',
- 'polls' => 'ការស្ទង់មតិ',
- 'reports-log' => 'របាយការណ៍កំណត់ហេតុ',
- 'rss' => 'RSS',
- 'staff-dashboard' => 'ផ្ទាំងគ្រប់គ្រងបុគ្គលិក',
- 'torrent-categories' => 'ប្រភេទ Torrent',
- 'torrent-moderation' => 'ការសម្រុះសម្រួល Torrent',
- 'torrent-tools' => 'ឧបករណ៍ Torrent',
- 'torrent-types' => 'ប្រភេទ Torrent',
- 'torrents' => 'Torrents',
- 'user-gifting' => 'អំណោយរបស់អ្នកប្រើ',
- 'user-notes' => 'កំណត់ត្រាអ្នកប្រើកំណត់ហេតុ',
- 'user-search' => 'ស្វែងរកអ្នកប្រើ',
- 'user-tools' => 'ឧបករណ៍របស់អ្នកប្រើ',
- 'warnings-log' => 'កំណត់ហេតុការព្រមាន',
- 'you-have' => 'អ្នកមាន',
+ 'audit-log' => 'របាយការណ៍សកម្មភាព',
+ 'articles' => 'អត្ថបទ',
+ 'applications' => 'កម្មវិធី',
+ 'bans-log' => 'បំរាមកំណត់ហេតុ',
+ 'blocks' => 'ប្លុក',
+ 'bot' => 'Bot',
+ 'bots' => 'Bots',
+ 'chat' => 'ជជែក',
+ 'config-manager' => 'កម្មវិធីកំណត់រចនាសម្ព័ន្ធ',
+ 'dashboard' => 'ផ្ទាំងគ្រប់គ្រង',
+ 'failed-login-log' => 'បានបរាជ័យក្នុងការចូលកំណត់ហេតុ',
+ 'flush-ghost-peers' => 'ត្រកូលព្រលឹងមនុស្ស',
+ 'forums' => 'វេទិកា',
+ 'frontend' => 'ផ្នែកខាងមុខ',
+ 'general-tools' => 'ឧបករណ៍ទូទៅ',
+ 'groups' => 'ក្រុម',
+ 'invites-log' => 'អញ្ជើញកំណត់ហេតុ',
+ 'laravel-log' => 'Laravel Log',
+ 'links' => 'តំណភ្ជាប់',
+ 'logs' => 'កំណត់ត្រា',
+ 'mass-pm' => 'នាយករដ្ឋមន្រ្តី',
+ 'mass-validate-users' => 'អ្នកប្រើមានសុពលភាពច្រើន',
+ 'moderation' => 'ការសម្រុះសម្រួល',
+ 'pages' => 'ទំព័រ',
+ 'please-moderate' => 'សូមលៃតម្រូវ Torrent នេះ!',
+ 'polls' => 'ការស្ទង់មតិ',
+ 'reports-log' => 'របាយការណ៍កំណត់ហេតុ',
+ 'rss' => 'RSS',
+ 'staff-dashboard' => 'ផ្ទាំងគ្រប់គ្រងបុគ្គលិក',
+ 'torrent-categories' => 'ប្រភេទ Torrent',
+ 'torrent-moderation' => 'ការសម្រុះសម្រួល Torrent',
+ 'torrent-tools' => 'ឧបករណ៍ Torrent',
+ 'torrent-types' => 'ប្រភេទ Torrent',
+ 'torrents' => 'Torrents',
+ 'user-gifting' => 'អំណោយរបស់អ្នកប្រើ',
+ 'user-notes' => 'កំណត់ត្រាអ្នកប្រើកំណត់ហេតុ',
+ 'user-search' => 'ស្វែងរកអ្នកប្រើ',
+ 'user-tools' => 'ឧបករណ៍របស់អ្នកប្រើ',
+ 'warnings-log' => 'កំណត់ហេតុការព្រមាន',
+ 'you-have' => 'អ្នកមាន',
'possible-leech-cheaters' => 'cheaters ដែលអាចធ្វើបាន',
- 'chat-tools' => 'ឧបករណ៍ជជែកកំសាន្ត',
- 'flush-chat' => 'Flush Chatbox',
- 'seedboxes' => 'ប្រអប់ដែលបានចុះឈ្មោះ',
+ 'chat-tools' => 'ឧបករណ៍ជជែកកំសាន្ត',
+ 'flush-chat' => 'Flush Chatbox',
+ 'seedboxes' => 'ប្រអប់ដែលបានចុះឈ្មោះ',
];
diff --git a/lang/km/stat.php b/lang/km/stat.php
index c5c399c96..c1f4cc0e8 100644
--- a/lang/km/stat.php
+++ b/lang/km/stat.php
@@ -12,40 +12,40 @@
*/
return [
- 'by-count' => 'ដោយរាប់',
- 'by-data' => 'តាមទិន្នន័យ',
- 'by-volume' => 'តាមកម្រិតសំឡេង',
- 'group' => 'ក្រុម',
- 'groups' => 'ក្រុម',
- 'nerd-stats' => 'ស្ថិតិលេខរៀង',
- 'nerd-stats-desc' => 'យើងទាំងអស់គ្នាស្រឡាញ់ស្ថិតិ។ ខាងក្រោមនេះជាចំនួនតូចដែលយើងរកឃើញសំខាន់',
- 'registration-date' => 'កាលបរិច្ឆេទចុះបញ្ជី',
- 'request-fulfilled' => 'សំណើបានបំពេញ',
- 'request-not-fulfilled' => 'សំណើមិនបានបំពេញ',
+ 'by-count' => 'ដោយរាប់',
+ 'by-data' => 'តាមទិន្នន័យ',
+ 'by-volume' => 'តាមកម្រិតសំឡេង',
+ 'group' => 'ក្រុម',
+ 'groups' => 'ក្រុម',
+ 'nerd-stats' => 'ស្ថិតិលេខរៀង',
+ 'nerd-stats-desc' => 'យើងទាំងអស់គ្នាស្រឡាញ់ស្ថិតិ។ ខាងក្រោមនេះជាចំនួនតូចដែលយើងរកឃើញសំខាន់',
+ 'registration-date' => 'កាលបរិច្ឆេទចុះបញ្ជី',
+ 'request-fulfilled' => 'សំណើបានបំពេញ',
+ 'request-not-fulfilled' => 'សំណើមិនបានបំពេញ',
'request-pending-aproval' => 'សំណើសុំព្យួរអាប់ដេត',
- 'select-category' => 'សូមជ្រើសរើសប្រភេទខាងក្រោម',
- 'site-stats' => 'ស្ថិតិបណ្តាញ',
- 'stats' => 'ស្ថិតិ',
- 'stats-format' => 'ស្ថិតិទាំងអស់ត្រូវបានបង្ហាញនៅក្នុងទ្រង់ទ្រាយ 100',
- 'top-bankers' => 'ធនាគារកំពូល',
- 'top-bountied' => 'កំពូលផ្ដល់ជូន',
- 'top-completed' => 'កំពូលបានបញ្ចប់',
- 'top-dead' => 'កំពូលស្លាប់',
- 'top-downloaded' => 'ទាញយក Torrent ដែលពេញនិយមបំផុត',
- 'top-downloaders' => 'អ្នកទាញយកកំពូល',
- 'top-dying' => 'កំពូលស្លាប់',
- 'top-leeched' => 'កំពូលលីក',
- 'top-leechers' => 'Leechers កំពូល',
- 'top-seeded' => 'កំពូលគ្រាប់ពូជ',
- 'top-seeding' => 'ការបែងចែកកូន',
- 'top-seeders' => 'គ្រាប់ពូជខាងលើ',
- 'top-seedsize' => 'គ្រាប់លើកំពូល',
- 'top-seedtime' => 'គ្រាប់ពូជនៅលើកំពូល',
- 'top-uploaders' => 'អ្នកបង្ហោះកំពូល',
- 'total-download' => 'ទាញយកសរុប',
- 'total-torrents' => 'Torrent សរុប',
- 'total-traffic' => 'ចរាចរសរុប',
- 'total-upload' => 'ផ្ទុកឡើងសរុប',
- 'users-in-group' => 'អ្នកប្រើជាក្រុម',
- 'users-per-group' => 'អ្នកប្រើក្នុងមួយក្រុម',
+ 'select-category' => 'សូមជ្រើសរើសប្រភេទខាងក្រោម',
+ 'site-stats' => 'ស្ថិតិបណ្តាញ',
+ 'stats' => 'ស្ថិតិ',
+ 'stats-format' => 'ស្ថិតិទាំងអស់ត្រូវបានបង្ហាញនៅក្នុងទ្រង់ទ្រាយ 100',
+ 'top-bankers' => 'ធនាគារកំពូល',
+ 'top-bountied' => 'កំពូលផ្ដល់ជូន',
+ 'top-completed' => 'កំពូលបានបញ្ចប់',
+ 'top-dead' => 'កំពូលស្លាប់',
+ 'top-downloaded' => 'ទាញយក Torrent ដែលពេញនិយមបំផុត',
+ 'top-downloaders' => 'អ្នកទាញយកកំពូល',
+ 'top-dying' => 'កំពូលស្លាប់',
+ 'top-leeched' => 'កំពូលលីក',
+ 'top-leechers' => 'Leechers កំពូល',
+ 'top-seeded' => 'កំពូលគ្រាប់ពូជ',
+ 'top-seeding' => 'ការបែងចែកកូន',
+ 'top-seeders' => 'គ្រាប់ពូជខាងលើ',
+ 'top-seedsize' => 'គ្រាប់លើកំពូល',
+ 'top-seedtime' => 'គ្រាប់ពូជនៅលើកំពូល',
+ 'top-uploaders' => 'អ្នកបង្ហោះកំពូល',
+ 'total-download' => 'ទាញយកសរុប',
+ 'total-torrents' => 'Torrent សរុប',
+ 'total-traffic' => 'ចរាចរសរុប',
+ 'total-upload' => 'ផ្ទុកឡើងសរុប',
+ 'users-in-group' => 'អ្នកប្រើជាក្រុម',
+ 'users-per-group' => 'អ្នកប្រើក្នុងមួយក្រុម',
];
diff --git a/lang/km/torrent.php b/lang/km/torrent.php
index 29a294391..a4d5553cc 100644
--- a/lang/km/torrent.php
+++ b/lang/km/torrent.php
@@ -12,197 +12,197 @@
*/
return [
- 'activity' => 'សកម្មភាព',
- 'age' => 'អាយុ',
- 'agent' => 'ភ្នាក់ងារ',
- 'alive' => 'រស់',
- 'announce-url' => 'ប្រកាស URL',
- 'announce-url-desc' => 'សូមប្រើ URL ប្រកាសនៅពេលបង្កើត torrent ថ្មី។ ប្រសិនបើអ្នកចង់ប្រើ torrent របស់អ្នកដោយមិនចាំបាច់ទាញយកវាពីគេហទំព័រអ្នកត្រូវកំណត់ទង់ឯកជននិងប្រភពទៅប្រភព',
- 'announce-url-desc-url' => 'មានបញ្ហា? សូមមើលការណែនាំរបស់យើង នៅទីនេះ',
- 'announce-url-desc2' => 'TMDB និង IMDB ត្រូវបានតម្រូវសម្រាប់ការផ្ទុកឡើងទាំងអស់! វាត្រូវបានប្រើដើម្បីចាប់យកផ្ទាំងរូបភាព / ផ្ទាំងខាងក្រោយនិង ExtraInfo',
- 'approved' => 'បានអនុម័ត',
- 'audio' => 'អូឌីយ៉ូ',
- 'bon-tipped' => 'ជូនពរ',
- 'bookmark' => 'ចំណាំ',
- 'bookmarks' => 'ចំណាំ',
- 'bump' => 'Bump',
- 'cant-upload' => 'កំហុស: សិទ្ធិផ្ទុកឡើងរបស់អ្នកត្រូវបានបិទ',
- 'cant-upload-desc' => 'ប្រសិនបើអ្នកយល់ថានេះគឺជាកំហុសសូមទាក់ទងបុគ្គលិក',
- 'cards' => 'កាត',
- 'cards-view' => 'ទិដ្ឋភាព Torrent Cards',
- 'categories' => 'ប្រភេទ',
- 'category' => 'ប្រភេទ',
- 'client' => 'អតិថិជន',
- 'commited' => 'បានសន្យា',
- 'completed' => 'បានបញ្ចប់',
- 'completed_at' => 'បានបញ្ចប់នៅ',
- 'completed-not-seeding' => 'អ្នកបានបញ្ចប់ការទាញយកនេះប៉ុន្តែមិនយូរជាងការបណ្តុះវា',
- 'created_at' => 'បានបង្កើតនៅ',
- 'credited' => 'បានផ្តល់សក្ខីកម្ម',
- 'current' => 'នាពេលបច្ចុប្បន្ន',
- 'current-filters' => 'តម្រងបច្ចុប្បន្ន',
- 'currently-leeching' => 'បច្ចុប្បន្ន Leeching',
- 'currently-seeding' => 'បច្ចុប្បន្ននេះការបណ្តុះ',
- 'dead-torrent' => 'Dead Torrent',
- 'dead-torrents' => 'Torrents ស្លាប់',
- 'delete-bookmark' => 'លុបចំណាំនេះ',
- 'description' => 'ការពិពណ៌នា',
- 'discounts' => 'ការបញ្ចុះតម្លៃ',
- 'double-upload' => 'ផ្ទុកឡើងទ្វេដង',
- 'download-all' => 'ទាញយកទាំងអស់',
- 'download-check' => 'ពិនិត្យមើលការទាញយក',
- 'downloaded' => 'បានទាញយក',
- 'dying-torrent' => 'ស្លាប់ Torrent',
- 'dying-torrents' => 'ស្លាប់ Torrents',
- 'encode-settings' => 'អ៊ិនកូដការកំណត់',
- 'estimated-ratio' => 'សមាមាត្រប៉ាន់ស្មានបន្ទាប់ពីទាញយក',
- 'failed' => 'បានបរាជ័យ',
- 'feature' => 'លក្ខណៈពិសេស',
- 'featured' => 'លក្ខណៈពិសេស',
- 'featured-desc' => 'torrent ពិសេសគឺ 100% ឥតគិតថ្លៃ និង បញ្ចូលពីរដង!',
- 'featured-until' => 'នេះគឺជា Torrent ពិសេសរហូតមកដល់ពេលនេះ',
- 'file' => 'ឯកសារ',
- 'filters' => 'តម្រង',
- 'fl-tokens-left' => 'អ្នកមាន : ថូខឹនបាន ចាកចេញ',
- 'freeleech' => 'Freeleech',
- 'freeleech-token' => 'Freeleech Token',
- 'general' => 'ទូទៅ',
- 'genre' => 'ប្រភេទ',
- 'global-double-upload' => 'ផ្ទុកទ្វេដងសកល',
- 'global-freeleech' => 'Global Freeleech',
- 'grant' => 'ជំនួយ',
- 'greater-than' => 'ធំជាង',
- 'grouping' => 'ដាក់ជាក្រុម',
- 'groupings' => 'ក្រុម',
- 'grouping-categories' => 'ដាក់ចំណាត់ថ្នាក់ក្រុម',
+ 'activity' => 'សកម្មភាព',
+ 'age' => 'អាយុ',
+ 'agent' => 'ភ្នាក់ងារ',
+ 'alive' => 'រស់',
+ 'announce-url' => 'ប្រកាស URL',
+ 'announce-url-desc' => 'សូមប្រើ URL ប្រកាសនៅពេលបង្កើត torrent ថ្មី។ ប្រសិនបើអ្នកចង់ប្រើ torrent របស់អ្នកដោយមិនចាំបាច់ទាញយកវាពីគេហទំព័រអ្នកត្រូវកំណត់ទង់ឯកជននិងប្រភពទៅប្រភព',
+ 'announce-url-desc-url' => 'មានបញ្ហា? សូមមើលការណែនាំរបស់យើង នៅទីនេះ',
+ 'announce-url-desc2' => 'TMDB និង IMDB ត្រូវបានតម្រូវសម្រាប់ការផ្ទុកឡើងទាំងអស់! វាត្រូវបានប្រើដើម្បីចាប់យកផ្ទាំងរូបភាព / ផ្ទាំងខាងក្រោយនិង ExtraInfo',
+ 'approved' => 'បានអនុម័ត',
+ 'audio' => 'អូឌីយ៉ូ',
+ 'bon-tipped' => 'ជូនពរ',
+ 'bookmark' => 'ចំណាំ',
+ 'bookmarks' => 'ចំណាំ',
+ 'bump' => 'Bump',
+ 'cant-upload' => 'កំហុស: សិទ្ធិផ្ទុកឡើងរបស់អ្នកត្រូវបានបិទ',
+ 'cant-upload-desc' => 'ប្រសិនបើអ្នកយល់ថានេះគឺជាកំហុសសូមទាក់ទងបុគ្គលិក',
+ 'cards' => 'កាត',
+ 'cards-view' => 'ទិដ្ឋភាព Torrent Cards',
+ 'categories' => 'ប្រភេទ',
+ 'category' => 'ប្រភេទ',
+ 'client' => 'អតិថិជន',
+ 'commited' => 'បានសន្យា',
+ 'completed' => 'បានបញ្ចប់',
+ 'completed_at' => 'បានបញ្ចប់នៅ',
+ 'completed-not-seeding' => 'អ្នកបានបញ្ចប់ការទាញយកនេះប៉ុន្តែមិនយូរជាងការបណ្តុះវា',
+ 'created_at' => 'បានបង្កើតនៅ',
+ 'credited' => 'បានផ្តល់សក្ខីកម្ម',
+ 'current' => 'នាពេលបច្ចុប្បន្ន',
+ 'current-filters' => 'តម្រងបច្ចុប្បន្ន',
+ 'currently-leeching' => 'បច្ចុប្បន្ន Leeching',
+ 'currently-seeding' => 'បច្ចុប្បន្ននេះការបណ្តុះ',
+ 'dead-torrent' => 'Dead Torrent',
+ 'dead-torrents' => 'Torrents ស្លាប់',
+ 'delete-bookmark' => 'លុបចំណាំនេះ',
+ 'description' => 'ការពិពណ៌នា',
+ 'discounts' => 'ការបញ្ចុះតម្លៃ',
+ 'double-upload' => 'ផ្ទុកឡើងទ្វេដង',
+ 'download-all' => 'ទាញយកទាំងអស់',
+ 'download-check' => 'ពិនិត្យមើលការទាញយក',
+ 'downloaded' => 'បានទាញយក',
+ 'dying-torrent' => 'ស្លាប់ Torrent',
+ 'dying-torrents' => 'ស្លាប់ Torrents',
+ 'encode-settings' => 'អ៊ិនកូដការកំណត់',
+ 'estimated-ratio' => 'សមាមាត្រប៉ាន់ស្មានបន្ទាប់ពីទាញយក',
+ 'failed' => 'បានបរាជ័យ',
+ 'feature' => 'លក្ខណៈពិសេស',
+ 'featured' => 'លក្ខណៈពិសេស',
+ 'featured-desc' => 'torrent ពិសេសគឺ 100% ឥតគិតថ្លៃ និង បញ្ចូលពីរដង!',
+ 'featured-until' => 'នេះគឺជា Torrent ពិសេសរហូតមកដល់ពេលនេះ',
+ 'file' => 'ឯកសារ',
+ 'filters' => 'តម្រង',
+ 'fl-tokens-left' => 'អ្នកមាន : ថូខឹនបាន ចាកចេញ',
+ 'freeleech' => 'Freeleech',
+ 'freeleech-token' => 'Freeleech Token',
+ 'general' => 'ទូទៅ',
+ 'genre' => 'ប្រភេទ',
+ 'global-double-upload' => 'ផ្ទុកទ្វេដងសកល',
+ 'global-freeleech' => 'Global Freeleech',
+ 'grant' => 'ជំនួយ',
+ 'greater-than' => 'ធំជាង',
+ 'grouping' => 'ដាក់ជាក្រុម',
+ 'groupings' => 'ក្រុម',
+ 'grouping-categories' => 'ដាក់ចំណាត់ថ្នាក់ក្រុម',
'grouping-categories-desc' => 'តើប្រភេទអ្វីដែលអ្នកចង់ដាក់ជាក្រុម?',
- 'grouping-results' => 'ដាក់លទ្ធផលជាក្រុម',
- 'groupings-view' => 'ទិដ្ឋភាពជាក្រុម',
- 'have-completed' => 'បានបញ្ចប់',
- 'have-downloaded' => 'បានទាញយក',
- 'have-not-completed' => 'មិនបានបញ្ចប់',
- 'have-not-downloaded' => 'មិនបានទាញយក',
- 'health' => 'សុខភាព',
- 'history' => 'ប្រវត្តិ',
- 'hitrun' => 'ក្រុមហ៊ុន H & R?',
- 'hit-and-runs' => 'វាយនិងរត់រាប់',
- 'immune' => 'ភាពស៊ាំ',
- 'info' => 'ពត៌មាន',
- 'internal' => 'ខាងក្នុង',
- 'internal-release' => 'ការចេញផ្សាយផ្ទៃក្នុង',
- 'last-seed-activity' => 'សកម្មភាពគ្រាប់ពូជចុងក្រោយ',
- 'last-seeder' => 'អ្នកគឺជាអ្នកស្នងបន្តទៀត! (ត្រូវបានទាញយកយ៉ាងហោចណាស់ 3 ដង)',
- 'last-update' => 'ការធ្វើបច្ចុប្បន្នភាពចុងក្រោយ',
- 'leave-tip' => 'ទុកព័ត៌មានជំនួយ',
- 'leecher' => 'Leecher',
- 'leechers' => 'អ្នកនេសាទ',
- 'leeching' => 'Leeching',
- 'left' => 'ឆ្វេង',
- 'legendary-seeder' => 'កសិកររឿងព្រេងនិទាន',
- 'legendary-torrent' => 'torrent រឿងព្រេងនិទាន',
- 'list' => 'បញ្ជី',
- 'me' => 'ខ្ញុំ',
- 'media-info' => 'MediaInfo',
- 'media-info-parser' => 'មេឌាព័ត៌មានត្រង',
- 'media-info-paste' => 'ដាក់មេឌៀ MediaInfo នៅទីនេះ',
- 'meta-desc' => 'ទាញយក: ឈ្មោះក្នុងល្បឿនអតិបរមា',
- 'moderation' => 'ការសម្រុះសម្រួល',
- 'movies' => 'ភាពយន្ត',
- 'mvp' => 'MVP',
- 'my-active-torrents' => 'torrents សកម្មរបស់ខ្ញុំ',
- 'name' => 'ឈ្មោះ',
- 'no-bookmarks' => 'គ្មានចំណាំរកឃើញទេ។',
- 'no-discounts' => 'បច្ចុប្បន្នមិនមានការបញ្ចុះតម្លៃទេ',
- 'no-meta' => 'រកមិនឃើញទិន្នន័យមេតា',
- 'no-privileges' => 'អ្នកមិនអាចទាញយកឯកសារនេះបានទេ - សូមពិនិត្យមើលព័ត៌មានបន្ថែម',
- 'no-privileges-desc' => 'សូមដោះស្រាយលទ្ធផលដែលបានបរាជ័យខាងលើសម្រាប់ប៊ូតុងទាញយកដើម្បីបង្ហាញ',
- 'not-completed' => 'បានចាប់ផ្តើមទាញយកប៉ុន្តែមិនដែលបានបញ្ចប់',
- 'not-downloaded' => 'មិនបានទាញយក',
- 'old-torrent' => 'torrent ចាស់',
- 'optional' => 'ស្រេចចិត្ត',
- 'original-output' => 'បង្ហាញ / លាក់លទ្ធផលដើម',
- 'participant' => 'អ្នកចូលរួម',
- 'passed' => 'បានអនុម័ត',
- 'peers' => 'មិត្តភក្តិ',
- 'pending' => 'កំពុងរង់ចាំ',
- 'personal-freeleech' => 'Freeleech ផ្ទាល់ខ្លួន',
- 'poster' => 'ផ្ទាំងរូបភាព',
- 'poster-view' => 'ទិដ្ឋភាពផ្ទាំងរូបភាព',
- 'posters' => 'ផ្ទាំងរូបភាព',
- 'prewarn' => 'ព្រមាន?',
- 'progress' => 'វឌ្ឍនភាព',
- 'quick-comment' => 'មតិយោបល់រហ័ស',
- 'quick-tip' => 'ចំនួនជំនួយរហ័ស',
- 'rated' => 'វាយតម្លៃ',
- 'rating' => 'ការវាយតម្លៃ',
- 'ready' => 'ឯកសារនេះគឺអាចទាញយកបានហើយ',
- 'rejected' => 'បានច្រានចោល',
- 'released' => 'ចេញផ្សាយ',
- 'remaining' => 'នៅសល់',
- 'request-reseed' => 'សំណើរឡើង',
- 'requires-reseed' => 'តម្រូវឱ្យមានការរីករាលដាល',
- 'resurrections' => 'ការរស់ឡើងវិញ',
- 'revoke' => 'ដកហូតវិញ',
- 'rss' => 'RSS',
- 'runtime' => 'ពេលរត់',
- 'satisfied_in' => 'ពេញចិត្ត',
- 'say-thanks' => 'សូមកុំភ្លេចនិយាយ អរគុណ និង គ្រាប់ពូជ ឱ្យបានយូរតាមតែអាចធ្វើទៅបាន',
- 'sd-content' => 'មាតិកា SD',
- 'search' => 'ស្វែងរក',
- 'seed-time' => 'ពេលវេលាពូជ',
- 'seeder' => 'អ្នករៀបចំពូជ',
- 'seeders' => 'គ្រាប់ពូជ',
- 'seeding' => 'ការបណ្តុះ',
- 'seedsize' => 'Seedsize',
- 'seedtime' => 'ពេលព្រឹក',
- 'short-completed' => 'C',
- 'short-leechs' => 'លីត្រ',
- 'short-seeds' => 'S',
- 'show-files' => 'បង្ហាញឯកសារ',
- 'similar' => 'Torrent ស្រដៀងគ្នា',
- 'size' => 'ទំហំ',
- 'special' => 'ពិសេស',
- 'special-freeleech' => 'ពិសេស Freeleech',
- 'started' => 'បានចាប់ផ្ដើម',
- 'status' => 'ស្ថានភាព',
- 'statistics' => 'ស្ថិតិ',
- 'stats' => 'ស្ថិតិ',
- 'sticky' => 'ស្អិត',
- 'stream-optimized' => 'ការស្ទ្រីមប្រសើរ',
- 'subtitle' => 'ចំណងជើងរង',
- 'team-player' => 'អ្នកលេងក្រុម',
- 'thank' => 'អរគុណ',
- 'thanked' => 'សូមអរគុណ',
- 'thanks' => 'អរគុណ',
- 'thanks-given' => 'សូមអរគុណ',
- 'times' => 'ពេលវេលា',
- 'tip-jar' => 'ពាងពាង',
- 'title' => 'ចំណងជើង',
- 'titles' => 'ចំណងជើង',
- 'top-completed' => 'កំពូលបានបញ្ចប់',
- 'top-dead' => 'ស្លាប់កំពូល',
- 'top-dying' => 'កំពូលស្លាប់',
- 'top-leeched' => 'កំពូលបានប្រើ',
- 'top-seeded' => 'ខាងលើគ្រាប់',
- 'torrent' => 'Torrent',
- 'torrent-request' => 'សំណើ Torrent',
- 'torrent-tips' => 'សរុប : សរុប BON ត្រូវបានប្រាប់ដល់អ្នកបង្ហោះដែល អ្នកប្រើ មកពីអ្នក',
- 'torrent-tips-desc' => 'នេះនឹងត្រូវដកចេញពីពិន្ទុប្រាក់រង្វាន់ដែលអ្នកមាន',
- 'torrents' => 'Torrents',
- 'trailer' => 'មើលភាពយន្ត',
- 'type' => 'វាយ',
- 'types' => 'ប្រភេទ',
- 'unbookmark' => 'មិនកំណត់ចំណាំ',
- 'unsatisfieds' => 'មិនស្កប់ចិត្ត',
- 'unsticky' => 'មិនឆ្គង',
- 'updated' => 'ធ្វើបច្ចុប្បន្នភាព',
- 'updated_at' => 'ធ្វើបច្ចុប្បន្នភាពនៅ',
- 'uploaded' => 'បានផ្ទុកឡើង',
- 'uploaded-by' => 'បានផ្ទុកឡើងដោយ',
- 'uploader' => 'អ្នកផ្ទុកឡើង',
- 'use-fl-token' => 'ប្រើពាក្យសម្ងាត់ Freeleech',
- 'video' => 'វីដេអូ',
- 'view-more' => 'មើលច្រើនទៀត',
- 'view-trailer' => 'មើលភាពយន្ត',
- 'votes' => 'ការបោះឆ្នោត',
+ 'grouping-results' => 'ដាក់លទ្ធផលជាក្រុម',
+ 'groupings-view' => 'ទិដ្ឋភាពជាក្រុម',
+ 'have-completed' => 'បានបញ្ចប់',
+ 'have-downloaded' => 'បានទាញយក',
+ 'have-not-completed' => 'មិនបានបញ្ចប់',
+ 'have-not-downloaded' => 'មិនបានទាញយក',
+ 'health' => 'សុខភាព',
+ 'history' => 'ប្រវត្តិ',
+ 'hitrun' => 'ក្រុមហ៊ុន H & R?',
+ 'hit-and-runs' => 'វាយនិងរត់រាប់',
+ 'immune' => 'ភាពស៊ាំ',
+ 'info' => 'ពត៌មាន',
+ 'internal' => 'ខាងក្នុង',
+ 'internal-release' => 'ការចេញផ្សាយផ្ទៃក្នុង',
+ 'last-seed-activity' => 'សកម្មភាពគ្រាប់ពូជចុងក្រោយ',
+ 'last-seeder' => 'អ្នកគឺជាអ្នកស្នងបន្តទៀត! (ត្រូវបានទាញយកយ៉ាងហោចណាស់ 3 ដង)',
+ 'last-update' => 'ការធ្វើបច្ចុប្បន្នភាពចុងក្រោយ',
+ 'leave-tip' => 'ទុកព័ត៌មានជំនួយ',
+ 'leecher' => 'Leecher',
+ 'leechers' => 'អ្នកនេសាទ',
+ 'leeching' => 'Leeching',
+ 'left' => 'ឆ្វេង',
+ 'legendary-seeder' => 'កសិកររឿងព្រេងនិទាន',
+ 'legendary-torrent' => 'torrent រឿងព្រេងនិទាន',
+ 'list' => 'បញ្ជី',
+ 'me' => 'ខ្ញុំ',
+ 'media-info' => 'MediaInfo',
+ 'media-info-parser' => 'មេឌាព័ត៌មានត្រង',
+ 'media-info-paste' => 'ដាក់មេឌៀ MediaInfo នៅទីនេះ',
+ 'meta-desc' => 'ទាញយក: ឈ្មោះក្នុងល្បឿនអតិបរមា',
+ 'moderation' => 'ការសម្រុះសម្រួល',
+ 'movies' => 'ភាពយន្ត',
+ 'mvp' => 'MVP',
+ 'my-active-torrents' => 'torrents សកម្មរបស់ខ្ញុំ',
+ 'name' => 'ឈ្មោះ',
+ 'no-bookmarks' => 'គ្មានចំណាំរកឃើញទេ។',
+ 'no-discounts' => 'បច្ចុប្បន្នមិនមានការបញ្ចុះតម្លៃទេ',
+ 'no-meta' => 'រកមិនឃើញទិន្នន័យមេតា',
+ 'no-privileges' => 'អ្នកមិនអាចទាញយកឯកសារនេះបានទេ - សូមពិនិត្យមើលព័ត៌មានបន្ថែម',
+ 'no-privileges-desc' => 'សូមដោះស្រាយលទ្ធផលដែលបានបរាជ័យខាងលើសម្រាប់ប៊ូតុងទាញយកដើម្បីបង្ហាញ',
+ 'not-completed' => 'បានចាប់ផ្តើមទាញយកប៉ុន្តែមិនដែលបានបញ្ចប់',
+ 'not-downloaded' => 'មិនបានទាញយក',
+ 'old-torrent' => 'torrent ចាស់',
+ 'optional' => 'ស្រេចចិត្ត',
+ 'original-output' => 'បង្ហាញ / លាក់លទ្ធផលដើម',
+ 'participant' => 'អ្នកចូលរួម',
+ 'passed' => 'បានអនុម័ត',
+ 'peers' => 'មិត្តភក្តិ',
+ 'pending' => 'កំពុងរង់ចាំ',
+ 'personal-freeleech' => 'Freeleech ផ្ទាល់ខ្លួន',
+ 'poster' => 'ផ្ទាំងរូបភាព',
+ 'poster-view' => 'ទិដ្ឋភាពផ្ទាំងរូបភាព',
+ 'posters' => 'ផ្ទាំងរូបភាព',
+ 'prewarn' => 'ព្រមាន?',
+ 'progress' => 'វឌ្ឍនភាព',
+ 'quick-comment' => 'មតិយោបល់រហ័ស',
+ 'quick-tip' => 'ចំនួនជំនួយរហ័ស',
+ 'rated' => 'វាយតម្លៃ',
+ 'rating' => 'ការវាយតម្លៃ',
+ 'ready' => 'ឯកសារនេះគឺអាចទាញយកបានហើយ',
+ 'rejected' => 'បានច្រានចោល',
+ 'released' => 'ចេញផ្សាយ',
+ 'remaining' => 'នៅសល់',
+ 'request-reseed' => 'សំណើរឡើង',
+ 'requires-reseed' => 'តម្រូវឱ្យមានការរីករាលដាល',
+ 'resurrections' => 'ការរស់ឡើងវិញ',
+ 'revoke' => 'ដកហូតវិញ',
+ 'rss' => 'RSS',
+ 'runtime' => 'ពេលរត់',
+ 'satisfied_in' => 'ពេញចិត្ត',
+ 'say-thanks' => 'សូមកុំភ្លេចនិយាយ អរគុណ និង គ្រាប់ពូជ ឱ្យបានយូរតាមតែអាចធ្វើទៅបាន',
+ 'sd-content' => 'មាតិកា SD',
+ 'search' => 'ស្វែងរក',
+ 'seed-time' => 'ពេលវេលាពូជ',
+ 'seeder' => 'អ្នករៀបចំពូជ',
+ 'seeders' => 'គ្រាប់ពូជ',
+ 'seeding' => 'ការបណ្តុះ',
+ 'seedsize' => 'Seedsize',
+ 'seedtime' => 'ពេលព្រឹក',
+ 'short-completed' => 'C',
+ 'short-leechs' => 'លីត្រ',
+ 'short-seeds' => 'S',
+ 'show-files' => 'បង្ហាញឯកសារ',
+ 'similar' => 'Torrent ស្រដៀងគ្នា',
+ 'size' => 'ទំហំ',
+ 'special' => 'ពិសេស',
+ 'special-freeleech' => 'ពិសេស Freeleech',
+ 'started' => 'បានចាប់ផ្ដើម',
+ 'status' => 'ស្ថានភាព',
+ 'statistics' => 'ស្ថិតិ',
+ 'stats' => 'ស្ថិតិ',
+ 'sticky' => 'ស្អិត',
+ 'stream-optimized' => 'ការស្ទ្រីមប្រសើរ',
+ 'subtitle' => 'ចំណងជើងរង',
+ 'team-player' => 'អ្នកលេងក្រុម',
+ 'thank' => 'អរគុណ',
+ 'thanked' => 'សូមអរគុណ',
+ 'thanks' => 'អរគុណ',
+ 'thanks-given' => 'សូមអរគុណ',
+ 'times' => 'ពេលវេលា',
+ 'tip-jar' => 'ពាងពាង',
+ 'title' => 'ចំណងជើង',
+ 'titles' => 'ចំណងជើង',
+ 'top-completed' => 'កំពូលបានបញ្ចប់',
+ 'top-dead' => 'ស្លាប់កំពូល',
+ 'top-dying' => 'កំពូលស្លាប់',
+ 'top-leeched' => 'កំពូលបានប្រើ',
+ 'top-seeded' => 'ខាងលើគ្រាប់',
+ 'torrent' => 'Torrent',
+ 'torrent-request' => 'សំណើ Torrent',
+ 'torrent-tips' => 'សរុប : សរុប BON ត្រូវបានប្រាប់ដល់អ្នកបង្ហោះដែល អ្នកប្រើ មកពីអ្នក',
+ 'torrent-tips-desc' => 'នេះនឹងត្រូវដកចេញពីពិន្ទុប្រាក់រង្វាន់ដែលអ្នកមាន',
+ 'torrents' => 'Torrents',
+ 'trailer' => 'មើលភាពយន្ត',
+ 'type' => 'វាយ',
+ 'types' => 'ប្រភេទ',
+ 'unbookmark' => 'មិនកំណត់ចំណាំ',
+ 'unsatisfieds' => 'មិនស្កប់ចិត្ត',
+ 'unsticky' => 'មិនឆ្គង',
+ 'updated' => 'ធ្វើបច្ចុប្បន្នភាព',
+ 'updated_at' => 'ធ្វើបច្ចុប្បន្នភាពនៅ',
+ 'uploaded' => 'បានផ្ទុកឡើង',
+ 'uploaded-by' => 'បានផ្ទុកឡើងដោយ',
+ 'uploader' => 'អ្នកផ្ទុកឡើង',
+ 'use-fl-token' => 'ប្រើពាក្យសម្ងាត់ Freeleech',
+ 'video' => 'វីដេអូ',
+ 'view-more' => 'មើលច្រើនទៀត',
+ 'view-trailer' => 'មើលភាពយន្ត',
+ 'votes' => 'ការបោះឆ្នោត',
];
diff --git a/lang/km/user.php b/lang/km/user.php
index b60a3b105..e7d789b63 100644
--- a/lang/km/user.php
+++ b/lang/km/user.php
@@ -12,316 +12,316 @@
*/
return [
- 'about' => 'អំពី',
- 'about-me' => 'អំពីខ្ញុំ',
- 'accepted-at' => 'បានទទួលនៅ',
- 'accepted-by' => 'បានទទួលដោយ',
- 'account-notification' => 'កំណត់ការជូនដំណឹងគណនី',
- 'account-notification-follow' => 'ទទួលការជូនដំណឹងនៅពេលអ្នកប្រើតាមដានគណនីរបស់អ្នក',
- 'account-notification-unfollow' => 'ទទួលការជូនដំណឹងនៅពេលអ្នកប្រើបានដើរតាមគណនីរបស់អ្នក',
- 'account-notification-help' => 'គ្រប់គ្រងការជូនដំណឹងដែលត្រូវផ្ញើទាក់ទងនឹងគណនីរបស់អ្នក។ ការកំណត់ទាំងនេះត្រូវបានបដិសេធប្រសិនបើអ្នកមិនអនុញ្ញាតឱ្យក្រុមណាមួយផ្ញើការជូនដំណឹងអំពីគណនីរបស់អ្នកឬប្រសិនបើអ្នក បិទការជូនដំណឹង',
- 'account-settings' => 'ការកំណត់គណនី',
- 'achievement-privacy' => 'ការកំណត់សមិទ្ធផល',
- 'achievement-privacy-list' => 'អនុញ្ញាតឱ្យអ្នកប្រើមើលបញ្ជីសមិទ្ធផលរបស់អ្នក',
- 'achievement-help' => 'គ្រប់គ្រងការចែករំលែកព័ត៌មានដែលទាក់ទងនឹងសមិទ្ធផលជាក់លាក់ជាមួយក្រុមដែលត្រូវបានអនុញ្ញាតឱ្យចូលប្រើប្រវត្តិរូបរបស់អ្នក។ ការកំណត់ទាំងនេះត្រូវបានបដិសេធប្រសិនបើអ្នកមិនអនុញ្ញាតឱ្យក្រុមណាមួយចូលដំណើរការសមិទ្ធផលរបស់អ្នកឬប្រសិនបើអ្នក ទៅឯកជន',
- 'achievements' => 'សមិទ្ធផល',
- 'active' => 'សកម្ម',
- 'active-table' => 'តារាងសកម្មរបស់ខ្ញុំ',
- 'active-torrents' => 'torrent សកម្ម',
- 'active-warning' => 'ការព្រមានសកម្ម',
- 'active-warnings' => 'ការព្រមានសកម្ម',
- 'add-seedbox' => 'បន្ថែម Seedbox',
- 'all-torrents' => 'Torrent ទាំងអស់',
- 'article-comments' => 'មតិយោបល់បានធ្វើ',
- 'avatar' => 'Avatar',
- 'avg-seedtime' => 'មធ្យមភាគសំណង់',
- 'badges' => 'ផ្លាកសញ្ញា',
- 'ban' => 'ហាមអ្នកប្រើ',
- 'ban-log' => 'ហាមឃាត់កំណត់ហេតុ',
- 'become-hidden' => 'ក្លាយជាការលាក់',
- 'become-visible' => 'ក្លាយជាមុខមាត់',
- 'bon' => 'អរ',
- 'bon-notification' => 'កំណត់ការជូនដំណឹងជូនពរ',
- 'bon-notification-gift' => 'ទទួលបានការជូនដំណឹងនៅពេលដែលអ្នកប្រើផ្តល់អំណោយឱ្យអ្នក',
- 'bon-notification-help' => 'ត្រួតពិនិត្យការជូនដំណឹងដែលត្រូវបានផ្ញើទាក់ទងនឹងប្រតិបត្តិការ BON ។ ការកំណត់ទាំងនេះត្រូវបានបដិសេធប្រសិនបើអ្នកមិនអនុញ្ញាតឱ្យក្រុមណាមួយផ្ញើការជូនដំណឹងអំពី BON ឬប្រសិនបើអ្នក បិទការជូនដំណឹង',
- 'bookmarks' => 'ចំណាំ',
- 'bounty-given' => 'Bounty បានផ្តល់ឱ្យ',
- 'bounty-received' => 'រង្វាន់បានទទួល',
- 'can-chat' => 'អាចជជែកបាន',
- 'can-comment' => 'អាចមានយោបល់',
- 'can-download' => 'អាចទាញយក',
- 'can-invite' => 'អាចអញ្ជើញ',
- 'can-request' => 'អាចស្នើសុំ',
- 'can-upload' => 'អាចផ្ទុកឡើង',
- 'certified-banker' => 'ធនាគារបានបញ្ជាក់',
- 'certified-banker-desc' => 'មាន 50.000 រឺក៏ច្រើនជាងមុននៅក្នុងធនាគារ',
- 'certified-downloader' => 'កម្មវិធីទាញយកវិញ្ញាបនប័ត្រ',
- 'certified-downloader-desc' => 'ទាញយក Torrent ច្រើនជាង 100 ឬច្រើន!',
- 'certified-seeder' => 'អ្នកបង្កាត់សញ្ញាបញ្ជាក់',
- 'certified-seeder-desc' => 'ការបណ្តេញ 150 រឺក៏ Torrent ច្រើនទៀត!',
- 'change-email' => 'ប្តូរអ៊ីម៉ែល',
- 'change-email-help' => 'អ្នកនឹងត្រូវបញ្ជាក់ឡើងវិញនូវគណនីរបស់អ្នកបន្ទាប់ពីអ្នកផ្លាស់ប្តូរអ៊ីម៉ែលរបស់អ្នក',
- 'change-password' => 'ផ្លាស់ប្តូរពាក្យសម្ងាត់',
- 'change-password-help' => 'អ្នកនឹងត្រូវចូលម្តងទៀតបន្ទាប់ពីអ្នកផ្លាស់ប្តូរពាក្យសម្ងាត់របស់អ្នក',
- 'client-ip-address' => 'អាសយដ្ឋាន IP របស់ម៉ាស៊ីនភ្ញៀវ',
- 'code' => 'កូដ',
- 'comments' => 'យោបល់',
- 'created-on' => 'បង្កើតនៅ',
- 'credited-download' => 'ការទាញយកដែលទុកចិត្ត',
- 'credited-upload' => 'ផ្ទុកឡើងដែលបានបញ្ចូល',
- 'current-password' => 'លេខសំងាត់បច្ចុប្បន្ន',
- 'custom-title' => 'ចំណងជើងផ្ទាល់ខ្លួន',
- 'delete' => 'លុបអ្នកប្រើ',
- 'disable-notifications' => 'បិទការជូនដំណឹង',
- 'disclaimer' => 'ការបដិសេធ',
- 'disclaimer-info' => 'យើងតាមលំនាំដើមមិនកត់ត្រាអាសយដ្ឋាន IP អ្នកប្រើដូចកម្មវិធីតាមដានច្រើនបំផុតទេ។ ដោយបន្ថែម IP ដែលជាប្រអប់ស្រោមរបស់អ្នកនៅខាងក្រោមវាត្រូវបានរំពឹងទុកថាអ្នកដឹងថា IPs ដែលអ្នកបានរាយនៅខាងក្រោមត្រូវបានរក្សាទុកនៅក្នុងមូលដ្ឋានទិន្នន័យរបស់យើងលុះត្រាតែអ្នកលុបកំណត់ត្រា។',
- 'disclaimer-info-bordered' => 'IP ដែលបានបន្ថែម Seedbox នឹងត្រូវបានធ្វើឱ្យមានស្លាក torrent ល្បឿនលឿនលើ torrents ដែលមានពី IPs ដែលបានរាយខាងក្រោម',
- 'download-bon' => 'ទាញយកបានយកចេញពីហាងស',
- 'download-recorded' => 'ទាញយកបានទាញយក',
- 'download-true' => 'ទាញយកពិតប្រាកដ',
- 'downloads' => 'ការទាញយក',
- 'edit' => 'កែសម្រួលអ្នកប្រើ',
- 'edit-profile' => 'កែទម្រង់',
- 'enable-notifications' => 'បើកការជូនដំណឹង',
- 'expired' => 'បានផុតកំណត់',
- 'expires-on' => 'ផុតកំណត់នៅថ្ងៃទី',
- 'extra' => 'បន្ថែម',
- 'filled-request' => 'បំពេញសមាជិកសំណើ',
- 'follow' => 'ធ្វើតាម',
- 'follower-privacy' => 'ការកំណត់ដូចខាងក្រោម',
- 'follower-privacy-list' => 'អនុញ្ញាតឱ្យអ្នកប្រើមើលបញ្ជីអ្នកតាមដានរបស់អ្នក',
- 'follower-help' => 'គ្រប់គ្រងការចែករំលែកព័ត៌មានពាក់ព័ន្ធតាមអ្នកដើរតាមជាក់លាក់ជាមួយក្រុមដែលត្រូវបានអនុញ្ញាតឱ្យចូលទៅប្រវត្តិរូបរបស់អ្នក។ ការកំណត់ទាំងនេះត្រូវបានបដិសេធប្រសិនបើអ្នកមិនអនុញ្ញាតឱ្យក្រុមណាមួយចូលប្រើអ្នកតាមឬប្រសិនបើអ្នក ទៅជាឯកជន',
- 'followers' => 'អ្នកតាម',
- 'following-notification' => 'ការកំណត់ការជូនដំណឹងរបស់អ្នកប្រើបន្ទាប់',
- 'following-notification-upload' => 'ទទួលការជូនដំណឹងនៅពេលដែលអ្នកប្រើតាមពីក្រោយបង្ហោះ torrent',
- 'following-notification-help' => 'ត្រួតពិនិត្យការជូនដំណឹងដែលត្រូវបានផ្ញើទាក់ទងនឹងសកម្មភាពបណ្តាញអ្នកប្រើដែលបានអនុវត្ត។ ការកំណត់ទាំងនេះត្រូវបានបដិសេធប្រសិនបើអ្នកមិនអនុញ្ញាតឱ្យក្រុមណាមួយផ្ញើការជូនដំណឹងទាក់ទងនឹងអ្នកប្រើដែលធ្វើតាមឬប្រសិនបើអ្នក បិទការជូនដំណឹង',
- 'formats-are-supported' => ': ទ្រង់ទ្រាយត្រូវបានគាំទ្រ',
- 'forum-notification' => 'ការកំណត់ការជូនដំណឹងវេទិកា',
- 'forum-notification-topic' => 'ទទួលការជូនដំណឹងនៅពេលប្រធានបទដែលអ្នកចាប់ផ្តើមទទួលបានប្រកាសថ្មី',
- 'forum-notification-help' => 'ត្រួតពិនិត្យការជូនដំណឹងដែលត្រូវបានផ្ញើទាក់ទងនឹងសកម្មភាពវេទិកា។ ការកំណត់ទាំងនេះត្រូវបានបដិសេធប្រសិនបើអ្នកមិនអនុញ្ញាតឱ្យក្រុមណាមួយផ្ញើការជូនដំណឹងអំពីសកម្មភាពវេទិការឬប្រសិនបើអ្នក បិទដំណើរការការជូនដំណឹង',
- 'forum-privacy' => 'ការកំណត់វេទិកា',
- 'forum-privacy-post' => 'អនុញ្ញាតឱ្យអ្នកប្រើមើលបញ្ជីប្រកាសវេទិកាដែលអ្នកបានបង្ហោះ',
- 'forum-privacy-topic' => 'អនុញ្ញាតឱ្យអ្នកប្រើមើលបញ្ជីប្រធានបទវេទិកាដែលអ្នកបានចាប់ផ្តើម',
- 'forum-help' => 'គ្រប់គ្រងការចែករំលែកវេទិកាជាក់លាក់ទាក់ទងនឹងស្ថិតិនិងព័ត៌មានជាមួយក្រុមដែលត្រូវបានអនុញ្ញាតឱ្យចូលទៅប្រវត្តិរូបរបស់អ្នក។ ការកំណត់ទាំងនេះត្រូវបានបដិសេធប្រសិនបើអ្នកមិនអនុញ្ញាតឱ្យក្រុមណាមួយចូលដំណើរការស្ថិតិដែលពាក់ព័ន្ធនិងព័ត៌មានរបស់អ្នកឬប្រសិនបើអ្នក ទៅជាឯកជន',
- 'forum-signature' => 'ហត្ថលេខាវេទិកា',
- 'forums' => 'វេទិកា',
- 'general' => 'ទូទៅ',
- 'general-settings' => 'ការកំណត់ទូទៅ',
- 'gift-given' => 'អំណោយដែលបានផ្តល់',
- 'gift-received' => 'ទទួលបានអំណោយ',
- 'go-public' => 'ចូលជាសាធារណៈ',
- 'go-private' => 'ទៅជាឯកជន',
- 'history' => 'ប្រវត្តិ',
- 'history-table' => 'តារាងប្រវត្តិសាស្ត្ររបស់ខ្ញុំ',
- 'hit-n-runs' => 'ចុចនិងរត់',
- 'hit-n-runs-count' => 'ចុចនិងរត់រាប់ (ពេលវេលាទាំងអស់)',
- 'hit-n-runs-history' => 'Torrent ចុចនិងរត់ប្រវត្តិ',
- 'image' => 'រូបភាព',
- 'important' => 'សំខាន់',
- 'important-info' => 'ព័ត៌មានសំខាន់',
- 'information' => 'ពត៌មាន',
- 'invite-friend' => 'អញ្ជើញមិត្តរបស់អ្នក (អ៊ីម៉ែល + សារត្រូវការ)',
- 'invite-tree' => 'អញ្ជើញមែកធាង',
- 'invites' => 'អញ្ជើញ',
- 'invites-banned' => 'កំហុស: សិទ្ធិអញ្ជើញរបស់អ្នកត្រូវបានពិការ',
- 'invites-banned-desc' => 'ប្រសិនបើអ្នកមានអារម្មណ៍ថានេះគឺជាកំហុសសូមទាក់ទងបុគ្គលិក!',
- 'invites-count' => 'អ្នកមាន: រាប់រាប់សញ្ញាអញ្ជើញ',
- 'invites-disabled' => 'យកចិត្តទុកដាក់: ការអញ្ជើញត្រូវបានបិទដោយសារតែការចុះឈ្មោះបើក!',
- 'invites-disabled-desc' => 'សូមពិនិត្យមើលឡើងវិញឆាប់ៗ!',
- 'invites-rules' => '- អញ្ជើញតែអ្នកដែលអ្នកស្គាល់និងទុកចិត្តប៉ុណ្ណោះ។
- អ្នកនឹងត្រូវទទួលខុសត្រូវដោយផ្ទាល់ចំពោះអ្នកដែលអ្នកអញ្ជើញ។
- មិនអញ្ជើញខ្លួនឯងទេយើងពិនិត្យមើលគ្រប់អ្នកប្រើដែលបានអញ្ជើញ។
- កុំធ្វើពាណិជ្ជកម្មឬលក់ការអញ្ជើញ។
- ប្រសិនបើមនុស្សដែលអ្នកបានអញ្ជើញត្រូវបានគេចាប់បានការជួញដូរឬការជួញដូរឬការជួញដូរអ្នកនឹងត្រូវបានព្រមាន។
',
- 'invites-send' => 'អញ្ជើញផ្ញើ',
- 'last-login' => 'ការចូលចុងក្រោយ',
- 'locked' => 'បានចាក់សោ',
- 'locked-achievements' => 'សមិទ្ធផលជាប់សោ',
- 'member-since' => 'សមាជិកចាប់តាំងពីពេលនោះ',
- 'members-desc' => 'បញ្ជីអ្នកប្រើដែលបានចុះឈ្មោះលើ: ចំណងជើងជាមួយក្រុមទាំងអស់។ ស្វែងរកអ្នកប្រើឥឡូវនេះ។',
- 'mention-notification' => '@ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @',
+ 'about' => 'អំពី',
+ 'about-me' => 'អំពីខ្ញុំ',
+ 'accepted-at' => 'បានទទួលនៅ',
+ 'accepted-by' => 'បានទទួលដោយ',
+ 'account-notification' => 'កំណត់ការជូនដំណឹងគណនី',
+ 'account-notification-follow' => 'ទទួលការជូនដំណឹងនៅពេលអ្នកប្រើតាមដានគណនីរបស់អ្នក',
+ 'account-notification-unfollow' => 'ទទួលការជូនដំណឹងនៅពេលអ្នកប្រើបានដើរតាមគណនីរបស់អ្នក',
+ 'account-notification-help' => 'គ្រប់គ្រងការជូនដំណឹងដែលត្រូវផ្ញើទាក់ទងនឹងគណនីរបស់អ្នក។ ការកំណត់ទាំងនេះត្រូវបានបដិសេធប្រសិនបើអ្នកមិនអនុញ្ញាតឱ្យក្រុមណាមួយផ្ញើការជូនដំណឹងអំពីគណនីរបស់អ្នកឬប្រសិនបើអ្នក បិទការជូនដំណឹង',
+ 'account-settings' => 'ការកំណត់គណនី',
+ 'achievement-privacy' => 'ការកំណត់សមិទ្ធផល',
+ 'achievement-privacy-list' => 'អនុញ្ញាតឱ្យអ្នកប្រើមើលបញ្ជីសមិទ្ធផលរបស់អ្នក',
+ 'achievement-help' => 'គ្រប់គ្រងការចែករំលែកព័ត៌មានដែលទាក់ទងនឹងសមិទ្ធផលជាក់លាក់ជាមួយក្រុមដែលត្រូវបានអនុញ្ញាតឱ្យចូលប្រើប្រវត្តិរូបរបស់អ្នក។ ការកំណត់ទាំងនេះត្រូវបានបដិសេធប្រសិនបើអ្នកមិនអនុញ្ញាតឱ្យក្រុមណាមួយចូលដំណើរការសមិទ្ធផលរបស់អ្នកឬប្រសិនបើអ្នក ទៅឯកជន',
+ 'achievements' => 'សមិទ្ធផល',
+ 'active' => 'សកម្ម',
+ 'active-table' => 'តារាងសកម្មរបស់ខ្ញុំ',
+ 'active-torrents' => 'torrent សកម្ម',
+ 'active-warning' => 'ការព្រមានសកម្ម',
+ 'active-warnings' => 'ការព្រមានសកម្ម',
+ 'add-seedbox' => 'បន្ថែម Seedbox',
+ 'all-torrents' => 'Torrent ទាំងអស់',
+ 'article-comments' => 'មតិយោបល់បានធ្វើ',
+ 'avatar' => 'Avatar',
+ 'avg-seedtime' => 'មធ្យមភាគសំណង់',
+ 'badges' => 'ផ្លាកសញ្ញា',
+ 'ban' => 'ហាមអ្នកប្រើ',
+ 'ban-log' => 'ហាមឃាត់កំណត់ហេតុ',
+ 'become-hidden' => 'ក្លាយជាការលាក់',
+ 'become-visible' => 'ក្លាយជាមុខមាត់',
+ 'bon' => 'អរ',
+ 'bon-notification' => 'កំណត់ការជូនដំណឹងជូនពរ',
+ 'bon-notification-gift' => 'ទទួលបានការជូនដំណឹងនៅពេលដែលអ្នកប្រើផ្តល់អំណោយឱ្យអ្នក',
+ 'bon-notification-help' => 'ត្រួតពិនិត្យការជូនដំណឹងដែលត្រូវបានផ្ញើទាក់ទងនឹងប្រតិបត្តិការ BON ។ ការកំណត់ទាំងនេះត្រូវបានបដិសេធប្រសិនបើអ្នកមិនអនុញ្ញាតឱ្យក្រុមណាមួយផ្ញើការជូនដំណឹងអំពី BON ឬប្រសិនបើអ្នក បិទការជូនដំណឹង',
+ 'bookmarks' => 'ចំណាំ',
+ 'bounty-given' => 'Bounty បានផ្តល់ឱ្យ',
+ 'bounty-received' => 'រង្វាន់បានទទួល',
+ 'can-chat' => 'អាចជជែកបាន',
+ 'can-comment' => 'អាចមានយោបល់',
+ 'can-download' => 'អាចទាញយក',
+ 'can-invite' => 'អាចអញ្ជើញ',
+ 'can-request' => 'អាចស្នើសុំ',
+ 'can-upload' => 'អាចផ្ទុកឡើង',
+ 'certified-banker' => 'ធនាគារបានបញ្ជាក់',
+ 'certified-banker-desc' => 'មាន 50.000 រឺក៏ច្រើនជាងមុននៅក្នុងធនាគារ',
+ 'certified-downloader' => 'កម្មវិធីទាញយកវិញ្ញាបនប័ត្រ',
+ 'certified-downloader-desc' => 'ទាញយក Torrent ច្រើនជាង 100 ឬច្រើន!',
+ 'certified-seeder' => 'អ្នកបង្កាត់សញ្ញាបញ្ជាក់',
+ 'certified-seeder-desc' => 'ការបណ្តេញ 150 រឺក៏ Torrent ច្រើនទៀត!',
+ 'change-email' => 'ប្តូរអ៊ីម៉ែល',
+ 'change-email-help' => 'អ្នកនឹងត្រូវបញ្ជាក់ឡើងវិញនូវគណនីរបស់អ្នកបន្ទាប់ពីអ្នកផ្លាស់ប្តូរអ៊ីម៉ែលរបស់អ្នក',
+ 'change-password' => 'ផ្លាស់ប្តូរពាក្យសម្ងាត់',
+ 'change-password-help' => 'អ្នកនឹងត្រូវចូលម្តងទៀតបន្ទាប់ពីអ្នកផ្លាស់ប្តូរពាក្យសម្ងាត់របស់អ្នក',
+ 'client-ip-address' => 'អាសយដ្ឋាន IP របស់ម៉ាស៊ីនភ្ញៀវ',
+ 'code' => 'កូដ',
+ 'comments' => 'យោបល់',
+ 'created-on' => 'បង្កើតនៅ',
+ 'credited-download' => 'ការទាញយកដែលទុកចិត្ត',
+ 'credited-upload' => 'ផ្ទុកឡើងដែលបានបញ្ចូល',
+ 'current-password' => 'លេខសំងាត់បច្ចុប្បន្ន',
+ 'custom-title' => 'ចំណងជើងផ្ទាល់ខ្លួន',
+ 'delete' => 'លុបអ្នកប្រើ',
+ 'disable-notifications' => 'បិទការជូនដំណឹង',
+ 'disclaimer' => 'ការបដិសេធ',
+ 'disclaimer-info' => 'យើងតាមលំនាំដើមមិនកត់ត្រាអាសយដ្ឋាន IP អ្នកប្រើដូចកម្មវិធីតាមដានច្រើនបំផុតទេ។ ដោយបន្ថែម IP ដែលជាប្រអប់ស្រោមរបស់អ្នកនៅខាងក្រោមវាត្រូវបានរំពឹងទុកថាអ្នកដឹងថា IPs ដែលអ្នកបានរាយនៅខាងក្រោមត្រូវបានរក្សាទុកនៅក្នុងមូលដ្ឋានទិន្នន័យរបស់យើងលុះត្រាតែអ្នកលុបកំណត់ត្រា។',
+ 'disclaimer-info-bordered' => 'IP ដែលបានបន្ថែម Seedbox នឹងត្រូវបានធ្វើឱ្យមានស្លាក torrent ល្បឿនលឿនលើ torrents ដែលមានពី IPs ដែលបានរាយខាងក្រោម',
+ 'download-bon' => 'ទាញយកបានយកចេញពីហាងស',
+ 'download-recorded' => 'ទាញយកបានទាញយក',
+ 'download-true' => 'ទាញយកពិតប្រាកដ',
+ 'downloads' => 'ការទាញយក',
+ 'edit' => 'កែសម្រួលអ្នកប្រើ',
+ 'edit-profile' => 'កែទម្រង់',
+ 'enable-notifications' => 'បើកការជូនដំណឹង',
+ 'expired' => 'បានផុតកំណត់',
+ 'expires-on' => 'ផុតកំណត់នៅថ្ងៃទី',
+ 'extra' => 'បន្ថែម',
+ 'filled-request' => 'បំពេញសមាជិកសំណើ',
+ 'follow' => 'ធ្វើតាម',
+ 'follower-privacy' => 'ការកំណត់ដូចខាងក្រោម',
+ 'follower-privacy-list' => 'អនុញ្ញាតឱ្យអ្នកប្រើមើលបញ្ជីអ្នកតាមដានរបស់អ្នក',
+ 'follower-help' => 'គ្រប់គ្រងការចែករំលែកព័ត៌មានពាក់ព័ន្ធតាមអ្នកដើរតាមជាក់លាក់ជាមួយក្រុមដែលត្រូវបានអនុញ្ញាតឱ្យចូលទៅប្រវត្តិរូបរបស់អ្នក។ ការកំណត់ទាំងនេះត្រូវបានបដិសេធប្រសិនបើអ្នកមិនអនុញ្ញាតឱ្យក្រុមណាមួយចូលប្រើអ្នកតាមឬប្រសិនបើអ្នក ទៅជាឯកជន',
+ 'followers' => 'អ្នកតាម',
+ 'following-notification' => 'ការកំណត់ការជូនដំណឹងរបស់អ្នកប្រើបន្ទាប់',
+ 'following-notification-upload' => 'ទទួលការជូនដំណឹងនៅពេលដែលអ្នកប្រើតាមពីក្រោយបង្ហោះ torrent',
+ 'following-notification-help' => 'ត្រួតពិនិត្យការជូនដំណឹងដែលត្រូវបានផ្ញើទាក់ទងនឹងសកម្មភាពបណ្តាញអ្នកប្រើដែលបានអនុវត្ត។ ការកំណត់ទាំងនេះត្រូវបានបដិសេធប្រសិនបើអ្នកមិនអនុញ្ញាតឱ្យក្រុមណាមួយផ្ញើការជូនដំណឹងទាក់ទងនឹងអ្នកប្រើដែលធ្វើតាមឬប្រសិនបើអ្នក បិទការជូនដំណឹង',
+ 'formats-are-supported' => ': ទ្រង់ទ្រាយត្រូវបានគាំទ្រ',
+ 'forum-notification' => 'ការកំណត់ការជូនដំណឹងវេទិកា',
+ 'forum-notification-topic' => 'ទទួលការជូនដំណឹងនៅពេលប្រធានបទដែលអ្នកចាប់ផ្តើមទទួលបានប្រកាសថ្មី',
+ 'forum-notification-help' => 'ត្រួតពិនិត្យការជូនដំណឹងដែលត្រូវបានផ្ញើទាក់ទងនឹងសកម្មភាពវេទិកា។ ការកំណត់ទាំងនេះត្រូវបានបដិសេធប្រសិនបើអ្នកមិនអនុញ្ញាតឱ្យក្រុមណាមួយផ្ញើការជូនដំណឹងអំពីសកម្មភាពវេទិការឬប្រសិនបើអ្នក បិទដំណើរការការជូនដំណឹង',
+ 'forum-privacy' => 'ការកំណត់វេទិកា',
+ 'forum-privacy-post' => 'អនុញ្ញាតឱ្យអ្នកប្រើមើលបញ្ជីប្រកាសវេទិកាដែលអ្នកបានបង្ហោះ',
+ 'forum-privacy-topic' => 'អនុញ្ញាតឱ្យអ្នកប្រើមើលបញ្ជីប្រធានបទវេទិកាដែលអ្នកបានចាប់ផ្តើម',
+ 'forum-help' => 'គ្រប់គ្រងការចែករំលែកវេទិកាជាក់លាក់ទាក់ទងនឹងស្ថិតិនិងព័ត៌មានជាមួយក្រុមដែលត្រូវបានអនុញ្ញាតឱ្យចូលទៅប្រវត្តិរូបរបស់អ្នក។ ការកំណត់ទាំងនេះត្រូវបានបដិសេធប្រសិនបើអ្នកមិនអនុញ្ញាតឱ្យក្រុមណាមួយចូលដំណើរការស្ថិតិដែលពាក់ព័ន្ធនិងព័ត៌មានរបស់អ្នកឬប្រសិនបើអ្នក ទៅជាឯកជន',
+ 'forum-signature' => 'ហត្ថលេខាវេទិកា',
+ 'forums' => 'វេទិកា',
+ 'general' => 'ទូទៅ',
+ 'general-settings' => 'ការកំណត់ទូទៅ',
+ 'gift-given' => 'អំណោយដែលបានផ្តល់',
+ 'gift-received' => 'ទទួលបានអំណោយ',
+ 'go-public' => 'ចូលជាសាធារណៈ',
+ 'go-private' => 'ទៅជាឯកជន',
+ 'history' => 'ប្រវត្តិ',
+ 'history-table' => 'តារាងប្រវត្តិសាស្ត្ររបស់ខ្ញុំ',
+ 'hit-n-runs' => 'ចុចនិងរត់',
+ 'hit-n-runs-count' => 'ចុចនិងរត់រាប់ (ពេលវេលាទាំងអស់)',
+ 'hit-n-runs-history' => 'Torrent ចុចនិងរត់ប្រវត្តិ',
+ 'image' => 'រូបភាព',
+ 'important' => 'សំខាន់',
+ 'important-info' => 'ព័ត៌មានសំខាន់',
+ 'information' => 'ពត៌មាន',
+ 'invite-friend' => 'អញ្ជើញមិត្តរបស់អ្នក (អ៊ីម៉ែល + សារត្រូវការ)',
+ 'invite-tree' => 'អញ្ជើញមែកធាង',
+ 'invites' => 'អញ្ជើញ',
+ 'invites-banned' => 'កំហុស: សិទ្ធិអញ្ជើញរបស់អ្នកត្រូវបានពិការ',
+ 'invites-banned-desc' => 'ប្រសិនបើអ្នកមានអារម្មណ៍ថានេះគឺជាកំហុសសូមទាក់ទងបុគ្គលិក!',
+ 'invites-count' => 'អ្នកមាន: រាប់រាប់សញ្ញាអញ្ជើញ',
+ 'invites-disabled' => 'យកចិត្តទុកដាក់: ការអញ្ជើញត្រូវបានបិទដោយសារតែការចុះឈ្មោះបើក!',
+ 'invites-disabled-desc' => 'សូមពិនិត្យមើលឡើងវិញឆាប់ៗ!',
+ 'invites-rules' => '- អញ្ជើញតែអ្នកដែលអ្នកស្គាល់និងទុកចិត្តប៉ុណ្ណោះ។
- អ្នកនឹងត្រូវទទួលខុសត្រូវដោយផ្ទាល់ចំពោះអ្នកដែលអ្នកអញ្ជើញ។
- មិនអញ្ជើញខ្លួនឯងទេយើងពិនិត្យមើលគ្រប់អ្នកប្រើដែលបានអញ្ជើញ។
- កុំធ្វើពាណិជ្ជកម្មឬលក់ការអញ្ជើញ។
- ប្រសិនបើមនុស្សដែលអ្នកបានអញ្ជើញត្រូវបានគេចាប់បានការជួញដូរឬការជួញដូរឬការជួញដូរអ្នកនឹងត្រូវបានព្រមាន។
',
+ 'invites-send' => 'អញ្ជើញផ្ញើ',
+ 'last-login' => 'ការចូលចុងក្រោយ',
+ 'locked' => 'បានចាក់សោ',
+ 'locked-achievements' => 'សមិទ្ធផលជាប់សោ',
+ 'member-since' => 'សមាជិកចាប់តាំងពីពេលនោះ',
+ 'members-desc' => 'បញ្ជីអ្នកប្រើដែលបានចុះឈ្មោះលើ: ចំណងជើងជាមួយក្រុមទាំងអស់។ ស្វែងរកអ្នកប្រើឥឡូវនេះ។',
+ 'mention-notification' => '@ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @',
'mention-notification-article-comment' => 'ទទួលបានការជូនដំណឹងនៅពេលអ្នកត្រូវបានគេអធិប្បាយនៅក្នុងអត្ថបទ',
'mention-notification-torrent-comment' => 'ទទួលការជូនដំណឹងនៅពេលអ្នកត្រូវបានគេបង្ហាត់មតិយោបល់នៅក្នុង torrent',
'mention-notification-request-comment' => 'ទទួលការជូនដំណឹងនៅពេលដែលអ្នកត្រូវបានគេធ្វើសេចក្តីអធិប្បាយក្នុងសេចក្តីស្នើ',
- 'mention-notification-forum-post' => 'ទទួលការជូនដំណឹងនៅពេលអ្នកត្រូវបានគេបង្ហាត់ក្នុងវេទិកា',
- 'mention-notification-help' => 'គ្រប់គ្រងការជូនដំណឹងដែលត្រូវបានផ្ញើនៅពេលអ្នកប្រើ @mentions អ្នក។ ការកំណត់ទាំងនេះត្រូវបានបដិសេធប្រសិនបើអ្នកមិនអនុញ្ញាតឱ្យក្រុមណាមួយផ្ញើការជូនដំណឹងបើអ្នកប្រើ @mentions អ្នកឬប្រសិនបើអ្នក បិទការជូនដំណឹង',
- 'moderated-by' => 'សម្របសម្រួលដោយ: mod on',
- 'my-bonus-points' => 'ពិន្ទុបន្ថែមរបស់ខ្ញុំ',
- 'my-bookmarks' => 'ចំណាំរបស់ខ្ញុំ',
- 'my-fl-tokens' => 'ថូខឹន FL របស់ខ្ញុំ',
- 'my-general-settings' => 'ការកំណត់ទូទៅរបស់ខ្ញុំ',
- 'my-notification' => 'ការជូនដំណឹងរបស់ខ្ញុំ',
- 'my-notification-settings' => 'ការកំណត់ការជូនដំណឹងរបស់ខ្ញុំ',
- 'my-privacy' => 'ភាពឯកជនរបស់ខ្ញុំ',
- 'my-privacy-settings' => 'ការកំណត់ឯកជនភាពរបស់ខ្ញុំ',
- 'my-profile' => 'ពត៌មានរបស់ខ្ញុំ',
- 'my-requested' => 'សំណើរបស់ខ្ញុំ',
- 'my-security' => 'សន្តិសុខរបស់ខ្ញុំ',
- 'my-security-settings' => 'ការកំណត់សុវត្ថិភាពរបស់ខ្ញុំ',
- 'my-seedboxes' => 'My Seedboxes',
- 'my-settings' => 'ការកំណត់របស់ខ្ញុំ',
- 'my-wishlist' => 'បញ្ជីប្រាថ្នារបស់ខ្ញុំ',
- 'no-logs' => 'នេះមិនមែនជាកំណត់ហេតុនៃការអញ្ជើញនៅក្នុងមូលដ្ឋានទិន្នន័យសម្រាប់អ្នកប្រើនេះទេ!',
- 'no-seedboxes' => 'គ្មានប្រអប់គ្រាប់😔',
- 'not-authorized' => 'អ្នកមិនត្រូវបានអនុញ្ញាតឱ្យមើលទំព័រនេះទេ។ សមាជិកនេះចូលចិត្តលាក់ខ្លួនដូចជា Ninja មែន!',
- 'note' => 'ចំណាំ',
- 'notification' => 'សេចក្តីជូនដំណឹង',
- 'notification-settings' => 'កំណត់ការជូនដំណឹង',
- 'notification-from-account' => 'ទទួលបានការជូនដំណឹងអំពីគណនីពី',
- 'notification-from-account-help' => 'អ្នកនឹងទទួលបានការជូនដំណឹងគណនីពីប្រព័ន្ធបុគ្គលិកនិងក្រុមដូចខាងក្រោម។ ការកំណត់ទាំងនេះត្រូវបានបដិសេធប្រសិនបើអ្នក បិទការជូនដំណឹង',
- 'notification-from-bon' => 'ទទួលបានការជូនដំណឹងពីក្រុមហ៊ុន BON',
- 'notification-from-bon-help' => 'អ្នកនឹងទទួលបានការជូនដំណឹងពីក្រុមហ៊ុនប្រព័ន្ធបុគ្គលិកនិងក្រុមដូចខាងក្រោមប៉ុណ្ណោះ។ ការកំណត់ទាំងនេះត្រូវបានបដិសេធប្រសិនបើអ្នក បិទការជូនដំណឹង',
- 'notification-from-following' => 'ទទួលបានការជូនដំណឹងពីអ្នកដើរតាមពី',
- 'notification-from-following-help' => 'អ្នកនឹងទទួលបានការជូនដំណឹងអ្នកប្រើតាមពីក្រោយដូចខាងក្រោម។ ការកំណត់ទាំងនេះត្រូវបានបដិសេធប្រសិនបើអ្នក បិទការជូនដំណឹង',
- 'notification-from-forum' => 'ទទួលបានការជូនដំណឹងវេទិកាពី',
- 'notification-from-forum-help' => 'អ្នកនឹងទទួលបានការជូនដំណឹងវេទិកាពីប្រព័ន្ធបុគ្គលិកនិងក្រុមដូចខាងក្រោម។ ការកំណត់ទាំងនេះត្រូវបានបដិសេធប្រសិនបើអ្នក បិទការជូនដំណឹង',
- 'notification-from-subscription' => 'ទទួលបានការជូនដំណឹងជាវពី',
- 'notification-from-subscription-help' => 'អ្នកនឹងទទួលបានការជូនដំណឹងវេទិកាពីប្រព័ន្ធបុគ្គលិកនិងក្រុមដូចខាងក្រោម។ ការកំណត់ទាំងនេះត្រូវបានបដិសេធប្រសិនបើអ្នក បិទការជូនដំណឹង',
- 'notification-from-torrent' => 'ទទួលបានការជូនដំណឹង Torrent ពី',
- 'notification-from-torrent-help' => 'អ្នកនឹងទទួលបានការជូនដំណឹង torrent ពីប្រព័ន្ធបុគ្គលិកនិងក្រុមដូចខាងក្រោម។ ការកំណត់ទាំងនេះត្រូវបានបដិសេធប្រសិនបើអ្នក បិទការជូនដំណឹង',
- 'notification-from-mention' => 'ទទួលយក @Mention ការជូនដំណឹងពី',
- 'notification-from-mention-help' => 'អ្នកនឹងទទួលបានការជូនដំណឹងអំពី @mention ពីប្រព័ន្ធបុគ្គលិកនិងក្រុមដូចខាងក្រោម។ ការកំណត់ទាំងនេះត្រូវបានបដិសេធប្រសិនបើអ្នក បិទការជូនដំណឹង',
- 'notification-from-request' => 'ទទួលបានការជូនដំណឹងពីការស្នើសុំ',
- 'notification-from-request-help' => 'អ្នកនឹងទទួលបានការជូនដំណឹងស្នើសុំពីប្រព័ន្ធបុគ្គលិកនិងក្រុមដូចខាងក្រោម។ ការកំណត់ទាំងនេះត្រូវបានបដិសេធប្រសិនបើអ្នក បិទការជូនដំណឹង',
- 'notifications' => 'ការជូនដំណឹង',
- 'offline' => 'អ្នកប្រើនៅក្រៅបណ្ដាញ!',
- 'online' => 'អ្នកប្រើនៅលើអ៊ីនធឺណិត!',
- 'options' => 'ជម្រើស',
- 'other-help' => 'គ្រប់គ្រងការចែករំលែកស្ថិតិនិងព័ត៌មានផ្សេងទៀតជាមួយក្រុមដែលត្រូវបានអនុញ្ញាតឱ្យចូលទៅប្រវត្តិរូបរបស់អ្នក។ ការកំណត់ទាំងនេះត្រូវបានបដិសេធប្រសិនបើអ្នកមិនអនុញ្ញាតឱ្យក្រុមណាមួយចូលប្រើស្ថិតិនិងព័ត៌មានផ្សេងទៀតរបស់អ្នកឬប្រសិនបើអ្នក ទៅជាឯកជន',
- 'other-privacy' => 'ការកំណត់ផ្សេងៗ',
- 'other-privacy-online' => 'អនុញ្ញាតឱ្យអ្នកប្រើឃើញអ្នកនៅក្នុងប្លុកអ្នកប្រើលើបណ្តាញ',
- 'passkey' => 'PID',
- 'passkey-warning' => 'PID គឺដូចជាពាក្យសម្ងាត់របស់អ្នកអ្នកត្រូវរក្សាទុកវាឱ្យមានសុវត្ថិភាព!',
- 'pending-achievements' => 'ស្នាដៃដែលមិនទាន់សម្រេច',
- 'per-torrent' => 'ក្នុងមួយ Torrent',
- 'posts' => 'ប្រកាស',
- 'posts-posted' => 'ប្រកាសវេទិកាប្រកាស',
- 'privacy' => 'ភាពឯកជន',
- 'privacy-settings' => 'ការកំណត់ភាពឯកជន',
- 'private-info' => 'ព័ត៌មានឯកជន',
- 'private-forum-profile' => 'ការយកចិត្តទុកដាក់: ប្រធានបទរបស់ប្រធានបទនេះនិងប្រៃសណីយ៍ត្រូវបានកំណត់ឱ្យ PRIVATE!',
- 'private-profile' => 'ការយកចិត្តទុកដាក់: ទម្រង់នេះត្រូវបានកំណត់ដើម្បី PRIVATE!',
- 'profile' => 'ទម្រង់',
- 'profile-desc' => 'អ្នកប្រើ: ទម្រង់អ្នកប្រើបានចុះឈ្មោះនៅលើ: ចំណងជើង',
- 'profile-privacy' => 'ការកំណត់ប្រវត្តិរូប',
- 'profile-privacy-torrent-count' => 'ចែករំលែកចំនួនសរុបនៃការទាញយក, ការផ្ទុកឡើង, គ្រាប់ពូជនិងកេះ',
- 'profile-privacy-torrent-ratio' => 'ចែករំលែកទិន្នន័យផ្ទុកឡើង / ទាញយកសរុបរបស់អ្នកជាមួយនឹងសមាមាត្រដែលបានថត',
- 'profile-privacy-torrent-seed' => 'ចែករំលែកពេលវេលានិងការបូកសរុបសរុបរបស់អ្នក',
- 'profile-privacy-title' => 'ចែករំលែកព័ត៌មានចំណងជើងផ្ទាល់ខ្លួនរបស់អ្នក',
- 'profile-privacy-about' => 'ចែករំលែកព័ត៌មានផ្ទាល់ខ្លួនរបស់អ្នកអំពីខ្ញុំ',
- 'profile-privacy-bon-extra' => 'ចែករំលែកស្ថិតិរបស់អ្នក',
- 'profile-privacy-comment-extra' => 'ចែករំលែកស្ថិតិមតិយោបល់របស់អ្នក',
- 'profile-privacy-forum-extra' => 'ចែករំលែកស្ថិតិវេទិការបស់អ្នក',
- 'profile-privacy-request-extra' => 'ចែករំលែកស្ថិតិសំណើរបស់អ្នក',
- 'profile-privacy-torrent-extra' => 'ចែករំលែកស្ថិតិ torrent របស់អ្នក',
- 'profile-privacy-badge' => 'ចែករំលែកផ្លាកសញ្ញាដែលរកបានរបស់អ្នក',
- 'profile-privacy-achievement' => 'ចែករំលែកសមិទ្ធផលថ្មីៗរបស់អ្នក',
- 'profile-privacy-follower' => 'ចែករំលែកអ្នកតាមថ្មីៗរបស់អ្នក',
- 'profile-privacy-warning' => 'ចែករំលែកការព្រមានក្រុមហ៊ុន H & R របស់អ្នក',
- 'profile-privacy-help' => 'ត្រួតពិនិត្យស្ថិតិនិងបំណែកពត៌មានលេចឡើងនៅលើទម្រង់របស់អ្នក។ ការកំណត់ទាំងនេះត្រូវបានបដិសេធប្រសិនបើអ្នកមិនអនុញ្ញាតឱ្យក្រុមណាមួយចូលដំណើរការទម្រង់របស់អ្នកឬប្រសិនបើអ្នក ទៅឯកជន',
- 'public-info' => 'ព័ត៌មានសាធារណៈ',
- 'recent-achievements' => 'សមិទ្ធផលថ្មីៗ',
- 'recent-followers' => 'អ្នកតាមថ្មីៗ',
- 'registration-date' => 'កាលបរិច្ឆេទចុះបញ្ជី',
- 'report' => 'របាយការណ៍',
- 'request-help' => 'គ្រប់គ្រងការចែករំលែកការស្នើសុំជាក់លាក់ទាក់ទងនឹងស្ថិតិនិងព័ត៌មានជាមួយក្រុមដែលអនុញ្ញាតឱ្យចូលទៅប្រវត្តិរូបរបស់អ្នក។ ការកំណត់ទាំងនេះត្រូវបានបដិសេធប្រសិនបើអ្នកមិនអនុញ្ញាតឱ្យក្រុមណាមួយចូលទៅកាន់ស្ថិតិដែលពាក់ព័ន្ធនិងព័ត៌មានដែលពាក់ព័ន្ធរបស់អ្នកឬប្រសិនបើអ្នក ទៅជាឯកជន',
- 'request' => 'សំណើ',
- 'requested' => 'បានស្នើ',
- 'requests' => 'សំណូមពរ',
- 'request-comments' => 'ស្នើសុំយោបល់',
- 'request-notification' => 'ស្នើសុំការកំណត់ការជូនដំណឹង',
- 'request-notification-bounty' => 'ទទួលការជូនដំណឹងនៅពេលដែល torrent ដែលស្នើសុំទទួលបានរង្វាន់ថ្មី',
- 'request-notification-comment' => 'ទទួលការជូនដំណឹងនៅពេលដែល torrent ដែលបានស្នើសុំទទួលបានមតិយោបល់ថ្មី',
- 'request-notification-fill' => 'ទទួលការជូនដំណឹងនៅពេលដែល torrent ដែលបានស្នើត្រូវបានបំពេញ',
- 'request-notification-fill-approve' => 'ទទួលការជូនដំណឹងនៅពេលការបំពេញ torrent ដែលបានស្នើសុំត្រូវបានអនុម័ត',
- 'request-notification-fill-reject' => 'ទទួលការជូនដំណឹងនៅពេលការបំពេញ torrent ដែលបានស្នើសុំត្រូវបានបដិសេធ',
- 'request-notification-claim' => 'ទទួលបានការជូនដំណឹងនៅពេលដែលមាន torrent ដែលបានស្នើសុំ',
- 'request-notification-unclaim' => 'ទទួលការជូនដំណឹងនៅពេលដែល torrent ដែលបានស្នើសុំមិនទទួលស្គាល់',
- 'request-notification-help' => 'គ្រប់គ្រងការជូនដំណឹងដែលត្រូវបានផ្ញើទាក់ទងនឹងសកម្មភាពស្នើសុំ។ ការកំណត់ទាំងនេះត្រូវបានបដិសេធប្រសិនបើអ្នកមិនអនុញ្ញាតឱ្យក្រុមណាមួយផ្ញើការជូនដំណឹងទាក់ទងនឹងសកម្មភាពស្នើសុំឬប្រសិនបើអ្នក បិទការជូនដំណឹង',
- 'request-privacy' => 'កំណត់ការស្នើសុំ',
- 'request-privacy-requested' => 'អនុញ្ញាតឱ្យអ្នកប្រើប្រាស់មើលបញ្ជីសំណើរដែលអ្នកបានបង្កើត',
- 'reset-passkey' => 'កំណត់លេខសំងាត់ថ្មីឡើងវិញ (PID)',
- 'reset-passkey-help' => 'អ្នកនឹងត្រូវទាញយកឡើងវិញ / ផ្ទុកឡើងវិញនូវរាល់ torrent សកម្មទាំងអស់របស់អ្នកបន្ទាប់ពីការកំណត់ PID ឡើងវិញ',
- 'reset-rss' => 'កំណត់ពាក្យសម្ងាត់ឡើងវិញ (RID)',
- 'reset-rss-help' => 'អ្នកនឹងត្រូវផ្ទុកឡើងវិញរាល់មតិព័ត៌មាន RSS សកម្មរបស់អ្នកបន្ទាប់ពីការកំណត់ RID ឡើងវិញ',
- 'resurrections' => 'ការរស់ឡើងវិញ',
- 'search' => 'ស្វែងរករហ័សតាមឈ្មោះអ្នកប្រើ',
- 'security' => 'សន្តិសុខ',
- 'security-settings' => 'ការកំណត់សុវត្ថិភាព',
- 'seedboxes' => 'Seedboxes',
- 'seeds' => 'គ្រាប់',
- 'send-invite' => 'ផ្ញើការអញ្ជើញ',
- 'sender' => 'អ្នកផ្ញើ',
- 'settings' => 'ការកំណត់',
- 'show-passkey' => 'បង្ហាញ PID',
- 'staff-noted' => 'បុគ្គលិកកត់សំគាល់គណនី',
- 'statistics' => 'ស្ថិតិ',
- 'subscription-notification' => 'ការកំណត់ជូនដំណឹងការជាវ',
- 'subscription-notification-forum' => 'ទទួលការជូនដំណឹងនៅពេលដែលវេទិកាជាវបានទទួលប្រធានបទថ្មី',
- 'subscription-notification-topic' => 'ទទួលការជូនដំណឹងនៅពេលប្រធានបទដែលបានជាវបានទទួលប្រកាសថ្មី',
- 'subscription-notification-help' => 'គ្រប់គ្រងការជូនដំណឹងដែលត្រូវបានផ្ញើទាក់ទងនឹងការជាវប្រចាំរបស់អ្នក។ ការកំណត់ទាំងនេះត្រូវបានបដិសេធប្រសិនបើអ្នកមិនអនុញ្ញាតឱ្យក្រុមណាមួយផ្ញើការជូនដំណឹងទាក់ទងនឹងការជាវប្រចាំរបស់អ្នកឬប្រសិនបើអ្នក បិទការជូនដំណឹង',
- 'thanks-given' => 'សូមអរគុណ',
- 'thanks-received' => 'អរគុណដែលបានទទួល',
- 'tips-given' => 'គន្លឹះផ្តល់ឱ្យ',
- 'tips-received' => 'ព័ត៌មានជំនួយបានទទួល',
- 'title' => 'ចំណងជើង',
- 'top-bankers' => 'ធនាគារកំពូល',
- 'top-downloaders-data' => 'អ្នកទាញយកកំពូល (ទិន្នន័យ)',
- 'top-leechers' => 'Leechers កំពូល',
- 'top-leechers-count' => 'Top Leechers (រាប់)',
- 'top-seeders' => 'គ្រាប់ពូជខាងលើ',
- 'top-seeders-count' => 'អ្នកកាប់ឈើកំពូល (រាប់)',
- 'top-seeding-size' => 'ការបែងចែកផ្នែកខាងលើ (ទំហំ)',
- 'top-seedtime' => 'គ្រាប់ពូជនៅលើកំពូល',
- 'top-uploaders-data' => 'អ្នកបង្ហោះកំពូល (ទិន្នន័យ)',
- 'top-uploaders-count' => 'អ្នកបង្ហោះកំពូល (រាប់)',
- 'topics' => 'ប្រធានបទ',
- 'topics-started' => 'ប្រធានបទវេទិកាបានចាប់ផ្ដើម',
- 'torrent-comments' => 'មតិយោបល់របស់ Torrent បានធ្វើឡើង',
- 'torrent-help' => 'គ្រប់គ្រងការចែករំលែកនៃស្ថិតិពាក់ព័ន្ធនឹង torrent ជាក់លាក់និងព័ត៌មានជាមួយក្រុមដែលត្រូវបានអនុញ្ញាតឱ្យចូលទៅប្រវត្តិរូបរបស់អ្នក។ ការកំណត់ទាំងនេះត្រូវបានបដិសេធប្រសិនបើអ្នកមិនអនុញ្ញាតឱ្យក្រុមណាមួយចូលប្រើស្ថិតិនិងពត៌មានដែលទាក់ទងនឹង torrent របស់អ្នកឬប្រសិនបើអ្នក ទៅជាឯកជន',
- 'torrent-notification' => 'ការកំណត់ជូនដំណឹង Torrent',
- 'torrent-notification-comment' => 'ទទួលការជូនដំណឹងនៅពេលដែល torrent ដែលបានផ្ទុកឡើងទទួលបានមតិយោបល់ថ្មី',
- 'torrent-notification-thank' => 'ទទួលការជូនដំណឹងនៅពេលដែល torrent ដែលបានផ្ទុកឡើងត្រូវបានអរគុណថ្មី',
- 'torrent-notification-tip' => 'ទទួលការជូនដំណឹងនៅពេលដែល torrent ដែលបានផ្ទុកឡើងទទួលបានព័ត៌មានថ្មី',
- 'torrent-notification-help' => 'ត្រួតពិនិត្យការជូនដំណឹងដែលត្រូវបានផ្ញើទាក់ទងនឹងសកម្មភាព torrent ។ ការកំណត់ទាំងនេះត្រូវបានបដិសេធប្រសិនបើអ្នកមិនអនុញ្ញាតឱ្យក្រុមណាមួយផ្ញើការជូនដំណឹងទាក់ទងនឹងសកម្មភាព torrent ឬប្រសិនបើអ្នក បិទការជូនដំណឹង',
- 'torrent-privacy' => 'ការកំណត់ Torrent',
- 'torrent-privacy-download' => 'អនុញ្ញាតឱ្យអ្នកប្រើមើលបញ្ជីនៃ torrent ដែលអ្នកបានទាញយក',
- 'torrent-privacy-upload' => 'អនុញ្ញាតឱ្យអ្នកប្រើមើលបញ្ជីនៃ torrent ដែលអ្នកបានផ្ទុកឡើង',
- 'torrent-privacy-peer' => 'អនុញ្ញាតឱ្យអ្នកប្រើអាចមើលឃើញអ្នកនៅក្នុងតារាងប្រវត្ដិនន្ទ័ torrent',
- 'torrents' => 'Torrents',
- 'torrents-history' => 'ប្រវត្តិ Torrents',
- 'total-download' => 'ទាញយកសរុប',
- 'total-downloads' => 'ការទាញយកសរុប',
- 'total-leeching' => 'ការលះបង់សរុប',
- 'total-seeding' => 'ការបែងចែកសរុប',
- 'total-seedtime' => 'ពេលវេលាសរុប',
- 'total-upload' => 'ផ្ទុកឡើងសរុប',
- 'total-uploads' => 'ផ្ទុកឡើងសរុប',
- 'unban' => 'អ្នកប្រើមិនប្រើ',
- 'unfollow' => 'មិនធ្វើតាម',
- 'unlocked' => 'បានដោះសោ',
- 'unlocked-achievements' => 'សម្រេចបានសមិទ្ធផល',
- 'unsatisfieds' => 'មិនស្កប់ស្កល់',
- 'upload-bon' => 'ផ្ទុកឡើងបន្ថែមពីហាងលក់ទំនិញ',
- 'upload-recorded' => 'បានផ្ទុកឡើងផ្ទុកឡើង',
- 'upload-true' => 'ផ្ទុកពិតប្រាកដ',
- 'uploads' => 'ផ្ទុកឡើង',
- 'uploads-table' => 'អាប់ឡូតតារាង',
- 'user' => 'អ្នកប្រើ',
- 'user-id' => 'លេខសម្គាល់អ្នកប្រើ',
- 'username-seedbox' => 'ឈ្មោះអ្នកប្រើ Seedbox',
- 'visible-to-achievement' => 'សមិទ្ធផលដែលអាចមើលឃើញ',
- 'visible-to-achievement-help' => 'សមិទ្ធផលរបស់អ្នកនឹងត្រូវបានមើលឃើញតែចំពោះបុគ្គលិកនិងក្រុមដូចខាងក្រោមប៉ុណ្ណោះ។ ការកំណត់ទាំងនេះត្រូវបានបដិសេធប្រសិនបើអ្នកជា ឯកជន',
- 'visible-to-follower' => 'អ្នកតាមមើលឃើញ',
- 'visible-to-follower-help' => 'អ្នកតាមដានរបស់អ្នកនឹងអាចមើលឃើញចំពោះបុគ្គលិកនិងក្រុមដូចខាងក្រោម។ ការកំណត់ទាំងនេះត្រូវបានបដិសេធប្រសិនបើអ្នកជា ឯកជន',
- 'visible-to-forum' => 'ព័ត៌មានវេទិកាអាចមើលឃើញ',
- 'visible-to-forum-help' => 'ព័ត៌មានវេទិការបស់អ្នកនឹងត្រូវបានបង្ហាញតែចំពោះបុគ្គលិកនិងក្រុមដូចខាងក្រោម។ ការកំណត់ទាំងនេះត្រូវបានបដិសេធប្រសិនបើអ្នកជា ឯកជន',
- 'visible-to-other' => 'មើលឃើញផ្សេងទៀតដើម្បី',
- 'visible-to-other-help' => 'ព័ត៌មានផ្សេងទៀតដែលទាក់ទងនឹងគណនីរបស់អ្នកនឹងអាចមើលឃើញចំពោះបុគ្គលិកនិងក្រុមដូចខាងក្រោម។ ការកំណត់ទាំងនេះត្រូវបានបដិសេធប្រសិនបើអ្នក ទៅជាឯកជន ឬប្រសិនបើអ្នក ចូលទៅលាក់',
- 'visible-to-profile' => 'ទម្រង់មើលឃើញដើម្បី',
- 'visible-to-profile-help' => 'ប្រវត្តិរូបរបស់អ្នកនឹងអាចមើលឃើញចំពោះបុគ្គលិកនិងក្រុមដូចខាងក្រោម។ ការកំណត់ទាំងនេះត្រូវបានបដិសេធប្រសិនបើអ្នកជា ឯកជន',
- 'visible-to-request' => 'សំណើសុំព័ត៌មានអាចមើលឃើញ',
- 'visible-to-request-help' => 'ព័ត៌មានសំណើរបស់អ្នកនឹងអាចមើលឃើញតែចំពោះបុគ្គលិកនិងក្រុមដូចខាងក្រោមប៉ុណ្ណោះ។ ការកំណត់ទាំងនេះត្រូវបានបដិសេធប្រសិនបើអ្នកជា ឯកជន',
- 'visible-to-torrent' => 'ព័ត៌មាន Torrent អាចមើលឃើញ',
- 'visible-to-torrent-help' => 'ព័ត៌មាន torrent របស់អ្នកនឹងអាចមើលឃើញតែបុគ្គលិកនិងក្រុមដូចខាងក្រោមប៉ុណ្ណោះ។ ការកំណត់ទាំងនេះត្រូវបានបដិសេធប្រសិនបើអ្នក ទៅជាឯកជន ឬប្រសិនបើអ្នក ចូលទៅលាក់',
- 'warned-on' => 'ព្រមាននៅថ្ងៃ',
- 'warning' => 'ព្រមាន',
- 'warning-log' => 'កំណត់ហេតុព្រមាន',
- 'wishlist' => 'Wishlist',
+ 'mention-notification-forum-post' => 'ទទួលការជូនដំណឹងនៅពេលអ្នកត្រូវបានគេបង្ហាត់ក្នុងវេទិកា',
+ 'mention-notification-help' => 'គ្រប់គ្រងការជូនដំណឹងដែលត្រូវបានផ្ញើនៅពេលអ្នកប្រើ @mentions អ្នក។ ការកំណត់ទាំងនេះត្រូវបានបដិសេធប្រសិនបើអ្នកមិនអនុញ្ញាតឱ្យក្រុមណាមួយផ្ញើការជូនដំណឹងបើអ្នកប្រើ @mentions អ្នកឬប្រសិនបើអ្នក បិទការជូនដំណឹង',
+ 'moderated-by' => 'សម្របសម្រួលដោយ: mod on',
+ 'my-bonus-points' => 'ពិន្ទុបន្ថែមរបស់ខ្ញុំ',
+ 'my-bookmarks' => 'ចំណាំរបស់ខ្ញុំ',
+ 'my-fl-tokens' => 'ថូខឹន FL របស់ខ្ញុំ',
+ 'my-general-settings' => 'ការកំណត់ទូទៅរបស់ខ្ញុំ',
+ 'my-notification' => 'ការជូនដំណឹងរបស់ខ្ញុំ',
+ 'my-notification-settings' => 'ការកំណត់ការជូនដំណឹងរបស់ខ្ញុំ',
+ 'my-privacy' => 'ភាពឯកជនរបស់ខ្ញុំ',
+ 'my-privacy-settings' => 'ការកំណត់ឯកជនភាពរបស់ខ្ញុំ',
+ 'my-profile' => 'ពត៌មានរបស់ខ្ញុំ',
+ 'my-requested' => 'សំណើរបស់ខ្ញុំ',
+ 'my-security' => 'សន្តិសុខរបស់ខ្ញុំ',
+ 'my-security-settings' => 'ការកំណត់សុវត្ថិភាពរបស់ខ្ញុំ',
+ 'my-seedboxes' => 'My Seedboxes',
+ 'my-settings' => 'ការកំណត់របស់ខ្ញុំ',
+ 'my-wishlist' => 'បញ្ជីប្រាថ្នារបស់ខ្ញុំ',
+ 'no-logs' => 'នេះមិនមែនជាកំណត់ហេតុនៃការអញ្ជើញនៅក្នុងមូលដ្ឋានទិន្នន័យសម្រាប់អ្នកប្រើនេះទេ!',
+ 'no-seedboxes' => 'គ្មានប្រអប់គ្រាប់😔',
+ 'not-authorized' => 'អ្នកមិនត្រូវបានអនុញ្ញាតឱ្យមើលទំព័រនេះទេ។ សមាជិកនេះចូលចិត្តលាក់ខ្លួនដូចជា Ninja មែន!',
+ 'note' => 'ចំណាំ',
+ 'notification' => 'សេចក្តីជូនដំណឹង',
+ 'notification-settings' => 'កំណត់ការជូនដំណឹង',
+ 'notification-from-account' => 'ទទួលបានការជូនដំណឹងអំពីគណនីពី',
+ 'notification-from-account-help' => 'អ្នកនឹងទទួលបានការជូនដំណឹងគណនីពីប្រព័ន្ធបុគ្គលិកនិងក្រុមដូចខាងក្រោម។ ការកំណត់ទាំងនេះត្រូវបានបដិសេធប្រសិនបើអ្នក បិទការជូនដំណឹង',
+ 'notification-from-bon' => 'ទទួលបានការជូនដំណឹងពីក្រុមហ៊ុន BON',
+ 'notification-from-bon-help' => 'អ្នកនឹងទទួលបានការជូនដំណឹងពីក្រុមហ៊ុនប្រព័ន្ធបុគ្គលិកនិងក្រុមដូចខាងក្រោមប៉ុណ្ណោះ។ ការកំណត់ទាំងនេះត្រូវបានបដិសេធប្រសិនបើអ្នក បិទការជូនដំណឹង',
+ 'notification-from-following' => 'ទទួលបានការជូនដំណឹងពីអ្នកដើរតាមពី',
+ 'notification-from-following-help' => 'អ្នកនឹងទទួលបានការជូនដំណឹងអ្នកប្រើតាមពីក្រោយដូចខាងក្រោម។ ការកំណត់ទាំងនេះត្រូវបានបដិសេធប្រសិនបើអ្នក បិទការជូនដំណឹង',
+ 'notification-from-forum' => 'ទទួលបានការជូនដំណឹងវេទិកាពី',
+ 'notification-from-forum-help' => 'អ្នកនឹងទទួលបានការជូនដំណឹងវេទិកាពីប្រព័ន្ធបុគ្គលិកនិងក្រុមដូចខាងក្រោម។ ការកំណត់ទាំងនេះត្រូវបានបដិសេធប្រសិនបើអ្នក បិទការជូនដំណឹង',
+ 'notification-from-subscription' => 'ទទួលបានការជូនដំណឹងជាវពី',
+ 'notification-from-subscription-help' => 'អ្នកនឹងទទួលបានការជូនដំណឹងវេទិកាពីប្រព័ន្ធបុគ្គលិកនិងក្រុមដូចខាងក្រោម។ ការកំណត់ទាំងនេះត្រូវបានបដិសេធប្រសិនបើអ្នក បិទការជូនដំណឹង',
+ 'notification-from-torrent' => 'ទទួលបានការជូនដំណឹង Torrent ពី',
+ 'notification-from-torrent-help' => 'អ្នកនឹងទទួលបានការជូនដំណឹង torrent ពីប្រព័ន្ធបុគ្គលិកនិងក្រុមដូចខាងក្រោម។ ការកំណត់ទាំងនេះត្រូវបានបដិសេធប្រសិនបើអ្នក បិទការជូនដំណឹង',
+ 'notification-from-mention' => 'ទទួលយក @Mention ការជូនដំណឹងពី',
+ 'notification-from-mention-help' => 'អ្នកនឹងទទួលបានការជូនដំណឹងអំពី @mention ពីប្រព័ន្ធបុគ្គលិកនិងក្រុមដូចខាងក្រោម។ ការកំណត់ទាំងនេះត្រូវបានបដិសេធប្រសិនបើអ្នក បិទការជូនដំណឹង',
+ 'notification-from-request' => 'ទទួលបានការជូនដំណឹងពីការស្នើសុំ',
+ 'notification-from-request-help' => 'អ្នកនឹងទទួលបានការជូនដំណឹងស្នើសុំពីប្រព័ន្ធបុគ្គលិកនិងក្រុមដូចខាងក្រោម។ ការកំណត់ទាំងនេះត្រូវបានបដិសេធប្រសិនបើអ្នក បិទការជូនដំណឹង',
+ 'notifications' => 'ការជូនដំណឹង',
+ 'offline' => 'អ្នកប្រើនៅក្រៅបណ្ដាញ!',
+ 'online' => 'អ្នកប្រើនៅលើអ៊ីនធឺណិត!',
+ 'options' => 'ជម្រើស',
+ 'other-help' => 'គ្រប់គ្រងការចែករំលែកស្ថិតិនិងព័ត៌មានផ្សេងទៀតជាមួយក្រុមដែលត្រូវបានអនុញ្ញាតឱ្យចូលទៅប្រវត្តិរូបរបស់អ្នក។ ការកំណត់ទាំងនេះត្រូវបានបដិសេធប្រសិនបើអ្នកមិនអនុញ្ញាតឱ្យក្រុមណាមួយចូលប្រើស្ថិតិនិងព័ត៌មានផ្សេងទៀតរបស់អ្នកឬប្រសិនបើអ្នក ទៅជាឯកជន',
+ 'other-privacy' => 'ការកំណត់ផ្សេងៗ',
+ 'other-privacy-online' => 'អនុញ្ញាតឱ្យអ្នកប្រើឃើញអ្នកនៅក្នុងប្លុកអ្នកប្រើលើបណ្តាញ',
+ 'passkey' => 'PID',
+ 'passkey-warning' => 'PID គឺដូចជាពាក្យសម្ងាត់របស់អ្នកអ្នកត្រូវរក្សាទុកវាឱ្យមានសុវត្ថិភាព!',
+ 'pending-achievements' => 'ស្នាដៃដែលមិនទាន់សម្រេច',
+ 'per-torrent' => 'ក្នុងមួយ Torrent',
+ 'posts' => 'ប្រកាស',
+ 'posts-posted' => 'ប្រកាសវេទិកាប្រកាស',
+ 'privacy' => 'ភាពឯកជន',
+ 'privacy-settings' => 'ការកំណត់ភាពឯកជន',
+ 'private-info' => 'ព័ត៌មានឯកជន',
+ 'private-forum-profile' => 'ការយកចិត្តទុកដាក់: ប្រធានបទរបស់ប្រធានបទនេះនិងប្រៃសណីយ៍ត្រូវបានកំណត់ឱ្យ PRIVATE!',
+ 'private-profile' => 'ការយកចិត្តទុកដាក់: ទម្រង់នេះត្រូវបានកំណត់ដើម្បី PRIVATE!',
+ 'profile' => 'ទម្រង់',
+ 'profile-desc' => 'អ្នកប្រើ: ទម្រង់អ្នកប្រើបានចុះឈ្មោះនៅលើ: ចំណងជើង',
+ 'profile-privacy' => 'ការកំណត់ប្រវត្តិរូប',
+ 'profile-privacy-torrent-count' => 'ចែករំលែកចំនួនសរុបនៃការទាញយក, ការផ្ទុកឡើង, គ្រាប់ពូជនិងកេះ',
+ 'profile-privacy-torrent-ratio' => 'ចែករំលែកទិន្នន័យផ្ទុកឡើង / ទាញយកសរុបរបស់អ្នកជាមួយនឹងសមាមាត្រដែលបានថត',
+ 'profile-privacy-torrent-seed' => 'ចែករំលែកពេលវេលានិងការបូកសរុបសរុបរបស់អ្នក',
+ 'profile-privacy-title' => 'ចែករំលែកព័ត៌មានចំណងជើងផ្ទាល់ខ្លួនរបស់អ្នក',
+ 'profile-privacy-about' => 'ចែករំលែកព័ត៌មានផ្ទាល់ខ្លួនរបស់អ្នកអំពីខ្ញុំ',
+ 'profile-privacy-bon-extra' => 'ចែករំលែកស្ថិតិរបស់អ្នក',
+ 'profile-privacy-comment-extra' => 'ចែករំលែកស្ថិតិមតិយោបល់របស់អ្នក',
+ 'profile-privacy-forum-extra' => 'ចែករំលែកស្ថិតិវេទិការបស់អ្នក',
+ 'profile-privacy-request-extra' => 'ចែករំលែកស្ថិតិសំណើរបស់អ្នក',
+ 'profile-privacy-torrent-extra' => 'ចែករំលែកស្ថិតិ torrent របស់អ្នក',
+ 'profile-privacy-badge' => 'ចែករំលែកផ្លាកសញ្ញាដែលរកបានរបស់អ្នក',
+ 'profile-privacy-achievement' => 'ចែករំលែកសមិទ្ធផលថ្មីៗរបស់អ្នក',
+ 'profile-privacy-follower' => 'ចែករំលែកអ្នកតាមថ្មីៗរបស់អ្នក',
+ 'profile-privacy-warning' => 'ចែករំលែកការព្រមានក្រុមហ៊ុន H & R របស់អ្នក',
+ 'profile-privacy-help' => 'ត្រួតពិនិត្យស្ថិតិនិងបំណែកពត៌មានលេចឡើងនៅលើទម្រង់របស់អ្នក។ ការកំណត់ទាំងនេះត្រូវបានបដិសេធប្រសិនបើអ្នកមិនអនុញ្ញាតឱ្យក្រុមណាមួយចូលដំណើរការទម្រង់របស់អ្នកឬប្រសិនបើអ្នក ទៅឯកជន',
+ 'public-info' => 'ព័ត៌មានសាធារណៈ',
+ 'recent-achievements' => 'សមិទ្ធផលថ្មីៗ',
+ 'recent-followers' => 'អ្នកតាមថ្មីៗ',
+ 'registration-date' => 'កាលបរិច្ឆេទចុះបញ្ជី',
+ 'report' => 'របាយការណ៍',
+ 'request-help' => 'គ្រប់គ្រងការចែករំលែកការស្នើសុំជាក់លាក់ទាក់ទងនឹងស្ថិតិនិងព័ត៌មានជាមួយក្រុមដែលអនុញ្ញាតឱ្យចូលទៅប្រវត្តិរូបរបស់អ្នក។ ការកំណត់ទាំងនេះត្រូវបានបដិសេធប្រសិនបើអ្នកមិនអនុញ្ញាតឱ្យក្រុមណាមួយចូលទៅកាន់ស្ថិតិដែលពាក់ព័ន្ធនិងព័ត៌មានដែលពាក់ព័ន្ធរបស់អ្នកឬប្រសិនបើអ្នក ទៅជាឯកជន',
+ 'request' => 'សំណើ',
+ 'requested' => 'បានស្នើ',
+ 'requests' => 'សំណូមពរ',
+ 'request-comments' => 'ស្នើសុំយោបល់',
+ 'request-notification' => 'ស្នើសុំការកំណត់ការជូនដំណឹង',
+ 'request-notification-bounty' => 'ទទួលការជូនដំណឹងនៅពេលដែល torrent ដែលស្នើសុំទទួលបានរង្វាន់ថ្មី',
+ 'request-notification-comment' => 'ទទួលការជូនដំណឹងនៅពេលដែល torrent ដែលបានស្នើសុំទទួលបានមតិយោបល់ថ្មី',
+ 'request-notification-fill' => 'ទទួលការជូនដំណឹងនៅពេលដែល torrent ដែលបានស្នើត្រូវបានបំពេញ',
+ 'request-notification-fill-approve' => 'ទទួលការជូនដំណឹងនៅពេលការបំពេញ torrent ដែលបានស្នើសុំត្រូវបានអនុម័ត',
+ 'request-notification-fill-reject' => 'ទទួលការជូនដំណឹងនៅពេលការបំពេញ torrent ដែលបានស្នើសុំត្រូវបានបដិសេធ',
+ 'request-notification-claim' => 'ទទួលបានការជូនដំណឹងនៅពេលដែលមាន torrent ដែលបានស្នើសុំ',
+ 'request-notification-unclaim' => 'ទទួលការជូនដំណឹងនៅពេលដែល torrent ដែលបានស្នើសុំមិនទទួលស្គាល់',
+ 'request-notification-help' => 'គ្រប់គ្រងការជូនដំណឹងដែលត្រូវបានផ្ញើទាក់ទងនឹងសកម្មភាពស្នើសុំ។ ការកំណត់ទាំងនេះត្រូវបានបដិសេធប្រសិនបើអ្នកមិនអនុញ្ញាតឱ្យក្រុមណាមួយផ្ញើការជូនដំណឹងទាក់ទងនឹងសកម្មភាពស្នើសុំឬប្រសិនបើអ្នក បិទការជូនដំណឹង',
+ 'request-privacy' => 'កំណត់ការស្នើសុំ',
+ 'request-privacy-requested' => 'អនុញ្ញាតឱ្យអ្នកប្រើប្រាស់មើលបញ្ជីសំណើរដែលអ្នកបានបង្កើត',
+ 'reset-passkey' => 'កំណត់លេខសំងាត់ថ្មីឡើងវិញ (PID)',
+ 'reset-passkey-help' => 'អ្នកនឹងត្រូវទាញយកឡើងវិញ / ផ្ទុកឡើងវិញនូវរាល់ torrent សកម្មទាំងអស់របស់អ្នកបន្ទាប់ពីការកំណត់ PID ឡើងវិញ',
+ 'reset-rss' => 'កំណត់ពាក្យសម្ងាត់ឡើងវិញ (RID)',
+ 'reset-rss-help' => 'អ្នកនឹងត្រូវផ្ទុកឡើងវិញរាល់មតិព័ត៌មាន RSS សកម្មរបស់អ្នកបន្ទាប់ពីការកំណត់ RID ឡើងវិញ',
+ 'resurrections' => 'ការរស់ឡើងវិញ',
+ 'search' => 'ស្វែងរករហ័សតាមឈ្មោះអ្នកប្រើ',
+ 'security' => 'សន្តិសុខ',
+ 'security-settings' => 'ការកំណត់សុវត្ថិភាព',
+ 'seedboxes' => 'Seedboxes',
+ 'seeds' => 'គ្រាប់',
+ 'send-invite' => 'ផ្ញើការអញ្ជើញ',
+ 'sender' => 'អ្នកផ្ញើ',
+ 'settings' => 'ការកំណត់',
+ 'show-passkey' => 'បង្ហាញ PID',
+ 'staff-noted' => 'បុគ្គលិកកត់សំគាល់គណនី',
+ 'statistics' => 'ស្ថិតិ',
+ 'subscription-notification' => 'ការកំណត់ជូនដំណឹងការជាវ',
+ 'subscription-notification-forum' => 'ទទួលការជូនដំណឹងនៅពេលដែលវេទិកាជាវបានទទួលប្រធានបទថ្មី',
+ 'subscription-notification-topic' => 'ទទួលការជូនដំណឹងនៅពេលប្រធានបទដែលបានជាវបានទទួលប្រកាសថ្មី',
+ 'subscription-notification-help' => 'គ្រប់គ្រងការជូនដំណឹងដែលត្រូវបានផ្ញើទាក់ទងនឹងការជាវប្រចាំរបស់អ្នក។ ការកំណត់ទាំងនេះត្រូវបានបដិសេធប្រសិនបើអ្នកមិនអនុញ្ញាតឱ្យក្រុមណាមួយផ្ញើការជូនដំណឹងទាក់ទងនឹងការជាវប្រចាំរបស់អ្នកឬប្រសិនបើអ្នក បិទការជូនដំណឹង',
+ 'thanks-given' => 'សូមអរគុណ',
+ 'thanks-received' => 'អរគុណដែលបានទទួល',
+ 'tips-given' => 'គន្លឹះផ្តល់ឱ្យ',
+ 'tips-received' => 'ព័ត៌មានជំនួយបានទទួល',
+ 'title' => 'ចំណងជើង',
+ 'top-bankers' => 'ធនាគារកំពូល',
+ 'top-downloaders-data' => 'អ្នកទាញយកកំពូល (ទិន្នន័យ)',
+ 'top-leechers' => 'Leechers កំពូល',
+ 'top-leechers-count' => 'Top Leechers (រាប់)',
+ 'top-seeders' => 'គ្រាប់ពូជខាងលើ',
+ 'top-seeders-count' => 'អ្នកកាប់ឈើកំពូល (រាប់)',
+ 'top-seeding-size' => 'ការបែងចែកផ្នែកខាងលើ (ទំហំ)',
+ 'top-seedtime' => 'គ្រាប់ពូជនៅលើកំពូល',
+ 'top-uploaders-data' => 'អ្នកបង្ហោះកំពូល (ទិន្នន័យ)',
+ 'top-uploaders-count' => 'អ្នកបង្ហោះកំពូល (រាប់)',
+ 'topics' => 'ប្រធានបទ',
+ 'topics-started' => 'ប្រធានបទវេទិកាបានចាប់ផ្ដើម',
+ 'torrent-comments' => 'មតិយោបល់របស់ Torrent បានធ្វើឡើង',
+ 'torrent-help' => 'គ្រប់គ្រងការចែករំលែកនៃស្ថិតិពាក់ព័ន្ធនឹង torrent ជាក់លាក់និងព័ត៌មានជាមួយក្រុមដែលត្រូវបានអនុញ្ញាតឱ្យចូលទៅប្រវត្តិរូបរបស់អ្នក។ ការកំណត់ទាំងនេះត្រូវបានបដិសេធប្រសិនបើអ្នកមិនអនុញ្ញាតឱ្យក្រុមណាមួយចូលប្រើស្ថិតិនិងពត៌មានដែលទាក់ទងនឹង torrent របស់អ្នកឬប្រសិនបើអ្នក ទៅជាឯកជន',
+ 'torrent-notification' => 'ការកំណត់ជូនដំណឹង Torrent',
+ 'torrent-notification-comment' => 'ទទួលការជូនដំណឹងនៅពេលដែល torrent ដែលបានផ្ទុកឡើងទទួលបានមតិយោបល់ថ្មី',
+ 'torrent-notification-thank' => 'ទទួលការជូនដំណឹងនៅពេលដែល torrent ដែលបានផ្ទុកឡើងត្រូវបានអរគុណថ្មី',
+ 'torrent-notification-tip' => 'ទទួលការជូនដំណឹងនៅពេលដែល torrent ដែលបានផ្ទុកឡើងទទួលបានព័ត៌មានថ្មី',
+ 'torrent-notification-help' => 'ត្រួតពិនិត្យការជូនដំណឹងដែលត្រូវបានផ្ញើទាក់ទងនឹងសកម្មភាព torrent ។ ការកំណត់ទាំងនេះត្រូវបានបដិសេធប្រសិនបើអ្នកមិនអនុញ្ញាតឱ្យក្រុមណាមួយផ្ញើការជូនដំណឹងទាក់ទងនឹងសកម្មភាព torrent ឬប្រសិនបើអ្នក បិទការជូនដំណឹង',
+ 'torrent-privacy' => 'ការកំណត់ Torrent',
+ 'torrent-privacy-download' => 'អនុញ្ញាតឱ្យអ្នកប្រើមើលបញ្ជីនៃ torrent ដែលអ្នកបានទាញយក',
+ 'torrent-privacy-upload' => 'អនុញ្ញាតឱ្យអ្នកប្រើមើលបញ្ជីនៃ torrent ដែលអ្នកបានផ្ទុកឡើង',
+ 'torrent-privacy-peer' => 'អនុញ្ញាតឱ្យអ្នកប្រើអាចមើលឃើញអ្នកនៅក្នុងតារាងប្រវត្ដិនន្ទ័ torrent',
+ 'torrents' => 'Torrents',
+ 'torrents-history' => 'ប្រវត្តិ Torrents',
+ 'total-download' => 'ទាញយកសរុប',
+ 'total-downloads' => 'ការទាញយកសរុប',
+ 'total-leeching' => 'ការលះបង់សរុប',
+ 'total-seeding' => 'ការបែងចែកសរុប',
+ 'total-seedtime' => 'ពេលវេលាសរុប',
+ 'total-upload' => 'ផ្ទុកឡើងសរុប',
+ 'total-uploads' => 'ផ្ទុកឡើងសរុប',
+ 'unban' => 'អ្នកប្រើមិនប្រើ',
+ 'unfollow' => 'មិនធ្វើតាម',
+ 'unlocked' => 'បានដោះសោ',
+ 'unlocked-achievements' => 'សម្រេចបានសមិទ្ធផល',
+ 'unsatisfieds' => 'មិនស្កប់ស្កល់',
+ 'upload-bon' => 'ផ្ទុកឡើងបន្ថែមពីហាងលក់ទំនិញ',
+ 'upload-recorded' => 'បានផ្ទុកឡើងផ្ទុកឡើង',
+ 'upload-true' => 'ផ្ទុកពិតប្រាកដ',
+ 'uploads' => 'ផ្ទុកឡើង',
+ 'uploads-table' => 'អាប់ឡូតតារាង',
+ 'user' => 'អ្នកប្រើ',
+ 'user-id' => 'លេខសម្គាល់អ្នកប្រើ',
+ 'username-seedbox' => 'ឈ្មោះអ្នកប្រើ Seedbox',
+ 'visible-to-achievement' => 'សមិទ្ធផលដែលអាចមើលឃើញ',
+ 'visible-to-achievement-help' => 'សមិទ្ធផលរបស់អ្នកនឹងត្រូវបានមើលឃើញតែចំពោះបុគ្គលិកនិងក្រុមដូចខាងក្រោមប៉ុណ្ណោះ។ ការកំណត់ទាំងនេះត្រូវបានបដិសេធប្រសិនបើអ្នកជា ឯកជន',
+ 'visible-to-follower' => 'អ្នកតាមមើលឃើញ',
+ 'visible-to-follower-help' => 'អ្នកតាមដានរបស់អ្នកនឹងអាចមើលឃើញចំពោះបុគ្គលិកនិងក្រុមដូចខាងក្រោម។ ការកំណត់ទាំងនេះត្រូវបានបដិសេធប្រសិនបើអ្នកជា ឯកជន',
+ 'visible-to-forum' => 'ព័ត៌មានវេទិកាអាចមើលឃើញ',
+ 'visible-to-forum-help' => 'ព័ត៌មានវេទិការបស់អ្នកនឹងត្រូវបានបង្ហាញតែចំពោះបុគ្គលិកនិងក្រុមដូចខាងក្រោម។ ការកំណត់ទាំងនេះត្រូវបានបដិសេធប្រសិនបើអ្នកជា ឯកជន',
+ 'visible-to-other' => 'មើលឃើញផ្សេងទៀតដើម្បី',
+ 'visible-to-other-help' => 'ព័ត៌មានផ្សេងទៀតដែលទាក់ទងនឹងគណនីរបស់អ្នកនឹងអាចមើលឃើញចំពោះបុគ្គលិកនិងក្រុមដូចខាងក្រោម។ ការកំណត់ទាំងនេះត្រូវបានបដិសេធប្រសិនបើអ្នក ទៅជាឯកជន ឬប្រសិនបើអ្នក ចូលទៅលាក់',
+ 'visible-to-profile' => 'ទម្រង់មើលឃើញដើម្បី',
+ 'visible-to-profile-help' => 'ប្រវត្តិរូបរបស់អ្នកនឹងអាចមើលឃើញចំពោះបុគ្គលិកនិងក្រុមដូចខាងក្រោម។ ការកំណត់ទាំងនេះត្រូវបានបដិសេធប្រសិនបើអ្នកជា ឯកជន',
+ 'visible-to-request' => 'សំណើសុំព័ត៌មានអាចមើលឃើញ',
+ 'visible-to-request-help' => 'ព័ត៌មានសំណើរបស់អ្នកនឹងអាចមើលឃើញតែចំពោះបុគ្គលិកនិងក្រុមដូចខាងក្រោមប៉ុណ្ណោះ។ ការកំណត់ទាំងនេះត្រូវបានបដិសេធប្រសិនបើអ្នកជា ឯកជន',
+ 'visible-to-torrent' => 'ព័ត៌មាន Torrent អាចមើលឃើញ',
+ 'visible-to-torrent-help' => 'ព័ត៌មាន torrent របស់អ្នកនឹងអាចមើលឃើញតែបុគ្គលិកនិងក្រុមដូចខាងក្រោមប៉ុណ្ណោះ។ ការកំណត់ទាំងនេះត្រូវបានបដិសេធប្រសិនបើអ្នក ទៅជាឯកជន ឬប្រសិនបើអ្នក ចូលទៅលាក់',
+ 'warned-on' => 'ព្រមាននៅថ្ងៃ',
+ 'warning' => 'ព្រមាន',
+ 'warning-log' => 'កំណត់ហេតុព្រមាន',
+ 'wishlist' => 'Wishlist',
];
diff --git a/lang/km/validation.php b/lang/km/validation.php
index c9a84c7fe..5b331bb20 100644
--- a/lang/km/validation.php
+++ b/lang/km/validation.php
@@ -23,108 +23,108 @@ return [
|
*/
- 'accepted' => ':attribute ត្រូវបានទទួលយក។',
- 'active_url' => ':attribute មិនមែនជា URL ត្រឹមត្រូវឡើយ។',
- 'after' => ':attribute ត្រូវតែមានកាលបរិច្ឆេទបន្ទាប់ពី :date។',
- 'after_or_equal' => 'The :attribute must be a date after or equal to :date.',
- 'alpha' => ':attribute អាចមានអក្សរតែប៉ុណ្ណោះ។',
- 'alpha_dash' => ':attribute អាចមានតែអក្សរ លេខ និងសហសញ្ញា(-)។',
- 'alpha_num' => ':attribute អាចមានតែអក្សរ និងលេខ។',
- 'array' => ':attribute ត្រូវតែជា អារេ។',
- 'before' => ':attribute ត្រូវតែមានកាលបរិច្ឆេទមុន :date។',
- 'before_or_equal' => 'The :attribute must be a date before or equal to :date.',
- 'between' => [
+ 'accepted' => ':attribute ត្រូវបានទទួលយក។',
+ 'active_url' => ':attribute មិនមែនជា URL ត្រឹមត្រូវឡើយ។',
+ 'after' => ':attribute ត្រូវតែមានកាលបរិច្ឆេទបន្ទាប់ពី :date។',
+ 'after_or_equal' => 'The :attribute must be a date after or equal to :date.',
+ 'alpha' => ':attribute អាចមានអក្សរតែប៉ុណ្ណោះ។',
+ 'alpha_dash' => ':attribute អាចមានតែអក្សរ លេខ និងសហសញ្ញា(-)។',
+ 'alpha_num' => ':attribute អាចមានតែអក្សរ និងលេខ។',
+ 'array' => ':attribute ត្រូវតែជា អារេ។',
+ 'before' => ':attribute ត្រូវតែមានកាលបរិច្ឆេទមុន :date។',
+ 'before_or_equal' => 'The :attribute must be a date before or equal to :date.',
+ 'between' => [
'numeric' => ':attribute ត្រូវតែមានរវាង :min និង :max។',
- 'file' => ':attribute ត្រូវតែមានរវាង :min និង :max គីឡូបៃ។',
- 'string' => ':attribute ត្រូវតែមានរវាង :min និង :max តួអក្សរ។',
- 'array' => ':attribute ត្រូវតែមានធាតុរវាង :min និង :max។',
+ 'file' => ':attribute ត្រូវតែមានរវាង :min និង :max គីឡូបៃ។',
+ 'string' => ':attribute ត្រូវតែមានរវាង :min និង :max តួអក្សរ។',
+ 'array' => ':attribute ត្រូវតែមានធាតុរវាង :min និង :max។',
],
- 'boolean' => 'The :attribute field must be true or false',
- 'confirmed' => ':attribute ការបញ្ជាក់មិនផ្គូផ្គង។',
- 'date' => ':attribute គឺមិនមែនជាកាលបរិច្ឆេទត្រឹមត្រូវ។',
- 'date_equals' => 'The :attribute must be a date equal to :date.',
- 'date_format' => ':attribute មិនត្រឹមត្រូវនិងទំរង :formatនេះ។',
- 'different' => ':attribute និង :other ត្រូវតែបញ្ជាក់។',
- 'digits' => ':attribute ត្រូវជាខ្ទុង :digits។',
- 'digits_between' => ':attribute ត្រូវចាប់ពីខ្ទុង :minទៅ :max។',
- 'dimensions' => 'The :attribute has invalid image dimensions.',
- 'distinct' => 'The :attribute field has a duplicate value.',
- 'email' => ':attribute ទំរង់នេះមិនត្រឹមត្រូវ។',
- 'exists' => 'ការជ្រើសរើស :attribute ត្រឹមត្រូវ។',
- 'file' => 'The :attribute must be a file.',
- 'filled' => 'ទំរង់ :attribute នេះគឺទាមទារឲ្យមាន។',
- 'gt' => [
+ 'boolean' => 'The :attribute field must be true or false',
+ 'confirmed' => ':attribute ការបញ្ជាក់មិនផ្គូផ្គង។',
+ 'date' => ':attribute គឺមិនមែនជាកាលបរិច្ឆេទត្រឹមត្រូវ។',
+ 'date_equals' => 'The :attribute must be a date equal to :date.',
+ 'date_format' => ':attribute មិនត្រឹមត្រូវនិងទំរង :formatនេះ។',
+ 'different' => ':attribute និង :other ត្រូវតែបញ្ជាក់។',
+ 'digits' => ':attribute ត្រូវជាខ្ទុង :digits។',
+ 'digits_between' => ':attribute ត្រូវចាប់ពីខ្ទុង :minទៅ :max។',
+ 'dimensions' => 'The :attribute has invalid image dimensions.',
+ 'distinct' => 'The :attribute field has a duplicate value.',
+ 'email' => ':attribute ទំរង់នេះមិនត្រឹមត្រូវ។',
+ 'exists' => 'ការជ្រើសរើស :attribute ត្រឹមត្រូវ។',
+ 'file' => 'The :attribute must be a file.',
+ 'filled' => 'ទំរង់ :attribute នេះគឺទាមទារឲ្យមាន។',
+ 'gt' => [
'numeric' => 'The :attribute must be greater than :value.',
- 'file' => 'The :attribute must be greater than :value kilobytes.',
- 'string' => 'The :attribute must be greater than :value characters.',
- 'array' => 'The :attribute must have more than :value items.',
+ 'file' => 'The :attribute must be greater than :value kilobytes.',
+ 'string' => 'The :attribute must be greater than :value characters.',
+ 'array' => 'The :attribute must have more than :value items.',
],
- 'gte' => [
+ 'gte' => [
'numeric' => 'The :attribute must be greater than or equal :value.',
- 'file' => 'The :attribute must be greater than or equal :value kilobytes.',
- 'string' => 'The :attribute must be greater than or equal :value characters.',
- 'array' => 'The :attribute must have :value items or more.',
+ 'file' => 'The :attribute must be greater than or equal :value kilobytes.',
+ 'string' => 'The :attribute must be greater than or equal :value characters.',
+ 'array' => 'The :attribute must have :value items or more.',
],
- 'image' => ':attribute ត្រូវតៃជារូបភាព។',
- 'in' => 'ការជ្រើសរើស :attribute មិនត្រឹមត្រូវ។',
- 'in_array' => 'The :attribute field does not exist in :other.',
- 'integer' => ':attribute ត្រូវតែជាចំនួនគត់។',
- 'ip' => ':attribute ត្រូវតែជា IP addressត្រឹមត្រូវ។',
- 'ipv4' => 'The :attribute must be a valid IPv4 address.',
- 'ipv6' => 'The :attribute must be a valid IPv6 address.',
- 'json' => 'The :attribute must be a valid JSON string.',
- 'lt' => [
+ 'image' => ':attribute ត្រូវតៃជារូបភាព។',
+ 'in' => 'ការជ្រើសរើស :attribute មិនត្រឹមត្រូវ។',
+ 'in_array' => 'The :attribute field does not exist in :other.',
+ 'integer' => ':attribute ត្រូវតែជាចំនួនគត់។',
+ 'ip' => ':attribute ត្រូវតែជា IP addressត្រឹមត្រូវ។',
+ 'ipv4' => 'The :attribute must be a valid IPv4 address.',
+ 'ipv6' => 'The :attribute must be a valid IPv6 address.',
+ 'json' => 'The :attribute must be a valid JSON string.',
+ 'lt' => [
'numeric' => 'The :attribute must be less than :value.',
- 'file' => 'The :attribute must be less than :value kilobytes.',
- 'string' => 'The :attribute must be less than :value characters.',
- 'array' => 'The :attribute must have less than :value items.',
+ 'file' => 'The :attribute must be less than :value kilobytes.',
+ 'string' => 'The :attribute must be less than :value characters.',
+ 'array' => 'The :attribute must have less than :value items.',
],
- 'lte' => [
+ 'lte' => [
'numeric' => 'The :attribute must be less than or equal :value.',
- 'file' => 'The :attribute must be less than or equal :value kilobytes.',
- 'string' => 'The :attribute must be less than or equal :value characters.',
- 'array' => 'The :attribute must not have more than :value items.',
+ 'file' => 'The :attribute must be less than or equal :value kilobytes.',
+ 'string' => 'The :attribute must be less than or equal :value characters.',
+ 'array' => 'The :attribute must not have more than :value items.',
],
- 'max' => [
+ 'max' => [
'numeric' => ':attribute មិនត្រូវធំជាង :max។',
- 'file' => ':attribute មិនត្រូវធំជាង :max គីឡូបៃ។',
- 'string' => ':attribute មិនត្រូវធំជាង :max តួអក្សរ។',
- 'array' => ':attribute មិនត្រូវច្រើនជាងធាតុនេះ :max។',
+ 'file' => ':attribute មិនត្រូវធំជាង :max គីឡូបៃ។',
+ 'string' => ':attribute មិនត្រូវធំជាង :max តួអក្សរ។',
+ 'array' => ':attribute មិនត្រូវច្រើនជាងធាតុនេះ :max។',
],
- 'mimes' => ':attribute ត្រូវតែជាប្រភេទឯកសារ type: :values នេះ។',
- 'mimetypes' => ':attribute ត្រូវតែជាប្រភេទឯកសារ type: :values នេះ។',
- 'min' => [
+ 'mimes' => ':attribute ត្រូវតែជាប្រភេទឯកសារ type: :values នេះ។',
+ 'mimetypes' => ':attribute ត្រូវតែជាប្រភេទឯកសារ type: :values នេះ។',
+ 'min' => [
'numeric' => ':attribute ត្រូវតែតូចជាង :min។',
- 'file' => ':attribute ត្រូវតៃតួចជាង :min គីឡូបៃ។',
- 'string' => ':attribute ត្រូវតែតូចជាង :min តួអក្សរ។',
- 'array' => ':attribute ត្រូវតែតិចជាងធាតុនេះ :min។',
+ 'file' => ':attribute ត្រូវតៃតួចជាង :min គីឡូបៃ។',
+ 'string' => ':attribute ត្រូវតែតូចជាង :min តួអក្សរ។',
+ 'array' => ':attribute ត្រូវតែតិចជាងធាតុនេះ :min។',
],
- 'not_in' => 'ការជ្រើសរើស :attribute គឺត្រឹមត្រូវ។',
- 'not_regex' => 'The :attribute format is invalid.',
- 'numeric' => ':attribute ត្រូវតែជាលេខ។',
- 'present' => 'The :attribute field must be present.',
- 'regex' => ':attribute ទំរងមិនត្រឹមត្រូវ។',
- 'required' => 'ទំរង់ :attribute នេះគឺទាមទារឲ្យមាន។',
- 'required_if' => 'ទំរង់ :attribute នេះគឺទាមទារនៅពេល :other គឺ :value។',
- 'required_unless' => 'The :attribute field is required unless :other is in :values.',
- 'required_with' => 'ទំរង់ :attribute នេះគឺទាមទារនៅពេល :values ត្រូវបង្ហាញ។',
- 'required_with_all' => 'The :attribute field is required when :values is present.',
- 'required_without' => 'ទំរង់ :attribute នេះគឺទាមទារនៅពេល :values មិនត្រូវបង្ហាញ។',
+ 'not_in' => 'ការជ្រើសរើស :attribute គឺត្រឹមត្រូវ។',
+ 'not_regex' => 'The :attribute format is invalid.',
+ 'numeric' => ':attribute ត្រូវតែជាលេខ។',
+ 'present' => 'The :attribute field must be present.',
+ 'regex' => ':attribute ទំរងមិនត្រឹមត្រូវ។',
+ 'required' => 'ទំរង់ :attribute នេះគឺទាមទារឲ្យមាន។',
+ 'required_if' => 'ទំរង់ :attribute នេះគឺទាមទារនៅពេល :other គឺ :value។',
+ 'required_unless' => 'The :attribute field is required unless :other is in :values.',
+ 'required_with' => 'ទំរង់ :attribute នេះគឺទាមទារនៅពេល :values ត្រូវបង្ហាញ។',
+ 'required_with_all' => 'The :attribute field is required when :values is present.',
+ 'required_without' => 'ទំរង់ :attribute នេះគឺទាមទារនៅពេល :values មិនត្រូវបង្ហាញ។',
'required_without_all' => 'ទំរង់ :attribute នេះគឺត្រូវបានទាមទារពេលគ្មាន :values បានបង្ហាញ។',
- 'same' => 'ទំរង់ :attribute និង :other ត្រូវតែដូចគ្នា។',
- 'size' => [
+ 'same' => 'ទំរង់ :attribute និង :other ត្រូវតែដូចគ្នា។',
+ 'size' => [
'numeric' => ':attribute ត្រូវតែ :size។',
- 'file' => ':attribute ត្រូវតែ :size គីឡូបៃ។',
- 'string' => ':attribute ត្រូវតែ :size តួអក្សរ។',
- 'array' => ':attribute ត្រូវតែមានទំហំ :size។',
+ 'file' => ':attribute ត្រូវតែ :size គីឡូបៃ។',
+ 'string' => ':attribute ត្រូវតែ :size តួអក្សរ។',
+ 'array' => ':attribute ត្រូវតែមានទំហំ :size។',
],
- 'starts_with' => 'The :attribute must start with one of the following: :values',
- 'string' => 'The :attribute must be a string.',
- 'timezone' => 'The :attribute must be a valid zone.',
- 'unique' => ':attribute ត្រូវបានប្រើរួចហើយ។',
- 'uploaded' => 'The :attribute failed to upload.',
- 'url' => ':attribute ទំរង់ត្រឹមត្រូវ។',
- 'uuid' => 'The :attribute must be a valid UUID.',
+ 'starts_with' => 'The :attribute must start with one of the following: :values',
+ 'string' => 'The :attribute must be a string.',
+ 'timezone' => 'The :attribute must be a valid zone.',
+ 'unique' => ':attribute ត្រូវបានប្រើរួចហើយ។',
+ 'uploaded' => 'The :attribute failed to upload.',
+ 'url' => ':attribute ទំរង់ត្រឹមត្រូវ។',
+ 'uuid' => 'The :attribute must be a valid UUID.',
/*
|--------------------------------------------------------------------------
diff --git a/lang/kn/articles.php b/lang/kn/articles.php
index 74ad8a759..c73f7d102 100644
--- a/lang/kn/articles.php
+++ b/lang/kn/articles.php
@@ -12,8 +12,8 @@
*/
return [
- 'articles' => 'ಲೇಖನಗಳು',
+ 'articles' => 'ಲೇಖನಗಳು',
'meta-articles' => 'ಟ್ರ್ಯಾಕರ್ ಮತ್ತು ಸಮುದಾಯದ ಬಗೆಗಿನ ಲೇಖನಗಳು ಮತ್ತು ಸುದ್ದಿ',
- 'published-at' => 'ಪ್ರಕಟಿಸಲಾಗಿದೆ',
- 'read-more' => 'ಮತ್ತಷ್ಟು ಓದು',
+ 'published-at' => 'ಪ್ರಕಟಿಸಲಾಗಿದೆ',
+ 'read-more' => 'ಮತ್ತಷ್ಟು ಓದು',
];
diff --git a/lang/kn/auth.php b/lang/kn/auth.php
index 5d3189a5c..fe3268b0d 100644
--- a/lang/kn/auth.php
+++ b/lang/kn/auth.php
@@ -23,6 +23,6 @@ return [
|
*/
- 'failed' => 'ಈ ರುಜುವಾತುಗಳು ನಮ್ಮ ದಾಖಲೆಗಳಿಗೆ ಹೊಂದಿಕೆಯಾಗುವುದಿಲ್ಲ.',
+ 'failed' => 'ಈ ರುಜುವಾತುಗಳು ನಮ್ಮ ದಾಖಲೆಗಳಿಗೆ ಹೊಂದಿಕೆಯಾಗುವುದಿಲ್ಲ.',
'throttle' => 'ಹಲವಾರು ಲಾಗಿನ್ ಪ್ರಯತ್ನಗಳು. ದಯವಿಟ್ಟು ಮತ್ತೆ ಪ್ರಯತ್ನಿಸಿ :seconds ಸೆಕೆಂಡುಗಳಲ್ಲಿ',
];
diff --git a/lang/kn/backup.php b/lang/kn/backup.php
index 5c8af5bbc..69b536d49 100644
--- a/lang/kn/backup.php
+++ b/lang/kn/backup.php
@@ -12,32 +12,32 @@
*/
return [
- 'actions' => 'ಕ್ರಿಯೆಗಳು',
- 'backup' => 'ಬ್ಯಾಕಪ್',
- 'backup_doesnt_exist' => 'ಬ್ಯಾಕ್ಅಪ್ ಫೈಲ್ ಅಸ್ತಿತ್ವದಲ್ಲಿಲ್ಲ.',
- 'create_a_new_backup' => 'ಪೂರ್ಣ ಬ್ಯಾಕಪ್ ಅನ್ನು ರಚಿಸಿ',
- 'create_a_new_files_backup' => 'ಫೈಲ್ಗಳನ್ನು ಬ್ಯಾಕ್ಅಪ್ ರಚಿಸಿ',
- 'create_a_new_db_backup' => 'ಡೇಟಾಬೇಸ್ ಬ್ಯಾಕ್ಅಪ್ ರಚಿಸಿ',
- 'create_confirmation_message' => '3 ಸೆಕೆಂಡುಗಳಲ್ಲಿ ಪುಟವನ್ನು ಮರುಲೋಡ್ ಮಾಡಲಾಗುತ್ತಿದೆ.',
- 'create_confirmation_title' => 'ಬ್ಯಾಕಪ್ ಪೂರ್ಣಗೊಂಡಿದೆ',
- 'create_error_message' => 'ಬ್ಯಾಕ್ಅಪ್ ಫೈಲ್ ಅನ್ನು ರಚಿಸಲಾಗುವುದಿಲ್ಲ.',
- 'create_error_title' => 'ಬ್ಯಾಕಪ್ ದೋಷ',
- 'create_warning_message' => 'ನಿಮ್ಮ ಬ್ಯಾಕಪ್ ಅನ್ನು ರಚಿಸಲಾಗಿಲ್ಲ. ವಿವರಗಳಿಗಾಗಿ ಲಾಗ್ ಫೈಲ್ಗಳನ್ನು ಪರಿಶೀಲಿಸಿ.',
- 'create_warning_title' => 'ಅಜ್ಞಾತ ದೋಷ',
- 'date' => 'ದಿನಾಂಕ',
- 'delete' => 'ಅಳಿಸಿ',
- 'delete_cancel_message' => 'ಬ್ಯಾಕ್ಅಪ್ ಫೈಲ್ ಅಳಿಸಿಲ್ಲ.',
- 'delete_cancel_title' => 'ಪರವಾಗಿಲ್ಲ',
- 'delete_confirm' => 'ಈ ಬ್ಯಾಕಪ್ ಫೈಲ್ ಅಳಿಸಲು ನೀವು ಖಚಿತವಾಗಿ ಬಯಸುವಿರಾ?',
- 'delete_confirmation_message' => 'ಬ್ಯಾಕ್ಅಪ್ ಫೈಲ್ ಅನ್ನು ಅಳಿಸಲಾಗಿದೆ.',
- 'delete_confirmation_title' => 'ಮುಗಿದಿದೆ',
- 'delete_error_message' => 'ಬ್ಯಾಕ್ಅಪ್ ಫೈಲ್ ಅಳಿಸಿಲ್ಲ.',
- 'delete_error_title' => 'ದೋಷ',
- 'download' => 'ಡೌನ್ಲೋಡ್ ಮಾಡಿ',
- 'existing_backups' => 'ಅಸ್ತಿತ್ವದಲ್ಲಿರುವ ಬ್ಯಾಕಪ್ಗಳು',
- 'file_size' => 'ಫೈಲ್ ಗಾತ್ರ',
- 'location' => 'ಸ್ಥಳ',
- 'manager' => 'ವ್ಯವಸ್ಥಾಪಕ',
- 'no_disks_configured' => 'ಬ್ಯಾಕ್ಅಪ್ ಡಿಸ್ಕ್ಗಳು ಸಂರಚನಾ / ಬ್ಯಾಕ್ಅಪ್ನಲ್ಲಿ ಕಾನ್ಫಿಗರ್ ಮಾಡಲಾಗಿಲ್ಲ',
+ 'actions' => 'ಕ್ರಿಯೆಗಳು',
+ 'backup' => 'ಬ್ಯಾಕಪ್',
+ 'backup_doesnt_exist' => 'ಬ್ಯಾಕ್ಅಪ್ ಫೈಲ್ ಅಸ್ತಿತ್ವದಲ್ಲಿಲ್ಲ.',
+ 'create_a_new_backup' => 'ಪೂರ್ಣ ಬ್ಯಾಕಪ್ ಅನ್ನು ರಚಿಸಿ',
+ 'create_a_new_files_backup' => 'ಫೈಲ್ಗಳನ್ನು ಬ್ಯಾಕ್ಅಪ್ ರಚಿಸಿ',
+ 'create_a_new_db_backup' => 'ಡೇಟಾಬೇಸ್ ಬ್ಯಾಕ್ಅಪ್ ರಚಿಸಿ',
+ 'create_confirmation_message' => '3 ಸೆಕೆಂಡುಗಳಲ್ಲಿ ಪುಟವನ್ನು ಮರುಲೋಡ್ ಮಾಡಲಾಗುತ್ತಿದೆ.',
+ 'create_confirmation_title' => 'ಬ್ಯಾಕಪ್ ಪೂರ್ಣಗೊಂಡಿದೆ',
+ 'create_error_message' => 'ಬ್ಯಾಕ್ಅಪ್ ಫೈಲ್ ಅನ್ನು ರಚಿಸಲಾಗುವುದಿಲ್ಲ.',
+ 'create_error_title' => 'ಬ್ಯಾಕಪ್ ದೋಷ',
+ 'create_warning_message' => 'ನಿಮ್ಮ ಬ್ಯಾಕಪ್ ಅನ್ನು ರಚಿಸಲಾಗಿಲ್ಲ. ವಿವರಗಳಿಗಾಗಿ ಲಾಗ್ ಫೈಲ್ಗಳನ್ನು ಪರಿಶೀಲಿಸಿ.',
+ 'create_warning_title' => 'ಅಜ್ಞಾತ ದೋಷ',
+ 'date' => 'ದಿನಾಂಕ',
+ 'delete' => 'ಅಳಿಸಿ',
+ 'delete_cancel_message' => 'ಬ್ಯಾಕ್ಅಪ್ ಫೈಲ್ ಅಳಿಸಿಲ್ಲ.',
+ 'delete_cancel_title' => 'ಪರವಾಗಿಲ್ಲ',
+ 'delete_confirm' => 'ಈ ಬ್ಯಾಕಪ್ ಫೈಲ್ ಅಳಿಸಲು ನೀವು ಖಚಿತವಾಗಿ ಬಯಸುವಿರಾ?',
+ 'delete_confirmation_message' => 'ಬ್ಯಾಕ್ಅಪ್ ಫೈಲ್ ಅನ್ನು ಅಳಿಸಲಾಗಿದೆ.',
+ 'delete_confirmation_title' => 'ಮುಗಿದಿದೆ',
+ 'delete_error_message' => 'ಬ್ಯಾಕ್ಅಪ್ ಫೈಲ್ ಅಳಿಸಿಲ್ಲ.',
+ 'delete_error_title' => 'ದೋಷ',
+ 'download' => 'ಡೌನ್ಲೋಡ್ ಮಾಡಿ',
+ 'existing_backups' => 'ಅಸ್ತಿತ್ವದಲ್ಲಿರುವ ಬ್ಯಾಕಪ್ಗಳು',
+ 'file_size' => 'ಫೈಲ್ ಗಾತ್ರ',
+ 'location' => 'ಸ್ಥಳ',
+ 'manager' => 'ವ್ಯವಸ್ಥಾಪಕ',
+ 'no_disks_configured' => 'ಬ್ಯಾಕ್ಅಪ್ ಡಿಸ್ಕ್ಗಳು ಸಂರಚನಾ / ಬ್ಯಾಕ್ಅಪ್ನಲ್ಲಿ ಕಾನ್ಫಿಗರ್ ಮಾಡಲಾಗಿಲ್ಲ',
'only_local_downloads_supported' => 'ಸ್ಥಳೀಯ ಫೈಲ್ಸಿಸ್ಟಮ್ನಿಂದ ಮಾತ್ರ ಡೌನ್ಲೋಡ್ಗಳನ್ನು ಬೆಂಬಲಿಸಲಾಗುತ್ತದೆ.',
];
diff --git a/lang/kn/blocks.php b/lang/kn/blocks.php
index d411eb472..3c8b58b85 100644
--- a/lang/kn/blocks.php
+++ b/lang/kn/blocks.php
@@ -12,19 +12,19 @@
*/
return [
- 'chatbox' => 'ಚಾಟ್ ಬಾಕ್ಸ್',
- 'click' => 'ಕ್ಲಿಕ್',
- 'to-enable-editor' => 'ಸಂಪಾದಕವನ್ನು ಸಕ್ರಿಯಗೊಳಿಸಲು',
- 'featured-by' => 'ವೈಶಿಷ್ಟ್ಯಗೊಳಿಸಿದ',
- 'featured-torrents' => 'ವಿಶಿಷ್ಟ ಟೊರೆಂಟುಗಳು',
+ 'chatbox' => 'ಚಾಟ್ ಬಾಕ್ಸ್',
+ 'click' => 'ಕ್ಲಿಕ್',
+ 'to-enable-editor' => 'ಸಂಪಾದಕವನ್ನು ಸಕ್ರಿಯಗೊಳಿಸಲು',
+ 'featured-by' => 'ವೈಶಿಷ್ಟ್ಯಗೊಳಿಸಿದ',
+ 'featured-torrents' => 'ವಿಶಿಷ್ಟ ಟೊರೆಂಟುಗಳು',
'featured-torrents-intro' => 'ನೀವು ಸಾಧ್ಯವಾದಾಗ ಅವರನ್ನು ಪಡೆಯಿರಿ!',
- 'featured-until' => 'ಇದು ಟೊರೆಂಟ್ ಅನ್ನು ವೈಶಿಷ್ಟ್ಯಗೊಳಿಸುತ್ತದೆ',
- 'top-torrents' => 'ಟಾಪ್ ಟೊರೆಂಟುಗಳು',
- 'latest-posts' => 'ಇತ್ತೀಚಿನ ಪೋಸ್ಟ್ಗಳು',
- 'latest-topics' => 'ಇತ್ತೀಚಿನ ವಿಷಯಗಳು',
- 'active-in-last' => 'ಕೊನೆಯಲ್ಲಿ ಸಕ್ರಿಯವಾಗಿದೆ',
- 'users-online' => 'ಬಳಕೆದಾರರು ಆನ್ಲೈನ್',
- 'check-news' => 'ಸುದ್ದಿಗಳು (ದೈನಂದಿನ ಪರಿಶೀಲಿಸಿ)',
- 'new-news' => 'ಹೊಸ ಸುದ್ದಿ',
- 'new-torrents' => 'ಹೊಸ ಟೊರೆಂಟುಗಳು',
+ 'featured-until' => 'ಇದು ಟೊರೆಂಟ್ ಅನ್ನು ವೈಶಿಷ್ಟ್ಯಗೊಳಿಸುತ್ತದೆ',
+ 'top-torrents' => 'ಟಾಪ್ ಟೊರೆಂಟುಗಳು',
+ 'latest-posts' => 'ಇತ್ತೀಚಿನ ಪೋಸ್ಟ್ಗಳು',
+ 'latest-topics' => 'ಇತ್ತೀಚಿನ ವಿಷಯಗಳು',
+ 'active-in-last' => 'ಕೊನೆಯಲ್ಲಿ ಸಕ್ರಿಯವಾಗಿದೆ',
+ 'users-online' => 'ಬಳಕೆದಾರರು ಆನ್ಲೈನ್',
+ 'check-news' => 'ಸುದ್ದಿಗಳು (ದೈನಂದಿನ ಪರಿಶೀಲಿಸಿ)',
+ 'new-news' => 'ಹೊಸ ಸುದ್ದಿ',
+ 'new-torrents' => 'ಹೊಸ ಟೊರೆಂಟುಗಳು',
];
diff --git a/lang/kn/bon.php b/lang/kn/bon.php
index 16414551b..bacec5a5d 100644
--- a/lang/kn/bon.php
+++ b/lang/kn/bon.php
@@ -12,44 +12,44 @@
*/
return [
- 'activated' => 'ಸಕ್ರಿಯಗೊಳಿಸಲಾಗಿದೆ',
- 'active' => 'ಸಕ್ರಿಯಗೊಳಿಸಲಾಗಿದೆ!',
- 'amount' => 'ಮೊತ್ತ',
- 'bon' => 'ಬೋನ್',
- 'bonus' => 'ಬೋನಸ್',
- 'date' => 'ದಿನಾಂಕ',
- 'earning' => 'ಗಳಿಸುತ್ತಿದೆ',
- 'earning-rate' => 'ಗಳಿಸಿದ ಈ ದರದಲ್ಲಿ ನೀವು ಪ್ರತಿ ಬಾರಿಯೂ ಕೆಳಗಿನದನ್ನು ಗಳಿಸುವಿರಿ ..',
- 'earnings' => 'ಸಂಪಾದನೆಗಳು',
- 'exchange' => 'ಎಕ್ಸ್ಚೇಂಜ್',
- 'exchange-warning' => 'ಎಕ್ಸ್ಚೇಂಜ್ಗಳು ಅಂತಿಮವಾಗಿದ್ದು, ವಿನಿಮಯ ಮಾಡಿಕೊಳ್ಳುವ ಮೊದಲು ನಿಮ್ಮ ಆಯ್ಕೆಗಳನ್ನು ಎರಡು ಬಾರಿ ಪರಿಶೀಲಿಸಿ.',
- 'extended-stats' => 'ವಿಸ್ತೃತ ಅಂಕಿಅಂಶಗಳು',
- 'gift' => 'ಗಿಫ್ಟ್',
- 'gift-bonus' => 'ಗಿಫ್ಟ್ ಬೋನಸ್ ಪಾಯಿಂಟುಗಳು',
- 'gift-to' => 'ಗಿಫ್ಟ್ ಬೋನಸ್ ಪಾಯಿಂಟುಗಳು',
- 'gifts' => 'ಉಡುಗೊರೆಗಳು',
- 'item' => 'ಐಟಂ',
- 'no-refund' => 'ಯಾವುದೇ ಮರುಪಾವತಿ ಇಲ್ಲ!',
- 'per-day' => 'ದಿನಕ್ಕೆ ಪಾಯಿಂಟುಗಳು',
- 'per-hour' => 'ಗಂಟೆಗೆ ಪಾಯಿಂಟುಗಳು',
- 'per-minute' => 'ಪ್ರತಿ ನಿಮಿಷಕ್ಕೆ ಪಾಯಿಂಟುಗಳು',
- 'per-month' => 'ತಿಂಗಳಿಗೆ ಪಾಯಿಂಟುಗಳು',
- 'per-second' => 'ಪಾಯಿಂಟುಗಳು ಪರ್ ಸೆಕೆಂಡ್',
- 'per-week' => 'ವಾರಕ್ಕೆ ಪಾಯಿಂಟುಗಳು',
- 'per-year' => 'ಪ್ರತಿ ವರ್ಷ ಪಾಯಿಂಟುಗಳು',
- 'points' => 'ಪಾಯಿಂಟುಗಳು',
- 'receiver' => 'ಸ್ವೀಕರಿಸುವವರು',
- 'review-seeds' => 'ಎಲ್ಲಾ ಬೀಜದ ಟೊರೆಂಟುಗಳನ್ನು ಪರಿಶೀಲಿಸಿ',
- 'send-gift' => 'ಉಡುಗೊರೆ ಕಳುಹಿಸಿ',
- 'sender' => 'ಕಳುಹಿಸುವವರು',
- 'store' => 'ಸಂಗ್ರಹಿಸಿ',
- 'tips' => 'ಸಲಹೆಗಳು',
- 'total' => 'ಒಟ್ಟು ಅರ್ನಿಂಗ್ಸ್',
- 'total-gifts' => 'ಒಟ್ಟು ಬೊನ್ ಉಡುಗೊರೆಗಳಲ್ಲಿ',
- 'total-tips' => 'ಒಟ್ಟು BON ಸಲಹೆಗಳು',
+ 'activated' => 'ಸಕ್ರಿಯಗೊಳಿಸಲಾಗಿದೆ',
+ 'active' => 'ಸಕ್ರಿಯಗೊಳಿಸಲಾಗಿದೆ!',
+ 'amount' => 'ಮೊತ್ತ',
+ 'bon' => 'ಬೋನ್',
+ 'bonus' => 'ಬೋನಸ್',
+ 'date' => 'ದಿನಾಂಕ',
+ 'earning' => 'ಗಳಿಸುತ್ತಿದೆ',
+ 'earning-rate' => 'ಗಳಿಸಿದ ಈ ದರದಲ್ಲಿ ನೀವು ಪ್ರತಿ ಬಾರಿಯೂ ಕೆಳಗಿನದನ್ನು ಗಳಿಸುವಿರಿ ..',
+ 'earnings' => 'ಸಂಪಾದನೆಗಳು',
+ 'exchange' => 'ಎಕ್ಸ್ಚೇಂಜ್',
+ 'exchange-warning' => 'ಎಕ್ಸ್ಚೇಂಜ್ಗಳು ಅಂತಿಮವಾಗಿದ್ದು, ವಿನಿಮಯ ಮಾಡಿಕೊಳ್ಳುವ ಮೊದಲು ನಿಮ್ಮ ಆಯ್ಕೆಗಳನ್ನು ಎರಡು ಬಾರಿ ಪರಿಶೀಲಿಸಿ.',
+ 'extended-stats' => 'ವಿಸ್ತೃತ ಅಂಕಿಅಂಶಗಳು',
+ 'gift' => 'ಗಿಫ್ಟ್',
+ 'gift-bonus' => 'ಗಿಫ್ಟ್ ಬೋನಸ್ ಪಾಯಿಂಟುಗಳು',
+ 'gift-to' => 'ಗಿಫ್ಟ್ ಬೋನಸ್ ಪಾಯಿಂಟುಗಳು',
+ 'gifts' => 'ಉಡುಗೊರೆಗಳು',
+ 'item' => 'ಐಟಂ',
+ 'no-refund' => 'ಯಾವುದೇ ಮರುಪಾವತಿ ಇಲ್ಲ!',
+ 'per-day' => 'ದಿನಕ್ಕೆ ಪಾಯಿಂಟುಗಳು',
+ 'per-hour' => 'ಗಂಟೆಗೆ ಪಾಯಿಂಟುಗಳು',
+ 'per-minute' => 'ಪ್ರತಿ ನಿಮಿಷಕ್ಕೆ ಪಾಯಿಂಟುಗಳು',
+ 'per-month' => 'ತಿಂಗಳಿಗೆ ಪಾಯಿಂಟುಗಳು',
+ 'per-second' => 'ಪಾಯಿಂಟುಗಳು ಪರ್ ಸೆಕೆಂಡ್',
+ 'per-week' => 'ವಾರಕ್ಕೆ ಪಾಯಿಂಟುಗಳು',
+ 'per-year' => 'ಪ್ರತಿ ವರ್ಷ ಪಾಯಿಂಟುಗಳು',
+ 'points' => 'ಪಾಯಿಂಟುಗಳು',
+ 'receiver' => 'ಸ್ವೀಕರಿಸುವವರು',
+ 'review-seeds' => 'ಎಲ್ಲಾ ಬೀಜದ ಟೊರೆಂಟುಗಳನ್ನು ಪರಿಶೀಲಿಸಿ',
+ 'send-gift' => 'ಉಡುಗೊರೆ ಕಳುಹಿಸಿ',
+ 'sender' => 'ಕಳುಹಿಸುವವರು',
+ 'store' => 'ಸಂಗ್ರಹಿಸಿ',
+ 'tips' => 'ಸಲಹೆಗಳು',
+ 'total' => 'ಒಟ್ಟು ಅರ್ನಿಂಗ್ಸ್',
+ 'total-gifts' => 'ಒಟ್ಟು ಬೊನ್ ಉಡುಗೊರೆಗಳಲ್ಲಿ',
+ 'total-tips' => 'ಒಟ್ಟು BON ಸಲಹೆಗಳು',
'you-have-received-gifts' => 'ನೀವು ಸ್ವೀಕರಿಸಿದ್ದೀರಿ',
- 'you-have-sent-gifts' => 'ನೀವು ಕಳುಹಿಸಿದ್ದೀರಿ',
- 'you-have-received-tips' => 'ನೀವು ಸ್ವೀಕರಿಸಿದ್ದೀರಿ',
- 'you-have-sent-tips' => 'ನೀವು ಕಳುಹಿಸಿದ್ದೀರಿ',
- 'your-points' => 'ನಿಮ್ಮ ಪಾಯಿಂಟುಗಳು',
+ 'you-have-sent-gifts' => 'ನೀವು ಕಳುಹಿಸಿದ್ದೀರಿ',
+ 'you-have-received-tips' => 'ನೀವು ಸ್ವೀಕರಿಸಿದ್ದೀರಿ',
+ 'you-have-sent-tips' => 'ನೀವು ಕಳುಹಿಸಿದ್ದೀರಿ',
+ 'your-points' => 'ನಿಮ್ಮ ಪಾಯಿಂಟುಗಳು',
];
diff --git a/lang/kn/bot.php b/lang/kn/bot.php
index a14ee25be..e9105723f 100644
--- a/lang/kn/bot.php
+++ b/lang/kn/bot.php
@@ -12,15 +12,15 @@
*/
return [
- 'about' => 'ಬಗ್ಗೆ',
- 'bot' => 'ಬಾಟ್',
- 'bots' => 'ಬಾಟ್ಗಳು',
- 'color' => 'ಬಣ್ಣ',
- 'command' => 'ಆದೇಶ',
- 'edit-bot' => 'ಬಾಟ್ ಸಂಪಾದಿಸಿ',
+ 'about' => 'ಬಗ್ಗೆ',
+ 'bot' => 'ಬಾಟ್',
+ 'bots' => 'ಬಾಟ್ಗಳು',
+ 'color' => 'ಬಣ್ಣ',
+ 'command' => 'ಆದೇಶ',
+ 'edit-bot' => 'ಬಾಟ್ ಸಂಪಾದಿಸಿ',
'emoji-code' => 'ಎಮೋಜಿ ಕೋಡ್',
- 'help' => 'ಸಹಾಯ',
- 'icon' => 'ಐಕಾನ್',
- 'info' => 'ಮಾಹಿತಿ',
- 'name' => 'ಹೆಸರು',
+ 'help' => 'ಸಹಾಯ',
+ 'icon' => 'ಐಕಾನ್',
+ 'info' => 'ಮಾಹಿತಿ',
+ 'name' => 'ಹೆಸರು',
];
diff --git a/lang/kn/bug.php b/lang/kn/bug.php
index 1273a0627..2568deb0c 100644
--- a/lang/kn/bug.php
+++ b/lang/kn/bug.php
@@ -12,15 +12,15 @@
*/
return [
- 'bug-report' => 'ಬಗ್ ವರದಿ',
+ 'bug-report' => 'ಬಗ್ ವರದಿ',
'bug-report-description' => 'ಸೈಟ್ ದೋಷವನ್ನು ವರದಿ ಮಾಡಿ',
- 'enter-description' => 'ಸಾಧ್ಯವಾದಷ್ಟು ಉತ್ತಮವಾದ ಸಮಸ್ಯೆಯನ್ನು ವಿವರಿಸಿ',
- 'enter-email' => 'ದಯವಿಟ್ಟು ನಿಮ್ಮ ಇ-ಮೇಲ್ ಅನ್ನು ನಮೂದಿಸಿ',
- 'enter-title' => 'ದಯವಿಟ್ಟು ಸರಿಯಾದ ಶೀರ್ಷಿಕೆಯನ್ನು ಆರಿಸಿಕೊಳ್ಳಿ',
- 'enter-username' => 'ದಯವಿಟ್ಟು ನಿಮ್ಮ ಬಳಕೆದಾರ ಹೆಸರನ್ನು ನಮೂದಿಸಿ',
- 'high' => 'ಹೈ',
- 'low' => 'ಕಡಿಮೆ',
- 'priority' => 'ಆದ್ಯತೆ',
- 'priority-description' => 'ಸೈಟ್ ಅನ್ನು ಬಳಸುವುದಕ್ಕಾಗಿ ದೋಷ ನಿಜವಾಗಿಯೂ ಸಮಸ್ಯೆಯಾಗಿದ್ದರೆ ಮಾತ್ರ ಅತಿ ಹೆಚ್ಚಿನದನ್ನು ಆರಿಸಿ.',
- 'very-high' => 'ಬಹಳ ಎತ್ತರ',
+ 'enter-description' => 'ಸಾಧ್ಯವಾದಷ್ಟು ಉತ್ತಮವಾದ ಸಮಸ್ಯೆಯನ್ನು ವಿವರಿಸಿ',
+ 'enter-email' => 'ದಯವಿಟ್ಟು ನಿಮ್ಮ ಇ-ಮೇಲ್ ಅನ್ನು ನಮೂದಿಸಿ',
+ 'enter-title' => 'ದಯವಿಟ್ಟು ಸರಿಯಾದ ಶೀರ್ಷಿಕೆಯನ್ನು ಆರಿಸಿಕೊಳ್ಳಿ',
+ 'enter-username' => 'ದಯವಿಟ್ಟು ನಿಮ್ಮ ಬಳಕೆದಾರ ಹೆಸರನ್ನು ನಮೂದಿಸಿ',
+ 'high' => 'ಹೈ',
+ 'low' => 'ಕಡಿಮೆ',
+ 'priority' => 'ಆದ್ಯತೆ',
+ 'priority-description' => 'ಸೈಟ್ ಅನ್ನು ಬಳಸುವುದಕ್ಕಾಗಿ ದೋಷ ನಿಜವಾಗಿಯೂ ಸಮಸ್ಯೆಯಾಗಿದ್ದರೆ ಮಾತ್ರ ಅತಿ ಹೆಚ್ಚಿನದನ್ನು ಆರಿಸಿ.',
+ 'very-high' => 'ಬಹಳ ಎತ್ತರ',
];
diff --git a/lang/kn/common.php b/lang/kn/common.php
index dc30cf3a3..7f1cdd514 100644
--- a/lang/kn/common.php
+++ b/lang/kn/common.php
@@ -12,179 +12,179 @@
*/
return [
- 'a-an-art' => '',
- 'about' => 'ನಮ್ಮ ಬಗ್ಗೆ',
- 'account' => 'ಖಾತೆ',
- 'achievement-title' => 'ನಾಡಿದು',
+ 'a-an-art' => '',
+ 'about' => 'ನಮ್ಮ ಬಗ್ಗೆ',
+ 'account' => 'ಖಾತೆ',
+ 'achievement-title' => 'ನಾಡಿದು',
'achievement-unlocked' => 'ನೀವು "ಹೆಸರು" ಸಾಧನೆ ಅನ್ಲಾಕ್ ಮಾಡಿದ್ದೀರಿ',
- 'active' => 'ಸಕ್ರಿಯ',
- 'active-warning' => 'ಸಕ್ರಿಯ ಎಚ್ಚರಿಕೆ',
- 'add' => 'ಸೇರಿಸಿ',
- 'added' => 'ಸೇರಿಸಲಾಗಿದೆ',
- 'amount' => 'ಮೊತ್ತ',
- 'anonymous' => 'ಅನಾಮಧೇಯ',
- 'author' => 'ಲೇಖಕ',
- 'balance' => 'ಸಮತೋಲನ',
- 'blacklist' => 'ಕ್ಲೈಂಟ್ ಬ್ಲ್ಯಾಕ್ಲಿಸ್ಟ್',
- 'buffer' => 'ಬಫರ್',
- 'bug' => 'ಒಂದು ದೋಷವನ್ನು ವರದಿ ಮಾಡಿ',
- 'but' => 'ಆದರೆ',
- 'cancel' => 'ರದ್ದುಮಾಡಿ',
- 'category' => 'ವರ್ಗ',
- 'categories' => 'ವರ್ಗಗಳು',
- 'close' => 'ಮುಚ್ಚಿ',
- 'comment' => 'ಕಾಮೆಂಟ್',
- 'comments' => 'ಪ್ರತಿಕ್ರಿಯೆಗಳು',
- 'community' => 'ಸಮುದಾಯ',
- 'contact' => 'ಸಂಪರ್ಕಿಸಿ',
- 'contact-desc' => 'ಈ ಸಂಪರ್ಕ ವಿನಂತಿಯನ್ನು ಮಾಲೀಕರಿಗೆ ಕಳುಹಿಸಲಾಗುವುದು ಮತ್ತು ಸಾಧ್ಯವಾದಷ್ಟು ಬೇಗ ನೀವು ಮರಳಿ ಪಡೆಯುತ್ತೀರಿ',
- 'contact-header' => 'ಹಲೋ',
- 'create' => 'ರಚಿಸಿ',
- 'created_at' => 'ರಚಿಸಲಾಗಿದೆ',
- 'day' => 'ದಿನ',
- 'delete' => 'ಅಳಿಸಿ',
- 'delete-your-comment' => 'ನಿಮ್ಮ ಕಾಮೆಂಟ್ ಅಳಿಸಿ',
- 'description' => 'ವಿವರಣೆ',
- 'direction' => 'ನಿರ್ದೇಶನ',
- 'disable' => 'ನಿಷ್ಕ್ರಿಯಗೊಳಿಸಿ',
- 'doubleup_activated' => 'ಜಾಗತಿಕ ಡಬಲ್ ಅಪ್ಲೋಡ್ ಮೋಡ್ ಅನ್ನು ಸಕ್ರಿಯಗೊಳಿಸಲಾಗಿದೆ',
- 'download' => 'ಡೌನ್ಲೋಡ್ ಮಾಡಿ',
- 'edit' => 'ಸಂಪಾದಿಸಿ',
- 'edit-your-comment' => 'ನಿಮ್ಮ ಕಾಮೆಂಟ್ ಸಂಪಾದಿಸಿ',
- 'email' => 'ಇ-ಮೇಲ್',
- 'email-blacklist' => 'ಇಮೇಲ್ ಕಪ್ಪುಪಟ್ಟಿ',
- 'email-whitelist' => 'ಇಮೇಲ್ ಶ್ವೇತಪಟ್ಟಿ',
+ 'active' => 'ಸಕ್ರಿಯ',
+ 'active-warning' => 'ಸಕ್ರಿಯ ಎಚ್ಚರಿಕೆ',
+ 'add' => 'ಸೇರಿಸಿ',
+ 'added' => 'ಸೇರಿಸಲಾಗಿದೆ',
+ 'amount' => 'ಮೊತ್ತ',
+ 'anonymous' => 'ಅನಾಮಧೇಯ',
+ 'author' => 'ಲೇಖಕ',
+ 'balance' => 'ಸಮತೋಲನ',
+ 'blacklist' => 'ಕ್ಲೈಂಟ್ ಬ್ಲ್ಯಾಕ್ಲಿಸ್ಟ್',
+ 'buffer' => 'ಬಫರ್',
+ 'bug' => 'ಒಂದು ದೋಷವನ್ನು ವರದಿ ಮಾಡಿ',
+ 'but' => 'ಆದರೆ',
+ 'cancel' => 'ರದ್ದುಮಾಡಿ',
+ 'category' => 'ವರ್ಗ',
+ 'categories' => 'ವರ್ಗಗಳು',
+ 'close' => 'ಮುಚ್ಚಿ',
+ 'comment' => 'ಕಾಮೆಂಟ್',
+ 'comments' => 'ಪ್ರತಿಕ್ರಿಯೆಗಳು',
+ 'community' => 'ಸಮುದಾಯ',
+ 'contact' => 'ಸಂಪರ್ಕಿಸಿ',
+ 'contact-desc' => 'ಈ ಸಂಪರ್ಕ ವಿನಂತಿಯನ್ನು ಮಾಲೀಕರಿಗೆ ಕಳುಹಿಸಲಾಗುವುದು ಮತ್ತು ಸಾಧ್ಯವಾದಷ್ಟು ಬೇಗ ನೀವು ಮರಳಿ ಪಡೆಯುತ್ತೀರಿ',
+ 'contact-header' => 'ಹಲೋ',
+ 'create' => 'ರಚಿಸಿ',
+ 'created_at' => 'ರಚಿಸಲಾಗಿದೆ',
+ 'day' => 'ದಿನ',
+ 'delete' => 'ಅಳಿಸಿ',
+ 'delete-your-comment' => 'ನಿಮ್ಮ ಕಾಮೆಂಟ್ ಅಳಿಸಿ',
+ 'description' => 'ವಿವರಣೆ',
+ 'direction' => 'ನಿರ್ದೇಶನ',
+ 'disable' => 'ನಿಷ್ಕ್ರಿಯಗೊಳಿಸಿ',
+ 'doubleup_activated' => 'ಜಾಗತಿಕ ಡಬಲ್ ಅಪ್ಲೋಡ್ ಮೋಡ್ ಅನ್ನು ಸಕ್ರಿಯಗೊಳಿಸಲಾಗಿದೆ',
+ 'download' => 'ಡೌನ್ಲೋಡ್ ಮಾಡಿ',
+ 'edit' => 'ಸಂಪಾದಿಸಿ',
+ 'edit-your-comment' => 'ನಿಮ್ಮ ಕಾಮೆಂಟ್ ಸಂಪಾದಿಸಿ',
+ 'email' => 'ಇ-ಮೇಲ್',
+ 'email-blacklist' => 'ಇಮೇಲ್ ಕಪ್ಪುಪಟ್ಟಿ',
+ 'email-whitelist' => 'ಇಮೇಲ್ ಶ್ವೇತಪಟ್ಟಿ',
'email-list-notactive' => 'ಇಮೇಲ್ ಶ್ವೇತಪಟ್ಟಿ / ಕಪ್ಪುಪಟ್ಟಿ ವ್ಯವಸ್ಥೆ ಸಕ್ರಿಯಗೊಂಡಿಲ್ಲ',
- 'enable' => 'ಸಕ್ರಿಯಗೊಳಿಸಿ',
- 'enter' => 'ನಮೂದಿಸಿ',
- 'error' => 'ದೋಷ',
- 'everyday' => 'ಪ್ರತಿ ದಿನ',
- 'expired' => 'ಅವಧಿ ಮುಗಿದಿದೆ',
- 'extra' => 'ಎಕ್ಸ್ಟ್ರಾ',
- 'extra-stats' => 'ಎಕ್ಸ್ಟ್ರಾ-ಅಂಕಿಅಂಶಗಳು',
- 'faq' => 'FAQ',
- 'files' => 'ಕಡತಗಳನ್ನು',
- 'fl_token' => 'ಫ್ರೀಲೀಕ್ ಟೋಕನ್',
- 'fl_tokens' => 'ಫ್ರೀಲೀಕ್ ಟೋಕನ್ಗಳು',
- 'for' => 'ಫಾರ್',
- 'forum' => 'ವೇದಿಕೆ',
- 'free' => 'ಉಚಿತ',
- 'freeleech_activated' => 'ಗ್ಲೋಬಲ್ ಫ್ರೀಲೀಚ್ ಮೋಡ್ ಸಕ್ರಿಯವಾಗಿದೆ',
- 'global' => 'ಜಾಗತಿಕ',
- 'group' => 'ಗುಂಪು',
- 'groups' => 'ಗುಂಪುಗಳು',
- 'hidden' => 'ಮರೆಮಾಡಲಾಗಿದೆ',
- 'high-speeds' => 'ಹೆಚ್ಚಿನ ವೇಗ',
- 'home' => 'ಮುಖಪುಟ',
- 'hot' => 'ಹಾಟ್!',
- 'hour' => 'ಅವರ್',
- 'huge' => 'ಬೃಹತ್',
- 'info' => 'ಮಾಹಿತಿ',
- 'internal' => 'ಆಂತರಿಕ',
- 'ip' => 'IP',
- 'is-allowed' => 'ಅನುಮತಿಸಲಾಗಿದೆ',
- 'large' => 'ದೊಡ್ಡದು',
- 'latest' => 'ಇತ್ತೀಚಿನ',
- 'latest-posts' => 'ಇತ್ತೀಚಿನ ಪೋಸ್ಟ್ಗಳು',
- 'latest-topics' => 'ಇತ್ತೀಚಿನ ವಿಷಯಗಳು',
- 'legal' => 'ಕಾನೂನು',
- 'legend' => 'ದಂತಕಥೆ',
- 'lists' => 'ಪಟ್ಟಿಗಳು',
- 'lock-account' => 'ಲಾಕ್ ಖಾತೆ',
- 'logout' => 'ಲಾಗ್ ಔಟ್',
- 'members' => 'ಸದಸ್ಯರು',
- 'message' => 'ಸಂದೇಶ',
- 'minute' => 'ನಿಮಿಷ',
- 'moderated-by' => 'ಮಾಡರೇಟ್ ಮಾಡಲಾಗಿದೆ',
- 'moderation' => 'ಮಾಡರೇಶನ್',
- 'moderation-approve' => 'ಅನುಮೋದಿಸಿ',
- 'moderation-postpone' => 'ಮುಂದೂಡಲಾಗಿದೆ',
- 'moderation-reject' => 'ತಿರಸ್ಕರಿಸಿ',
- 'month' => 'ತಿಂಗಳು',
- 'months' => 'ತಿಂಗಳುಗಳು',
- 'my' => 'ನನ್ನ',
- 'name' => 'ಹೆಸರು',
- 'navigation' => 'ನ್ಯಾವಿಗೇಶನ್',
- 'new' => 'ಹೊಸತು!',
- 'new-adj' => 'ಹೊಸತು',
- 'news' => 'ಸುದ್ದಿ',
- 'next' => 'ಮುಂದೆ',
- 'no' => 'ಇಲ್ಲ',
- 'no-comments' => 'ಇನ್ನೂ ಇಲ್ಲ',
- 'no-result' => 'ಪ್ರಶ್ನೆಗೆ ಡೇಟಾಬೇಸ್ನಲ್ಲಿ ಯಾವುದೇ ಫಲಿತಾಂಶವಿಲ್ಲ',
- 'notifications' => 'ಅಧಿಸೂಚನೆಗಳು',
- 'older-than' => 'ಹೆಚ್ಚು ಹಳೆಯದು',
- 'oldest' => 'ಹಳೆಯದು',
- 'openreg_activated' => 'ಮುಕ್ತ ನೋಂದಣಿ ಸಕ್ರಿಯವಾಗಿದೆ',
- 'order-by' => 'ಆರ್ಡರ್ ಮಾಡಿ',
- 'other' => 'ಇತರೆ',
- 'pages' => 'ಪುಟಗಳು',
- 'password' => 'ಪಾಸ್ವರ್ಡ್',
- 'patron' => 'ಪೋಷಕರಾಗಿ',
- 'pending-torrents' => 'ಬಾಕಿ ಉಳಿದಿರುವ ಟೊರೆಂಟುಗಳು',
- 'personal' => 'ವೈಯಕ್ತಿಕ',
- 'plural-suffix' => 'ರು',
- 'port' => 'ಪೋರ್ಟ್',
- 'position' => 'ಸ್ಥಾನ',
- 'posts' => 'ಪೋಸ್ಟ್ಗಳು',
- 'powered-by' => 'UNIT3D ನಡೆಸಲ್ಪಡುತ್ತಿದೆ',
- 'preview' => 'ಮುನ್ನೋಟ',
- 'previous' => 'ಹಿಂದಿನದು',
- 'progress' => 'ಪ್ರೋಗ್ರೆಸ್',
- 'publish' => 'ಪ್ರಕಟಿಸು',
- 'quantity' => 'ಪ್ರಮಾಣ',
- 'quick-search' => 'ತ್ವರಿತ ಹುಡುಕಾಟ',
- 'ratio' => 'ಅನುಪಾತ',
- 'reason' => 'ಕಾರಣ',
- 'remove' => 'ತೆಗೆದುಹಾಕಿ',
- 'report' => 'ವರದಿ',
- 'resend' => 'ಮರುಕಳುಹಿಸಿ',
- 'reporter' => 'ರಿಪೋರ್ಟರ್',
- 'required' => 'ಅಗತ್ಯವಿದೆ',
- 'results' => 'ಫಲಿತಾಂಶಗಳು',
- 'rss-system' => 'ಆರ್ಎಸ್ ಸಿಸ್ಟಮ್',
- 'rules' => 'ನಿಯಮಗಳು',
- 'save' => 'ಉಳಿಸಿ',
- 'search' => 'ಹುಡುಕಿ',
- 'search-results' => 'ಹುಡುಕಾಟ ಫಲಿತಾಂಶಗಳು',
- 'search-results-desc' => 'ದಯವಿಟ್ಟು ನಿಮ್ಮ ಫಲಿತಾಂಶಗಳನ್ನು ಕೆಳಗೆ ನೋಡಿ',
- 'second' => 'ಎರಡನೇ',
- 'select' => 'ಆಯ್ಕೆಮಾಡಿ',
- 'sort' => 'ವಿಂಗಡಿಸಿ',
- 'special' => 'ವಿಶೇಷ',
- 'staff' => 'ಸಿಬ್ಬಂದಿ',
- 'staff-tools' => 'ಸಿಬ್ಬಂದಿ ಉಪಕರಣಗಳು',
- 'stats' => 'ಅಂಕಿಅಂಶಗಳು',
- 'status' => 'ಸ್ಥಿತಿ',
- 'sticked' => 'ಸ್ಟಿಕ್ಡ್',
- 'submit' => 'ಸಲ್ಲಿಸಲು',
- 'subscriptions' => 'ಚಂದಾದಾರಿಕೆಗಳು',
- 'teams' => 'ತಂಡಗಳು',
- 'terms' => 'ಬಳಕೆಯ ನಿಯಮಗಳು',
- 'times' => 'ಟೈಮ್ಸ್',
- 'title' => 'ಶೀರ್ಷಿಕೆ',
- 'top-bountied' => 'ಟಾಪ್ ಬೌಂಟಿಡ್',
- 'topics' => 'ವಿಷಯಗಳು',
- 'tracker-codes' => 'ಟ್ರ್ಯಾಕರ್ ಕೋಡ್ಗಳು',
- 'type' => 'ಮಾದರಿ',
- 'type-verb' => 'ಮಾದರಿ',
- 'types' => 'ರೀತಿಯ',
- 'genre' => 'ಪ್ರಕಾರ',
- 'genres' => 'ಪ್ರಕಾರಗಳು',
- 'action' => 'ಕ್ರಿಯೆ',
- 'actions' => 'ಕ್ರಿಯೆಗಳು',
- 'unknown' => 'ಅಜ್ಞಾತ',
+ 'enable' => 'ಸಕ್ರಿಯಗೊಳಿಸಿ',
+ 'enter' => 'ನಮೂದಿಸಿ',
+ 'error' => 'ದೋಷ',
+ 'everyday' => 'ಪ್ರತಿ ದಿನ',
+ 'expired' => 'ಅವಧಿ ಮುಗಿದಿದೆ',
+ 'extra' => 'ಎಕ್ಸ್ಟ್ರಾ',
+ 'extra-stats' => 'ಎಕ್ಸ್ಟ್ರಾ-ಅಂಕಿಅಂಶಗಳು',
+ 'faq' => 'FAQ',
+ 'files' => 'ಕಡತಗಳನ್ನು',
+ 'fl_token' => 'ಫ್ರೀಲೀಕ್ ಟೋಕನ್',
+ 'fl_tokens' => 'ಫ್ರೀಲೀಕ್ ಟೋಕನ್ಗಳು',
+ 'for' => 'ಫಾರ್',
+ 'forum' => 'ವೇದಿಕೆ',
+ 'free' => 'ಉಚಿತ',
+ 'freeleech_activated' => 'ಗ್ಲೋಬಲ್ ಫ್ರೀಲೀಚ್ ಮೋಡ್ ಸಕ್ರಿಯವಾಗಿದೆ',
+ 'global' => 'ಜಾಗತಿಕ',
+ 'group' => 'ಗುಂಪು',
+ 'groups' => 'ಗುಂಪುಗಳು',
+ 'hidden' => 'ಮರೆಮಾಡಲಾಗಿದೆ',
+ 'high-speeds' => 'ಹೆಚ್ಚಿನ ವೇಗ',
+ 'home' => 'ಮುಖಪುಟ',
+ 'hot' => 'ಹಾಟ್!',
+ 'hour' => 'ಅವರ್',
+ 'huge' => 'ಬೃಹತ್',
+ 'info' => 'ಮಾಹಿತಿ',
+ 'internal' => 'ಆಂತರಿಕ',
+ 'ip' => 'IP',
+ 'is-allowed' => 'ಅನುಮತಿಸಲಾಗಿದೆ',
+ 'large' => 'ದೊಡ್ಡದು',
+ 'latest' => 'ಇತ್ತೀಚಿನ',
+ 'latest-posts' => 'ಇತ್ತೀಚಿನ ಪೋಸ್ಟ್ಗಳು',
+ 'latest-topics' => 'ಇತ್ತೀಚಿನ ವಿಷಯಗಳು',
+ 'legal' => 'ಕಾನೂನು',
+ 'legend' => 'ದಂತಕಥೆ',
+ 'lists' => 'ಪಟ್ಟಿಗಳು',
+ 'lock-account' => 'ಲಾಕ್ ಖಾತೆ',
+ 'logout' => 'ಲಾಗ್ ಔಟ್',
+ 'members' => 'ಸದಸ್ಯರು',
+ 'message' => 'ಸಂದೇಶ',
+ 'minute' => 'ನಿಮಿಷ',
+ 'moderated-by' => 'ಮಾಡರೇಟ್ ಮಾಡಲಾಗಿದೆ',
+ 'moderation' => 'ಮಾಡರೇಶನ್',
+ 'moderation-approve' => 'ಅನುಮೋದಿಸಿ',
+ 'moderation-postpone' => 'ಮುಂದೂಡಲಾಗಿದೆ',
+ 'moderation-reject' => 'ತಿರಸ್ಕರಿಸಿ',
+ 'month' => 'ತಿಂಗಳು',
+ 'months' => 'ತಿಂಗಳುಗಳು',
+ 'my' => 'ನನ್ನ',
+ 'name' => 'ಹೆಸರು',
+ 'navigation' => 'ನ್ಯಾವಿಗೇಶನ್',
+ 'new' => 'ಹೊಸತು!',
+ 'new-adj' => 'ಹೊಸತು',
+ 'news' => 'ಸುದ್ದಿ',
+ 'next' => 'ಮುಂದೆ',
+ 'no' => 'ಇಲ್ಲ',
+ 'no-comments' => 'ಇನ್ನೂ ಇಲ್ಲ',
+ 'no-result' => 'ಪ್ರಶ್ನೆಗೆ ಡೇಟಾಬೇಸ್ನಲ್ಲಿ ಯಾವುದೇ ಫಲಿತಾಂಶವಿಲ್ಲ',
+ 'notifications' => 'ಅಧಿಸೂಚನೆಗಳು',
+ 'older-than' => 'ಹೆಚ್ಚು ಹಳೆಯದು',
+ 'oldest' => 'ಹಳೆಯದು',
+ 'openreg_activated' => 'ಮುಕ್ತ ನೋಂದಣಿ ಸಕ್ರಿಯವಾಗಿದೆ',
+ 'order-by' => 'ಆರ್ಡರ್ ಮಾಡಿ',
+ 'other' => 'ಇತರೆ',
+ 'pages' => 'ಪುಟಗಳು',
+ 'password' => 'ಪಾಸ್ವರ್ಡ್',
+ 'patron' => 'ಪೋಷಕರಾಗಿ',
+ 'pending-torrents' => 'ಬಾಕಿ ಉಳಿದಿರುವ ಟೊರೆಂಟುಗಳು',
+ 'personal' => 'ವೈಯಕ್ತಿಕ',
+ 'plural-suffix' => 'ರು',
+ 'port' => 'ಪೋರ್ಟ್',
+ 'position' => 'ಸ್ಥಾನ',
+ 'posts' => 'ಪೋಸ್ಟ್ಗಳು',
+ 'powered-by' => 'UNIT3D ನಡೆಸಲ್ಪಡುತ್ತಿದೆ',
+ 'preview' => 'ಮುನ್ನೋಟ',
+ 'previous' => 'ಹಿಂದಿನದು',
+ 'progress' => 'ಪ್ರೋಗ್ರೆಸ್',
+ 'publish' => 'ಪ್ರಕಟಿಸು',
+ 'quantity' => 'ಪ್ರಮಾಣ',
+ 'quick-search' => 'ತ್ವರಿತ ಹುಡುಕಾಟ',
+ 'ratio' => 'ಅನುಪಾತ',
+ 'reason' => 'ಕಾರಣ',
+ 'remove' => 'ತೆಗೆದುಹಾಕಿ',
+ 'report' => 'ವರದಿ',
+ 'resend' => 'ಮರುಕಳುಹಿಸಿ',
+ 'reporter' => 'ರಿಪೋರ್ಟರ್',
+ 'required' => 'ಅಗತ್ಯವಿದೆ',
+ 'results' => 'ಫಲಿತಾಂಶಗಳು',
+ 'rss-system' => 'ಆರ್ಎಸ್ ಸಿಸ್ಟಮ್',
+ 'rules' => 'ನಿಯಮಗಳು',
+ 'save' => 'ಉಳಿಸಿ',
+ 'search' => 'ಹುಡುಕಿ',
+ 'search-results' => 'ಹುಡುಕಾಟ ಫಲಿತಾಂಶಗಳು',
+ 'search-results-desc' => 'ದಯವಿಟ್ಟು ನಿಮ್ಮ ಫಲಿತಾಂಶಗಳನ್ನು ಕೆಳಗೆ ನೋಡಿ',
+ 'second' => 'ಎರಡನೇ',
+ 'select' => 'ಆಯ್ಕೆಮಾಡಿ',
+ 'sort' => 'ವಿಂಗಡಿಸಿ',
+ 'special' => 'ವಿಶೇಷ',
+ 'staff' => 'ಸಿಬ್ಬಂದಿ',
+ 'staff-tools' => 'ಸಿಬ್ಬಂದಿ ಉಪಕರಣಗಳು',
+ 'stats' => 'ಅಂಕಿಅಂಶಗಳು',
+ 'status' => 'ಸ್ಥಿತಿ',
+ 'sticked' => 'ಸ್ಟಿಕ್ಡ್',
+ 'submit' => 'ಸಲ್ಲಿಸಲು',
+ 'subscriptions' => 'ಚಂದಾದಾರಿಕೆಗಳು',
+ 'teams' => 'ತಂಡಗಳು',
+ 'terms' => 'ಬಳಕೆಯ ನಿಯಮಗಳು',
+ 'times' => 'ಟೈಮ್ಸ್',
+ 'title' => 'ಶೀರ್ಷಿಕೆ',
+ 'top-bountied' => 'ಟಾಪ್ ಬೌಂಟಿಡ್',
+ 'topics' => 'ವಿಷಯಗಳು',
+ 'tracker-codes' => 'ಟ್ರ್ಯಾಕರ್ ಕೋಡ್ಗಳು',
+ 'type' => 'ಮಾದರಿ',
+ 'type-verb' => 'ಮಾದರಿ',
+ 'types' => 'ರೀತಿಯ',
+ 'genre' => 'ಪ್ರಕಾರ',
+ 'genres' => 'ಪ್ರಕಾರಗಳು',
+ 'action' => 'ಕ್ರಿಯೆ',
+ 'actions' => 'ಕ್ರಿಯೆಗಳು',
+ 'unknown' => 'ಅಜ್ಞಾತ',
'unlocked-achievement' => 'ನೀವು ಅನ್ಲಾಕ್ ಮಾಡಿದ್ದೀರಿ: ಸಾಧನೆಯ ಸಾಧನೆ',
- 'upload' => 'ಅಪ್ಲೋಡ್ ಮಾಡಿ',
- 'upload-guide' => 'ಮಾರ್ಗದರ್ಶಿ ಅಪ್ಲೋಡ್ ಮಾಡಿ',
- 'user' => 'ಬಳಕೆದಾರ',
- 'username' => 'ಬಳಕೆದಾರ ಹೆಸರು',
- 'users' => 'ಬಳಕೆದಾರರು',
- 'view' => 'ನೋಟ',
- 'view-all' => 'ಎಲ್ಲಾ ವೀಕ್ಷಿಸಿ',
- 'warnings' => 'ಎಚ್ಚರಿಕೆಗಳು',
- 'year' => 'ವರ್ಷ',
- 'yes' => 'ಹೌದು',
- 'your' => 'ನಿಮ್ಮ',
- 'your-comment' => 'ನಿಮ್ಮ ಅಭಿಪ್ರಾಯ',
+ 'upload' => 'ಅಪ್ಲೋಡ್ ಮಾಡಿ',
+ 'upload-guide' => 'ಮಾರ್ಗದರ್ಶಿ ಅಪ್ಲೋಡ್ ಮಾಡಿ',
+ 'user' => 'ಬಳಕೆದಾರ',
+ 'username' => 'ಬಳಕೆದಾರ ಹೆಸರು',
+ 'users' => 'ಬಳಕೆದಾರರು',
+ 'view' => 'ನೋಟ',
+ 'view-all' => 'ಎಲ್ಲಾ ವೀಕ್ಷಿಸಿ',
+ 'warnings' => 'ಎಚ್ಚರಿಕೆಗಳು',
+ 'year' => 'ವರ್ಷ',
+ 'yes' => 'ಹೌದು',
+ 'your' => 'ನಿಮ್ಮ',
+ 'your-comment' => 'ನಿಮ್ಮ ಅಭಿಪ್ರಾಯ',
];
diff --git a/lang/kn/email.php b/lang/kn/email.php
index 4e931bd84..c38598a8b 100644
--- a/lang/kn/email.php
+++ b/lang/kn/email.php
@@ -12,46 +12,46 @@
*/
return [
- 'activate-account' => 'ಖಾತೆಯನ್ನು ಸಕ್ರಿಯಗೊಳಿಸಿ',
- 'ban-reason' => 'ಕಾರಣ',
- 'banned-footer' => 'ನಿಯಮಗಳನ್ನು ಅನುಸರಿಸದಿರುವುದಕ್ಕೆ ನೀವು ಏನು ಪಡೆದುಕೊಳ್ಳುತ್ತೀರಿ ಎಂಬುದು ಇಲ್ಲಿದೆ',
- 'banned-header' => 'ನಿಷೇಧಿಸಲಾಗಿದೆ',
- 'bug-description' => 'ಸಮಸ್ಯೆ',
- 'bug-footer' => 'ಆ ಶಿಟ್ ಸರಿಪಡಿಸಿ',
- 'bug-header' => 'ಹೊಸ ದೋಷದಿಂದ ವರದಿ',
- 'bug-priority' => 'ಆದ್ಯತೆ',
- 'bug-title' => 'ಬಗ್ ಶೀರ್ಷಿಕೆ',
- 'contact-header' => 'ಇಂದ ಹೊಸ ಸಂಪರ್ಕ ಮೇಲ್',
- 'contact-message' => 'ಸಂದೇಶ',
- 'contact-name' => 'ಹೆಸರು',
+ 'activate-account' => 'ಖಾತೆಯನ್ನು ಸಕ್ರಿಯಗೊಳಿಸಿ',
+ 'ban-reason' => 'ಕಾರಣ',
+ 'banned-footer' => 'ನಿಯಮಗಳನ್ನು ಅನುಸರಿಸದಿರುವುದಕ್ಕೆ ನೀವು ಏನು ಪಡೆದುಕೊಳ್ಳುತ್ತೀರಿ ಎಂಬುದು ಇಲ್ಲಿದೆ',
+ 'banned-header' => 'ನಿಷೇಧಿಸಲಾಗಿದೆ',
+ 'bug-description' => 'ಸಮಸ್ಯೆ',
+ 'bug-footer' => 'ಆ ಶಿಟ್ ಸರಿಪಡಿಸಿ',
+ 'bug-header' => 'ಹೊಸ ದೋಷದಿಂದ ವರದಿ',
+ 'bug-priority' => 'ಆದ್ಯತೆ',
+ 'bug-title' => 'ಬಗ್ ಶೀರ್ಷಿಕೆ',
+ 'contact-header' => 'ಇಂದ ಹೊಸ ಸಂಪರ್ಕ ಮೇಲ್',
+ 'contact-message' => 'ಸಂದೇಶ',
+ 'contact-name' => 'ಹೆಸರು',
'fail-login-greeting' => 'ಖಾತೆ ಲಾಗಿನ್ ವಿಫಲವಾಗಿದೆ!',
- 'fail-login-line1' => 'ನಿಮ್ಮ ಖಾತೆಗೆ ವಿಫಲವಾದ ಲಾಗಿನ್ ಪತ್ತೆಯಾಗಿದೆ.',
- 'fail-login-line2' => 'ಈ ವಿನಂತಿಯು ಇವರಿಂದ ಹುಟ್ಟಿಕೊಂಡಿದೆ: ip (: host) at: time',
- 'fail-login-subject' => 'ವಿಫಲ ಲಾಗಿನ್ ಪ್ರಕಟಣೆ',
- 'footer-link' => ': ActionText ಬಟನ್ ಅನ್ನು ಕ್ಲಿಕ್ ಮಾಡುವಲ್ಲಿ ನಿಮಗೆ ತೊಂದರೆ ಇದ್ದಲ್ಲಿ, ಕೆಳಗಿನ URL ಅನ್ನು ನಿಮ್ಮ ವೆಬ್ ಬ್ರೌಸರ್ಗೆ ನಕಲಿಸಿ ಮತ್ತು ಅಂಟಿಸಿ:',
- 'invite-header' => 'ಆಹ್ವಾನ',
- 'invite-invited' => 'ನಿಮ್ಮನ್ನು ಆಮಂತ್ರಿಸಲಾಗಿದೆ',
- 'invite-message' => 'ಸಂದೇಶ',
- 'invite-signup' => 'ಈಗ ಸೈನ್ ಅಪ್ ಮಾಡಿ',
- 'newreply-header' => 'ನಿಮ್ಮ ವಿಷಯದಲ್ಲಿ ಹೊಸ ಪ್ರತ್ಯುತ್ತರವಿದೆ',
- 'newreply-message' => 'ಸಂದೇಶ',
- 'newreply-replied' => 'ನಿಮ್ಮ ವಿಷಯಕ್ಕೆ ಉತ್ತರಿಸಿದೆ',
- 'newreply-view' => 'ಈಗ ಇದನ್ನು ವೀಕ್ಷಿಸಿ',
- 'no-email-found' => 'ನಮ್ಮ ಸಿಸ್ಟಂನಲ್ಲಿ ಈ ಇಮೇಲ್ ಅನ್ನು ನಮಗೆ ಹುಡುಕಲಾಗಲಿಲ್ಲ!',
- 'register-code' => 'ನಿಮ್ಮ ಖಾತೆಯ ಸಕ್ರಿಯತೆಯನ್ನು ಪೂರ್ಣಗೊಳಿಸಲು ಕೆಳಗಿನ ಬಟನ್ ಕ್ಲಿಕ್ ಮಾಡಿ',
- 'register-footer' => 'ಮೇಲಿನ ಬಟನ್ ಕಾರ್ಯನಿರ್ವಹಿಸದಿದ್ದರೆ, ನಿಮ್ಮ ಬ್ರೌಸರ್ ವಿಳಾಸ ಪಟ್ಟಿಯಲ್ಲಿ URL ಅನ್ನು ನಕಲಿಸಿ ಮತ್ತು ಅಂಟಿಸಿ',
- 'register-header' => 'ಹಾಯ್! ಸೈನ್ ಅಪ್ ಮಾಡಿದಕ್ಕಾಗಿ ಧನ್ಯವಾದಗಳು',
- 'report-comment' => 'ಕಾಮೆಂಟ್',
- 'report-email' => 'ಇ-ಮೇಲ್',
- 'report-header' => 'ಹಾಯ್ ನಿರ್ವಹಣೆ, ಲಿಂಕ್ ಅನ್ನು ವರದಿ ಮಾಡಲಾಗಿದೆ',
- 'report-link' => 'ಲಿಂಕ್',
- 'report-link-hash' => 'ನಿಜವಾದ ಲಿಂಕ್',
- 'thanks' => 'ಬಳಸಿದಕ್ಕಾಗಿ ಧನ್ಯವಾದಗಳು',
- 'unban-footer' => 'ಮರಳಿ ಸ್ವಾಗತ!',
- 'unban-header' => 'ನಿಷೇಧಿಸಲಾಗಿದೆ',
- 'unban-reason' => 'ಕಾರಣ',
- 'username-reminder' => 'ನೀವು ಇತ್ತೀಚೆಗೆ ನಮ್ಮ ಅಪ್ಲಿಕೇಶನ್ನಲ್ಲಿ ನಿಮ್ಮ ಬಳಕೆದಾರಹೆಸರಿಗೆ ನಮಗೆ ವಿನಂತಿಯನ್ನು ಕಳುಹಿಸಿದ್ದೇವೆ. ನಿಮ್ಮ ಬಳಕೆದಾರ ಹೆಸರು',
- 'username-sent' => 'ನಿಮ್ಮ ಬಳಕೆದಾರಹೆಸರನ್ನು ನಿಮ್ಮ ಇಮೇಲ್ ವಿಳಾಸಕ್ಕೆ ಕಳುಹಿಸಲಾಗಿದೆ!',
- 'disabled-header' => 'ನಿಮ್ಮ ಖಾತೆಯನ್ನು ನಿಷ್ಕ್ರಿಯಗೊಳಿಸಲಾಗಿದೆ',
- 'pruned-header' => 'ನಿಮ್ಮ ಖಾತೆ ಸಮರ್ಪಿಸಲಾಗಿದೆ',
+ 'fail-login-line1' => 'ನಿಮ್ಮ ಖಾತೆಗೆ ವಿಫಲವಾದ ಲಾಗಿನ್ ಪತ್ತೆಯಾಗಿದೆ.',
+ 'fail-login-line2' => 'ಈ ವಿನಂತಿಯು ಇವರಿಂದ ಹುಟ್ಟಿಕೊಂಡಿದೆ: ip (: host) at: time',
+ 'fail-login-subject' => 'ವಿಫಲ ಲಾಗಿನ್ ಪ್ರಕಟಣೆ',
+ 'footer-link' => ': ActionText ಬಟನ್ ಅನ್ನು ಕ್ಲಿಕ್ ಮಾಡುವಲ್ಲಿ ನಿಮಗೆ ತೊಂದರೆ ಇದ್ದಲ್ಲಿ, ಕೆಳಗಿನ URL ಅನ್ನು ನಿಮ್ಮ ವೆಬ್ ಬ್ರೌಸರ್ಗೆ ನಕಲಿಸಿ ಮತ್ತು ಅಂಟಿಸಿ:',
+ 'invite-header' => 'ಆಹ್ವಾನ',
+ 'invite-invited' => 'ನಿಮ್ಮನ್ನು ಆಮಂತ್ರಿಸಲಾಗಿದೆ',
+ 'invite-message' => 'ಸಂದೇಶ',
+ 'invite-signup' => 'ಈಗ ಸೈನ್ ಅಪ್ ಮಾಡಿ',
+ 'newreply-header' => 'ನಿಮ್ಮ ವಿಷಯದಲ್ಲಿ ಹೊಸ ಪ್ರತ್ಯುತ್ತರವಿದೆ',
+ 'newreply-message' => 'ಸಂದೇಶ',
+ 'newreply-replied' => 'ನಿಮ್ಮ ವಿಷಯಕ್ಕೆ ಉತ್ತರಿಸಿದೆ',
+ 'newreply-view' => 'ಈಗ ಇದನ್ನು ವೀಕ್ಷಿಸಿ',
+ 'no-email-found' => 'ನಮ್ಮ ಸಿಸ್ಟಂನಲ್ಲಿ ಈ ಇಮೇಲ್ ಅನ್ನು ನಮಗೆ ಹುಡುಕಲಾಗಲಿಲ್ಲ!',
+ 'register-code' => 'ನಿಮ್ಮ ಖಾತೆಯ ಸಕ್ರಿಯತೆಯನ್ನು ಪೂರ್ಣಗೊಳಿಸಲು ಕೆಳಗಿನ ಬಟನ್ ಕ್ಲಿಕ್ ಮಾಡಿ',
+ 'register-footer' => 'ಮೇಲಿನ ಬಟನ್ ಕಾರ್ಯನಿರ್ವಹಿಸದಿದ್ದರೆ, ನಿಮ್ಮ ಬ್ರೌಸರ್ ವಿಳಾಸ ಪಟ್ಟಿಯಲ್ಲಿ URL ಅನ್ನು ನಕಲಿಸಿ ಮತ್ತು ಅಂಟಿಸಿ',
+ 'register-header' => 'ಹಾಯ್! ಸೈನ್ ಅಪ್ ಮಾಡಿದಕ್ಕಾಗಿ ಧನ್ಯವಾದಗಳು',
+ 'report-comment' => 'ಕಾಮೆಂಟ್',
+ 'report-email' => 'ಇ-ಮೇಲ್',
+ 'report-header' => 'ಹಾಯ್ ನಿರ್ವಹಣೆ, ಲಿಂಕ್ ಅನ್ನು ವರದಿ ಮಾಡಲಾಗಿದೆ',
+ 'report-link' => 'ಲಿಂಕ್',
+ 'report-link-hash' => 'ನಿಜವಾದ ಲಿಂಕ್',
+ 'thanks' => 'ಬಳಸಿದಕ್ಕಾಗಿ ಧನ್ಯವಾದಗಳು',
+ 'unban-footer' => 'ಮರಳಿ ಸ್ವಾಗತ!',
+ 'unban-header' => 'ನಿಷೇಧಿಸಲಾಗಿದೆ',
+ 'unban-reason' => 'ಕಾರಣ',
+ 'username-reminder' => 'ನೀವು ಇತ್ತೀಚೆಗೆ ನಮ್ಮ ಅಪ್ಲಿಕೇಶನ್ನಲ್ಲಿ ನಿಮ್ಮ ಬಳಕೆದಾರಹೆಸರಿಗೆ ನಮಗೆ ವಿನಂತಿಯನ್ನು ಕಳುಹಿಸಿದ್ದೇವೆ. ನಿಮ್ಮ ಬಳಕೆದಾರ ಹೆಸರು',
+ 'username-sent' => 'ನಿಮ್ಮ ಬಳಕೆದಾರಹೆಸರನ್ನು ನಿಮ್ಮ ಇಮೇಲ್ ವಿಳಾಸಕ್ಕೆ ಕಳುಹಿಸಲಾಗಿದೆ!',
+ 'disabled-header' => 'ನಿಮ್ಮ ಖಾತೆಯನ್ನು ನಿಷ್ಕ್ರಿಯಗೊಳಿಸಲಾಗಿದೆ',
+ 'pruned-header' => 'ನಿಮ್ಮ ಖಾತೆ ಸಮರ್ಪಿಸಲಾಗಿದೆ',
];
diff --git a/lang/kn/forum.php b/lang/kn/forum.php
index a8c405ae5..05e3c9772 100644
--- a/lang/kn/forum.php
+++ b/lang/kn/forum.php
@@ -12,63 +12,63 @@
*/
return [
- 'action' => 'ಕ್ರಿಯೆ',
- 'activity' => 'ಚಟುವಟಿಕೆ',
- 'approved' => 'ಅನುಮೋದಿಸಲಾಗಿದೆ',
- 'author' => 'ಲೇಖಕ',
- 'bug' => 'ಬಗ್',
- 'category-quick-search' => 'ವಿಷಯದ ಹೆಸರು ತ್ವರಿತ ಶೋಧ (ವಿಭಾಗದಲ್ಲಿ)',
- 'close-topic' => 'ಲಾಕ್ ವಿಷಯ',
- 'closed' => 'ಮುಚ್ಚಲಾಗಿದೆ',
- 'create-new-topic' => 'ಹೊಸ ವಿಷಯ ರಚಿಸಿ',
- 'created' => 'ರಚಿಸಲಾಗಿದೆ',
- 'current' => 'ಪ್ರಸ್ತುತ',
- 'delete-topic' => 'ಈ ವಿಷಯವನ್ನು ಅಳಿಸಿ',
- 'denied' => 'ನಿರಾಕರಿಸಲಾಗಿದೆ',
- 'dislike-post' => 'ಈ ಪೋಸ್ಟ್ ಅನ್ನು ಇಷ್ಟಪಡದಿರಿ',
- 'display-forum' => 'ರಲ್ಲಿ ವಿಷಯಗಳನ್ನು ತೋರಿಸಿ',
- 'edit-post' => 'ಪೋಸ್ಟ್ ಸಂಪಾದಿಸಿ',
- 'edit-topic' => 'ವಿಷಯ ಸಂಪಾದಿಸಿ',
- 'forum' => 'ವೇದಿಕೆ',
- 'forums' => 'ವೇದಿಕೆಗಳು',
- 'implemented' => 'ಅಳವಡಿಸಲಾಗಿದೆ',
- 'in' => 'ಇನ್',
- 'invalid' => 'ಅಮಾನ್ಯವಾಗಿದೆ',
- 'label' => 'ಲೇಬಲ್',
- 'label-system' => 'ಲೇಬಲ್ ವ್ಯವಸ್ಥೆ',
- 'last-message' => 'ಕೊನೆಯ ಸಂದೇಶ',
- 'last-post-info' => 'ಕೊನೆಯ ಪೋಸ್ಟ್ ಮಾಹಿತಿ',
- 'latest' => 'ಇತ್ತೀಚಿನ',
- 'like-post' => 'ಈ ಪೋಸ್ಟ್ ಲೈಕ್',
- 'meta-category' => 'ವಿಭಾಗದಲ್ಲಿನ ವೇದಿಕೆಗಳ ಪಟ್ಟಿ',
- 'moderation' => 'ಮಾಡರೇಶನ್',
- 'name' => 'ಹೆಸರು',
- 'not-connected' => 'ನೀವು ಸಂಪರ್ಕಿಸಬೇಕು',
- 'not-subscribed' => 'ಚಂದಾದಾರರಾಗಿಲ್ಲ',
- 'open' => 'ತೆರೆಯಿರಿ',
- 'open-topic' => 'ಈ ವಿಷಯವನ್ನು ತೆರೆಯಿರಿ',
- 'permalink' => 'ಪರ್ಮಾಲಿಂಕ್',
- 'pin' => 'ಪಿನ್',
- 'post' => 'ಪೋಸ್ಟ್',
- 'post-quick-search' => 'ದೇಹದ ಶೀಘ್ರ ಹುಡುಕಾಟವನ್ನು ಪೋಸ್ಟ್ ಮಾಡಿ',
- 'posts' => 'ಪೋಸ್ಟ್ಗಳು',
- 'quote' => 'ಉದ್ಧರಣ',
- 'read-topic' => 'ವಿಷಯ ಓದಿ',
- 'replies' => 'ಪ್ರತ್ಯುತ್ತರಗಳು',
- 'send-new-topic' => 'ಈ ವಿಷಯವನ್ನು ಉಳಿಸಿ',
- 'solved' => 'ಪರಿಹಾರ',
- 'state' => 'ರಾಜ್ಯ',
- 'stats' => 'ಅಂಕಿಅಂಶಗಳು',
- 'subscribed' => 'ಚಂದಾದಾರರಾಗಿದ್ದಾರೆ',
+ 'action' => 'ಕ್ರಿಯೆ',
+ 'activity' => 'ಚಟುವಟಿಕೆ',
+ 'approved' => 'ಅನುಮೋದಿಸಲಾಗಿದೆ',
+ 'author' => 'ಲೇಖಕ',
+ 'bug' => 'ಬಗ್',
+ 'category-quick-search' => 'ವಿಷಯದ ಹೆಸರು ತ್ವರಿತ ಶೋಧ (ವಿಭಾಗದಲ್ಲಿ)',
+ 'close-topic' => 'ಲಾಕ್ ವಿಷಯ',
+ 'closed' => 'ಮುಚ್ಚಲಾಗಿದೆ',
+ 'create-new-topic' => 'ಹೊಸ ವಿಷಯ ರಚಿಸಿ',
+ 'created' => 'ರಚಿಸಲಾಗಿದೆ',
+ 'current' => 'ಪ್ರಸ್ತುತ',
+ 'delete-topic' => 'ಈ ವಿಷಯವನ್ನು ಅಳಿಸಿ',
+ 'denied' => 'ನಿರಾಕರಿಸಲಾಗಿದೆ',
+ 'dislike-post' => 'ಈ ಪೋಸ್ಟ್ ಅನ್ನು ಇಷ್ಟಪಡದಿರಿ',
+ 'display-forum' => 'ರಲ್ಲಿ ವಿಷಯಗಳನ್ನು ತೋರಿಸಿ',
+ 'edit-post' => 'ಪೋಸ್ಟ್ ಸಂಪಾದಿಸಿ',
+ 'edit-topic' => 'ವಿಷಯ ಸಂಪಾದಿಸಿ',
+ 'forum' => 'ವೇದಿಕೆ',
+ 'forums' => 'ವೇದಿಕೆಗಳು',
+ 'implemented' => 'ಅಳವಡಿಸಲಾಗಿದೆ',
+ 'in' => 'ಇನ್',
+ 'invalid' => 'ಅಮಾನ್ಯವಾಗಿದೆ',
+ 'label' => 'ಲೇಬಲ್',
+ 'label-system' => 'ಲೇಬಲ್ ವ್ಯವಸ್ಥೆ',
+ 'last-message' => 'ಕೊನೆಯ ಸಂದೇಶ',
+ 'last-post-info' => 'ಕೊನೆಯ ಪೋಸ್ಟ್ ಮಾಹಿತಿ',
+ 'latest' => 'ಇತ್ತೀಚಿನ',
+ 'like-post' => 'ಈ ಪೋಸ್ಟ್ ಲೈಕ್',
+ 'meta-category' => 'ವಿಭಾಗದಲ್ಲಿನ ವೇದಿಕೆಗಳ ಪಟ್ಟಿ',
+ 'moderation' => 'ಮಾಡರೇಶನ್',
+ 'name' => 'ಹೆಸರು',
+ 'not-connected' => 'ನೀವು ಸಂಪರ್ಕಿಸಬೇಕು',
+ 'not-subscribed' => 'ಚಂದಾದಾರರಾಗಿಲ್ಲ',
+ 'open' => 'ತೆರೆಯಿರಿ',
+ 'open-topic' => 'ಈ ವಿಷಯವನ್ನು ತೆರೆಯಿರಿ',
+ 'permalink' => 'ಪರ್ಮಾಲಿಂಕ್',
+ 'pin' => 'ಪಿನ್',
+ 'post' => 'ಪೋಸ್ಟ್',
+ 'post-quick-search' => 'ದೇಹದ ಶೀಘ್ರ ಹುಡುಕಾಟವನ್ನು ಪೋಸ್ಟ್ ಮಾಡಿ',
+ 'posts' => 'ಪೋಸ್ಟ್ಗಳು',
+ 'quote' => 'ಉದ್ಧರಣ',
+ 'read-topic' => 'ವಿಷಯ ಓದಿ',
+ 'replies' => 'ಪ್ರತ್ಯುತ್ತರಗಳು',
+ 'send-new-topic' => 'ಈ ವಿಷಯವನ್ನು ಉಳಿಸಿ',
+ 'solved' => 'ಪರಿಹಾರ',
+ 'state' => 'ರಾಜ್ಯ',
+ 'stats' => 'ಅಂಕಿಅಂಶಗಳು',
+ 'subscribed' => 'ಚಂದಾದಾರರಾಗಿದ್ದಾರೆ',
'subscription-quick-search' => 'ವಿಷಯದ ಹೆಸರು ತ್ವರಿತ ಶೋಧ (ಚಂದಾದಾರಿಕೆಗಳಲ್ಲಿ)',
- 'suggestion' => 'ಸಲಹೆ',
- 'topic' => 'ವಿಷಯ',
- 'topic-closed' => 'ಈ ವಿಷಯ ಮುಚ್ಚಲಾಗಿದೆ',
- 'topic-name' => 'ವಿಷಯದ ಹೆಸರು',
- 'topic-quick-search' => 'ವಿಷಯದ ಹೆಸರು ತ್ವರಿತ ಶೋಧ',
- 'topic-title' => 'ಈ ವಿಷಯದ ಶೀರ್ಷಿಕೆ',
- 'topics' => 'ವಿಷಯಗಳು',
- 'unpin' => 'ಅನ್ಪಿನ್ ಮಾಡಿ',
- 'view-all' => 'ಎಲ್ಲ ವಿಷಯಗಳನ್ನೂ ವೀಕ್ಷಿಸಿ',
- 'views' => 'ವೀಕ್ಷಣೆಗಳು',
+ 'suggestion' => 'ಸಲಹೆ',
+ 'topic' => 'ವಿಷಯ',
+ 'topic-closed' => 'ಈ ವಿಷಯ ಮುಚ್ಚಲಾಗಿದೆ',
+ 'topic-name' => 'ವಿಷಯದ ಹೆಸರು',
+ 'topic-quick-search' => 'ವಿಷಯದ ಹೆಸರು ತ್ವರಿತ ಶೋಧ',
+ 'topic-title' => 'ಈ ವಿಷಯದ ಶೀರ್ಷಿಕೆ',
+ 'topics' => 'ವಿಷಯಗಳು',
+ 'unpin' => 'ಅನ್ಪಿನ್ ಮಾಡಿ',
+ 'view-all' => 'ಎಲ್ಲ ವಿಷಯಗಳನ್ನೂ ವೀಕ್ಷಿಸಿ',
+ 'views' => 'ವೀಕ್ಷಣೆಗಳು',
];
diff --git a/lang/kn/graveyard.php b/lang/kn/graveyard.php
index 404619d51..36a42b2c5 100644
--- a/lang/kn/graveyard.php
+++ b/lang/kn/graveyard.php
@@ -12,15 +12,15 @@
*/
return [
- 'dead' => 'ಡೆಡ್',
- 'graveyard' => 'ಗ್ರೇವ್ಯಾರ್ಡ್',
- 'guidelines' => 'ಮಾರ್ಗಸೂಚಿಗಳು',
+ 'dead' => 'ಡೆಡ್',
+ 'graveyard' => 'ಗ್ರೇವ್ಯಾರ್ಡ್',
+ 'guidelines' => 'ಮಾರ್ಗಸೂಚಿಗಳು',
'guidelines-content' => '1) ನಿಮ್ಮ ಸ್ವಂತ ಅಪ್ಲೋಡ್ಗಳನ್ನು ಪುನರುತ್ಥಾನಗೊಳಿಸಲಾಗುವುದಿಲ್ಲ.
2) ನೀವು ತುಂಬಾ ಮಾಡಬಾರದು ಏನನ್ನಾದರೂ ಪುನರುತ್ಥಾನ ಮಾಡಬೇಡಿ.',
- 'howto' => 'ಇಲ್ಲಿ ರೂಲ್',
- 'howto-desc1' => 'ನೀವು ಬೀಜ ಮಾಡಬೇಕು : ಒಂದು ಯಶಸ್ವಿ ಮರುಸಂಗ್ರಹಕ್ಕಾಗಿ 30 ದಿನಗಳ ಕಾಲ. ಈ ಸಂದರ್ಭದಲ್ಲಿ ನಿಮ್ಮ ಪ್ರಸ್ತುತ ಬೀಜ ಸಮಯ',
- 'howto-desc2' => 'ನಿಮಗೆ ಪುರಸ್ಕಾರ ನೀಡಲಾಗುವುದು',
- 'howto-hits' => 'ಹಿಟ್ಸ್',
- 'pending' => 'ಬಾಕಿ ಉಳಿದಿದೆ',
- 'resurrect' => 'ಪುನರುತ್ಥಾನ',
- 'reward' => 'ಫ್ರೀಲೀಕ್ ಟೋಕನ್ಗಳು',
+ 'howto' => 'ಇಲ್ಲಿ ರೂಲ್',
+ 'howto-desc1' => 'ನೀವು ಬೀಜ ಮಾಡಬೇಕು : ಒಂದು ಯಶಸ್ವಿ ಮರುಸಂಗ್ರಹಕ್ಕಾಗಿ 30 ದಿನಗಳ ಕಾಲ. ಈ ಸಂದರ್ಭದಲ್ಲಿ ನಿಮ್ಮ ಪ್ರಸ್ತುತ ಬೀಜ ಸಮಯ',
+ 'howto-desc2' => 'ನಿಮಗೆ ಪುರಸ್ಕಾರ ನೀಡಲಾಗುವುದು',
+ 'howto-hits' => 'ಹಿಟ್ಸ್',
+ 'pending' => 'ಬಾಕಿ ಉಳಿದಿದೆ',
+ 'resurrect' => 'ಪುನರುತ್ಥಾನ',
+ 'reward' => 'ಫ್ರೀಲೀಕ್ ಟೋಕನ್ಗಳು',
];
diff --git a/lang/kn/notification.php b/lang/kn/notification.php
index 663d5a55a..19affdff2 100644
--- a/lang/kn/notification.php
+++ b/lang/kn/notification.php
@@ -12,14 +12,14 @@
*/
return [
- 'date' => 'ದಿನಾಂಕ',
- 'delete' => 'ಅಳಿಸಿ',
- 'delete-all' => 'ಎಲ್ಲಾ ಅಧಿಸೂಚನೆಗಳನ್ನು ಅಳಿಸಿ',
- 'mark-all-read' => 'ಎಲ್ಲವನ್ನು ಓದಲಾಗಿದೆ ಎಂದು ಗುರುತಿಸಿ',
- 'mark-read' => 'ಓದಿರುವುದಾಗಿ ಗುರುತಿಸು',
- 'message' => 'ಸಂದೇಶ',
+ 'date' => 'ದಿನಾಂಕ',
+ 'delete' => 'ಅಳಿಸಿ',
+ 'delete-all' => 'ಎಲ್ಲಾ ಅಧಿಸೂಚನೆಗಳನ್ನು ಅಳಿಸಿ',
+ 'mark-all-read' => 'ಎಲ್ಲವನ್ನು ಓದಲಾಗಿದೆ ಎಂದು ಗುರುತಿಸಿ',
+ 'mark-read' => 'ಓದಿರುವುದಾಗಿ ಗುರುತಿಸು',
+ 'message' => 'ಸಂದೇಶ',
'no-notifications' => 'ಯಾವುದೇ ಅಧಿಸೂಚನೆಗಳು ಕಂಡುಬಂದಿಲ್ಲ',
- 'notifications' => 'ಅಧಿಸೂಚನೆಗಳು',
- 'read' => 'ಓದಿ',
- 'title' => 'ಶೀರ್ಷಿಕೆ',
+ 'notifications' => 'ಅಧಿಸೂಚನೆಗಳು',
+ 'read' => 'ಓದಿ',
+ 'title' => 'ಶೀರ್ಷಿಕೆ',
];
diff --git a/lang/kn/page.php b/lang/kn/page.php
index 483295b2b..b5fd13cda 100644
--- a/lang/kn/page.php
+++ b/lang/kn/page.php
@@ -12,28 +12,28 @@
*/
return [
- 'aboutus-advantage' => 'ಪ್ರಯೋಜನ',
- 'aboutus-advantage1' => 'HD ವಿಡಿಯೋ / ಆಡಿಯೋ ಮತ್ತು ತಾಂತ್ರಿಕ ಬೆಂಬಲದ ಜಗತ್ತಿನಲ್ಲಿ ಚೆನ್ನಾಗಿ ತಿಳಿದಿರುವ ಸದಸ್ಯರು ಮತ್ತು ಸಿಬ್ಬಂದಿಗಳನ್ನು ನಾವು ಅನುಭವಿಸಿದ್ದೇವೆ.',
- 'aboutus-advantage2' => 'ಸಿನೆಮಾ ಮತ್ತು ಟಿವಿ ಪ್ರದರ್ಶನಗಳಿಗೆ ನಮ್ಮ ವ್ಯಾಪಕ ಉತ್ಸಾಹದೊಂದಿಗೆ, ನಾವು ಹೆಚ್ಚು ಇಷ್ಟಪಡದ ಯಾವುದಾದರೂ ಅತ್ಯುತ್ತಮ ಆಯ್ಕೆಗಳಲ್ಲಿ ಒಂದನ್ನು ಸಹ ಒದಗಿಸುತ್ತೇವೆ - ಅಭಿಮಾನಿಗಳು! ದೊಡ್ಡ ವಿಷಯ ನಮ್ಮ ವಿಷಯಕ್ಕೆ ತರುವವರಿಗೆ ಧನ್ಯವಾದಗಳು .',
- 'aboutus-advantage3' => 'ಸೈಟ್ ಅನ್ನು ಉಳಿಸಿಕೊಳ್ಳಲು ಮತ್ತು ಚಾಲನೆಯಲ್ಲಿರುವ ದೇಣಿಗೆಗಳನ್ನು ನಾವು ಸ್ವೀಕರಿಸುವಾಗ, ಸೈಟ್ನಲ್ಲಿ ಯಾವುದೇ ಪ್ರಚೋದಕ PMs ಅಥವಾ ಬ್ಯಾನರ್ಗಳಿರುವುದಿಲ್ಲ. ನಮ್ಮಿಂದ ಬೇಡಿಕೊಳ್ಳುವುದು ಬೇಡ.',
- 'aboutus-advantage4' => 'ನಮ್ಮ ಸಮುದಾಯವು ಅದರ ವಯಸ್ಸಿನಲ್ಲೇ ಯಾವುದಕ್ಕೂ ಎರಡನೆಯದು. ನಮ್ಮ ಸಿಬ್ಬಂದಿ ಮತ್ತು ಬಳಕೆದಾರರ ನಡುವೆ, ಸಹಾಯ ಮಾಡಲು ಇಲ್ಲಿ ಯಾವಾಗಲೂ. ನಿಮ್ಮ ಅನುಭವವನ್ನು ಖಚಿತಪಡಿಸಿಕೊಳ್ಳುವುದರ ಬಗ್ಗೆ ಭಾವೋದ್ರಿಕ್ತವಾಗಿದೆ: ಶೀರ್ಷಿಕೆಯು ಅದ್ಭುತವಾದದ್ದಲ್ಲ.',
- 'aboutus-advantage5' => 'ಪ್ರಪಂಚದಾದ್ಯಂತ ಅನೇಕ ಜನರು ನಮ್ಮ ಸೇವೆಯನ್ನು ಪ್ರತಿದಿನ ಬಳಸುತ್ತಾರೆ. ನಮ್ಮ ಕೋಡ್ಬೇಸ್ನ ಕಾರ್ಯಕ್ಷಮತೆ ಮತ್ತು ಭದ್ರತೆಯನ್ನು ನಾವು ಕಾಳಜಿವಹಿಸುತ್ತೇವೆ ಮತ್ತು ಅದನ್ನು ವಿಶ್ವಾಸಾರ್ಹವಾಗಿ ಮತ್ತು ಅವಲಂಬಿಸಬಹುದೆಂದು ನಾವು ಸಾಬೀತುಪಡಿಸಿದ್ದೇವೆ. ನಿಜವಾದ ಡೆಕ್ಸ್-ಜನ್ ಕೋಡ್ಬೇಸ್ ಒದಗಿಸಲು ನಮ್ಮ ಡೆವಲಪರ್ಗಳು ಪ್ರತಿದಿನ ಕೆಲಸ ಮಾಡುತ್ತಾರೆ.',
- 'aboutus-header' => 'ಹಾಯ್ ಇಲ್ಲ',
- 'aboutus-rules' => 'ನಾವು ನಿಮ್ಮಿಂದ ಬೇಕಾದುದನ್ನು',
- 'aboutus-rules1' => 'ಸಮುದಾಯದ ಸಕ್ರಿಯ ಸದಸ್ಯರಾಗಿರಲು! ಅಂದರೆ ಸಂಭಾಷಣೆಗಳನ್ನು ಉತ್ಪಾದಕವಾಗಿ ಸೇರಲು, ಅನುಮೋದಿತ ವಿಷಯವನ್ನು ಸೇರಿಸಲು ಮತ್ತು ನೀವು ಸಾಧ್ಯವಾದರೆ ಇತರ ಬಳಕೆದಾರರಿಗೆ ಸಹಾಯ ಮಾಡುವುದು.',
- 'aboutus-rules2' => 'ನಿಯಮಗಳನ್ನು ಸಂಪೂರ್ಣವಾಗಿ ಓದಲು ಮತ್ತು ದಯವಿಟ್ಟು ಅವುಗಳನ್ನು ಗೌರವಿಸಿ!',
- 'aboutus-rules3' => 'ಸಲಹೆಗಳನ್ನು ಮಾಡಿ! ನಾವು ಮಾಡಲು ಶ್ರಮಿಸುತ್ತಿದ್ದೇವೆ: ಶೀರ್ಷಿಕೆ ಪ್ರತಿ ದಿನವೂ ಉತ್ತಮವಾಗಿದೆ. ಪ್ರತಿಯೊಂದು ಸಲಹೆಯನ್ನು ಬಳಸಲಾಗುವುದು ಎಂದು ನಾವು ಹೇಳುತ್ತಿಲ್ಲ, ಆದರೆ ಹೊಸ ಆಲೋಚನೆಗಳನ್ನು ನೋಡುವುದಕ್ಕೆ ನೋವುಂಟು ಮಾಡುವುದಿಲ್ಲ.',
- 'aboutus-welcome' => 'ಬಗ್ಗೆ ಮಾತನಾಡೋಣ',
- 'aboutus-welcome-desc' => ': ಶೀರ್ಷಿಕೆ ಎಂಬುದು ಸಮುದಾಯ-ನಿರ್ಮಿತ ಚಲನಚಿತ್ರ / ಟಿವಿ / ಫ್ಯಾನ್ರ್ಸ್ ಡೇಟಾಬೇಸ್ ಆಗಿದೆ. 2017 ರಿಂದ ನಮ್ಮ ಅದ್ಭುತ ಸಮುದಾಯದಿಂದ ಪ್ರತಿಯೊಂದು ತುಂಡು ಡೇಟಾವನ್ನು ಸೇರಿಸಲಾಗಿದೆ. ಶೀರ್ಷಿಕೆಗಳು ಬಲವಾದ ಗಮನವನ್ನು ಎಚ್ಡಿ ವಿಷಯ, ಒಂದು ಪೂರ್ವಭಾವಿ ಬಳಕೆದಾರ, ಉತ್ತಮವಾದ / ಸುರಕ್ಷಿತ ಕೋಡ್ಬೇಸ್ ಮತ್ತು ಸಹಾಯಕವಾಗಿದೆಯೆ ಮತ್ತು ಸ್ನೇಹಪರ ಸಿಬ್ಬಂದಿ ತಂಡ.',
- 'blacklist-browsers' => 'ಬ್ರೌಸರ್ಗಳು',
- 'blacklist-btclient' => 'ಬಿಟ್ಟೊರೆಂಟ್ ಗ್ರಾಹಕ',
- 'blacklist-clients' => 'ಗ್ರಾಹಕರು',
- 'blacklist-desc' => 'ಅನುಸರಿಸುತ್ತಿರುವ ಬ್ರೌಸರ್ಗಳು ಮತ್ತು ಬಿಟ್ಟೊರೆಂಟ್ ಕ್ಲೈಂಟ್ಗಳು ಬ್ಲ್ಯಾಕ್ಲಿಸ್ಟ್ / ನಿಷೇಧಿಸುವುದನ್ನು ತಡೆಯಲು: ಶೀರ್ಷಿಕೆ',
- 'blacklist-webbrowser' => 'ವೆಬ್ ಬ್ರೌಸರ್',
+ 'aboutus-advantage' => 'ಪ್ರಯೋಜನ',
+ 'aboutus-advantage1' => 'HD ವಿಡಿಯೋ / ಆಡಿಯೋ ಮತ್ತು ತಾಂತ್ರಿಕ ಬೆಂಬಲದ ಜಗತ್ತಿನಲ್ಲಿ ಚೆನ್ನಾಗಿ ತಿಳಿದಿರುವ ಸದಸ್ಯರು ಮತ್ತು ಸಿಬ್ಬಂದಿಗಳನ್ನು ನಾವು ಅನುಭವಿಸಿದ್ದೇವೆ.',
+ 'aboutus-advantage2' => 'ಸಿನೆಮಾ ಮತ್ತು ಟಿವಿ ಪ್ರದರ್ಶನಗಳಿಗೆ ನಮ್ಮ ವ್ಯಾಪಕ ಉತ್ಸಾಹದೊಂದಿಗೆ, ನಾವು ಹೆಚ್ಚು ಇಷ್ಟಪಡದ ಯಾವುದಾದರೂ ಅತ್ಯುತ್ತಮ ಆಯ್ಕೆಗಳಲ್ಲಿ ಒಂದನ್ನು ಸಹ ಒದಗಿಸುತ್ತೇವೆ - ಅಭಿಮಾನಿಗಳು! ದೊಡ್ಡ ವಿಷಯ ನಮ್ಮ ವಿಷಯಕ್ಕೆ ತರುವವರಿಗೆ ಧನ್ಯವಾದಗಳು .',
+ 'aboutus-advantage3' => 'ಸೈಟ್ ಅನ್ನು ಉಳಿಸಿಕೊಳ್ಳಲು ಮತ್ತು ಚಾಲನೆಯಲ್ಲಿರುವ ದೇಣಿಗೆಗಳನ್ನು ನಾವು ಸ್ವೀಕರಿಸುವಾಗ, ಸೈಟ್ನಲ್ಲಿ ಯಾವುದೇ ಪ್ರಚೋದಕ PMs ಅಥವಾ ಬ್ಯಾನರ್ಗಳಿರುವುದಿಲ್ಲ. ನಮ್ಮಿಂದ ಬೇಡಿಕೊಳ್ಳುವುದು ಬೇಡ.',
+ 'aboutus-advantage4' => 'ನಮ್ಮ ಸಮುದಾಯವು ಅದರ ವಯಸ್ಸಿನಲ್ಲೇ ಯಾವುದಕ್ಕೂ ಎರಡನೆಯದು. ನಮ್ಮ ಸಿಬ್ಬಂದಿ ಮತ್ತು ಬಳಕೆದಾರರ ನಡುವೆ, ಸಹಾಯ ಮಾಡಲು ಇಲ್ಲಿ ಯಾವಾಗಲೂ. ನಿಮ್ಮ ಅನುಭವವನ್ನು ಖಚಿತಪಡಿಸಿಕೊಳ್ಳುವುದರ ಬಗ್ಗೆ ಭಾವೋದ್ರಿಕ್ತವಾಗಿದೆ: ಶೀರ್ಷಿಕೆಯು ಅದ್ಭುತವಾದದ್ದಲ್ಲ.',
+ 'aboutus-advantage5' => 'ಪ್ರಪಂಚದಾದ್ಯಂತ ಅನೇಕ ಜನರು ನಮ್ಮ ಸೇವೆಯನ್ನು ಪ್ರತಿದಿನ ಬಳಸುತ್ತಾರೆ. ನಮ್ಮ ಕೋಡ್ಬೇಸ್ನ ಕಾರ್ಯಕ್ಷಮತೆ ಮತ್ತು ಭದ್ರತೆಯನ್ನು ನಾವು ಕಾಳಜಿವಹಿಸುತ್ತೇವೆ ಮತ್ತು ಅದನ್ನು ವಿಶ್ವಾಸಾರ್ಹವಾಗಿ ಮತ್ತು ಅವಲಂಬಿಸಬಹುದೆಂದು ನಾವು ಸಾಬೀತುಪಡಿಸಿದ್ದೇವೆ. ನಿಜವಾದ ಡೆಕ್ಸ್-ಜನ್ ಕೋಡ್ಬೇಸ್ ಒದಗಿಸಲು ನಮ್ಮ ಡೆವಲಪರ್ಗಳು ಪ್ರತಿದಿನ ಕೆಲಸ ಮಾಡುತ್ತಾರೆ.',
+ 'aboutus-header' => 'ಹಾಯ್ ಇಲ್ಲ',
+ 'aboutus-rules' => 'ನಾವು ನಿಮ್ಮಿಂದ ಬೇಕಾದುದನ್ನು',
+ 'aboutus-rules1' => 'ಸಮುದಾಯದ ಸಕ್ರಿಯ ಸದಸ್ಯರಾಗಿರಲು! ಅಂದರೆ ಸಂಭಾಷಣೆಗಳನ್ನು ಉತ್ಪಾದಕವಾಗಿ ಸೇರಲು, ಅನುಮೋದಿತ ವಿಷಯವನ್ನು ಸೇರಿಸಲು ಮತ್ತು ನೀವು ಸಾಧ್ಯವಾದರೆ ಇತರ ಬಳಕೆದಾರರಿಗೆ ಸಹಾಯ ಮಾಡುವುದು.',
+ 'aboutus-rules2' => 'ನಿಯಮಗಳನ್ನು ಸಂಪೂರ್ಣವಾಗಿ ಓದಲು ಮತ್ತು ದಯವಿಟ್ಟು ಅವುಗಳನ್ನು ಗೌರವಿಸಿ!',
+ 'aboutus-rules3' => 'ಸಲಹೆಗಳನ್ನು ಮಾಡಿ! ನಾವು ಮಾಡಲು ಶ್ರಮಿಸುತ್ತಿದ್ದೇವೆ: ಶೀರ್ಷಿಕೆ ಪ್ರತಿ ದಿನವೂ ಉತ್ತಮವಾಗಿದೆ. ಪ್ರತಿಯೊಂದು ಸಲಹೆಯನ್ನು ಬಳಸಲಾಗುವುದು ಎಂದು ನಾವು ಹೇಳುತ್ತಿಲ್ಲ, ಆದರೆ ಹೊಸ ಆಲೋಚನೆಗಳನ್ನು ನೋಡುವುದಕ್ಕೆ ನೋವುಂಟು ಮಾಡುವುದಿಲ್ಲ.',
+ 'aboutus-welcome' => 'ಬಗ್ಗೆ ಮಾತನಾಡೋಣ',
+ 'aboutus-welcome-desc' => ': ಶೀರ್ಷಿಕೆ ಎಂಬುದು ಸಮುದಾಯ-ನಿರ್ಮಿತ ಚಲನಚಿತ್ರ / ಟಿವಿ / ಫ್ಯಾನ್ರ್ಸ್ ಡೇಟಾಬೇಸ್ ಆಗಿದೆ. 2017 ರಿಂದ ನಮ್ಮ ಅದ್ಭುತ ಸಮುದಾಯದಿಂದ ಪ್ರತಿಯೊಂದು ತುಂಡು ಡೇಟಾವನ್ನು ಸೇರಿಸಲಾಗಿದೆ. ಶೀರ್ಷಿಕೆಗಳು ಬಲವಾದ ಗಮನವನ್ನು ಎಚ್ಡಿ ವಿಷಯ, ಒಂದು ಪೂರ್ವಭಾವಿ ಬಳಕೆದಾರ, ಉತ್ತಮವಾದ / ಸುರಕ್ಷಿತ ಕೋಡ್ಬೇಸ್ ಮತ್ತು ಸಹಾಯಕವಾಗಿದೆಯೆ ಮತ್ತು ಸ್ನೇಹಪರ ಸಿಬ್ಬಂದಿ ತಂಡ.',
+ 'blacklist-browsers' => 'ಬ್ರೌಸರ್ಗಳು',
+ 'blacklist-btclient' => 'ಬಿಟ್ಟೊರೆಂಟ್ ಗ್ರಾಹಕ',
+ 'blacklist-clients' => 'ಗ್ರಾಹಕರು',
+ 'blacklist-desc' => 'ಅನುಸರಿಸುತ್ತಿರುವ ಬ್ರೌಸರ್ಗಳು ಮತ್ತು ಬಿಟ್ಟೊರೆಂಟ್ ಕ್ಲೈಂಟ್ಗಳು ಬ್ಲ್ಯಾಕ್ಲಿಸ್ಟ್ / ನಿಷೇಧಿಸುವುದನ್ನು ತಡೆಯಲು: ಶೀರ್ಷಿಕೆ',
+ 'blacklist-webbrowser' => 'ವೆಬ್ ಬ್ರೌಸರ್',
'blacklist-emaildomain' => 'ನಿರ್ಬಂಧಿಸಿದ ಡೊಮೇನ್',
- 'email-blacklist-desc' => 'ಕೆಳಗಿನ ಇಮೇಲ್ ಡೊಮೇನ್ಗಳನ್ನು ಬಳಸುವುದರಿಂದ ನಿರ್ಬಂಧಿಸಲಾಗಿದೆ. ನೀವು ನೋಂದಾಯಿಸಲು ಸಾಧ್ಯವಿಲ್ಲ ಅಥವಾ ಕೆಳಗಿನ ಆಹ್ವಾನವನ್ನು ಕಳುಹಿಸಿ.',
- 'email-whitelist-desc' => 'ಕೆಳಗಿನ ಇಮೇಲ್ ಡೊಮೇನ್ಗಳು ಮಾತ್ರ ಅನುಮತಿಸಲಾದ ಏಕೈಕ ಇಮೇಲ್ ಡೊಮೇನ್ಗಳು. ನೀವು ಮಾತ್ರ ನೋಂದಾಯಿಸಿಕೊಳ್ಳಬಹುದು ಅಥವಾ ಅನುಸರಿಸುವುದರ ಮೂಲಕ ಆಹ್ವಾನ ಕಳುಹಿಸಿ.',
- 'staff-group' => 'ಗುಂಪು',
- 'staff-title' => 'ಶೀರ್ಷಿಕೆ',
+ 'email-blacklist-desc' => 'ಕೆಳಗಿನ ಇಮೇಲ್ ಡೊಮೇನ್ಗಳನ್ನು ಬಳಸುವುದರಿಂದ ನಿರ್ಬಂಧಿಸಲಾಗಿದೆ. ನೀವು ನೋಂದಾಯಿಸಲು ಸಾಧ್ಯವಿಲ್ಲ ಅಥವಾ ಕೆಳಗಿನ ಆಹ್ವಾನವನ್ನು ಕಳುಹಿಸಿ.',
+ 'email-whitelist-desc' => 'ಕೆಳಗಿನ ಇಮೇಲ್ ಡೊಮೇನ್ಗಳು ಮಾತ್ರ ಅನುಮತಿಸಲಾದ ಏಕೈಕ ಇಮೇಲ್ ಡೊಮೇನ್ಗಳು. ನೀವು ಮಾತ್ರ ನೋಂದಾಯಿಸಿಕೊಳ್ಳಬಹುದು ಅಥವಾ ಅನುಸರಿಸುವುದರ ಮೂಲಕ ಆಹ್ವಾನ ಕಳುಹಿಸಿ.',
+ 'staff-group' => 'ಗುಂಪು',
+ 'staff-title' => 'ಶೀರ್ಷಿಕೆ',
'whitelist-emaildomain' => 'ವಿಶ್ವಾಸಾರ್ಹ ಡೊಮೈನ್',
];
diff --git a/lang/kn/pagination.php b/lang/kn/pagination.php
index 67ee505c9..404aa3dec 100644
--- a/lang/kn/pagination.php
+++ b/lang/kn/pagination.php
@@ -24,5 +24,5 @@ return [
*/
'previous' => '« ಹಿಂದಿನ',
- 'next' => 'ಮುಂದಿನ »',
+ 'next' => 'ಮುಂದಿನ »',
];
diff --git a/lang/kn/passwords.php b/lang/kn/passwords.php
index 169b3e6a7..a586c1e4e 100644
--- a/lang/kn/passwords.php
+++ b/lang/kn/passwords.php
@@ -24,8 +24,8 @@ return [
*/
'password' => 'ಪಾಸ್ವರ್ಡ್ಗಳು ಕನಿಷ್ಠ ಆರು ಅಕ್ಷರಗಳು ಇರಬೇಕು ಮತ್ತು ದೃಢೀಕರಣವನ್ನು ಹೊಂದಿರಬೇಕು.',
- 'reset' => 'ನಿಮ್ಮ ಪಾಸ್ವರ್ಡ್ ಅನ್ನು ಮರುಹೊಂದಿಸಲಾಗಿದೆ!',
- 'sent' => 'ನಿಮ್ಮ ಪಾಸ್ವರ್ಡ್ ಮರುಹೊಂದಿಸುವ ಲಿಂಕ್ ಅನ್ನು ನಾವು ಇ-ಮೇಲ್ ಮಾಡಿದ್ದೇವೆ!',
- 'token' => 'ಈ ಪಾಸ್ವರ್ಡ್ ಮರುಹೊಂದಿಸುವ ಟೋಕನ್ ಅಮಾನ್ಯವಾಗಿದೆ.',
- 'user' => 'ಆ ಇ-ಮೇಲ್ ವಿಳಾಸದೊಂದಿಗೆ ನಾವು ಒಬ್ಬ ಬಳಕೆದಾರನನ್ನು ಹುಡುಕಲಾಗಲಿಲ್ಲ.',
+ 'reset' => 'ನಿಮ್ಮ ಪಾಸ್ವರ್ಡ್ ಅನ್ನು ಮರುಹೊಂದಿಸಲಾಗಿದೆ!',
+ 'sent' => 'ನಿಮ್ಮ ಪಾಸ್ವರ್ಡ್ ಮರುಹೊಂದಿಸುವ ಲಿಂಕ್ ಅನ್ನು ನಾವು ಇ-ಮೇಲ್ ಮಾಡಿದ್ದೇವೆ!',
+ 'token' => 'ಈ ಪಾಸ್ವರ್ಡ್ ಮರುಹೊಂದಿಸುವ ಟೋಕನ್ ಅಮಾನ್ಯವಾಗಿದೆ.',
+ 'user' => 'ಆ ಇ-ಮೇಲ್ ವಿಳಾಸದೊಂದಿಗೆ ನಾವು ಒಬ್ಬ ಬಳಕೆದಾರನನ್ನು ಹುಡುಕಲಾಗಲಿಲ್ಲ.',
];
diff --git a/lang/kn/pm.php b/lang/kn/pm.php
index 624253598..06c684600 100644
--- a/lang/kn/pm.php
+++ b/lang/kn/pm.php
@@ -12,28 +12,28 @@
*/
return [
- 'create' => 'ರಚಿಸಿ',
- 'delete' => 'ಅಳಿಸಿ',
+ 'create' => 'ರಚಿಸಿ',
+ 'delete' => 'ಅಳಿಸಿ',
'enter-subject' => 'ವಿಷಯ ನಮೂದಿಸಿ',
- 'from' => 'ನಿಂದ',
- 'inbox' => 'ಇನ್ಬಾಕ್ಸ್',
+ 'from' => 'ನಿಂದ',
+ 'inbox' => 'ಇನ್ಬಾಕ್ಸ್',
'mark-all-read' => 'ಎಲ್ಲಾ ಸಂದೇಶಗಳನ್ನು ಓದಿದಂತೆ ಗುರುತಿಸಿ',
- 'message' => 'ಸಂದೇಶ',
- 'messages' => 'ಸಂದೇಶಗಳು',
- 'new' => 'ಹೊಸ ಸಂದೇಶ',
- 'outbox' => 'ಔಟ್ಬಾಕ್ಸ್',
- 'private' => 'ಖಾಸಗಿ',
- 'read' => 'ಓದಿ',
- 'received-at' => 'ಸ್ವೀಕರಿಸಲಾಗಿದೆ',
- 'refresh' => 'ರಿಫ್ರೆಶ್',
- 'reply' => 'ಉತ್ತರಿಸಿ',
- 'search' => 'ವಿಷಯದ ಮೂಲಕ ಹುಡುಕಿ',
- 'select' => 'ಒಂದು ಬಳಕೆದಾರನನ್ನು ಆಯ್ಕೆ ಮಾಡಿ',
- 'send' => 'PM ಕಳುಹಿಸಿ',
- 'send-to' => 'PM ಗೆ ಕಳುಹಿಸಿ',
- 'sent' => 'ಕಳುಹಿಸಲಾಗಿದೆ',
- 'sent-at' => 'ಕಳುಹಿಸಲಾಗಿದೆ',
- 'subject' => 'ವಿಷಯ',
- 'to' => 'ಗೆ',
- 'unread' => 'ಓದಿಲ್ಲ',
+ 'message' => 'ಸಂದೇಶ',
+ 'messages' => 'ಸಂದೇಶಗಳು',
+ 'new' => 'ಹೊಸ ಸಂದೇಶ',
+ 'outbox' => 'ಔಟ್ಬಾಕ್ಸ್',
+ 'private' => 'ಖಾಸಗಿ',
+ 'read' => 'ಓದಿ',
+ 'received-at' => 'ಸ್ವೀಕರಿಸಲಾಗಿದೆ',
+ 'refresh' => 'ರಿಫ್ರೆಶ್',
+ 'reply' => 'ಉತ್ತರಿಸಿ',
+ 'search' => 'ವಿಷಯದ ಮೂಲಕ ಹುಡುಕಿ',
+ 'select' => 'ಒಂದು ಬಳಕೆದಾರನನ್ನು ಆಯ್ಕೆ ಮಾಡಿ',
+ 'send' => 'PM ಕಳುಹಿಸಿ',
+ 'send-to' => 'PM ಗೆ ಕಳುಹಿಸಿ',
+ 'sent' => 'ಕಳುಹಿಸಲಾಗಿದೆ',
+ 'sent-at' => 'ಕಳುಹಿಸಲಾಗಿದೆ',
+ 'subject' => 'ವಿಷಯ',
+ 'to' => 'ಗೆ',
+ 'unread' => 'ಓದಿಲ್ಲ',
];
diff --git a/lang/kn/poll.php b/lang/kn/poll.php
index 7df7d1ae7..5a12292da 100644
--- a/lang/kn/poll.php
+++ b/lang/kn/poll.php
@@ -12,18 +12,18 @@
*/
return [
- 'add-option' => 'ಆಯ್ಕೆಯನ್ನು ಸೇರಿಸಿ',
- 'create-poll' => 'ಪೋಲ್ ರಚಿಸಿ',
- 'current' => 'ಪ್ರಸ್ತುತ ಪೋಲ್ (ಗಳು)',
- 'delete-option' => 'ಆಯ್ಕೆಯನ್ನು ಅಳಿಸಿ',
+ 'add-option' => 'ಆಯ್ಕೆಯನ್ನು ಸೇರಿಸಿ',
+ 'create-poll' => 'ಪೋಲ್ ರಚಿಸಿ',
+ 'current' => 'ಪ್ರಸ್ತುತ ಪೋಲ್ (ಗಳು)',
+ 'delete-option' => 'ಆಯ್ಕೆಯನ್ನು ಅಳಿಸಿ',
'multiple-choice' => 'ಇದು ಬಹು ಆಯ್ಕೆಯ ಅಭಿಪ್ರಾಯ ಸಂಗ್ರಹವಾಗಿದೆ. ನಿಮಗೆ ಇಷ್ಟವಾದಷ್ಟು ಉತ್ತರಗಳನ್ನು ಆಯ್ಕೆ ಮಾಡಿ.',
- 'option' => 'ಆಯ್ಕೆ',
- 'poll' => 'ಮತದಾನ',
- 'polls' => 'ಅಭಿಪ್ರಾಯಗಳು',
- 'results' => 'ಪೋಲ್ ಫಲಿತಾಂಶಗಳು',
- 'title' => 'ಶೀರ್ಷಿಕೆ',
- 'total' => 'ಒಟ್ಟು ಮತಗಳು ಎವರ್',
- 'vote' => 'ಮತ',
- 'vote-now' => 'ಈಗ ನಿಮ್ಮ ಮತವನ್ನು ಪಡೆಯಿರಿ!',
- 'votes' => 'ಮತಗಳು',
+ 'option' => 'ಆಯ್ಕೆ',
+ 'poll' => 'ಮತದಾನ',
+ 'polls' => 'ಅಭಿಪ್ರಾಯಗಳು',
+ 'results' => 'ಪೋಲ್ ಫಲಿತಾಂಶಗಳು',
+ 'title' => 'ಶೀರ್ಷಿಕೆ',
+ 'total' => 'ಒಟ್ಟು ಮತಗಳು ಎವರ್',
+ 'vote' => 'ಮತ',
+ 'vote-now' => 'ಈಗ ನಿಮ್ಮ ಮತವನ್ನು ಪಡೆಯಿರಿ!',
+ 'votes' => 'ಮತಗಳು',
];
diff --git a/lang/kn/request.php b/lang/kn/request.php
index dfddf824c..3e63bdb23 100644
--- a/lang/kn/request.php
+++ b/lang/kn/request.php
@@ -12,67 +12,67 @@
*/
return [
- 'add-request' => 'ವಿನಂತಿಯನ್ನು ಸೇರಿಸಿ',
- 'age' => 'ವಯಸ್ಸು',
- 'all-requests' => 'ಎಲ್ಲಾ ವಿನಂತಿಗಳು',
- 'approve' => 'ಅನುಮೋದಿಸಿ',
- 'bounty' => 'ಬೌಂಟಿ',
- 'bounty-claimed' => 'ಬೌಂಟಿ ಹೇಳಿದ್ದಾರೆ',
- 'bounty-unclaimed' => 'ಬೌಂಟಿ ಹಕ್ಕು ನಿರಾಕರಿಸಲಾಗಿದೆ',
- 'category' => 'ವರ್ಗ',
- 'claim' => 'ಹಕ್ಕು',
- 'claim-anon-choose' => 'ದಯವಿಟ್ಟು ಬುದ್ಧಿವಂತಿಕೆಯಿಂದ ಆಯ್ಕೆ ಮಾಡಿ',
- 'claim-as-anon' => 'ನೀವು ಈ ಪರಮಾಧಿಕಾರವನ್ನು ಪಡೆಯಲು ಬಯಸುತ್ತೀರಾ',
- 'claim-now' => 'ಇದೀಗ ಹಕ್ಕು ಪಡೆಯಿರಿ',
- 'claimed' => 'ಹಕ್ಕು ಪಡೆಯಲಾಗಿದೆ',
- 'current' => 'ಪ್ರಸ್ತುತ',
- 'delete' => 'ಈ ವಿನಂತಿ ಅಳಿಸಿ',
+ 'add-request' => 'ವಿನಂತಿಯನ್ನು ಸೇರಿಸಿ',
+ 'age' => 'ವಯಸ್ಸು',
+ 'all-requests' => 'ಎಲ್ಲಾ ವಿನಂತಿಗಳು',
+ 'approve' => 'ಅನುಮೋದಿಸಿ',
+ 'bounty' => 'ಬೌಂಟಿ',
+ 'bounty-claimed' => 'ಬೌಂಟಿ ಹೇಳಿದ್ದಾರೆ',
+ 'bounty-unclaimed' => 'ಬೌಂಟಿ ಹಕ್ಕು ನಿರಾಕರಿಸಲಾಗಿದೆ',
+ 'category' => 'ವರ್ಗ',
+ 'claim' => 'ಹಕ್ಕು',
+ 'claim-anon-choose' => 'ದಯವಿಟ್ಟು ಬುದ್ಧಿವಂತಿಕೆಯಿಂದ ಆಯ್ಕೆ ಮಾಡಿ',
+ 'claim-as-anon' => 'ನೀವು ಈ ಪರಮಾಧಿಕಾರವನ್ನು ಪಡೆಯಲು ಬಯಸುತ್ತೀರಾ',
+ 'claim-now' => 'ಇದೀಗ ಹಕ್ಕು ಪಡೆಯಿರಿ',
+ 'claimed' => 'ಹಕ್ಕು ಪಡೆಯಲಾಗಿದೆ',
+ 'current' => 'ಪ್ರಸ್ತುತ',
+ 'delete' => 'ಈ ವಿನಂತಿ ಅಳಿಸಿ',
'delete-confirmation' => 'ಈ ವಿನಂತಿ ಅಳಿಸಲು ನೀವು ಖಚಿತವಾಗಿ ಬಯಸುವಿರಾ',
- 'delete-filled' => 'ಈ ವಿನಂತಿಯನ್ನು ಅದು ಭರ್ತಿ ಮಾಡದಿದ್ದರೆ ಮಾತ್ರ ಅಳಿಸಬಹುದು',
- 'description' => 'ವಿವರಣೆ',
- 'dont-have-bps' => 'ನಿಮಗೆ ಸಾಕಷ್ಟು ಬೋನಸ್ ಇರುವುದಿಲ್ಲ',
- 'edit-request' => 'ವಿನಂತಿಯನ್ನು ಸಂಪಾದಿಸಿ',
- 'enter-bp' => 'ಬೋನಸ್ ಅಂಕಗಳನ್ನು ನಮೂದಿಸಿ (ಕನಿಷ್ಠ 100)',
- 'enter-hash' => 'ಅಪ್ಲೋಡ್ ಮಾಡಿದ ಟೊರೆಂಟ್ನ ಇನ್ಫೋ ಹ್ಯಾಶ್ ಅನ್ನು ನಮೂದಿಸಿ',
- 'fill' => 'ತುಂಬಿರಿ',
- 'fill-request' => 'ಈ ವಿನಂತಿಯನ್ನು ಭರ್ತಿ ಮಾಡಿ',
- 'filled' => 'ತುಂಬಿದ',
- 'filled-by' => 'ತುಂಬಿದ',
- 'for' => 'ಫಾರ್',
- 'fulfill' => 'ಪೂರೈಸು',
- 'last-vote' => 'ಕೊನೆಯ ಮತ',
- 'my-requests' => 'ನನ್ನ ವಿನಂತಿಗಳು',
- 'no' => 'ಇಲ್ಲ,',
- 'no-imdb-id' => 'ಎಲ್ಲಾ ವಿನಂತಿಗಳು ಐಎಮ್ಡಿಬಿ ಸಂಖ್ಯೆಯನ್ನು ಒಳಗೊಂಡಿರಬೇಕು',
- 'no-privileges' => 'ದೋಷ: ನಿಮ್ಮ ವಿನಂತಿಯ ಹಕ್ಕುಗಳನ್ನು ನಿಷ್ಕ್ರಿಯಗೊಳಿಸಲಾಗಿದೆ',
- 'no-privileges-desc' => 'ಇದು ದೋಷವೆಂದು ನೀವು ಭಾವಿಸಿದರೆ, ದಯವಿಟ್ಟು ಸಿಬ್ಬಂದಿಗೆ ಸಂಪರ್ಕಿಸಿ',
- 'no-refunds' => 'ರಚಿಸುವುದು, ಭರ್ತಿ ಮಾಡುವುದು ಮತ್ತು ಬಂಟಿಗಳು ಅಂತಿಮವಾಗುವುದರ ಮೇಲೆ BON ವಿನಿಮಯಗಳು!
ಯಾವುದೇ ಮರುಪಾವತಿ ಇಲ್ಲ!',
- 'pending' => 'ಬಾಕಿ ಉಳಿದಿದೆ',
- 'reason' => 'ಕಾರಣ',
- 'reject' => 'ತಿರಸ್ಕರಿಸಿ',
- 'report' => 'ವರದಿ ಕೋರಿಕೆ',
- 'request' => 'ವಿನಂತಿ',
- 'request-details' => 'ವಿನಂತಿ ವಿವರಗಳು',
- 'requested-by' => 'ಅದಕ್ಕೆ ವಿನಂತಿಸಲಾಗಿದೆ',
- 'requests' => 'ವಿನಂತಿಗಳು',
- 'required' => 'ಅಗತ್ಯವಿದೆ',
- 'reset' => 'ಮರುಹೊಂದಿಸಿ',
- 'reset-confirmation' => 'ಈ ವಿನಂತಿ ಮರುಹೊಂದಿಸಲು ನೀವು ಖಚಿತವಾಗಿ ಬಯಸುವಿರಾ',
- 'reset-request' => 'ಈ ವಿನಂತಿ ಮರುಹೊಂದಿಸಿ',
- 'reward' => 'ಬಹುಮಾನ',
- 'reward-desc' => 'ಎಷ್ಟು ಬೋನಸ್ ಪಾಯಿಂಟ್ ನೀವು ಬಹುಮಾನವನ್ನು ನೀಡಲು ಬಯಸುತ್ತೀರಿ? ಕನಿಷ್ಠ 100 ಬಿಪಿ',
- 'reward-from' => 'ನಿಂದ',
- 'title' => 'ಶೀರ್ಷಿಕೆ',
- 'torrent-hash' => 'ಟೊರೆಂಟ್ ಹ್ಯಾಶ್',
- 'total-bounty' => 'ಒಟ್ಟು ಔದಾರ್ಯ',
- 'type' => 'ಮಾದರಿ',
- 'unclaim' => 'ಈ ವಿನಂತಿಯನ್ನು ಅನ್ಕ್ಲೈಮ್ ಮಾಡಿ',
- 'unfilled' => 'ತುಂಬದ',
- 'view-filled' => 'ವೀಕ್ಷಿಸಿ ತುಂಬಿದೆ',
- 'view-unfilled' => 'ತುಂಬಿದ ವೀಕ್ಷಿಸಿ',
- 'vote' => 'ಮತ',
- 'vote-that' => 'ಈ ವಿನಂತಿಗೆ ಮತ ಚಲಾಯಿಸಿ',
- 'voters' => 'ಮತದಾರರು',
- 'votes' => 'ಮತಗಳು',
- 'yes' => 'ಹೌದು',
+ 'delete-filled' => 'ಈ ವಿನಂತಿಯನ್ನು ಅದು ಭರ್ತಿ ಮಾಡದಿದ್ದರೆ ಮಾತ್ರ ಅಳಿಸಬಹುದು',
+ 'description' => 'ವಿವರಣೆ',
+ 'dont-have-bps' => 'ನಿಮಗೆ ಸಾಕಷ್ಟು ಬೋನಸ್ ಇರುವುದಿಲ್ಲ',
+ 'edit-request' => 'ವಿನಂತಿಯನ್ನು ಸಂಪಾದಿಸಿ',
+ 'enter-bp' => 'ಬೋನಸ್ ಅಂಕಗಳನ್ನು ನಮೂದಿಸಿ (ಕನಿಷ್ಠ 100)',
+ 'enter-hash' => 'ಅಪ್ಲೋಡ್ ಮಾಡಿದ ಟೊರೆಂಟ್ನ ಇನ್ಫೋ ಹ್ಯಾಶ್ ಅನ್ನು ನಮೂದಿಸಿ',
+ 'fill' => 'ತುಂಬಿರಿ',
+ 'fill-request' => 'ಈ ವಿನಂತಿಯನ್ನು ಭರ್ತಿ ಮಾಡಿ',
+ 'filled' => 'ತುಂಬಿದ',
+ 'filled-by' => 'ತುಂಬಿದ',
+ 'for' => 'ಫಾರ್',
+ 'fulfill' => 'ಪೂರೈಸು',
+ 'last-vote' => 'ಕೊನೆಯ ಮತ',
+ 'my-requests' => 'ನನ್ನ ವಿನಂತಿಗಳು',
+ 'no' => 'ಇಲ್ಲ,',
+ 'no-imdb-id' => 'ಎಲ್ಲಾ ವಿನಂತಿಗಳು ಐಎಮ್ಡಿಬಿ ಸಂಖ್ಯೆಯನ್ನು ಒಳಗೊಂಡಿರಬೇಕು',
+ 'no-privileges' => 'ದೋಷ: ನಿಮ್ಮ ವಿನಂತಿಯ ಹಕ್ಕುಗಳನ್ನು ನಿಷ್ಕ್ರಿಯಗೊಳಿಸಲಾಗಿದೆ',
+ 'no-privileges-desc' => 'ಇದು ದೋಷವೆಂದು ನೀವು ಭಾವಿಸಿದರೆ, ದಯವಿಟ್ಟು ಸಿಬ್ಬಂದಿಗೆ ಸಂಪರ್ಕಿಸಿ',
+ 'no-refunds' => 'ರಚಿಸುವುದು, ಭರ್ತಿ ಮಾಡುವುದು ಮತ್ತು ಬಂಟಿಗಳು ಅಂತಿಮವಾಗುವುದರ ಮೇಲೆ BON ವಿನಿಮಯಗಳು!
ಯಾವುದೇ ಮರುಪಾವತಿ ಇಲ್ಲ!',
+ 'pending' => 'ಬಾಕಿ ಉಳಿದಿದೆ',
+ 'reason' => 'ಕಾರಣ',
+ 'reject' => 'ತಿರಸ್ಕರಿಸಿ',
+ 'report' => 'ವರದಿ ಕೋರಿಕೆ',
+ 'request' => 'ವಿನಂತಿ',
+ 'request-details' => 'ವಿನಂತಿ ವಿವರಗಳು',
+ 'requested-by' => 'ಅದಕ್ಕೆ ವಿನಂತಿಸಲಾಗಿದೆ',
+ 'requests' => 'ವಿನಂತಿಗಳು',
+ 'required' => 'ಅಗತ್ಯವಿದೆ',
+ 'reset' => 'ಮರುಹೊಂದಿಸಿ',
+ 'reset-confirmation' => 'ಈ ವಿನಂತಿ ಮರುಹೊಂದಿಸಲು ನೀವು ಖಚಿತವಾಗಿ ಬಯಸುವಿರಾ',
+ 'reset-request' => 'ಈ ವಿನಂತಿ ಮರುಹೊಂದಿಸಿ',
+ 'reward' => 'ಬಹುಮಾನ',
+ 'reward-desc' => 'ಎಷ್ಟು ಬೋನಸ್ ಪಾಯಿಂಟ್ ನೀವು ಬಹುಮಾನವನ್ನು ನೀಡಲು ಬಯಸುತ್ತೀರಿ? ಕನಿಷ್ಠ 100 ಬಿಪಿ',
+ 'reward-from' => 'ನಿಂದ',
+ 'title' => 'ಶೀರ್ಷಿಕೆ',
+ 'torrent-hash' => 'ಟೊರೆಂಟ್ ಹ್ಯಾಶ್',
+ 'total-bounty' => 'ಒಟ್ಟು ಔದಾರ್ಯ',
+ 'type' => 'ಮಾದರಿ',
+ 'unclaim' => 'ಈ ವಿನಂತಿಯನ್ನು ಅನ್ಕ್ಲೈಮ್ ಮಾಡಿ',
+ 'unfilled' => 'ತುಂಬದ',
+ 'view-filled' => 'ವೀಕ್ಷಿಸಿ ತುಂಬಿದೆ',
+ 'view-unfilled' => 'ತುಂಬಿದ ವೀಕ್ಷಿಸಿ',
+ 'vote' => 'ಮತ',
+ 'vote-that' => 'ಈ ವಿನಂತಿಗೆ ಮತ ಚಲಾಯಿಸಿ',
+ 'voters' => 'ಮತದಾರರು',
+ 'votes' => 'ಮತಗಳು',
+ 'yes' => 'ಹೌದು',
];
diff --git a/lang/kn/rss.php b/lang/kn/rss.php
index 424799e63..d40e4ef1e 100644
--- a/lang/kn/rss.php
+++ b/lang/kn/rss.php
@@ -12,19 +12,19 @@
*/
return [
- 'create' => 'ರಚಿಸಿ',
+ 'create' => 'ರಚಿಸಿ',
'create-private-feed' => 'ಖಾಸಗಿ RSS ಫೀಡ್ ರಚಿಸಿ',
- 'create-public-feed' => 'ಸಾರ್ವಜನಿಕ RSS ಫೀಡ್ ರಚಿಸಿ',
- 'delete' => 'ಅಳಿಸಿ',
- 'edit' => 'ಸಂಪಾದಿಸಿ',
- 'edit-private-feed' => 'ಖಾಸಗಿ RSS ಫೀಡ್ ಅನ್ನು ಸಂಪಾದಿಸಿ',
- 'edit-public-feed' => 'ಸಾರ್ವಜನಿಕ RSS ಫೀಡ್ ಸಂಪಾದಿಸಿ',
- 'feed' => 'ಫೀಡ್',
- 'feeds' => 'ಫೀಡ್ಗಳು',
- 'name' => 'ಹೆಸರು',
- 'public' => 'ಸಾರ್ವಜನಿಕ',
- 'private' => 'ಖಾಸಗಿ',
- 'rss' => 'RSS',
- 'rss-feed' => 'RSS ಫೀಡ್',
- 'type' => 'ಮಾದರಿ',
+ 'create-public-feed' => 'ಸಾರ್ವಜನಿಕ RSS ಫೀಡ್ ರಚಿಸಿ',
+ 'delete' => 'ಅಳಿಸಿ',
+ 'edit' => 'ಸಂಪಾದಿಸಿ',
+ 'edit-private-feed' => 'ಖಾಸಗಿ RSS ಫೀಡ್ ಅನ್ನು ಸಂಪಾದಿಸಿ',
+ 'edit-public-feed' => 'ಸಾರ್ವಜನಿಕ RSS ಫೀಡ್ ಸಂಪಾದಿಸಿ',
+ 'feed' => 'ಫೀಡ್',
+ 'feeds' => 'ಫೀಡ್ಗಳು',
+ 'name' => 'ಹೆಸರು',
+ 'public' => 'ಸಾರ್ವಜನಿಕ',
+ 'private' => 'ಖಾಸಗಿ',
+ 'rss' => 'RSS',
+ 'rss-feed' => 'RSS ಫೀಡ್',
+ 'type' => 'ಮಾದರಿ',
];
diff --git a/lang/kn/staff.php b/lang/kn/staff.php
index 6b034360e..751f3c53e 100644
--- a/lang/kn/staff.php
+++ b/lang/kn/staff.php
@@ -12,48 +12,48 @@
*/
return [
- 'audit-log' => 'ಚಟುವಟಿಕೆ ದಾಖಲೆ',
- 'articles' => 'ಲೇಖನಗಳು',
- 'applications' => 'ಅರ್ಜಿಗಳನ್ನು',
- 'bans-log' => 'ನಿಷೇಧಿಸಲಾಗಿದೆ',
- 'blocks' => 'ನಿರ್ಬಂಧಿಸುತ್ತದೆ',
- 'bot' => 'ಬಾಟ್',
- 'bots' => 'ಬಾಟ್ಗಳು',
- 'chat' => 'ಚಾಟ್',
- 'config-manager' => 'ಸಂರಚನಾ ವ್ಯವಸ್ಥಾಪಕ',
- 'dashboard' => 'ಡ್ಯಾಶ್ಬೋರ್ಡ್',
- 'failed-login-log' => 'ವಿಫಲ ಲಾಗಿನ್ ಲಾಗ್',
- 'flush-ghost-peers' => 'ಫ್ಲಶ್ ಘೋಸ್ಟ್ ಪೀರ್ಸ್',
- 'forums' => 'ವೇದಿಕೆಗಳು',
- 'frontend' => 'ಮುಂಭಾಗ',
- 'general-tools' => 'ಜನರಲ್ ಪರಿಕರಗಳು',
- 'groups' => 'ಗುಂಪುಗಳು',
- 'invites-log' => 'ಲಾಗ್ ಆಹ್ವಾನಿಸುತ್ತದೆ',
- 'laravel-log' => 'ಲಾರಾವೆಲ್ ಲಾಗ್',
- 'links' => 'ಲಿಂಕ್ಗಳು',
- 'logs' => 'ದಾಖಲೆಗಳು',
- 'mass-pm' => 'ಮಾಸ್ PM',
- 'mass-validate-users' => 'ಸಮೂಹ ಬಳಕೆದಾರರು ಮೌಲ್ಯೀಕರಿಸಲು',
- 'moderation' => 'ಮಾಡರೇಶನ್',
- 'pages' => 'ಪುಟಗಳು',
- 'please-moderate' => 'ದಯವಿಟ್ಟು ಈ ಟೊರೆಂಟ್ ಅನ್ನು ಮಾಡರೇಟ್ ಮಾಡಿ!',
- 'polls' => 'ಅಭಿಪ್ರಾಯಗಳು',
- 'reports-log' => 'ಲಾಗ್ ವರದಿಗಳು',
- 'rss' => 'RSS',
- 'staff-dashboard' => 'ಸ್ಟಾಫ್ ಡ್ಯಾಶ್ಬೋರ್ಡ್',
- 'torrent-categories' => 'ಟೊರೆಂಟ್ ವರ್ಗಗಳು',
- 'torrent-moderation' => 'ಟೊರೆಂಟ್ ಮೋಡ್ರೇಷನ್',
- 'torrent-tools' => 'ಟೊರೆಂಟ್ ಪರಿಕರಗಳು',
- 'torrent-types' => 'ಟೊರೆಂಟ್ ವಿಧಗಳು',
- 'torrents' => 'ಟೊರೆಂಟುಗಳು',
- 'user-gifting' => 'ಬಳಕೆದಾರ ಉಡುಗೊರೆಯನ್ನು',
- 'user-notes' => 'ಬಳಕೆದಾರ ಟಿಪ್ಪಣಿಗಳು ಲಾಗ್',
- 'user-search' => 'ಬಳಕೆದಾರ ಹುಡುಕಾಟ',
- 'user-tools' => 'ಬಳಕೆದಾರ ಪರಿಕರಗಳು',
- 'warnings-log' => 'ಎಚ್ಚರಿಕೆಗಳು ಲಾಗ್',
- 'you-have' => 'ನಿನ್ನ ಬಳಿ',
+ 'audit-log' => 'ಚಟುವಟಿಕೆ ದಾಖಲೆ',
+ 'articles' => 'ಲೇಖನಗಳು',
+ 'applications' => 'ಅರ್ಜಿಗಳನ್ನು',
+ 'bans-log' => 'ನಿಷೇಧಿಸಲಾಗಿದೆ',
+ 'blocks' => 'ನಿರ್ಬಂಧಿಸುತ್ತದೆ',
+ 'bot' => 'ಬಾಟ್',
+ 'bots' => 'ಬಾಟ್ಗಳು',
+ 'chat' => 'ಚಾಟ್',
+ 'config-manager' => 'ಸಂರಚನಾ ವ್ಯವಸ್ಥಾಪಕ',
+ 'dashboard' => 'ಡ್ಯಾಶ್ಬೋರ್ಡ್',
+ 'failed-login-log' => 'ವಿಫಲ ಲಾಗಿನ್ ಲಾಗ್',
+ 'flush-ghost-peers' => 'ಫ್ಲಶ್ ಘೋಸ್ಟ್ ಪೀರ್ಸ್',
+ 'forums' => 'ವೇದಿಕೆಗಳು',
+ 'frontend' => 'ಮುಂಭಾಗ',
+ 'general-tools' => 'ಜನರಲ್ ಪರಿಕರಗಳು',
+ 'groups' => 'ಗುಂಪುಗಳು',
+ 'invites-log' => 'ಲಾಗ್ ಆಹ್ವಾನಿಸುತ್ತದೆ',
+ 'laravel-log' => 'ಲಾರಾವೆಲ್ ಲಾಗ್',
+ 'links' => 'ಲಿಂಕ್ಗಳು',
+ 'logs' => 'ದಾಖಲೆಗಳು',
+ 'mass-pm' => 'ಮಾಸ್ PM',
+ 'mass-validate-users' => 'ಸಮೂಹ ಬಳಕೆದಾರರು ಮೌಲ್ಯೀಕರಿಸಲು',
+ 'moderation' => 'ಮಾಡರೇಶನ್',
+ 'pages' => 'ಪುಟಗಳು',
+ 'please-moderate' => 'ದಯವಿಟ್ಟು ಈ ಟೊರೆಂಟ್ ಅನ್ನು ಮಾಡರೇಟ್ ಮಾಡಿ!',
+ 'polls' => 'ಅಭಿಪ್ರಾಯಗಳು',
+ 'reports-log' => 'ಲಾಗ್ ವರದಿಗಳು',
+ 'rss' => 'RSS',
+ 'staff-dashboard' => 'ಸ್ಟಾಫ್ ಡ್ಯಾಶ್ಬೋರ್ಡ್',
+ 'torrent-categories' => 'ಟೊರೆಂಟ್ ವರ್ಗಗಳು',
+ 'torrent-moderation' => 'ಟೊರೆಂಟ್ ಮೋಡ್ರೇಷನ್',
+ 'torrent-tools' => 'ಟೊರೆಂಟ್ ಪರಿಕರಗಳು',
+ 'torrent-types' => 'ಟೊರೆಂಟ್ ವಿಧಗಳು',
+ 'torrents' => 'ಟೊರೆಂಟುಗಳು',
+ 'user-gifting' => 'ಬಳಕೆದಾರ ಉಡುಗೊರೆಯನ್ನು',
+ 'user-notes' => 'ಬಳಕೆದಾರ ಟಿಪ್ಪಣಿಗಳು ಲಾಗ್',
+ 'user-search' => 'ಬಳಕೆದಾರ ಹುಡುಕಾಟ',
+ 'user-tools' => 'ಬಳಕೆದಾರ ಪರಿಕರಗಳು',
+ 'warnings-log' => 'ಎಚ್ಚರಿಕೆಗಳು ಲಾಗ್',
+ 'you-have' => 'ನಿನ್ನ ಬಳಿ',
'possible-leech-cheaters' => 'ಸಂಭಾವ್ಯ ಚೀಟರ್ಸ್',
- 'chat-tools' => 'ಚಾಟ್ ಪರಿಕರಗಳು',
- 'flush-chat' => 'ಫ್ಲಶ್ ಚಾಟ್ಬಾಕ್ಸ್',
- 'seedboxes' => 'ನೋಂದಾಯಿತ ಸೀಡ್ಬಾಕ್ಸ್ಗಳು',
+ 'chat-tools' => 'ಚಾಟ್ ಪರಿಕರಗಳು',
+ 'flush-chat' => 'ಫ್ಲಶ್ ಚಾಟ್ಬಾಕ್ಸ್',
+ 'seedboxes' => 'ನೋಂದಾಯಿತ ಸೀಡ್ಬಾಕ್ಸ್ಗಳು',
];
diff --git a/lang/kn/stat.php b/lang/kn/stat.php
index 5be2053d8..6904f4bea 100644
--- a/lang/kn/stat.php
+++ b/lang/kn/stat.php
@@ -12,40 +12,40 @@
*/
return [
- 'by-count' => 'ಕೌಂಟ್ ಮೂಲಕ',
- 'by-data' => 'ಡೇಟಾದಿಂದ',
- 'by-volume' => 'ಸಂಪುಟದಿಂದ',
- 'group' => 'ಗುಂಪು',
- 'groups' => 'ಗುಂಪುಗಳು',
- 'nerd-stats' => 'ನೆರ್ಡ್ ಅಂಕಿಅಂಶಗಳು',
- 'nerd-stats-desc' => 'ನಾವೆಲ್ಲರೂ ಅಂಕಿಅಂಶಗಳನ್ನು ಪ್ರೀತಿಸುತ್ತೇವೆ. ನಾವು ಮುಖ್ಯವಾಗಿ ಕಂಡುಕೊಂಡ ಕೆಲವು ಅಂಶಗಳು ಇಲ್ಲಿವೆ',
- 'registration-date' => 'ನೋಂದಣಿ ದಿನಾಂಕ',
- 'request-fulfilled' => 'ವಿನಂತಿ ಪೂರ್ಣಗೊಂಡಿದೆ',
- 'request-not-fulfilled' => 'ವಿನಂತಿ ಪೂರ್ಣಗೊಂಡಿಲ್ಲ',
+ 'by-count' => 'ಕೌಂಟ್ ಮೂಲಕ',
+ 'by-data' => 'ಡೇಟಾದಿಂದ',
+ 'by-volume' => 'ಸಂಪುಟದಿಂದ',
+ 'group' => 'ಗುಂಪು',
+ 'groups' => 'ಗುಂಪುಗಳು',
+ 'nerd-stats' => 'ನೆರ್ಡ್ ಅಂಕಿಅಂಶಗಳು',
+ 'nerd-stats-desc' => 'ನಾವೆಲ್ಲರೂ ಅಂಕಿಅಂಶಗಳನ್ನು ಪ್ರೀತಿಸುತ್ತೇವೆ. ನಾವು ಮುಖ್ಯವಾಗಿ ಕಂಡುಕೊಂಡ ಕೆಲವು ಅಂಶಗಳು ಇಲ್ಲಿವೆ',
+ 'registration-date' => 'ನೋಂದಣಿ ದಿನಾಂಕ',
+ 'request-fulfilled' => 'ವಿನಂತಿ ಪೂರ್ಣಗೊಂಡಿದೆ',
+ 'request-not-fulfilled' => 'ವಿನಂತಿ ಪೂರ್ಣಗೊಂಡಿಲ್ಲ',
'request-pending-aproval' => 'ಬಾಕಿ ಉಳಿದಿರುವ ಮನವಿಯನ್ನು ವಿನಂತಿಸಿ',
- 'select-category' => 'ದಯವಿಟ್ಟು ಕೆಳಗಿನ ವರ್ಗವನ್ನು ಆಯ್ಕೆಮಾಡಿ',
- 'site-stats' => 'ಸೈಟ್ ಅಂಕಿಅಂಶಗಳು',
- 'stats' => 'ಅಂಕಿಅಂಶಗಳು',
- 'stats-format' => 'ಎಲ್ಲಾ ಅಂಕಿಅಂಶಗಳು ಟಾಪ್ 100 ಸ್ವರೂಪದಲ್ಲಿ ಪ್ರದರ್ಶಿತವಾಗಿವೆ',
- 'top-bankers' => 'ಟಾಪ್ ಬ್ಯಾಂಕರ್ಸ್',
- 'top-bountied' => 'ಟಾಪ್ ಬೌಂಟಿಡ್',
- 'top-completed' => 'ಟಾಪ್ ಪೂರ್ಣಗೊಂಡಿದೆ',
- 'top-dead' => 'ಟಾಪ್ ಡೆಡ್',
- 'top-downloaded' => 'ಟಾಪ್ ಡೌನ್ಲೋಡ್ ಟೊರೆಂಟುಗಳು',
- 'top-downloaders' => 'ಟಾಪ್ ಡೌನ್ಲೋಡರ್ಗಳು',
- 'top-dying' => 'ಟಾಪ್ ಡೈಯಿಂಗ್',
- 'top-leeched' => 'ಟಾಪ್ ಲೆಕ್ಹೆಡ್',
- 'top-leechers' => 'ಟಾಪ್ ಲೀಕರ್ಸ್',
- 'top-seeded' => 'ಟಾಪ್ ಬೀಜ',
- 'top-seeding' => 'ಉನ್ನತ ಬೀಜ',
- 'top-seeders' => 'ಟಾಪ್ ಬೀಜಗಳು',
- 'top-seedsize' => 'ಟಾಪ್ ಸೀಡ್ಸ್ಜೀಕರಿಸು',
- 'top-seedtime' => 'ಟಾಪ್ ಬೀಜ ಸಮಯ',
- 'top-uploaders' => 'ಟಾಪ್ ಅಪ್ಲೋಡರ್ಗಳು',
- 'total-download' => 'ಒಟ್ಟು ಡೌನ್ಲೋಡ್',
- 'total-torrents' => 'ಒಟ್ಟು ಟೊರೆಂಟುಗಳು',
- 'total-traffic' => 'ಒಟ್ಟು ಸಂಚಾರ',
- 'total-upload' => 'ಒಟ್ಟು ಅಪ್ಲೋಡ್',
- 'users-in-group' => 'ಗುಂಪುಗಳಲ್ಲಿ ಬಳಕೆದಾರರು',
- 'users-per-group' => 'ಬಳಕೆದಾರರ ಗುಂಪು',
+ 'select-category' => 'ದಯವಿಟ್ಟು ಕೆಳಗಿನ ವರ್ಗವನ್ನು ಆಯ್ಕೆಮಾಡಿ',
+ 'site-stats' => 'ಸೈಟ್ ಅಂಕಿಅಂಶಗಳು',
+ 'stats' => 'ಅಂಕಿಅಂಶಗಳು',
+ 'stats-format' => 'ಎಲ್ಲಾ ಅಂಕಿಅಂಶಗಳು ಟಾಪ್ 100 ಸ್ವರೂಪದಲ್ಲಿ ಪ್ರದರ್ಶಿತವಾಗಿವೆ',
+ 'top-bankers' => 'ಟಾಪ್ ಬ್ಯಾಂಕರ್ಸ್',
+ 'top-bountied' => 'ಟಾಪ್ ಬೌಂಟಿಡ್',
+ 'top-completed' => 'ಟಾಪ್ ಪೂರ್ಣಗೊಂಡಿದೆ',
+ 'top-dead' => 'ಟಾಪ್ ಡೆಡ್',
+ 'top-downloaded' => 'ಟಾಪ್ ಡೌನ್ಲೋಡ್ ಟೊರೆಂಟುಗಳು',
+ 'top-downloaders' => 'ಟಾಪ್ ಡೌನ್ಲೋಡರ್ಗಳು',
+ 'top-dying' => 'ಟಾಪ್ ಡೈಯಿಂಗ್',
+ 'top-leeched' => 'ಟಾಪ್ ಲೆಕ್ಹೆಡ್',
+ 'top-leechers' => 'ಟಾಪ್ ಲೀಕರ್ಸ್',
+ 'top-seeded' => 'ಟಾಪ್ ಬೀಜ',
+ 'top-seeding' => 'ಉನ್ನತ ಬೀಜ',
+ 'top-seeders' => 'ಟಾಪ್ ಬೀಜಗಳು',
+ 'top-seedsize' => 'ಟಾಪ್ ಸೀಡ್ಸ್ಜೀಕರಿಸು',
+ 'top-seedtime' => 'ಟಾಪ್ ಬೀಜ ಸಮಯ',
+ 'top-uploaders' => 'ಟಾಪ್ ಅಪ್ಲೋಡರ್ಗಳು',
+ 'total-download' => 'ಒಟ್ಟು ಡೌನ್ಲೋಡ್',
+ 'total-torrents' => 'ಒಟ್ಟು ಟೊರೆಂಟುಗಳು',
+ 'total-traffic' => 'ಒಟ್ಟು ಸಂಚಾರ',
+ 'total-upload' => 'ಒಟ್ಟು ಅಪ್ಲೋಡ್',
+ 'users-in-group' => 'ಗುಂಪುಗಳಲ್ಲಿ ಬಳಕೆದಾರರು',
+ 'users-per-group' => 'ಬಳಕೆದಾರರ ಗುಂಪು',
];
diff --git a/lang/kn/torrent.php b/lang/kn/torrent.php
index 64f717ccb..7999103b1 100644
--- a/lang/kn/torrent.php
+++ b/lang/kn/torrent.php
@@ -12,197 +12,197 @@
*/
return [
- 'activity' => 'ಚಟುವಟಿಕೆ',
- 'age' => 'ವಯಸ್ಸು',
- 'agent' => 'ಏಜೆಂಟ್',
- 'alive' => 'ಜೀವಂತವಾಗಿ',
- 'announce-url' => 'URL ಅನ್ನು ಪ್ರಕಟಿಸಿ',
- 'announce-url-desc' => 'ಹೊಸ ಟೊರೆಂಟ್ ರಚಿಸುವಾಗ ದಯವಿಟ್ಟು URL ಅನ್ನು ಘೋಷಿಸಿ. ಸೈಟ್ನಿಂದ ಡೌನ್ಲೋಡ್ ಮಾಡದೆ ನಿಮ್ಮ ಟೊರೆಂಟ್ ಅನ್ನು ನೀವು ಬಳಸಲು ಬಯಸಿದರೆ ನೀವು ಖಾಸಗಿ ಫ್ಲ್ಯಾಗ್ ಮತ್ತು ಮೂಲವನ್ನು ಮೂಲಕ್ಕೆ ಹೊಂದಿಸಬೇಕು',
- 'announce-url-desc-url' => 'ತೊಂದರೆ ಇದೆಯೇ? ಇಲ್ಲಿ ನಮ್ಮ ಮಾರ್ಗದರ್ಶಿ ನೋಡಿ',
- 'announce-url-desc2' => 'ಎಲ್ಲ ಅಪ್ಲೋಡ್ಗಳಿಗೆ TMDB ಮತ್ತು IMDB ಅಗತ್ಯವಿದೆ! ಪೋಸ್ಟರ್ಗಳು / ಬ್ಯಾಕ್ಡ್ರಾಪ್ಸ್ ಮತ್ತು ಎಕ್ಸ್ಟ್ರಾಇನ್ಫೋಗಳನ್ನು ಪಡೆದುಕೊಳ್ಳಲು ಇದನ್ನು ಬಳಸಲಾಗುತ್ತದೆ',
- 'approved' => 'ಅನುಮೋದಿಸಲಾಗಿದೆ',
- 'audio' => 'ಆಡಿಯೋ',
- 'bon-tipped' => 'ಬೋನ್ ತುದಿಯಲ್ಲಿದೆ',
- 'bookmark' => 'ಬುಕ್ಮಾರ್ಕ್',
- 'bookmarks' => 'ಬುಕ್ಮಾರ್ಕ್ಗಳು',
- 'bump' => 'ಬಂಪ್',
- 'cant-upload' => 'ದೋಷ: ನಿಮ್ಮ ಅಪ್ಲೋಡ್ ಹಕ್ಕುಗಳನ್ನು ನಿಷ್ಕ್ರಿಯಗೊಳಿಸಲಾಗಿದೆ',
- 'cant-upload-desc' => 'ನೀವು ದೋಷದಲ್ಲಿದ್ದರೆ, ಸಿಬ್ಬಂದಿ ಸಂಪರ್ಕಿಸಿ',
- 'cards' => 'ಕಾರ್ಡ್ಗಳು',
- 'cards-view' => 'ಟೊರೆಂಟ್ ಕಾರ್ಡ್ಗಳು ವೀಕ್ಷಿಸಿ',
- 'categories' => 'ವರ್ಗಗಳು',
- 'category' => 'ವರ್ಗ',
- 'client' => 'ಗ್ರಾಹಕ',
- 'commited' => 'ಕಮಿಟೆಡ್',
- 'completed' => 'ಪೂರ್ಣಗೊಂಡಿದೆ',
- 'completed_at' => 'ನಲ್ಲಿ ಪೂರ್ಣಗೊಂಡಿದೆ',
- 'completed-not-seeding' => 'ನೀವು ಈ ಡೌನ್ಲೋಡ್ ಅನ್ನು ಪೂರ್ಣಗೊಳಿಸಿದ್ದೀರಿ ಆದರೆ ಅದನ್ನು ಎಂದಿಗೂ ನೋಡುವುದಿಲ್ಲ',
- 'created_at' => 'ನಲ್ಲಿ ರಚಿಸಲಾಗಿದೆ',
- 'credited' => 'ಗೌರವಿಸಲಾಗಿದೆ',
- 'current' => 'ಪ್ರಸ್ತುತ',
- 'current-filters' => 'ಪ್ರಸ್ತುತ ಶೋಧಕಗಳು',
- 'currently-leeching' => 'ಪ್ರಸ್ತುತ ಲೀಚಿಂಗ್',
- 'currently-seeding' => 'ಪ್ರಸ್ತುತ ಬೀಜ',
- 'dead-torrent' => 'ಡೆಡ್ ಟೊರೆಂಟ್',
- 'dead-torrents' => 'ಡೆಡ್ ಟೊರೆಂಟುಗಳು',
- 'delete-bookmark' => 'ಈ ಬುಕ್ಮಾರ್ಕ್ ಅಳಿಸಿ',
- 'description' => 'ವಿವರಣೆ',
- 'discounts' => 'ರಿಯಾಯಿತಿಗಳು',
- 'double-upload' => 'ಅಪ್ಲೋಡ್ ಡಬಲ್',
- 'download-all' => 'ಎಲ್ಲವನ್ನೂ ಡೌನ್ಲೋಡ್ ಮಾಡಿ',
- 'download-check' => 'ಡೌನ್ಲೋಡ್ ಚೆಕ್',
- 'downloaded' => 'ಡೌನ್ಲೋಡ್ ಮಾಡಲಾಗಿದೆ',
- 'dying-torrent' => 'ಡೈಯಿಂಗ್ ಟೊರೆಂಟ್',
- 'dying-torrents' => 'ಡೈಯಿಂಗ್ ಟೊರೆಂಟುಗಳು',
- 'encode-settings' => 'ಎನ್ಕೋಡ್ ಸೆಟ್ಟಿಂಗ್ಗಳು',
- 'estimated-ratio' => 'ಡೌನ್ಲೋಡ್ ಮಾಡಿದ ನಂತರ ಅಂದಾಜು ಅನುಪಾತ',
- 'failed' => 'ವಿಫಲವಾಗಿದೆ',
- 'feature' => 'ವೈಶಿಷ್ಟ್ಯ',
- 'featured' => 'ವೈಶಿಷ್ಟ್ಯ',
- 'featured-desc' => 'ವೈಶಿಷ್ಟ್ಯಪೂರ್ಣ ಟೊರೆಂಟುಗಳು 100% ಉಚಿತ ಮತ್ತು ಅಪ್ಲೋಡ್ ಡಬಲ್!',
- 'featured-until' => 'ಇದುವರೆಗೂ ವೈಶಿಷ್ಟ್ಯಗೊಳಿಸಿದ ಟೊರೆಂಟ್ ಆಗಿದೆ',
- 'file' => 'ಫೈಲ್',
- 'filters' => 'ಶೋಧಕಗಳು',
- 'fl-tokens-left' => 'ನಿನ್ನ ಬಳಿ : ಟೋಕನ್ಗಳು ಉಳಿದಿವೆ',
- 'freeleech' => 'ಫ್ರೀಲೀಕ್',
- 'freeleech-token' => 'ಫ್ರೀಲೀಕ್ ಟೋಕನ್',
- 'general' => 'ಜನರಲ್',
- 'genre' => 'ಪ್ರಕಾರ',
- 'global-double-upload' => 'ಜಾಗತಿಕ ಡಬಲ್ ಅಪ್ಲೋಡ್',
- 'global-freeleech' => 'ಜಾಗತಿಕ ಫ್ರೀಲೀಚ್',
- 'grant' => 'ಅನುದಾನ',
- 'greater-than' => 'ಅದಕ್ಕಿಂತ ಹೆಚ್ಚು',
- 'grouping' => 'ಗ್ರೂಪಿಂಗ್',
- 'groupings' => 'ಗುಂಪುಗಳು',
- 'grouping-categories' => 'ಗುಂಪಿನ ವರ್ಗಗಳು',
+ 'activity' => 'ಚಟುವಟಿಕೆ',
+ 'age' => 'ವಯಸ್ಸು',
+ 'agent' => 'ಏಜೆಂಟ್',
+ 'alive' => 'ಜೀವಂತವಾಗಿ',
+ 'announce-url' => 'URL ಅನ್ನು ಪ್ರಕಟಿಸಿ',
+ 'announce-url-desc' => 'ಹೊಸ ಟೊರೆಂಟ್ ರಚಿಸುವಾಗ ದಯವಿಟ್ಟು URL ಅನ್ನು ಘೋಷಿಸಿ. ಸೈಟ್ನಿಂದ ಡೌನ್ಲೋಡ್ ಮಾಡದೆ ನಿಮ್ಮ ಟೊರೆಂಟ್ ಅನ್ನು ನೀವು ಬಳಸಲು ಬಯಸಿದರೆ ನೀವು ಖಾಸಗಿ ಫ್ಲ್ಯಾಗ್ ಮತ್ತು ಮೂಲವನ್ನು ಮೂಲಕ್ಕೆ ಹೊಂದಿಸಬೇಕು',
+ 'announce-url-desc-url' => 'ತೊಂದರೆ ಇದೆಯೇ? ಇಲ್ಲಿ ನಮ್ಮ ಮಾರ್ಗದರ್ಶಿ ನೋಡಿ',
+ 'announce-url-desc2' => 'ಎಲ್ಲ ಅಪ್ಲೋಡ್ಗಳಿಗೆ TMDB ಮತ್ತು IMDB ಅಗತ್ಯವಿದೆ! ಪೋಸ್ಟರ್ಗಳು / ಬ್ಯಾಕ್ಡ್ರಾಪ್ಸ್ ಮತ್ತು ಎಕ್ಸ್ಟ್ರಾಇನ್ಫೋಗಳನ್ನು ಪಡೆದುಕೊಳ್ಳಲು ಇದನ್ನು ಬಳಸಲಾಗುತ್ತದೆ',
+ 'approved' => 'ಅನುಮೋದಿಸಲಾಗಿದೆ',
+ 'audio' => 'ಆಡಿಯೋ',
+ 'bon-tipped' => 'ಬೋನ್ ತುದಿಯಲ್ಲಿದೆ',
+ 'bookmark' => 'ಬುಕ್ಮಾರ್ಕ್',
+ 'bookmarks' => 'ಬುಕ್ಮಾರ್ಕ್ಗಳು',
+ 'bump' => 'ಬಂಪ್',
+ 'cant-upload' => 'ದೋಷ: ನಿಮ್ಮ ಅಪ್ಲೋಡ್ ಹಕ್ಕುಗಳನ್ನು ನಿಷ್ಕ್ರಿಯಗೊಳಿಸಲಾಗಿದೆ',
+ 'cant-upload-desc' => 'ನೀವು ದೋಷದಲ್ಲಿದ್ದರೆ, ಸಿಬ್ಬಂದಿ ಸಂಪರ್ಕಿಸಿ',
+ 'cards' => 'ಕಾರ್ಡ್ಗಳು',
+ 'cards-view' => 'ಟೊರೆಂಟ್ ಕಾರ್ಡ್ಗಳು ವೀಕ್ಷಿಸಿ',
+ 'categories' => 'ವರ್ಗಗಳು',
+ 'category' => 'ವರ್ಗ',
+ 'client' => 'ಗ್ರಾಹಕ',
+ 'commited' => 'ಕಮಿಟೆಡ್',
+ 'completed' => 'ಪೂರ್ಣಗೊಂಡಿದೆ',
+ 'completed_at' => 'ನಲ್ಲಿ ಪೂರ್ಣಗೊಂಡಿದೆ',
+ 'completed-not-seeding' => 'ನೀವು ಈ ಡೌನ್ಲೋಡ್ ಅನ್ನು ಪೂರ್ಣಗೊಳಿಸಿದ್ದೀರಿ ಆದರೆ ಅದನ್ನು ಎಂದಿಗೂ ನೋಡುವುದಿಲ್ಲ',
+ 'created_at' => 'ನಲ್ಲಿ ರಚಿಸಲಾಗಿದೆ',
+ 'credited' => 'ಗೌರವಿಸಲಾಗಿದೆ',
+ 'current' => 'ಪ್ರಸ್ತುತ',
+ 'current-filters' => 'ಪ್ರಸ್ತುತ ಶೋಧಕಗಳು',
+ 'currently-leeching' => 'ಪ್ರಸ್ತುತ ಲೀಚಿಂಗ್',
+ 'currently-seeding' => 'ಪ್ರಸ್ತುತ ಬೀಜ',
+ 'dead-torrent' => 'ಡೆಡ್ ಟೊರೆಂಟ್',
+ 'dead-torrents' => 'ಡೆಡ್ ಟೊರೆಂಟುಗಳು',
+ 'delete-bookmark' => 'ಈ ಬುಕ್ಮಾರ್ಕ್ ಅಳಿಸಿ',
+ 'description' => 'ವಿವರಣೆ',
+ 'discounts' => 'ರಿಯಾಯಿತಿಗಳು',
+ 'double-upload' => 'ಅಪ್ಲೋಡ್ ಡಬಲ್',
+ 'download-all' => 'ಎಲ್ಲವನ್ನೂ ಡೌನ್ಲೋಡ್ ಮಾಡಿ',
+ 'download-check' => 'ಡೌನ್ಲೋಡ್ ಚೆಕ್',
+ 'downloaded' => 'ಡೌನ್ಲೋಡ್ ಮಾಡಲಾಗಿದೆ',
+ 'dying-torrent' => 'ಡೈಯಿಂಗ್ ಟೊರೆಂಟ್',
+ 'dying-torrents' => 'ಡೈಯಿಂಗ್ ಟೊರೆಂಟುಗಳು',
+ 'encode-settings' => 'ಎನ್ಕೋಡ್ ಸೆಟ್ಟಿಂಗ್ಗಳು',
+ 'estimated-ratio' => 'ಡೌನ್ಲೋಡ್ ಮಾಡಿದ ನಂತರ ಅಂದಾಜು ಅನುಪಾತ',
+ 'failed' => 'ವಿಫಲವಾಗಿದೆ',
+ 'feature' => 'ವೈಶಿಷ್ಟ್ಯ',
+ 'featured' => 'ವೈಶಿಷ್ಟ್ಯ',
+ 'featured-desc' => 'ವೈಶಿಷ್ಟ್ಯಪೂರ್ಣ ಟೊರೆಂಟುಗಳು 100% ಉಚಿತ ಮತ್ತು ಅಪ್ಲೋಡ್ ಡಬಲ್!',
+ 'featured-until' => 'ಇದುವರೆಗೂ ವೈಶಿಷ್ಟ್ಯಗೊಳಿಸಿದ ಟೊರೆಂಟ್ ಆಗಿದೆ',
+ 'file' => 'ಫೈಲ್',
+ 'filters' => 'ಶೋಧಕಗಳು',
+ 'fl-tokens-left' => 'ನಿನ್ನ ಬಳಿ : ಟೋಕನ್ಗಳು ಉಳಿದಿವೆ',
+ 'freeleech' => 'ಫ್ರೀಲೀಕ್',
+ 'freeleech-token' => 'ಫ್ರೀಲೀಕ್ ಟೋಕನ್',
+ 'general' => 'ಜನರಲ್',
+ 'genre' => 'ಪ್ರಕಾರ',
+ 'global-double-upload' => 'ಜಾಗತಿಕ ಡಬಲ್ ಅಪ್ಲೋಡ್',
+ 'global-freeleech' => 'ಜಾಗತಿಕ ಫ್ರೀಲೀಚ್',
+ 'grant' => 'ಅನುದಾನ',
+ 'greater-than' => 'ಅದಕ್ಕಿಂತ ಹೆಚ್ಚು',
+ 'grouping' => 'ಗ್ರೂಪಿಂಗ್',
+ 'groupings' => 'ಗುಂಪುಗಳು',
+ 'grouping-categories' => 'ಗುಂಪಿನ ವರ್ಗಗಳು',
'grouping-categories-desc' => 'ನೀವು ಯಾವ ವರ್ಗವನ್ನು ಗುಂಪು ಮಾಡಲು ಬಯಸುತ್ತೀರಿ?',
- 'grouping-results' => 'ಫಲಿತಾಂಶಗಳನ್ನು ವರ್ಗೀಕರಿಸಲಾಗುತ್ತಿದೆ',
- 'groupings-view' => 'ಗುಂಪುಗಳು ವೀಕ್ಷಿಸಿ',
- 'have-completed' => 'ಪೂರ್ಣಗೊಂಡಿದೆ',
- 'have-downloaded' => 'ಡೌನ್ಲೋಡ್ ಮಾಡಲಾಗಿದೆ',
- 'have-not-completed' => 'ಪೂರ್ಣಗೊಂಡಿಲ್ಲ',
- 'have-not-downloaded' => 'ಡೌನ್ಲೋಡ್ ಆಗಿಲ್ಲ',
- 'health' => 'ಆರೋಗ್ಯ',
- 'history' => 'ಇತಿಹಾಸ',
- 'hitrun' => 'H & R?',
- 'hit-and-runs' => 'ಹಿಟ್ ಅಂಡ್ ರನ್ ಎಣಿಕೆಗಳು',
- 'immune' => 'ಪ್ರತಿರಕ್ಷಣಾ?',
- 'info' => 'ಮಾಹಿತಿ',
- 'internal' => 'ಆಂತರಿಕ',
- 'internal-release' => 'ಆಂತರಿಕ ಬಿಡುಗಡೆ',
- 'last-seed-activity' => 'ಕೊನೆಯ ಬೀಜ ಚಟುವಟಿಕೆ',
- 'last-seeder' => 'ನೀವು ಕೊನೆಯ ಉಳಿದ ಬೀಜವಿದ್ದೀರಿ! (ಕನಿಷ್ಠ 3 ಬಾರಿ ಡೌನ್ಲೋಡ್ ಮಾಡಲಾಗಿದೆ)',
- 'last-update' => 'ಕೊನೆಯ ನವೀಕರಣ',
- 'leave-tip' => 'ತುದಿ ಬಿಡಿ',
- 'leecher' => 'ಲೀಕರ್',
- 'leechers' => 'ಲೀಕೆರ್ಸ್',
- 'leeching' => 'ಲೀಚಿಂಗ್',
- 'left' => 'ಎಡ',
- 'legendary-seeder' => 'ಲೆಜೆಂಡರಿ ಸೀಡರ್',
- 'legendary-torrent' => 'ಲೆಜೆಂಡರಿ ಟೊರೆಂಟ್',
- 'list' => 'ಪಟ್ಟಿ',
- 'me' => 'ಮಿ',
- 'media-info' => 'ಮೀಡಿಯಾ ಇನ್ಫೋ',
- 'media-info-parser' => 'ಮೀಡಿಯಾಇನ್ಫೋ ಪಾರ್ಸರ್',
- 'media-info-paste' => 'ಇಲ್ಲಿ ಮೀಡಿಯಾ ಇನ್ಫೋ ಡಂಪ್ ಅಂಟಿಸಿ',
- 'meta-desc' => 'ಡೌನ್ಲೋಡ್: ಗರಿಷ್ಠ ವೇಗದಲ್ಲಿ ಹೆಸರು',
- 'moderation' => 'ಮಾಡರೇಶನ್',
- 'movies' => 'ಚಲನಚಿತ್ರಗಳು',
- 'mvp' => 'MVP',
- 'my-active-torrents' => 'ನನ್ನ ಸಕ್ರಿಯ ಟೊರೆಂಟುಗಳು',
- 'name' => 'ಹೆಸರು',
- 'no-bookmarks' => 'ಬುಕ್ಮಾರ್ಕ್ಗಳು ಕಂಡುಬಂದಿಲ್ಲ.',
- 'no-discounts' => 'ಪ್ರಸ್ತುತ ಯಾವುದೇ ರಿಯಾಯಿತಿಗಳು ಇಲ್ಲ',
- 'no-meta' => 'ಯಾವುದೇ ಮೆಟಾಡೇಟಾ ಕಂಡುಬಂದಿಲ್ಲ',
- 'no-privileges' => 'ಈ ಫೈಲ್ ಅನ್ನು ನೀವು ಡೌನ್ಲೋಡ್ ಮಾಡಲು ಸಾಧ್ಯವಿಲ್ಲ - ದಯವಿಟ್ಟು ಹೆಚ್ಚಿನ ಮಾಹಿತಿಗಾಗಿ ಕೆಳಗೆ ಪರಿಶೀಲಿಸಿ',
- 'no-privileges-desc' => 'ದಯವಿಟ್ಟು ಡೌನ್ಲೋಡ್ ಬಟನ್ ಕಾಣಿಸಿಕೊಳ್ಳಲು ಮೇಲಿನ ವಿಫಲ ಫಲಿತಾಂಶಗಳನ್ನು ಪರಿಹರಿಸಿ',
- 'not-completed' => 'ಡೌನ್ಲೋಡ್ ಮಾಡುವುದನ್ನು ಪ್ರಾರಂಭಿಸಿ ಆದರೆ ಪೂರ್ಣಗೊಳಿಸಲಿಲ್ಲ',
- 'not-downloaded' => 'ಡೌನ್ಲೋಡ್ ಆಗಿಲ್ಲ',
- 'old-torrent' => 'ಹಳೆಯ ಟೊರೆಂಟ್',
- 'optional' => 'ಐಚ್ಛಿಕ',
- 'original-output' => 'ಮೂಲ ಔಟ್ಪುಟ್ ತೋರಿಸು / ಮರೆಮಾಡು',
- 'participant' => 'ಭಾಗವಹಿಸುವವರು',
- 'passed' => 'ಹಾದುಹೋಯಿತು',
- 'peers' => 'ಸಹಯೋಗಿಗಳು',
- 'pending' => 'ಬಾಕಿ ಉಳಿದಿದೆ',
- 'personal-freeleech' => 'ವೈಯಕ್ತಿಕ ಫ್ರೀಲೀಚ್',
- 'poster' => 'ಪೋಸ್ಟರ್',
- 'poster-view' => 'ಪೋಸ್ಟರ್ ವೀಕ್ಷಣೆ',
- 'posters' => 'ಪೋಸ್ಟರ್ಗಳು',
- 'prewarn' => 'ಪ್ರೀವರ್ನ್ಡ್?',
- 'progress' => 'ಪ್ರೋಗ್ರೆಸ್',
- 'quick-comment' => 'ತ್ವರಿತ ಕಾಮೆಂಟ್',
- 'quick-tip' => 'ತ್ವರಿತ ತುದಿ ಪ್ರಮಾಣಗಳು',
- 'rated' => 'ರೇಟ್ ಮಾಡಲಾಗಿದೆ',
- 'rating' => 'ರೇಟಿಂಗ್',
- 'ready' => 'ಈ ಫೈಲ್ ಡೌನ್ಲೋಡ್ಗೆ ಸಿದ್ಧವಾಗಿದೆ',
- 'rejected' => 'ತಿರಸ್ಕರಿಸಿದ',
- 'released' => 'ಬಿಡುಗಡೆಯಾಗಿದೆ',
- 'remaining' => 'ಉಳಿದ',
- 'request-reseed' => 'Reseed ವಿನಂತಿಸಿ',
- 'requires-reseed' => 'Reseed ಅಗತ್ಯವಿದೆ',
- 'resurrections' => 'ಪುನರುತ್ಥಾನಗಳು',
- 'revoke' => 'ರದ್ದು',
- 'rss' => 'RSS',
- 'runtime' => 'ಚಾಲನಾಸಮಯ',
- 'satisfied_in' => 'ಸಂತಸಗೊಂಡಿದೆ',
- 'say-thanks' => 'ದಯವಿಟ್ಟು ಸಾಧ್ಯವಾದಷ್ಟು ಕಾಲ ಧನ್ಯವಾದಗಳು ಮತ್ತು ಬೀಜವನ್ನು ಹೇಳಲು ಮರೆಯದಿರಿ',
- 'sd-content' => 'ಎಸ್ಡಿ ವಿಷಯ',
- 'search' => 'ಹುಡುಕಿ',
- 'seed-time' => 'ಬೀಜ ಸಮಯ',
- 'seeder' => 'ಸೀಡರ್',
- 'seeders' => 'ಬೀಜಗಳು',
- 'seeding' => 'ಬೀಜ',
- 'seedsize' => 'ಸೀಡ್ಸ್ಜೀಕರಿಸು',
- 'seedtime' => 'ಬೀಜ ಸಮಯ',
- 'short-completed' => 'ಸಿ',
- 'short-leechs' => 'ಎಲ್',
- 'short-seeds' => 'ಎಸ್',
- 'show-files' => 'ಫೈಲ್ಗಳನ್ನು ತೋರಿಸು',
- 'similar' => 'ಇದೇ ಟೊರೆಂಟುಗಳು',
- 'size' => 'ಗಾತ್ರ',
- 'special' => 'ವಿಶೇಷ',
- 'special-freeleech' => 'ವಿಶೇಷ ಫ್ರೀಲೀಕ್',
- 'started' => 'ಪ್ರಾರಂಭಿಸಿದೆ',
- 'status' => 'ಸ್ಥಿತಿ',
- 'statistics' => 'ಅಂಕಿಅಂಶ',
- 'stats' => 'ಅಂಕಿಅಂಶಗಳು',
- 'sticky' => 'ಸ್ಟಿಕಿ',
- 'stream-optimized' => 'ಸ್ಟ್ರೀಮ್ ಹೊಂದುವಂತೆ',
- 'subtitle' => 'ಉಪಶೀರ್ಷಿಕೆ',
- 'team-player' => 'ತಂಡದ ಆಟಗಾರ',
- 'thank' => 'ಧನ್ಯವಾದಗಳು',
- 'thanked' => 'ಧನ್ಯವಾದಗಳು',
- 'thanks' => 'ಧನ್ಯವಾದಗಳು',
- 'thanks-given' => 'ಧನ್ಯವಾದಗಳು ನೀಡಲಾಗಿದೆ',
- 'times' => 'ಟೈಮ್ಸ್',
- 'tip-jar' => 'ಸಲಹೆ ಜಾರ್',
- 'title' => 'ಶೀರ್ಷಿಕೆ',
- 'titles' => 'ಶೀರ್ಷಿಕೆಗಳು',
- 'top-completed' => 'ಟಾಪ್ ಪೂರ್ಣಗೊಂಡಿದೆ',
- 'top-dead' => 'ಟಾಪ್ ಸತ್ತ',
- 'top-dying' => 'ಟಾಪ್ ಡೈಯಿಂಗ್',
- 'top-leeched' => 'ಟಾಪ್ leeched',
- 'top-seeded' => 'ಅಗ್ರ ಶ್ರೇಯಾಂಕಿತ',
- 'torrent' => 'ಟೊರೆಂಟ್',
- 'torrent-request' => 'ಟೊರೆಂಟ್ ವಿನಂತಿ',
- 'torrent-tips' => 'ಒಟ್ಟು : ಒಟ್ಟು ಬೋನ್ ಅನ್ನು ಅಪ್ಲೋಡರ್ಗೆ ನಕಲಿಸಲಾಗಿದೆ, ಅದರಲ್ಲಿ : ಬಳಕೆದಾರರು ನಿಮ್ಮಿಂದ ಬಂದವರು',
- 'torrent-tips-desc' => 'ನಿಮ್ಮ ಲಭ್ಯವಿರುವ ಬೋನಸ್ ಪಾಯಿಂಟ್ಗಳಿಂದ ಇದನ್ನು ಕಡಿತಗೊಳಿಸಲಾಗುತ್ತದೆ',
- 'torrents' => 'ಟೊರೆಂಟುಗಳು',
- 'trailer' => 'ಟ್ರೈಲರ್ ವೀಕ್ಷಿಸಿ',
- 'type' => 'ಮಾದರಿ',
- 'types' => 'ರೀತಿಯ',
- 'unbookmark' => 'ಅನ್ಬುಕ್ ಮಾರ್ಕ್',
- 'unsatisfieds' => 'ಅತೃಪ್ತಿಗೊಂಡಿದೆ',
- 'unsticky' => 'ಅಜೇಯ',
- 'updated' => 'ನವೀಕರಿಸಲಾಗಿದೆ',
- 'updated_at' => 'ನವೀಕರಿಸಲಾಗಿದೆ',
- 'uploaded' => 'ಅಪ್ಲೋಡ್ ಮಾಡಲಾಗಿದೆ',
- 'uploaded-by' => 'ಅಪ್ಲೋಡ್ ಮಾಡಲಾಗಿದೆ',
- 'uploader' => 'ಅಪ್ಲೋಡರ್',
- 'use-fl-token' => 'ಫ್ರೀಲೀಕ್ ಟೋಕನ್ ಬಳಸಿ',
- 'video' => 'ವೀಡಿಯೊ',
- 'view-more' => 'ಇನ್ನಷ್ಟು ವೀಕ್ಷಿಸಿ',
- 'view-trailer' => 'ಟ್ರೈಲರ್ ವೀಕ್ಷಿಸಿ',
- 'votes' => 'ಮತಗಳು',
+ 'grouping-results' => 'ಫಲಿತಾಂಶಗಳನ್ನು ವರ್ಗೀಕರಿಸಲಾಗುತ್ತಿದೆ',
+ 'groupings-view' => 'ಗುಂಪುಗಳು ವೀಕ್ಷಿಸಿ',
+ 'have-completed' => 'ಪೂರ್ಣಗೊಂಡಿದೆ',
+ 'have-downloaded' => 'ಡೌನ್ಲೋಡ್ ಮಾಡಲಾಗಿದೆ',
+ 'have-not-completed' => 'ಪೂರ್ಣಗೊಂಡಿಲ್ಲ',
+ 'have-not-downloaded' => 'ಡೌನ್ಲೋಡ್ ಆಗಿಲ್ಲ',
+ 'health' => 'ಆರೋಗ್ಯ',
+ 'history' => 'ಇತಿಹಾಸ',
+ 'hitrun' => 'H & R?',
+ 'hit-and-runs' => 'ಹಿಟ್ ಅಂಡ್ ರನ್ ಎಣಿಕೆಗಳು',
+ 'immune' => 'ಪ್ರತಿರಕ್ಷಣಾ?',
+ 'info' => 'ಮಾಹಿತಿ',
+ 'internal' => 'ಆಂತರಿಕ',
+ 'internal-release' => 'ಆಂತರಿಕ ಬಿಡುಗಡೆ',
+ 'last-seed-activity' => 'ಕೊನೆಯ ಬೀಜ ಚಟುವಟಿಕೆ',
+ 'last-seeder' => 'ನೀವು ಕೊನೆಯ ಉಳಿದ ಬೀಜವಿದ್ದೀರಿ! (ಕನಿಷ್ಠ 3 ಬಾರಿ ಡೌನ್ಲೋಡ್ ಮಾಡಲಾಗಿದೆ)',
+ 'last-update' => 'ಕೊನೆಯ ನವೀಕರಣ',
+ 'leave-tip' => 'ತುದಿ ಬಿಡಿ',
+ 'leecher' => 'ಲೀಕರ್',
+ 'leechers' => 'ಲೀಕೆರ್ಸ್',
+ 'leeching' => 'ಲೀಚಿಂಗ್',
+ 'left' => 'ಎಡ',
+ 'legendary-seeder' => 'ಲೆಜೆಂಡರಿ ಸೀಡರ್',
+ 'legendary-torrent' => 'ಲೆಜೆಂಡರಿ ಟೊರೆಂಟ್',
+ 'list' => 'ಪಟ್ಟಿ',
+ 'me' => 'ಮಿ',
+ 'media-info' => 'ಮೀಡಿಯಾ ಇನ್ಫೋ',
+ 'media-info-parser' => 'ಮೀಡಿಯಾಇನ್ಫೋ ಪಾರ್ಸರ್',
+ 'media-info-paste' => 'ಇಲ್ಲಿ ಮೀಡಿಯಾ ಇನ್ಫೋ ಡಂಪ್ ಅಂಟಿಸಿ',
+ 'meta-desc' => 'ಡೌನ್ಲೋಡ್: ಗರಿಷ್ಠ ವೇಗದಲ್ಲಿ ಹೆಸರು',
+ 'moderation' => 'ಮಾಡರೇಶನ್',
+ 'movies' => 'ಚಲನಚಿತ್ರಗಳು',
+ 'mvp' => 'MVP',
+ 'my-active-torrents' => 'ನನ್ನ ಸಕ್ರಿಯ ಟೊರೆಂಟುಗಳು',
+ 'name' => 'ಹೆಸರು',
+ 'no-bookmarks' => 'ಬುಕ್ಮಾರ್ಕ್ಗಳು ಕಂಡುಬಂದಿಲ್ಲ.',
+ 'no-discounts' => 'ಪ್ರಸ್ತುತ ಯಾವುದೇ ರಿಯಾಯಿತಿಗಳು ಇಲ್ಲ',
+ 'no-meta' => 'ಯಾವುದೇ ಮೆಟಾಡೇಟಾ ಕಂಡುಬಂದಿಲ್ಲ',
+ 'no-privileges' => 'ಈ ಫೈಲ್ ಅನ್ನು ನೀವು ಡೌನ್ಲೋಡ್ ಮಾಡಲು ಸಾಧ್ಯವಿಲ್ಲ - ದಯವಿಟ್ಟು ಹೆಚ್ಚಿನ ಮಾಹಿತಿಗಾಗಿ ಕೆಳಗೆ ಪರಿಶೀಲಿಸಿ',
+ 'no-privileges-desc' => 'ದಯವಿಟ್ಟು ಡೌನ್ಲೋಡ್ ಬಟನ್ ಕಾಣಿಸಿಕೊಳ್ಳಲು ಮೇಲಿನ ವಿಫಲ ಫಲಿತಾಂಶಗಳನ್ನು ಪರಿಹರಿಸಿ',
+ 'not-completed' => 'ಡೌನ್ಲೋಡ್ ಮಾಡುವುದನ್ನು ಪ್ರಾರಂಭಿಸಿ ಆದರೆ ಪೂರ್ಣಗೊಳಿಸಲಿಲ್ಲ',
+ 'not-downloaded' => 'ಡೌನ್ಲೋಡ್ ಆಗಿಲ್ಲ',
+ 'old-torrent' => 'ಹಳೆಯ ಟೊರೆಂಟ್',
+ 'optional' => 'ಐಚ್ಛಿಕ',
+ 'original-output' => 'ಮೂಲ ಔಟ್ಪುಟ್ ತೋರಿಸು / ಮರೆಮಾಡು',
+ 'participant' => 'ಭಾಗವಹಿಸುವವರು',
+ 'passed' => 'ಹಾದುಹೋಯಿತು',
+ 'peers' => 'ಸಹಯೋಗಿಗಳು',
+ 'pending' => 'ಬಾಕಿ ಉಳಿದಿದೆ',
+ 'personal-freeleech' => 'ವೈಯಕ್ತಿಕ ಫ್ರೀಲೀಚ್',
+ 'poster' => 'ಪೋಸ್ಟರ್',
+ 'poster-view' => 'ಪೋಸ್ಟರ್ ವೀಕ್ಷಣೆ',
+ 'posters' => 'ಪೋಸ್ಟರ್ಗಳು',
+ 'prewarn' => 'ಪ್ರೀವರ್ನ್ಡ್?',
+ 'progress' => 'ಪ್ರೋಗ್ರೆಸ್',
+ 'quick-comment' => 'ತ್ವರಿತ ಕಾಮೆಂಟ್',
+ 'quick-tip' => 'ತ್ವರಿತ ತುದಿ ಪ್ರಮಾಣಗಳು',
+ 'rated' => 'ರೇಟ್ ಮಾಡಲಾಗಿದೆ',
+ 'rating' => 'ರೇಟಿಂಗ್',
+ 'ready' => 'ಈ ಫೈಲ್ ಡೌನ್ಲೋಡ್ಗೆ ಸಿದ್ಧವಾಗಿದೆ',
+ 'rejected' => 'ತಿರಸ್ಕರಿಸಿದ',
+ 'released' => 'ಬಿಡುಗಡೆಯಾಗಿದೆ',
+ 'remaining' => 'ಉಳಿದ',
+ 'request-reseed' => 'Reseed ವಿನಂತಿಸಿ',
+ 'requires-reseed' => 'Reseed ಅಗತ್ಯವಿದೆ',
+ 'resurrections' => 'ಪುನರುತ್ಥಾನಗಳು',
+ 'revoke' => 'ರದ್ದು',
+ 'rss' => 'RSS',
+ 'runtime' => 'ಚಾಲನಾಸಮಯ',
+ 'satisfied_in' => 'ಸಂತಸಗೊಂಡಿದೆ',
+ 'say-thanks' => 'ದಯವಿಟ್ಟು ಸಾಧ್ಯವಾದಷ್ಟು ಕಾಲ ಧನ್ಯವಾದಗಳು ಮತ್ತು ಬೀಜವನ್ನು ಹೇಳಲು ಮರೆಯದಿರಿ',
+ 'sd-content' => 'ಎಸ್ಡಿ ವಿಷಯ',
+ 'search' => 'ಹುಡುಕಿ',
+ 'seed-time' => 'ಬೀಜ ಸಮಯ',
+ 'seeder' => 'ಸೀಡರ್',
+ 'seeders' => 'ಬೀಜಗಳು',
+ 'seeding' => 'ಬೀಜ',
+ 'seedsize' => 'ಸೀಡ್ಸ್ಜೀಕರಿಸು',
+ 'seedtime' => 'ಬೀಜ ಸಮಯ',
+ 'short-completed' => 'ಸಿ',
+ 'short-leechs' => 'ಎಲ್',
+ 'short-seeds' => 'ಎಸ್',
+ 'show-files' => 'ಫೈಲ್ಗಳನ್ನು ತೋರಿಸು',
+ 'similar' => 'ಇದೇ ಟೊರೆಂಟುಗಳು',
+ 'size' => 'ಗಾತ್ರ',
+ 'special' => 'ವಿಶೇಷ',
+ 'special-freeleech' => 'ವಿಶೇಷ ಫ್ರೀಲೀಕ್',
+ 'started' => 'ಪ್ರಾರಂಭಿಸಿದೆ',
+ 'status' => 'ಸ್ಥಿತಿ',
+ 'statistics' => 'ಅಂಕಿಅಂಶ',
+ 'stats' => 'ಅಂಕಿಅಂಶಗಳು',
+ 'sticky' => 'ಸ್ಟಿಕಿ',
+ 'stream-optimized' => 'ಸ್ಟ್ರೀಮ್ ಹೊಂದುವಂತೆ',
+ 'subtitle' => 'ಉಪಶೀರ್ಷಿಕೆ',
+ 'team-player' => 'ತಂಡದ ಆಟಗಾರ',
+ 'thank' => 'ಧನ್ಯವಾದಗಳು',
+ 'thanked' => 'ಧನ್ಯವಾದಗಳು',
+ 'thanks' => 'ಧನ್ಯವಾದಗಳು',
+ 'thanks-given' => 'ಧನ್ಯವಾದಗಳು ನೀಡಲಾಗಿದೆ',
+ 'times' => 'ಟೈಮ್ಸ್',
+ 'tip-jar' => 'ಸಲಹೆ ಜಾರ್',
+ 'title' => 'ಶೀರ್ಷಿಕೆ',
+ 'titles' => 'ಶೀರ್ಷಿಕೆಗಳು',
+ 'top-completed' => 'ಟಾಪ್ ಪೂರ್ಣಗೊಂಡಿದೆ',
+ 'top-dead' => 'ಟಾಪ್ ಸತ್ತ',
+ 'top-dying' => 'ಟಾಪ್ ಡೈಯಿಂಗ್',
+ 'top-leeched' => 'ಟಾಪ್ leeched',
+ 'top-seeded' => 'ಅಗ್ರ ಶ್ರೇಯಾಂಕಿತ',
+ 'torrent' => 'ಟೊರೆಂಟ್',
+ 'torrent-request' => 'ಟೊರೆಂಟ್ ವಿನಂತಿ',
+ 'torrent-tips' => 'ಒಟ್ಟು : ಒಟ್ಟು ಬೋನ್ ಅನ್ನು ಅಪ್ಲೋಡರ್ಗೆ ನಕಲಿಸಲಾಗಿದೆ, ಅದರಲ್ಲಿ : ಬಳಕೆದಾರರು ನಿಮ್ಮಿಂದ ಬಂದವರು',
+ 'torrent-tips-desc' => 'ನಿಮ್ಮ ಲಭ್ಯವಿರುವ ಬೋನಸ್ ಪಾಯಿಂಟ್ಗಳಿಂದ ಇದನ್ನು ಕಡಿತಗೊಳಿಸಲಾಗುತ್ತದೆ',
+ 'torrents' => 'ಟೊರೆಂಟುಗಳು',
+ 'trailer' => 'ಟ್ರೈಲರ್ ವೀಕ್ಷಿಸಿ',
+ 'type' => 'ಮಾದರಿ',
+ 'types' => 'ರೀತಿಯ',
+ 'unbookmark' => 'ಅನ್ಬುಕ್ ಮಾರ್ಕ್',
+ 'unsatisfieds' => 'ಅತೃಪ್ತಿಗೊಂಡಿದೆ',
+ 'unsticky' => 'ಅಜೇಯ',
+ 'updated' => 'ನವೀಕರಿಸಲಾಗಿದೆ',
+ 'updated_at' => 'ನವೀಕರಿಸಲಾಗಿದೆ',
+ 'uploaded' => 'ಅಪ್ಲೋಡ್ ಮಾಡಲಾಗಿದೆ',
+ 'uploaded-by' => 'ಅಪ್ಲೋಡ್ ಮಾಡಲಾಗಿದೆ',
+ 'uploader' => 'ಅಪ್ಲೋಡರ್',
+ 'use-fl-token' => 'ಫ್ರೀಲೀಕ್ ಟೋಕನ್ ಬಳಸಿ',
+ 'video' => 'ವೀಡಿಯೊ',
+ 'view-more' => 'ಇನ್ನಷ್ಟು ವೀಕ್ಷಿಸಿ',
+ 'view-trailer' => 'ಟ್ರೈಲರ್ ವೀಕ್ಷಿಸಿ',
+ 'votes' => 'ಮತಗಳು',
];
diff --git a/lang/kn/user.php b/lang/kn/user.php
index 6424b18fd..e639e03aa 100644
--- a/lang/kn/user.php
+++ b/lang/kn/user.php
@@ -12,316 +12,316 @@
*/
return [
- 'about' => 'ಬಗ್ಗೆ',
- 'about-me' => 'ನನ್ನ ಬಗ್ಗೆ',
- 'accepted-at' => 'ನಲ್ಲಿ ಅಂಗೀಕರಿಸಲಾಗಿದೆ',
- 'accepted-by' => 'ಅಕ್ಸೆಪ್ಟೆಡ್',
- 'account-notification' => 'ಖಾತೆ ಅಧಿಸೂಚನೆ ಸೆಟ್ಟಿಂಗ್ಗಳು',
- 'account-notification-follow' => 'ಬಳಕೆದಾರರು ನಿಮ್ಮ ಖಾತೆಯನ್ನು ಅನುಸರಿಸುವಾಗ ಅಧಿಸೂಚನೆಯನ್ನು ಸ್ವೀಕರಿಸಿ',
- 'account-notification-unfollow' => 'ಬಳಕೆದಾರರು ನಿಮ್ಮ ಖಾತೆಯನ್ನು ಅನುಸರಿಸಿದಾಗ ಅಧಿಸೂಚನೆಯನ್ನು ಸ್ವೀಕರಿಸಿ',
- 'account-notification-help' => 'ಅಧಿಸೂಚನೆಗಳನ್ನು ನಿಮ್ಮ ಖಾತೆಗೆ ಕಳುಹಿಸುವಂತೆ ನಿಯಂತ್ರಿಸಿ. ನಿಮ್ಮ ಖಾತೆಗೆ ಸಂಬಂಧಿಸಿದಂತೆ ಅಧಿಸೂಚನೆಗಳನ್ನು ಕಳುಹಿಸಲು ನೀವು ಯಾವುದೇ ಗುಂಪುಗಳನ್ನು ಅನುಮತಿಸದಿದ್ದರೆ ಅಥವಾ ಅಧಿಸೂಚನೆಗಳನ್ನು ನಿಷ್ಕ್ರಿಯಗೊಳಿಸಿದಲ್ಲಿ ಈ ಸೆಟ್ಟಿಂಗ್ಗಳನ್ನು ಅತಿಕ್ರಮಿಸಲಾಗುತ್ತದೆ',
- 'account-settings' => 'ಖಾತೆ ಸೆಟ್ಟಿಂಗ್ಗಳು',
- 'achievement-privacy' => 'ಸಾಧನೆ ಸೆಟ್ಟಿಂಗ್ಗಳು',
- 'achievement-privacy-list' => 'ನಿಮ್ಮ ಸಾಧನೆಗಳ ಪಟ್ಟಿಯನ್ನು ವೀಕ್ಷಿಸಲು ಬಳಕೆದಾರರನ್ನು ಅನುಮತಿಸಿ',
- 'achievement-help' => 'ನಿಮ್ಮ ಪ್ರೊಫೈಲ್ಗೆ ಪ್ರವೇಶಿಸಲು ಅನುಮತಿಸಲಾದ ಗುಂಪುಗಳೊಂದಿಗೆ ನಿರ್ದಿಷ್ಟ ಸಾಧನೆ ಸಂಬಂಧಿತ ಮಾಹಿತಿಯ ಹಂಚಿಕೆಯನ್ನು ನಿಯಂತ್ರಿಸಿ. ನಿಮ್ಮ ಸಾಧನೆಗಳನ್ನು ಪ್ರವೇಶಿಸಲು ನೀವು ಯಾವುದೇ ಗುಂಪುಗಳನ್ನು ಅನುಮತಿಸದಿದ್ದರೆ ಅಥವಾ ನೀವು ಖಾಸಗಿಯಾಗಿ ಹೋದರೆ ಈ ಸೆಟ್ಟಿಂಗ್ಗಳನ್ನು ಅತಿಕ್ರಮಿಸಲಾಗುತ್ತದೆ',
- 'achievements' => 'ಸಾಧನೆಗಳು',
- 'active' => 'ಸಕ್ರಿಯ',
- 'active-table' => 'ನನ್ನ ಸಕ್ರಿಯ ಪಟ್ಟಿ',
- 'active-torrents' => 'ಸಕ್ರಿಯ ಟೊರೆಂಟುಗಳು',
- 'active-warning' => 'ಸಕ್ರಿಯ ಎಚ್ಚರಿಕೆ',
- 'active-warnings' => 'ಸಕ್ರಿಯ ಎಚ್ಚರಿಕೆಗಳು',
- 'add-seedbox' => 'ಸೀಡ್ಬಾಕ್ಸ್ ಸೇರಿಸಿ',
- 'all-torrents' => 'ಎಲ್ಲಾ ಟೊರೆಂಟುಗಳು',
- 'article-comments' => 'ಲೇಖನ ಕಾಮೆಂಟ್ಗಳು ಮೇಡ್',
- 'avatar' => 'ಅವತಾರ್',
- 'avg-seedtime' => 'ಸರಾಸರಿ ಬೀಜ ಸಮಯ',
- 'badges' => 'ಬ್ಯಾಡ್ಜ್ಗಳು',
- 'ban' => 'ಬಳಕೆದಾರರನ್ನು ನಿಷೇಧಿಸಿ',
- 'ban-log' => 'ಬಾನ್ ಲಾಗ್',
- 'become-hidden' => 'ಮರೆಮಾಡಲಾಗಿದೆ',
- 'become-visible' => 'ಗೋಚರಿಸು',
- 'bon' => 'ಬೋನ್',
- 'bon-notification' => 'BON ಅಧಿಸೂಚನೆ ಸೆಟ್ಟಿಂಗ್ಗಳು',
- 'bon-notification-gift' => 'ಬಳಕೆದಾರ ನಿಮಗೆ ಬಾನ್ ನೀಡಿದಾಗ ಅಧಿಸೂಚನೆಯನ್ನು ಸ್ವೀಕರಿಸಿ',
- 'bon-notification-help' => 'ಬೋನ್ ವಹಿವಾಟುಗಳಿಗೆ ಸಂಬಂಧಿಸಿದಂತೆ ಅಧಿಸೂಚನೆಗಳನ್ನು ಕಳುಹಿಸುವಂತೆ ನಿಯಂತ್ರಿಸಿ. ನೀವು ಯಾವುದೇ ಗುಂಪುಗಳು BON ಸಂಬಂಧಿಸಿದ ಅಧಿಸೂಚನೆಗಳನ್ನು ಕಳುಹಿಸಲು ಅನುಮತಿಸದಿದ್ದರೆ ಅಥವಾ ನೀವು ಅಧಿಸೂಚನೆಗಳನ್ನು ನಿಷ್ಕ್ರಿಯಗೊಳಿಸಿದಲ್ಲಿ ಈ ಸೆಟ್ಟಿಂಗ್ಗಳನ್ನು ಅತಿಕ್ರಮಿಸಲಾಗುತ್ತದೆ',
- 'bookmarks' => 'ಬುಕ್ಮಾರ್ಕ್ಗಳು',
- 'bounty-given' => 'ಬೌಂಟಿ ನೀಡಲಾಗಿದೆ',
- 'bounty-received' => 'ಬೌಂಟಿ ಸ್ವೀಕರಿಸಲಾಗಿದೆ',
- 'can-chat' => 'ಚಾಟ್ ಮಾಡಬಹುದು',
- 'can-comment' => 'ಕಾಮೆಂಟ್ ಮಾಡಬಹುದು',
- 'can-download' => 'ಡೌನ್ಲೋಡ್ ಮಾಡಬಹುದು',
- 'can-invite' => 'ಆಹ್ವಾನಿಸಬಹುದು',
- 'can-request' => 'ವಿನಂತಿಸಬಹುದು',
- 'can-upload' => 'ಅಪ್ಲೋಡ್ ಮಾಡಬಹುದು',
- 'certified-banker' => 'ಸರ್ಟಿಫೈಡ್ ಬ್ಯಾಂಕರ್',
- 'certified-banker-desc' => 'ಬ್ಯಾಂಕ್ನಲ್ಲಿ 50,000 ಅಥವಾ ಹೆಚ್ಚು ಬ್ಯಾನ್ ಇದೆ',
- 'certified-downloader' => 'ಸರ್ಟಿಫೈಡ್ ಡೌನ್ಲೋಡರ್',
- 'certified-downloader-desc' => '100 ಅಥವಾ ಹೆಚ್ಚು ಟೊರೆಂಟುಗಳನ್ನು ಡೌನ್ಲೋಡ್ ಮಾಡಲಾಗಿದೆ!',
- 'certified-seeder' => 'ಸರ್ಟಿಫೈಡ್ ಸೀಡರ್',
- 'certified-seeder-desc' => '150 ಅಥವಾ ಹೆಚ್ಚು ಟೊರೆಂಟುಗಳನ್ನು ಬೀಜಿಸುವುದು!',
- 'change-email' => 'ಇಮೇಲ್ ಬದಲಿಸಿ',
- 'change-email-help' => 'ನಿಮ್ಮ ಇಮೇಲ್ ಅನ್ನು ಬದಲಾಯಿಸಿದ ನಂತರ ನಿಮ್ಮ ಖಾತೆಯನ್ನು ನೀವು ಮರು-ದೃಢೀಕರಿಸಬೇಕಾಗಿದೆ',
- 'change-password' => 'ಗುಪ್ತಪದವನ್ನು ಬದಲಿಸಿ',
- 'change-password-help' => 'ನಿಮ್ಮ ಪಾಸ್ವರ್ಡ್ ಅನ್ನು ಬದಲಾಯಿಸಿದ ನಂತರ ನೀವು ಮತ್ತೆ ಲಾಗಿನ್ ಮಾಡಬೇಕು',
- 'client-ip-address' => 'ಕ್ಲೈಂಟ್ ಐಪಿ ವಿಳಾಸ',
- 'code' => 'ಕೋಡ್',
- 'comments' => 'ಪ್ರತಿಕ್ರಿಯೆಗಳು',
- 'created-on' => 'ರಚಿಸಲಾಗಿದೆ',
- 'credited-download' => 'ಕ್ರೆಡಿಟ್ ಡೌನ್ಲೋಡ್',
- 'credited-upload' => 'ಕ್ರೆಡಿಟ್ ಅಪ್ಲೋಡ್',
- 'current-password' => 'ಪ್ರಸ್ತುತ ಗುಪ್ತಪದ',
- 'custom-title' => 'ಕಸ್ಟಮ್ ಶೀರ್ಷಿಕೆ',
- 'delete' => 'ಬಳಕೆದಾರರನ್ನು ಅಳಿಸಿ',
- 'disable-notifications' => 'ಅಧಿಸೂಚನೆಗಳನ್ನು ನಿಷ್ಕ್ರಿಯಗೊಳಿಸಿ',
- 'disclaimer' => 'ಹಕ್ಕುತ್ಯಾಗ',
- 'disclaimer-info' => 'ನಾವು ಪೂರ್ವನಿಯೋಜಿತವಾಗಿ ಹೆಚ್ಚಿನ ಟ್ರ್ಯಾಕರ್ಗಳಂತಹ ಬಳಕೆದಾರರ IP ವಿಳಾಸಗಳನ್ನು ಲಾಗ್ ಮಾಡಬೇಡಿ. ನಿಮ್ಮ ರೆಕಾರ್ಡ್ಗಳನ್ನು ಅಳಿಸದಿದ್ದರೆ ಕೆಳಗೆ ಪಟ್ಟಿ ಮಾಡಲಾದ ನಿಮ್ಮ ಐಪಿಗಳು ಈಗ ನಮ್ಮ ಡೇಟಾಬೇಸ್ನಲ್ಲಿ ಶೇಖರಿಸಲ್ಪಟ್ಟಿವೆ ಎಂದು ನಿಮಗೆ ತಿಳಿದಿರುವ ನಿಮ್ಮ ಸೀಸ್ಬಾಕ್ಸ್ ಐಪಿ ಅನ್ನು ಕೆಳಗೆ ಸೇರಿಸುವ ಮೂಲಕ ನಿರೀಕ್ಷಿಸಲಾಗಿದೆ.',
- 'disclaimer-info-bordered' => 'ಸೇರಿಸಲಾದ ಸೀಡ್ಬಾಕ್ಸ್ ಐಪಿಗಳು ನಂತರ ಕೆಳಗೆ ಪಟ್ಟಿ ಮಾಡಲಾದ ಐಪಿಗಳಿಂದ ಬೀಜದ ಟೊರೆಂಟುಗಳಲ್ಲಿ ಹೆಚ್ಚಿನ ವೇಗದ ಟೊರೆಂಟ್ ಟ್ಯಾಗ್ ಅನ್ನು ಪ್ರಚೋದಿಸುತ್ತದೆ',
- 'download-bon' => 'BON ಸ್ಟೋರ್ನಿಂದ ತೆಗೆದುಹಾಕಲಾಗಿದೆ ಡೌನ್ಲೋಡ್',
- 'download-recorded' => 'ರೆಕಾರ್ಡ್ ಮಾಡಿದ ಡೌನ್ಲೋಡ್',
- 'download-true' => 'ನಿಜವಾದ ಡೌನ್ಲೋಡ್',
- 'downloads' => 'ಡೌನ್ಲೋಡ್ಗಳು',
- 'edit' => 'ಬಳಕೆದಾರ ಸಂಪಾದಿಸಿ',
- 'edit-profile' => 'ಪ್ರೊಫೈಲ್ ಬದಲಿಸು',
- 'enable-notifications' => 'ಅಧಿಸೂಚನೆಗಳನ್ನು ಸಕ್ರಿಯಗೊಳಿಸಿ',
- 'expired' => 'ಅವಧಿ ಮುಗಿದಿದೆ',
- 'expires-on' => 'ರಂದು ಮುಕ್ತಾಯಗೊಳ್ಳುತ್ತದೆ',
- 'extra' => 'ಎಕ್ಸ್ಟ್ರಾ',
- 'filled-request' => 'ತುಂಬಿದ ಸದಸ್ಯರ ವಿನಂತಿಗಳು',
- 'follow' => 'ಅನುಸರಿಸಿ',
- 'follower-privacy' => 'ಅನುಯಾಯಿಗಳ ಸೆಟ್ಟಿಂಗ್ಗಳು',
- 'follower-privacy-list' => 'ನಿಮ್ಮ ಅನುಸರಿಸುವವರ ಪಟ್ಟಿಯನ್ನು ವೀಕ್ಷಿಸಲು ಬಳಕೆದಾರರನ್ನು ಅನುಮತಿಸಿ',
- 'follower-help' => 'ನಿಮ್ಮ ಪ್ರೊಫೈಲ್ಗೆ ಪ್ರವೇಶಿಸಲು ಅನುಮತಿಸಲಾದ ಗುಂಪುಗಳೊಂದಿಗೆ ನಿರ್ದಿಷ್ಟ ಅನುಯಾಯಿ ಸಂಬಂಧಿತ ಮಾಹಿತಿಯ ಹಂಚಿಕೆಯನ್ನು ನಿಯಂತ್ರಿಸಿ. ನಿಮ್ಮ ಅನುಸರಿಸುವವರನ್ನು ಪ್ರವೇಶಿಸಲು ನೀವು ಯಾವುದೇ ಗುಂಪುಗಳನ್ನು ಅನುಮತಿಸದಿದ್ದರೆ ಅಥವಾ ನೀವು ಖಾಸಗಿಯಾಗಿ ಹೋದರೆ ಈ ಸೆಟ್ಟಿಂಗ್ಗಳನ್ನು ಅತಿಕ್ರಮಿಸಲಾಗುತ್ತದೆ',
- 'followers' => 'ಅನುಸರಿಸುವವರು',
- 'following-notification' => 'ಅನುಸರಿಸಿದ ಬಳಕೆದಾರ ಅಧಿಸೂಚನೆ ಸೆಟ್ಟಿಂಗ್ಗಳು',
- 'following-notification-upload' => 'ನಂತರದ ಬಳಕೆದಾರರು ಟೊರೆಂಟ್ ಅನ್ನು ಅಪ್ಲೋಡ್ ಮಾಡಿದಾಗ ಅಧಿಸೂಚನೆಯನ್ನು ಸ್ವೀಕರಿಸಿ',
- 'following-notification-help' => 'ನಂತರದ ಬಳಕೆದಾರ ಸೈಟ್ ಕ್ರಮಗಳಿಗೆ ಸಂಬಂಧಿಸಿದಂತೆ ಅಧಿಸೂಚನೆಗಳನ್ನು ಕಳುಹಿಸಲಾಗುತ್ತದೆ ಎಂಬುದನ್ನು ನಿಯಂತ್ರಿಸಿ. ನಂತರದ ಬಳಕೆದಾರರಿಗೆ ಸಂಬಂಧಿಸಿದಂತೆ ಅಧಿಸೂಚನೆಗಳನ್ನು ಕಳುಹಿಸಲು ನೀವು ಯಾವುದೇ ಗುಂಪುಗಳನ್ನು ಅನುಮತಿಸದಿದ್ದರೆ ಅಥವಾ ನೀವು ಅಧಿಸೂಚನೆಗಳನ್ನು ನಿಷ್ಕ್ರಿಯಗೊಳಿಸಿದಲ್ಲಿ ಈ ಸೆಟ್ಟಿಂಗ್ಗಳನ್ನು ಅತಿಕ್ರಮಿಸಲಾಗುತ್ತದೆ',
- 'formats-are-supported' => ': ಸ್ವರೂಪಗಳು ಬೆಂಬಲಿತವಾಗಿದೆ',
- 'forum-notification' => 'ಫೋರಮ್ ಅಧಿಸೂಚನೆ ಸೆಟ್ಟಿಂಗ್ಗಳು',
- 'forum-notification-topic' => 'ನೀವು ಪ್ರಾರಂಭಿಸಿದ ವಿಷಯವು ಹೊಸ ಪೋಸ್ಟ್ ಅನ್ನು ಪಡೆದಾಗ ಅಧಿಸೂಚನೆಯನ್ನು ಸ್ವೀಕರಿಸಿ',
- 'forum-notification-help' => 'ವೇದಿಕೆ ಚಟುವಟಿಕೆಗಳಿಗೆ ಸಂಬಂಧಿಸಿದಂತೆ ಅಧಿಸೂಚನೆಗಳನ್ನು ಕಳುಹಿಸಲಾಗುತ್ತದೆ ಎಂಬುದನ್ನು ನಿಯಂತ್ರಿಸಿ. ಫೋರಮ್ ಚಟುವಟಿಕೆಗಳಿಗೆ ಸಂಬಂಧಿಸಿದಂತೆ ಅಧಿಸೂಚನೆಗಳನ್ನು ಕಳುಹಿಸಲು ನೀವು ಯಾವುದೇ ಗುಂಪುಗಳನ್ನು ಅನುಮತಿಸದಿದ್ದರೆ ಅಥವಾ ಅಧಿಸೂಚನೆಗಳನ್ನು ನಿಷ್ಕ್ರಿಯಗೊಳಿಸಿದಲ್ಲಿ ಈ ಸೆಟ್ಟಿಂಗ್ಗಳನ್ನು ಅತಿಕ್ರಮಿಸಲಾಗುತ್ತದೆ',
- 'forum-privacy' => 'ಫೋರಮ್ ಸೆಟ್ಟಿಂಗ್ಗಳು',
- 'forum-privacy-post' => 'ನೀವು ಪೋಸ್ಟ್ ಮಾಡಿದ ಫೋರಮ್ ಪೋಸ್ಟ್ಗಳ ಪಟ್ಟಿಯನ್ನು ವೀಕ್ಷಿಸಲು ಬಳಕೆದಾರರನ್ನು ಅನುಮತಿಸಿ',
- 'forum-privacy-topic' => 'ನೀವು ಪ್ರಾರಂಭಿಸಿದ ಫೋರಮ್ ವಿಷಯಗಳ ಪಟ್ಟಿಯನ್ನು ವೀಕ್ಷಿಸಲು ಬಳಕೆದಾರರನ್ನು ಅನುಮತಿಸಿ',
- 'forum-help' => 'ನಿಮ್ಮ ಪ್ರೊಫೈಲ್ಗೆ ಪ್ರವೇಶಿಸಲು ಅನುಮತಿಸಲಾದ ಗುಂಪುಗಳೊಂದಿಗೆ ನಿರ್ದಿಷ್ಟ ಫೋರಮ್ ಸಂಬಂಧಿತ ಅಂಕಿಅಂಶಗಳು ಮತ್ತು ಮಾಹಿತಿಯನ್ನು ಹಂಚಿಕೊಳ್ಳುವುದನ್ನು ನಿಯಂತ್ರಿಸಿ. ನಿಮ್ಮ ಫೋರಮ್ ಸಂಬಂಧಿತ ಅಂಕಿಅಂಶಗಳು ಮತ್ತು ಮಾಹಿತಿಯನ್ನು ಪ್ರವೇಶಿಸಲು ನೀವು ಯಾವುದೇ ಗುಂಪುಗಳನ್ನು ಅನುಮತಿಸದಿದ್ದರೆ ಅಥವಾ ನೀವು ಖಾಸಗಿಯಾಗಿ ಹೋದರೆ ಈ ಸೆಟ್ಟಿಂಗ್ಗಳನ್ನು ಅತಿಕ್ರಮಿಸಲಾಗುತ್ತದೆ',
- 'forum-signature' => 'ವೇದಿಕೆ ಸಹಿ',
- 'forums' => 'ವೇದಿಕೆಗಳು',
- 'general' => 'ಜನರಲ್',
- 'general-settings' => 'ಸಾಮಾನ್ಯ ಸೆಟ್ಟಿಂಗ್ಗಳು',
- 'gift-given' => 'ಗಿಫ್ಟ್ ನೀಡಲಾಗಿದೆ',
- 'gift-received' => 'ಗಿಫ್ಟ್ ಸ್ವೀಕರಿಸಲಾಗಿದೆ',
- 'go-public' => 'ಸಾರ್ವಜನಿಕವಾಗಿ ಹೋಗಿ',
- 'go-private' => 'ಖಾಸಗಿಯಾಗಿ ಹೋಗಿ',
- 'history' => 'ಇತಿಹಾಸ',
- 'history-table' => 'ನನ್ನ ಇತಿಹಾಸ ಟೇಬಲ್',
- 'hit-n-runs' => 'ಹಿಟ್ ಅಂಡ್ ರನ್ಗಳು',
- 'hit-n-runs-count' => 'ಹಿಟ್ ಅಂಡ್ ರನ್ ಕೌಂಟ್ (ಸಾರ್ವಕಾಲಿಕ)',
- 'hit-n-runs-history' => 'ಟೊರೆಂಟ್ ಹಿಟ್ ಅಂಡ್ ರನ್ಸ್ ಹಿಸ್ಟರಿ',
- 'image' => 'ಚಿತ್ರ',
- 'important' => 'ಪ್ರಮುಖ',
- 'important-info' => 'ಪ್ರಮುಖ ಮಾಹಿತಿ',
- 'information' => 'ಮಾಹಿತಿ',
- 'invite-friend' => 'ನಿಮ್ಮ ಸ್ನೇಹಿತರನ್ನು ಆಮಂತ್ರಿಸಿ (ಇಮೇಲ್ + ಸಂದೇಶ ಅಗತ್ಯವಿದೆ)',
- 'invite-tree' => 'ಮರವನ್ನು ಆಮಂತ್ರಿಸಿ',
- 'invites' => 'ಆಹ್ವಾನಿಸುತ್ತದೆ',
- 'invites-banned' => 'ದೋಷ: ನಿಮ್ಮ ಆಹ್ವಾನ ಹಕ್ಕುಗಳನ್ನು ನಿಷ್ಕ್ರಿಯಗೊಳಿಸಲಾಗಿದೆ',
- 'invites-banned-desc' => 'ನೀವು ದೋಷದಲ್ಲಿದ್ದರೆ, ಸಿಬ್ಬಂದಿ ಸಂಪರ್ಕಿಸಿ!',
- 'invites-count' => 'ನೀವು ಹ್ಯಾವ್: ಟೋಕನ್ಗಳನ್ನು ಆಹ್ವಾನಿಸಿ ಎಣಿಸಿ',
- 'invites-disabled' => 'ಗಮನ: ನೋಂದಣಿ ತೆರೆಯಲು ಆಹ್ವಾನಗಳನ್ನು ನಿಷ್ಕ್ರಿಯಗೊಳಿಸಲಾಗಿದೆ!',
- 'invites-disabled-desc' => 'ದಯವಿಟ್ಟು ಶೀಘ್ರದಲ್ಲೇ ಪರಿಶೀಲಿಸಿ!',
- 'invites-rules' => '- ನಿಮಗೆ ತಿಳಿದಿರುವ ಮತ್ತು ನಂಬುವ ಜನರನ್ನು ಮಾತ್ರ ಆಹ್ವಾನಿಸಿ.
- ನೀವು ಆಹ್ವಾನಿಸುವವರಿಗೆ ವೈಯಕ್ತಿಕವಾಗಿ ನೀವು ಜವಾಬ್ದಾರರಾಗಿರುತ್ತೀರಿ.
- ನಿಮ್ಮನ್ನು ಆಹ್ವಾನಿಸಬೇಡಿ, ನಾವು ಆಹ್ವಾನಿಸಿದ ಪ್ರತಿ ಬಳಕೆದಾರರನ್ನು ಪರಿಶೀಲಿಸುತ್ತೇವೆ.
- ಆಹ್ವಾನಗಳನ್ನು ವ್ಯಾಪಾರ ಮಾಡಿ ಅಥವಾ ಮಾರಾಟ ಮಾಡಬೇಡಿ.
- ನೀವು ಆಹ್ವಾನಿಸಿದ ವ್ಯಕ್ತಿಯು ವಂಚನೆ, ವ್ಯಾಪಾರ ಖಾತೆ ಅಥವಾ ಮಾರಾಟ / ವ್ಯಾಪಾರ ಆಮಂತ್ರಣಗಳನ್ನು ಹಿಡಿದಿದ್ದರೆ, ನಿಮಗೆ ಎಚ್ಚರಿಕೆ ನೀಡಲಾಗುತ್ತದೆ.
',
- 'invites-send' => 'ಆಹ್ವಾನಿಸಿ ಕಳುಹಿಸಿ',
- 'last-login' => 'ಕೊನೆಯ ಲಾಗಿನ್',
- 'locked' => 'ಲಾಕ್ ಮಾಡಲಾಗಿದೆ',
- 'locked-achievements' => 'ಲಾಕ್ ಸಾಧನೆಗಳು',
- 'member-since' => 'ಸದಸ್ಯರು',
- 'members-desc' => 'ಇದರಲ್ಲಿ ನೋಂದಾಯಿಸಲಾದ ಬಳಕೆದಾರರ ಪಟ್ಟಿ: ಎಲ್ಲಾ ಗುಂಪುಗಳೊಂದಿಗೆ ಶೀರ್ಷಿಕೆ. ಈಗ ಒಬ್ಬ ಬಳಕೆದಾರನನ್ನು ಹುಡುಕಿ.',
- 'mention-notification' => '@ ಸೂಚನೆ ಅಧಿಸೂಚನೆಗಳನ್ನು ಗಮನಿಸಿ',
+ 'about' => 'ಬಗ್ಗೆ',
+ 'about-me' => 'ನನ್ನ ಬಗ್ಗೆ',
+ 'accepted-at' => 'ನಲ್ಲಿ ಅಂಗೀಕರಿಸಲಾಗಿದೆ',
+ 'accepted-by' => 'ಅಕ್ಸೆಪ್ಟೆಡ್',
+ 'account-notification' => 'ಖಾತೆ ಅಧಿಸೂಚನೆ ಸೆಟ್ಟಿಂಗ್ಗಳು',
+ 'account-notification-follow' => 'ಬಳಕೆದಾರರು ನಿಮ್ಮ ಖಾತೆಯನ್ನು ಅನುಸರಿಸುವಾಗ ಅಧಿಸೂಚನೆಯನ್ನು ಸ್ವೀಕರಿಸಿ',
+ 'account-notification-unfollow' => 'ಬಳಕೆದಾರರು ನಿಮ್ಮ ಖಾತೆಯನ್ನು ಅನುಸರಿಸಿದಾಗ ಅಧಿಸೂಚನೆಯನ್ನು ಸ್ವೀಕರಿಸಿ',
+ 'account-notification-help' => 'ಅಧಿಸೂಚನೆಗಳನ್ನು ನಿಮ್ಮ ಖಾತೆಗೆ ಕಳುಹಿಸುವಂತೆ ನಿಯಂತ್ರಿಸಿ. ನಿಮ್ಮ ಖಾತೆಗೆ ಸಂಬಂಧಿಸಿದಂತೆ ಅಧಿಸೂಚನೆಗಳನ್ನು ಕಳುಹಿಸಲು ನೀವು ಯಾವುದೇ ಗುಂಪುಗಳನ್ನು ಅನುಮತಿಸದಿದ್ದರೆ ಅಥವಾ ಅಧಿಸೂಚನೆಗಳನ್ನು ನಿಷ್ಕ್ರಿಯಗೊಳಿಸಿದಲ್ಲಿ ಈ ಸೆಟ್ಟಿಂಗ್ಗಳನ್ನು ಅತಿಕ್ರಮಿಸಲಾಗುತ್ತದೆ',
+ 'account-settings' => 'ಖಾತೆ ಸೆಟ್ಟಿಂಗ್ಗಳು',
+ 'achievement-privacy' => 'ಸಾಧನೆ ಸೆಟ್ಟಿಂಗ್ಗಳು',
+ 'achievement-privacy-list' => 'ನಿಮ್ಮ ಸಾಧನೆಗಳ ಪಟ್ಟಿಯನ್ನು ವೀಕ್ಷಿಸಲು ಬಳಕೆದಾರರನ್ನು ಅನುಮತಿಸಿ',
+ 'achievement-help' => 'ನಿಮ್ಮ ಪ್ರೊಫೈಲ್ಗೆ ಪ್ರವೇಶಿಸಲು ಅನುಮತಿಸಲಾದ ಗುಂಪುಗಳೊಂದಿಗೆ ನಿರ್ದಿಷ್ಟ ಸಾಧನೆ ಸಂಬಂಧಿತ ಮಾಹಿತಿಯ ಹಂಚಿಕೆಯನ್ನು ನಿಯಂತ್ರಿಸಿ. ನಿಮ್ಮ ಸಾಧನೆಗಳನ್ನು ಪ್ರವೇಶಿಸಲು ನೀವು ಯಾವುದೇ ಗುಂಪುಗಳನ್ನು ಅನುಮತಿಸದಿದ್ದರೆ ಅಥವಾ ನೀವು ಖಾಸಗಿಯಾಗಿ ಹೋದರೆ ಈ ಸೆಟ್ಟಿಂಗ್ಗಳನ್ನು ಅತಿಕ್ರಮಿಸಲಾಗುತ್ತದೆ',
+ 'achievements' => 'ಸಾಧನೆಗಳು',
+ 'active' => 'ಸಕ್ರಿಯ',
+ 'active-table' => 'ನನ್ನ ಸಕ್ರಿಯ ಪಟ್ಟಿ',
+ 'active-torrents' => 'ಸಕ್ರಿಯ ಟೊರೆಂಟುಗಳು',
+ 'active-warning' => 'ಸಕ್ರಿಯ ಎಚ್ಚರಿಕೆ',
+ 'active-warnings' => 'ಸಕ್ರಿಯ ಎಚ್ಚರಿಕೆಗಳು',
+ 'add-seedbox' => 'ಸೀಡ್ಬಾಕ್ಸ್ ಸೇರಿಸಿ',
+ 'all-torrents' => 'ಎಲ್ಲಾ ಟೊರೆಂಟುಗಳು',
+ 'article-comments' => 'ಲೇಖನ ಕಾಮೆಂಟ್ಗಳು ಮೇಡ್',
+ 'avatar' => 'ಅವತಾರ್',
+ 'avg-seedtime' => 'ಸರಾಸರಿ ಬೀಜ ಸಮಯ',
+ 'badges' => 'ಬ್ಯಾಡ್ಜ್ಗಳು',
+ 'ban' => 'ಬಳಕೆದಾರರನ್ನು ನಿಷೇಧಿಸಿ',
+ 'ban-log' => 'ಬಾನ್ ಲಾಗ್',
+ 'become-hidden' => 'ಮರೆಮಾಡಲಾಗಿದೆ',
+ 'become-visible' => 'ಗೋಚರಿಸು',
+ 'bon' => 'ಬೋನ್',
+ 'bon-notification' => 'BON ಅಧಿಸೂಚನೆ ಸೆಟ್ಟಿಂಗ್ಗಳು',
+ 'bon-notification-gift' => 'ಬಳಕೆದಾರ ನಿಮಗೆ ಬಾನ್ ನೀಡಿದಾಗ ಅಧಿಸೂಚನೆಯನ್ನು ಸ್ವೀಕರಿಸಿ',
+ 'bon-notification-help' => 'ಬೋನ್ ವಹಿವಾಟುಗಳಿಗೆ ಸಂಬಂಧಿಸಿದಂತೆ ಅಧಿಸೂಚನೆಗಳನ್ನು ಕಳುಹಿಸುವಂತೆ ನಿಯಂತ್ರಿಸಿ. ನೀವು ಯಾವುದೇ ಗುಂಪುಗಳು BON ಸಂಬಂಧಿಸಿದ ಅಧಿಸೂಚನೆಗಳನ್ನು ಕಳುಹಿಸಲು ಅನುಮತಿಸದಿದ್ದರೆ ಅಥವಾ ನೀವು ಅಧಿಸೂಚನೆಗಳನ್ನು ನಿಷ್ಕ್ರಿಯಗೊಳಿಸಿದಲ್ಲಿ ಈ ಸೆಟ್ಟಿಂಗ್ಗಳನ್ನು ಅತಿಕ್ರಮಿಸಲಾಗುತ್ತದೆ',
+ 'bookmarks' => 'ಬುಕ್ಮಾರ್ಕ್ಗಳು',
+ 'bounty-given' => 'ಬೌಂಟಿ ನೀಡಲಾಗಿದೆ',
+ 'bounty-received' => 'ಬೌಂಟಿ ಸ್ವೀಕರಿಸಲಾಗಿದೆ',
+ 'can-chat' => 'ಚಾಟ್ ಮಾಡಬಹುದು',
+ 'can-comment' => 'ಕಾಮೆಂಟ್ ಮಾಡಬಹುದು',
+ 'can-download' => 'ಡೌನ್ಲೋಡ್ ಮಾಡಬಹುದು',
+ 'can-invite' => 'ಆಹ್ವಾನಿಸಬಹುದು',
+ 'can-request' => 'ವಿನಂತಿಸಬಹುದು',
+ 'can-upload' => 'ಅಪ್ಲೋಡ್ ಮಾಡಬಹುದು',
+ 'certified-banker' => 'ಸರ್ಟಿಫೈಡ್ ಬ್ಯಾಂಕರ್',
+ 'certified-banker-desc' => 'ಬ್ಯಾಂಕ್ನಲ್ಲಿ 50,000 ಅಥವಾ ಹೆಚ್ಚು ಬ್ಯಾನ್ ಇದೆ',
+ 'certified-downloader' => 'ಸರ್ಟಿಫೈಡ್ ಡೌನ್ಲೋಡರ್',
+ 'certified-downloader-desc' => '100 ಅಥವಾ ಹೆಚ್ಚು ಟೊರೆಂಟುಗಳನ್ನು ಡೌನ್ಲೋಡ್ ಮಾಡಲಾಗಿದೆ!',
+ 'certified-seeder' => 'ಸರ್ಟಿಫೈಡ್ ಸೀಡರ್',
+ 'certified-seeder-desc' => '150 ಅಥವಾ ಹೆಚ್ಚು ಟೊರೆಂಟುಗಳನ್ನು ಬೀಜಿಸುವುದು!',
+ 'change-email' => 'ಇಮೇಲ್ ಬದಲಿಸಿ',
+ 'change-email-help' => 'ನಿಮ್ಮ ಇಮೇಲ್ ಅನ್ನು ಬದಲಾಯಿಸಿದ ನಂತರ ನಿಮ್ಮ ಖಾತೆಯನ್ನು ನೀವು ಮರು-ದೃಢೀಕರಿಸಬೇಕಾಗಿದೆ',
+ 'change-password' => 'ಗುಪ್ತಪದವನ್ನು ಬದಲಿಸಿ',
+ 'change-password-help' => 'ನಿಮ್ಮ ಪಾಸ್ವರ್ಡ್ ಅನ್ನು ಬದಲಾಯಿಸಿದ ನಂತರ ನೀವು ಮತ್ತೆ ಲಾಗಿನ್ ಮಾಡಬೇಕು',
+ 'client-ip-address' => 'ಕ್ಲೈಂಟ್ ಐಪಿ ವಿಳಾಸ',
+ 'code' => 'ಕೋಡ್',
+ 'comments' => 'ಪ್ರತಿಕ್ರಿಯೆಗಳು',
+ 'created-on' => 'ರಚಿಸಲಾಗಿದೆ',
+ 'credited-download' => 'ಕ್ರೆಡಿಟ್ ಡೌನ್ಲೋಡ್',
+ 'credited-upload' => 'ಕ್ರೆಡಿಟ್ ಅಪ್ಲೋಡ್',
+ 'current-password' => 'ಪ್ರಸ್ತುತ ಗುಪ್ತಪದ',
+ 'custom-title' => 'ಕಸ್ಟಮ್ ಶೀರ್ಷಿಕೆ',
+ 'delete' => 'ಬಳಕೆದಾರರನ್ನು ಅಳಿಸಿ',
+ 'disable-notifications' => 'ಅಧಿಸೂಚನೆಗಳನ್ನು ನಿಷ್ಕ್ರಿಯಗೊಳಿಸಿ',
+ 'disclaimer' => 'ಹಕ್ಕುತ್ಯಾಗ',
+ 'disclaimer-info' => 'ನಾವು ಪೂರ್ವನಿಯೋಜಿತವಾಗಿ ಹೆಚ್ಚಿನ ಟ್ರ್ಯಾಕರ್ಗಳಂತಹ ಬಳಕೆದಾರರ IP ವಿಳಾಸಗಳನ್ನು ಲಾಗ್ ಮಾಡಬೇಡಿ. ನಿಮ್ಮ ರೆಕಾರ್ಡ್ಗಳನ್ನು ಅಳಿಸದಿದ್ದರೆ ಕೆಳಗೆ ಪಟ್ಟಿ ಮಾಡಲಾದ ನಿಮ್ಮ ಐಪಿಗಳು ಈಗ ನಮ್ಮ ಡೇಟಾಬೇಸ್ನಲ್ಲಿ ಶೇಖರಿಸಲ್ಪಟ್ಟಿವೆ ಎಂದು ನಿಮಗೆ ತಿಳಿದಿರುವ ನಿಮ್ಮ ಸೀಸ್ಬಾಕ್ಸ್ ಐಪಿ ಅನ್ನು ಕೆಳಗೆ ಸೇರಿಸುವ ಮೂಲಕ ನಿರೀಕ್ಷಿಸಲಾಗಿದೆ.',
+ 'disclaimer-info-bordered' => 'ಸೇರಿಸಲಾದ ಸೀಡ್ಬಾಕ್ಸ್ ಐಪಿಗಳು ನಂತರ ಕೆಳಗೆ ಪಟ್ಟಿ ಮಾಡಲಾದ ಐಪಿಗಳಿಂದ ಬೀಜದ ಟೊರೆಂಟುಗಳಲ್ಲಿ ಹೆಚ್ಚಿನ ವೇಗದ ಟೊರೆಂಟ್ ಟ್ಯಾಗ್ ಅನ್ನು ಪ್ರಚೋದಿಸುತ್ತದೆ',
+ 'download-bon' => 'BON ಸ್ಟೋರ್ನಿಂದ ತೆಗೆದುಹಾಕಲಾಗಿದೆ ಡೌನ್ಲೋಡ್',
+ 'download-recorded' => 'ರೆಕಾರ್ಡ್ ಮಾಡಿದ ಡೌನ್ಲೋಡ್',
+ 'download-true' => 'ನಿಜವಾದ ಡೌನ್ಲೋಡ್',
+ 'downloads' => 'ಡೌನ್ಲೋಡ್ಗಳು',
+ 'edit' => 'ಬಳಕೆದಾರ ಸಂಪಾದಿಸಿ',
+ 'edit-profile' => 'ಪ್ರೊಫೈಲ್ ಬದಲಿಸು',
+ 'enable-notifications' => 'ಅಧಿಸೂಚನೆಗಳನ್ನು ಸಕ್ರಿಯಗೊಳಿಸಿ',
+ 'expired' => 'ಅವಧಿ ಮುಗಿದಿದೆ',
+ 'expires-on' => 'ರಂದು ಮುಕ್ತಾಯಗೊಳ್ಳುತ್ತದೆ',
+ 'extra' => 'ಎಕ್ಸ್ಟ್ರಾ',
+ 'filled-request' => 'ತುಂಬಿದ ಸದಸ್ಯರ ವಿನಂತಿಗಳು',
+ 'follow' => 'ಅನುಸರಿಸಿ',
+ 'follower-privacy' => 'ಅನುಯಾಯಿಗಳ ಸೆಟ್ಟಿಂಗ್ಗಳು',
+ 'follower-privacy-list' => 'ನಿಮ್ಮ ಅನುಸರಿಸುವವರ ಪಟ್ಟಿಯನ್ನು ವೀಕ್ಷಿಸಲು ಬಳಕೆದಾರರನ್ನು ಅನುಮತಿಸಿ',
+ 'follower-help' => 'ನಿಮ್ಮ ಪ್ರೊಫೈಲ್ಗೆ ಪ್ರವೇಶಿಸಲು ಅನುಮತಿಸಲಾದ ಗುಂಪುಗಳೊಂದಿಗೆ ನಿರ್ದಿಷ್ಟ ಅನುಯಾಯಿ ಸಂಬಂಧಿತ ಮಾಹಿತಿಯ ಹಂಚಿಕೆಯನ್ನು ನಿಯಂತ್ರಿಸಿ. ನಿಮ್ಮ ಅನುಸರಿಸುವವರನ್ನು ಪ್ರವೇಶಿಸಲು ನೀವು ಯಾವುದೇ ಗುಂಪುಗಳನ್ನು ಅನುಮತಿಸದಿದ್ದರೆ ಅಥವಾ ನೀವು ಖಾಸಗಿಯಾಗಿ ಹೋದರೆ ಈ ಸೆಟ್ಟಿಂಗ್ಗಳನ್ನು ಅತಿಕ್ರಮಿಸಲಾಗುತ್ತದೆ',
+ 'followers' => 'ಅನುಸರಿಸುವವರು',
+ 'following-notification' => 'ಅನುಸರಿಸಿದ ಬಳಕೆದಾರ ಅಧಿಸೂಚನೆ ಸೆಟ್ಟಿಂಗ್ಗಳು',
+ 'following-notification-upload' => 'ನಂತರದ ಬಳಕೆದಾರರು ಟೊರೆಂಟ್ ಅನ್ನು ಅಪ್ಲೋಡ್ ಮಾಡಿದಾಗ ಅಧಿಸೂಚನೆಯನ್ನು ಸ್ವೀಕರಿಸಿ',
+ 'following-notification-help' => 'ನಂತರದ ಬಳಕೆದಾರ ಸೈಟ್ ಕ್ರಮಗಳಿಗೆ ಸಂಬಂಧಿಸಿದಂತೆ ಅಧಿಸೂಚನೆಗಳನ್ನು ಕಳುಹಿಸಲಾಗುತ್ತದೆ ಎಂಬುದನ್ನು ನಿಯಂತ್ರಿಸಿ. ನಂತರದ ಬಳಕೆದಾರರಿಗೆ ಸಂಬಂಧಿಸಿದಂತೆ ಅಧಿಸೂಚನೆಗಳನ್ನು ಕಳುಹಿಸಲು ನೀವು ಯಾವುದೇ ಗುಂಪುಗಳನ್ನು ಅನುಮತಿಸದಿದ್ದರೆ ಅಥವಾ ನೀವು ಅಧಿಸೂಚನೆಗಳನ್ನು ನಿಷ್ಕ್ರಿಯಗೊಳಿಸಿದಲ್ಲಿ ಈ ಸೆಟ್ಟಿಂಗ್ಗಳನ್ನು ಅತಿಕ್ರಮಿಸಲಾಗುತ್ತದೆ',
+ 'formats-are-supported' => ': ಸ್ವರೂಪಗಳು ಬೆಂಬಲಿತವಾಗಿದೆ',
+ 'forum-notification' => 'ಫೋರಮ್ ಅಧಿಸೂಚನೆ ಸೆಟ್ಟಿಂಗ್ಗಳು',
+ 'forum-notification-topic' => 'ನೀವು ಪ್ರಾರಂಭಿಸಿದ ವಿಷಯವು ಹೊಸ ಪೋಸ್ಟ್ ಅನ್ನು ಪಡೆದಾಗ ಅಧಿಸೂಚನೆಯನ್ನು ಸ್ವೀಕರಿಸಿ',
+ 'forum-notification-help' => 'ವೇದಿಕೆ ಚಟುವಟಿಕೆಗಳಿಗೆ ಸಂಬಂಧಿಸಿದಂತೆ ಅಧಿಸೂಚನೆಗಳನ್ನು ಕಳುಹಿಸಲಾಗುತ್ತದೆ ಎಂಬುದನ್ನು ನಿಯಂತ್ರಿಸಿ. ಫೋರಮ್ ಚಟುವಟಿಕೆಗಳಿಗೆ ಸಂಬಂಧಿಸಿದಂತೆ ಅಧಿಸೂಚನೆಗಳನ್ನು ಕಳುಹಿಸಲು ನೀವು ಯಾವುದೇ ಗುಂಪುಗಳನ್ನು ಅನುಮತಿಸದಿದ್ದರೆ ಅಥವಾ ಅಧಿಸೂಚನೆಗಳನ್ನು ನಿಷ್ಕ್ರಿಯಗೊಳಿಸಿದಲ್ಲಿ ಈ ಸೆಟ್ಟಿಂಗ್ಗಳನ್ನು ಅತಿಕ್ರಮಿಸಲಾಗುತ್ತದೆ',
+ 'forum-privacy' => 'ಫೋರಮ್ ಸೆಟ್ಟಿಂಗ್ಗಳು',
+ 'forum-privacy-post' => 'ನೀವು ಪೋಸ್ಟ್ ಮಾಡಿದ ಫೋರಮ್ ಪೋಸ್ಟ್ಗಳ ಪಟ್ಟಿಯನ್ನು ವೀಕ್ಷಿಸಲು ಬಳಕೆದಾರರನ್ನು ಅನುಮತಿಸಿ',
+ 'forum-privacy-topic' => 'ನೀವು ಪ್ರಾರಂಭಿಸಿದ ಫೋರಮ್ ವಿಷಯಗಳ ಪಟ್ಟಿಯನ್ನು ವೀಕ್ಷಿಸಲು ಬಳಕೆದಾರರನ್ನು ಅನುಮತಿಸಿ',
+ 'forum-help' => 'ನಿಮ್ಮ ಪ್ರೊಫೈಲ್ಗೆ ಪ್ರವೇಶಿಸಲು ಅನುಮತಿಸಲಾದ ಗುಂಪುಗಳೊಂದಿಗೆ ನಿರ್ದಿಷ್ಟ ಫೋರಮ್ ಸಂಬಂಧಿತ ಅಂಕಿಅಂಶಗಳು ಮತ್ತು ಮಾಹಿತಿಯನ್ನು ಹಂಚಿಕೊಳ್ಳುವುದನ್ನು ನಿಯಂತ್ರಿಸಿ. ನಿಮ್ಮ ಫೋರಮ್ ಸಂಬಂಧಿತ ಅಂಕಿಅಂಶಗಳು ಮತ್ತು ಮಾಹಿತಿಯನ್ನು ಪ್ರವೇಶಿಸಲು ನೀವು ಯಾವುದೇ ಗುಂಪುಗಳನ್ನು ಅನುಮತಿಸದಿದ್ದರೆ ಅಥವಾ ನೀವು ಖಾಸಗಿಯಾಗಿ ಹೋದರೆ ಈ ಸೆಟ್ಟಿಂಗ್ಗಳನ್ನು ಅತಿಕ್ರಮಿಸಲಾಗುತ್ತದೆ',
+ 'forum-signature' => 'ವೇದಿಕೆ ಸಹಿ',
+ 'forums' => 'ವೇದಿಕೆಗಳು',
+ 'general' => 'ಜನರಲ್',
+ 'general-settings' => 'ಸಾಮಾನ್ಯ ಸೆಟ್ಟಿಂಗ್ಗಳು',
+ 'gift-given' => 'ಗಿಫ್ಟ್ ನೀಡಲಾಗಿದೆ',
+ 'gift-received' => 'ಗಿಫ್ಟ್ ಸ್ವೀಕರಿಸಲಾಗಿದೆ',
+ 'go-public' => 'ಸಾರ್ವಜನಿಕವಾಗಿ ಹೋಗಿ',
+ 'go-private' => 'ಖಾಸಗಿಯಾಗಿ ಹೋಗಿ',
+ 'history' => 'ಇತಿಹಾಸ',
+ 'history-table' => 'ನನ್ನ ಇತಿಹಾಸ ಟೇಬಲ್',
+ 'hit-n-runs' => 'ಹಿಟ್ ಅಂಡ್ ರನ್ಗಳು',
+ 'hit-n-runs-count' => 'ಹಿಟ್ ಅಂಡ್ ರನ್ ಕೌಂಟ್ (ಸಾರ್ವಕಾಲಿಕ)',
+ 'hit-n-runs-history' => 'ಟೊರೆಂಟ್ ಹಿಟ್ ಅಂಡ್ ರನ್ಸ್ ಹಿಸ್ಟರಿ',
+ 'image' => 'ಚಿತ್ರ',
+ 'important' => 'ಪ್ರಮುಖ',
+ 'important-info' => 'ಪ್ರಮುಖ ಮಾಹಿತಿ',
+ 'information' => 'ಮಾಹಿತಿ',
+ 'invite-friend' => 'ನಿಮ್ಮ ಸ್ನೇಹಿತರನ್ನು ಆಮಂತ್ರಿಸಿ (ಇಮೇಲ್ + ಸಂದೇಶ ಅಗತ್ಯವಿದೆ)',
+ 'invite-tree' => 'ಮರವನ್ನು ಆಮಂತ್ರಿಸಿ',
+ 'invites' => 'ಆಹ್ವಾನಿಸುತ್ತದೆ',
+ 'invites-banned' => 'ದೋಷ: ನಿಮ್ಮ ಆಹ್ವಾನ ಹಕ್ಕುಗಳನ್ನು ನಿಷ್ಕ್ರಿಯಗೊಳಿಸಲಾಗಿದೆ',
+ 'invites-banned-desc' => 'ನೀವು ದೋಷದಲ್ಲಿದ್ದರೆ, ಸಿಬ್ಬಂದಿ ಸಂಪರ್ಕಿಸಿ!',
+ 'invites-count' => 'ನೀವು ಹ್ಯಾವ್: ಟೋಕನ್ಗಳನ್ನು ಆಹ್ವಾನಿಸಿ ಎಣಿಸಿ',
+ 'invites-disabled' => 'ಗಮನ: ನೋಂದಣಿ ತೆರೆಯಲು ಆಹ್ವಾನಗಳನ್ನು ನಿಷ್ಕ್ರಿಯಗೊಳಿಸಲಾಗಿದೆ!',
+ 'invites-disabled-desc' => 'ದಯವಿಟ್ಟು ಶೀಘ್ರದಲ್ಲೇ ಪರಿಶೀಲಿಸಿ!',
+ 'invites-rules' => '- ನಿಮಗೆ ತಿಳಿದಿರುವ ಮತ್ತು ನಂಬುವ ಜನರನ್ನು ಮಾತ್ರ ಆಹ್ವಾನಿಸಿ.
- ನೀವು ಆಹ್ವಾನಿಸುವವರಿಗೆ ವೈಯಕ್ತಿಕವಾಗಿ ನೀವು ಜವಾಬ್ದಾರರಾಗಿರುತ್ತೀರಿ.
- ನಿಮ್ಮನ್ನು ಆಹ್ವಾನಿಸಬೇಡಿ, ನಾವು ಆಹ್ವಾನಿಸಿದ ಪ್ರತಿ ಬಳಕೆದಾರರನ್ನು ಪರಿಶೀಲಿಸುತ್ತೇವೆ.
- ಆಹ್ವಾನಗಳನ್ನು ವ್ಯಾಪಾರ ಮಾಡಿ ಅಥವಾ ಮಾರಾಟ ಮಾಡಬೇಡಿ.
- ನೀವು ಆಹ್ವಾನಿಸಿದ ವ್ಯಕ್ತಿಯು ವಂಚನೆ, ವ್ಯಾಪಾರ ಖಾತೆ ಅಥವಾ ಮಾರಾಟ / ವ್ಯಾಪಾರ ಆಮಂತ್ರಣಗಳನ್ನು ಹಿಡಿದಿದ್ದರೆ, ನಿಮಗೆ ಎಚ್ಚರಿಕೆ ನೀಡಲಾಗುತ್ತದೆ.
',
+ 'invites-send' => 'ಆಹ್ವಾನಿಸಿ ಕಳುಹಿಸಿ',
+ 'last-login' => 'ಕೊನೆಯ ಲಾಗಿನ್',
+ 'locked' => 'ಲಾಕ್ ಮಾಡಲಾಗಿದೆ',
+ 'locked-achievements' => 'ಲಾಕ್ ಸಾಧನೆಗಳು',
+ 'member-since' => 'ಸದಸ್ಯರು',
+ 'members-desc' => 'ಇದರಲ್ಲಿ ನೋಂದಾಯಿಸಲಾದ ಬಳಕೆದಾರರ ಪಟ್ಟಿ: ಎಲ್ಲಾ ಗುಂಪುಗಳೊಂದಿಗೆ ಶೀರ್ಷಿಕೆ. ಈಗ ಒಬ್ಬ ಬಳಕೆದಾರನನ್ನು ಹುಡುಕಿ.',
+ 'mention-notification' => '@ ಸೂಚನೆ ಅಧಿಸೂಚನೆಗಳನ್ನು ಗಮನಿಸಿ',
'mention-notification-article-comment' => 'ಲೇಖನ ಲೇಖನದಲ್ಲಿ ನೀವು @ ಆಗಿರುವಾಗ ಅಧಿಸೂಚನೆಯನ್ನು ಸ್ವೀಕರಿಸಿ',
'mention-notification-torrent-comment' => 'ನೀವು ಟೊರೆಂಟ್ ಪ್ರತಿಕ್ರಿಯೆಯಲ್ಲಿ @ ಪ್ರಸ್ತಾಪಿಸಿದಾಗ ಅಧಿಸೂಚನೆಯನ್ನು ಸ್ವೀಕರಿಸಿ',
'mention-notification-request-comment' => 'ನೀವು @ ವಿನಂತಿಯ ಕಾಮೆಂಟ್ನಲ್ಲಿ ಪ್ರಸ್ತಾಪಿಸಿದಾಗ ಅಧಿಸೂಚನೆಯನ್ನು ಸ್ವೀಕರಿಸಿ',
- 'mention-notification-forum-post' => 'ನೀವು @ ವೇದಿಕೆ ಪೋಸ್ಟ್ನಲ್ಲಿ ಪ್ರಸ್ತಾಪಿಸಿದಾಗ ಅಧಿಸೂಚನೆಯನ್ನು ಸ್ವೀಕರಿಸಿ',
- 'mention-notification-help' => 'ಬಳಕೆದಾರನು @ ನೀವು ಹೇಳಿಕೆ ನೀಡಿದಾಗ ಅಧಿಸೂಚನೆಗಳನ್ನು ಕಳುಹಿಸಬೇಕೆಂದು ನಿಯಂತ್ರಿಸಿ. ಬಳಕೆದಾರನು @ ನೀವು ಹೇಳಿಕೆ ನೀಡಿದರೆ ಅಥವಾ ಅಧಿಸೂಚನೆಗಳನ್ನು ನಿಷ್ಕ್ರಿಯಗೊಳಿಸಿದಲ್ಲಿ ನೀವು ಯಾವುದೇ ಗುಂಪುಗಳನ್ನು ಅಧಿಸೂಚನೆಗಳನ್ನು ಕಳುಹಿಸಲು ಅನುಮತಿಸದಿದ್ದರೆ ಈ ಸೆಟ್ಟಿಂಗ್ಗಳನ್ನು ಅತಿಕ್ರಮಿಸಲಾಗುತ್ತದೆ.',
- 'moderated-by' => 'ಇವರಿಂದ ಮಾಡಲ್ಪಟ್ಟಿದೆ: mod ಆನ್',
- 'my-bonus-points' => 'ನನ್ನ ಬೋನಸ್ ಪಾಯಿಂಟುಗಳು',
- 'my-bookmarks' => 'ನನ್ನ ಬುಕ್ಮಾರ್ಕ್ಗಳು',
- 'my-fl-tokens' => 'ನನ್ನ FL ಸಂಕೇತಗಳು',
- 'my-general-settings' => 'ನನ್ನ ಸಾಮಾನ್ಯ ಸೆಟ್ಟಿಂಗ್ಗಳು',
- 'my-notification' => 'ನನ್ನ ಪ್ರಕಟಣೆ',
- 'my-notification-settings' => 'ನನ್ನ ಅಧಿಸೂಚನೆ ಸೆಟ್ಟಿಂಗ್ಗಳು',
- 'my-privacy' => 'ನನ್ನ ಗೌಪ್ಯತೆ',
- 'my-privacy-settings' => 'ನನ್ನ ಗೌಪ್ಯತಾ ಸೆಟ್ಟಿಂಗ್ಗಳು',
- 'my-profile' => 'ಸ್ವ ಭೂಮಿಕೆ',
- 'my-requested' => 'ನನ್ನ ವಿನಂತಿಸಲಾಗಿದೆ',
- 'my-security' => 'ನನ್ನ ಭದ್ರತೆ',
- 'my-security-settings' => 'ನನ್ನ ಭದ್ರತಾ ಸೆಟ್ಟಿಂಗ್ಗಳು',
- 'my-seedboxes' => 'ನನ್ನ ಸೀಡ್ಬಾಕ್ಸ್ಗಳು',
- 'my-settings' => 'ನನ್ನ ಸೆಟ್ಟಿಂಗ್ಗಳು',
- 'my-wishlist' => 'ನನ್ನ ಇಚ್ಚೆಯ ಪಟ್ಟಿ',
- 'no-logs' => 'ಈ ಬಳಕೆದಾರರಿಗಾಗಿ ಡೇಟಾಬೇಸ್ನಲ್ಲಿ ಯಾವುದೇ ಆಮಂತ್ರಣ ದಾಖಲೆಗಳು ಅಲ್ಲ!',
- 'no-seedboxes' => 'ಯಾವುದೇ ಸಯಾಬಾಕ್ಸ್ 😔 ಇಲ್ಲ',
- 'not-authorized' => 'ಈ ಪುಟವನ್ನು ವೀಕ್ಷಿಸಲು ನೀವು ಅಧಿಕಾರ ಹೊಂದಿಲ್ಲ. ಈ ಸದಸ್ಯನು ನಿಂಜಾ ರೀತಿಯಲ್ಲಿ ಮರೆಮಾಡಲು ಬಯಸುತ್ತಾನೆ!',
- 'note' => 'ಸೂಚನೆ',
- 'notification' => 'ಅಧಿಸೂಚನೆ',
- 'notification-settings' => 'ಅಧಿಸೂಚನೆ ಸೆಟ್ಟಿಂಗ್ಗಳು',
- 'notification-from-account' => 'ಇವರಿಂದ ಖಾತೆ ಅಧಿಸೂಚನೆಗಳನ್ನು ಸ್ವೀಕರಿಸಿ',
- 'notification-from-account-help' => 'ಸಿಸ್ಟಮ್, ಸಿಬ್ಬಂದಿ ಮತ್ತು ಮುಂದಿನ ಗುಂಪುಗಳಿಂದ ಮಾತ್ರ ನೀವು ಖಾತೆ ಅಧಿಸೂಚನೆಗಳನ್ನು ಸ್ವೀಕರಿಸುತ್ತೀರಿ. ನೀವು ಅಧಿಸೂಚನೆಗಳನ್ನು ನಿಷ್ಕ್ರಿಯಗೊಳಿಸಿದಲ್ಲಿ ಈ ಸೆಟ್ಟಿಂಗ್ಗಳನ್ನು ಅತಿಕ್ರಮಿಸಲಾಗುತ್ತದೆ',
- 'notification-from-bon' => 'BON ಅಧಿಸೂಚನೆಗಳನ್ನು ಪಡೆದುಕೊಳ್ಳಿ',
- 'notification-from-bon-help' => 'ಸಿಸ್ಟಮ್, ಸಿಬ್ಬಂದಿ ಮತ್ತು ಮುಂದಿನ ಗುಂಪುಗಳಿಂದ ಮಾತ್ರ ನೀವು BON ಅಧಿಸೂಚನೆಗಳನ್ನು ಸ್ವೀಕರಿಸುತ್ತೀರಿ. ನೀವು ಅಧಿಸೂಚನೆಗಳನ್ನು ನಿಷ್ಕ್ರಿಯಗೊಳಿಸಿದಲ್ಲಿ ಈ ಸೆಟ್ಟಿಂಗ್ಗಳನ್ನು ಅತಿಕ್ರಮಿಸಲಾಗುತ್ತದೆ',
- 'notification-from-following' => 'ಮುಂದಿನ ಬಳಕೆದಾರ ಸೂಚನೆಗಳು ಸ್ವೀಕರಿಸಿ',
- 'notification-from-following-help' => 'ಕೆಳಗಿನ ಗುಂಪುಗಳಿಂದ ನೀವು ನಂತರದ ಬಳಕೆದಾರ ಅಧಿಸೂಚನೆಗಳನ್ನು ಮಾತ್ರ ಸ್ವೀಕರಿಸುತ್ತೀರಿ. ನೀವು ಅಧಿಸೂಚನೆಗಳನ್ನು ನಿಷ್ಕ್ರಿಯಗೊಳಿಸಿದಲ್ಲಿ ಈ ಸೆಟ್ಟಿಂಗ್ಗಳನ್ನು ಅತಿಕ್ರಮಿಸಲಾಗುತ್ತದೆ',
- 'notification-from-forum' => 'ಫೋರಮ್ ಅಧಿಸೂಚನೆಗಳನ್ನು ಸ್ವೀಕರಿಸು',
- 'notification-from-forum-help' => 'ಸಿಸ್ಟಮ್, ಸಿಬ್ಬಂದಿ ಮತ್ತು ಮುಂದಿನ ಗುಂಪುಗಳಿಂದ ಮಾತ್ರ ನೀವು ಫೋರಮ್ ಅಧಿಸೂಚನೆಗಳನ್ನು ಸ್ವೀಕರಿಸುತ್ತೀರಿ. ನೀವು ಅಧಿಸೂಚನೆಗಳನ್ನು ನಿಷ್ಕ್ರಿಯಗೊಳಿಸಿದಲ್ಲಿ ಈ ಸೆಟ್ಟಿಂಗ್ಗಳನ್ನು ಅತಿಕ್ರಮಿಸಲಾಗುತ್ತದೆ',
- 'notification-from-subscription' => 'ನಿಂದ ಚಂದಾದಾರಿಕೆ ಅಧಿಸೂಚನೆಗಳನ್ನು ಸ್ವೀಕರಿಸಿ',
- 'notification-from-subscription-help' => 'ಸಿಸ್ಟಮ್, ಸಿಬ್ಬಂದಿ ಮತ್ತು ಮುಂದಿನ ಗುಂಪುಗಳಿಂದ ಮಾತ್ರ ನೀವು ಫೋರಮ್ ಅಧಿಸೂಚನೆಗಳನ್ನು ಸ್ವೀಕರಿಸುತ್ತೀರಿ. ನೀವು ಅಧಿಸೂಚನೆಗಳನ್ನು ನಿಷ್ಕ್ರಿಯಗೊಳಿಸಿದಲ್ಲಿ ಈ ಸೆಟ್ಟಿಂಗ್ಗಳನ್ನು ಅತಿಕ್ರಮಿಸಲಾಗುತ್ತದೆ',
- 'notification-from-torrent' => 'ಗೆ ಟೊರೆಂಟ್ ಸೂಚನೆಗಳು ಸ್ವೀಕರಿಸಿ',
- 'notification-from-torrent-help' => 'ನೀವು ಸಿಸ್ಟಮ್, ಸಿಬ್ಬಂದಿ ಮತ್ತು ಮುಂದಿನ ಗುಂಪುಗಳಿಂದ ಮಾತ್ರ ಟೊರೆಂಟ್ ಅಧಿಸೂಚನೆಗಳನ್ನು ಸ್ವೀಕರಿಸುತ್ತೀರಿ. ನೀವು ಅಧಿಸೂಚನೆಗಳನ್ನು ನಿಷ್ಕ್ರಿಯಗೊಳಿಸಿದಲ್ಲಿ ಈ ಸೆಟ್ಟಿಂಗ್ಗಳನ್ನು ಅತಿಕ್ರಮಿಸಲಾಗುತ್ತದೆ',
- 'notification-from-mention' => 'ಅಧಿಸೂಚನೆಗಳನ್ನು ಸ್ವೀಕರಿಸಿ @ ಸ್ವೀಕರಿಸಿ',
- 'notification-from-mention-help' => 'ಸಿಸ್ಟಮ್, ಸಿಬ್ಬಂದಿ ಮತ್ತು ಮುಂದಿನ ಗುಂಪುಗಳಿಂದ ಮಾತ್ರ ನೀವು @ ಪ್ರಕಟಣೆ ಅಧಿಸೂಚನೆಗಳನ್ನು ಸ್ವೀಕರಿಸುತ್ತೀರಿ. ನೀವು ಅಧಿಸೂಚನೆಗಳನ್ನು ನಿಷ್ಕ್ರಿಯಗೊಳಿಸಿದಲ್ಲಿ ಈ ಸೆಟ್ಟಿಂಗ್ಗಳನ್ನು ಅತಿಕ್ರಮಿಸಲಾಗುತ್ತದೆ',
- 'notification-from-request' => 'ವಿನಂತಿ ಅಧಿಸೂಚನೆಗಳನ್ನು ಪಡೆದುಕೊಳ್ಳಿ',
- 'notification-from-request-help' => 'ಸಿಸ್ಟಮ್, ಸಿಬ್ಬಂದಿ ಮತ್ತು ಮುಂದಿನ ಗುಂಪುಗಳಿಂದ ಮಾತ್ರ ವಿನಂತಿಯನ್ನು ಅಧಿಸೂಚನೆಗಳನ್ನು ಸ್ವೀಕರಿಸುತ್ತೀರಿ. ನೀವು ಅಧಿಸೂಚನೆಗಳನ್ನು ನಿಷ್ಕ್ರಿಯಗೊಳಿಸಿದಲ್ಲಿ ಈ ಸೆಟ್ಟಿಂಗ್ಗಳನ್ನು ಅತಿಕ್ರಮಿಸಲಾಗುತ್ತದೆ',
- 'notifications' => 'ಅಧಿಸೂಚನೆಗಳು',
- 'offline' => 'ಬಳಕೆದಾರ ಆಫ್ಲೈನ್ ಆಗಿದೆ!',
- 'online' => 'ಬಳಕೆದಾರ ಆನ್ಲೈನ್ನಲ್ಲಿದ್ದಾರೆ!',
- 'options' => 'ಆಯ್ಕೆಗಳು',
- 'other-help' => 'ನಿಮ್ಮ ಪ್ರೊಫೈಲ್ಗೆ ಪ್ರವೇಶಿಸಲು ಅನುಮತಿಸಲಾದ ಗುಂಪುಗಳೊಂದಿಗೆ ಇತರ ಅಂಕಿಅಂಶಗಳು ಮತ್ತು ಮಾಹಿತಿಯನ್ನು ಹಂಚಿಕೊಳ್ಳುವುದನ್ನು ನಿಯಂತ್ರಿಸಿ. ನಿಮ್ಮ ಇತರ ಅಂಕಿಅಂಶಗಳು ಮತ್ತು ಮಾಹಿತಿಯನ್ನು ಪ್ರವೇಶಿಸಲು ನೀವು ಯಾವುದೇ ಗುಂಪುಗಳನ್ನು ಅನುಮತಿಸದಿದ್ದರೆ ಅಥವಾ ನೀವು ಖಾಸಗಿಯಾಗಿ ಹೋದರೆ ಈ ಸೆಟ್ಟಿಂಗ್ಗಳನ್ನು ಅತಿಕ್ರಮಿಸಲಾಗುತ್ತದೆ',
- 'other-privacy' => 'ಇತರೆ ಸೆಟ್ಟಿಂಗ್ಗಳು',
- 'other-privacy-online' => 'ಆನ್ಲೈನ್ ಬಳಕೆದಾರರು ಬ್ಲಾಕ್ನಲ್ಲಿ ನಿಮ್ಮನ್ನು ನೋಡಲು ಬಳಕೆದಾರರನ್ನು ಅನುಮತಿಸಿ',
- 'passkey' => 'PID',
- 'passkey-warning' => 'PID ನಿಮ್ಮ ಪಾಸ್ವರ್ಡ್ನಂತೆ, ನೀವು ಅದನ್ನು ಸುರಕ್ಷಿತವಾಗಿ ಇಟ್ಟುಕೊಳ್ಳಬೇಕು!',
- 'pending-achievements' => 'ಬಾಕಿ ಉಳಿದಿರುವ ಸಾಧನೆಗಳು',
- 'per-torrent' => 'ಪ್ರತಿ ಟೊರೆಂಟ್',
- 'posts' => 'ಪೋಸ್ಟ್ಗಳು',
- 'posts-posted' => 'ಫೋರಮ್ ಪೋಸ್ಟ್ಗಳು ಪೋಸ್ಟ್ ಮಾಡಲಾಗಿದೆ',
- 'privacy' => 'ಗೌಪ್ಯತೆ',
- 'privacy-settings' => 'ಗೌಪ್ಯತಾ ಸೆಟ್ಟಿಂಗ್ಗಳು',
- 'private-info' => 'ಖಾಸಗಿ ಮಾಹಿತಿ',
- 'private-forum-profile' => 'ಗಮನ: ಈ ಸದಸ್ಯರು ವಿಷಯ ಮತ್ತು ಪೋಸ್ಟ್ ಇತಿಹಾಸವನ್ನು ಖಾಸಗಿಯಾಗಿ ಹೊಂದಿಸಲಾಗಿದೆ!',
- 'private-profile' => 'ಗಮನ: ಈ ಪ್ರೊಫೈಲ್ ಖಾಸಗಿಯಾಗಿ ಹೊಂದಿಸಲಾಗಿದೆ!',
- 'profile' => 'ಪ್ರೊಫೈಲ್',
- 'profile-desc' => 'ಬಳಕೆದಾರ: ಬಳಕೆದಾರರ ಪ್ರೊಫೈಲ್ ನೋಂದಾಯಿಸಲಾಗಿದೆ: ಶೀರ್ಷಿಕೆ',
- 'profile-privacy' => 'ಪ್ರೊಫೈಲ್ ಸೆಟ್ಟಿಂಗ್ಗಳು',
- 'profile-privacy-torrent-count' => 'ನಿಮ್ಮ ಒಟ್ಟು ಡೌನ್ಲೋಡ್ಗಳು, ಅಪ್ಲೋಡ್ಗಳು, ಬೀಜಗಳು ಮತ್ತು ಲೀಕ್ಗಳನ್ನು ಹಂಚಿಕೊಳ್ಳಿ',
- 'profile-privacy-torrent-ratio' => 'ರೆಕಾರ್ಡ್ ಅನುಪಾತದೊಂದಿಗೆ ನಿಮ್ಮ ಒಟ್ಟು ಅಪ್ಲೋಡ್ / ಡೌನ್ಲೋಡ್ ಡೇಟಾವನ್ನು ಹಂಚಿಕೊಳ್ಳಿ',
- 'profile-privacy-torrent-seed' => 'ನಿಮ್ಮ ಒಟ್ಟು ಬೀಜ ಸಮಯ ಮತ್ತು ಸರಾಸರಿ ಹಂಚಿಕೊಳ್ಳಿ',
- 'profile-privacy-title' => 'ನಿಮ್ಮ ವೈಯಕ್ತಿಕ ಶೀರ್ಷಿಕೆ ಮಾಹಿತಿಯನ್ನು ಹಂಚಿಕೊಳ್ಳಿ',
- 'profile-privacy-about' => 'ನನ್ನ ಬಗ್ಗೆ ನಿಮ್ಮ ವೈಯಕ್ತಿಕ ಮಾಹಿತಿಯನ್ನು ಹಂಚಿಕೊಳ್ಳಿ',
- 'profile-privacy-bon-extra' => 'ನಿಮ್ಮ BON ಅಂಕಿಅಂಶಗಳನ್ನು ಹಂಚಿಕೊಳ್ಳಿ',
- 'profile-privacy-comment-extra' => 'ನಿಮ್ಮ ಕಾಮೆಂಟ್ ಅಂಕಿಅಂಶಗಳನ್ನು ಹಂಚಿಕೊಳ್ಳಿ',
- 'profile-privacy-forum-extra' => 'ನಿಮ್ಮ ಫೋರಮ್ ಅಂಕಿಅಂಶಗಳನ್ನು ಹಂಚಿಕೊಳ್ಳಿ',
- 'profile-privacy-request-extra' => 'ನಿಮ್ಮ ವಿನಂತಿಯನ್ನು ಅಂಕಿಅಂಶಗಳನ್ನು ಹಂಚಿಕೊಳ್ಳಿ',
- 'profile-privacy-torrent-extra' => 'ನಿಮ್ಮ ಟೊರೆಂಟ್ ಅಂಕಿಅಂಶಗಳನ್ನು ಹಂಚಿಕೊಳ್ಳಿ',
- 'profile-privacy-badge' => 'ನಿಮ್ಮ ಗಳಿಸಿದ ಬ್ಯಾಡ್ಜ್ಗಳನ್ನು ಹಂಚಿಕೊಳ್ಳಿ',
- 'profile-privacy-achievement' => 'ನಿಮ್ಮ ಇತ್ತೀಚಿನ ಸಾಧನೆಗಳನ್ನು ಹಂಚಿಕೊಳ್ಳಿ',
- 'profile-privacy-follower' => 'ನಿಮ್ಮ ಇತ್ತೀಚಿನ ಅನುಯಾಯಿಗಳನ್ನು ಹಂಚಿಕೊಳ್ಳಿ',
- 'profile-privacy-warning' => 'ನಿಮ್ಮ H & R ಎಚ್ಚರಿಕೆಗಳನ್ನು ಹಂಚಿಕೊಳ್ಳಿ',
- 'profile-privacy-help' => 'ನಿಮ್ಮ ಪ್ರೊಫೈಲ್ನಲ್ಲಿ ಅಂಕಿಅಂಶಗಳು ಮತ್ತು ಮಾಹಿತಿಯ ತುಣುಕುಗಳು ಕಾಣಿಸಿಕೊಳ್ಳುತ್ತವೆ ಎಂಬುದನ್ನು ನಿಯಂತ್ರಿಸಿ. ನಿಮ್ಮ ಪ್ರೊಫೈಲ್ ಅನ್ನು ಪ್ರವೇಶಿಸಲು ನೀವು ಯಾವುದೇ ಗುಂಪುಗಳನ್ನು ಅನುಮತಿಸದಿದ್ದರೆ ಅಥವಾ ನೀವು ಖಾಸಗಿಯಾಗಿ ಹೋದರೆ ಈ ಸೆಟ್ಟಿಂಗ್ಗಳನ್ನು ಅತಿಕ್ರಮಿಸಲಾಗುತ್ತದೆ',
- 'public-info' => 'ಸಾರ್ವಜನಿಕ ಮಾಹಿತಿ',
- 'recent-achievements' => 'ಇತ್ತೀಚಿನ ಸಾಧನೆಗಳು',
- 'recent-followers' => 'ಇತ್ತೀಚಿನ ಅನುಯಾಯಿಗಳು',
- 'registration-date' => 'ನೋಂದಣಿ ದಿನಾಂಕ',
- 'report' => 'ವರದಿ',
- 'request-help' => 'ನಿರ್ದಿಷ್ಟ ವಿನಂತಿಯ ಸಂಬಂಧಿತ ಅಂಕಿಅಂಶಗಳು ಮತ್ತು ನಿಮ್ಮ ಪ್ರೊಫೈಲ್ಗೆ ಪ್ರವೇಶಿಸಲು ಅನುಮತಿಸುವ ಗುಂಪುಗಳೊಂದಿಗೆ ಮಾಹಿತಿಯನ್ನು ಹಂಚಿಕೊಳ್ಳುವುದನ್ನು ನಿಯಂತ್ರಿಸಿ. ನಿಮ್ಮ ವಿನಂತಿಸಿದ ಸಂಬಂಧಿತ ಅಂಕಿಅಂಶಗಳು ಮತ್ತು ಮಾಹಿತಿಯನ್ನು ಪ್ರವೇಶಿಸಲು ನೀವು ಯಾವುದೇ ಗುಂಪುಗಳನ್ನು ಅನುಮತಿಸದಿದ್ದರೆ ಅಥವಾ ನೀವು ಖಾಸಗಿಯಾಗಿ ಹೋದರೆ ಈ ಸೆಟ್ಟಿಂಗ್ಗಳನ್ನು ಅತಿಕ್ರಮಿಸಲಾಗುತ್ತದೆ',
- 'request' => 'ವಿನಂತಿ',
- 'requested' => 'ವಿನಂತಿಸಲಾಗಿದೆ',
- 'requests' => 'ವಿನಂತಿಗಳು',
- 'request-comments' => 'ವಿನಂತಿ ಪ್ರತಿಕ್ರಿಯೆಗಳು ಮೇಡ್',
- 'request-notification' => 'ಅಧಿಸೂಚನೆ ಸೆಟ್ಟಿಂಗ್ಗಳನ್ನು ವಿನಂತಿಸಿ',
- 'request-notification-bounty' => 'ವಿನಂತಿಸಿದ ಟೊರೆಂಟ್ ಹೊಸ ಬಾಕಿ ಪಡೆದಾಗ ಅಧಿಸೂಚನೆ ಸ್ವೀಕರಿಸಿ',
- 'request-notification-comment' => 'ವಿನಂತಿಸಿದ ಟೊರೆಂಟ್ ಹೊಸ ಪ್ರತಿಕ್ರಿಯೆಯನ್ನು ಪಡೆದಾಗ ಅಧಿಸೂಚನೆಯನ್ನು ಸ್ವೀಕರಿಸಿ',
- 'request-notification-fill' => 'ವಿನಂತಿಸಿದ ಟೊರೆಂಟ್ ತುಂಬಿರುವಾಗ ಅಧಿಸೂಚನೆಯನ್ನು ಸ್ವೀಕರಿಸಿ',
- 'request-notification-fill-approve' => 'ವಿನಂತಿಸಿದ ಟೊರೆಂಟ್ ತುಂಬು ಅಂಗೀಕರಿಸಿದಾಗ ಅಧಿಸೂಚನೆಯನ್ನು ಸ್ವೀಕರಿಸಿ',
- 'request-notification-fill-reject' => 'ವಿನಂತಿಸಿದ ಟೊರೆಂಟ್ ಫಿಲ್ಟರ್ ತಿರಸ್ಕರಿಸಿದಾಗ ಅಧಿಸೂಚನೆಯನ್ನು ಸ್ವೀಕರಿಸಿ',
- 'request-notification-claim' => 'ವಿನಂತಿಸಿದ ಟೊರೆಂಟ್ ಹಕ್ಕು ಪಡೆದಾಗ ಅಧಿಸೂಚನೆಯನ್ನು ಸ್ವೀಕರಿಸಿ',
- 'request-notification-unclaim' => 'ವಿನಂತಿಸಿದ ಟೊರೆಂಟ್ ಹಕ್ಕು ಪಡೆಯದಿದ್ದಾಗ ಅಧಿಸೂಚನೆಯನ್ನು ಸ್ವೀಕರಿಸಿ',
- 'request-notification-help' => 'ವಿನಂತಿಯನ್ನು ಚಟುವಟಿಕೆಗಳಿಗೆ ಸಂಬಂಧಿಸಿದಂತೆ ಅಧಿಸೂಚನೆಗಳನ್ನು ಕಳುಹಿಸಬೇಕೆಂದು ನಿಯಂತ್ರಿಸಿ. ನೀವು ಯಾವುದೇ ಗುಂಪುಗಳು ಅಧಿಸೂಚನೆಗಳನ್ನು ಸಂಬಂಧಿಸಿದ ವಿನಂತಿಯನ್ನು ಚಟುವಟಿಕೆಗಳನ್ನು ಕಳುಹಿಸಲು ಅನುಮತಿಸದಿದ್ದರೆ ಅಥವಾ ನೀವು ಅಧಿಸೂಚನೆಗಳನ್ನು ನಿಷ್ಕ್ರಿಯಗೊಳಿಸಿದಲ್ಲಿ ಈ ಸೆಟ್ಟಿಂಗ್ಗಳನ್ನು ಅತಿಕ್ರಮಿಸಲಾಗುತ್ತದೆ',
- 'request-privacy' => 'ವಿನಂತಿ ಸೆಟ್ಟಿಂಗ್ಗಳು',
- 'request-privacy-requested' => 'ನೀವು ಮಾಡಿದ ವಿನಂತಿಗಳ ಪಟ್ಟಿಯನ್ನು ವೀಕ್ಷಿಸಲು ಬಳಕೆದಾರರನ್ನು ಅನುಮತಿಸಿ',
- 'reset-passkey' => 'ಮರುಹೊಂದಿಸಿ ಪಾಸ್ ಕೀ (PID)',
- 'reset-passkey-help' => 'PID ಮರುಹೊಂದಿಸಿದ ನಂತರ, ನಿಮ್ಮ ಎಲ್ಲಾ ಸಕ್ರಿಯ ಟೊರೆಂಟುಗಳನ್ನು ಮರು-ಡೌನ್ಲೋಡ್ ಮಾಡಲು / ಪುನಃ ಅಪ್ಲೋಡ್ ಮಾಡಬೇಕಾಗುತ್ತದೆ',
- 'reset-rss' => 'RSS ಕೀ (RID) ಮರುಹೊಂದಿಸಿ',
- 'reset-rss-help' => 'ಆರ್ಐಡಿ ಮರುಹೊಂದಿಸಿದ ನಂತರ, ನೀವು ಎಲ್ಲಾ ಸಕ್ರಿಯ ಆರ್ಎಸ್ಎಸ್ ಫೀಡ್ಗಳನ್ನು ಮರು-ಲೋಡ್ ಮಾಡಬೇಕಾಗುತ್ತದೆ',
- 'resurrections' => 'ಪುನರುತ್ಥಾನಗಳು',
- 'search' => 'ಬಳಕೆದಾರಹೆಸರು ಮೂಲಕ ತ್ವರಿತ ಶೋಧ',
- 'security' => 'ಭದ್ರತೆ',
- 'security-settings' => 'ಭದ್ರತಾ ಸೆಟ್ಟಿಂಗ್ಗಳು',
- 'seedboxes' => 'ಸೀಡ್ಬಾಕ್ಸ್ಗಳು',
- 'seeds' => 'ಬೀಜಗಳು',
- 'send-invite' => 'ಆಹ್ವಾನ ಕಳುಹಿಸಿ',
- 'sender' => 'ಕಳುಹಿಸುವವರು',
- 'settings' => 'ಸೆಟ್ಟಿಂಗ್ಗಳು',
- 'show-passkey' => 'PID ಅನ್ನು ತೋರಿಸು',
- 'staff-noted' => 'ಸಿಬ್ಬಂದಿ ಗಮನಿಸಿದ ಖಾತೆ',
- 'statistics' => 'ಅಂಕಿಅಂಶ',
- 'subscription-notification' => 'ಚಂದಾದಾರಿಕೆ ಅಧಿಸೂಚನೆ ಸೆಟ್ಟಿಂಗ್ಗಳು',
- 'subscription-notification-forum' => 'ಸಬ್ಸ್ಕ್ರೈಬ್ ಫೋರಮ್ ಹೊಸ ವಿಷಯವನ್ನು ಪಡೆದಾಗ ಅಧಿಸೂಚನೆಯನ್ನು ಸ್ವೀಕರಿಸಿ',
- 'subscription-notification-topic' => 'ಚಂದಾದಾರಿಕೆಯ ವಿಷಯವು ಹೊಸ ಪೋಸ್ಟ್ ಅನ್ನು ಪಡೆದಾಗ ಅಧಿಸೂಚನೆಯನ್ನು ಸ್ವೀಕರಿಸಿ',
- 'subscription-notification-help' => 'ಅಧಿಸೂಚನೆಗಳನ್ನು ನಿಮ್ಮ ಚಂದಾದಾರಿಕೆಗಳಿಗೆ ಕಳುಹಿಸುವಂತೆ ನಿಯಂತ್ರಿಸಿ. ನಿಮ್ಮ ಚಂದಾದಾರಿಕೆಗಳಿಗೆ ಸಂಬಂಧಿಸಿದಂತೆ ಅಧಿಸೂಚನೆಗಳನ್ನು ಕಳುಹಿಸಲು ನೀವು ಯಾವುದೇ ಗುಂಪುಗಳನ್ನು ಅನುಮತಿಸದಿದ್ದರೆ ಅಥವಾ ನೀವು ಅಧಿಸೂಚನೆಗಳನ್ನು ನಿಷ್ಕ್ರಿಯಗೊಳಿಸಿದಲ್ಲಿ ಈ ಸೆಟ್ಟಿಂಗ್ಗಳನ್ನು ಅತಿಕ್ರಮಿಸಲಾಗುತ್ತದೆ',
- 'thanks-given' => 'ಧನ್ಯವಾದಗಳು ನೀಡಲಾಗಿದೆ',
- 'thanks-received' => 'ಧನ್ಯವಾದಗಳು ಸ್ವೀಕರಿಸಲಾಗಿದೆ',
- 'tips-given' => 'ಸಲಹೆಗಳು ನೀಡಲಾಗಿದೆ',
- 'tips-received' => 'ಸಲಹೆಗಳು ಸ್ವೀಕರಿಸಲಾಗಿದೆ',
- 'title' => 'ಶೀರ್ಷಿಕೆ',
- 'top-bankers' => 'ಟಾಪ್ ಬ್ಯಾಂಕರ್ಸ್',
- 'top-downloaders-data' => 'ಟಾಪ್ ಡೌನ್ಲೋಡರ್ಗಳು (ಡೇಟಾ)',
- 'top-leechers' => 'ಟಾಪ್ ಲೀಕರ್ಸ್',
- 'top-leechers-count' => 'ಟಾಪ್ ಲೀಕರ್ಸ್ (ಕೌಂಟ್)',
- 'top-seeders' => 'ಟಾಪ್ ಬೀಜಗಳು',
- 'top-seeders-count' => 'ಟಾಪ್ ಸೀಡರ್ಗಳು (ಕೌಂಟ್)',
- 'top-seeding-size' => 'ಉನ್ನತ ಬೀಜ (ಗಾತ್ರ)',
- 'top-seedtime' => 'ಟಾಪ್ ಬೀಜ ಸಮಯ',
- 'top-uploaders-data' => 'ಉನ್ನತ ಅಪ್ಲೋಡರ್ಗಳು (ಡೇಟಾ)',
- 'top-uploaders-count' => 'ಟಾಪ್ ಅಪ್ಲೋಡರ್ಗಳು (ಕೌಂಟ್)',
- 'topics' => 'ವಿಷಯಗಳು',
- 'topics-started' => 'ಫೋರಮ್ ವಿಷಯಗಳು ಪ್ರಾರಂಭಗೊಂಡವು',
- 'torrent-comments' => 'ಟೊರೆಂಟ್ ಪ್ರತಿಕ್ರಿಯೆಗಳು ಮೇಡ್',
- 'torrent-help' => 'ನಿಮ್ಮ ಪ್ರೊಫೈಲ್ಗೆ ಪ್ರವೇಶಿಸಲು ಅನುಮತಿಸಲಾದ ಗುಂಪುಗಳೊಂದಿಗೆ ನಿರ್ದಿಷ್ಟ ಟೊರೆಂಟ್ ಸಂಬಂಧಿತ ಅಂಕಿಅಂಶಗಳು ಮತ್ತು ಮಾಹಿತಿಯನ್ನು ಹಂಚಿಕೊಳ್ಳುವುದನ್ನು ನಿಯಂತ್ರಿಸಿ. ನಿಮ್ಮ ಟೊರೆಂಟ್ ಸಂಬಂಧಿತ ಅಂಕಿಅಂಶಗಳು ಮತ್ತು ಮಾಹಿತಿಯನ್ನು ಪ್ರವೇಶಿಸಲು ಅಥವಾ ಖಾಸಗಿಯಾಗಿ ಹೋದರೆ ನೀವು ಯಾವುದೇ ಗುಂಪುಗಳನ್ನು ಅನುಮತಿಸದಿದ್ದರೆ ಈ ಸೆಟ್ಟಿಂಗ್ಗಳನ್ನು ಅತಿಕ್ರಮಿಸಲಾಗುತ್ತದೆ',
- 'torrent-notification' => 'ಟೊರೆಂಟ್ ಅಧಿಸೂಚನೆ ಸೆಟ್ಟಿಂಗ್ಗಳು',
- 'torrent-notification-comment' => 'ಅಪ್ಲೋಡ್ ಮಾಡಲಾದ ಟೊರೆಂಟ್ ಒಂದು ಹೊಸ ಪ್ರತಿಕ್ರಿಯೆಯನ್ನು ಪಡೆದಾಗ ಅಧಿಸೂಚನೆಯನ್ನು ಸ್ವೀಕರಿಸಿ',
- 'torrent-notification-thank' => 'ಅಪ್ಲೋಡ್ ಮಾಡಲಾದ ಟೊರೆಂಟ್ ಹೊಸ ಧನ್ಯವಾದ ಪಡೆದಾಗ ಅಧಿಸೂಚನೆಯನ್ನು ಸ್ವೀಕರಿಸಿ',
- 'torrent-notification-tip' => 'ಅಪ್ಲೋಡ್ ಮಾಡಲಾದ ಟೊರೆಂಟ್ ಹೊಸ ಸುಳಿವು ಪಡೆದಾಗ ಅಧಿಸೂಚನೆಯನ್ನು ಸ್ವೀಕರಿಸಿ',
- 'torrent-notification-help' => 'ಟೊರೆಂಟ್ ಚಟುವಟಿಕೆಗಳಿಗೆ ಸಂಬಂಧಿಸಿದಂತೆ ಅಧಿಸೂಚನೆಗಳನ್ನು ಕಳುಹಿಸಬೇಕೆಂದು ನಿಯಂತ್ರಿಸಿ. ಅಧಿಸೂಚನೆಗಳನ್ನು ಸಂಬಂಧಿಸಿದ ಟೊರೆಂಟ್ ಚಟುವಟಿಕೆಗಳನ್ನು ಕಳುಹಿಸಲು ನೀವು ಯಾವುದೇ ಗುಂಪುಗಳನ್ನು ಅನುಮತಿಸದಿದ್ದರೆ ಅಥವಾ ನೀವು ಅಧಿಸೂಚನೆಗಳನ್ನು ನಿಷ್ಕ್ರಿಯಗೊಳಿಸಿದಲ್ಲಿ ಈ ಸೆಟ್ಟಿಂಗ್ಗಳನ್ನು ಅತಿಕ್ರಮಿಸಲಾಗುತ್ತದೆ',
- 'torrent-privacy' => 'ಟೊರೆಂಟ್ ಸೆಟ್ಟಿಂಗ್ಗಳು',
- 'torrent-privacy-download' => 'ನೀವು ಡೌನ್ಲೋಡ್ ಮಾಡಿದ ಟೊರೆಂಟುಗಳ ಪಟ್ಟಿಯನ್ನು ವೀಕ್ಷಿಸಲು ಬಳಕೆದಾರರನ್ನು ಅನುಮತಿಸಿ',
- 'torrent-privacy-upload' => 'ನೀವು ಅಪ್ಲೋಡ್ ಮಾಡಿದ ಟೊರೆಂಟುಗಳ ಪಟ್ಟಿಯನ್ನು ವೀಕ್ಷಿಸಲು ಬಳಕೆದಾರರನ್ನು ಅನುಮತಿಸಿ',
- 'torrent-privacy-peer' => 'ಟೊರೆಂಟ್ ಪೀರ್ ಇತಿಹಾಸ ಟೇಬಲ್ನಲ್ಲಿ ನಿಮ್ಮನ್ನು ನೋಡಲು ಬಳಕೆದಾರರನ್ನು ಅನುಮತಿಸಿ',
- 'torrents' => 'ಟೊರೆಂಟುಗಳು',
- 'torrents-history' => 'ಟೊರೆಂಟುಗಳು ಇತಿಹಾಸ',
- 'total-download' => 'ಒಟ್ಟು ಡೌನ್ಲೋಡ್',
- 'total-downloads' => 'ಒಟ್ಟು ಡೌನ್ಲೋಡ್ಗಳು',
- 'total-leeching' => 'ಒಟ್ಟು ಲೀಚಿಂಗ್',
- 'total-seeding' => 'ಒಟ್ಟು ಬೀಜ',
- 'total-seedtime' => 'ಒಟ್ಟು ಬೀಜ ಸಮಯ',
- 'total-upload' => 'ಒಟ್ಟು ಅಪ್ಲೋಡ್',
- 'total-uploads' => 'ಒಟ್ಟು ಅಪ್ಲೋಡ್ಗಳು',
- 'unban' => 'ಬಳಕೆದಾರರನ್ನು ನಿಷೇಧಿಸಿ',
- 'unfollow' => 'ಅನುಸರಿಸಬೇಡಿ',
- 'unlocked' => 'ಅನ್ಲಾಕ್ ಮಾಡಲಾಗಿದೆ',
- 'unlocked-achievements' => 'ಅನ್ಲಾಕ್ಡ್ ಸಾಧನೆಗಳು',
- 'unsatisfieds' => 'ಅತೃಪ್ತಿಗೊಂಡಿದೆ',
- 'upload-bon' => 'ಅಪ್ಲೋಡ್ ಬಾನ್ ಸ್ಟೋರ್ನಿಂದ ಸೇರಿಸಲಾಗಿದೆ',
- 'upload-recorded' => 'ರೆಕಾರ್ಡ್ ಮಾಡಿದ ಅಪ್ಲೋಡ್',
- 'upload-true' => 'ನಿಜವಾದ ಅಪ್ಲೋಡ್',
- 'uploads' => 'ಅಪ್ಲೋಡ್ಗಳು',
- 'uploads-table' => 'ಅಪ್ಲೋಡ್ಗಳ ಪಟ್ಟಿ',
- 'user' => 'ಬಳಕೆದಾರ',
- 'user-id' => 'ಬಳಕೆದಾರರ ಗುರುತು',
- 'username-seedbox' => 'ಬಳಕೆದಾರ ಹೆಸರು ಸೀಡ್ಬಾಕ್ಸ್',
- 'visible-to-achievement' => 'ಸಾಧನೆಗಳಿಗೆ ಗೋಚರಿಸುತ್ತದೆ',
- 'visible-to-achievement-help' => 'ಸಿಬ್ಬಂದಿ ಮತ್ತು ಮುಂದಿನ ಗುಂಪುಗಳಿಗೆ ಮಾತ್ರ ನಿಮ್ಮ ಸಾಧನೆಗಳು ಗೋಚರಿಸುತ್ತವೆ. ನೀವು ಖಾಸಗಿಯಾಗಿ ಹೋದರೆ ಈ ಸೆಟ್ಟಿಂಗ್ಗಳನ್ನು ಅತಿಕ್ರಮಿಸಲಾಗುತ್ತದೆ',
- 'visible-to-follower' => 'ಅನುಸರಿಸುವ ಅನುಯಾಯಿಗಳು',
- 'visible-to-follower-help' => 'ನಿಮ್ಮ ಅನುಯಾಯಿಗಳು ಸಿಬ್ಬಂದಿ ಮತ್ತು ಮುಂದಿನ ಗುಂಪುಗಳಿಗೆ ಮಾತ್ರ ಗೋಚರಿಸುತ್ತಾರೆ. ನೀವು ಖಾಸಗಿಯಾಗಿ ಹೋದರೆ ಈ ಸೆಟ್ಟಿಂಗ್ಗಳನ್ನು ಅತಿಕ್ರಮಿಸಲಾಗುತ್ತದೆ',
- 'visible-to-forum' => 'ವೇದಿಕೆ ಮಾಹಿತಿಗೆ ಗೋಚರಿಸುತ್ತದೆ',
- 'visible-to-forum-help' => 'ನಿಮ್ಮ ಫೋರಮ್ ಮಾಹಿತಿ ಸಿಬ್ಬಂದಿ ಮತ್ತು ಮುಂದಿನ ಗುಂಪುಗಳಿಗೆ ಮಾತ್ರ ಗೋಚರಿಸುತ್ತದೆ. ನೀವು ಖಾಸಗಿಯಾಗಿ ಹೋದರೆ ಈ ಸೆಟ್ಟಿಂಗ್ಗಳನ್ನು ಅತಿಕ್ರಮಿಸಲಾಗುತ್ತದೆ',
- 'visible-to-other' => 'ಇತರರಿಗೆ ಗೋಚರಿಸುತ್ತದೆ',
- 'visible-to-other-help' => 'ನಿಮ್ಮ ಖಾತೆಗೆ ಸಂಬಂಧಿಸಿದ ಇತರ ಮಾಹಿತಿಯು ಸಿಬ್ಬಂದಿ ಮತ್ತು ಮುಂದಿನ ಗುಂಪುಗಳಿಗೆ ಮಾತ್ರ ಗೋಚರಿಸುತ್ತದೆ. ನೀವು ಖಾಸಗಿ ಹೋಗಿ ಅಥವಾ ಈ ಸೆಟ್ಟಿಂಗ್ಗಳನ್ನು ಅತಿಕ್ರಮಿಸಬಹುದಾಗಿದೆ ನೀವು ಹಿಡನ್ ಹೋಗಿ ವೇಳೆ',
- 'visible-to-profile' => 'ಪ್ರೊಫೈಲ್ಗೆ ಗೋಚರಿಸುತ್ತದೆ',
- 'visible-to-profile-help' => 'ಸಿಬ್ಬಂದಿ ಮತ್ತು ಮುಂದಿನ ಗುಂಪುಗಳಿಗೆ ಮಾತ್ರ ನಿಮ್ಮ ಪ್ರೊಫೈಲ್ ಗೋಚರಿಸುತ್ತದೆ. ನೀವು ಖಾಸಗಿಯಾಗಿ ಹೋದರೆ ಈ ಸೆಟ್ಟಿಂಗ್ಗಳನ್ನು ಅತಿಕ್ರಮಿಸಲಾಗುತ್ತದೆ',
- 'visible-to-request' => 'ವಿನಂತಿ ಮಾಹಿತಿಗೆ ಗೋಚರಿಸುತ್ತದೆ',
- 'visible-to-request-help' => 'ಸಿಬ್ಬಂದಿ ಮತ್ತು ಕೆಳಗಿನ ಗುಂಪುಗಳಿಗೆ ಮಾತ್ರ ನಿಮ್ಮ ವಿನಂತಿಯ ಮಾಹಿತಿಯು ಗೋಚರಿಸುತ್ತದೆ. ನೀವು ಖಾಸಗಿಯಾಗಿ ಹೋದರೆ ಈ ಸೆಟ್ಟಿಂಗ್ಗಳನ್ನು ಅತಿಕ್ರಮಿಸಲಾಗುತ್ತದೆ',
- 'visible-to-torrent' => 'ಟೊರೆಂಟ್ ಮಾಹಿತಿಗೆ ಗೋಚರಿಸುತ್ತದೆ',
- 'visible-to-torrent-help' => 'ನಿಮ್ಮ ಟೊರೆಂಟ್ ಮಾಹಿತಿ ಸಿಬ್ಬಂದಿ ಮತ್ತು ಮುಂದಿನ ಗುಂಪುಗಳಿಗೆ ಮಾತ್ರ ಗೋಚರಿಸುತ್ತದೆ. ನೀವು ಖಾಸಗಿ ಹೋಗಿ ಅಥವಾ ಈ ಸೆಟ್ಟಿಂಗ್ಗಳನ್ನು ಅತಿಕ್ರಮಿಸಬಹುದಾಗಿದೆ ನೀವು ಹಿಡನ್ ಹೋಗಿ ವೇಳೆ',
- 'warned-on' => 'ಎಚ್ಚರಿಕೆ',
- 'warning' => 'ಎಚ್ಚರಿಕೆ',
- 'warning-log' => 'ಎಚ್ಚರಿಕೆ ಲಾಗ್',
- 'wishlist' => 'ಬಯಕೆಪಟ್ಟಿಗೆ',
+ 'mention-notification-forum-post' => 'ನೀವು @ ವೇದಿಕೆ ಪೋಸ್ಟ್ನಲ್ಲಿ ಪ್ರಸ್ತಾಪಿಸಿದಾಗ ಅಧಿಸೂಚನೆಯನ್ನು ಸ್ವೀಕರಿಸಿ',
+ 'mention-notification-help' => 'ಬಳಕೆದಾರನು @ ನೀವು ಹೇಳಿಕೆ ನೀಡಿದಾಗ ಅಧಿಸೂಚನೆಗಳನ್ನು ಕಳುಹಿಸಬೇಕೆಂದು ನಿಯಂತ್ರಿಸಿ. ಬಳಕೆದಾರನು @ ನೀವು ಹೇಳಿಕೆ ನೀಡಿದರೆ ಅಥವಾ ಅಧಿಸೂಚನೆಗಳನ್ನು ನಿಷ್ಕ್ರಿಯಗೊಳಿಸಿದಲ್ಲಿ ನೀವು ಯಾವುದೇ ಗುಂಪುಗಳನ್ನು ಅಧಿಸೂಚನೆಗಳನ್ನು ಕಳುಹಿಸಲು ಅನುಮತಿಸದಿದ್ದರೆ ಈ ಸೆಟ್ಟಿಂಗ್ಗಳನ್ನು ಅತಿಕ್ರಮಿಸಲಾಗುತ್ತದೆ.',
+ 'moderated-by' => 'ಇವರಿಂದ ಮಾಡಲ್ಪಟ್ಟಿದೆ: mod ಆನ್',
+ 'my-bonus-points' => 'ನನ್ನ ಬೋನಸ್ ಪಾಯಿಂಟುಗಳು',
+ 'my-bookmarks' => 'ನನ್ನ ಬುಕ್ಮಾರ್ಕ್ಗಳು',
+ 'my-fl-tokens' => 'ನನ್ನ FL ಸಂಕೇತಗಳು',
+ 'my-general-settings' => 'ನನ್ನ ಸಾಮಾನ್ಯ ಸೆಟ್ಟಿಂಗ್ಗಳು',
+ 'my-notification' => 'ನನ್ನ ಪ್ರಕಟಣೆ',
+ 'my-notification-settings' => 'ನನ್ನ ಅಧಿಸೂಚನೆ ಸೆಟ್ಟಿಂಗ್ಗಳು',
+ 'my-privacy' => 'ನನ್ನ ಗೌಪ್ಯತೆ',
+ 'my-privacy-settings' => 'ನನ್ನ ಗೌಪ್ಯತಾ ಸೆಟ್ಟಿಂಗ್ಗಳು',
+ 'my-profile' => 'ಸ್ವ ಭೂಮಿಕೆ',
+ 'my-requested' => 'ನನ್ನ ವಿನಂತಿಸಲಾಗಿದೆ',
+ 'my-security' => 'ನನ್ನ ಭದ್ರತೆ',
+ 'my-security-settings' => 'ನನ್ನ ಭದ್ರತಾ ಸೆಟ್ಟಿಂಗ್ಗಳು',
+ 'my-seedboxes' => 'ನನ್ನ ಸೀಡ್ಬಾಕ್ಸ್ಗಳು',
+ 'my-settings' => 'ನನ್ನ ಸೆಟ್ಟಿಂಗ್ಗಳು',
+ 'my-wishlist' => 'ನನ್ನ ಇಚ್ಚೆಯ ಪಟ್ಟಿ',
+ 'no-logs' => 'ಈ ಬಳಕೆದಾರರಿಗಾಗಿ ಡೇಟಾಬೇಸ್ನಲ್ಲಿ ಯಾವುದೇ ಆಮಂತ್ರಣ ದಾಖಲೆಗಳು ಅಲ್ಲ!',
+ 'no-seedboxes' => 'ಯಾವುದೇ ಸಯಾಬಾಕ್ಸ್ 😔 ಇಲ್ಲ',
+ 'not-authorized' => 'ಈ ಪುಟವನ್ನು ವೀಕ್ಷಿಸಲು ನೀವು ಅಧಿಕಾರ ಹೊಂದಿಲ್ಲ. ಈ ಸದಸ್ಯನು ನಿಂಜಾ ರೀತಿಯಲ್ಲಿ ಮರೆಮಾಡಲು ಬಯಸುತ್ತಾನೆ!',
+ 'note' => 'ಸೂಚನೆ',
+ 'notification' => 'ಅಧಿಸೂಚನೆ',
+ 'notification-settings' => 'ಅಧಿಸೂಚನೆ ಸೆಟ್ಟಿಂಗ್ಗಳು',
+ 'notification-from-account' => 'ಇವರಿಂದ ಖಾತೆ ಅಧಿಸೂಚನೆಗಳನ್ನು ಸ್ವೀಕರಿಸಿ',
+ 'notification-from-account-help' => 'ಸಿಸ್ಟಮ್, ಸಿಬ್ಬಂದಿ ಮತ್ತು ಮುಂದಿನ ಗುಂಪುಗಳಿಂದ ಮಾತ್ರ ನೀವು ಖಾತೆ ಅಧಿಸೂಚನೆಗಳನ್ನು ಸ್ವೀಕರಿಸುತ್ತೀರಿ. ನೀವು ಅಧಿಸೂಚನೆಗಳನ್ನು ನಿಷ್ಕ್ರಿಯಗೊಳಿಸಿದಲ್ಲಿ ಈ ಸೆಟ್ಟಿಂಗ್ಗಳನ್ನು ಅತಿಕ್ರಮಿಸಲಾಗುತ್ತದೆ',
+ 'notification-from-bon' => 'BON ಅಧಿಸೂಚನೆಗಳನ್ನು ಪಡೆದುಕೊಳ್ಳಿ',
+ 'notification-from-bon-help' => 'ಸಿಸ್ಟಮ್, ಸಿಬ್ಬಂದಿ ಮತ್ತು ಮುಂದಿನ ಗುಂಪುಗಳಿಂದ ಮಾತ್ರ ನೀವು BON ಅಧಿಸೂಚನೆಗಳನ್ನು ಸ್ವೀಕರಿಸುತ್ತೀರಿ. ನೀವು ಅಧಿಸೂಚನೆಗಳನ್ನು ನಿಷ್ಕ್ರಿಯಗೊಳಿಸಿದಲ್ಲಿ ಈ ಸೆಟ್ಟಿಂಗ್ಗಳನ್ನು ಅತಿಕ್ರಮಿಸಲಾಗುತ್ತದೆ',
+ 'notification-from-following' => 'ಮುಂದಿನ ಬಳಕೆದಾರ ಸೂಚನೆಗಳು ಸ್ವೀಕರಿಸಿ',
+ 'notification-from-following-help' => 'ಕೆಳಗಿನ ಗುಂಪುಗಳಿಂದ ನೀವು ನಂತರದ ಬಳಕೆದಾರ ಅಧಿಸೂಚನೆಗಳನ್ನು ಮಾತ್ರ ಸ್ವೀಕರಿಸುತ್ತೀರಿ. ನೀವು ಅಧಿಸೂಚನೆಗಳನ್ನು ನಿಷ್ಕ್ರಿಯಗೊಳಿಸಿದಲ್ಲಿ ಈ ಸೆಟ್ಟಿಂಗ್ಗಳನ್ನು ಅತಿಕ್ರಮಿಸಲಾಗುತ್ತದೆ',
+ 'notification-from-forum' => 'ಫೋರಮ್ ಅಧಿಸೂಚನೆಗಳನ್ನು ಸ್ವೀಕರಿಸು',
+ 'notification-from-forum-help' => 'ಸಿಸ್ಟಮ್, ಸಿಬ್ಬಂದಿ ಮತ್ತು ಮುಂದಿನ ಗುಂಪುಗಳಿಂದ ಮಾತ್ರ ನೀವು ಫೋರಮ್ ಅಧಿಸೂಚನೆಗಳನ್ನು ಸ್ವೀಕರಿಸುತ್ತೀರಿ. ನೀವು ಅಧಿಸೂಚನೆಗಳನ್ನು ನಿಷ್ಕ್ರಿಯಗೊಳಿಸಿದಲ್ಲಿ ಈ ಸೆಟ್ಟಿಂಗ್ಗಳನ್ನು ಅತಿಕ್ರಮಿಸಲಾಗುತ್ತದೆ',
+ 'notification-from-subscription' => 'ನಿಂದ ಚಂದಾದಾರಿಕೆ ಅಧಿಸೂಚನೆಗಳನ್ನು ಸ್ವೀಕರಿಸಿ',
+ 'notification-from-subscription-help' => 'ಸಿಸ್ಟಮ್, ಸಿಬ್ಬಂದಿ ಮತ್ತು ಮುಂದಿನ ಗುಂಪುಗಳಿಂದ ಮಾತ್ರ ನೀವು ಫೋರಮ್ ಅಧಿಸೂಚನೆಗಳನ್ನು ಸ್ವೀಕರಿಸುತ್ತೀರಿ. ನೀವು ಅಧಿಸೂಚನೆಗಳನ್ನು ನಿಷ್ಕ್ರಿಯಗೊಳಿಸಿದಲ್ಲಿ ಈ ಸೆಟ್ಟಿಂಗ್ಗಳನ್ನು ಅತಿಕ್ರಮಿಸಲಾಗುತ್ತದೆ',
+ 'notification-from-torrent' => 'ಗೆ ಟೊರೆಂಟ್ ಸೂಚನೆಗಳು ಸ್ವೀಕರಿಸಿ',
+ 'notification-from-torrent-help' => 'ನೀವು ಸಿಸ್ಟಮ್, ಸಿಬ್ಬಂದಿ ಮತ್ತು ಮುಂದಿನ ಗುಂಪುಗಳಿಂದ ಮಾತ್ರ ಟೊರೆಂಟ್ ಅಧಿಸೂಚನೆಗಳನ್ನು ಸ್ವೀಕರಿಸುತ್ತೀರಿ. ನೀವು ಅಧಿಸೂಚನೆಗಳನ್ನು ನಿಷ್ಕ್ರಿಯಗೊಳಿಸಿದಲ್ಲಿ ಈ ಸೆಟ್ಟಿಂಗ್ಗಳನ್ನು ಅತಿಕ್ರಮಿಸಲಾಗುತ್ತದೆ',
+ 'notification-from-mention' => 'ಅಧಿಸೂಚನೆಗಳನ್ನು ಸ್ವೀಕರಿಸಿ @ ಸ್ವೀಕರಿಸಿ',
+ 'notification-from-mention-help' => 'ಸಿಸ್ಟಮ್, ಸಿಬ್ಬಂದಿ ಮತ್ತು ಮುಂದಿನ ಗುಂಪುಗಳಿಂದ ಮಾತ್ರ ನೀವು @ ಪ್ರಕಟಣೆ ಅಧಿಸೂಚನೆಗಳನ್ನು ಸ್ವೀಕರಿಸುತ್ತೀರಿ. ನೀವು ಅಧಿಸೂಚನೆಗಳನ್ನು ನಿಷ್ಕ್ರಿಯಗೊಳಿಸಿದಲ್ಲಿ ಈ ಸೆಟ್ಟಿಂಗ್ಗಳನ್ನು ಅತಿಕ್ರಮಿಸಲಾಗುತ್ತದೆ',
+ 'notification-from-request' => 'ವಿನಂತಿ ಅಧಿಸೂಚನೆಗಳನ್ನು ಪಡೆದುಕೊಳ್ಳಿ',
+ 'notification-from-request-help' => 'ಸಿಸ್ಟಮ್, ಸಿಬ್ಬಂದಿ ಮತ್ತು ಮುಂದಿನ ಗುಂಪುಗಳಿಂದ ಮಾತ್ರ ವಿನಂತಿಯನ್ನು ಅಧಿಸೂಚನೆಗಳನ್ನು ಸ್ವೀಕರಿಸುತ್ತೀರಿ. ನೀವು ಅಧಿಸೂಚನೆಗಳನ್ನು ನಿಷ್ಕ್ರಿಯಗೊಳಿಸಿದಲ್ಲಿ ಈ ಸೆಟ್ಟಿಂಗ್ಗಳನ್ನು ಅತಿಕ್ರಮಿಸಲಾಗುತ್ತದೆ',
+ 'notifications' => 'ಅಧಿಸೂಚನೆಗಳು',
+ 'offline' => 'ಬಳಕೆದಾರ ಆಫ್ಲೈನ್ ಆಗಿದೆ!',
+ 'online' => 'ಬಳಕೆದಾರ ಆನ್ಲೈನ್ನಲ್ಲಿದ್ದಾರೆ!',
+ 'options' => 'ಆಯ್ಕೆಗಳು',
+ 'other-help' => 'ನಿಮ್ಮ ಪ್ರೊಫೈಲ್ಗೆ ಪ್ರವೇಶಿಸಲು ಅನುಮತಿಸಲಾದ ಗುಂಪುಗಳೊಂದಿಗೆ ಇತರ ಅಂಕಿಅಂಶಗಳು ಮತ್ತು ಮಾಹಿತಿಯನ್ನು ಹಂಚಿಕೊಳ್ಳುವುದನ್ನು ನಿಯಂತ್ರಿಸಿ. ನಿಮ್ಮ ಇತರ ಅಂಕಿಅಂಶಗಳು ಮತ್ತು ಮಾಹಿತಿಯನ್ನು ಪ್ರವೇಶಿಸಲು ನೀವು ಯಾವುದೇ ಗುಂಪುಗಳನ್ನು ಅನುಮತಿಸದಿದ್ದರೆ ಅಥವಾ ನೀವು ಖಾಸಗಿಯಾಗಿ ಹೋದರೆ ಈ ಸೆಟ್ಟಿಂಗ್ಗಳನ್ನು ಅತಿಕ್ರಮಿಸಲಾಗುತ್ತದೆ',
+ 'other-privacy' => 'ಇತರೆ ಸೆಟ್ಟಿಂಗ್ಗಳು',
+ 'other-privacy-online' => 'ಆನ್ಲೈನ್ ಬಳಕೆದಾರರು ಬ್ಲಾಕ್ನಲ್ಲಿ ನಿಮ್ಮನ್ನು ನೋಡಲು ಬಳಕೆದಾರರನ್ನು ಅನುಮತಿಸಿ',
+ 'passkey' => 'PID',
+ 'passkey-warning' => 'PID ನಿಮ್ಮ ಪಾಸ್ವರ್ಡ್ನಂತೆ, ನೀವು ಅದನ್ನು ಸುರಕ್ಷಿತವಾಗಿ ಇಟ್ಟುಕೊಳ್ಳಬೇಕು!',
+ 'pending-achievements' => 'ಬಾಕಿ ಉಳಿದಿರುವ ಸಾಧನೆಗಳು',
+ 'per-torrent' => 'ಪ್ರತಿ ಟೊರೆಂಟ್',
+ 'posts' => 'ಪೋಸ್ಟ್ಗಳು',
+ 'posts-posted' => 'ಫೋರಮ್ ಪೋಸ್ಟ್ಗಳು ಪೋಸ್ಟ್ ಮಾಡಲಾಗಿದೆ',
+ 'privacy' => 'ಗೌಪ್ಯತೆ',
+ 'privacy-settings' => 'ಗೌಪ್ಯತಾ ಸೆಟ್ಟಿಂಗ್ಗಳು',
+ 'private-info' => 'ಖಾಸಗಿ ಮಾಹಿತಿ',
+ 'private-forum-profile' => 'ಗಮನ: ಈ ಸದಸ್ಯರು ವಿಷಯ ಮತ್ತು ಪೋಸ್ಟ್ ಇತಿಹಾಸವನ್ನು ಖಾಸಗಿಯಾಗಿ ಹೊಂದಿಸಲಾಗಿದೆ!',
+ 'private-profile' => 'ಗಮನ: ಈ ಪ್ರೊಫೈಲ್ ಖಾಸಗಿಯಾಗಿ ಹೊಂದಿಸಲಾಗಿದೆ!',
+ 'profile' => 'ಪ್ರೊಫೈಲ್',
+ 'profile-desc' => 'ಬಳಕೆದಾರ: ಬಳಕೆದಾರರ ಪ್ರೊಫೈಲ್ ನೋಂದಾಯಿಸಲಾಗಿದೆ: ಶೀರ್ಷಿಕೆ',
+ 'profile-privacy' => 'ಪ್ರೊಫೈಲ್ ಸೆಟ್ಟಿಂಗ್ಗಳು',
+ 'profile-privacy-torrent-count' => 'ನಿಮ್ಮ ಒಟ್ಟು ಡೌನ್ಲೋಡ್ಗಳು, ಅಪ್ಲೋಡ್ಗಳು, ಬೀಜಗಳು ಮತ್ತು ಲೀಕ್ಗಳನ್ನು ಹಂಚಿಕೊಳ್ಳಿ',
+ 'profile-privacy-torrent-ratio' => 'ರೆಕಾರ್ಡ್ ಅನುಪಾತದೊಂದಿಗೆ ನಿಮ್ಮ ಒಟ್ಟು ಅಪ್ಲೋಡ್ / ಡೌನ್ಲೋಡ್ ಡೇಟಾವನ್ನು ಹಂಚಿಕೊಳ್ಳಿ',
+ 'profile-privacy-torrent-seed' => 'ನಿಮ್ಮ ಒಟ್ಟು ಬೀಜ ಸಮಯ ಮತ್ತು ಸರಾಸರಿ ಹಂಚಿಕೊಳ್ಳಿ',
+ 'profile-privacy-title' => 'ನಿಮ್ಮ ವೈಯಕ್ತಿಕ ಶೀರ್ಷಿಕೆ ಮಾಹಿತಿಯನ್ನು ಹಂಚಿಕೊಳ್ಳಿ',
+ 'profile-privacy-about' => 'ನನ್ನ ಬಗ್ಗೆ ನಿಮ್ಮ ವೈಯಕ್ತಿಕ ಮಾಹಿತಿಯನ್ನು ಹಂಚಿಕೊಳ್ಳಿ',
+ 'profile-privacy-bon-extra' => 'ನಿಮ್ಮ BON ಅಂಕಿಅಂಶಗಳನ್ನು ಹಂಚಿಕೊಳ್ಳಿ',
+ 'profile-privacy-comment-extra' => 'ನಿಮ್ಮ ಕಾಮೆಂಟ್ ಅಂಕಿಅಂಶಗಳನ್ನು ಹಂಚಿಕೊಳ್ಳಿ',
+ 'profile-privacy-forum-extra' => 'ನಿಮ್ಮ ಫೋರಮ್ ಅಂಕಿಅಂಶಗಳನ್ನು ಹಂಚಿಕೊಳ್ಳಿ',
+ 'profile-privacy-request-extra' => 'ನಿಮ್ಮ ವಿನಂತಿಯನ್ನು ಅಂಕಿಅಂಶಗಳನ್ನು ಹಂಚಿಕೊಳ್ಳಿ',
+ 'profile-privacy-torrent-extra' => 'ನಿಮ್ಮ ಟೊರೆಂಟ್ ಅಂಕಿಅಂಶಗಳನ್ನು ಹಂಚಿಕೊಳ್ಳಿ',
+ 'profile-privacy-badge' => 'ನಿಮ್ಮ ಗಳಿಸಿದ ಬ್ಯಾಡ್ಜ್ಗಳನ್ನು ಹಂಚಿಕೊಳ್ಳಿ',
+ 'profile-privacy-achievement' => 'ನಿಮ್ಮ ಇತ್ತೀಚಿನ ಸಾಧನೆಗಳನ್ನು ಹಂಚಿಕೊಳ್ಳಿ',
+ 'profile-privacy-follower' => 'ನಿಮ್ಮ ಇತ್ತೀಚಿನ ಅನುಯಾಯಿಗಳನ್ನು ಹಂಚಿಕೊಳ್ಳಿ',
+ 'profile-privacy-warning' => 'ನಿಮ್ಮ H & R ಎಚ್ಚರಿಕೆಗಳನ್ನು ಹಂಚಿಕೊಳ್ಳಿ',
+ 'profile-privacy-help' => 'ನಿಮ್ಮ ಪ್ರೊಫೈಲ್ನಲ್ಲಿ ಅಂಕಿಅಂಶಗಳು ಮತ್ತು ಮಾಹಿತಿಯ ತುಣುಕುಗಳು ಕಾಣಿಸಿಕೊಳ್ಳುತ್ತವೆ ಎಂಬುದನ್ನು ನಿಯಂತ್ರಿಸಿ. ನಿಮ್ಮ ಪ್ರೊಫೈಲ್ ಅನ್ನು ಪ್ರವೇಶಿಸಲು ನೀವು ಯಾವುದೇ ಗುಂಪುಗಳನ್ನು ಅನುಮತಿಸದಿದ್ದರೆ ಅಥವಾ ನೀವು ಖಾಸಗಿಯಾಗಿ ಹೋದರೆ ಈ ಸೆಟ್ಟಿಂಗ್ಗಳನ್ನು ಅತಿಕ್ರಮಿಸಲಾಗುತ್ತದೆ',
+ 'public-info' => 'ಸಾರ್ವಜನಿಕ ಮಾಹಿತಿ',
+ 'recent-achievements' => 'ಇತ್ತೀಚಿನ ಸಾಧನೆಗಳು',
+ 'recent-followers' => 'ಇತ್ತೀಚಿನ ಅನುಯಾಯಿಗಳು',
+ 'registration-date' => 'ನೋಂದಣಿ ದಿನಾಂಕ',
+ 'report' => 'ವರದಿ',
+ 'request-help' => 'ನಿರ್ದಿಷ್ಟ ವಿನಂತಿಯ ಸಂಬಂಧಿತ ಅಂಕಿಅಂಶಗಳು ಮತ್ತು ನಿಮ್ಮ ಪ್ರೊಫೈಲ್ಗೆ ಪ್ರವೇಶಿಸಲು ಅನುಮತಿಸುವ ಗುಂಪುಗಳೊಂದಿಗೆ ಮಾಹಿತಿಯನ್ನು ಹಂಚಿಕೊಳ್ಳುವುದನ್ನು ನಿಯಂತ್ರಿಸಿ. ನಿಮ್ಮ ವಿನಂತಿಸಿದ ಸಂಬಂಧಿತ ಅಂಕಿಅಂಶಗಳು ಮತ್ತು ಮಾಹಿತಿಯನ್ನು ಪ್ರವೇಶಿಸಲು ನೀವು ಯಾವುದೇ ಗುಂಪುಗಳನ್ನು ಅನುಮತಿಸದಿದ್ದರೆ ಅಥವಾ ನೀವು ಖಾಸಗಿಯಾಗಿ ಹೋದರೆ ಈ ಸೆಟ್ಟಿಂಗ್ಗಳನ್ನು ಅತಿಕ್ರಮಿಸಲಾಗುತ್ತದೆ',
+ 'request' => 'ವಿನಂತಿ',
+ 'requested' => 'ವಿನಂತಿಸಲಾಗಿದೆ',
+ 'requests' => 'ವಿನಂತಿಗಳು',
+ 'request-comments' => 'ವಿನಂತಿ ಪ್ರತಿಕ್ರಿಯೆಗಳು ಮೇಡ್',
+ 'request-notification' => 'ಅಧಿಸೂಚನೆ ಸೆಟ್ಟಿಂಗ್ಗಳನ್ನು ವಿನಂತಿಸಿ',
+ 'request-notification-bounty' => 'ವಿನಂತಿಸಿದ ಟೊರೆಂಟ್ ಹೊಸ ಬಾಕಿ ಪಡೆದಾಗ ಅಧಿಸೂಚನೆ ಸ್ವೀಕರಿಸಿ',
+ 'request-notification-comment' => 'ವಿನಂತಿಸಿದ ಟೊರೆಂಟ್ ಹೊಸ ಪ್ರತಿಕ್ರಿಯೆಯನ್ನು ಪಡೆದಾಗ ಅಧಿಸೂಚನೆಯನ್ನು ಸ್ವೀಕರಿಸಿ',
+ 'request-notification-fill' => 'ವಿನಂತಿಸಿದ ಟೊರೆಂಟ್ ತುಂಬಿರುವಾಗ ಅಧಿಸೂಚನೆಯನ್ನು ಸ್ವೀಕರಿಸಿ',
+ 'request-notification-fill-approve' => 'ವಿನಂತಿಸಿದ ಟೊರೆಂಟ್ ತುಂಬು ಅಂಗೀಕರಿಸಿದಾಗ ಅಧಿಸೂಚನೆಯನ್ನು ಸ್ವೀಕರಿಸಿ',
+ 'request-notification-fill-reject' => 'ವಿನಂತಿಸಿದ ಟೊರೆಂಟ್ ಫಿಲ್ಟರ್ ತಿರಸ್ಕರಿಸಿದಾಗ ಅಧಿಸೂಚನೆಯನ್ನು ಸ್ವೀಕರಿಸಿ',
+ 'request-notification-claim' => 'ವಿನಂತಿಸಿದ ಟೊರೆಂಟ್ ಹಕ್ಕು ಪಡೆದಾಗ ಅಧಿಸೂಚನೆಯನ್ನು ಸ್ವೀಕರಿಸಿ',
+ 'request-notification-unclaim' => 'ವಿನಂತಿಸಿದ ಟೊರೆಂಟ್ ಹಕ್ಕು ಪಡೆಯದಿದ್ದಾಗ ಅಧಿಸೂಚನೆಯನ್ನು ಸ್ವೀಕರಿಸಿ',
+ 'request-notification-help' => 'ವಿನಂತಿಯನ್ನು ಚಟುವಟಿಕೆಗಳಿಗೆ ಸಂಬಂಧಿಸಿದಂತೆ ಅಧಿಸೂಚನೆಗಳನ್ನು ಕಳುಹಿಸಬೇಕೆಂದು ನಿಯಂತ್ರಿಸಿ. ನೀವು ಯಾವುದೇ ಗುಂಪುಗಳು ಅಧಿಸೂಚನೆಗಳನ್ನು ಸಂಬಂಧಿಸಿದ ವಿನಂತಿಯನ್ನು ಚಟುವಟಿಕೆಗಳನ್ನು ಕಳುಹಿಸಲು ಅನುಮತಿಸದಿದ್ದರೆ ಅಥವಾ ನೀವು ಅಧಿಸೂಚನೆಗಳನ್ನು ನಿಷ್ಕ್ರಿಯಗೊಳಿಸಿದಲ್ಲಿ ಈ ಸೆಟ್ಟಿಂಗ್ಗಳನ್ನು ಅತಿಕ್ರಮಿಸಲಾಗುತ್ತದೆ',
+ 'request-privacy' => 'ವಿನಂತಿ ಸೆಟ್ಟಿಂಗ್ಗಳು',
+ 'request-privacy-requested' => 'ನೀವು ಮಾಡಿದ ವಿನಂತಿಗಳ ಪಟ್ಟಿಯನ್ನು ವೀಕ್ಷಿಸಲು ಬಳಕೆದಾರರನ್ನು ಅನುಮತಿಸಿ',
+ 'reset-passkey' => 'ಮರುಹೊಂದಿಸಿ ಪಾಸ್ ಕೀ (PID)',
+ 'reset-passkey-help' => 'PID ಮರುಹೊಂದಿಸಿದ ನಂತರ, ನಿಮ್ಮ ಎಲ್ಲಾ ಸಕ್ರಿಯ ಟೊರೆಂಟುಗಳನ್ನು ಮರು-ಡೌನ್ಲೋಡ್ ಮಾಡಲು / ಪುನಃ ಅಪ್ಲೋಡ್ ಮಾಡಬೇಕಾಗುತ್ತದೆ',
+ 'reset-rss' => 'RSS ಕೀ (RID) ಮರುಹೊಂದಿಸಿ',
+ 'reset-rss-help' => 'ಆರ್ಐಡಿ ಮರುಹೊಂದಿಸಿದ ನಂತರ, ನೀವು ಎಲ್ಲಾ ಸಕ್ರಿಯ ಆರ್ಎಸ್ಎಸ್ ಫೀಡ್ಗಳನ್ನು ಮರು-ಲೋಡ್ ಮಾಡಬೇಕಾಗುತ್ತದೆ',
+ 'resurrections' => 'ಪುನರುತ್ಥಾನಗಳು',
+ 'search' => 'ಬಳಕೆದಾರಹೆಸರು ಮೂಲಕ ತ್ವರಿತ ಶೋಧ',
+ 'security' => 'ಭದ್ರತೆ',
+ 'security-settings' => 'ಭದ್ರತಾ ಸೆಟ್ಟಿಂಗ್ಗಳು',
+ 'seedboxes' => 'ಸೀಡ್ಬಾಕ್ಸ್ಗಳು',
+ 'seeds' => 'ಬೀಜಗಳು',
+ 'send-invite' => 'ಆಹ್ವಾನ ಕಳುಹಿಸಿ',
+ 'sender' => 'ಕಳುಹಿಸುವವರು',
+ 'settings' => 'ಸೆಟ್ಟಿಂಗ್ಗಳು',
+ 'show-passkey' => 'PID ಅನ್ನು ತೋರಿಸು',
+ 'staff-noted' => 'ಸಿಬ್ಬಂದಿ ಗಮನಿಸಿದ ಖಾತೆ',
+ 'statistics' => 'ಅಂಕಿಅಂಶ',
+ 'subscription-notification' => 'ಚಂದಾದಾರಿಕೆ ಅಧಿಸೂಚನೆ ಸೆಟ್ಟಿಂಗ್ಗಳು',
+ 'subscription-notification-forum' => 'ಸಬ್ಸ್ಕ್ರೈಬ್ ಫೋರಮ್ ಹೊಸ ವಿಷಯವನ್ನು ಪಡೆದಾಗ ಅಧಿಸೂಚನೆಯನ್ನು ಸ್ವೀಕರಿಸಿ',
+ 'subscription-notification-topic' => 'ಚಂದಾದಾರಿಕೆಯ ವಿಷಯವು ಹೊಸ ಪೋಸ್ಟ್ ಅನ್ನು ಪಡೆದಾಗ ಅಧಿಸೂಚನೆಯನ್ನು ಸ್ವೀಕರಿಸಿ',
+ 'subscription-notification-help' => 'ಅಧಿಸೂಚನೆಗಳನ್ನು ನಿಮ್ಮ ಚಂದಾದಾರಿಕೆಗಳಿಗೆ ಕಳುಹಿಸುವಂತೆ ನಿಯಂತ್ರಿಸಿ. ನಿಮ್ಮ ಚಂದಾದಾರಿಕೆಗಳಿಗೆ ಸಂಬಂಧಿಸಿದಂತೆ ಅಧಿಸೂಚನೆಗಳನ್ನು ಕಳುಹಿಸಲು ನೀವು ಯಾವುದೇ ಗುಂಪುಗಳನ್ನು ಅನುಮತಿಸದಿದ್ದರೆ ಅಥವಾ ನೀವು ಅಧಿಸೂಚನೆಗಳನ್ನು ನಿಷ್ಕ್ರಿಯಗೊಳಿಸಿದಲ್ಲಿ ಈ ಸೆಟ್ಟಿಂಗ್ಗಳನ್ನು ಅತಿಕ್ರಮಿಸಲಾಗುತ್ತದೆ',
+ 'thanks-given' => 'ಧನ್ಯವಾದಗಳು ನೀಡಲಾಗಿದೆ',
+ 'thanks-received' => 'ಧನ್ಯವಾದಗಳು ಸ್ವೀಕರಿಸಲಾಗಿದೆ',
+ 'tips-given' => 'ಸಲಹೆಗಳು ನೀಡಲಾಗಿದೆ',
+ 'tips-received' => 'ಸಲಹೆಗಳು ಸ್ವೀಕರಿಸಲಾಗಿದೆ',
+ 'title' => 'ಶೀರ್ಷಿಕೆ',
+ 'top-bankers' => 'ಟಾಪ್ ಬ್ಯಾಂಕರ್ಸ್',
+ 'top-downloaders-data' => 'ಟಾಪ್ ಡೌನ್ಲೋಡರ್ಗಳು (ಡೇಟಾ)',
+ 'top-leechers' => 'ಟಾಪ್ ಲೀಕರ್ಸ್',
+ 'top-leechers-count' => 'ಟಾಪ್ ಲೀಕರ್ಸ್ (ಕೌಂಟ್)',
+ 'top-seeders' => 'ಟಾಪ್ ಬೀಜಗಳು',
+ 'top-seeders-count' => 'ಟಾಪ್ ಸೀಡರ್ಗಳು (ಕೌಂಟ್)',
+ 'top-seeding-size' => 'ಉನ್ನತ ಬೀಜ (ಗಾತ್ರ)',
+ 'top-seedtime' => 'ಟಾಪ್ ಬೀಜ ಸಮಯ',
+ 'top-uploaders-data' => 'ಉನ್ನತ ಅಪ್ಲೋಡರ್ಗಳು (ಡೇಟಾ)',
+ 'top-uploaders-count' => 'ಟಾಪ್ ಅಪ್ಲೋಡರ್ಗಳು (ಕೌಂಟ್)',
+ 'topics' => 'ವಿಷಯಗಳು',
+ 'topics-started' => 'ಫೋರಮ್ ವಿಷಯಗಳು ಪ್ರಾರಂಭಗೊಂಡವು',
+ 'torrent-comments' => 'ಟೊರೆಂಟ್ ಪ್ರತಿಕ್ರಿಯೆಗಳು ಮೇಡ್',
+ 'torrent-help' => 'ನಿಮ್ಮ ಪ್ರೊಫೈಲ್ಗೆ ಪ್ರವೇಶಿಸಲು ಅನುಮತಿಸಲಾದ ಗುಂಪುಗಳೊಂದಿಗೆ ನಿರ್ದಿಷ್ಟ ಟೊರೆಂಟ್ ಸಂಬಂಧಿತ ಅಂಕಿಅಂಶಗಳು ಮತ್ತು ಮಾಹಿತಿಯನ್ನು ಹಂಚಿಕೊಳ್ಳುವುದನ್ನು ನಿಯಂತ್ರಿಸಿ. ನಿಮ್ಮ ಟೊರೆಂಟ್ ಸಂಬಂಧಿತ ಅಂಕಿಅಂಶಗಳು ಮತ್ತು ಮಾಹಿತಿಯನ್ನು ಪ್ರವೇಶಿಸಲು ಅಥವಾ ಖಾಸಗಿಯಾಗಿ ಹೋದರೆ ನೀವು ಯಾವುದೇ ಗುಂಪುಗಳನ್ನು ಅನುಮತಿಸದಿದ್ದರೆ ಈ ಸೆಟ್ಟಿಂಗ್ಗಳನ್ನು ಅತಿಕ್ರಮಿಸಲಾಗುತ್ತದೆ',
+ 'torrent-notification' => 'ಟೊರೆಂಟ್ ಅಧಿಸೂಚನೆ ಸೆಟ್ಟಿಂಗ್ಗಳು',
+ 'torrent-notification-comment' => 'ಅಪ್ಲೋಡ್ ಮಾಡಲಾದ ಟೊರೆಂಟ್ ಒಂದು ಹೊಸ ಪ್ರತಿಕ್ರಿಯೆಯನ್ನು ಪಡೆದಾಗ ಅಧಿಸೂಚನೆಯನ್ನು ಸ್ವೀಕರಿಸಿ',
+ 'torrent-notification-thank' => 'ಅಪ್ಲೋಡ್ ಮಾಡಲಾದ ಟೊರೆಂಟ್ ಹೊಸ ಧನ್ಯವಾದ ಪಡೆದಾಗ ಅಧಿಸೂಚನೆಯನ್ನು ಸ್ವೀಕರಿಸಿ',
+ 'torrent-notification-tip' => 'ಅಪ್ಲೋಡ್ ಮಾಡಲಾದ ಟೊರೆಂಟ್ ಹೊಸ ಸುಳಿವು ಪಡೆದಾಗ ಅಧಿಸೂಚನೆಯನ್ನು ಸ್ವೀಕರಿಸಿ',
+ 'torrent-notification-help' => 'ಟೊರೆಂಟ್ ಚಟುವಟಿಕೆಗಳಿಗೆ ಸಂಬಂಧಿಸಿದಂತೆ ಅಧಿಸೂಚನೆಗಳನ್ನು ಕಳುಹಿಸಬೇಕೆಂದು ನಿಯಂತ್ರಿಸಿ. ಅಧಿಸೂಚನೆಗಳನ್ನು ಸಂಬಂಧಿಸಿದ ಟೊರೆಂಟ್ ಚಟುವಟಿಕೆಗಳನ್ನು ಕಳುಹಿಸಲು ನೀವು ಯಾವುದೇ ಗುಂಪುಗಳನ್ನು ಅನುಮತಿಸದಿದ್ದರೆ ಅಥವಾ ನೀವು ಅಧಿಸೂಚನೆಗಳನ್ನು ನಿಷ್ಕ್ರಿಯಗೊಳಿಸಿದಲ್ಲಿ ಈ ಸೆಟ್ಟಿಂಗ್ಗಳನ್ನು ಅತಿಕ್ರಮಿಸಲಾಗುತ್ತದೆ',
+ 'torrent-privacy' => 'ಟೊರೆಂಟ್ ಸೆಟ್ಟಿಂಗ್ಗಳು',
+ 'torrent-privacy-download' => 'ನೀವು ಡೌನ್ಲೋಡ್ ಮಾಡಿದ ಟೊರೆಂಟುಗಳ ಪಟ್ಟಿಯನ್ನು ವೀಕ್ಷಿಸಲು ಬಳಕೆದಾರರನ್ನು ಅನುಮತಿಸಿ',
+ 'torrent-privacy-upload' => 'ನೀವು ಅಪ್ಲೋಡ್ ಮಾಡಿದ ಟೊರೆಂಟುಗಳ ಪಟ್ಟಿಯನ್ನು ವೀಕ್ಷಿಸಲು ಬಳಕೆದಾರರನ್ನು ಅನುಮತಿಸಿ',
+ 'torrent-privacy-peer' => 'ಟೊರೆಂಟ್ ಪೀರ್ ಇತಿಹಾಸ ಟೇಬಲ್ನಲ್ಲಿ ನಿಮ್ಮನ್ನು ನೋಡಲು ಬಳಕೆದಾರರನ್ನು ಅನುಮತಿಸಿ',
+ 'torrents' => 'ಟೊರೆಂಟುಗಳು',
+ 'torrents-history' => 'ಟೊರೆಂಟುಗಳು ಇತಿಹಾಸ',
+ 'total-download' => 'ಒಟ್ಟು ಡೌನ್ಲೋಡ್',
+ 'total-downloads' => 'ಒಟ್ಟು ಡೌನ್ಲೋಡ್ಗಳು',
+ 'total-leeching' => 'ಒಟ್ಟು ಲೀಚಿಂಗ್',
+ 'total-seeding' => 'ಒಟ್ಟು ಬೀಜ',
+ 'total-seedtime' => 'ಒಟ್ಟು ಬೀಜ ಸಮಯ',
+ 'total-upload' => 'ಒಟ್ಟು ಅಪ್ಲೋಡ್',
+ 'total-uploads' => 'ಒಟ್ಟು ಅಪ್ಲೋಡ್ಗಳು',
+ 'unban' => 'ಬಳಕೆದಾರರನ್ನು ನಿಷೇಧಿಸಿ',
+ 'unfollow' => 'ಅನುಸರಿಸಬೇಡಿ',
+ 'unlocked' => 'ಅನ್ಲಾಕ್ ಮಾಡಲಾಗಿದೆ',
+ 'unlocked-achievements' => 'ಅನ್ಲಾಕ್ಡ್ ಸಾಧನೆಗಳು',
+ 'unsatisfieds' => 'ಅತೃಪ್ತಿಗೊಂಡಿದೆ',
+ 'upload-bon' => 'ಅಪ್ಲೋಡ್ ಬಾನ್ ಸ್ಟೋರ್ನಿಂದ ಸೇರಿಸಲಾಗಿದೆ',
+ 'upload-recorded' => 'ರೆಕಾರ್ಡ್ ಮಾಡಿದ ಅಪ್ಲೋಡ್',
+ 'upload-true' => 'ನಿಜವಾದ ಅಪ್ಲೋಡ್',
+ 'uploads' => 'ಅಪ್ಲೋಡ್ಗಳು',
+ 'uploads-table' => 'ಅಪ್ಲೋಡ್ಗಳ ಪಟ್ಟಿ',
+ 'user' => 'ಬಳಕೆದಾರ',
+ 'user-id' => 'ಬಳಕೆದಾರರ ಗುರುತು',
+ 'username-seedbox' => 'ಬಳಕೆದಾರ ಹೆಸರು ಸೀಡ್ಬಾಕ್ಸ್',
+ 'visible-to-achievement' => 'ಸಾಧನೆಗಳಿಗೆ ಗೋಚರಿಸುತ್ತದೆ',
+ 'visible-to-achievement-help' => 'ಸಿಬ್ಬಂದಿ ಮತ್ತು ಮುಂದಿನ ಗುಂಪುಗಳಿಗೆ ಮಾತ್ರ ನಿಮ್ಮ ಸಾಧನೆಗಳು ಗೋಚರಿಸುತ್ತವೆ. ನೀವು ಖಾಸಗಿಯಾಗಿ ಹೋದರೆ ಈ ಸೆಟ್ಟಿಂಗ್ಗಳನ್ನು ಅತಿಕ್ರಮಿಸಲಾಗುತ್ತದೆ',
+ 'visible-to-follower' => 'ಅನುಸರಿಸುವ ಅನುಯಾಯಿಗಳು',
+ 'visible-to-follower-help' => 'ನಿಮ್ಮ ಅನುಯಾಯಿಗಳು ಸಿಬ್ಬಂದಿ ಮತ್ತು ಮುಂದಿನ ಗುಂಪುಗಳಿಗೆ ಮಾತ್ರ ಗೋಚರಿಸುತ್ತಾರೆ. ನೀವು ಖಾಸಗಿಯಾಗಿ ಹೋದರೆ ಈ ಸೆಟ್ಟಿಂಗ್ಗಳನ್ನು ಅತಿಕ್ರಮಿಸಲಾಗುತ್ತದೆ',
+ 'visible-to-forum' => 'ವೇದಿಕೆ ಮಾಹಿತಿಗೆ ಗೋಚರಿಸುತ್ತದೆ',
+ 'visible-to-forum-help' => 'ನಿಮ್ಮ ಫೋರಮ್ ಮಾಹಿತಿ ಸಿಬ್ಬಂದಿ ಮತ್ತು ಮುಂದಿನ ಗುಂಪುಗಳಿಗೆ ಮಾತ್ರ ಗೋಚರಿಸುತ್ತದೆ. ನೀವು ಖಾಸಗಿಯಾಗಿ ಹೋದರೆ ಈ ಸೆಟ್ಟಿಂಗ್ಗಳನ್ನು ಅತಿಕ್ರಮಿಸಲಾಗುತ್ತದೆ',
+ 'visible-to-other' => 'ಇತರರಿಗೆ ಗೋಚರಿಸುತ್ತದೆ',
+ 'visible-to-other-help' => 'ನಿಮ್ಮ ಖಾತೆಗೆ ಸಂಬಂಧಿಸಿದ ಇತರ ಮಾಹಿತಿಯು ಸಿಬ್ಬಂದಿ ಮತ್ತು ಮುಂದಿನ ಗುಂಪುಗಳಿಗೆ ಮಾತ್ರ ಗೋಚರಿಸುತ್ತದೆ. ನೀವು ಖಾಸಗಿ ಹೋಗಿ ಅಥವಾ ಈ ಸೆಟ್ಟಿಂಗ್ಗಳನ್ನು ಅತಿಕ್ರಮಿಸಬಹುದಾಗಿದೆ ನೀವು ಹಿಡನ್ ಹೋಗಿ ವೇಳೆ',
+ 'visible-to-profile' => 'ಪ್ರೊಫೈಲ್ಗೆ ಗೋಚರಿಸುತ್ತದೆ',
+ 'visible-to-profile-help' => 'ಸಿಬ್ಬಂದಿ ಮತ್ತು ಮುಂದಿನ ಗುಂಪುಗಳಿಗೆ ಮಾತ್ರ ನಿಮ್ಮ ಪ್ರೊಫೈಲ್ ಗೋಚರಿಸುತ್ತದೆ. ನೀವು ಖಾಸಗಿಯಾಗಿ ಹೋದರೆ ಈ ಸೆಟ್ಟಿಂಗ್ಗಳನ್ನು ಅತಿಕ್ರಮಿಸಲಾಗುತ್ತದೆ',
+ 'visible-to-request' => 'ವಿನಂತಿ ಮಾಹಿತಿಗೆ ಗೋಚರಿಸುತ್ತದೆ',
+ 'visible-to-request-help' => 'ಸಿಬ್ಬಂದಿ ಮತ್ತು ಕೆಳಗಿನ ಗುಂಪುಗಳಿಗೆ ಮಾತ್ರ ನಿಮ್ಮ ವಿನಂತಿಯ ಮಾಹಿತಿಯು ಗೋಚರಿಸುತ್ತದೆ. ನೀವು ಖಾಸಗಿಯಾಗಿ ಹೋದರೆ ಈ ಸೆಟ್ಟಿಂಗ್ಗಳನ್ನು ಅತಿಕ್ರಮಿಸಲಾಗುತ್ತದೆ',
+ 'visible-to-torrent' => 'ಟೊರೆಂಟ್ ಮಾಹಿತಿಗೆ ಗೋಚರಿಸುತ್ತದೆ',
+ 'visible-to-torrent-help' => 'ನಿಮ್ಮ ಟೊರೆಂಟ್ ಮಾಹಿತಿ ಸಿಬ್ಬಂದಿ ಮತ್ತು ಮುಂದಿನ ಗುಂಪುಗಳಿಗೆ ಮಾತ್ರ ಗೋಚರಿಸುತ್ತದೆ. ನೀವು ಖಾಸಗಿ ಹೋಗಿ ಅಥವಾ ಈ ಸೆಟ್ಟಿಂಗ್ಗಳನ್ನು ಅತಿಕ್ರಮಿಸಬಹುದಾಗಿದೆ ನೀವು ಹಿಡನ್ ಹೋಗಿ ವೇಳೆ',
+ 'warned-on' => 'ಎಚ್ಚರಿಕೆ',
+ 'warning' => 'ಎಚ್ಚರಿಕೆ',
+ 'warning-log' => 'ಎಚ್ಚರಿಕೆ ಲಾಗ್',
+ 'wishlist' => 'ಬಯಕೆಪಟ್ಟಿಗೆ',
];
diff --git a/lang/kn/validation.php b/lang/kn/validation.php
index a8369aff1..b68a0060e 100644
--- a/lang/kn/validation.php
+++ b/lang/kn/validation.php
@@ -23,108 +23,108 @@ return [
|
*/
- 'accepted' => 'ಈ :attribute ಒಪ್ಪಿಕೊಳ್ಳಬೇಕು.',
- 'active_url' => 'ಈ :attribute ಮಾನ್ಯ URL ಆಗಿಲ್ಲ. ',
- 'after' => 'ಈ :attribute ದಿನಾಂಕವು :date ನಂತರದ ದಿನಾಂಕವಾಗಿರಬೇಕು .',
- 'after_or_equal' => 'ಈ :attribute ದಿನಾಂಕವು :date ನಂತರದ ಅಥವಾ ಸಮನಾದ ದಿನಾಂಕವಾಗಿರಬೇಕು.',
- 'alpha' => 'ಈ :attribute ಅಕ್ಷರಗಳನ್ನು ಮಾತ್ರ ಹೊಂದಿರಬಹುದು.',
- 'alpha_dash' => 'ಈ :attribute ಅಕ್ಷರಗಳು, ಸಂಖ್ಯೆಗಳು, ಡ್ಯಾಶ್ಗಳು ಮತ್ತು ಅಂಡರ್ಸ್ಕೋರ್ಗಳನ್ನು ಮಾತ್ರ ಹೊಂದಿರಬಹುದು.',
- 'alpha_num' => 'ಈ :attribute ಅಕ್ಷರಗಳು ಮತ್ತು ಸಂಖ್ಯೆಗಳನ್ನು ಮಾತ್ರ ಹೊಂದಿರಬಹುದು.',
- 'array' => 'ಈ :attribute ಒಂದು ಶ್ರೇಣಿಯಾಗಿರಬೇಕು .',
- 'before' => 'ಈ :attribute ದಿನಾಂಕವು :date ಮುಂಚಿನ ದಿನಾಂಕವಾಗಿರಬೇಕು.',
+ 'accepted' => 'ಈ :attribute ಒಪ್ಪಿಕೊಳ್ಳಬೇಕು.',
+ 'active_url' => 'ಈ :attribute ಮಾನ್ಯ URL ಆಗಿಲ್ಲ. ',
+ 'after' => 'ಈ :attribute ದಿನಾಂಕವು :date ನಂತರದ ದಿನಾಂಕವಾಗಿರಬೇಕು .',
+ 'after_or_equal' => 'ಈ :attribute ದಿನಾಂಕವು :date ನಂತರದ ಅಥವಾ ಸಮನಾದ ದಿನಾಂಕವಾಗಿರಬೇಕು.',
+ 'alpha' => 'ಈ :attribute ಅಕ್ಷರಗಳನ್ನು ಮಾತ್ರ ಹೊಂದಿರಬಹುದು.',
+ 'alpha_dash' => 'ಈ :attribute ಅಕ್ಷರಗಳು, ಸಂಖ್ಯೆಗಳು, ಡ್ಯಾಶ್ಗಳು ಮತ್ತು ಅಂಡರ್ಸ್ಕೋರ್ಗಳನ್ನು ಮಾತ್ರ ಹೊಂದಿರಬಹುದು.',
+ 'alpha_num' => 'ಈ :attribute ಅಕ್ಷರಗಳು ಮತ್ತು ಸಂಖ್ಯೆಗಳನ್ನು ಮಾತ್ರ ಹೊಂದಿರಬಹುದು.',
+ 'array' => 'ಈ :attribute ಒಂದು ಶ್ರೇಣಿಯಾಗಿರಬೇಕು .',
+ 'before' => 'ಈ :attribute ದಿನಾಂಕವು :date ಮುಂಚಿನ ದಿನಾಂಕವಾಗಿರಬೇಕು.',
'before_or_equal' => 'ಈ :attribute ದಿನಾಂಕವು :date ಮುಂಚಿನ ಅಥವಾ ಸಮನಾದ ದಿನಾಂಕವಾಗಿರಬೇಕು.',
- 'between' => [
+ 'between' => [
'numeric' => 'ಈ :attribute ನಲ್ಲಿ :min ಮತ್ತು :max ನಡುವೆ ಇರಬೇಕು.',
- 'file' => 'ಈ :attribute ನಲ್ಲಿ :min ಮತ್ತು :max ಕಿಲೋಬೈಟ್ಗಳ ನಡುವೆ ಇರಬೇಕು.',
- 'string' => 'ಈ :attribute ನಲ್ಲಿ :min ಮತ್ತು :max ಅಕ್ಷರಗಳ ನಡುವೆ ಇರಬೇಕು.',
- 'array' => 'ಈ :attribute ನಲ್ಲಿ :min ಮತ್ತು :max ಐಟಂಗಳ ನಡುವೆ ಇರಬೇಕು.',
+ 'file' => 'ಈ :attribute ನಲ್ಲಿ :min ಮತ್ತು :max ಕಿಲೋಬೈಟ್ಗಳ ನಡುವೆ ಇರಬೇಕು.',
+ 'string' => 'ಈ :attribute ನಲ್ಲಿ :min ಮತ್ತು :max ಅಕ್ಷರಗಳ ನಡುವೆ ಇರಬೇಕು.',
+ 'array' => 'ಈ :attribute ನಲ್ಲಿ :min ಮತ್ತು :max ಐಟಂಗಳ ನಡುವೆ ಇರಬೇಕು.',
],
- 'boolean' => 'ಈ :attribute ಕ್ಷೇತ್ರವು ನಿಜ ಅಥವಾ ಸುಳ್ಳು ಆಗಿರಬೇಕು.',
- 'confirmed' => 'ಈ :attribute ದೃಢೀಕರಣವು ಹೊಂದಿಕೆಯಾಗುವುದಿಲ್ಲ.',
- 'date' => 'ಈ :attribute ಮಾನ್ಯ ದಿನಾಂಕವಲ್ಲ.',
- 'date_equals' => 'ಈ :attribute ದಿನಾಂಕವು :date ಸಮನಾದ ದಿನಾಂಕವಾಗಿರಬೇಕು.',
- 'date_format' => 'ಈ :attribute ನ :format ಸ್ವರೂಪಕ್ಕೆ ಹೊಂದಿಕೆಯಾಗುವುದಿಲ್ಲ.',
- 'different' => 'ಈ :attribute ಮತ್ತು :other ವಿಭಿನ್ನವಾಗಿರಬೇಕು.',
- 'digits' => 'ಈ :attribute ನಲ್ಲಿ :digits ಸಂಖ್ಯೆಗಳು ಇರಬೇಕು.',
+ 'boolean' => 'ಈ :attribute ಕ್ಷೇತ್ರವು ನಿಜ ಅಥವಾ ಸುಳ್ಳು ಆಗಿರಬೇಕು.',
+ 'confirmed' => 'ಈ :attribute ದೃಢೀಕರಣವು ಹೊಂದಿಕೆಯಾಗುವುದಿಲ್ಲ.',
+ 'date' => 'ಈ :attribute ಮಾನ್ಯ ದಿನಾಂಕವಲ್ಲ.',
+ 'date_equals' => 'ಈ :attribute ದಿನಾಂಕವು :date ಸಮನಾದ ದಿನಾಂಕವಾಗಿರಬೇಕು.',
+ 'date_format' => 'ಈ :attribute ನ :format ಸ್ವರೂಪಕ್ಕೆ ಹೊಂದಿಕೆಯಾಗುವುದಿಲ್ಲ.',
+ 'different' => 'ಈ :attribute ಮತ್ತು :other ವಿಭಿನ್ನವಾಗಿರಬೇಕು.',
+ 'digits' => 'ಈ :attribute ನಲ್ಲಿ :digits ಸಂಖ್ಯೆಗಳು ಇರಬೇಕು.',
'digits_between' => 'ಈ :attribute ನಲ್ಲಿ :min ಮತ್ತು :max ಸಂಖ್ಯೆಗಳ ನಡುವೆ ಇರಬೇಕು .',
- 'dimensions' => 'ಈ :attribute ಅಮಾನ್ಯವಾದ ಚಿತ್ರ ಆಯಾಮಗಳನ್ನು ಹೊಂದಿದೆ.',
- 'distinct' => 'ಈ :attribute ಕ್ಷೇತ್ರವು ನಕಲಿ ಮೌಲ್ಯವನ್ನು ಹೊಂದಿದೆ.',
- 'email' => 'ಈ :attribute ಮಾನ್ಯವಾದ ಇಮೇಲ್ ವಿಳಾಸವಾಗಿರಬೇಕು.',
- 'exists' => 'ಈ ಆಯ್ಕೆಮಾಡಲಾದ :attribute ಅಮಾನ್ಯವಾಗಿದೆ .',
- 'file' => 'ಈ :attribute ಫೈಲ್ ಆಗಿರಬೇಕು.',
- 'filled' => 'ಈ :attribute ಕ್ಷೇತ್ರವು ಮೌಲ್ಯವನ್ನು ಹೊಂದಿರಬೇಕು.',
- 'gt' => [
+ 'dimensions' => 'ಈ :attribute ಅಮಾನ್ಯವಾದ ಚಿತ್ರ ಆಯಾಮಗಳನ್ನು ಹೊಂದಿದೆ.',
+ 'distinct' => 'ಈ :attribute ಕ್ಷೇತ್ರವು ನಕಲಿ ಮೌಲ್ಯವನ್ನು ಹೊಂದಿದೆ.',
+ 'email' => 'ಈ :attribute ಮಾನ್ಯವಾದ ಇಮೇಲ್ ವಿಳಾಸವಾಗಿರಬೇಕು.',
+ 'exists' => 'ಈ ಆಯ್ಕೆಮಾಡಲಾದ :attribute ಅಮಾನ್ಯವಾಗಿದೆ .',
+ 'file' => 'ಈ :attribute ಫೈಲ್ ಆಗಿರಬೇಕು.',
+ 'filled' => 'ಈ :attribute ಕ್ಷೇತ್ರವು ಮೌಲ್ಯವನ್ನು ಹೊಂದಿರಬೇಕು.',
+ 'gt' => [
'numeric' => 'ಈ :attribute ನಲ್ಲಿ :value ಗಿಂತ ಹೆಚ್ಚು ಇರಬೇಕು.',
- 'file' => 'ಈ :attribute ನಲ್ಲಿ :value ಕಿಲೋಬೈಟ್ಗಳಿಗಿಂತ ಹೆಚ್ಚು ಇರಬೇಕು.',
- 'string' => 'ಈ :attribute ನಲ್ಲಿ :value ಅಕ್ಷರಗಳಿಗಿಂತ ಹೆಚ್ಚು ಇರಬೇಕು.',
- 'array' => 'ಈ :attribute ನಲ್ಲಿ :value ಐಟಂಗಳಿಗಿಂತ ಹೆಚ್ಚು ಇರಬೇಕು.',
+ 'file' => 'ಈ :attribute ನಲ್ಲಿ :value ಕಿಲೋಬೈಟ್ಗಳಿಗಿಂತ ಹೆಚ್ಚು ಇರಬೇಕು.',
+ 'string' => 'ಈ :attribute ನಲ್ಲಿ :value ಅಕ್ಷರಗಳಿಗಿಂತ ಹೆಚ್ಚು ಇರಬೇಕು.',
+ 'array' => 'ಈ :attribute ನಲ್ಲಿ :value ಐಟಂಗಳಿಗಿಂತ ಹೆಚ್ಚು ಇರಬೇಕು.',
],
'gte' => [
'numeric' => 'ಈ :attribute ನಲ್ಲಿ :value ಹೆಚ್ಚು ಅಥವಾ ಸಮನಾಗಿರಬೇಕು.',
- 'file' => 'ಈ :attribute ನಲ್ಲಿ :value ಕಿಲೋಬೈಟ್ಗಳಿಗಿಂತ ಹೆಚ್ಚು ಅಥವಾ ಸಮನಾಗಿರಬೇಕು.',
- 'string' => 'ಈ :attribute ನಲ್ಲಿ :value ಅಕ್ಷರಗಳಿಗಿಂತ ಹೆಚ್ಚು ಅಥವಾ ಸಮನಾಗಿರಬೇಕು.',
- 'array' => 'ಈ :attribute ನಲ್ಲಿ :value ಐಟಂಗಳಿಗಿಂತ ಹೆಚ್ಚು ಅಥವಾ ಸಮನಾಗಿರಬೇಕು .',
+ 'file' => 'ಈ :attribute ನಲ್ಲಿ :value ಕಿಲೋಬೈಟ್ಗಳಿಗಿಂತ ಹೆಚ್ಚು ಅಥವಾ ಸಮನಾಗಿರಬೇಕು.',
+ 'string' => 'ಈ :attribute ನಲ್ಲಿ :value ಅಕ್ಷರಗಳಿಗಿಂತ ಹೆಚ್ಚು ಅಥವಾ ಸಮನಾಗಿರಬೇಕು.',
+ 'array' => 'ಈ :attribute ನಲ್ಲಿ :value ಐಟಂಗಳಿಗಿಂತ ಹೆಚ್ಚು ಅಥವಾ ಸಮನಾಗಿರಬೇಕು .',
],
- 'image' => 'ಈ :attribute ಒಂದು ಚಿತ್ರವಾಗಿರಬೇಕು.',
- 'in' => 'ಈ ಆಯ್ಕೆಮಾಡಲಾದ :attribute ಅಮಾನ್ಯವಾಗಿದೆ.',
+ 'image' => 'ಈ :attribute ಒಂದು ಚಿತ್ರವಾಗಿರಬೇಕು.',
+ 'in' => 'ಈ ಆಯ್ಕೆಮಾಡಲಾದ :attribute ಅಮಾನ್ಯವಾಗಿದೆ.',
'in_array' => 'ಈ :attribute ಕ್ಷೇತ್ರ ಅಸ್ತಿತ್ವದಲ್ಲಿಲ್ಲ :other ನಲ್ಲಿ.',
- 'integer' => 'ಈ :attribute ಒಂದು ಪೂರ್ಣಾಂಕವಾಗಿರಬೇಕು.',
- 'ip' => 'ಈ :attribute ಮಾನ್ಯವಾದ IP ವಿಳಾಸವಾಗಿರಬೇಕು.',
- 'ipv4' => 'ಈ :attribute ಮಾನ್ಯವಾದ IPv4 ವಿಳಾಸವಾಗಿರಬೇಕು.',
- 'ipv6' => 'ಈ :attribute ಮಾನ್ಯವಾದ IPv6 ವಿಳಾಸವಾಗಿರಬೇಕು.',
- 'json' => 'ಈ :attribute ಮಾನ್ಯವಾದ JSON ಸ್ಟ್ರಿಂಗ್ ಆಗಿರಬೇಕು .',
- 'lt' => [
+ 'integer' => 'ಈ :attribute ಒಂದು ಪೂರ್ಣಾಂಕವಾಗಿರಬೇಕು.',
+ 'ip' => 'ಈ :attribute ಮಾನ್ಯವಾದ IP ವಿಳಾಸವಾಗಿರಬೇಕು.',
+ 'ipv4' => 'ಈ :attribute ಮಾನ್ಯವಾದ IPv4 ವಿಳಾಸವಾಗಿರಬೇಕು.',
+ 'ipv6' => 'ಈ :attribute ಮಾನ್ಯವಾದ IPv6 ವಿಳಾಸವಾಗಿರಬೇಕು.',
+ 'json' => 'ಈ :attribute ಮಾನ್ಯವಾದ JSON ಸ್ಟ್ರಿಂಗ್ ಆಗಿರಬೇಕು .',
+ 'lt' => [
'numeric' => 'ಈ :attribute ನಲ್ಲಿ :value ಗಿಂತ ಕಡಿಮೆ ಇರಬೇಕು.',
- 'file' => 'ಈ :attribute ನಲ್ಲಿ :value ಕಿಲೋಬೈಟ್ಗಳಿಗಿಂತ ಕಡಿಮೆ ಇರಬೇಕು.',
- 'string' => 'ಈ :attribute ನಲ್ಲಿ :value ಅಕ್ಷರಗಳಿಗಿಂತ ಕಡಿಮೆ ಇರಬೇಕು.',
- 'array' => 'ಈ :attribute ನಲ್ಲಿ :value ಐಟಂಗಳಿಗಿಂತ ಕಡಿಮೆ ಇರಬೇಕು.',
+ 'file' => 'ಈ :attribute ನಲ್ಲಿ :value ಕಿಲೋಬೈಟ್ಗಳಿಗಿಂತ ಕಡಿಮೆ ಇರಬೇಕು.',
+ 'string' => 'ಈ :attribute ನಲ್ಲಿ :value ಅಕ್ಷರಗಳಿಗಿಂತ ಕಡಿಮೆ ಇರಬೇಕು.',
+ 'array' => 'ಈ :attribute ನಲ್ಲಿ :value ಐಟಂಗಳಿಗಿಂತ ಕಡಿಮೆ ಇರಬೇಕು.',
],
- 'lte' => [
+ 'lte' => [
'numeric' => 'ಈ :attribute ನಲ್ಲಿ :value ಗಿಂತ ಕಡಿಮೆ ಅಥವಾ ಸಮನಾಗಿರಬೇಕು.',
- 'file' => 'ಈ :attribute ನಲ್ಲಿ :value ಕಿಲೋಬೈಟ್ಗಳಿಗಿಂತ ಕಡಿಮೆ ಅಥವಾ ಸಮನಾಗಿರಬೇಕು. ',
- 'string' => 'ಈ :attribute ನಲ್ಲಿ :value ಅಕ್ಷರಗಳಿಗಿಂತ ಕಡಿಮೆ ಅಥವಾ ಸಮನಾಗಿರಬೇಕು.',
- 'array' => 'ಈ :attribute ನಲ್ಲಿ :value ಐಟಂಗಳಿಗಿಂತ ಕಡಿಮೆ ಅಥವಾ ಸಮನಾಗಿರಬೇಕು .',
+ 'file' => 'ಈ :attribute ನಲ್ಲಿ :value ಕಿಲೋಬೈಟ್ಗಳಿಗಿಂತ ಕಡಿಮೆ ಅಥವಾ ಸಮನಾಗಿರಬೇಕು. ',
+ 'string' => 'ಈ :attribute ನಲ್ಲಿ :value ಅಕ್ಷರಗಳಿಗಿಂತ ಕಡಿಮೆ ಅಥವಾ ಸಮನಾಗಿರಬೇಕು.',
+ 'array' => 'ಈ :attribute ನಲ್ಲಿ :value ಐಟಂಗಳಿಗಿಂತ ಕಡಿಮೆ ಅಥವಾ ಸಮನಾಗಿರಬೇಕು .',
],
- 'max' => [
+ 'max' => [
'numeric' => 'ಈ :attribute ನಲ್ಲಿ :max ಗಿಂತ ಹೆಚ್ಚು ಇರಬಾರದು .',
- 'file' => 'ಈ :attribute ನಲ್ಲಿ :max ಕಿಲೋಬೈಟ್ಗಳಿಗಿಂತ ಹೆಚ್ಚು ಇರಬಾರದು .',
- 'string' => 'ಈ :attribute ನಲ್ಲಿ :max ಅಕ್ಷರಗಳಿಗಿಂತ ಹೆಚ್ಚು ಇರಬಾರದು .',
- 'array' => 'ಈ :attribute ನಲ್ಲಿ :max ಐಟಂಗಳಿಗಿಂತ ಹೆಚ್ಚು ಇರಬಾರದು .',
+ 'file' => 'ಈ :attribute ನಲ್ಲಿ :max ಕಿಲೋಬೈಟ್ಗಳಿಗಿಂತ ಹೆಚ್ಚು ಇರಬಾರದು .',
+ 'string' => 'ಈ :attribute ನಲ್ಲಿ :max ಅಕ್ಷರಗಳಿಗಿಂತ ಹೆಚ್ಚು ಇರಬಾರದು .',
+ 'array' => 'ಈ :attribute ನಲ್ಲಿ :max ಐಟಂಗಳಿಗಿಂತ ಹೆಚ್ಚು ಇರಬಾರದು .',
],
- 'mimes' => 'ಈ :attribute ನಲ್ಲಿ :values ಬಗೆಯ ಫೈಲ್ ಆಗಿರಬೇಕು.',
- 'mimetypes'=> 'ಈ :attribute ನಲ್ಲಿ :values ಬಗೆಯ ಫೈಲ್ ಆಗಿರಬೇಕು.',
- 'min' => [
+ 'mimes' => 'ಈ :attribute ನಲ್ಲಿ :values ಬಗೆಯ ಫೈಲ್ ಆಗಿರಬೇಕು.',
+ 'mimetypes' => 'ಈ :attribute ನಲ್ಲಿ :values ಬಗೆಯ ಫೈಲ್ ಆಗಿರಬೇಕು.',
+ 'min' => [
'numeric' => 'ಈ :attribute ಕನಿಷ್ಠ :min ಇರಬೇಕು.',
- 'file' => 'ಈ :attribute ಕನಿಷ್ಠ :min ಕಿಲೋಬೈಟ್ಗಳಿರಬೇಕು. ',
- 'string' => 'ಈ :attribute ಕನಿಷ್ಠ :min ಅಕ್ಷರಗಳಿರಬೇಕು.',
- 'array' => 'ಈ :attribute ಕನಿಷ್ಠ :min ಐಟಂಗಳಿರಬೇಕು. ',
+ 'file' => 'ಈ :attribute ಕನಿಷ್ಠ :min ಕಿಲೋಬೈಟ್ಗಳಿರಬೇಕು. ',
+ 'string' => 'ಈ :attribute ಕನಿಷ್ಠ :min ಅಕ್ಷರಗಳಿರಬೇಕು.',
+ 'array' => 'ಈ :attribute ಕನಿಷ್ಠ :min ಐಟಂಗಳಿರಬೇಕು. ',
],
- 'not_in' => 'ಈ ಆಯ್ಕೆಮಾಡಲಾದ :attribute ಅಮಾನ್ಯವಾಗಿದೆ.',
- 'not_regex' => 'ಈ :attribute ಸ್ವರೂಪ ಅಮಾನ್ಯವಾಗಿದೆ.',
- 'numeric' => 'ಈ :attribute must be a number.',
- 'present' => 'ಈ :attribute ಕ್ಷೇತ್ರವು ಅಸ್ತಿತ್ವದಲ್ಲಿರಬೇಕು.',
- 'regex' => 'ಈ :attribute ಸ್ವರೂಪ ಅಮಾನ್ಯವಾಗಿದೆ.',
- 'required' => 'ಈ :attribute ಕ್ಷೇತ್ರ ಅಗತ್ಯವಿದೆ.',
- 'required_if' => 'ಈ :attribute ಕ್ಷೇತ್ರ ಅಗತ್ಯವಿದೆ ಯಾವಾಗ :other ನಲ್ಲಿ :value.',
- 'required_unless' => 'ಈ :attribute ಕ್ಷೇತ್ರ ಅಗತ್ಯವಿದೆ unless :other ನಲ್ಲಿ :values ಹೊರತುಪಡಿಸಿ .',
- 'required_with' => 'ಈ :attribute ಕ್ಷೇತ್ರ ಅಗತ್ಯವಿದೆ ಯಾವಾಗ :values ಇರುತ್ತದೆ.',
- 'required_with_all' => 'ಈ :attribute ಕ್ಷೇತ್ರ ಅಗತ್ಯವಿದೆ ಯಾವಾಗ :values ಇರುತ್ತವೆ.',
- 'required_without' => 'ಈ :attribute ಕ್ಷೇತ್ರ ಅಗತ್ಯವಿದೆ ಯಾವಾಗ :values ಇರುವುದಿಲ್ಲ .',
+ 'not_in' => 'ಈ ಆಯ್ಕೆಮಾಡಲಾದ :attribute ಅಮಾನ್ಯವಾಗಿದೆ.',
+ 'not_regex' => 'ಈ :attribute ಸ್ವರೂಪ ಅಮಾನ್ಯವಾಗಿದೆ.',
+ 'numeric' => 'ಈ :attribute must be a number.',
+ 'present' => 'ಈ :attribute ಕ್ಷೇತ್ರವು ಅಸ್ತಿತ್ವದಲ್ಲಿರಬೇಕು.',
+ 'regex' => 'ಈ :attribute ಸ್ವರೂಪ ಅಮಾನ್ಯವಾಗಿದೆ.',
+ 'required' => 'ಈ :attribute ಕ್ಷೇತ್ರ ಅಗತ್ಯವಿದೆ.',
+ 'required_if' => 'ಈ :attribute ಕ್ಷೇತ್ರ ಅಗತ್ಯವಿದೆ ಯಾವಾಗ :other ನಲ್ಲಿ :value.',
+ 'required_unless' => 'ಈ :attribute ಕ್ಷೇತ್ರ ಅಗತ್ಯವಿದೆ unless :other ನಲ್ಲಿ :values ಹೊರತುಪಡಿಸಿ .',
+ 'required_with' => 'ಈ :attribute ಕ್ಷೇತ್ರ ಅಗತ್ಯವಿದೆ ಯಾವಾಗ :values ಇರುತ್ತದೆ.',
+ 'required_with_all' => 'ಈ :attribute ಕ್ಷೇತ್ರ ಅಗತ್ಯವಿದೆ ಯಾವಾಗ :values ಇರುತ್ತವೆ.',
+ 'required_without' => 'ಈ :attribute ಕ್ಷೇತ್ರ ಅಗತ್ಯವಿದೆ ಯಾವಾಗ :values ಇರುವುದಿಲ್ಲ .',
'required_without_all' => 'ಈ :attribute ಕ್ಷೇತ್ರ ಅಗತ್ಯವಿದೆ ಯಾವಾಗ :values ಯಾವುದೂ ಇರುವುದಿಲ್ಲ .',
- 'same' => 'ಈ :attribute ಮತ್ತು :other ಹೊಂದಾಣಿಕೆಯಾಗಲೇಬೇಕು.',
- 'size' => [
+ 'same' => 'ಈ :attribute ಮತ್ತು :other ಹೊಂದಾಣಿಕೆಯಾಗಲೇಬೇಕು.',
+ 'size' => [
'numeric' => 'ಈ :attribute ನಲ್ಲಿ :size ಇರಲೇಬೇಕು. ',
- 'file' => 'ಈ :attribute ನಲ್ಲಿ :size ಕಿಲೋಬೈಟ್ಗಳಿರಲೇಬೇಕು.',
- 'string' => 'ಈ :attribute ನಲ್ಲಿ :size ಅಕ್ಷರಗಳಿರಲೇಬೇಕು.',
- 'array' => 'ಈ :attribute ನಲ್ಲಿ :size ಐಟಂಗಳಿರಲೇಬೇಕು.',
+ 'file' => 'ಈ :attribute ನಲ್ಲಿ :size ಕಿಲೋಬೈಟ್ಗಳಿರಲೇಬೇಕು.',
+ 'string' => 'ಈ :attribute ನಲ್ಲಿ :size ಅಕ್ಷರಗಳಿರಲೇಬೇಕು.',
+ 'array' => 'ಈ :attribute ನಲ್ಲಿ :size ಐಟಂಗಳಿರಲೇಬೇಕು.',
],
'starts_with' => 'ಈ :attribute ಕೆಳಗಿನವುಗಳಲ್ಲಿ ಒಂದರಿಂದ ಪ್ರಾರಂಭಿಸಬೇಕು : :values',
- 'string' => 'ಈ :attribute ಸ್ಟ್ರಿಂಗ್ ಆಗಿರಬೇಕು.',
- 'timezone' => 'ಈ :attribute ಮಾನ್ಯವಾದ ವಲಯವಾಗಿರಬೇಕು.',
- 'unique' => 'ಈ :attribute ಈಗಾಗಲೇ ತೆಗೆದುಕೊಂಡಾಗಿದೆ .',
- 'uploaded' => 'ಈ :attribute ಅಪ್ಲೋಡ್ ಮಾಡಲು ವಿಫಲವಾಗಿದೆ.',
- 'url' => 'ಈ :attribute ಸ್ವರೂಪವು ಅಮಾನ್ಯವಾಗಿದೆ.',
- 'uuid' => 'ಈ :attribute ಮಾನ್ಯವಾದ UUID ಆಗಿರಬೇಕು.',
+ 'string' => 'ಈ :attribute ಸ್ಟ್ರಿಂಗ್ ಆಗಿರಬೇಕು.',
+ 'timezone' => 'ಈ :attribute ಮಾನ್ಯವಾದ ವಲಯವಾಗಿರಬೇಕು.',
+ 'unique' => 'ಈ :attribute ಈಗಾಗಲೇ ತೆಗೆದುಕೊಂಡಾಗಿದೆ .',
+ 'uploaded' => 'ಈ :attribute ಅಪ್ಲೋಡ್ ಮಾಡಲು ವಿಫಲವಾಗಿದೆ.',
+ 'url' => 'ಈ :attribute ಸ್ವರೂಪವು ಅಮಾನ್ಯವಾಗಿದೆ.',
+ 'uuid' => 'ಈ :attribute ಮಾನ್ಯವಾದ UUID ಆಗಿರಬೇಕು.',
/*
|--------------------------------------------------------------------------
@@ -155,34 +155,34 @@ return [
*/
'attributes' => [
- 'name' => 'ಹೆಸರು',
- 'username' => 'ಬಳಕೆದಾರ ಹೆಸರು',
- 'email' => 'ಇಮೇಲ್',
- 'first_name' => 'ಮೊದಲ ಹೆಸರು',
- 'last_name' => 'ಕೊನೆಯ ಹೆಸರು',
- 'password' => 'ಪಾಸ್ವರ್ಡ್',
+ 'name' => 'ಹೆಸರು',
+ 'username' => 'ಬಳಕೆದಾರ ಹೆಸರು',
+ 'email' => 'ಇಮೇಲ್',
+ 'first_name' => 'ಮೊದಲ ಹೆಸರು',
+ 'last_name' => 'ಕೊನೆಯ ಹೆಸರು',
+ 'password' => 'ಪಾಸ್ವರ್ಡ್',
'password_confirmation' => ' ಪಾಸ್ವರ್ಡ್ ದೃಢೀಕರಿಸಿ',
- 'city' => 'ನಗರ',
- 'country' => 'ದೇಶ',
- 'address' => 'ವಿಳಾಸ',
- 'phone' => 'ಫೋನ್',
- 'mobile' => 'ಮೊಬೈಲ್',
- 'age' => 'ವಯಸ್ಸು',
- 'sex' => 'ಲಿಂಗ',
- 'gender' => 'ಲಿಂಗ',
- 'day' => 'ದಿನ',
- 'month' => 'ತಿಂಗಳು',
- 'year' => 'ವರ್ಷ',
- 'hour' => 'ಗಂಟೆ',
- 'minute' => 'ನಿಮಿಷ',
- 'second' => 'ಸೆಕೆ೦ಡು',
- 'title' => 'ಶೀರೋನಾಮ',
- 'content' => 'ವಿಷಯ',
- 'description' => 'ವಿವರಣೆ',
- 'excerpt' => 'ಆಯ್ದ ಭಾಗಗಳು',
- 'date' => 'ದಿನಾಂಕ',
- 'time' => 'ಸಮಯ',
- 'available' => 'ಲಭ್ಯವಿದೆ',
- 'size' => 'ಗಾತ್ರ',
+ 'city' => 'ನಗರ',
+ 'country' => 'ದೇಶ',
+ 'address' => 'ವಿಳಾಸ',
+ 'phone' => 'ಫೋನ್',
+ 'mobile' => 'ಮೊಬೈಲ್',
+ 'age' => 'ವಯಸ್ಸು',
+ 'sex' => 'ಲಿಂಗ',
+ 'gender' => 'ಲಿಂಗ',
+ 'day' => 'ದಿನ',
+ 'month' => 'ತಿಂಗಳು',
+ 'year' => 'ವರ್ಷ',
+ 'hour' => 'ಗಂಟೆ',
+ 'minute' => 'ನಿಮಿಷ',
+ 'second' => 'ಸೆಕೆ೦ಡು',
+ 'title' => 'ಶೀರೋನಾಮ',
+ 'content' => 'ವಿಷಯ',
+ 'description' => 'ವಿವರಣೆ',
+ 'excerpt' => 'ಆಯ್ದ ಭಾಗಗಳು',
+ 'date' => 'ದಿನಾಂಕ',
+ 'time' => 'ಸಮಯ',
+ 'available' => 'ಲಭ್ಯವಿದೆ',
+ 'size' => 'ಗಾತ್ರ',
],
];
diff --git a/lang/ko/articles.php b/lang/ko/articles.php
index 59047361e..04c636aa5 100644
--- a/lang/ko/articles.php
+++ b/lang/ko/articles.php
@@ -12,8 +12,8 @@
*/
return [
- 'articles' => '조항',
+ 'articles' => '조항',
'meta-articles' => '트래커 및 커뮤니티에 대한 기사 및 뉴스',
- 'published-at' => '게시 날짜',
- 'read-more' => '더 읽기',
+ 'published-at' => '게시 날짜',
+ 'read-more' => '더 읽기',
];
diff --git a/lang/ko/auth.php b/lang/ko/auth.php
index 84af20502..d10e27da4 100644
--- a/lang/ko/auth.php
+++ b/lang/ko/auth.php
@@ -23,6 +23,6 @@ return [
|
*/
- 'failed' => '제출된 인증 정보가 기록되어 있는 정보와 일치하지 않습니다.',
+ 'failed' => '제출된 인증 정보가 기록되어 있는 정보와 일치하지 않습니다.',
'throttle' => '너무 많은 로그인을 시도하였습니다. :seconds 초 후에 다시 시도하십시요.',
];
diff --git a/lang/ko/backup.php b/lang/ko/backup.php
index 896d04bcc..6caf30082 100644
--- a/lang/ko/backup.php
+++ b/lang/ko/backup.php
@@ -12,32 +12,32 @@
*/
return [
- 'actions' => '행위',
- 'backup' => '지원',
- 'backup_doesnt_exist' => '백업 파일이 존재하지 않습니다.',
- 'create_a_new_backup' => '전체 백업 만들기',
- 'create_a_new_files_backup' => '파일 백업 생성',
- 'create_a_new_db_backup' => '데이터베이스 백업 만들기',
- 'create_confirmation_message' => '3 초 후에 페이지를 다시로드합니다.',
- 'create_confirmation_title' => '백업 완료',
- 'create_error_message' => '백업 파일을 만들 수 없습니다.',
- 'create_error_title' => '백업 오류',
- 'create_warning_message' => '백업이 생성되지 않았을 수 있습니다. 자세한 내용은 로그 파일을 확인하십시오.',
- 'create_warning_title' => '알수없는 오류',
- 'date' => '날짜',
- 'delete' => '지우다',
- 'delete_cancel_message' => '백업 파일이 삭제되지 않았습니다.',
- 'delete_cancel_title' => '괜찮아',
- 'delete_confirm' => '이 백업 파일을 삭제 하시겠습니까?',
- 'delete_confirmation_message' => '백업 파일이 삭제되었습니다.',
- 'delete_confirmation_title' => '끝난',
- 'delete_error_message' => '백업 파일이 삭제되지 않았습니다.',
- 'delete_error_title' => '오류',
- 'download' => '다운로드',
- 'existing_backups' => '기존 백업',
- 'file_size' => '파일 크기',
- 'location' => '위치',
- 'manager' => '매니저',
- 'no_disks_configured' => 'config/backup.php 에 백업 디스크가 구성되어 있지 않습니다.',
+ 'actions' => '행위',
+ 'backup' => '지원',
+ 'backup_doesnt_exist' => '백업 파일이 존재하지 않습니다.',
+ 'create_a_new_backup' => '전체 백업 만들기',
+ 'create_a_new_files_backup' => '파일 백업 생성',
+ 'create_a_new_db_backup' => '데이터베이스 백업 만들기',
+ 'create_confirmation_message' => '3 초 후에 페이지를 다시로드합니다.',
+ 'create_confirmation_title' => '백업 완료',
+ 'create_error_message' => '백업 파일을 만들 수 없습니다.',
+ 'create_error_title' => '백업 오류',
+ 'create_warning_message' => '백업이 생성되지 않았을 수 있습니다. 자세한 내용은 로그 파일을 확인하십시오.',
+ 'create_warning_title' => '알수없는 오류',
+ 'date' => '날짜',
+ 'delete' => '지우다',
+ 'delete_cancel_message' => '백업 파일이 삭제되지 않았습니다.',
+ 'delete_cancel_title' => '괜찮아',
+ 'delete_confirm' => '이 백업 파일을 삭제 하시겠습니까?',
+ 'delete_confirmation_message' => '백업 파일이 삭제되었습니다.',
+ 'delete_confirmation_title' => '끝난',
+ 'delete_error_message' => '백업 파일이 삭제되지 않았습니다.',
+ 'delete_error_title' => '오류',
+ 'download' => '다운로드',
+ 'existing_backups' => '기존 백업',
+ 'file_size' => '파일 크기',
+ 'location' => '위치',
+ 'manager' => '매니저',
+ 'no_disks_configured' => 'config/backup.php 에 백업 디스크가 구성되어 있지 않습니다.',
'only_local_downloads_supported' => '로컬 파일 시스템에서만 다운로드가 지원됩니다.',
];
diff --git a/lang/ko/blocks.php b/lang/ko/blocks.php
index 0e2a8ba76..2bc1311e1 100644
--- a/lang/ko/blocks.php
+++ b/lang/ko/blocks.php
@@ -12,19 +12,19 @@
*/
return [
- 'chatbox' => '대화 상자',
- 'click' => '클릭',
- 'to-enable-editor' => '편집기 사용',
- 'featured-by' => '추천자',
- 'featured-torrents' => '특집 토렌트',
+ 'chatbox' => '대화 상자',
+ 'click' => '클릭',
+ 'to-enable-editor' => '편집기 사용',
+ 'featured-by' => '추천자',
+ 'featured-torrents' => '특집 토렌트',
'featured-torrents-intro' => '최대한 특집을 활용하세요!',
- 'featured-until' => '이 토렌트의 특집 기간',
- 'top-torrents' => '탑 토렌트',
- 'latest-posts' => '최근 게시물',
- 'latest-topics' => '최신 토픽',
- 'active-in-last' => '마지막 활동',
- 'users-online' => '온라인 사용자',
- 'check-news' => '뉴스 (매일 확인)',
- 'new-news' => '새로운 뉴스',
- 'new-torrents' => '새로운 토렌트',
+ 'featured-until' => '이 토렌트의 특집 기간',
+ 'top-torrents' => '탑 토렌트',
+ 'latest-posts' => '최근 게시물',
+ 'latest-topics' => '최신 토픽',
+ 'active-in-last' => '마지막 활동',
+ 'users-online' => '온라인 사용자',
+ 'check-news' => '뉴스 (매일 확인)',
+ 'new-news' => '새로운 뉴스',
+ 'new-torrents' => '새로운 토렌트',
];
diff --git a/lang/ko/bon.php b/lang/ko/bon.php
index f9409b682..b336911f6 100644
--- a/lang/ko/bon.php
+++ b/lang/ko/bon.php
@@ -12,44 +12,44 @@
*/
return [
- 'activated' => '활성화 됨',
- 'active' => '활성화되었습니다!',
- 'amount' => '양',
- 'bon' => '보너스 포인트',
- 'bonus' => '보너스',
- 'date' => '날짜',
- 'earning' => '적립',
- 'earning-rate' => '적립 비율에 따라 시간당 다음과 같은 수입을 올릴 수 있습니다.',
- 'earnings' => '수입',
- 'exchange' => '교환',
- 'exchange-warning' => '교환은 되돌릴수 없습니다. 교환하기 전에 선택 사항을 다시 확인하십시오.',
- 'extended-stats' => '확장 통계',
- 'gift' => '선물',
- 'gift-bonus' => '선물 보너스 포인트',
- 'gift-to' => '선물 보너스 포인트',
- 'gifts' => '선물',
- 'item' => '아이템',
- 'no-refund' => '환불 불가!',
- 'per-day' => '하루당 포인트',
- 'per-hour' => '시간당 포인트',
- 'per-minute' => '분당 포인트',
- 'per-month' => '월간 포인트',
- 'per-second' => '초당 포인트',
- 'per-week' => '주당 포인트',
- 'per-year' => '연간 포인트',
- 'points' => '포인트',
- 'receiver' => '리시버',
- 'review-seeds' => '모든 시드 토렌트 검토',
- 'send-gift' => '선물을 보내기',
- 'sender' => '센더',
- 'store' => '스토어',
- 'tips' => '팁',
- 'total' => '전체 수익',
- 'total-gifts' => '총 보너스 선물',
- 'total-tips' => '총 보너스 팁',
+ 'activated' => '활성화 됨',
+ 'active' => '활성화되었습니다!',
+ 'amount' => '양',
+ 'bon' => '보너스 포인트',
+ 'bonus' => '보너스',
+ 'date' => '날짜',
+ 'earning' => '적립',
+ 'earning-rate' => '적립 비율에 따라 시간당 다음과 같은 수입을 올릴 수 있습니다.',
+ 'earnings' => '수입',
+ 'exchange' => '교환',
+ 'exchange-warning' => '교환은 되돌릴수 없습니다. 교환하기 전에 선택 사항을 다시 확인하십시오.',
+ 'extended-stats' => '확장 통계',
+ 'gift' => '선물',
+ 'gift-bonus' => '선물 보너스 포인트',
+ 'gift-to' => '선물 보너스 포인트',
+ 'gifts' => '선물',
+ 'item' => '아이템',
+ 'no-refund' => '환불 불가!',
+ 'per-day' => '하루당 포인트',
+ 'per-hour' => '시간당 포인트',
+ 'per-minute' => '분당 포인트',
+ 'per-month' => '월간 포인트',
+ 'per-second' => '초당 포인트',
+ 'per-week' => '주당 포인트',
+ 'per-year' => '연간 포인트',
+ 'points' => '포인트',
+ 'receiver' => '리시버',
+ 'review-seeds' => '모든 시드 토렌트 검토',
+ 'send-gift' => '선물을 보내기',
+ 'sender' => '센더',
+ 'store' => '스토어',
+ 'tips' => '팁',
+ 'total' => '전체 수익',
+ 'total-gifts' => '총 보너스 선물',
+ 'total-tips' => '총 보너스 팁',
'you-have-received-gifts' => '선물을 받았습니다.',
- 'you-have-sent-gifts' => '선물을 보냈습니다.',
- 'you-have-received-tips' => '팁을 보냈습니다.',
- 'you-have-sent-tips' => '팁을 보냈습니다.',
- 'your-points' => '귀하의 포인트',
+ 'you-have-sent-gifts' => '선물을 보냈습니다.',
+ 'you-have-received-tips' => '팁을 보냈습니다.',
+ 'you-have-sent-tips' => '팁을 보냈습니다.',
+ 'your-points' => '귀하의 포인트',
];
diff --git a/lang/ko/bot.php b/lang/ko/bot.php
index 4768d7ec6..8ec16a975 100644
--- a/lang/ko/bot.php
+++ b/lang/ko/bot.php
@@ -12,15 +12,15 @@
*/
return [
- 'about' => '',
- 'bot' => '봇',
- 'bots' => '봇',
- 'color' => '색깔',
- 'command' => '명령',
- 'edit-bot' => '봇 편집',
+ 'about' => '',
+ 'bot' => '봇',
+ 'bots' => '봇',
+ 'color' => '색깔',
+ 'command' => '명령',
+ 'edit-bot' => '봇 편집',
'emoji-code' => '그림 이모티콘 코드',
- 'help' => '도움',
- 'icon' => '아이콘',
- 'info' => '정보',
- 'name' => '이름',
+ 'help' => '도움',
+ 'icon' => '아이콘',
+ 'info' => '정보',
+ 'name' => '이름',
];
diff --git a/lang/ko/bug.php b/lang/ko/bug.php
index 9b4b5cd18..098def6fb 100644
--- a/lang/ko/bug.php
+++ b/lang/ko/bug.php
@@ -12,15 +12,15 @@
*/
return [
- 'bug-report' => '버그보고',
+ 'bug-report' => '버그보고',
'bug-report-description' => '사이트 버그 신고',
- 'enter-description' => '가능한 한 문제를 기술하십시오.',
- 'enter-email' => '전자 메일을 입력하십시오.',
- 'enter-title' => '적절한 제목을 선택하십시오.',
- 'enter-username' => '사용자 이름을 입력하십시오.',
- 'high' => '높은',
- 'low' => '낮은',
- 'priority' => '우선 순위',
- 'priority-description' => '사이트를 사용하는 데 정말로 버그가있는 경우에만 매우 높은 값을 선택하십시오.',
- 'very-high' => '매우 높음',
+ 'enter-description' => '가능한 한 문제를 기술하십시오.',
+ 'enter-email' => '전자 메일을 입력하십시오.',
+ 'enter-title' => '적절한 제목을 선택하십시오.',
+ 'enter-username' => '사용자 이름을 입력하십시오.',
+ 'high' => '높은',
+ 'low' => '낮은',
+ 'priority' => '우선 순위',
+ 'priority-description' => '사이트를 사용하는 데 정말로 버그가있는 경우에만 매우 높은 값을 선택하십시오.',
+ 'very-high' => '매우 높음',
];
diff --git a/lang/ko/common.php b/lang/ko/common.php
index 195220ad2..51372b445 100644
--- a/lang/ko/common.php
+++ b/lang/ko/common.php
@@ -12,179 +12,179 @@
*/
return [
- 'a-an-art' => '',
- 'about' => '회사 소개',
- 'account' => '계정',
- 'achievement-title' => '타이틀',
+ 'a-an-art' => '',
+ 'about' => '회사 소개',
+ 'account' => '계정',
+ 'achievement-title' => '타이틀',
'achievement-unlocked' => '": 이름"업적 잠금 해제했습니다.',
- 'active' => '활성',
- 'active-warning' => '활성 경고',
- 'add' => '추가',
- 'added' => '추가됨',
- 'amount' => '양',
- 'anonymous' => '익명',
- 'author' => '작성자',
- 'balance' => '균형',
- 'blacklist' => '클라이언트 블랙리스트',
- 'buffer' => '버퍼',
- 'bug' => '버그를 신고하십시오',
- 'but' => '그러나',
- 'cancel' => '취소',
- 'category' => '범주',
- 'categories' => '카테고리',
- 'close' => '닫기',
- 'comment' => '논평',
- 'comments' => '코멘트',
- 'community' => '커뮤니티',
- 'contact' => '연락',
- 'contact-desc' => '이 요청은 소유자에게 전송되며 최대한 빨리 답변 드립니다.',
- 'contact-header' => '헤더',
- 'create' => '작성',
- 'created_at' => '작성 시간',
- 'day' => '일',
- 'delete' => '지우다',
- 'delete-your-comment' => '댓글 삭제',
- 'description' => '설명',
- 'direction' => '방향',
- 'disable' => '사용 안함',
- 'doubleup_activated' => '글로벌 더블 업로드 모드가 활성화되었습니다.',
- 'download' => '다운로드',
- 'edit' => '편집',
- 'edit-your-comment' => '댓글 수정',
- 'email' => '이메일',
- 'email-blacklist' => '블랙리스트에 이메일 보내기',
- 'email-whitelist' => '화이트리스트에 이메일 보내기',
+ 'active' => '활성',
+ 'active-warning' => '활성 경고',
+ 'add' => '추가',
+ 'added' => '추가됨',
+ 'amount' => '양',
+ 'anonymous' => '익명',
+ 'author' => '작성자',
+ 'balance' => '균형',
+ 'blacklist' => '클라이언트 블랙리스트',
+ 'buffer' => '버퍼',
+ 'bug' => '버그를 신고하십시오',
+ 'but' => '그러나',
+ 'cancel' => '취소',
+ 'category' => '범주',
+ 'categories' => '카테고리',
+ 'close' => '닫기',
+ 'comment' => '논평',
+ 'comments' => '코멘트',
+ 'community' => '커뮤니티',
+ 'contact' => '연락',
+ 'contact-desc' => '이 요청은 소유자에게 전송되며 최대한 빨리 답변 드립니다.',
+ 'contact-header' => '헤더',
+ 'create' => '작성',
+ 'created_at' => '작성 시간',
+ 'day' => '일',
+ 'delete' => '지우다',
+ 'delete-your-comment' => '댓글 삭제',
+ 'description' => '설명',
+ 'direction' => '방향',
+ 'disable' => '사용 안함',
+ 'doubleup_activated' => '글로벌 더블 업로드 모드가 활성화되었습니다.',
+ 'download' => '다운로드',
+ 'edit' => '편집',
+ 'edit-your-comment' => '댓글 수정',
+ 'email' => '이메일',
+ 'email-blacklist' => '블랙리스트에 이메일 보내기',
+ 'email-whitelist' => '화이트리스트에 이메일 보내기',
'email-list-notactive' => '전자 메일 허용 목록 / 블랙리스트 시스템이 활성화되지 않음',
- 'enable' => '사용',
- 'enter' => '들어가다',
- 'error' => '오류',
- 'everyday' => '매일',
- 'expired' => '만료 됨',
- 'extra' => '특별한',
- 'extra-stats' => '추가 통계',
- 'faq' => '자주하는 질문',
- 'files' => '파일들',
- 'fl_token' => '프리리치 토큰',
- 'fl_tokens' => '프리리치 토큰',
- 'for' => '...에 대한',
- 'forum' => '포럼',
- 'free' => '프리',
- 'freeleech_activated' => '글로벌 프리리치 모드 활성화',
- 'global' => '글로벌',
- 'group' => '그룹',
- 'groups' => '그룹들',
- 'hidden' => '숨겨진',
- 'high-speeds' => '고속',
- 'home' => '홈',
- 'hot' => '핫!',
- 'hour' => '시간',
- 'huge' => '거대한',
- 'info' => '정보',
- 'internal' => '내부의',
- 'ip' => 'IP',
- 'is-allowed' => '허용됨',
- 'large' => '큰',
- 'latest' => '최근',
- 'latest-posts' => '최근 게시물',
- 'latest-topics' => '최신 토픽',
- 'legal' => '적법한',
- 'legend' => '전설',
- 'lists' => '목록들',
- 'lock-account' => '계정 잠금',
- 'logout' => '로그 아웃',
- 'members' => '회원',
- 'message' => '메시지',
- 'minute' => '분',
- 'moderated-by' => '에서 검토 됨',
- 'moderation' => '절도',
- 'moderation-approve' => '승인하다',
- 'moderation-postpone' => '연기하다',
- 'moderation-reject' => '받지 않다',
- 'month' => '달',
- 'months' => '개월',
- 'my' => '나의',
- 'name' => '이름',
- 'navigation' => '네비게이션',
- 'new' => '새로운!',
- 'new-adj' => '새로운',
- 'news' => '뉴스',
- 'next' => '다음',
- 'no' => 'NO',
- 'no-comments' => '아직 코멘트가 없습니다.',
- 'no-result' => '쿼리에 대해 데이터베이스에 결과가 없습니다.',
- 'notifications' => '알림',
- 'older-than' => '이전의',
- 'oldest' => '가장 오래된',
- 'openreg_activated' => '공개 등록 활성화 됨',
- 'order-by' => '주문',
- 'other' => '다른',
- 'pages' => '페이지',
- 'password' => '암호',
- 'patron' => '후원자가 되어주세요.',
- 'pending-torrents' => '대기중인 토렌트',
- 'personal' => '개인적인',
- 'plural-suffix' => '에스',
- 'port' => '포트',
- 'position' => '위치',
- 'posts' => '게시물',
- 'powered-by' => 'UNIT3D에서 제공',
- 'preview' => '프리뷰',
- 'previous' => '이전',
- 'progress' => '진행',
- 'publish' => '게시',
- 'quantity' => '수량',
- 'quick-search' => '빠른 탐색',
- 'ratio' => '비율',
- 'reason' => '이유',
- 'remove' => '제거',
- 'report' => '보고서',
- 'resend' => '재전송',
- 'reporter' => '보고자',
- 'required' => '필수',
- 'results' => '결과',
- 'rss-system' => 'RSS 시스템',
- 'rules' => '규칙',
- 'save' => '저장',
- 'search' => '검색',
- 'search-results' => '검색 결과',
- 'search-results-desc' => '아래 결과를 참조하십시오.',
- 'second' => '둘째',
- 'select' => '선택',
- 'sort' => '종류',
- 'special' => '특별한',
- 'staff' => '스태프',
- 'staff-tools' => '스태프 도구',
- 'stats' => '통계',
- 'status' => '상태',
- 'sticked' => '고정',
- 'submit' => '제출',
- 'subscriptions' => '구독',
- 'teams' => '팀',
- 'terms' => '이용 약관',
- 'times' => '타임스',
- 'title' => '표제',
- 'top-bountied' => '탑 Bundied',
- 'topics' => '토픽',
- 'tracker-codes' => '추적 코드',
- 'type' => '유형',
- 'type-verb' => '유형',
- 'types' => '유형',
- 'genre' => '유형',
- 'genres' => '장르',
- 'action' => '동작',
- 'actions' => '행위',
- 'unknown' => '알 수 없는',
+ 'enable' => '사용',
+ 'enter' => '들어가다',
+ 'error' => '오류',
+ 'everyday' => '매일',
+ 'expired' => '만료 됨',
+ 'extra' => '특별한',
+ 'extra-stats' => '추가 통계',
+ 'faq' => '자주하는 질문',
+ 'files' => '파일들',
+ 'fl_token' => '프리리치 토큰',
+ 'fl_tokens' => '프리리치 토큰',
+ 'for' => '...에 대한',
+ 'forum' => '포럼',
+ 'free' => '프리',
+ 'freeleech_activated' => '글로벌 프리리치 모드 활성화',
+ 'global' => '글로벌',
+ 'group' => '그룹',
+ 'groups' => '그룹들',
+ 'hidden' => '숨겨진',
+ 'high-speeds' => '고속',
+ 'home' => '홈',
+ 'hot' => '핫!',
+ 'hour' => '시간',
+ 'huge' => '거대한',
+ 'info' => '정보',
+ 'internal' => '내부의',
+ 'ip' => 'IP',
+ 'is-allowed' => '허용됨',
+ 'large' => '큰',
+ 'latest' => '최근',
+ 'latest-posts' => '최근 게시물',
+ 'latest-topics' => '최신 토픽',
+ 'legal' => '적법한',
+ 'legend' => '전설',
+ 'lists' => '목록들',
+ 'lock-account' => '계정 잠금',
+ 'logout' => '로그 아웃',
+ 'members' => '회원',
+ 'message' => '메시지',
+ 'minute' => '분',
+ 'moderated-by' => '에서 검토 됨',
+ 'moderation' => '절도',
+ 'moderation-approve' => '승인하다',
+ 'moderation-postpone' => '연기하다',
+ 'moderation-reject' => '받지 않다',
+ 'month' => '달',
+ 'months' => '개월',
+ 'my' => '나의',
+ 'name' => '이름',
+ 'navigation' => '네비게이션',
+ 'new' => '새로운!',
+ 'new-adj' => '새로운',
+ 'news' => '뉴스',
+ 'next' => '다음',
+ 'no' => 'NO',
+ 'no-comments' => '아직 코멘트가 없습니다.',
+ 'no-result' => '쿼리에 대해 데이터베이스에 결과가 없습니다.',
+ 'notifications' => '알림',
+ 'older-than' => '이전의',
+ 'oldest' => '가장 오래된',
+ 'openreg_activated' => '공개 등록 활성화 됨',
+ 'order-by' => '주문',
+ 'other' => '다른',
+ 'pages' => '페이지',
+ 'password' => '암호',
+ 'patron' => '후원자가 되어주세요.',
+ 'pending-torrents' => '대기중인 토렌트',
+ 'personal' => '개인적인',
+ 'plural-suffix' => '에스',
+ 'port' => '포트',
+ 'position' => '위치',
+ 'posts' => '게시물',
+ 'powered-by' => 'UNIT3D에서 제공',
+ 'preview' => '프리뷰',
+ 'previous' => '이전',
+ 'progress' => '진행',
+ 'publish' => '게시',
+ 'quantity' => '수량',
+ 'quick-search' => '빠른 탐색',
+ 'ratio' => '비율',
+ 'reason' => '이유',
+ 'remove' => '제거',
+ 'report' => '보고서',
+ 'resend' => '재전송',
+ 'reporter' => '보고자',
+ 'required' => '필수',
+ 'results' => '결과',
+ 'rss-system' => 'RSS 시스템',
+ 'rules' => '규칙',
+ 'save' => '저장',
+ 'search' => '검색',
+ 'search-results' => '검색 결과',
+ 'search-results-desc' => '아래 결과를 참조하십시오.',
+ 'second' => '둘째',
+ 'select' => '선택',
+ 'sort' => '종류',
+ 'special' => '특별한',
+ 'staff' => '스태프',
+ 'staff-tools' => '스태프 도구',
+ 'stats' => '통계',
+ 'status' => '상태',
+ 'sticked' => '고정',
+ 'submit' => '제출',
+ 'subscriptions' => '구독',
+ 'teams' => '팀',
+ 'terms' => '이용 약관',
+ 'times' => '타임스',
+ 'title' => '표제',
+ 'top-bountied' => '탑 Bundied',
+ 'topics' => '토픽',
+ 'tracker-codes' => '추적 코드',
+ 'type' => '유형',
+ 'type-verb' => '유형',
+ 'types' => '유형',
+ 'genre' => '유형',
+ 'genres' => '장르',
+ 'action' => '동작',
+ 'actions' => '행위',
+ 'unknown' => '알 수 없는',
'unlocked-achievement' => '너는 자물쇠로 열었다 : 업적 달성',
- 'upload' => '업로드',
- 'upload-guide' => '업로드 가이드',
- 'user' => '사용자',
- 'username' => '사용자 이름',
- 'users' => '사용자',
- 'view' => '보기',
- 'view-all' => '모두보기',
- 'warnings' => '경고',
- 'year' => '년',
- 'yes' => '예',
- 'your' => '너의',
- 'your-comment' => '귀하의 의견',
+ 'upload' => '업로드',
+ 'upload-guide' => '업로드 가이드',
+ 'user' => '사용자',
+ 'username' => '사용자 이름',
+ 'users' => '사용자',
+ 'view' => '보기',
+ 'view-all' => '모두보기',
+ 'warnings' => '경고',
+ 'year' => '년',
+ 'yes' => '예',
+ 'your' => '너의',
+ 'your-comment' => '귀하의 의견',
];
diff --git a/lang/ko/email.php b/lang/ko/email.php
index e26e9a48d..175ede012 100644
--- a/lang/ko/email.php
+++ b/lang/ko/email.php
@@ -12,46 +12,46 @@
*/
return [
- 'activate-account' => '계정 활성화',
- 'ban-reason' => '밴 당한 이유',
- 'banned-footer' => '규칙 위반시 제제 사항',
- 'banned-header' => '밴 당했다.',
- 'bug-description' => '버그 설명',
- 'bug-footer' => '수정.',
- 'bug-header' => '새로운 버그 리포트',
- 'bug-priority' => '우선 순위',
- 'bug-title' => '버그 제목',
- 'contact-header' => '새 연락처 메일',
- 'contact-message' => '메시지',
- 'contact-name' => '이름',
+ 'activate-account' => '계정 활성화',
+ 'ban-reason' => '밴 당한 이유',
+ 'banned-footer' => '규칙 위반시 제제 사항',
+ 'banned-header' => '밴 당했다.',
+ 'bug-description' => '버그 설명',
+ 'bug-footer' => '수정.',
+ 'bug-header' => '새로운 버그 리포트',
+ 'bug-priority' => '우선 순위',
+ 'bug-title' => '버그 제목',
+ 'contact-header' => '새 연락처 메일',
+ 'contact-message' => '메시지',
+ 'contact-name' => '이름',
'fail-login-greeting' => '계정 로그인 실패!',
- 'fail-login-line1' => '계정에 대한 로그인 실패가 감지되었습니다.',
- 'fail-login-line2' => '이 요청의 출처 :ip (:host) at :time',
- 'fail-login-subject' => '실패한 로그인 알림',
- 'footer-link' => ': actionText 버튼을 클릭하는 데 문제가 있으면 아래 URL을 복사하여 웹 브라우저에 붙여 넣으십시오.',
- 'invite-header' => '초대장',
- 'invite-invited' => '님에게 초대되었습니다.',
- 'invite-message' => '메시지',
- 'invite-signup' => '지금 등록하세요',
- 'newreply-header' => '주제에 새로운 답글이 있습니다.',
- 'newreply-message' => '메시지',
- 'newreply-replied' => '귀하의 주제에 답변했습니다.',
- 'newreply-view' => '지금보기',
- 'no-email-found' => '시스템에서이 이메일을 찾을 수 없습니다.',
- 'register-code' => '계정 활성화를 완료하려면 아래 버튼을 클릭하십시오.',
- 'register-footer' => '위의 버튼이 작동하지 않으면 URL을 복사하여 브라우저 주소창에 붙여 넣으십시오.',
- 'register-header' => '안녕하세요! 가입 해 주셔서 감사합니다.',
- 'report-comment' => '논평',
- 'report-email' => '이메일',
- 'report-header' => '안녕하세요, 링크가보고되었습니다.',
- 'report-link' => '링크',
- 'report-link-hash' => '실제 링크',
- 'thanks' => '사용 해줘서 고마워.',
- 'unban-footer' => '다시 오신 것을 환영합니다!',
- 'unban-header' => '밴 당한 적이 있습니다..',
- 'unban-reason' => '밴 당한 이유',
- 'username-reminder' => '최근 Google 앱에 사용자 이름에 대한 요청을 보냈습니다. 사용자 이름 :',
- 'username-sent' => '귀하의 사용자 이름이 귀하의 이메일 주소로 발송되었습니다!',
- 'disabled-header' => '계정이 비활성화되었습니다',
- 'pruned-header' => '귀하의 계정이 정리되었습니다.',
+ 'fail-login-line1' => '계정에 대한 로그인 실패가 감지되었습니다.',
+ 'fail-login-line2' => '이 요청의 출처 :ip (:host) at :time',
+ 'fail-login-subject' => '실패한 로그인 알림',
+ 'footer-link' => ': actionText 버튼을 클릭하는 데 문제가 있으면 아래 URL을 복사하여 웹 브라우저에 붙여 넣으십시오.',
+ 'invite-header' => '초대장',
+ 'invite-invited' => '님에게 초대되었습니다.',
+ 'invite-message' => '메시지',
+ 'invite-signup' => '지금 등록하세요',
+ 'newreply-header' => '주제에 새로운 답글이 있습니다.',
+ 'newreply-message' => '메시지',
+ 'newreply-replied' => '귀하의 주제에 답변했습니다.',
+ 'newreply-view' => '지금보기',
+ 'no-email-found' => '시스템에서이 이메일을 찾을 수 없습니다.',
+ 'register-code' => '계정 활성화를 완료하려면 아래 버튼을 클릭하십시오.',
+ 'register-footer' => '위의 버튼이 작동하지 않으면 URL을 복사하여 브라우저 주소창에 붙여 넣으십시오.',
+ 'register-header' => '안녕하세요! 가입 해 주셔서 감사합니다.',
+ 'report-comment' => '논평',
+ 'report-email' => '이메일',
+ 'report-header' => '안녕하세요, 링크가보고되었습니다.',
+ 'report-link' => '링크',
+ 'report-link-hash' => '실제 링크',
+ 'thanks' => '사용 해줘서 고마워.',
+ 'unban-footer' => '다시 오신 것을 환영합니다!',
+ 'unban-header' => '밴 당한 적이 있습니다..',
+ 'unban-reason' => '밴 당한 이유',
+ 'username-reminder' => '최근 Google 앱에 사용자 이름에 대한 요청을 보냈습니다. 사용자 이름 :',
+ 'username-sent' => '귀하의 사용자 이름이 귀하의 이메일 주소로 발송되었습니다!',
+ 'disabled-header' => '계정이 비활성화되었습니다',
+ 'pruned-header' => '귀하의 계정이 정리되었습니다.',
];
diff --git a/lang/ko/forum.php b/lang/ko/forum.php
index fcf322455..8ea826603 100644
--- a/lang/ko/forum.php
+++ b/lang/ko/forum.php
@@ -12,63 +12,63 @@
*/
return [
- 'action' => '동작',
- 'activity' => '활동',
- 'approved' => '승인 됨',
- 'author' => '저자',
- 'bug' => '버그',
- 'category-quick-search' => '주제 이름 빠른 검색 (카테고리 내)',
- 'close-topic' => '주제 잠금',
- 'closed' => '닫음',
- 'create-new-topic' => '새 주제 만들기',
- 'created' => '만들어짐',
- 'current' => '최근',
- 'delete-topic' => '이 주제 삭제',
- 'denied' => '거부 됨',
- 'dislike-post' => '이 포스트 싫어함',
- 'display-forum' => '주제 표시',
- 'edit-post' => '소식 수정',
- 'edit-topic' => '주제 편집',
- 'forum' => '포럼',
- 'forums' => '포럼들',
- 'implemented' => '구현 됨',
- 'in' => '에서',
- 'invalid' => '무효',
- 'label' => '라벨',
- 'label-system' => '라벨 시스템',
- 'last-message' => '마지막 메시지',
- 'last-post-info' => '마지막 게시물 정보',
- 'latest' => '최근',
- 'like-post' => '이게시물을 좋아함',
- 'meta-category' => '카테고리 내의 포럼 목록',
- 'moderation' => '조정',
- 'name' => '이름',
- 'not-connected' => '연결되어 있어야합니다.',
- 'not-subscribed' => '가입하지 않음',
- 'open' => '열다',
- 'open-topic' => '이 주제 열기',
- 'permalink' => '퍼머 링크',
- 'pin' => '핀',
- 'post' => '포스트',
- 'post-quick-search' => '게시물 몸체 빠른 검색',
- 'posts' => '게시물',
- 'quote' => '인용문',
- 'read-topic' => '주제 읽기',
- 'replies' => '회신',
- 'send-new-topic' => '이 주제 저장',
- 'solved' => '해결 된',
- 'state' => '상태',
- 'stats' => '통계',
- 'subscribed' => '구독 됨',
+ 'action' => '동작',
+ 'activity' => '활동',
+ 'approved' => '승인 됨',
+ 'author' => '저자',
+ 'bug' => '버그',
+ 'category-quick-search' => '주제 이름 빠른 검색 (카테고리 내)',
+ 'close-topic' => '주제 잠금',
+ 'closed' => '닫음',
+ 'create-new-topic' => '새 주제 만들기',
+ 'created' => '만들어짐',
+ 'current' => '최근',
+ 'delete-topic' => '이 주제 삭제',
+ 'denied' => '거부 됨',
+ 'dislike-post' => '이 포스트 싫어함',
+ 'display-forum' => '주제 표시',
+ 'edit-post' => '소식 수정',
+ 'edit-topic' => '주제 편집',
+ 'forum' => '포럼',
+ 'forums' => '포럼들',
+ 'implemented' => '구현 됨',
+ 'in' => '에서',
+ 'invalid' => '무효',
+ 'label' => '라벨',
+ 'label-system' => '라벨 시스템',
+ 'last-message' => '마지막 메시지',
+ 'last-post-info' => '마지막 게시물 정보',
+ 'latest' => '최근',
+ 'like-post' => '이게시물을 좋아함',
+ 'meta-category' => '카테고리 내의 포럼 목록',
+ 'moderation' => '조정',
+ 'name' => '이름',
+ 'not-connected' => '연결되어 있어야합니다.',
+ 'not-subscribed' => '가입하지 않음',
+ 'open' => '열다',
+ 'open-topic' => '이 주제 열기',
+ 'permalink' => '퍼머 링크',
+ 'pin' => '핀',
+ 'post' => '포스트',
+ 'post-quick-search' => '게시물 몸체 빠른 검색',
+ 'posts' => '게시물',
+ 'quote' => '인용문',
+ 'read-topic' => '주제 읽기',
+ 'replies' => '회신',
+ 'send-new-topic' => '이 주제 저장',
+ 'solved' => '해결 된',
+ 'state' => '상태',
+ 'stats' => '통계',
+ 'subscribed' => '구독 됨',
'subscription-quick-search' => '주제 이름 빠른 검색 (구독 내)',
- 'suggestion' => '암시',
- 'topic' => '이야기',
- 'topic-closed' => '이 주제는 닫힙니다.',
- 'topic-name' => '주제 이름',
- 'topic-quick-search' => '주제 이름 빠른 검색',
- 'topic-title' => '이 주제의 제목',
- 'topics' => '토픽',
- 'unpin' => '고정 해제',
- 'view-all' => '모든 토픽보기',
- 'views' => '조회수',
+ 'suggestion' => '암시',
+ 'topic' => '이야기',
+ 'topic-closed' => '이 주제는 닫힙니다.',
+ 'topic-name' => '주제 이름',
+ 'topic-quick-search' => '주제 이름 빠른 검색',
+ 'topic-title' => '이 주제의 제목',
+ 'topics' => '토픽',
+ 'unpin' => '고정 해제',
+ 'view-all' => '모든 토픽보기',
+ 'views' => '조회수',
];
diff --git a/lang/ko/graveyard.php b/lang/ko/graveyard.php
index 8a4dc0cf4..a7a360809 100644
--- a/lang/ko/graveyard.php
+++ b/lang/ko/graveyard.php
@@ -12,15 +12,15 @@
*/
return [
- 'dead' => '죽은 토렌트',
- 'graveyard' => '시더가없는 묘소',
- 'guidelines' => '가이드라인',
+ 'dead' => '죽은 토렌트',
+ 'graveyard' => '시더가없는 묘소',
+ 'guidelines' => '가이드라인',
'guidelines-content' => '1) 자신이 올린 동영상을 부활시킬 수는 없습니다.
2) 시딩을 재대로 할수 없는 토렌트를 부활시키지 마십시오.',
- 'howto' => '규칙 Heres',
- 'howto-desc1' => '당신은 시드해야합니다 : 성공적인 부활을 위해 30 일 동안 이름 . 어떤 경우에 현재의',
- 'howto-desc2' => '당신은 보상받을 것입니다.',
- 'howto-hits' => '조회수',
- 'pending' => '대기중인',
- 'resurrect' => '부활',
- 'reward' => 'Freeleech 토큰',
+ 'howto' => '규칙 Heres',
+ 'howto-desc1' => '당신은 시드해야합니다 : 성공적인 부활을 위해 30 일 동안 이름 . 어떤 경우에 현재의',
+ 'howto-desc2' => '당신은 보상받을 것입니다.',
+ 'howto-hits' => '조회수',
+ 'pending' => '대기중인',
+ 'resurrect' => '부활',
+ 'reward' => 'Freeleech 토큰',
];
diff --git a/lang/ko/notification.php b/lang/ko/notification.php
index 1f78582c9..219c11f9a 100644
--- a/lang/ko/notification.php
+++ b/lang/ko/notification.php
@@ -12,14 +12,14 @@
*/
return [
- 'date' => '날짜',
- 'delete' => '지우기',
- 'delete-all' => '모든 알림 삭제',
- 'mark-all-read' => '모두 읽음으로 표시',
- 'mark-read' => '읽은 상태로 표시',
- 'message' => '메시지',
+ 'date' => '날짜',
+ 'delete' => '지우기',
+ 'delete-all' => '모든 알림 삭제',
+ 'mark-all-read' => '모두 읽음으로 표시',
+ 'mark-read' => '읽은 상태로 표시',
+ 'message' => '메시지',
'no-notifications' => '알림이 없습니다.',
- 'notifications' => '알림',
- 'read' => '읽음',
- 'title' => '타이틀',
+ 'notifications' => '알림',
+ 'read' => '읽음',
+ 'title' => '타이틀',
];
diff --git a/lang/ko/page.php b/lang/ko/page.php
index 4e3ca7679..73710bb57 100644
--- a/lang/ko/page.php
+++ b/lang/ko/page.php
@@ -12,28 +12,28 @@
*/
return [
- 'aboutus-advantage' => '장점',
- 'aboutus-advantage1' => '우리는 HD 비디오 / 오디오 및 기술 지원 분야에 정통한 회원 및 직원들 입니다.',
- 'aboutus-advantage2' => '영화 및 TV 쇼에 대한 폭 넓은 열정과 함께, 우리는 가장 좋아하는 것 중 가장 좋은 것을 제공합니다 - FANRES! 콘텐츠 제공 업체 에게 큰 감사 드립니다.',
- 'aboutus-advantage3' => '사이트를 계속 운영하기 위해 기부금을 수령하는 동안 사이트에 PM이나 배너를 더럽 히지 않습니다. 우리는 구걸하지 않습니다.',
- 'aboutus-advantage4' => '우리 지역 사회는 어릴 때부터 누구에게도 뒤지지 않습니다. 우리 직원과 사용자 사이에 항상 도움의 손길이있었습니다. 우리는 열정적입니다.',
- 'aboutus-advantage5' => '우리의 서비스는 전 세계 많은 사람들이 매일 사용합니다. 우리는 코드베이스의 기능과 보안에 신경을 썼으며 신뢰할 수 있고 의존 할 수 있음을 입증했습니다. 우리의 개발자는 진정한 nex-gen 코드베이스를 제공하기 위해 매일 작업합니다.',
- 'aboutus-header' => '안녕',
- 'aboutus-rules' => '우리가 당신에게서 필요로하는 것',
- 'aboutus-rules1' => '지역 사회의 정회원이 되십시오! 즉, 생산적으로 대화에 참여하고 승인 된 콘텐츠를 추가하고 가능한 경우 다른 사용자를 도우십시오.',
- 'aboutus-rules2' => '규칙을 완전히 읽고 존중 해주십시오!',
- 'aboutus-rules3' => '의견을 내세요! 우리는 매일 제목을 향상시키기 위해 노력하고 있습니다. 우리는 모든 제안이 사용될 것이라고 말하지는 않지만 결코 새로운 아이디어를 거절하지 않습니다',
- 'aboutus-welcome' => '웰컴.',
- 'aboutus-welcome-desc' => ': title은 커뮤니티에서 제작 한 영화 / TV / FANRES 데이터베이스입니다. 2017 년 이후 모든 놀라운 데이터가 우리의 놀라운 커뮤니티에 의해 추가되었습니다. HD 컨텐츠, 능동적 인 사용자베이스, 굉장한 / 안전한 코드베이스, 유용하고 친절한 직원 팀에 중점을 둡니다 .',
- 'blacklist-browsers' => '브라우저',
- 'blacklist-btclient' => 'BitTorrent 클라이언트',
- 'blacklist-clients' => '고객',
- 'blacklist-desc' => '뒤에 오는 브라우저 및 Bittorrent 클라이언트는 Blackouted / 금지된다 Annoucing에서 : 제목',
- 'blacklist-webbrowser' => '웹 브라우저',
+ 'aboutus-advantage' => '장점',
+ 'aboutus-advantage1' => '우리는 HD 비디오 / 오디오 및 기술 지원 분야에 정통한 회원 및 직원들 입니다.',
+ 'aboutus-advantage2' => '영화 및 TV 쇼에 대한 폭 넓은 열정과 함께, 우리는 가장 좋아하는 것 중 가장 좋은 것을 제공합니다 - FANRES! 콘텐츠 제공 업체 에게 큰 감사 드립니다.',
+ 'aboutus-advantage3' => '사이트를 계속 운영하기 위해 기부금을 수령하는 동안 사이트에 PM이나 배너를 더럽 히지 않습니다. 우리는 구걸하지 않습니다.',
+ 'aboutus-advantage4' => '우리 지역 사회는 어릴 때부터 누구에게도 뒤지지 않습니다. 우리 직원과 사용자 사이에 항상 도움의 손길이있었습니다. 우리는 열정적입니다.',
+ 'aboutus-advantage5' => '우리의 서비스는 전 세계 많은 사람들이 매일 사용합니다. 우리는 코드베이스의 기능과 보안에 신경을 썼으며 신뢰할 수 있고 의존 할 수 있음을 입증했습니다. 우리의 개발자는 진정한 nex-gen 코드베이스를 제공하기 위해 매일 작업합니다.',
+ 'aboutus-header' => '안녕',
+ 'aboutus-rules' => '우리가 당신에게서 필요로하는 것',
+ 'aboutus-rules1' => '지역 사회의 정회원이 되십시오! 즉, 생산적으로 대화에 참여하고 승인 된 콘텐츠를 추가하고 가능한 경우 다른 사용자를 도우십시오.',
+ 'aboutus-rules2' => '규칙을 완전히 읽고 존중 해주십시오!',
+ 'aboutus-rules3' => '의견을 내세요! 우리는 매일 제목을 향상시키기 위해 노력하고 있습니다. 우리는 모든 제안이 사용될 것이라고 말하지는 않지만 결코 새로운 아이디어를 거절하지 않습니다',
+ 'aboutus-welcome' => '웰컴.',
+ 'aboutus-welcome-desc' => ': title은 커뮤니티에서 제작 한 영화 / TV / FANRES 데이터베이스입니다. 2017 년 이후 모든 놀라운 데이터가 우리의 놀라운 커뮤니티에 의해 추가되었습니다. HD 컨텐츠, 능동적 인 사용자베이스, 굉장한 / 안전한 코드베이스, 유용하고 친절한 직원 팀에 중점을 둡니다 .',
+ 'blacklist-browsers' => '브라우저',
+ 'blacklist-btclient' => 'BitTorrent 클라이언트',
+ 'blacklist-clients' => '고객',
+ 'blacklist-desc' => '뒤에 오는 브라우저 및 Bittorrent 클라이언트는 Blackouted / 금지된다 Annoucing에서 : 제목',
+ 'blacklist-webbrowser' => '웹 브라우저',
'blacklist-emaildomain' => '차단 된 도메인',
- 'email-blacklist-desc' => '다음 전자 메일 도메인은 차단됩니다. 등록 할 수 없거나 다음에 초대장을 보낼 수 없습니다.',
- 'email-whitelist-desc' => '다음 전자 메일 도메인은 사용할 수있는 유일한 전자 메일 도메인입니다. 다음을 사용하여 등록하거나 초대장을 보낼 수 있습니다.',
- 'staff-group' => '그룹',
- 'staff-title' => '표제',
+ 'email-blacklist-desc' => '다음 전자 메일 도메인은 차단됩니다. 등록 할 수 없거나 다음에 초대장을 보낼 수 없습니다.',
+ 'email-whitelist-desc' => '다음 전자 메일 도메인은 사용할 수있는 유일한 전자 메일 도메인입니다. 다음을 사용하여 등록하거나 초대장을 보낼 수 있습니다.',
+ 'staff-group' => '그룹',
+ 'staff-title' => '표제',
'whitelist-emaildomain' => '신뢰할 수있는 도메인',
];
diff --git a/lang/ko/pagination.php b/lang/ko/pagination.php
index 4b09b2edd..db914336d 100644
--- a/lang/ko/pagination.php
+++ b/lang/ko/pagination.php
@@ -24,5 +24,5 @@ return [
*/
'previous' => '이전',
- 'next' => '다음',
+ 'next' => '다음',
];
diff --git a/lang/ko/passwords.php b/lang/ko/passwords.php
index 2ca2e43d4..d1280ae1a 100644
--- a/lang/ko/passwords.php
+++ b/lang/ko/passwords.php
@@ -24,8 +24,8 @@ return [
*/
'password' => '비밀번호는 최소한 6자 이상이어야 하며 확인 항목과 일치해야 합니다.',
- 'reset' => '비밀번호가 변경되었습니다!',
- 'sent' => '비밀번호 재설정 링크를 이메일로 전송했습니다!',
- 'token' => '해당 비밀번호 재설정 토큰이 유효하지 않습니다.',
- 'user' => '해당 이메일을 사용하는 사용자를 찾을 수 없습니다.',
+ 'reset' => '비밀번호가 변경되었습니다!',
+ 'sent' => '비밀번호 재설정 링크를 이메일로 전송했습니다!',
+ 'token' => '해당 비밀번호 재설정 토큰이 유효하지 않습니다.',
+ 'user' => '해당 이메일을 사용하는 사용자를 찾을 수 없습니다.',
];
diff --git a/lang/ko/pm.php b/lang/ko/pm.php
index 64e6e5668..dcb16ddaf 100644
--- a/lang/ko/pm.php
+++ b/lang/ko/pm.php
@@ -12,28 +12,28 @@
*/
return [
- 'create' => '만들기',
- 'delete' => '지우기',
+ 'create' => '만들기',
+ 'delete' => '지우기',
'enter-subject' => '제목 입력',
- 'from' => '부터',
- 'inbox' => '받은 편지함',
+ 'from' => '부터',
+ 'inbox' => '받은 편지함',
'mark-all-read' => '모든 메시지를 읽음으로 표시하십시오.',
- 'message' => '메시지',
- 'messages' => '메시지',
- 'new' => '새로운 메시지',
- 'outbox' => '보낼 편지함',
- 'private' => '개인적인',
- 'read' => '독서',
- 'received-at' => '접수일',
- 'refresh' => '리프레시',
- 'reply' => '댓글',
- 'search' => '제목으로 검색',
- 'select' => '사용자 선택',
- 'send' => 'PM 보내기',
- 'send-to' => '받는 사람',
- 'sent' => '전송 됨',
- 'sent-at' => '보낸 날짜 :',
- 'subject' => '제목',
- 'to' => '에',
- 'unread' => '읽지 않은',
+ 'message' => '메시지',
+ 'messages' => '메시지',
+ 'new' => '새로운 메시지',
+ 'outbox' => '보낼 편지함',
+ 'private' => '개인적인',
+ 'read' => '독서',
+ 'received-at' => '접수일',
+ 'refresh' => '리프레시',
+ 'reply' => '댓글',
+ 'search' => '제목으로 검색',
+ 'select' => '사용자 선택',
+ 'send' => 'PM 보내기',
+ 'send-to' => '받는 사람',
+ 'sent' => '전송 됨',
+ 'sent-at' => '보낸 날짜 :',
+ 'subject' => '제목',
+ 'to' => '에',
+ 'unread' => '읽지 않은',
];
diff --git a/lang/ko/poll.php b/lang/ko/poll.php
index 18ce105bd..5b3288076 100644
--- a/lang/ko/poll.php
+++ b/lang/ko/poll.php
@@ -12,18 +12,18 @@
*/
return [
- 'add-option' => '옵션 추가',
- 'create-poll' => '설문 조사 작성',
- 'current' => '현재 설문 조사',
- 'delete-option' => '삭제 옵션',
+ 'add-option' => '옵션 추가',
+ 'create-poll' => '설문 조사 작성',
+ 'current' => '현재 설문 조사',
+ 'delete-option' => '삭제 옵션',
'multiple-choice' => '이것은 객관식 투표입니다. 원하는만큼 답을 선택하십시오.',
- 'option' => '옵션',
- 'poll' => '투표',
- 'polls' => '투표소',
- 'results' => '설문 조사 결과',
- 'title' => '표제',
- 'total' => '총 투표 수',
- 'vote' => '투표',
- 'vote-now' => '지금 투표하십시오!',
- 'votes' => '투표 수',
+ 'option' => '옵션',
+ 'poll' => '투표',
+ 'polls' => '투표소',
+ 'results' => '설문 조사 결과',
+ 'title' => '표제',
+ 'total' => '총 투표 수',
+ 'vote' => '투표',
+ 'vote-now' => '지금 투표하십시오!',
+ 'votes' => '투표 수',
];
diff --git a/lang/ko/request.php b/lang/ko/request.php
index 9f8b4e324..6d29d3ace 100644
--- a/lang/ko/request.php
+++ b/lang/ko/request.php
@@ -12,67 +12,67 @@
*/
return [
- 'add-request' => '요청 추가',
- 'age' => '나이',
- 'all-requests' => '모든 요청',
- 'approve' => '승인하다',
- 'bounty' => '포상금',
- 'bounty-claimed' => '포상금 주장',
- 'bounty-unclaimed' => '포상금은 청구되지 않았다.',
- 'category' => '범주',
- 'claim' => '청구',
- 'claim-anon-choose' => '현명하게 선택하십시오',
- 'claim-as-anon' => '이걸 정말 요구 하시겠습니까?',
- 'claim-now' => '지금 청구하세요',
- 'claimed' => '청구 됨',
- 'current' => '현재',
- 'delete' => '이 요청 삭제',
+ 'add-request' => '요청 추가',
+ 'age' => '나이',
+ 'all-requests' => '모든 요청',
+ 'approve' => '승인하다',
+ 'bounty' => '포상금',
+ 'bounty-claimed' => '포상금 주장',
+ 'bounty-unclaimed' => '포상금은 청구되지 않았다.',
+ 'category' => '범주',
+ 'claim' => '청구',
+ 'claim-anon-choose' => '현명하게 선택하십시오',
+ 'claim-as-anon' => '이걸 정말 요구 하시겠습니까?',
+ 'claim-now' => '지금 청구하세요',
+ 'claimed' => '청구 됨',
+ 'current' => '현재',
+ 'delete' => '이 요청 삭제',
'delete-confirmation' => '이 요청을 삭제 하시겠습니까?',
- 'delete-filled' => '이 요청은 비어있는 경우에만 삭제할 수 있습니다.',
- 'description' => '설명',
- 'dont-have-bps' => '충분한 보너스가 없다.',
- 'edit-request' => '요청 수정',
- 'enter-bp' => '보너스 포인트 입력 (최소 100)',
- 'enter-hash' => '업로드 된 Torrent의 Info Hash를 입력하십시오.',
- 'fill' => '작성하세요',
- 'fill-request' => '이 요청을 작성하십시오.',
- 'filled' => '작성된',
- 'filled-by' => '작성자 :',
- 'for' => '...에 대한',
- 'fulfill' => '다하다',
- 'last-vote' => '마지막 투표',
- 'my-requests' => '내 요청',
- 'no' => 'NO,',
- 'no-imdb-id' => '모든 요청에는 IMDB 번호가 있어야합니다.',
- 'no-privileges' => '오류 : 요청 권한이 사용 중지되었습니다.',
- 'no-privileges-desc' => '오류가 있다고 생각되면 직원에게 문의하십시오.',
- 'no-refunds' => '보너스 포인트 교환, 작성 및 현상금은 되돌릴수 없습니다.!
환불 불가!',
- 'pending' => '대기중인',
- 'reason' => '이유',
- 'reject' => '거절',
- 'report' => '보고서 요청',
- 'request' => '의뢰',
- 'request-details' => '세부 정보 요청',
- 'requested-by' => '에 의해 요청',
- 'requests' => '요청',
- 'required' => '필수',
- 'reset' => '리셋',
- 'reset-confirmation' => '이 요청을 재설정 하시겠습니까?',
- 'reset-request' => '이 요청 재설정',
- 'reward' => '보상',
- 'reward-desc' => '보너스 포인트를 얼마나 보시겠습니까? 최소 100 BP',
- 'reward-from' => '에서',
- 'title' => '표제',
- 'torrent-hash' => '토렌트 해시',
- 'total-bounty' => '총 현상금',
- 'type' => '유형',
- 'unclaim' => '이 요청을 취소하십시오.',
- 'unfilled' => '비어있는',
- 'view-filled' => '가득찬 항목 보기',
- 'view-unfilled' => '비어있는 항목 보기',
- 'vote' => '투표',
- 'vote-that' => '이 요청에 투표하십시오',
- 'voters' => '유권자',
- 'votes' => '투표 수',
- 'yes' => '예',
+ 'delete-filled' => '이 요청은 비어있는 경우에만 삭제할 수 있습니다.',
+ 'description' => '설명',
+ 'dont-have-bps' => '충분한 보너스가 없다.',
+ 'edit-request' => '요청 수정',
+ 'enter-bp' => '보너스 포인트 입력 (최소 100)',
+ 'enter-hash' => '업로드 된 Torrent의 Info Hash를 입력하십시오.',
+ 'fill' => '작성하세요',
+ 'fill-request' => '이 요청을 작성하십시오.',
+ 'filled' => '작성된',
+ 'filled-by' => '작성자 :',
+ 'for' => '...에 대한',
+ 'fulfill' => '다하다',
+ 'last-vote' => '마지막 투표',
+ 'my-requests' => '내 요청',
+ 'no' => 'NO,',
+ 'no-imdb-id' => '모든 요청에는 IMDB 번호가 있어야합니다.',
+ 'no-privileges' => '오류 : 요청 권한이 사용 중지되었습니다.',
+ 'no-privileges-desc' => '오류가 있다고 생각되면 직원에게 문의하십시오.',
+ 'no-refunds' => '보너스 포인트 교환, 작성 및 현상금은 되돌릴수 없습니다.!
환불 불가!',
+ 'pending' => '대기중인',
+ 'reason' => '이유',
+ 'reject' => '거절',
+ 'report' => '보고서 요청',
+ 'request' => '의뢰',
+ 'request-details' => '세부 정보 요청',
+ 'requested-by' => '에 의해 요청',
+ 'requests' => '요청',
+ 'required' => '필수',
+ 'reset' => '리셋',
+ 'reset-confirmation' => '이 요청을 재설정 하시겠습니까?',
+ 'reset-request' => '이 요청 재설정',
+ 'reward' => '보상',
+ 'reward-desc' => '보너스 포인트를 얼마나 보시겠습니까? 최소 100 BP',
+ 'reward-from' => '에서',
+ 'title' => '표제',
+ 'torrent-hash' => '토렌트 해시',
+ 'total-bounty' => '총 현상금',
+ 'type' => '유형',
+ 'unclaim' => '이 요청을 취소하십시오.',
+ 'unfilled' => '비어있는',
+ 'view-filled' => '가득찬 항목 보기',
+ 'view-unfilled' => '비어있는 항목 보기',
+ 'vote' => '투표',
+ 'vote-that' => '이 요청에 투표하십시오',
+ 'voters' => '유권자',
+ 'votes' => '투표 수',
+ 'yes' => '예',
];
diff --git a/lang/ko/rss.php b/lang/ko/rss.php
index 3d83fd3ca..4dfe98527 100644
--- a/lang/ko/rss.php
+++ b/lang/ko/rss.php
@@ -12,19 +12,19 @@
*/
return [
- 'create' => '만들기',
+ 'create' => '만들기',
'create-private-feed' => '비공개 RSS 피드 만들기',
- 'create-public-feed' => '공개 RSS 피드 만들기',
- 'delete' => '지우기',
- 'edit' => '편집하',
- 'edit-private-feed' => '비공개 RSS 피드 편집',
- 'edit-public-feed' => '공개 RSS 피드 수정',
- 'feed' => '피드',
- 'feeds' => '피드들',
- 'name' => '이름',
- 'public' => '공개',
- 'private' => '개인적인',
- 'rss' => 'RSS',
- 'rss-feed' => 'RSS 피드',
- 'type' => '유형',
+ 'create-public-feed' => '공개 RSS 피드 만들기',
+ 'delete' => '지우기',
+ 'edit' => '편집하',
+ 'edit-private-feed' => '비공개 RSS 피드 편집',
+ 'edit-public-feed' => '공개 RSS 피드 수정',
+ 'feed' => '피드',
+ 'feeds' => '피드들',
+ 'name' => '이름',
+ 'public' => '공개',
+ 'private' => '개인적인',
+ 'rss' => 'RSS',
+ 'rss-feed' => 'RSS 피드',
+ 'type' => '유형',
];
diff --git a/lang/ko/staff.php b/lang/ko/staff.php
index 2ddbde2a2..994c1fbf0 100644
--- a/lang/ko/staff.php
+++ b/lang/ko/staff.php
@@ -12,48 +12,48 @@
*/
return [
- 'audit-log' => '활동 로그',
- 'articles' => '조항',
- 'applications' => '응용 프로그램',
- 'bans-log' => '금지 로그',
- 'blocks' => '블록',
- 'bot' => '봇',
- 'bots' => '봇',
- 'chat' => '챗',
- 'config-manager' => '구성 관리자',
- 'dashboard' => '대쉬보드',
- 'failed-login-log' => '실패한 로그인 로그',
- 'flush-ghost-peers' => '고스트 피어스 플러시',
- 'forums' => '포럼',
- 'frontend' => '프론트 엔드',
- 'general-tools' => '일반 도구',
- 'groups' => '그룹들',
- 'invites-log' => '로그 초대',
- 'laravel-log' => 'Laravel Log',
- 'links' => '링크',
- 'logs' => '로그',
- 'mass-pm' => '대량 메세지',
- 'mass-validate-users' => '대량 사용자 검증',
- 'moderation' => '절도',
- 'pages' => '페이지',
- 'please-moderate' => '적당히 하십시오!',
- 'polls' => '투표소',
- 'reports-log' => '보고서 로그',
- 'rss' => 'RSS',
- 'staff-dashboard' => '직원 대시 보드',
- 'torrent-categories' => '토렌트 카테고리',
- 'torrent-moderation' => '토렌트 중재',
- 'torrent-tools' => '토렌트 도구',
- 'torrent-types' => '토렌트 유형',
- 'torrents' => '토렌트',
- 'user-gifting' => '사용자 선물',
- 'user-notes' => '사용자 메모 로그',
- 'user-search' => '사용자 검색',
- 'user-tools' => '사용자 도구',
- 'warnings-log' => '경고 로그',
- 'you-have' => '당신이 가지고 있는것',
+ 'audit-log' => '활동 로그',
+ 'articles' => '조항',
+ 'applications' => '응용 프로그램',
+ 'bans-log' => '금지 로그',
+ 'blocks' => '블록',
+ 'bot' => '봇',
+ 'bots' => '봇',
+ 'chat' => '챗',
+ 'config-manager' => '구성 관리자',
+ 'dashboard' => '대쉬보드',
+ 'failed-login-log' => '실패한 로그인 로그',
+ 'flush-ghost-peers' => '고스트 피어스 플러시',
+ 'forums' => '포럼',
+ 'frontend' => '프론트 엔드',
+ 'general-tools' => '일반 도구',
+ 'groups' => '그룹들',
+ 'invites-log' => '로그 초대',
+ 'laravel-log' => 'Laravel Log',
+ 'links' => '링크',
+ 'logs' => '로그',
+ 'mass-pm' => '대량 메세지',
+ 'mass-validate-users' => '대량 사용자 검증',
+ 'moderation' => '절도',
+ 'pages' => '페이지',
+ 'please-moderate' => '적당히 하십시오!',
+ 'polls' => '투표소',
+ 'reports-log' => '보고서 로그',
+ 'rss' => 'RSS',
+ 'staff-dashboard' => '직원 대시 보드',
+ 'torrent-categories' => '토렌트 카테고리',
+ 'torrent-moderation' => '토렌트 중재',
+ 'torrent-tools' => '토렌트 도구',
+ 'torrent-types' => '토렌트 유형',
+ 'torrents' => '토렌트',
+ 'user-gifting' => '사용자 선물',
+ 'user-notes' => '사용자 메모 로그',
+ 'user-search' => '사용자 검색',
+ 'user-tools' => '사용자 도구',
+ 'warnings-log' => '경고 로그',
+ 'you-have' => '당신이 가지고 있는것',
'possible-leech-cheaters' => '가능한 속임수들',
- 'chat-tools' => '채팅 도구',
- 'flush-chat' => '채팅 창 플러시',
- 'seedboxes' => '등록 된 시드박스',
+ 'chat-tools' => '채팅 도구',
+ 'flush-chat' => '채팅 창 플러시',
+ 'seedboxes' => '등록 된 시드박스',
];
diff --git a/lang/ko/stat.php b/lang/ko/stat.php
index 49fd662f6..203ff3548 100644
--- a/lang/ko/stat.php
+++ b/lang/ko/stat.php
@@ -12,40 +12,40 @@
*/
return [
- 'by-count' => '카운터 별',
- 'by-data' => '데이터 별',
- 'by-volume' => '볼륨 별',
- 'group' => '그룹',
- 'groups' => '그룹들',
- 'nerd-stats' => '괴상한 통계',
- 'nerd-stats-desc' => '우리 모두는 통계를 좋아합니다. 우리가 중요하다고 여기는 것들이 있습니다.',
- 'registration-date' => '등록 날짜',
- 'request-fulfilled' => '충족 요청',
- 'request-not-fulfilled' => '요청이 충족되지 않았습니다.',
+ 'by-count' => '카운터 별',
+ 'by-data' => '데이터 별',
+ 'by-volume' => '볼륨 별',
+ 'group' => '그룹',
+ 'groups' => '그룹들',
+ 'nerd-stats' => '괴상한 통계',
+ 'nerd-stats-desc' => '우리 모두는 통계를 좋아합니다. 우리가 중요하다고 여기는 것들이 있습니다.',
+ 'registration-date' => '등록 날짜',
+ 'request-fulfilled' => '충족 요청',
+ 'request-not-fulfilled' => '요청이 충족되지 않았습니다.',
'request-pending-aproval' => '요청 대기 중인 승인',
- 'select-category' => '아래 카테고리를 선택하십시오.',
- 'site-stats' => '사이트 통계',
- 'stats' => '통계',
- 'stats-format' => '모든 통계는 상위 100 형식으로 표시됩니다.',
- 'top-bankers' => '최고 은행가',
- 'top-bountied' => '탑 장려금 수령',
- 'top-completed' => '탑 완료된 항목',
- 'top-dead' => '탑 데드',
- 'top-downloaded' => '탑 다운로드',
- 'top-downloaders' => '최고 다운로더',
- 'top-dying' => '탑 죽어가는 토렌트',
- 'top-leeched' => '탑 리처',
- 'top-leechers' => '탑 리처들',
- 'top-seeded' => '탑 시드',
- 'top-seeding' => '탑 시드',
- 'top-seeders' => '톱 시드',
- 'top-seedsize' => '톱 시드 크기',
- 'top-seedtime' => '탑 시드 시간',
- 'top-uploaders' => '인기 업 로더',
- 'total-download' => '총 다운로드',
- 'total-torrents' => '총 급류',
- 'total-traffic' => '총 트래픽',
- 'total-upload' => '총 업로드',
- 'users-in-group' => '그룹 사용자',
- 'users-per-group' => '그룹당 사용자 수',
+ 'select-category' => '아래 카테고리를 선택하십시오.',
+ 'site-stats' => '사이트 통계',
+ 'stats' => '통계',
+ 'stats-format' => '모든 통계는 상위 100 형식으로 표시됩니다.',
+ 'top-bankers' => '최고 은행가',
+ 'top-bountied' => '탑 장려금 수령',
+ 'top-completed' => '탑 완료된 항목',
+ 'top-dead' => '탑 데드',
+ 'top-downloaded' => '탑 다운로드',
+ 'top-downloaders' => '최고 다운로더',
+ 'top-dying' => '탑 죽어가는 토렌트',
+ 'top-leeched' => '탑 리처',
+ 'top-leechers' => '탑 리처들',
+ 'top-seeded' => '탑 시드',
+ 'top-seeding' => '탑 시드',
+ 'top-seeders' => '톱 시드',
+ 'top-seedsize' => '톱 시드 크기',
+ 'top-seedtime' => '탑 시드 시간',
+ 'top-uploaders' => '인기 업 로더',
+ 'total-download' => '총 다운로드',
+ 'total-torrents' => '총 급류',
+ 'total-traffic' => '총 트래픽',
+ 'total-upload' => '총 업로드',
+ 'users-in-group' => '그룹 사용자',
+ 'users-per-group' => '그룹당 사용자 수',
];
diff --git a/lang/ko/torrent.php b/lang/ko/torrent.php
index 4048c02ff..8384aa9f3 100644
--- a/lang/ko/torrent.php
+++ b/lang/ko/torrent.php
@@ -12,197 +12,197 @@
*/
return [
- 'activity' => '활동',
- 'age' => '나이',
- 'agent' => '에이전트',
- 'alive' => '살아 있는',
- 'announce-url' => 'URL 발표',
- 'announce-url-desc' => '새 토런트를 만들 때 위의 공지 URL을 사용하십시오. 사이트에서 다운로드하지 않고 토렌트를 사용하려면 비공개 플래그와 소스를 다음과 같이 설정해야합니다. source',
- 'announce-url-desc-url' => '문제가있다? 우리의 가이드를 여기에서보십시오',
- 'announce-url-desc2' => '모든 업로드에는 TMDB와 IMDB가 필요합니다! 이것은 포스터 / 백 드롭과 ExtraInfo를 잡는 데 사용됩니다.',
- 'approved' => '승인 됨',
- 'audio' => '오디오',
- 'bon-tipped' => '보너스포인트 팁.',
- 'bookmark' => '북마크',
- 'bookmarks' => '북마크들',
- 'bump' => '충돌',
- 'cant-upload' => '오류 : 업로드 권한이 사용 중지되었습니다.',
- 'cant-upload-desc' => '이게 잘못되었다고 생각하면 직원에게 문의하십시오.',
- 'cards' => '카드',
- 'cards-view' => '토런트 카드보기',
- 'categories' => '카테고리',
- 'category' => '범주',
- 'client' => '클라이언트',
- 'commited' => '컴밋티드',
- 'completed' => '완료 됨',
- 'completed_at' => '완료 시간 :',
- 'completed-not-seeding' => '이 다운로드를 완료했지만 더 이상 시드가 아닙니다.',
- 'created_at' => '작성 시간 :',
- 'credited' => '작성되었다',
- 'current' => '현재',
- 'current-filters' => '현재 필터',
- 'currently-leeching' => '현재 리칭',
- 'currently-seeding' => '현재 시드',
- 'dead-torrent' => '죽은 토런트',
- 'dead-torrents' => '죽은 토런트',
- 'delete-bookmark' => '이 북밐, 삭제',
- 'description' => '설명',
- 'discounts' => '할인',
- 'double-upload' => '이중 업로드',
- 'download-all' => '모두 다운로드',
- 'download-check' => '다운로드 확인',
- 'downloaded' => '다운로드 됨',
- 'dying-torrent' => '죽어가는 토런트',
- 'dying-torrents' => '죽어가는 토런트',
- 'encode-settings' => '인코딩 설정',
- 'estimated-ratio' => '다운로드 후 예상 비율',
- 'failed' => '실패한',
- 'feature' => '추천',
- 'featured' => '추천',
- 'featured-desc' => '특집 토런트 100 % 무료 및 더블 업로드!',
- 'featured-until' => '이것은 유명한 토렌트 니다',
- 'file' => '파일',
- 'filters' => '필터',
- 'fl-tokens-left' => '가지고있는 프리리치 토큰. : 남은 토큰',
- 'freeleech' => '프리리치',
- 'freeleech-token' => '프리리치 토큰',
- 'general' => '일반',
- 'genre' => '유형',
- 'global-double-upload' => '글로벌 더블 올리기',
- 'global-freeleech' => '글로벌 프리리치',
- 'grant' => '부여',
- 'greater-than' => '보다 큰',
- 'grouping' => '그룹화',
- 'groupings' => '그룹화',
- 'grouping-categories' => '그룹 분류',
+ 'activity' => '활동',
+ 'age' => '나이',
+ 'agent' => '에이전트',
+ 'alive' => '살아 있는',
+ 'announce-url' => 'URL 발표',
+ 'announce-url-desc' => '새 토런트를 만들 때 위의 공지 URL을 사용하십시오. 사이트에서 다운로드하지 않고 토렌트를 사용하려면 비공개 플래그와 소스를 다음과 같이 설정해야합니다. source',
+ 'announce-url-desc-url' => '문제가있다? 우리의 가이드를 여기에서보십시오',
+ 'announce-url-desc2' => '모든 업로드에는 TMDB와 IMDB가 필요합니다! 이것은 포스터 / 백 드롭과 ExtraInfo를 잡는 데 사용됩니다.',
+ 'approved' => '승인 됨',
+ 'audio' => '오디오',
+ 'bon-tipped' => '보너스포인트 팁.',
+ 'bookmark' => '북마크',
+ 'bookmarks' => '북마크들',
+ 'bump' => '충돌',
+ 'cant-upload' => '오류 : 업로드 권한이 사용 중지되었습니다.',
+ 'cant-upload-desc' => '이게 잘못되었다고 생각하면 직원에게 문의하십시오.',
+ 'cards' => '카드',
+ 'cards-view' => '토런트 카드보기',
+ 'categories' => '카테고리',
+ 'category' => '범주',
+ 'client' => '클라이언트',
+ 'commited' => '컴밋티드',
+ 'completed' => '완료 됨',
+ 'completed_at' => '완료 시간 :',
+ 'completed-not-seeding' => '이 다운로드를 완료했지만 더 이상 시드가 아닙니다.',
+ 'created_at' => '작성 시간 :',
+ 'credited' => '작성되었다',
+ 'current' => '현재',
+ 'current-filters' => '현재 필터',
+ 'currently-leeching' => '현재 리칭',
+ 'currently-seeding' => '현재 시드',
+ 'dead-torrent' => '죽은 토런트',
+ 'dead-torrents' => '죽은 토런트',
+ 'delete-bookmark' => '이 북밐, 삭제',
+ 'description' => '설명',
+ 'discounts' => '할인',
+ 'double-upload' => '이중 업로드',
+ 'download-all' => '모두 다운로드',
+ 'download-check' => '다운로드 확인',
+ 'downloaded' => '다운로드 됨',
+ 'dying-torrent' => '죽어가는 토런트',
+ 'dying-torrents' => '죽어가는 토런트',
+ 'encode-settings' => '인코딩 설정',
+ 'estimated-ratio' => '다운로드 후 예상 비율',
+ 'failed' => '실패한',
+ 'feature' => '추천',
+ 'featured' => '추천',
+ 'featured-desc' => '특집 토런트 100 % 무료 및 더블 업로드!',
+ 'featured-until' => '이것은 유명한 토렌트 니다',
+ 'file' => '파일',
+ 'filters' => '필터',
+ 'fl-tokens-left' => '가지고있는 프리리치 토큰. : 남은 토큰',
+ 'freeleech' => '프리리치',
+ 'freeleech-token' => '프리리치 토큰',
+ 'general' => '일반',
+ 'genre' => '유형',
+ 'global-double-upload' => '글로벌 더블 올리기',
+ 'global-freeleech' => '글로벌 프리리치',
+ 'grant' => '부여',
+ 'greater-than' => '보다 큰',
+ 'grouping' => '그룹화',
+ 'groupings' => '그룹화',
+ 'grouping-categories' => '그룹 분류',
'grouping-categories-desc' => '어떤 카테고리로 그룹화 하시겠습니까?',
- 'grouping-results' => '결과 그룹화',
- 'groupings-view' => '그룹화보기',
- 'have-completed' => '완료 됨',
- 'have-downloaded' => '다운로드 됨',
- 'have-not-completed' => '완료되지 않음',
- 'have-not-downloaded' => '다운로드되지',
- 'health' => '상태',
- 'history' => '역사',
- 'hitrun' => '힛&런?',
- 'hit-and-runs' => '힛&런 횟수',
- 'immune' => '면제',
- 'info' => '정보',
- 'internal' => '내부',
- 'internal-release' => '내부 릴리즈',
- 'last-seed-activity' => '마지막 시드 작업',
- 'last-seeder' => '당신은 최후의 남은 시더입니다! (적어도 3 번 다운로드되었습니다)',
- 'last-update' => '마지막 업데이트',
- 'leave-tip' => '팁 남기기',
- 'leecher' => '리처',
- 'leechers' => '리처',
- 'leeching' => '리칭',
- 'left' => '왼쪽',
- 'legendary-seeder' => '전설적인 시더',
- 'legendary-torrent' => '전설적인 토런트',
- 'list' => '리스트',
- 'me' => '나에게',
- 'media-info' => '미디어 정보',
- 'media-info-parser' => '미디어 정보 파셔',
- 'media-info-paste' => '여기에 미디어 정보 붙여 넣기',
- 'meta-desc' => '다운로드 : 최대 속도로 이름 지정',
- 'moderation' => '저장',
- 'movies' => '영화들',
- 'mvp' => 'MVP',
- 'my-active-torrents' => '사용하고 있는 토런트',
- 'name' => '이름',
- 'no-bookmarks' => '북마크를 찾을 수 없습니다.',
- 'no-discounts' => '현재 할인 없음',
- 'no-meta' => '메타 데이터를 찾을 수 없습니다.',
- 'no-privileges' => '이 파일을 다운로드 할 수 없습니다. 아래에서 자세한 정보를 확인하십시오.',
- 'no-privileges-desc' => '위의 실패한 결과를 해결하여 다운로드 버튼을 표시하십시오.',
- 'not-completed' => '다운로드가 시작되었지만 완료되지 않았습니다.',
- 'not-downloaded' => '다운로드되지',
- 'old-torrent' => '올드 토런트',
- 'optional' => '선택 과목',
- 'original-output' => '원본 출력 표시 / 숨기기',
- 'participant' => '참가자',
- 'passed' => '합격',
- 'peers' => '동료',
- 'pending' => '대기중인',
- 'personal-freeleech' => '개인 프리리치',
- 'poster' => '포스터',
- 'poster-view' => '포스터보기',
- 'posters' => '포스터',
- 'prewarn' => '이미 경고',
- 'progress' => '진행',
- 'quick-comment' => '빠른 설명',
- 'quick-tip' => '빠른 팁 금액',
- 'rated' => '순위',
- 'rating' => '평가',
- 'ready' => '이 파일을 다운로드 할 준비가되었습니다.',
- 'rejected' => '거부 됨',
- 'released' => '출시 됨',
- 'remaining' => '남은',
- 'request-reseed' => '요청 재 입력',
- 'requires-reseed' => '리 시드 (Reseed) 필요',
- 'resurrections' => '부활',
- 'revoke' => '취소',
- 'rss' => 'RSS',
- 'runtime' => '실행 시간',
- 'satisfied_in' => '만족',
- 'say-thanks' => '당신이 할 수있는 한 감사 와 씨를 말한다.',
- 'sd-content' => 'SD 콘텐츠',
- 'search' => '찾기',
- 'seed-time' => '시딩 시간',
- 'seeder' => '시더',
- 'seeders' => '시더들',
- 'seeding' => '시딩',
- 'seedsize' => '시드 크기',
- 'seedtime' => '시딩 시간',
- 'short-completed' => '짧은 완료',
- 'short-leechs' => '짧은 리처',
- 'short-seeds' => '짧은 시드',
- 'show-files' => '파일 표시',
- 'similar' => '유사한 토런트',
- 'size' => '크기',
- 'special' => '특별한',
- 'special-freeleech' => '특별 프리리치',
- 'started' => '시작됨',
- 'status' => '상태',
- 'statistics' => '통계',
- 'stats' => '통계',
- 'sticky' => '고정',
- 'stream-optimized' => '스트림 최적화 됨',
- 'subtitle' => '자막',
- 'team-player' => '팀 플레이어',
- 'thank' => '감사',
- 'thanked' => '고맙습니다.',
- 'thanks' => '감사',
- 'thanks-given' => '주어진 감사',
- 'times' => '시간',
- 'tip-jar' => '팁',
- 'title' => '타이틀',
- 'titles' => '제목',
- 'top-completed' => '최상위 완료된 토런트',
- 'top-dead' => '최상위 죽은 토런트',
- 'top-dying' => '최상위 죽고있는 토런트.',
- 'top-leeched' => '탑 리치드',
- 'top-seeded' => '탑 시드',
- 'torrent' => '토런트',
- 'torrent-request' => '토런트 요청',
- 'torrent-tips' => '총계 : 전체 보너스 포인트가 업로더에게 보내졌습니다 .',
- 'torrent-tips-desc' => '이것은 보너스 포인트에서 공제됩니다.',
- 'torrents' => '급류',
- 'trailer' => '예고편보기',
- 'type' => '타입',
- 'types' => '유형',
- 'unbookmark' => '북마크 아님',
- 'unsatisfieds' => '불만족 스러움',
- 'unsticky' => '엉뚱한',
- 'updated' => '업데이트 됨',
- 'updated_at' => '에 업데이트 됨',
- 'uploaded' => '업로드 됨',
- 'uploaded-by' => '업로드 한 사람',
- 'uploader' => '업로더',
- 'use-fl-token' => '프리리치 토큰 사용',
- 'video' => '비디오',
- 'view-more' => '더보기',
- 'view-trailer' => '예고편보기',
- 'votes' => '투표 수',
+ 'grouping-results' => '결과 그룹화',
+ 'groupings-view' => '그룹화보기',
+ 'have-completed' => '완료 됨',
+ 'have-downloaded' => '다운로드 됨',
+ 'have-not-completed' => '완료되지 않음',
+ 'have-not-downloaded' => '다운로드되지',
+ 'health' => '상태',
+ 'history' => '역사',
+ 'hitrun' => '힛&런?',
+ 'hit-and-runs' => '힛&런 횟수',
+ 'immune' => '면제',
+ 'info' => '정보',
+ 'internal' => '내부',
+ 'internal-release' => '내부 릴리즈',
+ 'last-seed-activity' => '마지막 시드 작업',
+ 'last-seeder' => '당신은 최후의 남은 시더입니다! (적어도 3 번 다운로드되었습니다)',
+ 'last-update' => '마지막 업데이트',
+ 'leave-tip' => '팁 남기기',
+ 'leecher' => '리처',
+ 'leechers' => '리처',
+ 'leeching' => '리칭',
+ 'left' => '왼쪽',
+ 'legendary-seeder' => '전설적인 시더',
+ 'legendary-torrent' => '전설적인 토런트',
+ 'list' => '리스트',
+ 'me' => '나에게',
+ 'media-info' => '미디어 정보',
+ 'media-info-parser' => '미디어 정보 파셔',
+ 'media-info-paste' => '여기에 미디어 정보 붙여 넣기',
+ 'meta-desc' => '다운로드 : 최대 속도로 이름 지정',
+ 'moderation' => '저장',
+ 'movies' => '영화들',
+ 'mvp' => 'MVP',
+ 'my-active-torrents' => '사용하고 있는 토런트',
+ 'name' => '이름',
+ 'no-bookmarks' => '북마크를 찾을 수 없습니다.',
+ 'no-discounts' => '현재 할인 없음',
+ 'no-meta' => '메타 데이터를 찾을 수 없습니다.',
+ 'no-privileges' => '이 파일을 다운로드 할 수 없습니다. 아래에서 자세한 정보를 확인하십시오.',
+ 'no-privileges-desc' => '위의 실패한 결과를 해결하여 다운로드 버튼을 표시하십시오.',
+ 'not-completed' => '다운로드가 시작되었지만 완료되지 않았습니다.',
+ 'not-downloaded' => '다운로드되지',
+ 'old-torrent' => '올드 토런트',
+ 'optional' => '선택 과목',
+ 'original-output' => '원본 출력 표시 / 숨기기',
+ 'participant' => '참가자',
+ 'passed' => '합격',
+ 'peers' => '동료',
+ 'pending' => '대기중인',
+ 'personal-freeleech' => '개인 프리리치',
+ 'poster' => '포스터',
+ 'poster-view' => '포스터보기',
+ 'posters' => '포스터',
+ 'prewarn' => '이미 경고',
+ 'progress' => '진행',
+ 'quick-comment' => '빠른 설명',
+ 'quick-tip' => '빠른 팁 금액',
+ 'rated' => '순위',
+ 'rating' => '평가',
+ 'ready' => '이 파일을 다운로드 할 준비가되었습니다.',
+ 'rejected' => '거부 됨',
+ 'released' => '출시 됨',
+ 'remaining' => '남은',
+ 'request-reseed' => '요청 재 입력',
+ 'requires-reseed' => '리 시드 (Reseed) 필요',
+ 'resurrections' => '부활',
+ 'revoke' => '취소',
+ 'rss' => 'RSS',
+ 'runtime' => '실행 시간',
+ 'satisfied_in' => '만족',
+ 'say-thanks' => '당신이 할 수있는 한 감사 와 씨를 말한다.',
+ 'sd-content' => 'SD 콘텐츠',
+ 'search' => '찾기',
+ 'seed-time' => '시딩 시간',
+ 'seeder' => '시더',
+ 'seeders' => '시더들',
+ 'seeding' => '시딩',
+ 'seedsize' => '시드 크기',
+ 'seedtime' => '시딩 시간',
+ 'short-completed' => '짧은 완료',
+ 'short-leechs' => '짧은 리처',
+ 'short-seeds' => '짧은 시드',
+ 'show-files' => '파일 표시',
+ 'similar' => '유사한 토런트',
+ 'size' => '크기',
+ 'special' => '특별한',
+ 'special-freeleech' => '특별 프리리치',
+ 'started' => '시작됨',
+ 'status' => '상태',
+ 'statistics' => '통계',
+ 'stats' => '통계',
+ 'sticky' => '고정',
+ 'stream-optimized' => '스트림 최적화 됨',
+ 'subtitle' => '자막',
+ 'team-player' => '팀 플레이어',
+ 'thank' => '감사',
+ 'thanked' => '고맙습니다.',
+ 'thanks' => '감사',
+ 'thanks-given' => '주어진 감사',
+ 'times' => '시간',
+ 'tip-jar' => '팁',
+ 'title' => '타이틀',
+ 'titles' => '제목',
+ 'top-completed' => '최상위 완료된 토런트',
+ 'top-dead' => '최상위 죽은 토런트',
+ 'top-dying' => '최상위 죽고있는 토런트.',
+ 'top-leeched' => '탑 리치드',
+ 'top-seeded' => '탑 시드',
+ 'torrent' => '토런트',
+ 'torrent-request' => '토런트 요청',
+ 'torrent-tips' => '총계 : 전체 보너스 포인트가 업로더에게 보내졌습니다 .',
+ 'torrent-tips-desc' => '이것은 보너스 포인트에서 공제됩니다.',
+ 'torrents' => '급류',
+ 'trailer' => '예고편보기',
+ 'type' => '타입',
+ 'types' => '유형',
+ 'unbookmark' => '북마크 아님',
+ 'unsatisfieds' => '불만족 스러움',
+ 'unsticky' => '엉뚱한',
+ 'updated' => '업데이트 됨',
+ 'updated_at' => '에 업데이트 됨',
+ 'uploaded' => '업로드 됨',
+ 'uploaded-by' => '업로드 한 사람',
+ 'uploader' => '업로더',
+ 'use-fl-token' => '프리리치 토큰 사용',
+ 'video' => '비디오',
+ 'view-more' => '더보기',
+ 'view-trailer' => '예고편보기',
+ 'votes' => '투표 수',
];
diff --git a/lang/ko/user.php b/lang/ko/user.php
index 55a6e287f..b462b7c1e 100644
--- a/lang/ko/user.php
+++ b/lang/ko/user.php
@@ -12,316 +12,316 @@
*/
return [
- 'about' => '어바웃',
- 'about-me' => '나에 대해서',
- 'accepted-at' => '수락 시간 :',
- 'accepted-by' => '에게 인정 받다',
- 'account-notification' => '계정 알림 설정',
- 'account-notification-follow' => '사용자가 내 계정을 추적 할 때 알림을받습니다.',
- 'account-notification-unfollow' => '사용자가 계정을 푸시 할 때 알림 수신',
- 'account-notification-help' => '계정과 관련된 알림을 관리합니다. 이 설정은 어떤 그룹이 귀하의 계정과 관련된 알림을 보낼 수없는 경우 대체 또는 당신은 알림을 사용하지 않도록 설정하면',
- 'account-settings' => '계정 설정',
- 'achievement-privacy' => '업적 설정',
- 'achievement-privacy-list' => '사용자가 업적 목록을 볼 수 있도록 허용',
- 'achievement-help' => '프로필에 액세스 할 수있는 그룹과 특정 업적 관련 정보 공유를 제어합니다. 그룹에서 업적에 액세스하지 못하게하거나 비공개로 설정하는 경우이 설정이 무시됩니다.',
- 'achievements' => '업적',
- 'active' => '유효한',
- 'active-table' => '내 활성 테이블',
- 'active-torrents' => '활발한 토렌트',
- 'active-warning' => '활성 경고',
- 'active-warnings' => '활성 경고',
- 'add-seedbox' => '시드 박스 추가',
- 'all-torrents' => '모든 토렌트',
- 'article-comments' => '의견 쓰기',
- 'avatar' => '아바타',
- 'avg-seedtime' => '평균 시딩 시간',
- 'badges' => '배지',
- 'ban' => '사용자 금지',
- 'ban-log' => '금지 로그',
- 'become-hidden' => '숨겨지기',
- 'become-visible' => '보이기',
- 'bon' => '보너스 포인트',
- 'bon-notification' => '보너스 포인트 알림 설정',
- 'bon-notification-gift' => '사용자가 선물을 받으면 알림을받습니다.',
- 'bon-notification-help' => '보너스 포인트 트랜잭션과 관련된 통지를 제어합니다. 이 설정은 어떤 그룹 보너스 포인트 에 관한 알림을 보낼 수없는 경우 대체 또는 당신은 알림을 사용하지 않도록 설정하면',
- 'bookmarks' => '북마크',
- 'bounty-given' => '현상금 전달',
- 'bounty-received' => '현상금 수령',
- 'can-chat' => '채팅 가능',
- 'can-comment' => '댓글 수 있음',
- 'can-download' => '다운로드 가능',
- 'can-invite' => '초대 할 수 있음',
- 'can-request' => '요청 가능',
- 'can-upload' => '업로드 가능',
- 'certified-banker' => '공인 뱅커',
- 'certified-banker-desc' => '은행에 5만이 넘는 보너스 포인트가 있다.',
- 'certified-downloader' => '공인 다운로더',
- 'certified-downloader-desc' => '100 가지 이상의 토렌트를 다운로드했습니다!',
- 'certified-seeder' => '인증 된 시더',
- 'certified-seeder-desc' => '150 개 이상의 토렌트를 시딩!',
- 'change-email' => '이메일을 변경',
- 'change-email-help' => '이메일을 변경 한 후에는 계정을 다시 확인해야합니다.',
- 'change-password' => '비밀번호 변경',
- 'change-password-help' => '암호를 변경하면 다시 로그인해야합니다.',
- 'client-ip-address' => '클라이언트 IP 주소',
- 'code' => '암호',
- 'comments' => '코멘트',
- 'created-on' => '에 만든',
- 'credited-download' => '크레딧 다운로드',
- 'credited-upload' => '크레딧 업로드',
- 'current-password' => '현재 비밀번호',
- 'custom-title' => '커스텀 타이틀',
- 'delete' => '사용자 삭제',
- 'disable-notifications' => '알림 사용 안 함',
- 'disclaimer' => '포기',
- 'disclaimer-info' => '우리는 기본적으로 대부분의 추적기와 같은 사용자 IP 주소를 기록하지 않습니다. 아래의 씨앗 상자 IP를 추가하면 레코드를 삭제하지 않는 한 아래 나열된 IP가 이제 데이터베이스에 저장됩니다.',
- 'disclaimer-info-bordered' => 'Seedbox IP를 추가하면 아래에 나열된 IP에서 급류 된 급류에 대해 고속 토런트 태그가 실행됩니다',
- 'download-bon' => '보너스 포인트 스토어에서 삭제 된 다운로드',
- 'download-recorded' => '기록 된 다운로드',
- 'download-true' => '실제 다운로드',
- 'downloads' => '다운로드',
- 'edit' => '사용자 편집',
- 'edit-profile' => '프로필 편집',
- 'enable-notifications' => '알림 사용',
- 'expired' => '만료 됨',
- 'expires-on' => '만료일',
- 'extra' => '특별한',
- 'filled-request' => '채워진 회원 요청',
- 'follow' => '팔로우',
- 'follower-privacy' => '팔로어 설정',
- 'follower-privacy-list' => '사용자가 팔로어 목록을 볼 수 있도록 허용',
- 'follower-help' => '프로필에 액세스 할 수있는 그룹과 특정 팔로워 관련 정보 공유를 제어합니다. 팔로어에 대한 그룹 액세스를 허용하지 않거나 비공개로 설정하는 경우이 설정이 무시됩니다.',
- 'followers' => '팔로워들',
- 'following-notification' => '팔로우된 사용자 알림 설정',
- 'following-notification-upload' => '팔로우된 사용자가 토런트를 업로드하면 알림 수신',
- 'following-notification-help' => '팔로우된 사용자 사이트 작업과 관련된 알림을 제어합니다. 이 설정은 어떤 그룹이 사용자를 따라 관련된 알림을 보낼 수없는 경우 대체 또는 당신은 알림을 사용하지 않도록 설정하면',
- 'formats-are-supported' => ': 형식이 지원됩니다.',
- 'forum-notification' => '포럼 알림 설정',
- 'forum-notification-topic' => '시작한 주제가 새 소식을 받으면 알림을받습니다.',
- 'forum-notification-help' => '포럼 활동과 관련된 알림을 제어합니다. 이 설정은 어떤 그룹이 포럼 활동에 관한 알림을 보낼 수없는 경우 대체 또는 당신은 알림을 사용하지 않도록 설정하면',
- 'forum-privacy' => '포럼 설정',
- 'forum-privacy-post' => '사용자가 게시 한 포럼 게시물 목록을 볼 수 있도록 허용',
- 'forum-privacy-topic' => '사용자가 시작한 포럼 주제 목록을 볼 수 있도록 허용',
- 'forum-help' => '프로필에 액세스 할 수있는 그룹과 특정 포럼 관련 통계 및 정보 공유를 제어합니다. 포럼 관련 통계 및 정보에 대한 그룹 액세스를 허용하지 않거나 비공개로 설정하는 경우이 설정이 무시됩니다.',
- 'forum-signature' => '포럼 서명',
- 'forums' => '포럼',
- 'general' => '일반',
- 'general-settings' => '일반 설정',
- 'gift-given' => '선물 전달',
- 'gift-received' => '선물 수령',
- 'go-public' => '공개로 이동',
- 'go-private' => '비공개로 이동',
- 'history' => '히스토리',
- 'history-table' => '내 히스토리',
- 'hit-n-runs' => '힛&런',
- 'hit-n-runs-count' => '조회수 및 실행 횟수 (전체 시간)',
- 'hit-n-runs-history' => '토런트 조회수 및 실행 기록',
- 'image' => '이미지',
- 'important' => '중요한',
- 'important-info' => '중요 정보',
- 'information' => '정보',
- 'invite-friend' => '친구 초대 (이메일 + 메시지 필요)',
- 'invite-tree' => '초대 트리',
- 'invites' => '초대장',
- 'invites-banned' => '오류 : 초대 된 권한이 사용 중지되었습니다.',
- 'invites-banned-desc' => '당신이 잘못 느낀다면 직원에게 연락하십시오!',
- 'invites-count' => 'You have : 초대장 갯수.',
- 'invites-disabled' => '주의 : 초대장은 초대 등록으로 인해 장애가 있습니다!',
- 'invites-disabled-desc' => '곧 다시 확인하시기 바랍니다!',
- 'invites-rules' => '- 내가 알고 신뢰하는 사람 만 초대하십시오.
- 귀하는 귀하가 초대 한 사람들에 대해 개인적으로 책임을지게됩니다.
- 초대하지 마시고 모든 초대 된 사용자를 확인합니다.
- Invite 거래 또는 판매 금지.
- 초대 한 사람이 속임수, 거래 계좌 또는 판매 / 거래 초대장에 잡히면 경고를 받게됩니다.
',
- 'invites-send' => '초대장 보내기',
- 'last-login' => '마지막 로그인',
- 'locked' => '잠김',
- 'locked-achievements' => '잠긴 로그',
- 'member-since' => '회원 가입일',
- 'members-desc' => '등록 된 사용자 목록 : 모든 그룹의 제목. 지금 사용자를 찾으십시오.',
- 'mention-notification' => '@주의 알림 설정',
+ 'about' => '어바웃',
+ 'about-me' => '나에 대해서',
+ 'accepted-at' => '수락 시간 :',
+ 'accepted-by' => '에게 인정 받다',
+ 'account-notification' => '계정 알림 설정',
+ 'account-notification-follow' => '사용자가 내 계정을 추적 할 때 알림을받습니다.',
+ 'account-notification-unfollow' => '사용자가 계정을 푸시 할 때 알림 수신',
+ 'account-notification-help' => '계정과 관련된 알림을 관리합니다. 이 설정은 어떤 그룹이 귀하의 계정과 관련된 알림을 보낼 수없는 경우 대체 또는 당신은 알림을 사용하지 않도록 설정하면',
+ 'account-settings' => '계정 설정',
+ 'achievement-privacy' => '업적 설정',
+ 'achievement-privacy-list' => '사용자가 업적 목록을 볼 수 있도록 허용',
+ 'achievement-help' => '프로필에 액세스 할 수있는 그룹과 특정 업적 관련 정보 공유를 제어합니다. 그룹에서 업적에 액세스하지 못하게하거나 비공개로 설정하는 경우이 설정이 무시됩니다.',
+ 'achievements' => '업적',
+ 'active' => '유효한',
+ 'active-table' => '내 활성 테이블',
+ 'active-torrents' => '활발한 토렌트',
+ 'active-warning' => '활성 경고',
+ 'active-warnings' => '활성 경고',
+ 'add-seedbox' => '시드 박스 추가',
+ 'all-torrents' => '모든 토렌트',
+ 'article-comments' => '의견 쓰기',
+ 'avatar' => '아바타',
+ 'avg-seedtime' => '평균 시딩 시간',
+ 'badges' => '배지',
+ 'ban' => '사용자 금지',
+ 'ban-log' => '금지 로그',
+ 'become-hidden' => '숨겨지기',
+ 'become-visible' => '보이기',
+ 'bon' => '보너스 포인트',
+ 'bon-notification' => '보너스 포인트 알림 설정',
+ 'bon-notification-gift' => '사용자가 선물을 받으면 알림을받습니다.',
+ 'bon-notification-help' => '보너스 포인트 트랜잭션과 관련된 통지를 제어합니다. 이 설정은 어떤 그룹 보너스 포인트 에 관한 알림을 보낼 수없는 경우 대체 또는 당신은 알림을 사용하지 않도록 설정하면',
+ 'bookmarks' => '북마크',
+ 'bounty-given' => '현상금 전달',
+ 'bounty-received' => '현상금 수령',
+ 'can-chat' => '채팅 가능',
+ 'can-comment' => '댓글 수 있음',
+ 'can-download' => '다운로드 가능',
+ 'can-invite' => '초대 할 수 있음',
+ 'can-request' => '요청 가능',
+ 'can-upload' => '업로드 가능',
+ 'certified-banker' => '공인 뱅커',
+ 'certified-banker-desc' => '은행에 5만이 넘는 보너스 포인트가 있다.',
+ 'certified-downloader' => '공인 다운로더',
+ 'certified-downloader-desc' => '100 가지 이상의 토렌트를 다운로드했습니다!',
+ 'certified-seeder' => '인증 된 시더',
+ 'certified-seeder-desc' => '150 개 이상의 토렌트를 시딩!',
+ 'change-email' => '이메일을 변경',
+ 'change-email-help' => '이메일을 변경 한 후에는 계정을 다시 확인해야합니다.',
+ 'change-password' => '비밀번호 변경',
+ 'change-password-help' => '암호를 변경하면 다시 로그인해야합니다.',
+ 'client-ip-address' => '클라이언트 IP 주소',
+ 'code' => '암호',
+ 'comments' => '코멘트',
+ 'created-on' => '에 만든',
+ 'credited-download' => '크레딧 다운로드',
+ 'credited-upload' => '크레딧 업로드',
+ 'current-password' => '현재 비밀번호',
+ 'custom-title' => '커스텀 타이틀',
+ 'delete' => '사용자 삭제',
+ 'disable-notifications' => '알림 사용 안 함',
+ 'disclaimer' => '포기',
+ 'disclaimer-info' => '우리는 기본적으로 대부분의 추적기와 같은 사용자 IP 주소를 기록하지 않습니다. 아래의 씨앗 상자 IP를 추가하면 레코드를 삭제하지 않는 한 아래 나열된 IP가 이제 데이터베이스에 저장됩니다.',
+ 'disclaimer-info-bordered' => 'Seedbox IP를 추가하면 아래에 나열된 IP에서 급류 된 급류에 대해 고속 토런트 태그가 실행됩니다',
+ 'download-bon' => '보너스 포인트 스토어에서 삭제 된 다운로드',
+ 'download-recorded' => '기록 된 다운로드',
+ 'download-true' => '실제 다운로드',
+ 'downloads' => '다운로드',
+ 'edit' => '사용자 편집',
+ 'edit-profile' => '프로필 편집',
+ 'enable-notifications' => '알림 사용',
+ 'expired' => '만료 됨',
+ 'expires-on' => '만료일',
+ 'extra' => '특별한',
+ 'filled-request' => '채워진 회원 요청',
+ 'follow' => '팔로우',
+ 'follower-privacy' => '팔로어 설정',
+ 'follower-privacy-list' => '사용자가 팔로어 목록을 볼 수 있도록 허용',
+ 'follower-help' => '프로필에 액세스 할 수있는 그룹과 특정 팔로워 관련 정보 공유를 제어합니다. 팔로어에 대한 그룹 액세스를 허용하지 않거나 비공개로 설정하는 경우이 설정이 무시됩니다.',
+ 'followers' => '팔로워들',
+ 'following-notification' => '팔로우된 사용자 알림 설정',
+ 'following-notification-upload' => '팔로우된 사용자가 토런트를 업로드하면 알림 수신',
+ 'following-notification-help' => '팔로우된 사용자 사이트 작업과 관련된 알림을 제어합니다. 이 설정은 어떤 그룹이 사용자를 따라 관련된 알림을 보낼 수없는 경우 대체 또는 당신은 알림을 사용하지 않도록 설정하면',
+ 'formats-are-supported' => ': 형식이 지원됩니다.',
+ 'forum-notification' => '포럼 알림 설정',
+ 'forum-notification-topic' => '시작한 주제가 새 소식을 받으면 알림을받습니다.',
+ 'forum-notification-help' => '포럼 활동과 관련된 알림을 제어합니다. 이 설정은 어떤 그룹이 포럼 활동에 관한 알림을 보낼 수없는 경우 대체 또는 당신은 알림을 사용하지 않도록 설정하면',
+ 'forum-privacy' => '포럼 설정',
+ 'forum-privacy-post' => '사용자가 게시 한 포럼 게시물 목록을 볼 수 있도록 허용',
+ 'forum-privacy-topic' => '사용자가 시작한 포럼 주제 목록을 볼 수 있도록 허용',
+ 'forum-help' => '프로필에 액세스 할 수있는 그룹과 특정 포럼 관련 통계 및 정보 공유를 제어합니다. 포럼 관련 통계 및 정보에 대한 그룹 액세스를 허용하지 않거나 비공개로 설정하는 경우이 설정이 무시됩니다.',
+ 'forum-signature' => '포럼 서명',
+ 'forums' => '포럼',
+ 'general' => '일반',
+ 'general-settings' => '일반 설정',
+ 'gift-given' => '선물 전달',
+ 'gift-received' => '선물 수령',
+ 'go-public' => '공개로 이동',
+ 'go-private' => '비공개로 이동',
+ 'history' => '히스토리',
+ 'history-table' => '내 히스토리',
+ 'hit-n-runs' => '힛&런',
+ 'hit-n-runs-count' => '조회수 및 실행 횟수 (전체 시간)',
+ 'hit-n-runs-history' => '토런트 조회수 및 실행 기록',
+ 'image' => '이미지',
+ 'important' => '중요한',
+ 'important-info' => '중요 정보',
+ 'information' => '정보',
+ 'invite-friend' => '친구 초대 (이메일 + 메시지 필요)',
+ 'invite-tree' => '초대 트리',
+ 'invites' => '초대장',
+ 'invites-banned' => '오류 : 초대 된 권한이 사용 중지되었습니다.',
+ 'invites-banned-desc' => '당신이 잘못 느낀다면 직원에게 연락하십시오!',
+ 'invites-count' => 'You have : 초대장 갯수.',
+ 'invites-disabled' => '주의 : 초대장은 초대 등록으로 인해 장애가 있습니다!',
+ 'invites-disabled-desc' => '곧 다시 확인하시기 바랍니다!',
+ 'invites-rules' => '- 내가 알고 신뢰하는 사람 만 초대하십시오.
- 귀하는 귀하가 초대 한 사람들에 대해 개인적으로 책임을지게됩니다.
- 초대하지 마시고 모든 초대 된 사용자를 확인합니다.
- Invite 거래 또는 판매 금지.
- 초대 한 사람이 속임수, 거래 계좌 또는 판매 / 거래 초대장에 잡히면 경고를 받게됩니다.
',
+ 'invites-send' => '초대장 보내기',
+ 'last-login' => '마지막 로그인',
+ 'locked' => '잠김',
+ 'locked-achievements' => '잠긴 로그',
+ 'member-since' => '회원 가입일',
+ 'members-desc' => '등록 된 사용자 목록 : 모든 그룹의 제목. 지금 사용자를 찾으십시오.',
+ 'mention-notification' => '@주의 알림 설정',
'mention-notification-article-comment' => '기사 주석에서 @mentioned 될 때 알림 수신',
'mention-notification-torrent-comment' => '토런트 코멘트에서 @mentioned 될 때 알림을받습니다.',
'mention-notification-request-comment' => '요청 주석에 @mentioned 된 경우 알림 수신',
- 'mention-notification-forum-post' => '포럼 게시판에서 @mentioned 할 때 알림을받습니다.',
- 'mention-notification-help' => '사용자가 @ 회의를 보내면 알림을 보내도록 제어합니다. 이 설정은 사용자가 @ 회의 사용자에게 알림을 보내지 않거나 알림 을 사용 중지 한 경우 그룹에 알림을 보내지 못하도록하면 무시됩니다.',
- 'moderated-by' => '수정한 사람 : mod on',
- 'my-bonus-points' => '내 보너스 포인트',
- 'my-bookmarks' => '내 북마크',
- 'my-fl-tokens' => '내 프리리치 토큰',
- 'my-general-settings' => '내 일반 설정',
- 'my-notification' => '내 알림',
- 'my-notification-settings' => '내 알림 설정',
- 'my-privacy' => '내 개인 정보',
- 'my-privacy-settings' => '내 개인 정보 설정',
- 'my-profile' => '내 프로필',
- 'my-requested' => '내 요청한',
- 'my-security' => '내 보안',
- 'my-security-settings' => '내 보안 설정',
- 'my-seedboxes' => '내 씨드박스',
- 'my-settings' => '내 설정',
- 'my-wishlist' => '내 위시리스트',
- 'no-logs' => '이 사용자에 대한 데이터베이스에 초대 로그가 없습니다!',
- 'no-seedboxes' => '씨드박스 없음',
- 'not-authorized' => '이 페이지를 볼 수있는 권한이 없습니다. 이 회원은 닌자처럼 숨겨지는 것을 선호합니다!',
- 'note' => '노트',
- 'notification' => '알림',
- 'notification-settings' => '알림 설정',
- 'notification-from-account' => '계정 알림 수신',
- 'notification-from-account-help' => '시스템, 직원 및 다음 그룹의 계정 알림 만받습니다. 이러한 설정은 알림 을 사용하지 않으면 무시됩니다.',
- 'notification-from-bon' => 'BON 알림 수신',
- 'notification-from-bon-help' => '시스템, 직원 및 다음 그룹의 BON 통지 만받습니다. 이러한 설정은 알림 을 사용하지 않으면 무시됩니다.',
- 'notification-from-following' => '다음 사용자 알림 수신',
- 'notification-from-following-help' => '다음 그룹의 사용자 알림 만 수신하게됩니다. 이러한 설정은 알림 을 사용하지 않으면 무시됩니다.',
- 'notification-from-forum' => '다음으로부터 포럼 알림 수신',
- 'notification-from-forum-help' => '시스템, 직원 및 다음 그룹의 포럼 알림 만받습니다. 이러한 설정은 알림 을 사용하지 않으면 무시됩니다.',
- 'notification-from-subscription' => '구독 알림 수신',
- 'notification-from-subscription-help' => '시스템, 직원 및 다음 그룹의 포럼 알림 만받습니다. 이러한 설정은 알림 을 사용하지 않으면 무시됩니다.',
- 'notification-from-torrent' => 'Torrent 알림 수신',
- 'notification-from-torrent-help' => '시스템, 직원 및 다음 그룹으로부터 토렌트 알림 만받습니다. 이러한 설정은 알림 을 사용하지 않으면 무시됩니다.',
- 'notification-from-mention' => '@Mention 알림 수신',
- 'notification-from-mention-help' => '시스템, 스태프 및 다음 그룹의 @mention 알림 만받습니다. 이러한 설정은 알림 을 사용하지 않으면 무시됩니다.',
- 'notification-from-request' => '보낸 요청 알림',
- 'notification-from-request-help' => '시스템, 직원 및 다음 그룹으로부터 요청 알림 만받습니다. 이러한 설정은 알림 을 사용하지 않으면 무시됩니다.',
- 'notifications' => '알림',
- 'offline' => '사용자가 오프라인입니다!',
- 'online' => '사용자가 온라인 상태입니다!',
- 'options' => '옵션',
- 'other-help' => '프로필에 액세스 할 수있는 그룹과 다른 통계 및 정보 공유를 제어합니다. 그룹이 다른 통계 및 정보에 액세스하도록 허용하지 않거나 비공개로 설정하는 경우이 설정이 무시됩니다.',
- 'other-privacy' => '다른 설정',
- 'other-privacy-online' => '사용자가 온라인 사용자 차단에서 나를 볼 수 있도록 허용',
- 'passkey' => 'PID',
- 'passkey-warning' => 'PID는 비밀번호와 같아 안전하게 보관해야합니다!',
- 'pending-achievements' => '대기중인 업적',
- 'per-torrent' => '토렌트 당',
- 'posts' => '게시물',
- 'posts-posted' => '포럼 게시물 게시 됨',
- 'privacy' => '개인정보',
- 'privacy-settings' => '개인 정보 설정',
- 'private-info' => '개인 정보 설정',
- 'private-forum-profile' => '주의 :이 회원 주제 및 게시물 기록은 개인적으로 설정되었습니다!',
- 'private-profile' => '주의 :이 프로필은 개인적으로 설정되었습니다!',
- 'profile' => '프로필',
- 'profile-desc' => '사용자 : 사용자 프로필 등록 : 제목',
- 'profile-privacy' => '프로필 설정',
- 'profile-privacy-torrent-count' => '다운로드, 업로드, 토렌트 및 거머리의 총 수를 공유하십시오.',
- 'profile-privacy-torrent-ratio' => '기록 된 비율과 함께 총 업로드 / 다운로드 데이터 공유',
- 'profile-privacy-torrent-seed' => '총 시딩 시간 및 평균 공유',
- 'profile-privacy-title' => '개인 소유권 정보 공유',
- 'profile-privacy-about' => '나에 대한 개인 정보 공유',
- 'profile-privacy-bon-extra' => '보너스 포인트 통계 공유',
- 'profile-privacy-comment-extra' => '댓글 통계 공유',
- 'profile-privacy-forum-extra' => '포럼 통계 공유',
- 'profile-privacy-request-extra' => '요청 통계 공유',
- 'profile-privacy-torrent-extra' => '토런트 통계 공유',
- 'profile-privacy-badge' => '획득 한 배지 공유',
- 'profile-privacy-achievement' => '최근 업적 공유',
- 'profile-privacy-follower' => '최근 팔로어를 공유하십시오.',
- 'profile-privacy-warning' => 'H & R 경고 공유',
- 'profile-privacy-help' => '프로필에 표시되는 통계 및 정보를 제어합니다. 그룹이 내 프로필에 액세스하도록 허용하지 않거나 비공개로 설정하는 경우이 설정이 무시됩니다.',
- 'public-info' => '공개 정보',
- 'recent-achievements' => '최근 업적',
- 'recent-followers' => '최근 관심 사용자',
- 'registration-date' => '등록 날짜',
- 'report' => '보고서',
- 'request-help' => '프로필에 액세스 할 수있는 그룹으로 특정 요청 관련 통계 및 정보 공유를 제어합니다. 이 설정은 요청 된 관련 통계 및 정보에 대한 그룹 액세스를 허용하지 않거나 비공개로 설정하는 경우 무시됩니다.',
- 'request' => '의뢰',
- 'requested' => '요청 됨',
- 'requests' => '요청',
- 'request-comments' => '요청 된 댓글',
- 'request-notification' => '알림 설정 요청',
- 'request-notification-bounty' => '요청 된 토렌트가 새로운 현상금을 받으면 알림 수신',
- 'request-notification-comment' => '요청 된 토런트가 새로운 코멘트를 얻었을 때 알림 수신',
- 'request-notification-fill' => '요청 된 토렌트가 채워지면 알림 수신',
- 'request-notification-fill-approve' => '요청 된 토렌트 채우기가 승인되면 알림 수신',
- 'request-notification-fill-reject' => '요청 된 토렌트 채우기가 거부되면 알림 수신',
- 'request-notification-claim' => '요청 된 토렌트가 요청되면 알림 수신',
- 'request-notification-unclaim' => '요청 된 토렌트가 청구되지 않은 경우 알림 수신',
- 'request-notification-help' => '요청 활동과 관련된 알림을 제어합니다. 이 설정은 어떤 그룹이 요청 활동에 관한 알림을 보낼 수없는 경우 대체 또는 당신은 알림을 사용하지 않도록 설정하면',
- 'request-privacy' => '요청 설정',
- 'request-privacy-requested' => '사용자가 만든 요청 목록을 볼 수 있음',
- 'reset-passkey' => '리셋 패스 키 (PID)',
- 'reset-passkey-help' => 'PID를 재설정 한 후에는 활성 토렌트를 모두 다시 다운로드하거나 다시 업로드해야합니다',
- 'reset-rss' => 'RSS 키 재설정 (RID)',
- 'reset-rss-help' => 'RID를 재설정 한 후에는 활성 RSS 피드를 모두 다시로드해야합니다.',
- 'resurrections' => '부활',
- 'search' => '사용자 이름 별 빠른 검색',
- 'security' => '보안',
- 'security-settings' => '보안 설정',
- 'seedboxes' => '시드박스',
- 'seeds' => '시드',
- 'send-invite' => '초대장 보내기',
- 'sender' => '전달자',
- 'settings' => '설정',
- 'show-passkey' => 'PID 표시',
- 'staff-noted' => '직원 노트 계정',
- 'statistics' => '통계',
- 'subscription-notification' => '구독 알림 설정',
- 'subscription-notification-forum' => '가입 한 포럼이 새로운 주제를 얻을 때 알림 수신',
- 'subscription-notification-topic' => '구독 한 주제가 새 게시물을 얻으면 알림 수신',
- 'subscription-notification-help' => '구독과 관련된 알림을 제어합니다. 이 설정은 어떤 그룹이 구독에 관한 알림을 보낼 수없는 경우 대체 또는 당신은 알림을 사용하지 않도록 설정하면',
- 'thanks-given' => '고맙습니다.',
- 'thanks-received' => '감사의 말을 전했다.',
- 'tips-given' => '전달한 팁',
- 'tips-received' => '받은 팁',
- 'title' => '타이틀',
- 'top-bankers' => '탑 뱅커',
- 'top-downloaders-data' => '인기 다운 로더 (데이터)',
- 'top-leechers' => '톱 리처',
- 'top-leechers-count' => '리처 (카운트)',
- 'top-seeders' => '톱 시드',
- 'top-seeders-count' => '톱 시드 (카운트)',
- 'top-seeding-size' => '상단 시드 (크기)',
- 'top-seedtime' => '탑 시드 시간',
- 'top-uploaders-data' => '인기 업 로더 (데이터)',
- 'top-uploaders-count' => '인기 업 로더 (백작)',
- 'topics' => '토픽',
- 'topics-started' => '포럼 주제 시작',
- 'torrent-comments' => '토렌트 코멘트',
- 'torrent-help' => '프로필에 액세스 할 수있는 그룹과 특정 토렌트 관련 통계 및 정보 공유를 제어합니다. 토런트 관련 통계 및 정보에 대한 그룹 액세스를 허용하지 않거나 비공개로 설정하는 경우이 설정이 무시됩니다',
- 'torrent-notification' => '토런트 알림 설정',
- 'torrent-notification-comment' => '업로드 된 토렌트가 새로운 코멘트를 얻을 때 알림 수신',
- 'torrent-notification-thank' => '업로드 된 토런트가 새 감사를 표시하면 알림 수신',
- 'torrent-notification-tip' => '업로드 된 토렌트가 새로운 팁을 얻으면 알림을받습니다.',
- 'torrent-notification-help' => '토런트 활동과 관련된 알림을 제어합니다. 이 설정은 어떤 그룹 토런트 활동에 관한 알림을 보낼 수없는 경우 대체 또는 당신은 알림을 사용하지 않도록 설정하면',
- 'torrent-privacy' => '토런트 설정',
- 'torrent-privacy-download' => '사용자가 다운로드 한 토렌트 목록을 볼 수 있도록 허용',
- 'torrent-privacy-upload' => '사용자가 업로드 한 토런트 목록을 볼 수 있도록 허용',
- 'torrent-privacy-peer' => '사용자가 토렌트 피어 기록 테이블에서 나를 볼 수 있도록 허용',
- 'torrents' => '토렌트',
- 'torrents-history' => '토렌트 역사',
- 'total-download' => '총 다운로드',
- 'total-downloads' => '총 다운로드 수',
- 'total-leeching' => '총 리칭',
- 'total-seeding' => '총 시드',
- 'total-seedtime' => '총 시딩 시간',
- 'total-upload' => '총 업로드',
- 'total-uploads' => '총 업로드 수',
- 'unban' => 'Unban 사용자',
- 'unfollow' => '팔로우 해제',
- 'unlocked' => '잠금 해제 됨',
- 'unlocked-achievements' => '언락 업적',
- 'unsatisfieds' => '불만족스러운',
- 'upload-bon' => '보너스 포인트 업로드',
- 'upload-recorded' => '업로드 기록',
- 'upload-true' => '실제 업로드',
- 'uploads' => '업로드',
- 'uploads-table' => '테이블 업로드',
- 'user' => '사용자',
- 'user-id' => '사용자 ID',
- 'username-seedbox' => '사용자 이름 시드 박스',
- 'visible-to-achievement' => '볼 수있는 업적',
- 'visible-to-achievement-help' => '업적은 직원 및 다음 그룹에게만 공개됩니다. 개인 설정으로 이동 하면이 설정이 무시됩니다.',
- 'visible-to-follower' => '관심 사용자 표시',
- 'visible-to-follower-help' => '추종자는 직원 및 다음 그룹에게만 표시됩니다. 개인 설정으로 이동 하면이 설정이 무시됩니다.',
- 'visible-to-forum' => '볼 수있는 포럼 정보',
- 'visible-to-forum-help' => '포럼 정보는 직원 및 다음 그룹에게만 표시됩니다. 개인 설정으로 이동 하면이 설정이 무시됩니다.',
- 'visible-to-other' => '기타 표시 대상',
- 'visible-to-other-help' => '계정과 관련된 기타 정보는 직원 및 다음 그룹에게만 표시됩니다. 비공개로 설정 하거나 숨김으로 설정하면이 설정이 무시됩니다.',
- 'visible-to-profile' => '볼 수있는 프로필',
- 'visible-to-profile-help' => '프로필은 직원 및 다음 그룹에게만 표시됩니다. 개인 설정으로 이동 하면이 설정이 무시됩니다.',
- 'visible-to-request' => '요청 정보 표시',
- 'visible-to-request-help' => '요청 정보는 직원 및 다음 그룹에게만 표시됩니다. 개인 설정으로 이동 하면이 설정이 무시됩니다.',
- 'visible-to-torrent' => '토런트 정보 표시',
- 'visible-to-torrent-help' => '토렌트 정보는 직원 및 다음 그룹에게만 표시됩니다. 비공개로 설정 하거나 숨김으로 설정하면이 설정이 무시됩니다.',
- 'warned-on' => '경고',
- 'warning' => '경고',
- 'warning-log' => '경고 로그',
- 'wishlist' => '희망 목록',
+ 'mention-notification-forum-post' => '포럼 게시판에서 @mentioned 할 때 알림을받습니다.',
+ 'mention-notification-help' => '사용자가 @ 회의를 보내면 알림을 보내도록 제어합니다. 이 설정은 사용자가 @ 회의 사용자에게 알림을 보내지 않거나 알림 을 사용 중지 한 경우 그룹에 알림을 보내지 못하도록하면 무시됩니다.',
+ 'moderated-by' => '수정한 사람 : mod on',
+ 'my-bonus-points' => '내 보너스 포인트',
+ 'my-bookmarks' => '내 북마크',
+ 'my-fl-tokens' => '내 프리리치 토큰',
+ 'my-general-settings' => '내 일반 설정',
+ 'my-notification' => '내 알림',
+ 'my-notification-settings' => '내 알림 설정',
+ 'my-privacy' => '내 개인 정보',
+ 'my-privacy-settings' => '내 개인 정보 설정',
+ 'my-profile' => '내 프로필',
+ 'my-requested' => '내 요청한',
+ 'my-security' => '내 보안',
+ 'my-security-settings' => '내 보안 설정',
+ 'my-seedboxes' => '내 씨드박스',
+ 'my-settings' => '내 설정',
+ 'my-wishlist' => '내 위시리스트',
+ 'no-logs' => '이 사용자에 대한 데이터베이스에 초대 로그가 없습니다!',
+ 'no-seedboxes' => '씨드박스 없음',
+ 'not-authorized' => '이 페이지를 볼 수있는 권한이 없습니다. 이 회원은 닌자처럼 숨겨지는 것을 선호합니다!',
+ 'note' => '노트',
+ 'notification' => '알림',
+ 'notification-settings' => '알림 설정',
+ 'notification-from-account' => '계정 알림 수신',
+ 'notification-from-account-help' => '시스템, 직원 및 다음 그룹의 계정 알림 만받습니다. 이러한 설정은 알림 을 사용하지 않으면 무시됩니다.',
+ 'notification-from-bon' => 'BON 알림 수신',
+ 'notification-from-bon-help' => '시스템, 직원 및 다음 그룹의 BON 통지 만받습니다. 이러한 설정은 알림 을 사용하지 않으면 무시됩니다.',
+ 'notification-from-following' => '다음 사용자 알림 수신',
+ 'notification-from-following-help' => '다음 그룹의 사용자 알림 만 수신하게됩니다. 이러한 설정은 알림 을 사용하지 않으면 무시됩니다.',
+ 'notification-from-forum' => '다음으로부터 포럼 알림 수신',
+ 'notification-from-forum-help' => '시스템, 직원 및 다음 그룹의 포럼 알림 만받습니다. 이러한 설정은 알림 을 사용하지 않으면 무시됩니다.',
+ 'notification-from-subscription' => '구독 알림 수신',
+ 'notification-from-subscription-help' => '시스템, 직원 및 다음 그룹의 포럼 알림 만받습니다. 이러한 설정은 알림 을 사용하지 않으면 무시됩니다.',
+ 'notification-from-torrent' => 'Torrent 알림 수신',
+ 'notification-from-torrent-help' => '시스템, 직원 및 다음 그룹으로부터 토렌트 알림 만받습니다. 이러한 설정은 알림 을 사용하지 않으면 무시됩니다.',
+ 'notification-from-mention' => '@Mention 알림 수신',
+ 'notification-from-mention-help' => '시스템, 스태프 및 다음 그룹의 @mention 알림 만받습니다. 이러한 설정은 알림 을 사용하지 않으면 무시됩니다.',
+ 'notification-from-request' => '보낸 요청 알림',
+ 'notification-from-request-help' => '시스템, 직원 및 다음 그룹으로부터 요청 알림 만받습니다. 이러한 설정은 알림 을 사용하지 않으면 무시됩니다.',
+ 'notifications' => '알림',
+ 'offline' => '사용자가 오프라인입니다!',
+ 'online' => '사용자가 온라인 상태입니다!',
+ 'options' => '옵션',
+ 'other-help' => '프로필에 액세스 할 수있는 그룹과 다른 통계 및 정보 공유를 제어합니다. 그룹이 다른 통계 및 정보에 액세스하도록 허용하지 않거나 비공개로 설정하는 경우이 설정이 무시됩니다.',
+ 'other-privacy' => '다른 설정',
+ 'other-privacy-online' => '사용자가 온라인 사용자 차단에서 나를 볼 수 있도록 허용',
+ 'passkey' => 'PID',
+ 'passkey-warning' => 'PID는 비밀번호와 같아 안전하게 보관해야합니다!',
+ 'pending-achievements' => '대기중인 업적',
+ 'per-torrent' => '토렌트 당',
+ 'posts' => '게시물',
+ 'posts-posted' => '포럼 게시물 게시 됨',
+ 'privacy' => '개인정보',
+ 'privacy-settings' => '개인 정보 설정',
+ 'private-info' => '개인 정보 설정',
+ 'private-forum-profile' => '주의 :이 회원 주제 및 게시물 기록은 개인적으로 설정되었습니다!',
+ 'private-profile' => '주의 :이 프로필은 개인적으로 설정되었습니다!',
+ 'profile' => '프로필',
+ 'profile-desc' => '사용자 : 사용자 프로필 등록 : 제목',
+ 'profile-privacy' => '프로필 설정',
+ 'profile-privacy-torrent-count' => '다운로드, 업로드, 토렌트 및 거머리의 총 수를 공유하십시오.',
+ 'profile-privacy-torrent-ratio' => '기록 된 비율과 함께 총 업로드 / 다운로드 데이터 공유',
+ 'profile-privacy-torrent-seed' => '총 시딩 시간 및 평균 공유',
+ 'profile-privacy-title' => '개인 소유권 정보 공유',
+ 'profile-privacy-about' => '나에 대한 개인 정보 공유',
+ 'profile-privacy-bon-extra' => '보너스 포인트 통계 공유',
+ 'profile-privacy-comment-extra' => '댓글 통계 공유',
+ 'profile-privacy-forum-extra' => '포럼 통계 공유',
+ 'profile-privacy-request-extra' => '요청 통계 공유',
+ 'profile-privacy-torrent-extra' => '토런트 통계 공유',
+ 'profile-privacy-badge' => '획득 한 배지 공유',
+ 'profile-privacy-achievement' => '최근 업적 공유',
+ 'profile-privacy-follower' => '최근 팔로어를 공유하십시오.',
+ 'profile-privacy-warning' => 'H & R 경고 공유',
+ 'profile-privacy-help' => '프로필에 표시되는 통계 및 정보를 제어합니다. 그룹이 내 프로필에 액세스하도록 허용하지 않거나 비공개로 설정하는 경우이 설정이 무시됩니다.',
+ 'public-info' => '공개 정보',
+ 'recent-achievements' => '최근 업적',
+ 'recent-followers' => '최근 관심 사용자',
+ 'registration-date' => '등록 날짜',
+ 'report' => '보고서',
+ 'request-help' => '프로필에 액세스 할 수있는 그룹으로 특정 요청 관련 통계 및 정보 공유를 제어합니다. 이 설정은 요청 된 관련 통계 및 정보에 대한 그룹 액세스를 허용하지 않거나 비공개로 설정하는 경우 무시됩니다.',
+ 'request' => '의뢰',
+ 'requested' => '요청 됨',
+ 'requests' => '요청',
+ 'request-comments' => '요청 된 댓글',
+ 'request-notification' => '알림 설정 요청',
+ 'request-notification-bounty' => '요청 된 토렌트가 새로운 현상금을 받으면 알림 수신',
+ 'request-notification-comment' => '요청 된 토런트가 새로운 코멘트를 얻었을 때 알림 수신',
+ 'request-notification-fill' => '요청 된 토렌트가 채워지면 알림 수신',
+ 'request-notification-fill-approve' => '요청 된 토렌트 채우기가 승인되면 알림 수신',
+ 'request-notification-fill-reject' => '요청 된 토렌트 채우기가 거부되면 알림 수신',
+ 'request-notification-claim' => '요청 된 토렌트가 요청되면 알림 수신',
+ 'request-notification-unclaim' => '요청 된 토렌트가 청구되지 않은 경우 알림 수신',
+ 'request-notification-help' => '요청 활동과 관련된 알림을 제어합니다. 이 설정은 어떤 그룹이 요청 활동에 관한 알림을 보낼 수없는 경우 대체 또는 당신은 알림을 사용하지 않도록 설정하면',
+ 'request-privacy' => '요청 설정',
+ 'request-privacy-requested' => '사용자가 만든 요청 목록을 볼 수 있음',
+ 'reset-passkey' => '리셋 패스 키 (PID)',
+ 'reset-passkey-help' => 'PID를 재설정 한 후에는 활성 토렌트를 모두 다시 다운로드하거나 다시 업로드해야합니다',
+ 'reset-rss' => 'RSS 키 재설정 (RID)',
+ 'reset-rss-help' => 'RID를 재설정 한 후에는 활성 RSS 피드를 모두 다시로드해야합니다.',
+ 'resurrections' => '부활',
+ 'search' => '사용자 이름 별 빠른 검색',
+ 'security' => '보안',
+ 'security-settings' => '보안 설정',
+ 'seedboxes' => '시드박스',
+ 'seeds' => '시드',
+ 'send-invite' => '초대장 보내기',
+ 'sender' => '전달자',
+ 'settings' => '설정',
+ 'show-passkey' => 'PID 표시',
+ 'staff-noted' => '직원 노트 계정',
+ 'statistics' => '통계',
+ 'subscription-notification' => '구독 알림 설정',
+ 'subscription-notification-forum' => '가입 한 포럼이 새로운 주제를 얻을 때 알림 수신',
+ 'subscription-notification-topic' => '구독 한 주제가 새 게시물을 얻으면 알림 수신',
+ 'subscription-notification-help' => '구독과 관련된 알림을 제어합니다. 이 설정은 어떤 그룹이 구독에 관한 알림을 보낼 수없는 경우 대체 또는 당신은 알림을 사용하지 않도록 설정하면',
+ 'thanks-given' => '고맙습니다.',
+ 'thanks-received' => '감사의 말을 전했다.',
+ 'tips-given' => '전달한 팁',
+ 'tips-received' => '받은 팁',
+ 'title' => '타이틀',
+ 'top-bankers' => '탑 뱅커',
+ 'top-downloaders-data' => '인기 다운 로더 (데이터)',
+ 'top-leechers' => '톱 리처',
+ 'top-leechers-count' => '리처 (카운트)',
+ 'top-seeders' => '톱 시드',
+ 'top-seeders-count' => '톱 시드 (카운트)',
+ 'top-seeding-size' => '상단 시드 (크기)',
+ 'top-seedtime' => '탑 시드 시간',
+ 'top-uploaders-data' => '인기 업 로더 (데이터)',
+ 'top-uploaders-count' => '인기 업 로더 (백작)',
+ 'topics' => '토픽',
+ 'topics-started' => '포럼 주제 시작',
+ 'torrent-comments' => '토렌트 코멘트',
+ 'torrent-help' => '프로필에 액세스 할 수있는 그룹과 특정 토렌트 관련 통계 및 정보 공유를 제어합니다. 토런트 관련 통계 및 정보에 대한 그룹 액세스를 허용하지 않거나 비공개로 설정하는 경우이 설정이 무시됩니다',
+ 'torrent-notification' => '토런트 알림 설정',
+ 'torrent-notification-comment' => '업로드 된 토렌트가 새로운 코멘트를 얻을 때 알림 수신',
+ 'torrent-notification-thank' => '업로드 된 토런트가 새 감사를 표시하면 알림 수신',
+ 'torrent-notification-tip' => '업로드 된 토렌트가 새로운 팁을 얻으면 알림을받습니다.',
+ 'torrent-notification-help' => '토런트 활동과 관련된 알림을 제어합니다. 이 설정은 어떤 그룹 토런트 활동에 관한 알림을 보낼 수없는 경우 대체 또는 당신은 알림을 사용하지 않도록 설정하면',
+ 'torrent-privacy' => '토런트 설정',
+ 'torrent-privacy-download' => '사용자가 다운로드 한 토렌트 목록을 볼 수 있도록 허용',
+ 'torrent-privacy-upload' => '사용자가 업로드 한 토런트 목록을 볼 수 있도록 허용',
+ 'torrent-privacy-peer' => '사용자가 토렌트 피어 기록 테이블에서 나를 볼 수 있도록 허용',
+ 'torrents' => '토렌트',
+ 'torrents-history' => '토렌트 역사',
+ 'total-download' => '총 다운로드',
+ 'total-downloads' => '총 다운로드 수',
+ 'total-leeching' => '총 리칭',
+ 'total-seeding' => '총 시드',
+ 'total-seedtime' => '총 시딩 시간',
+ 'total-upload' => '총 업로드',
+ 'total-uploads' => '총 업로드 수',
+ 'unban' => 'Unban 사용자',
+ 'unfollow' => '팔로우 해제',
+ 'unlocked' => '잠금 해제 됨',
+ 'unlocked-achievements' => '언락 업적',
+ 'unsatisfieds' => '불만족스러운',
+ 'upload-bon' => '보너스 포인트 업로드',
+ 'upload-recorded' => '업로드 기록',
+ 'upload-true' => '실제 업로드',
+ 'uploads' => '업로드',
+ 'uploads-table' => '테이블 업로드',
+ 'user' => '사용자',
+ 'user-id' => '사용자 ID',
+ 'username-seedbox' => '사용자 이름 시드 박스',
+ 'visible-to-achievement' => '볼 수있는 업적',
+ 'visible-to-achievement-help' => '업적은 직원 및 다음 그룹에게만 공개됩니다. 개인 설정으로 이동 하면이 설정이 무시됩니다.',
+ 'visible-to-follower' => '관심 사용자 표시',
+ 'visible-to-follower-help' => '추종자는 직원 및 다음 그룹에게만 표시됩니다. 개인 설정으로 이동 하면이 설정이 무시됩니다.',
+ 'visible-to-forum' => '볼 수있는 포럼 정보',
+ 'visible-to-forum-help' => '포럼 정보는 직원 및 다음 그룹에게만 표시됩니다. 개인 설정으로 이동 하면이 설정이 무시됩니다.',
+ 'visible-to-other' => '기타 표시 대상',
+ 'visible-to-other-help' => '계정과 관련된 기타 정보는 직원 및 다음 그룹에게만 표시됩니다. 비공개로 설정 하거나 숨김으로 설정하면이 설정이 무시됩니다.',
+ 'visible-to-profile' => '볼 수있는 프로필',
+ 'visible-to-profile-help' => '프로필은 직원 및 다음 그룹에게만 표시됩니다. 개인 설정으로 이동 하면이 설정이 무시됩니다.',
+ 'visible-to-request' => '요청 정보 표시',
+ 'visible-to-request-help' => '요청 정보는 직원 및 다음 그룹에게만 표시됩니다. 개인 설정으로 이동 하면이 설정이 무시됩니다.',
+ 'visible-to-torrent' => '토런트 정보 표시',
+ 'visible-to-torrent-help' => '토렌트 정보는 직원 및 다음 그룹에게만 표시됩니다. 비공개로 설정 하거나 숨김으로 설정하면이 설정이 무시됩니다.',
+ 'warned-on' => '경고',
+ 'warning' => '경고',
+ 'warning-log' => '경고 로그',
+ 'wishlist' => '희망 목록',
];
diff --git a/lang/ko/validation.php b/lang/ko/validation.php
index ddbe91d27..f6d0ea591 100644
--- a/lang/ko/validation.php
+++ b/lang/ko/validation.php
@@ -23,108 +23,108 @@ return [
|
*/
- 'accepted' => ':attribute을(를) 동의해야 합니다.',
- 'active_url' => ':attribute은(는) 유효한 URL이 아닙니다.',
- 'after' => ':attribute은(는) :date 이후 날짜여야 합니다.',
- 'after_or_equal' => ':attribute은(는) :date 이후 날짜이거나 같은 날짜여야 합니다.',
- 'alpha' => ':attribute은(는) 문자만 포함할 수 있습니다.',
- 'alpha_dash' => ':attribute은(는) 문자, 숫자, 대쉬(-)만 포함할 수 있습니다.',
- 'alpha_num' => ':attribute은(는) 문자와 숫자만 포함할 수 있습니다.',
- 'array' => ':attribute은(는) 배열이어야 합니다.',
- 'before' => ':attribute은(는) :date 이전 날짜여야 합니다.',
- 'before_or_equal' => ':attribute은(는) :date 이전 날짜이거나 같은 날짜여야 합니다.',
- 'between' => [
+ 'accepted' => ':attribute을(를) 동의해야 합니다.',
+ 'active_url' => ':attribute은(는) 유효한 URL이 아닙니다.',
+ 'after' => ':attribute은(는) :date 이후 날짜여야 합니다.',
+ 'after_or_equal' => ':attribute은(는) :date 이후 날짜이거나 같은 날짜여야 합니다.',
+ 'alpha' => ':attribute은(는) 문자만 포함할 수 있습니다.',
+ 'alpha_dash' => ':attribute은(는) 문자, 숫자, 대쉬(-)만 포함할 수 있습니다.',
+ 'alpha_num' => ':attribute은(는) 문자와 숫자만 포함할 수 있습니다.',
+ 'array' => ':attribute은(는) 배열이어야 합니다.',
+ 'before' => ':attribute은(는) :date 이전 날짜여야 합니다.',
+ 'before_or_equal' => ':attribute은(는) :date 이전 날짜이거나 같은 날짜여야 합니다.',
+ 'between' => [
'numeric' => ':attribute은(는) :min에서 :max 사이여야 합니다.',
- 'file' => ':attribute은(는) :min에서 :max 킬로바이트 사이여야 합니다.',
- 'string' => ':attribute은(는) :min에서 :max 문자 사이여야 합니다.',
- 'array' => ':attribute은(는) :min에서 :max 개의 항목이 있어야 합니다.',
+ 'file' => ':attribute은(는) :min에서 :max 킬로바이트 사이여야 합니다.',
+ 'string' => ':attribute은(는) :min에서 :max 문자 사이여야 합니다.',
+ 'array' => ':attribute은(는) :min에서 :max 개의 항목이 있어야 합니다.',
],
- 'boolean' => ':attribute은(는) true 또는 false 이어야 합니다.',
- 'confirmed' => ':attribute 확인 항목이 일치하지 않습니다.',
- 'date' => ':attribute은(는) 유효한 날짜가 아닙니다.',
- 'date_equals' => 'The :attribute must be a date equal to :date.',
- 'date_format' => ':attribute이(가) :format 형식과 일치하지 않습니다.',
- 'different' => ':attribute와(과) :other은(는) 서로 달라야 합니다.',
- 'digits' => ':attribute은(는) :digits 자리 숫자여야 합니다.',
- 'digits_between' => ':attribute)은(는) :min에서 :max 자리 사이여야 합니다.',
- 'dimensions' => ':attribute은(는) 유효하지 않는 이미지 크기입니다.',
- 'distinct' => ':attribute 필드에 중복된 값이 있습니다.',
- 'email' => ':attribute은(는) 유효한 이메일 주소여야 합니다.',
- 'exists' => '선택된 :attribute은(는) 유효하지 않습니다.',
- 'file' => ':attribute은(는) 파일이어야 합니다.',
- 'filled' => ':attribute 필드는 값이 있어야 합니다.',
- 'gt' => [
+ 'boolean' => ':attribute은(는) true 또는 false 이어야 합니다.',
+ 'confirmed' => ':attribute 확인 항목이 일치하지 않습니다.',
+ 'date' => ':attribute은(는) 유효한 날짜가 아닙니다.',
+ 'date_equals' => 'The :attribute must be a date equal to :date.',
+ 'date_format' => ':attribute이(가) :format 형식과 일치하지 않습니다.',
+ 'different' => ':attribute와(과) :other은(는) 서로 달라야 합니다.',
+ 'digits' => ':attribute은(는) :digits 자리 숫자여야 합니다.',
+ 'digits_between' => ':attribute)은(는) :min에서 :max 자리 사이여야 합니다.',
+ 'dimensions' => ':attribute은(는) 유효하지 않는 이미지 크기입니다.',
+ 'distinct' => ':attribute 필드에 중복된 값이 있습니다.',
+ 'email' => ':attribute은(는) 유효한 이메일 주소여야 합니다.',
+ 'exists' => '선택된 :attribute은(는) 유효하지 않습니다.',
+ 'file' => ':attribute은(는) 파일이어야 합니다.',
+ 'filled' => ':attribute 필드는 값이 있어야 합니다.',
+ 'gt' => [
'numeric' => ':attribute의 값은 :value보다 커야 합니다.',
- 'file' => ':attribute의 용량은 :value킬로바이트보다 커야 합니다.',
- 'string' => ':attribute의 길이는 :value보다 길어야 합니다.',
- 'array' => ':attribute의 항목수는 :value개 보다 많아야 합니다.',
+ 'file' => ':attribute의 용량은 :value킬로바이트보다 커야 합니다.',
+ 'string' => ':attribute의 길이는 :value보다 길어야 합니다.',
+ 'array' => ':attribute의 항목수는 :value개 보다 많아야 합니다.',
],
- 'gte' => [
+ 'gte' => [
'numeric' => ':attribute의 값은 :value보다 같거나 커야 합니다.',
- 'file' => ':attribute의 용량은 :value킬로바이트보다 같거나 커야 합니다.',
- 'string' => ':attribute의 길이는 :value보다 같거나 길어야 합니다.',
- 'array' => ':attribute의 항목수는 :value개 보다 같거나 많아야 합니다.',
+ 'file' => ':attribute의 용량은 :value킬로바이트보다 같거나 커야 합니다.',
+ 'string' => ':attribute의 길이는 :value보다 같거나 길어야 합니다.',
+ 'array' => ':attribute의 항목수는 :value개 보다 같거나 많아야 합니다.',
],
- 'image' => ':attribute은(는) 이미지여야 합니다.',
- 'in' => '선택된 :attribute은(는) 유효하지 않습니다.',
- 'in_array' => ':attribute 필드는 :other에 존재하지 않습니다.',
- 'integer' => ':attribute은(는) 정수여야 합니다.',
- 'ip' => ':attribute은(는) 유효한 IP 주소여야 합니다.',
- 'ipv4' => ':attribute은(는) 유효한 IPv4 주소여야 합니다.',
- 'ipv6' => ':attribute은(는) 유효한 IPv6 주소여야 합니다.',
- 'json' => ':attribute은(는) JSON 문자열이어야 합니다.',
- 'lt' => [
+ 'image' => ':attribute은(는) 이미지여야 합니다.',
+ 'in' => '선택된 :attribute은(는) 유효하지 않습니다.',
+ 'in_array' => ':attribute 필드는 :other에 존재하지 않습니다.',
+ 'integer' => ':attribute은(는) 정수여야 합니다.',
+ 'ip' => ':attribute은(는) 유효한 IP 주소여야 합니다.',
+ 'ipv4' => ':attribute은(는) 유효한 IPv4 주소여야 합니다.',
+ 'ipv6' => ':attribute은(는) 유효한 IPv6 주소여야 합니다.',
+ 'json' => ':attribute은(는) JSON 문자열이어야 합니다.',
+ 'lt' => [
'numeric' => ':attribute의 값은 :value보다 작아야 합니다.',
- 'file' => ':attribute의 용량은 :value킬로바이트보다 작아야 합니다.',
- 'string' => ':attribute의 길이는 :value보다 짧아야 합니다.',
- 'array' => ':attribute의 항목수는 :value개 보다 작아야 합니다.',
+ 'file' => ':attribute의 용량은 :value킬로바이트보다 작아야 합니다.',
+ 'string' => ':attribute의 길이는 :value보다 짧아야 합니다.',
+ 'array' => ':attribute의 항목수는 :value개 보다 작아야 합니다.',
],
- 'lte' => [
+ 'lte' => [
'numeric' => ':attribute의 값은 :value보다 같거나 작아야 합니다.',
- 'file' => ':attribute의 용량은 :value킬로바이트보다 같거나 작아야 합니다.',
- 'string' => ':attribute의 길이는 :value보다 같거나 짧아야 합니다.',
- 'array' => ':attribute의 항목수는 :value개 보다 같거나 작아야 합니다.',
+ 'file' => ':attribute의 용량은 :value킬로바이트보다 같거나 작아야 합니다.',
+ 'string' => ':attribute의 길이는 :value보다 같거나 짧아야 합니다.',
+ 'array' => ':attribute의 항목수는 :value개 보다 같거나 작아야 합니다.',
],
- 'max' => [
+ 'max' => [
'numeric' => ':attribute은(는) :max보다 클 수 없습니다.',
- 'file' => ':attribute은(는) :max킬로바이트보다 클 수 없습니다.',
- 'string' => ':attribute은(는) :max자보다 클 수 없습니다.',
- 'array' => ':attribute은(는) :max개보다 많을 수 없습니다.',
+ 'file' => ':attribute은(는) :max킬로바이트보다 클 수 없습니다.',
+ 'string' => ':attribute은(는) :max자보다 클 수 없습니다.',
+ 'array' => ':attribute은(는) :max개보다 많을 수 없습니다.',
],
- 'mimes' => ':attribute은(는) 다음의 파일 형식이어야 합니다: :values.',
- 'mimetypes' => ':attribute은(는) 다음의 파일 형식이어야 합니다: :values.',
- 'min' => [
+ 'mimes' => ':attribute은(는) 다음의 파일 형식이어야 합니다: :values.',
+ 'mimetypes' => ':attribute은(는) 다음의 파일 형식이어야 합니다: :values.',
+ 'min' => [
'numeric' => ':attribute은(는) 최소한 :min이어야 합니다.',
- 'file' => ':attribute은(는) 최소한 :min킬로바이트이어야 합니다.',
- 'string' => ':attribute은(는) 최소한 :min자이어야 합니다.',
- 'array' => ':attribute은(는) 최소한 :min개의 항목이 있어야 합니다.',
+ 'file' => ':attribute은(는) 최소한 :min킬로바이트이어야 합니다.',
+ 'string' => ':attribute은(는) 최소한 :min자이어야 합니다.',
+ 'array' => ':attribute은(는) 최소한 :min개의 항목이 있어야 합니다.',
],
- 'not_in' => '선택된 :attribute이(가) 유효하지 않습니다.',
- 'not_regex' => ':attribute의 형식이 올바르지 않습니다.',
- 'numeric' => ':attribute은(는) 숫자여야 합니다.',
- 'present' => ':attribute 필드가 있어야 합니다.',
- 'regex' => ':attribute 형식이 유효하지 않습니다.',
- 'required' => ':attribute 필드는 필수입니다.',
- 'required_if' => ':other이(가) :value 일 때 :attribute 필드는 필수입니다.',
- 'required_unless' => ':other이(가) :values에 없다면 :attribute 필드는 필수입니다.',
- 'required_with' => ':values이(가) 있는 경우 :attribute 필드는 필수입니다.',
- 'required_with_all' => ':values이(가) 모두 있는 경우 :attribute 필드는 필수입니다.',
- 'required_without' => ':values이(가) 없는 경우 :attribute 필드는 필수입니다.',
+ 'not_in' => '선택된 :attribute이(가) 유효하지 않습니다.',
+ 'not_regex' => ':attribute의 형식이 올바르지 않습니다.',
+ 'numeric' => ':attribute은(는) 숫자여야 합니다.',
+ 'present' => ':attribute 필드가 있어야 합니다.',
+ 'regex' => ':attribute 형식이 유효하지 않습니다.',
+ 'required' => ':attribute 필드는 필수입니다.',
+ 'required_if' => ':other이(가) :value 일 때 :attribute 필드는 필수입니다.',
+ 'required_unless' => ':other이(가) :values에 없다면 :attribute 필드는 필수입니다.',
+ 'required_with' => ':values이(가) 있는 경우 :attribute 필드는 필수입니다.',
+ 'required_with_all' => ':values이(가) 모두 있는 경우 :attribute 필드는 필수입니다.',
+ 'required_without' => ':values이(가) 없는 경우 :attribute 필드는 필수입니다.',
'required_without_all' => ':values이(가) 모두 없는 경우 :attribute 필드는 필수입니다.',
- 'same' => ':attribute와(과) :other은(는) 일치해야 합니다.',
- 'size' => [
+ 'same' => ':attribute와(과) :other은(는) 일치해야 합니다.',
+ 'size' => [
'numeric' => ':attribute은(는) :size (이)여야 합니다.',
- 'file' => ':attribute은(는) :size킬로바이트여야 합니다.',
- 'string' => ':attribute은(는) :size자여야 합니다.',
- 'array' => ':attribute은(는) :size개의 항목을 포함해야 합니다.',
+ 'file' => ':attribute은(는) :size킬로바이트여야 합니다.',
+ 'string' => ':attribute은(는) :size자여야 합니다.',
+ 'array' => ':attribute은(는) :size개의 항목을 포함해야 합니다.',
],
- 'starts_with' => 'The :attribute must start with one of the following: :values',
- 'string' => ':attribute은(는) 문자열이어야 합니다.',
- 'timezone' => ':attribute은(는) 올바른 시간대 이어야 합니다.',
- 'unique' => ':attribute은(는) 이미 사용 중입니다.',
- 'uploaded' => ':attribute을(를) 업로드하지 못했습니다.',
- 'url' => ':attribute 형식은 유효하지 않습니다.',
- 'uuid' => 'The :attribute must be a valid UUID.',
+ 'starts_with' => 'The :attribute must start with one of the following: :values',
+ 'string' => ':attribute은(는) 문자열이어야 합니다.',
+ 'timezone' => ':attribute은(는) 올바른 시간대 이어야 합니다.',
+ 'unique' => ':attribute은(는) 이미 사용 중입니다.',
+ 'uploaded' => ':attribute을(를) 업로드하지 못했습니다.',
+ 'url' => ':attribute 형식은 유효하지 않습니다.',
+ 'uuid' => 'The :attribute must be a valid UUID.',
/*
|--------------------------------------------------------------------------
diff --git a/lang/lt/articles.php b/lang/lt/articles.php
index 8ae8f9f68..3db0a68c0 100644
--- a/lang/lt/articles.php
+++ b/lang/lt/articles.php
@@ -12,8 +12,8 @@
*/
return [
- 'articles' => 'Straipsniai',
+ 'articles' => 'Straipsniai',
'meta-articles' => 'Straipsniai ir naujienos apie stebėtoją ir bendruomenę',
- 'published-at' => 'Paskelbta',
- 'read-more' => 'Skaityti daugiau',
+ 'published-at' => 'Paskelbta',
+ 'read-more' => 'Skaityti daugiau',
];
diff --git a/lang/lt/auth.php b/lang/lt/auth.php
index c6764821f..d3d40840f 100644
--- a/lang/lt/auth.php
+++ b/lang/lt/auth.php
@@ -22,6 +22,6 @@ return [
|
*/
- 'failed' => 'Prisijungimo duomenys neatitinka.',
+ 'failed' => 'Prisijungimo duomenys neatitinka.',
'throttle' => 'Perdaug bandymų prisijungti. Bandykite po :seconds sec.',
];
diff --git a/lang/lt/backup.php b/lang/lt/backup.php
index 519b8abc4..dc5fa914b 100644
--- a/lang/lt/backup.php
+++ b/lang/lt/backup.php
@@ -12,32 +12,32 @@
*/
return [
- 'actions' => 'Veiksmai',
- 'backup' => 'Atsarginė kopija',
- 'backup_doesnt_exist' => 'Nėra atsarginio failo.',
- 'create_a_new_backup' => 'Sukurti pilną atsarginę kopiją',
- 'create_a_new_files_backup' => 'Sukurti failų atsarginę kopiją',
- 'create_a_new_db_backup' => 'Sukurti duomenų bazės atsarginę kopiją',
- 'create_confirmation_message' => 'Perkrauti puslapį per 3 sekundes.',
- 'create_confirmation_title' => 'Baigta atsarginė kopija',
- 'create_error_message' => 'Negalima sukurti atsarginės kopijos failo.',
- 'create_error_title' => 'Atsarginė klaida',
- 'create_warning_message' => 'Jūsų atsarginė kopija gali būti sukurta. Išsamesnės informacijos patikrinkite žurnalo failus.',
- 'create_warning_title' => 'Nežinoma klaida',
- 'date' => 'Data',
- 'delete' => 'Ištrinti',
- 'delete_cancel_message' => 'Atsarginė rinkmena NĖRA ištrinta.',
- 'delete_cancel_title' => 'Viskas gerai',
- 'delete_confirm' => 'Ar tikrai norite ištrinti šį atsarginės kopijos failą?',
- 'delete_confirmation_message' => 'Atsarginė rinkmena buvo ištrinta.',
- 'delete_confirmation_title' => 'padaryta',
- 'delete_error_message' => 'Atsarginė rinkmena NĖRA ištrinta.',
- 'delete_error_title' => 'Klaida',
- 'download' => 'parsisiųsti',
- 'existing_backups' => 'Esamos atsarginės kopijos',
- 'file_size' => 'Failo dydis',
- 'location' => 'Vieta',
- 'manager' => 'Vadybininkas',
- 'no_disks_configured' => '„Config / backup.php“ nėra sukonfigūruoti atsarginių diskų',
+ 'actions' => 'Veiksmai',
+ 'backup' => 'Atsarginė kopija',
+ 'backup_doesnt_exist' => 'Nėra atsarginio failo.',
+ 'create_a_new_backup' => 'Sukurti pilną atsarginę kopiją',
+ 'create_a_new_files_backup' => 'Sukurti failų atsarginę kopiją',
+ 'create_a_new_db_backup' => 'Sukurti duomenų bazės atsarginę kopiją',
+ 'create_confirmation_message' => 'Perkrauti puslapį per 3 sekundes.',
+ 'create_confirmation_title' => 'Baigta atsarginė kopija',
+ 'create_error_message' => 'Negalima sukurti atsarginės kopijos failo.',
+ 'create_error_title' => 'Atsarginė klaida',
+ 'create_warning_message' => 'Jūsų atsarginė kopija gali būti sukurta. Išsamesnės informacijos patikrinkite žurnalo failus.',
+ 'create_warning_title' => 'Nežinoma klaida',
+ 'date' => 'Data',
+ 'delete' => 'Ištrinti',
+ 'delete_cancel_message' => 'Atsarginė rinkmena NĖRA ištrinta.',
+ 'delete_cancel_title' => 'Viskas gerai',
+ 'delete_confirm' => 'Ar tikrai norite ištrinti šį atsarginės kopijos failą?',
+ 'delete_confirmation_message' => 'Atsarginė rinkmena buvo ištrinta.',
+ 'delete_confirmation_title' => 'padaryta',
+ 'delete_error_message' => 'Atsarginė rinkmena NĖRA ištrinta.',
+ 'delete_error_title' => 'Klaida',
+ 'download' => 'parsisiųsti',
+ 'existing_backups' => 'Esamos atsarginės kopijos',
+ 'file_size' => 'Failo dydis',
+ 'location' => 'Vieta',
+ 'manager' => 'Vadybininkas',
+ 'no_disks_configured' => '„Config / backup.php“ nėra sukonfigūruoti atsarginių diskų',
'only_local_downloads_supported' => 'Palaikomos tik vietinio failų sistemos atsisiuntimai.',
];
diff --git a/lang/lt/blocks.php b/lang/lt/blocks.php
index 732172c75..0b20f9197 100644
--- a/lang/lt/blocks.php
+++ b/lang/lt/blocks.php
@@ -12,19 +12,19 @@
*/
return [
- 'chatbox' => 'Pokalbių laukelis',
- 'click' => 'Spustelėkite',
- 'to-enable-editor' => 'įjungti redaktorių',
- 'featured-by' => '„',
- 'featured-torrents' => 'Teminiai torrentai',
+ 'chatbox' => 'Pokalbių laukelis',
+ 'click' => 'Spustelėkite',
+ 'to-enable-editor' => 'įjungti redaktorių',
+ 'featured-by' => '„',
+ 'featured-torrents' => 'Teminiai torrentai',
'featured-torrents-intro' => 'Gauti juos, kol galite!',
- 'featured-until' => 'Tai rodoma torrent iki',
- 'top-torrents' => 'Populiariausi turnyrai',
- 'latest-posts' => 'Paskutiniai pranešimai',
- 'latest-topics' => 'Naujausios temos',
- 'active-in-last' => 'Aktyvus paskutinis',
- 'users-online' => 'Vartotojai internete',
- 'check-news' => 'Naujienos (kasdien patikrinkite)',
- 'new-news' => 'Naujos naujienos',
- 'new-torrents' => 'Nauji torrentai',
+ 'featured-until' => 'Tai rodoma torrent iki',
+ 'top-torrents' => 'Populiariausi turnyrai',
+ 'latest-posts' => 'Paskutiniai pranešimai',
+ 'latest-topics' => 'Naujausios temos',
+ 'active-in-last' => 'Aktyvus paskutinis',
+ 'users-online' => 'Vartotojai internete',
+ 'check-news' => 'Naujienos (kasdien patikrinkite)',
+ 'new-news' => 'Naujos naujienos',
+ 'new-torrents' => 'Nauji torrentai',
];
diff --git a/lang/lt/bon.php b/lang/lt/bon.php
index 573e9e708..b1bba0602 100644
--- a/lang/lt/bon.php
+++ b/lang/lt/bon.php
@@ -12,44 +12,44 @@
*/
return [
- 'activated' => 'Suaktyvinta',
- 'active' => 'Suaktyvinta!',
- 'amount' => 'Suma',
- 'bon' => 'BON',
- 'bonus' => 'Premija',
- 'date' => 'Data',
- 'earning' => 'Uždirbimas',
- 'earning-rate' => 'Tokiu uždarbio greičiu už kiekvieną laikotarpį uždirbsite šiuos mokesčius.',
- 'earnings' => 'Uždarbis',
- 'exchange' => 'Keitimasis',
- 'exchange-warning' => 'Mainai yra galutiniai, prieš keisdami patikrinkite savo pasirinkimus.',
- 'extended-stats' => 'Išplėstinė statistika',
- 'gift' => 'Dovana',
- 'gift-bonus' => 'Dovanų premijos taškai',
- 'gift-to' => 'Dovanų premijos taškai',
- 'gifts' => 'Dovanos',
- 'item' => 'Elementas',
- 'no-refund' => 'NĖRA GRĄŽINIMO!',
- 'per-day' => 'Taškai per dieną',
- 'per-hour' => 'Taškai per valandą',
- 'per-minute' => 'Taškai per minutę',
- 'per-month' => 'Taškai per mėnesį',
- 'per-second' => 'Taškai per sekundę',
- 'per-week' => 'Taškai per savaitę',
- 'per-year' => 'Taškai per metus',
- 'points' => 'Taškai',
- 'receiver' => 'Gavėjas',
- 'review-seeds' => 'Peržiūrėkite visus sėklų turtus',
- 'send-gift' => 'Siųsti dovaną',
- 'sender' => 'Siuntėjas',
- 'store' => 'Laikyti',
- 'tips' => 'Patarimai',
- 'total' => 'Iš viso pajamų',
- 'total-gifts' => 'Iš viso BON dovanų',
- 'total-tips' => 'Iš viso BON patarimų',
+ 'activated' => 'Suaktyvinta',
+ 'active' => 'Suaktyvinta!',
+ 'amount' => 'Suma',
+ 'bon' => 'BON',
+ 'bonus' => 'Premija',
+ 'date' => 'Data',
+ 'earning' => 'Uždirbimas',
+ 'earning-rate' => 'Tokiu uždarbio greičiu už kiekvieną laikotarpį uždirbsite šiuos mokesčius.',
+ 'earnings' => 'Uždarbis',
+ 'exchange' => 'Keitimasis',
+ 'exchange-warning' => 'Mainai yra galutiniai, prieš keisdami patikrinkite savo pasirinkimus.',
+ 'extended-stats' => 'Išplėstinė statistika',
+ 'gift' => 'Dovana',
+ 'gift-bonus' => 'Dovanų premijos taškai',
+ 'gift-to' => 'Dovanų premijos taškai',
+ 'gifts' => 'Dovanos',
+ 'item' => 'Elementas',
+ 'no-refund' => 'NĖRA GRĄŽINIMO!',
+ 'per-day' => 'Taškai per dieną',
+ 'per-hour' => 'Taškai per valandą',
+ 'per-minute' => 'Taškai per minutę',
+ 'per-month' => 'Taškai per mėnesį',
+ 'per-second' => 'Taškai per sekundę',
+ 'per-week' => 'Taškai per savaitę',
+ 'per-year' => 'Taškai per metus',
+ 'points' => 'Taškai',
+ 'receiver' => 'Gavėjas',
+ 'review-seeds' => 'Peržiūrėkite visus sėklų turtus',
+ 'send-gift' => 'Siųsti dovaną',
+ 'sender' => 'Siuntėjas',
+ 'store' => 'Laikyti',
+ 'tips' => 'Patarimai',
+ 'total' => 'Iš viso pajamų',
+ 'total-gifts' => 'Iš viso BON dovanų',
+ 'total-tips' => 'Iš viso BON patarimų',
'you-have-received-gifts' => 'Tu gavai',
- 'you-have-sent-gifts' => 'Jūs išsiuntėte',
- 'you-have-received-tips' => 'Tu gavai',
- 'you-have-sent-tips' => 'Jūs išsiuntėte',
- 'your-points' => 'Jūsų taškai',
+ 'you-have-sent-gifts' => 'Jūs išsiuntėte',
+ 'you-have-received-tips' => 'Tu gavai',
+ 'you-have-sent-tips' => 'Jūs išsiuntėte',
+ 'your-points' => 'Jūsų taškai',
];
diff --git a/lang/lt/bot.php b/lang/lt/bot.php
index f46ab047c..96f34ad21 100644
--- a/lang/lt/bot.php
+++ b/lang/lt/bot.php
@@ -12,15 +12,15 @@
*/
return [
- 'about' => 'Apie',
- 'bot' => 'Bot',
- 'bots' => 'Bots',
- 'color' => 'Spalva',
- 'command' => 'Komanda',
- 'edit-bot' => 'Redaguoti Bot',
+ 'about' => 'Apie',
+ 'bot' => 'Bot',
+ 'bots' => 'Bots',
+ 'color' => 'Spalva',
+ 'command' => 'Komanda',
+ 'edit-bot' => 'Redaguoti Bot',
'emoji-code' => '„Emoji“ kodas',
- 'help' => 'Pagalba',
- 'icon' => 'Piktograma',
- 'info' => 'Informacija',
- 'name' => 'vardas',
+ 'help' => 'Pagalba',
+ 'icon' => 'Piktograma',
+ 'info' => 'Informacija',
+ 'name' => 'vardas',
];
diff --git a/lang/lt/bug.php b/lang/lt/bug.php
index c4dfb6589..e028783a0 100644
--- a/lang/lt/bug.php
+++ b/lang/lt/bug.php
@@ -12,15 +12,15 @@
*/
return [
- 'bug-report' => 'Pranešimas apie klaidą',
+ 'bug-report' => 'Pranešimas apie klaidą',
'bug-report-description' => 'Pranešti apie svetainės klaidą',
- 'enter-description' => 'Apibūdinkite problemą kuo geriau',
- 'enter-email' => 'Įveskite savo el. Paštą',
- 'enter-title' => 'Pasirinkite tinkamą pavadinimą',
- 'enter-username' => 'Įveskite savo naudotojo vardą',
- 'high' => 'Aukšta',
- 'low' => 'Žemas',
- 'priority' => 'Prioritetas',
- 'priority-description' => 'Pasirinkite tik labai aukštą, jei klaida iš tikrųjų yra problema naudojant svetainę.',
- 'very-high' => 'Labai aukštai',
+ 'enter-description' => 'Apibūdinkite problemą kuo geriau',
+ 'enter-email' => 'Įveskite savo el. Paštą',
+ 'enter-title' => 'Pasirinkite tinkamą pavadinimą',
+ 'enter-username' => 'Įveskite savo naudotojo vardą',
+ 'high' => 'Aukšta',
+ 'low' => 'Žemas',
+ 'priority' => 'Prioritetas',
+ 'priority-description' => 'Pasirinkite tik labai aukštą, jei klaida iš tikrųjų yra problema naudojant svetainę.',
+ 'very-high' => 'Labai aukštai',
];
diff --git a/lang/lt/common.php b/lang/lt/common.php
index 40dea05d4..e32fff03c 100644
--- a/lang/lt/common.php
+++ b/lang/lt/common.php
@@ -12,179 +12,179 @@
*/
return [
- 'a-an-art' => '',
- 'about' => 'Apie mus',
- 'account' => 'Paskyra',
- 'achievement-title' => 'Nuostabu',
+ 'a-an-art' => '',
+ 'about' => 'Apie mus',
+ 'account' => 'Paskyra',
+ 'achievement-title' => 'Nuostabu',
'achievement-unlocked' => 'Jūs atrakinote „: name“ pasiekimą',
- 'active' => 'Aktyvus',
- 'active-warning' => 'Aktyvus įspėjimas',
- 'add' => 'Papildyti',
- 'added' => 'Pridėta',
- 'amount' => 'Suma',
- 'anonymous' => 'Anoniminis',
- 'author' => 'Autorius',
- 'balance' => 'Likutis',
- 'blacklist' => 'Kliento juodasis sąrašas',
- 'buffer' => 'Buferis',
- 'bug' => 'Panešti apie klaidą',
- 'but' => 'Bet',
- 'cancel' => 'Atšaukti',
- 'category' => 'Kategorija',
- 'categories' => 'Kategorijos',
- 'close' => 'Uždaryti',
- 'comment' => 'Komentuoti',
- 'comments' => 'Komentarai',
- 'community' => 'Bendrija',
- 'contact' => 'kontaktas',
- 'contact-desc' => 'Šis kontaktinis prašymas bus išsiųstas savininkui ir kuo greičiau susisieks su jumis',
- 'contact-header' => 'Sveiki',
- 'create' => 'Sukurti',
- 'created_at' => 'Sukurta At',
- 'day' => 'Diena',
- 'delete' => 'Ištrinti',
- 'delete-your-comment' => 'Ištrinkite komentarą',
- 'description' => 'apibūdinimas',
- 'direction' => 'Kryptis',
- 'disable' => 'Išjungti',
- 'doubleup_activated' => 'Įjungtas pasaulinis dvigubo įkėlimo režimas',
- 'download' => 'parsisiųsti',
- 'edit' => 'Redaguoti',
- 'edit-your-comment' => 'Redaguokite komentarą',
- 'email' => 'El. Paštas',
- 'email-blacklist' => 'El. Pašto sąrašas',
- 'email-whitelist' => 'Siųsti baltąjį sąrašą',
+ 'active' => 'Aktyvus',
+ 'active-warning' => 'Aktyvus įspėjimas',
+ 'add' => 'Papildyti',
+ 'added' => 'Pridėta',
+ 'amount' => 'Suma',
+ 'anonymous' => 'Anoniminis',
+ 'author' => 'Autorius',
+ 'balance' => 'Likutis',
+ 'blacklist' => 'Kliento juodasis sąrašas',
+ 'buffer' => 'Buferis',
+ 'bug' => 'Panešti apie klaidą',
+ 'but' => 'Bet',
+ 'cancel' => 'Atšaukti',
+ 'category' => 'Kategorija',
+ 'categories' => 'Kategorijos',
+ 'close' => 'Uždaryti',
+ 'comment' => 'Komentuoti',
+ 'comments' => 'Komentarai',
+ 'community' => 'Bendrija',
+ 'contact' => 'kontaktas',
+ 'contact-desc' => 'Šis kontaktinis prašymas bus išsiųstas savininkui ir kuo greičiau susisieks su jumis',
+ 'contact-header' => 'Sveiki',
+ 'create' => 'Sukurti',
+ 'created_at' => 'Sukurta At',
+ 'day' => 'Diena',
+ 'delete' => 'Ištrinti',
+ 'delete-your-comment' => 'Ištrinkite komentarą',
+ 'description' => 'apibūdinimas',
+ 'direction' => 'Kryptis',
+ 'disable' => 'Išjungti',
+ 'doubleup_activated' => 'Įjungtas pasaulinis dvigubo įkėlimo režimas',
+ 'download' => 'parsisiųsti',
+ 'edit' => 'Redaguoti',
+ 'edit-your-comment' => 'Redaguokite komentarą',
+ 'email' => 'El. Paštas',
+ 'email-blacklist' => 'El. Pašto sąrašas',
+ 'email-whitelist' => 'Siųsti baltąjį sąrašą',
'email-list-notactive' => 'El. Pašto baltojo sąrašo / juodojo sąrašo sistema nėra aktyvuota',
- 'enable' => 'Įgalinti',
- 'enter' => 'Įveskite',
- 'error' => 'Klaida',
- 'everyday' => 'Kiekvieną dieną',
- 'expired' => 'Pasibaigęs',
- 'extra' => 'Papildoma',
- 'extra-stats' => 'Papildoma statistika',
- 'faq' => 'DUK',
- 'files' => 'Failai',
- 'fl_token' => 'Freeleecho žetonas',
- 'fl_tokens' => '„Freeleech“ žetonai',
- 'for' => 'dėl',
- 'forum' => 'Forumas',
- 'free' => 'Laisvas',
- 'freeleech_activated' => 'Įjungtas pasaulinis Freeleech režimas',
- 'global' => 'Pasaulinis',
- 'group' => 'Grupė',
- 'groups' => 'Grupės',
- 'hidden' => 'Paslėpta',
- 'high-speeds' => 'Didelis greitis',
- 'home' => 'Namai',
- 'hot' => 'Karšta!',
- 'hour' => 'Valanda',
- 'huge' => 'Didelis',
- 'info' => 'Informacija',
- 'internal' => 'Vidinis',
- 'ip' => 'IP',
- 'is-allowed' => 'leidziama',
- 'large' => 'Didelis',
- 'latest' => 'Naujausi',
- 'latest-posts' => 'Paskutiniai pranešimai',
- 'latest-topics' => 'Naujausios temos',
- 'legal' => 'Teisinis',
- 'legend' => 'Legenda',
- 'lists' => 'Sąrašas',
- 'lock-account' => 'Užrakinti paskyrą',
- 'logout' => 'Atsijungti',
- 'members' => 'Nariai',
- 'message' => 'Pranešimas',
- 'minute' => 'Minutė',
- 'moderated-by' => 'Moderavo',
- 'moderation' => 'Reguliavimas',
- 'moderation-approve' => 'Patvirtinti',
- 'moderation-postpone' => 'Atidėti',
- 'moderation-reject' => 'Atmesti',
- 'month' => 'Mėnuo',
- 'months' => 'Mėnesių',
- 'my' => 'Mano',
- 'name' => 'vardas',
- 'navigation' => 'Navigacija',
- 'new' => 'Nauja!',
- 'new-adj' => 'Nauja',
- 'news' => 'žinios',
- 'next' => 'Kitas',
- 'no' => 'Ne',
- 'no-comments' => 'Dar nėra komentarų',
- 'no-result' => 'Duomenų bazėje nėra užklausos rezultatų',
- 'notifications' => 'Pranešimai',
- 'older-than' => 'Vyresni nei',
- 'oldest' => 'Seniausia',
- 'openreg_activated' => 'Įjungta atvira registracija',
- 'order-by' => 'Rūšiuoti pagal',
- 'other' => 'Kita',
- 'pages' => 'Puslapiai',
- 'password' => 'Slaptažodis',
- 'patron' => 'Tapkite globėju',
- 'pending-torrents' => 'Laukiami torrentai',
- 'personal' => 'Asmeninis',
- 'plural-suffix' => 's',
- 'port' => 'Uostas',
- 'position' => 'Pozicija',
- 'posts' => 'Žinutės',
- 'powered-by' => 'Naudoja UNIT3D',
- 'preview' => 'Peržiūra',
- 'previous' => 'Ankstesnis',
- 'progress' => 'Progresas',
- 'publish' => 'Publikuoti',
- 'quantity' => 'Kiekis',
- 'quick-search' => 'Greita paieška',
- 'ratio' => 'Santykis',
- 'reason' => 'Priežastis',
- 'remove' => 'Pašalinti',
- 'report' => 'Ataskaita',
- 'resend' => 'Persiūsti',
- 'reporter' => 'Reporteris',
- 'required' => 'Būtina',
- 'results' => 'Rezultatai',
- 'rss-system' => 'RSS sistema',
- 'rules' => 'Taisyklės',
- 'save' => 'Sutaupyti',
- 'search' => 'Paieška',
- 'search-results' => 'Paieškos rezultatai',
- 'search-results-desc' => 'Žr. Toliau pateiktus rezultatus',
- 'second' => 'Antra',
- 'select' => 'Pasirinkite',
- 'sort' => 'Rūšiuoti',
- 'special' => 'Specialus',
- 'staff' => 'Darbuotojai',
- 'staff-tools' => 'Personalo įrankiai',
- 'stats' => 'Statistika',
- 'status' => 'Būsena',
- 'sticked' => 'Priklijuojama',
- 'submit' => 'Pateikti',
- 'subscriptions' => 'Prenumeratos',
- 'teams' => 'Komandos',
- 'terms' => 'Naudojimo sąlygos',
- 'times' => 'Laikai',
- 'title' => 'Pavadinimas',
- 'top-bountied' => 'Į viršų Bountied',
- 'topics' => 'Temos',
- 'tracker-codes' => '„Tracker“ kodai',
- 'type' => 'Tipas',
- 'type-verb' => 'Tipas',
- 'types' => 'Tipai',
- 'genre' => 'Žanras',
- 'genres' => 'Žanrai',
- 'action' => 'Veiksmas',
- 'actions' => 'Veiksmai',
- 'unknown' => 'Nežinoma',
+ 'enable' => 'Įgalinti',
+ 'enter' => 'Įveskite',
+ 'error' => 'Klaida',
+ 'everyday' => 'Kiekvieną dieną',
+ 'expired' => 'Pasibaigęs',
+ 'extra' => 'Papildoma',
+ 'extra-stats' => 'Papildoma statistika',
+ 'faq' => 'DUK',
+ 'files' => 'Failai',
+ 'fl_token' => 'Freeleecho žetonas',
+ 'fl_tokens' => '„Freeleech“ žetonai',
+ 'for' => 'dėl',
+ 'forum' => 'Forumas',
+ 'free' => 'Laisvas',
+ 'freeleech_activated' => 'Įjungtas pasaulinis Freeleech režimas',
+ 'global' => 'Pasaulinis',
+ 'group' => 'Grupė',
+ 'groups' => 'Grupės',
+ 'hidden' => 'Paslėpta',
+ 'high-speeds' => 'Didelis greitis',
+ 'home' => 'Namai',
+ 'hot' => 'Karšta!',
+ 'hour' => 'Valanda',
+ 'huge' => 'Didelis',
+ 'info' => 'Informacija',
+ 'internal' => 'Vidinis',
+ 'ip' => 'IP',
+ 'is-allowed' => 'leidziama',
+ 'large' => 'Didelis',
+ 'latest' => 'Naujausi',
+ 'latest-posts' => 'Paskutiniai pranešimai',
+ 'latest-topics' => 'Naujausios temos',
+ 'legal' => 'Teisinis',
+ 'legend' => 'Legenda',
+ 'lists' => 'Sąrašas',
+ 'lock-account' => 'Užrakinti paskyrą',
+ 'logout' => 'Atsijungti',
+ 'members' => 'Nariai',
+ 'message' => 'Pranešimas',
+ 'minute' => 'Minutė',
+ 'moderated-by' => 'Moderavo',
+ 'moderation' => 'Reguliavimas',
+ 'moderation-approve' => 'Patvirtinti',
+ 'moderation-postpone' => 'Atidėti',
+ 'moderation-reject' => 'Atmesti',
+ 'month' => 'Mėnuo',
+ 'months' => 'Mėnesių',
+ 'my' => 'Mano',
+ 'name' => 'vardas',
+ 'navigation' => 'Navigacija',
+ 'new' => 'Nauja!',
+ 'new-adj' => 'Nauja',
+ 'news' => 'žinios',
+ 'next' => 'Kitas',
+ 'no' => 'Ne',
+ 'no-comments' => 'Dar nėra komentarų',
+ 'no-result' => 'Duomenų bazėje nėra užklausos rezultatų',
+ 'notifications' => 'Pranešimai',
+ 'older-than' => 'Vyresni nei',
+ 'oldest' => 'Seniausia',
+ 'openreg_activated' => 'Įjungta atvira registracija',
+ 'order-by' => 'Rūšiuoti pagal',
+ 'other' => 'Kita',
+ 'pages' => 'Puslapiai',
+ 'password' => 'Slaptažodis',
+ 'patron' => 'Tapkite globėju',
+ 'pending-torrents' => 'Laukiami torrentai',
+ 'personal' => 'Asmeninis',
+ 'plural-suffix' => 's',
+ 'port' => 'Uostas',
+ 'position' => 'Pozicija',
+ 'posts' => 'Žinutės',
+ 'powered-by' => 'Naudoja UNIT3D',
+ 'preview' => 'Peržiūra',
+ 'previous' => 'Ankstesnis',
+ 'progress' => 'Progresas',
+ 'publish' => 'Publikuoti',
+ 'quantity' => 'Kiekis',
+ 'quick-search' => 'Greita paieška',
+ 'ratio' => 'Santykis',
+ 'reason' => 'Priežastis',
+ 'remove' => 'Pašalinti',
+ 'report' => 'Ataskaita',
+ 'resend' => 'Persiūsti',
+ 'reporter' => 'Reporteris',
+ 'required' => 'Būtina',
+ 'results' => 'Rezultatai',
+ 'rss-system' => 'RSS sistema',
+ 'rules' => 'Taisyklės',
+ 'save' => 'Sutaupyti',
+ 'search' => 'Paieška',
+ 'search-results' => 'Paieškos rezultatai',
+ 'search-results-desc' => 'Žr. Toliau pateiktus rezultatus',
+ 'second' => 'Antra',
+ 'select' => 'Pasirinkite',
+ 'sort' => 'Rūšiuoti',
+ 'special' => 'Specialus',
+ 'staff' => 'Darbuotojai',
+ 'staff-tools' => 'Personalo įrankiai',
+ 'stats' => 'Statistika',
+ 'status' => 'Būsena',
+ 'sticked' => 'Priklijuojama',
+ 'submit' => 'Pateikti',
+ 'subscriptions' => 'Prenumeratos',
+ 'teams' => 'Komandos',
+ 'terms' => 'Naudojimo sąlygos',
+ 'times' => 'Laikai',
+ 'title' => 'Pavadinimas',
+ 'top-bountied' => 'Į viršų Bountied',
+ 'topics' => 'Temos',
+ 'tracker-codes' => '„Tracker“ kodai',
+ 'type' => 'Tipas',
+ 'type-verb' => 'Tipas',
+ 'types' => 'Tipai',
+ 'genre' => 'Žanras',
+ 'genres' => 'Žanrai',
+ 'action' => 'Veiksmas',
+ 'actions' => 'Veiksmai',
+ 'unknown' => 'Nežinoma',
'unlocked-achievement' => 'Jūs atrakinote: pasiekimų pasiekimus',
- 'upload' => 'Įkelti',
- 'upload-guide' => 'Įkėlimo vadovas',
- 'user' => 'Vartotojas',
- 'username' => 'Vartotojo vardas',
- 'users' => 'Vartotojai',
- 'view' => 'Peržiūrėti',
- 'view-all' => 'Peržiūrėti visus',
- 'warnings' => 'Įspėjimai',
- 'year' => 'Metai',
- 'yes' => 'Taip',
- 'your' => 'Tavo',
- 'your-comment' => 'Tavo komentaras',
+ 'upload' => 'Įkelti',
+ 'upload-guide' => 'Įkėlimo vadovas',
+ 'user' => 'Vartotojas',
+ 'username' => 'Vartotojo vardas',
+ 'users' => 'Vartotojai',
+ 'view' => 'Peržiūrėti',
+ 'view-all' => 'Peržiūrėti visus',
+ 'warnings' => 'Įspėjimai',
+ 'year' => 'Metai',
+ 'yes' => 'Taip',
+ 'your' => 'Tavo',
+ 'your-comment' => 'Tavo komentaras',
];
diff --git a/lang/lt/email.php b/lang/lt/email.php
index 3ba575881..12695cead 100644
--- a/lang/lt/email.php
+++ b/lang/lt/email.php
@@ -12,46 +12,46 @@
*/
return [
- 'activate-account' => 'Įjungti paskyrą',
- 'ban-reason' => 'Priežastis',
- 'banned-footer' => 'Tai, ką gausite dėl taisyklių nesilaikymo',
- 'banned-header' => 'Jūs esate užblokuotas',
- 'bug-description' => 'Problema',
- 'bug-footer' => 'Ištaisykite tą šūdą',
- 'bug-header' => 'Nauja klaidų ataskaita',
- 'bug-priority' => 'Prioritetas',
- 'bug-title' => 'Klaidos pavadinimas',
- 'contact-header' => 'Naujas kontaktinis paštas iš',
- 'contact-message' => 'Pranešimas',
- 'contact-name' => 'vardas',
+ 'activate-account' => 'Įjungti paskyrą',
+ 'ban-reason' => 'Priežastis',
+ 'banned-footer' => 'Tai, ką gausite dėl taisyklių nesilaikymo',
+ 'banned-header' => 'Jūs esate užblokuotas',
+ 'bug-description' => 'Problema',
+ 'bug-footer' => 'Ištaisykite tą šūdą',
+ 'bug-header' => 'Nauja klaidų ataskaita',
+ 'bug-priority' => 'Prioritetas',
+ 'bug-title' => 'Klaidos pavadinimas',
+ 'contact-header' => 'Naujas kontaktinis paštas iš',
+ 'contact-message' => 'Pranešimas',
+ 'contact-name' => 'vardas',
'fail-login-greeting' => 'Paskyros prisijungimas nepavyko!',
- 'fail-login-line1' => 'Jūsų paskyroje aptiktas nepavykęs prisijungimas.',
- 'fail-login-line2' => 'Šis prašymas kilo iš: ip (: host) adresu: time',
- 'fail-login-subject' => 'Nepavyko prisijungti',
- 'footer-link' => 'Jei kyla problemų spustelėdami mygtuką „actionText“, nukopijuokite ir įklijuokite toliau pateiktą URL į savo naršyklę:',
- 'invite-header' => 'Kvietimas į',
- 'invite-invited' => 'Jūs esate pakviestas',
- 'invite-message' => 'Pranešimas',
- 'invite-signup' => 'Užsiregistruokite dabar',
- 'newreply-header' => 'Jūsų temoje yra naujas atsakymas',
- 'newreply-message' => 'Pranešimas',
- 'newreply-replied' => 'Atsakė į jūsų temą',
- 'newreply-view' => 'Peržiūrėti dabar',
- 'no-email-found' => 'Nepavyko rasti šio el. Laiško mūsų sistemoje!',
- 'register-code' => 'Jei norite užbaigti paskyros aktyvavimą, spustelėkite toliau pateiktą mygtuką',
- 'register-footer' => 'Jei aukščiau pateiktas mygtukas neveikia, nukopijuokite ir įklijuokite URL į naršyklės adreso juostą',
- 'register-header' => 'Sveiki! Dėkojame, kad užsiregistravote',
- 'report-comment' => 'Komentuoti',
- 'report-email' => 'El. Paštas',
- 'report-header' => 'Sveiki, administratorius, nuoroda buvo pateikta',
- 'report-link' => 'Nuoroda',
- 'report-link-hash' => 'Faktinė nuoroda',
- 'thanks' => 'Dėkojame, kad naudojote',
- 'unban-footer' => 'Sveikas sugrįžęs!',
- 'unban-header' => 'Jūs buvote atleistas',
- 'unban-reason' => 'Priežastis',
- 'username-reminder' => 'Neseniai išsiuntėte mums užklausą dėl naudotojo vardo mūsų programoje. Jūsų vartotojo vardas yra',
- 'username-sent' => 'Jūsų naudotojo vardas buvo išsiųstas į jūsų el. Pašto adresą!',
- 'disabled-header' => 'Jūsų sąskaita buvo užblokuota',
- 'pruned-header' => 'Jūsų paskyra buvo apgauta',
+ 'fail-login-line1' => 'Jūsų paskyroje aptiktas nepavykęs prisijungimas.',
+ 'fail-login-line2' => 'Šis prašymas kilo iš: ip (: host) adresu: time',
+ 'fail-login-subject' => 'Nepavyko prisijungti',
+ 'footer-link' => 'Jei kyla problemų spustelėdami mygtuką „actionText“, nukopijuokite ir įklijuokite toliau pateiktą URL į savo naršyklę:',
+ 'invite-header' => 'Kvietimas į',
+ 'invite-invited' => 'Jūs esate pakviestas',
+ 'invite-message' => 'Pranešimas',
+ 'invite-signup' => 'Užsiregistruokite dabar',
+ 'newreply-header' => 'Jūsų temoje yra naujas atsakymas',
+ 'newreply-message' => 'Pranešimas',
+ 'newreply-replied' => 'Atsakė į jūsų temą',
+ 'newreply-view' => 'Peržiūrėti dabar',
+ 'no-email-found' => 'Nepavyko rasti šio el. Laiško mūsų sistemoje!',
+ 'register-code' => 'Jei norite užbaigti paskyros aktyvavimą, spustelėkite toliau pateiktą mygtuką',
+ 'register-footer' => 'Jei aukščiau pateiktas mygtukas neveikia, nukopijuokite ir įklijuokite URL į naršyklės adreso juostą',
+ 'register-header' => 'Sveiki! Dėkojame, kad užsiregistravote',
+ 'report-comment' => 'Komentuoti',
+ 'report-email' => 'El. Paštas',
+ 'report-header' => 'Sveiki, administratorius, nuoroda buvo pateikta',
+ 'report-link' => 'Nuoroda',
+ 'report-link-hash' => 'Faktinė nuoroda',
+ 'thanks' => 'Dėkojame, kad naudojote',
+ 'unban-footer' => 'Sveikas sugrįžęs!',
+ 'unban-header' => 'Jūs buvote atleistas',
+ 'unban-reason' => 'Priežastis',
+ 'username-reminder' => 'Neseniai išsiuntėte mums užklausą dėl naudotojo vardo mūsų programoje. Jūsų vartotojo vardas yra',
+ 'username-sent' => 'Jūsų naudotojo vardas buvo išsiųstas į jūsų el. Pašto adresą!',
+ 'disabled-header' => 'Jūsų sąskaita buvo užblokuota',
+ 'pruned-header' => 'Jūsų paskyra buvo apgauta',
];
diff --git a/lang/lt/forum.php b/lang/lt/forum.php
index 41194d6c6..e57fbc449 100644
--- a/lang/lt/forum.php
+++ b/lang/lt/forum.php
@@ -12,63 +12,63 @@
*/
return [
- 'action' => 'Veiksmas',
- 'activity' => 'Veikla',
- 'approved' => 'Patvirtinta',
- 'author' => 'Autorius',
- 'bug' => 'Klaida',
- 'category-quick-search' => 'Temos pavadinimo greitoji paieška (kategorijoje)',
- 'close-topic' => 'Užrakinti temą',
- 'closed' => 'Uždaryta',
- 'create-new-topic' => 'Sukurti naują temą',
- 'created' => 'Sukurta',
- 'current' => 'Dabartinis',
- 'delete-topic' => 'Ištrinti šią temą',
- 'denied' => 'Neleidžiama',
- 'dislike-post' => 'Nepatinka šis pranešimas',
- 'display-forum' => 'Rodyti temas',
- 'edit-post' => 'Redaguoti įrašą',
- 'edit-topic' => 'Redaguoti temą',
- 'forum' => 'Forumas',
- 'forums' => 'Forumai',
- 'implemented' => 'Įgyvendinta',
- 'in' => 'Į',
- 'invalid' => 'Neteisingas',
- 'label' => 'Etiketė',
- 'label-system' => 'Etikečių sistema',
- 'last-message' => 'Paskutinis pranešimas',
- 'last-post-info' => 'Paskutinė informacija',
- 'latest' => 'Naujausi',
- 'like-post' => 'Kaip šis pranešimas',
- 'meta-category' => 'Kategorijų forumų sąrašas',
- 'moderation' => 'Reguliavimas',
- 'name' => 'vardas',
- 'not-connected' => 'Jūs turite būti prijungtas',
- 'not-subscribed' => 'Neužregistruota',
- 'open' => 'Atviras',
- 'open-topic' => 'Atidarykite šią temą',
- 'permalink' => 'Permalink',
- 'pin' => 'Prisegti',
- 'post' => 'Rašyti',
- 'post-quick-search' => 'Sparčiosios paieškos įstaiga',
- 'posts' => 'Žinutės',
- 'quote' => 'Citata',
- 'read-topic' => 'Skaitykite temą',
- 'replies' => 'Atsakymai',
- 'send-new-topic' => 'Išsaugoti šią temą',
- 'solved' => 'Išspręsta',
- 'state' => 'Valstybė',
- 'stats' => 'Statistika',
- 'subscribed' => 'Prenumeruota',
+ 'action' => 'Veiksmas',
+ 'activity' => 'Veikla',
+ 'approved' => 'Patvirtinta',
+ 'author' => 'Autorius',
+ 'bug' => 'Klaida',
+ 'category-quick-search' => 'Temos pavadinimo greitoji paieška (kategorijoje)',
+ 'close-topic' => 'Užrakinti temą',
+ 'closed' => 'Uždaryta',
+ 'create-new-topic' => 'Sukurti naują temą',
+ 'created' => 'Sukurta',
+ 'current' => 'Dabartinis',
+ 'delete-topic' => 'Ištrinti šią temą',
+ 'denied' => 'Neleidžiama',
+ 'dislike-post' => 'Nepatinka šis pranešimas',
+ 'display-forum' => 'Rodyti temas',
+ 'edit-post' => 'Redaguoti įrašą',
+ 'edit-topic' => 'Redaguoti temą',
+ 'forum' => 'Forumas',
+ 'forums' => 'Forumai',
+ 'implemented' => 'Įgyvendinta',
+ 'in' => 'Į',
+ 'invalid' => 'Neteisingas',
+ 'label' => 'Etiketė',
+ 'label-system' => 'Etikečių sistema',
+ 'last-message' => 'Paskutinis pranešimas',
+ 'last-post-info' => 'Paskutinė informacija',
+ 'latest' => 'Naujausi',
+ 'like-post' => 'Kaip šis pranešimas',
+ 'meta-category' => 'Kategorijų forumų sąrašas',
+ 'moderation' => 'Reguliavimas',
+ 'name' => 'vardas',
+ 'not-connected' => 'Jūs turite būti prijungtas',
+ 'not-subscribed' => 'Neužregistruota',
+ 'open' => 'Atviras',
+ 'open-topic' => 'Atidarykite šią temą',
+ 'permalink' => 'Permalink',
+ 'pin' => 'Prisegti',
+ 'post' => 'Rašyti',
+ 'post-quick-search' => 'Sparčiosios paieškos įstaiga',
+ 'posts' => 'Žinutės',
+ 'quote' => 'Citata',
+ 'read-topic' => 'Skaitykite temą',
+ 'replies' => 'Atsakymai',
+ 'send-new-topic' => 'Išsaugoti šią temą',
+ 'solved' => 'Išspręsta',
+ 'state' => 'Valstybė',
+ 'stats' => 'Statistika',
+ 'subscribed' => 'Prenumeruota',
'subscription-quick-search' => 'Temos pavadinimo greitoji paieška (per prenumeratą)',
- 'suggestion' => 'Pasiūlymas',
- 'topic' => 'Tema',
- 'topic-closed' => 'Ši tema uždaryta',
- 'topic-name' => 'Temos pavadinimas',
- 'topic-quick-search' => 'Temos pavadinimo greitoji paieška',
- 'topic-title' => 'Šios temos pavadinimas',
- 'topics' => 'Temos',
- 'unpin' => 'Atjunkite',
- 'view-all' => 'Peržiūrėti visas temas',
- 'views' => 'Peržiūrėjo',
+ 'suggestion' => 'Pasiūlymas',
+ 'topic' => 'Tema',
+ 'topic-closed' => 'Ši tema uždaryta',
+ 'topic-name' => 'Temos pavadinimas',
+ 'topic-quick-search' => 'Temos pavadinimo greitoji paieška',
+ 'topic-title' => 'Šios temos pavadinimas',
+ 'topics' => 'Temos',
+ 'unpin' => 'Atjunkite',
+ 'view-all' => 'Peržiūrėti visas temas',
+ 'views' => 'Peržiūrėjo',
];
diff --git a/lang/lt/graveyard.php b/lang/lt/graveyard.php
index 96f167609..daf78b5ee 100644
--- a/lang/lt/graveyard.php
+++ b/lang/lt/graveyard.php
@@ -12,15 +12,15 @@
*/
return [
- 'dead' => 'Mirę',
- 'graveyard' => 'Kapinės',
- 'guidelines' => 'Gairės',
+ 'dead' => 'Mirę',
+ 'graveyard' => 'Kapinės',
+ 'guidelines' => 'Gairės',
'guidelines-content' => '1) Negalite atkurti savo įkėlimų.
2) Negalima prisikelti kažko, ko negalite padaryti.',
- 'howto' => 'Štai taisyklė',
- 'howto-desc1' => 'Jūs turite sėklą : 30 dienų , kad sėkmingai ištirtumėte. Tokiu atveju, kai jūsų dabartinė sėklų trukmė yra',
- 'howto-desc2' => 'Jums bus atlyginta',
- 'howto-hits' => 'Paspaudimai',
- 'pending' => 'Kol',
- 'resurrect' => 'Prisikėlimas',
- 'reward' => '„Freeleech“ žetonai',
+ 'howto' => 'Štai taisyklė',
+ 'howto-desc1' => 'Jūs turite sėklą : 30 dienų , kad sėkmingai ištirtumėte. Tokiu atveju, kai jūsų dabartinė sėklų trukmė yra',
+ 'howto-desc2' => 'Jums bus atlyginta',
+ 'howto-hits' => 'Paspaudimai',
+ 'pending' => 'Kol',
+ 'resurrect' => 'Prisikėlimas',
+ 'reward' => '„Freeleech“ žetonai',
];
diff --git a/lang/lt/notification.php b/lang/lt/notification.php
index f68e408f8..1ce64212b 100644
--- a/lang/lt/notification.php
+++ b/lang/lt/notification.php
@@ -12,14 +12,14 @@
*/
return [
- 'date' => 'Data',
- 'delete' => 'Ištrinti',
- 'delete-all' => 'Ištrinti visus pranešimus',
- 'mark-all-read' => 'pažymėti visus kaip skaitytus',
- 'mark-read' => 'Žymėti kaip skaitytas',
- 'message' => 'Pranešimas',
+ 'date' => 'Data',
+ 'delete' => 'Ištrinti',
+ 'delete-all' => 'Ištrinti visus pranešimus',
+ 'mark-all-read' => 'pažymėti visus kaip skaitytus',
+ 'mark-read' => 'Žymėti kaip skaitytas',
+ 'message' => 'Pranešimas',
'no-notifications' => 'Nerasta jokių pranešimų',
- 'notifications' => 'Pranešimai',
- 'read' => 'Skaityti',
- 'title' => 'Pavadinimas',
+ 'notifications' => 'Pranešimai',
+ 'read' => 'Skaityti',
+ 'title' => 'Pavadinimas',
];
diff --git a/lang/lt/page.php b/lang/lt/page.php
index 25c88eff3..ceb7d9f23 100644
--- a/lang/lt/page.php
+++ b/lang/lt/page.php
@@ -12,28 +12,28 @@
*/
return [
- 'aboutus-advantage' => 'Privalumas',
- 'aboutus-advantage1' => 'Mes turime patyrusių narių ir darbuotojų, kurie gerai išmano HD vaizdo / garso ir techninės pagalbos pasaulį.',
- 'aboutus-advantage2' => 'Kartu su dideliu aistru filmų ir televizijos laidoms, mes taip pat siūlome vieną iš geriausių pasirinkimų kažkam, kas labiausiai ne - FANRES! BIG AČIŪ mūsų turinio atnešėjams.',
- 'aboutus-advantage3' => 'Nors priimame donorystę, kad būtų išlaikyta svetainė ir jos veikimas, vietoje nebus jokių kenkėjų. Nėra prašymo iš mūsų.',
- 'aboutus-advantage4' => 'Mūsų bendruomenė yra antroji nė vieno iš savo ankstyvo amžiaus. Tarp mūsų darbuotojų ir naudotojų bazės visada buvo padėti. Aistringai įsitikinote, kad jūsų patirtis yra tokia: pavadinimas nėra nieko nuostabaus.',
- 'aboutus-advantage5' => 'Mūsų paslaugą kasdien naudoja daugelis žmonių visame pasaulyje. Mes įrodėme, kad rūpinamės savo kodo bazės funkcionalumu ir saugumu, ir tai galima pasitikėti ir pasitikėti. Mūsų kūrėjai dirba kasdien, kad suteiktų tikrai nex-gen kodą.',
- 'aboutus-header' => 'Sveiki',
- 'aboutus-rules' => 'Ką mums reikia iš jūsų',
- 'aboutus-rules1' => 'Būti aktyviu bendruomenės nariu! Tai reiškia, kad norite aktyviai prisijungti prie pokalbių, pridėti patvirtintą turinį ir padėti kitiems vartotojams, jei galite.',
- 'aboutus-rules2' => 'Norėdami perskaityti taisykles ir jas gerbti!',
- 'aboutus-rules3' => 'Pasiūlyti! Mes stengiamės, kad kiekvieną dieną geriau pavadintume. Mes sakome, kad kiekvienas pasiūlymas bus panaudotas, bet niekada nesunku pamatyti naujų idėjų.',
- 'aboutus-welcome' => 'Pakalbėkim apie',
- 'aboutus-welcome-desc' => ': title yra bendruomenės sukurta „ Movie / TV / FANRES“ duomenų bazė. Nuo 2017 m. Kiekvienas duomenų rinkinys buvo pridėtas mūsų nuostabios bendruomenės. Pavadinimai: didelis dėmesys skiriamas HD turiniui, aktyviam naudotojų bazei, nuostabiam / saugiam kodo bazei ir naudingam bei draugiškam personalui.',
- 'blacklist-browsers' => 'Naršyklės',
- 'blacklist-btclient' => '„BitTorrent“ klientas',
- 'blacklist-clients' => 'Klientai',
- 'blacklist-desc' => 'Toliau pateiktos naršyklės ir „Bittorrent“ klientai yra įtraukiami į juodąjį sąrašą / uždrausti nuo paskelbimo iki: pavadinimo',
- 'blacklist-webbrowser' => 'Interneto naršyklė',
+ 'aboutus-advantage' => 'Privalumas',
+ 'aboutus-advantage1' => 'Mes turime patyrusių narių ir darbuotojų, kurie gerai išmano HD vaizdo / garso ir techninės pagalbos pasaulį.',
+ 'aboutus-advantage2' => 'Kartu su dideliu aistru filmų ir televizijos laidoms, mes taip pat siūlome vieną iš geriausių pasirinkimų kažkam, kas labiausiai ne - FANRES! BIG AČIŪ mūsų turinio atnešėjams.',
+ 'aboutus-advantage3' => 'Nors priimame donorystę, kad būtų išlaikyta svetainė ir jos veikimas, vietoje nebus jokių kenkėjų. Nėra prašymo iš mūsų.',
+ 'aboutus-advantage4' => 'Mūsų bendruomenė yra antroji nė vieno iš savo ankstyvo amžiaus. Tarp mūsų darbuotojų ir naudotojų bazės visada buvo padėti. Aistringai įsitikinote, kad jūsų patirtis yra tokia: pavadinimas nėra nieko nuostabaus.',
+ 'aboutus-advantage5' => 'Mūsų paslaugą kasdien naudoja daugelis žmonių visame pasaulyje. Mes įrodėme, kad rūpinamės savo kodo bazės funkcionalumu ir saugumu, ir tai galima pasitikėti ir pasitikėti. Mūsų kūrėjai dirba kasdien, kad suteiktų tikrai nex-gen kodą.',
+ 'aboutus-header' => 'Sveiki',
+ 'aboutus-rules' => 'Ką mums reikia iš jūsų',
+ 'aboutus-rules1' => 'Būti aktyviu bendruomenės nariu! Tai reiškia, kad norite aktyviai prisijungti prie pokalbių, pridėti patvirtintą turinį ir padėti kitiems vartotojams, jei galite.',
+ 'aboutus-rules2' => 'Norėdami perskaityti taisykles ir jas gerbti!',
+ 'aboutus-rules3' => 'Pasiūlyti! Mes stengiamės, kad kiekvieną dieną geriau pavadintume. Mes sakome, kad kiekvienas pasiūlymas bus panaudotas, bet niekada nesunku pamatyti naujų idėjų.',
+ 'aboutus-welcome' => 'Pakalbėkim apie',
+ 'aboutus-welcome-desc' => ': title yra bendruomenės sukurta „ Movie / TV / FANRES“ duomenų bazė. Nuo 2017 m. Kiekvienas duomenų rinkinys buvo pridėtas mūsų nuostabios bendruomenės. Pavadinimai: didelis dėmesys skiriamas HD turiniui, aktyviam naudotojų bazei, nuostabiam / saugiam kodo bazei ir naudingam bei draugiškam personalui.',
+ 'blacklist-browsers' => 'Naršyklės',
+ 'blacklist-btclient' => '„BitTorrent“ klientas',
+ 'blacklist-clients' => 'Klientai',
+ 'blacklist-desc' => 'Toliau pateiktos naršyklės ir „Bittorrent“ klientai yra įtraukiami į juodąjį sąrašą / uždrausti nuo paskelbimo iki: pavadinimo',
+ 'blacklist-webbrowser' => 'Interneto naršyklė',
'blacklist-emaildomain' => 'Užblokuotas domenas',
- 'email-blacklist-desc' => 'Toliau nurodyti el. Domenai yra blokuojami nuo naudojimo. Jūs negalite užregistruoti arba atsiųsti kvietimą į sekančius.',
- 'email-whitelist-desc' => 'Šie el. Domenai yra tik el. Pašto domenai, kuriuos leidžiama naudoti. Galite registruotis arba atsiųsti kvietimą naudodami toliau pateiktus.',
- 'staff-group' => 'Grupė',
- 'staff-title' => 'Pavadinimas',
+ 'email-blacklist-desc' => 'Toliau nurodyti el. Domenai yra blokuojami nuo naudojimo. Jūs negalite užregistruoti arba atsiųsti kvietimą į sekančius.',
+ 'email-whitelist-desc' => 'Šie el. Domenai yra tik el. Pašto domenai, kuriuos leidžiama naudoti. Galite registruotis arba atsiųsti kvietimą naudodami toliau pateiktus.',
+ 'staff-group' => 'Grupė',
+ 'staff-title' => 'Pavadinimas',
'whitelist-emaildomain' => 'Patikimas domenas',
];
diff --git a/lang/lt/pagination.php b/lang/lt/pagination.php
index a6ae76af5..d4035f354 100644
--- a/lang/lt/pagination.php
+++ b/lang/lt/pagination.php
@@ -24,5 +24,5 @@ return [
*/
'previous' => '« Ankstesnis',
- 'next' => 'Sekantis »',
+ 'next' => 'Sekantis »',
];
diff --git a/lang/lt/passwords.php b/lang/lt/passwords.php
index 2465063c6..c7e84bdc9 100644
--- a/lang/lt/passwords.php
+++ b/lang/lt/passwords.php
@@ -24,8 +24,8 @@ return [
*/
'password' => 'Slaptažodis turi būti bent šešių simbolių ir sutapti su patvirtinimu.',
- 'reset' => 'Nustatytas naujas slaptažodis!',
- 'sent' => 'Naujo slaptažodžio nustatymo nuoroda išsiųsta',
- 'token' => 'Šis slaptažodžio raktas yra neteisingas.',
- 'user' => 'Vartotojas su tokiu el. pašu nerastas.',
+ 'reset' => 'Nustatytas naujas slaptažodis!',
+ 'sent' => 'Naujo slaptažodžio nustatymo nuoroda išsiųsta',
+ 'token' => 'Šis slaptažodžio raktas yra neteisingas.',
+ 'user' => 'Vartotojas su tokiu el. pašu nerastas.',
];
diff --git a/lang/lt/pm.php b/lang/lt/pm.php
index ca527e33c..83d3880fb 100644
--- a/lang/lt/pm.php
+++ b/lang/lt/pm.php
@@ -12,29 +12,29 @@
*/
return [
- 'create' => 'Sukurti',
- 'delete' => 'Ištrinti',
+ 'create' => 'Sukurti',
+ 'delete' => 'Ištrinti',
'enter-subject' => 'Įveskite temą',
- 'from' => 'Nuo',
- 'inbox' => 'Pašto dėžutę',
+ 'from' => 'Nuo',
+ 'inbox' => 'Pašto dėžutę',
'mark-all-read' => 'Pažymėkite visus pranešimus kaip skaitytus',
- 'message' => 'Pranešimas',
- 'messages' => 'Žinutės',
- 'new' => 'Nauja žinutė',
- 'outbox' => 'Siunčiamieji',
- 'private' => 'Privatus',
- 'read' => 'Skaityti',
- 'received-at' => 'Gavo At',
- 'refresh' => 'Atnaujinti',
- 'reply' => 'Atsakyti',
- 'search' => 'Ieškoti pagal temą',
- 'select' => 'Pasirinkite Naudotojas',
- 'send' => 'Siųsti PM',
- 'send-to' => 'Siųsti PM',
- 'sent' => 'Išsiųsta',
- 'sent-at' => 'Išsiųsta',
- 'subject' => 'Tema',
- 'to' => 'Į',
- 'unread' => 'Neskaityta',
- 'empty-inbox' => 'Posta in arrivo vuota',
+ 'message' => 'Pranešimas',
+ 'messages' => 'Žinutės',
+ 'new' => 'Nauja žinutė',
+ 'outbox' => 'Siunčiamieji',
+ 'private' => 'Privatus',
+ 'read' => 'Skaityti',
+ 'received-at' => 'Gavo At',
+ 'refresh' => 'Atnaujinti',
+ 'reply' => 'Atsakyti',
+ 'search' => 'Ieškoti pagal temą',
+ 'select' => 'Pasirinkite Naudotojas',
+ 'send' => 'Siųsti PM',
+ 'send-to' => 'Siųsti PM',
+ 'sent' => 'Išsiųsta',
+ 'sent-at' => 'Išsiųsta',
+ 'subject' => 'Tema',
+ 'to' => 'Į',
+ 'unread' => 'Neskaityta',
+ 'empty-inbox' => 'Posta in arrivo vuota',
];
diff --git a/lang/lt/poll.php b/lang/lt/poll.php
index 9adb6fb5b..9e6cdffd1 100644
--- a/lang/lt/poll.php
+++ b/lang/lt/poll.php
@@ -12,18 +12,18 @@
*/
return [
- 'add-option' => 'Pridėti parinktį',
- 'create-poll' => 'Sukurti apklausą',
- 'current' => 'Dabartinis apklausa',
- 'delete-option' => 'Ištrinti parinktį',
+ 'add-option' => 'Pridėti parinktį',
+ 'create-poll' => 'Sukurti apklausą',
+ 'current' => 'Dabartinis apklausa',
+ 'delete-option' => 'Ištrinti parinktį',
'multiple-choice' => 'Tai yra daugkartinio pasirinkimo apklausa. Pasirinkite kuo daugiau atsakymų.',
- 'option' => 'Galimybė',
- 'poll' => 'Apklausa',
- 'polls' => 'Apklausos',
- 'results' => 'Apklausos rezultatai',
- 'title' => 'Pavadinimas',
- 'total' => 'Iš viso balsų',
- 'vote' => 'Balsas',
- 'vote-now' => 'Gaukite savo balsą dabar!',
- 'votes' => 'Balsavimas',
+ 'option' => 'Galimybė',
+ 'poll' => 'Apklausa',
+ 'polls' => 'Apklausos',
+ 'results' => 'Apklausos rezultatai',
+ 'title' => 'Pavadinimas',
+ 'total' => 'Iš viso balsų',
+ 'vote' => 'Balsas',
+ 'vote-now' => 'Gaukite savo balsą dabar!',
+ 'votes' => 'Balsavimas',
];
diff --git a/lang/lt/request.php b/lang/lt/request.php
index 43d82b760..d96deb1e2 100644
--- a/lang/lt/request.php
+++ b/lang/lt/request.php
@@ -12,67 +12,67 @@
*/
return [
- 'add-request' => 'Pridėti užklausą',
- 'age' => 'Amžius',
- 'all-requests' => 'Visi prašymai',
- 'approve' => 'Patvirtinti',
- 'bounty' => 'Bounty',
- 'bounty-claimed' => 'Bounty teigė',
- 'bounty-unclaimed' => 'Bounty neprašė',
- 'category' => 'Kategorija',
- 'claim' => 'Reikalavimas',
- 'claim-anon-choose' => 'Prašome pasirinkti protingai',
- 'claim-as-anon' => 'Ar norėtumėte pareikalauti šio anoniminio',
- 'claim-now' => 'Prašymas dabar',
- 'claimed' => 'Teigiama',
- 'current' => 'Dabartinis',
- 'delete' => 'Ištrinti šį prašymą',
+ 'add-request' => 'Pridėti užklausą',
+ 'age' => 'Amžius',
+ 'all-requests' => 'Visi prašymai',
+ 'approve' => 'Patvirtinti',
+ 'bounty' => 'Bounty',
+ 'bounty-claimed' => 'Bounty teigė',
+ 'bounty-unclaimed' => 'Bounty neprašė',
+ 'category' => 'Kategorija',
+ 'claim' => 'Reikalavimas',
+ 'claim-anon-choose' => 'Prašome pasirinkti protingai',
+ 'claim-as-anon' => 'Ar norėtumėte pareikalauti šio anoniminio',
+ 'claim-now' => 'Prašymas dabar',
+ 'claimed' => 'Teigiama',
+ 'current' => 'Dabartinis',
+ 'delete' => 'Ištrinti šį prašymą',
'delete-confirmation' => 'Ar tikrai norite ištrinti šį prašymą',
- 'delete-filled' => 'Šis prašymas gali būti ištrintas tik jei jis nebuvo užpildytas',
- 'description' => 'apibūdinimas',
- 'dont-have-bps' => 'Jūs neturite pakankamai premijos',
- 'edit-request' => 'Redaguoti užklausą',
- 'enter-bp' => 'Įveskite premijos taškus (mažiausiai 100)',
- 'enter-hash' => 'Įveskite įkeltos „Torrent“ informacijos Hash',
- 'fill' => 'Užpildykite',
- 'fill-request' => 'Užpildykite šį prašymą',
- 'filled' => 'Užpildyta',
- 'filled-by' => 'Užpildyta',
- 'for' => 'dėl',
- 'fulfill' => 'Užpildykite',
- 'last-vote' => 'Paskutinis balsavimas',
- 'my-requests' => 'Mano prašymai',
- 'no' => 'Ne,',
- 'no-imdb-id' => 'Visi prašymai turi apimti IMDB numerį',
- 'no-privileges' => 'Klaida: jūsų užklausos teisės buvo išjungtos',
- 'no-privileges-desc' => 'Jei manote, kad tai klaidinga, prašome kreiptis į „Staff“',
- 'no-refunds' => 'BON mainai apie kūrimą, užpildymą ir premijas yra galutiniai!
NĖRA GRĄŽINIMO!',
- 'pending' => 'Kol',
- 'reason' => 'Priežastis',
- 'reject' => 'Atmesti',
- 'report' => 'Pranešti apie užklausą',
- 'request' => 'Prašymas',
- 'request-details' => 'Prašyti informacijos',
- 'requested-by' => 'Prašoma',
- 'requests' => 'Prašymai',
- 'required' => 'Būtina',
- 'reset' => 'Atstatyti',
- 'reset-confirmation' => 'Ar tikrai norite atstatyti šį prašymą',
- 'reset-request' => 'Atstatyti šį prašymą',
- 'reward' => 'Atlygis',
- 'reward-desc' => 'Kiek premijos taško norėtumėte apdovanoti? Mažiausiai 100 BP',
- 'reward-from' => 'Nuo',
- 'title' => 'Pavadinimas',
- 'torrent-hash' => 'Torrent Hash',
- 'total-bounty' => 'Iš viso pinigų',
- 'type' => 'Tipas',
- 'unclaim' => 'Nepriimkite šio prašymo',
- 'unfilled' => 'Neužpildyta',
- 'view-filled' => 'Žiūrėti užpildytą',
- 'view-unfilled' => 'Žiūrėti nepildytą',
- 'vote' => 'Balsas',
- 'vote-that' => 'Balsuokite šį prašymą',
- 'voters' => 'Rinkėjai',
- 'votes' => 'Balsavimas',
- 'yes' => 'Taip',
+ 'delete-filled' => 'Šis prašymas gali būti ištrintas tik jei jis nebuvo užpildytas',
+ 'description' => 'apibūdinimas',
+ 'dont-have-bps' => 'Jūs neturite pakankamai premijos',
+ 'edit-request' => 'Redaguoti užklausą',
+ 'enter-bp' => 'Įveskite premijos taškus (mažiausiai 100)',
+ 'enter-hash' => 'Įveskite įkeltos „Torrent“ informacijos Hash',
+ 'fill' => 'Užpildykite',
+ 'fill-request' => 'Užpildykite šį prašymą',
+ 'filled' => 'Užpildyta',
+ 'filled-by' => 'Užpildyta',
+ 'for' => 'dėl',
+ 'fulfill' => 'Užpildykite',
+ 'last-vote' => 'Paskutinis balsavimas',
+ 'my-requests' => 'Mano prašymai',
+ 'no' => 'Ne,',
+ 'no-imdb-id' => 'Visi prašymai turi apimti IMDB numerį',
+ 'no-privileges' => 'Klaida: jūsų užklausos teisės buvo išjungtos',
+ 'no-privileges-desc' => 'Jei manote, kad tai klaidinga, prašome kreiptis į „Staff“',
+ 'no-refunds' => 'BON mainai apie kūrimą, užpildymą ir premijas yra galutiniai!
NĖRA GRĄŽINIMO!',
+ 'pending' => 'Kol',
+ 'reason' => 'Priežastis',
+ 'reject' => 'Atmesti',
+ 'report' => 'Pranešti apie užklausą',
+ 'request' => 'Prašymas',
+ 'request-details' => 'Prašyti informacijos',
+ 'requested-by' => 'Prašoma',
+ 'requests' => 'Prašymai',
+ 'required' => 'Būtina',
+ 'reset' => 'Atstatyti',
+ 'reset-confirmation' => 'Ar tikrai norite atstatyti šį prašymą',
+ 'reset-request' => 'Atstatyti šį prašymą',
+ 'reward' => 'Atlygis',
+ 'reward-desc' => 'Kiek premijos taško norėtumėte apdovanoti? Mažiausiai 100 BP',
+ 'reward-from' => 'Nuo',
+ 'title' => 'Pavadinimas',
+ 'torrent-hash' => 'Torrent Hash',
+ 'total-bounty' => 'Iš viso pinigų',
+ 'type' => 'Tipas',
+ 'unclaim' => 'Nepriimkite šio prašymo',
+ 'unfilled' => 'Neužpildyta',
+ 'view-filled' => 'Žiūrėti užpildytą',
+ 'view-unfilled' => 'Žiūrėti nepildytą',
+ 'vote' => 'Balsas',
+ 'vote-that' => 'Balsuokite šį prašymą',
+ 'voters' => 'Rinkėjai',
+ 'votes' => 'Balsavimas',
+ 'yes' => 'Taip',
];
diff --git a/lang/lt/rss.php b/lang/lt/rss.php
index 0ba140aa6..3b6067d1a 100644
--- a/lang/lt/rss.php
+++ b/lang/lt/rss.php
@@ -12,19 +12,19 @@
*/
return [
- 'create' => 'Sukurti',
+ 'create' => 'Sukurti',
'create-private-feed' => 'Sukurkite privatų RSS kanalą',
- 'create-public-feed' => 'Sukurti viešą RSS kanalą',
- 'delete' => 'Ištrinti',
- 'edit' => 'Redaguoti',
- 'edit-private-feed' => 'Redaguoti privatų RSS kanalą',
- 'edit-public-feed' => 'Redaguoti viešąjį RSS kanalą',
- 'feed' => 'Maitinti',
- 'feeds' => 'Kanalai',
- 'name' => 'vardas',
- 'public' => 'Vieša',
- 'private' => 'Privatus',
- 'rss' => 'RSS',
- 'rss-feed' => 'RSS kanalas',
- 'type' => 'Tipas',
+ 'create-public-feed' => 'Sukurti viešą RSS kanalą',
+ 'delete' => 'Ištrinti',
+ 'edit' => 'Redaguoti',
+ 'edit-private-feed' => 'Redaguoti privatų RSS kanalą',
+ 'edit-public-feed' => 'Redaguoti viešąjį RSS kanalą',
+ 'feed' => 'Maitinti',
+ 'feeds' => 'Kanalai',
+ 'name' => 'vardas',
+ 'public' => 'Vieša',
+ 'private' => 'Privatus',
+ 'rss' => 'RSS',
+ 'rss-feed' => 'RSS kanalas',
+ 'type' => 'Tipas',
];
diff --git a/lang/lt/staff.php b/lang/lt/staff.php
index f29056608..416a7ff0c 100644
--- a/lang/lt/staff.php
+++ b/lang/lt/staff.php
@@ -12,48 +12,48 @@
*/
return [
- 'audit-log' => 'veiklos žurnalas',
- 'articles' => 'Straipsniai',
- 'applications' => 'Programos',
- 'bans-log' => 'Draudimų žurnalas',
- 'blocks' => 'Blokai',
- 'bot' => 'Bot',
- 'bots' => 'Bots',
- 'chat' => 'Pokalbiai',
- 'config-manager' => '„Config Manager“',
- 'dashboard' => 'Prietaisų skydelis',
- 'failed-login-log' => 'Nepavyko prisijungimo žurnalas',
- 'flush-ghost-peers' => 'Išskleisti „Ghost Peers“',
- 'forums' => 'Forumai',
- 'frontend' => 'Priekinis',
- 'general-tools' => 'Bendrieji įrankiai',
- 'groups' => 'Grupės',
- 'invites-log' => 'Kvietimų žurnalas',
- 'laravel-log' => '„Laravel“ žurnalas',
- 'links' => 'Nuorodos',
- 'logs' => 'Žurnalai',
- 'mass-pm' => 'Masė PM',
- 'mass-validate-users' => 'Masės patvirtinti naudotojus',
- 'moderation' => 'Reguliavimas',
- 'pages' => 'Puslapiai',
- 'please-moderate' => 'Prašome reguliuoti šią Torrent!',
- 'polls' => 'Apklausos',
- 'reports-log' => 'Ataskaitų žurnalas',
- 'rss' => 'RSS',
- 'staff-dashboard' => 'Darbuotojų informacijos suvestinė',
- 'torrent-categories' => 'Torrent kategorijos',
- 'torrent-moderation' => 'Torrent moderavimas',
- 'torrent-tools' => 'Torrent įrankiai',
- 'torrent-types' => 'Torrent tipai',
- 'torrents' => 'Torrents',
- 'user-gifting' => 'Naudotojo dovanos',
- 'user-notes' => 'Vartotojo pastabų žurnalas',
- 'user-search' => 'Vartotojo paieška',
- 'user-tools' => 'Vartotojo įrankiai',
- 'warnings-log' => 'Įspėjimų žurnalas',
- 'you-have' => 'Tu turi',
+ 'audit-log' => 'veiklos žurnalas',
+ 'articles' => 'Straipsniai',
+ 'applications' => 'Programos',
+ 'bans-log' => 'Draudimų žurnalas',
+ 'blocks' => 'Blokai',
+ 'bot' => 'Bot',
+ 'bots' => 'Bots',
+ 'chat' => 'Pokalbiai',
+ 'config-manager' => '„Config Manager“',
+ 'dashboard' => 'Prietaisų skydelis',
+ 'failed-login-log' => 'Nepavyko prisijungimo žurnalas',
+ 'flush-ghost-peers' => 'Išskleisti „Ghost Peers“',
+ 'forums' => 'Forumai',
+ 'frontend' => 'Priekinis',
+ 'general-tools' => 'Bendrieji įrankiai',
+ 'groups' => 'Grupės',
+ 'invites-log' => 'Kvietimų žurnalas',
+ 'laravel-log' => '„Laravel“ žurnalas',
+ 'links' => 'Nuorodos',
+ 'logs' => 'Žurnalai',
+ 'mass-pm' => 'Masė PM',
+ 'mass-validate-users' => 'Masės patvirtinti naudotojus',
+ 'moderation' => 'Reguliavimas',
+ 'pages' => 'Puslapiai',
+ 'please-moderate' => 'Prašome reguliuoti šią Torrent!',
+ 'polls' => 'Apklausos',
+ 'reports-log' => 'Ataskaitų žurnalas',
+ 'rss' => 'RSS',
+ 'staff-dashboard' => 'Darbuotojų informacijos suvestinė',
+ 'torrent-categories' => 'Torrent kategorijos',
+ 'torrent-moderation' => 'Torrent moderavimas',
+ 'torrent-tools' => 'Torrent įrankiai',
+ 'torrent-types' => 'Torrent tipai',
+ 'torrents' => 'Torrents',
+ 'user-gifting' => 'Naudotojo dovanos',
+ 'user-notes' => 'Vartotojo pastabų žurnalas',
+ 'user-search' => 'Vartotojo paieška',
+ 'user-tools' => 'Vartotojo įrankiai',
+ 'warnings-log' => 'Įspėjimų žurnalas',
+ 'you-have' => 'Tu turi',
'possible-leech-cheaters' => 'Galimi apgavikai',
- 'chat-tools' => 'Pokalbių įrankiai',
- 'flush-chat' => '„Flush Chatbox“',
- 'seedboxes' => 'Registruotos sėklos dėžutės',
+ 'chat-tools' => 'Pokalbių įrankiai',
+ 'flush-chat' => '„Flush Chatbox“',
+ 'seedboxes' => 'Registruotos sėklos dėžutės',
];
diff --git a/lang/lt/stat.php b/lang/lt/stat.php
index 1a23405cb..107dea1b0 100644
--- a/lang/lt/stat.php
+++ b/lang/lt/stat.php
@@ -12,40 +12,40 @@
*/
return [
- 'by-count' => 'Pagal skaičių',
- 'by-data' => 'Pagal duomenis',
- 'by-volume' => 'Pagal tūrį',
- 'group' => 'Grupė',
- 'groups' => 'Grupės',
- 'nerd-stats' => 'Nerd statistika',
- 'nerd-stats-desc' => 'Mes visi mėgstame statistiką. Štai keletas svarbių dalykų',
- 'registration-date' => 'Registracijos data',
- 'request-fulfilled' => 'Prašymas įvykdytas',
- 'request-not-fulfilled' => 'Prašymas neįvykdytas',
+ 'by-count' => 'Pagal skaičių',
+ 'by-data' => 'Pagal duomenis',
+ 'by-volume' => 'Pagal tūrį',
+ 'group' => 'Grupė',
+ 'groups' => 'Grupės',
+ 'nerd-stats' => 'Nerd statistika',
+ 'nerd-stats-desc' => 'Mes visi mėgstame statistiką. Štai keletas svarbių dalykų',
+ 'registration-date' => 'Registracijos data',
+ 'request-fulfilled' => 'Prašymas įvykdytas',
+ 'request-not-fulfilled' => 'Prašymas neįvykdytas',
'request-pending-aproval' => 'Prašymas laukiamas, kol bus patvirtintas',
- 'select-category' => 'Pasirinkite žemiau esančią kategoriją',
- 'site-stats' => 'Svetainės statistika',
- 'stats' => 'Statistika',
- 'stats-format' => 'Visos statistikos, rodomos 100 geriausių formatų',
- 'top-bankers' => 'Į viršų bankininkai',
- 'top-bountied' => 'Į viršų Bountied',
- 'top-completed' => 'Į viršų Baigta',
- 'top-dead' => 'Į viršų Dead',
- 'top-downloaded' => 'Populiariausi atsisiuntimai',
- 'top-downloaders' => 'Populiariausi parsisiuntėjai',
- 'top-dying' => 'Į viršų miršta',
- 'top-leeched' => 'Į viršų Leeched',
- 'top-leechers' => 'Į viršų Leechers',
- 'top-seeded' => 'Top Seeded',
- 'top-seeding' => 'Į viršų Sėjamoji',
- 'top-seeders' => 'Į viršų Sėjamosios',
- 'top-seedsize' => 'Į viršų Seedsize',
- 'top-seedtime' => 'Į viršų Seedtime',
- 'top-uploaders' => 'Populiariausi įkėlėjai',
- 'total-download' => 'Visas atsisiuntimas',
- 'total-torrents' => 'Iš viso torrent',
- 'total-traffic' => 'Bendras srautas',
- 'total-upload' => 'Bendras įkėlimas',
- 'users-in-group' => 'Vartotojai grupėje',
- 'users-per-group' => 'Vartotojai per grupę',
+ 'select-category' => 'Pasirinkite žemiau esančią kategoriją',
+ 'site-stats' => 'Svetainės statistika',
+ 'stats' => 'Statistika',
+ 'stats-format' => 'Visos statistikos, rodomos 100 geriausių formatų',
+ 'top-bankers' => 'Į viršų bankininkai',
+ 'top-bountied' => 'Į viršų Bountied',
+ 'top-completed' => 'Į viršų Baigta',
+ 'top-dead' => 'Į viršų Dead',
+ 'top-downloaded' => 'Populiariausi atsisiuntimai',
+ 'top-downloaders' => 'Populiariausi parsisiuntėjai',
+ 'top-dying' => 'Į viršų miršta',
+ 'top-leeched' => 'Į viršų Leeched',
+ 'top-leechers' => 'Į viršų Leechers',
+ 'top-seeded' => 'Top Seeded',
+ 'top-seeding' => 'Į viršų Sėjamoji',
+ 'top-seeders' => 'Į viršų Sėjamosios',
+ 'top-seedsize' => 'Į viršų Seedsize',
+ 'top-seedtime' => 'Į viršų Seedtime',
+ 'top-uploaders' => 'Populiariausi įkėlėjai',
+ 'total-download' => 'Visas atsisiuntimas',
+ 'total-torrents' => 'Iš viso torrent',
+ 'total-traffic' => 'Bendras srautas',
+ 'total-upload' => 'Bendras įkėlimas',
+ 'users-in-group' => 'Vartotojai grupėje',
+ 'users-per-group' => 'Vartotojai per grupę',
];
diff --git a/lang/lt/torrent.php b/lang/lt/torrent.php
index 6aadcfc87..3a6ab4924 100644
--- a/lang/lt/torrent.php
+++ b/lang/lt/torrent.php
@@ -12,197 +12,197 @@
*/
return [
- 'activity' => 'Veikla',
- 'age' => 'Amžius',
- 'agent' => 'Agentas',
- 'alive' => 'Gyvas',
- 'announce-url' => 'Skelbti URL',
- 'announce-url-desc' => 'Jei norite sukurti naują torrent, naudokite aukščiau pateiktą pranešimo URL. Jei norite naudoti savo torrent, neperkeldami jo iš svetainės, turite nustatyti privačią vėliavą ir šaltinį: source',
- 'announce-url-desc-url' => 'Turite problemų? Žr. Mūsų vadovą čia',
- 'announce-url-desc2' => 'TMDB ir IMDB reikalingi visiems įkėlimams! Jis naudojamas rėmeliams / Backdrops ir ExtraInfo',
- 'approved' => 'Patvirtinta',
- 'audio' => 'Garsas',
- 'bon-tipped' => '„BON Tipped“',
- 'bookmark' => 'Žymėti',
- 'bookmarks' => 'Žymės',
- 'bump' => 'Bump',
- 'cant-upload' => 'Klaida: jūsų įkėlimo teisės yra išjungtos',
- 'cant-upload-desc' => 'Jei jaučiatės tai yra klaida, prašome susisiekti su darbuotojais',
- 'cards' => 'Kortelės',
- 'cards-view' => '„Torrent Cards View“',
- 'categories' => 'Kategorijos',
- 'category' => 'Kategorija',
- 'client' => 'Klientas',
- 'commited' => 'Įsipareigota',
- 'completed' => 'Baigta',
- 'completed_at' => 'Baigta',
- 'completed-not-seeding' => 'Jūs užbaigėte šį atsisiuntimą, bet nebėra sėjamos',
- 'created_at' => 'Sukurta adresu',
- 'credited' => 'Kredituota',
- 'current' => 'Dabartinis',
- 'current-filters' => 'Dabartiniai filtrai',
- 'currently-leeching' => 'Šiuo metu „Leeching“',
- 'currently-seeding' => 'Šiuo metu sėja',
- 'dead-torrent' => 'Dead Torrent',
- 'dead-torrents' => 'Dead Torrents',
- 'delete-bookmark' => 'Ištrinti šią žymę',
- 'description' => 'apibūdinimas',
- 'discounts' => 'Nuolaidos',
- 'double-upload' => 'Dvigubas įkėlimas',
- 'download-all' => 'Atsisiųskite viską',
- 'download-check' => 'Atsisiųsti patikrinimą',
- 'downloaded' => 'Atsisiuntė',
- 'dying-torrent' => 'Dying Torrent',
- 'dying-torrents' => 'Miršta torentai',
- 'encode-settings' => 'Koduoti parametrus',
- 'estimated-ratio' => 'Apskaičiuotas santykis po atsisiuntimo',
- 'failed' => 'Nepavyko',
- 'feature' => 'Funkcija',
- 'featured' => 'Teminiai',
- 'featured-desc' => 'Teminiai torrentai yra 100% nemokama ir Dvigubas įkėlimas!',
- 'featured-until' => 'Tai yra populiarus Torrent Iki',
- 'file' => 'Failas',
- 'filters' => 'Filtrai',
- 'fl-tokens-left' => 'Tu turi : kairieji',
- 'freeleech' => 'Freeleechas',
- 'freeleech-token' => 'Freeleecho žetonas',
- 'general' => 'Bendra',
- 'genre' => 'Žanras',
- 'global-double-upload' => 'Pasaulinis dvigubas įkėlimas',
- 'global-freeleech' => '„Global Freeleech“',
- 'grant' => 'Dotacija',
- 'greater-than' => 'Geresnis negu',
- 'grouping' => 'Grupavimas',
- 'groupings' => 'Grupės',
- 'grouping-categories' => 'Grupavimo kategorijos',
+ 'activity' => 'Veikla',
+ 'age' => 'Amžius',
+ 'agent' => 'Agentas',
+ 'alive' => 'Gyvas',
+ 'announce-url' => 'Skelbti URL',
+ 'announce-url-desc' => 'Jei norite sukurti naują torrent, naudokite aukščiau pateiktą pranešimo URL. Jei norite naudoti savo torrent, neperkeldami jo iš svetainės, turite nustatyti privačią vėliavą ir šaltinį: source',
+ 'announce-url-desc-url' => 'Turite problemų? Žr. Mūsų vadovą čia',
+ 'announce-url-desc2' => 'TMDB ir IMDB reikalingi visiems įkėlimams! Jis naudojamas rėmeliams / Backdrops ir ExtraInfo',
+ 'approved' => 'Patvirtinta',
+ 'audio' => 'Garsas',
+ 'bon-tipped' => '„BON Tipped“',
+ 'bookmark' => 'Žymėti',
+ 'bookmarks' => 'Žymės',
+ 'bump' => 'Bump',
+ 'cant-upload' => 'Klaida: jūsų įkėlimo teisės yra išjungtos',
+ 'cant-upload-desc' => 'Jei jaučiatės tai yra klaida, prašome susisiekti su darbuotojais',
+ 'cards' => 'Kortelės',
+ 'cards-view' => '„Torrent Cards View“',
+ 'categories' => 'Kategorijos',
+ 'category' => 'Kategorija',
+ 'client' => 'Klientas',
+ 'commited' => 'Įsipareigota',
+ 'completed' => 'Baigta',
+ 'completed_at' => 'Baigta',
+ 'completed-not-seeding' => 'Jūs užbaigėte šį atsisiuntimą, bet nebėra sėjamos',
+ 'created_at' => 'Sukurta adresu',
+ 'credited' => 'Kredituota',
+ 'current' => 'Dabartinis',
+ 'current-filters' => 'Dabartiniai filtrai',
+ 'currently-leeching' => 'Šiuo metu „Leeching“',
+ 'currently-seeding' => 'Šiuo metu sėja',
+ 'dead-torrent' => 'Dead Torrent',
+ 'dead-torrents' => 'Dead Torrents',
+ 'delete-bookmark' => 'Ištrinti šią žymę',
+ 'description' => 'apibūdinimas',
+ 'discounts' => 'Nuolaidos',
+ 'double-upload' => 'Dvigubas įkėlimas',
+ 'download-all' => 'Atsisiųskite viską',
+ 'download-check' => 'Atsisiųsti patikrinimą',
+ 'downloaded' => 'Atsisiuntė',
+ 'dying-torrent' => 'Dying Torrent',
+ 'dying-torrents' => 'Miršta torentai',
+ 'encode-settings' => 'Koduoti parametrus',
+ 'estimated-ratio' => 'Apskaičiuotas santykis po atsisiuntimo',
+ 'failed' => 'Nepavyko',
+ 'feature' => 'Funkcija',
+ 'featured' => 'Teminiai',
+ 'featured-desc' => 'Teminiai torrentai yra 100% nemokama ir Dvigubas įkėlimas!',
+ 'featured-until' => 'Tai yra populiarus Torrent Iki',
+ 'file' => 'Failas',
+ 'filters' => 'Filtrai',
+ 'fl-tokens-left' => 'Tu turi : kairieji',
+ 'freeleech' => 'Freeleechas',
+ 'freeleech-token' => 'Freeleecho žetonas',
+ 'general' => 'Bendra',
+ 'genre' => 'Žanras',
+ 'global-double-upload' => 'Pasaulinis dvigubas įkėlimas',
+ 'global-freeleech' => '„Global Freeleech“',
+ 'grant' => 'Dotacija',
+ 'greater-than' => 'Geresnis negu',
+ 'grouping' => 'Grupavimas',
+ 'groupings' => 'Grupės',
+ 'grouping-categories' => 'Grupavimo kategorijos',
'grouping-categories-desc' => 'Kokią kategoriją norite grupuoti?',
- 'grouping-results' => 'Rezultatų grupavimas',
- 'groupings-view' => 'Grupių rodinys',
- 'have-completed' => 'Baigta',
- 'have-downloaded' => 'Atsisiuntė',
- 'have-not-completed' => 'Ne pabaigtas',
- 'have-not-downloaded' => 'Neįvertinta',
- 'health' => 'Sveikata',
- 'history' => 'Istorija',
- 'hitrun' => 'H&R?',
- 'hit-and-runs' => 'Paspaudimas ir skaičiavimas',
- 'immune' => 'Imuninis?',
- 'info' => 'Informacija',
- 'internal' => 'Vidinis',
- 'internal-release' => 'Vidinis išleidimas',
- 'last-seed-activity' => 'Paskutinė sėklos veikla',
- 'last-seeder' => 'Jūs esate paskutinis sėkladėžė! (parsisiunčiamas bent 3 kartus)',
- 'last-update' => 'Paskutiniai pakeitimai',
- 'leave-tip' => 'Palikite antgalį',
- 'leecher' => 'Leecher',
- 'leechers' => 'Leechers',
- 'leeching' => 'Leeching',
- 'left' => 'Kairė',
- 'legendary-seeder' => 'Legendinis sėjamoji',
- 'legendary-torrent' => 'Legendinis torrent',
- 'list' => 'Sąrašas',
- 'me' => 'Aš',
- 'media-info' => '„MediaInfo“',
- 'media-info-parser' => '„MediaInfo Parser“',
- 'media-info-paste' => 'Čia įklijuokite „MediaInfo“ sąvartyną',
- 'meta-desc' => 'Atsisiųsti: pavadinimas maksimaliu greičiu',
- 'moderation' => 'Reguliavimas',
- 'movies' => 'Filmai',
- 'mvp' => 'MVP',
- 'my-active-torrents' => 'Mano aktyvūs torrentai',
- 'name' => 'vardas',
- 'no-bookmarks' => 'Nerasta jokių žymių.',
- 'no-discounts' => 'Šiuo metu nuolaidos nėra',
- 'no-meta' => 'Nerasta jokių metaduomenų',
- 'no-privileges' => 'Negalite atsisiųsti šio failo - daugiau informacijos rasite toliau',
- 'no-privileges-desc' => 'Jei norite, kad atsisiuntimo mygtukas būtų rodomas, išspręskite anksčiau pateiktus nepavykusius rezultatus',
- 'not-completed' => 'Pradėtas atsisiuntimas, bet niekada baigtas',
- 'not-downloaded' => 'Neįvertinta',
- 'old-torrent' => 'Senas torrent',
- 'optional' => 'Neprivaloma',
- 'original-output' => 'Rodyti / slėpti originalų išėjimą',
- 'participant' => 'Dalyvis',
- 'passed' => 'Perduota',
- 'peers' => 'Kolegai',
- 'pending' => 'Kol',
- 'personal-freeleech' => 'Asmeninis Freeleechas',
- 'poster' => 'plakatas',
- 'poster-view' => 'Plakato vaizdas',
- 'posters' => 'Plakatai',
- 'prewarn' => 'Iš anksto įspėtas?',
- 'progress' => 'Progresas',
- 'quick-comment' => 'Greita pastaba',
- 'quick-tip' => 'Greita patarimų suma',
- 'rated' => 'Įvertinta',
- 'rating' => 'Įvertinimas',
- 'ready' => 'Šis failas paruoštas atsisiųsti',
- 'rejected' => 'Atstumtas',
- 'released' => 'Išleistas',
- 'remaining' => 'Likęs',
- 'request-reseed' => 'Užsisakyti Reseed',
- 'requires-reseed' => 'Reikalingas Reseed',
- 'resurrections' => 'Prisikėlimai',
- 'revoke' => 'Atšaukti',
- 'rss' => 'RSS',
- 'runtime' => 'Trukmė',
- 'satisfied_in' => 'Patenkintas',
- 'say-thanks' => 'Nepamirškite pasakyti padėkos ir sėklos tiek, kiek galite',
- 'sd-content' => 'SD turinys',
- 'search' => 'Paieška',
- 'seed-time' => 'Sėklos laikas',
- 'seeder' => 'Sėjamoji',
- 'seeders' => 'Sėjamosios',
- 'seeding' => 'Sėjimas',
- 'seedsize' => 'Seedsize',
- 'seedtime' => 'Seedtime',
- 'short-completed' => 'C',
- 'short-leechs' => 'L',
- 'short-seeds' => 'S',
- 'show-files' => 'Rodyti failus',
- 'similar' => 'Panašūs torrentai',
- 'size' => 'Dydis',
- 'special' => 'Specialus',
- 'special-freeleech' => 'Specialus „Freeleech“',
- 'started' => 'Pradėtas',
- 'status' => 'Būsena',
- 'statistics' => 'Statistika',
- 'stats' => 'Statistika',
- 'sticky' => 'Lipnus',
- 'stream-optimized' => 'Srautas optimizuotas',
- 'subtitle' => 'Subtitrai',
- 'team-player' => 'Komandos žaidėjas',
- 'thank' => 'Ačiū',
- 'thanked' => 'Padėkojo',
- 'thanks' => 'Dėkoju',
- 'thanks-given' => 'Dėkojame',
- 'times' => 'Laikai',
- 'tip-jar' => 'Patarimo indelis',
- 'title' => 'Pavadinimas',
- 'titles' => 'Pavadinimai',
- 'top-completed' => 'Į viršų baigtas',
- 'top-dead' => 'Į viršų miręs',
- 'top-dying' => 'Į viršų miršta',
- 'top-leeched' => 'Į viršų paklota',
- 'top-seeded' => 'Į viršų sėjama',
- 'torrent' => 'Torrent',
- 'torrent-request' => 'Torrent užklausa',
- 'torrent-tips' => 'Iš viso : bendras BON buvo nukreiptas į įkėlimo programą, iš kurių : vartotojas yra iš jūsų',
- 'torrent-tips-desc' => 'Tai bus atimama iš jūsų turimų premijų taškų',
- 'torrents' => 'Torrents',
- 'trailer' => 'Peržiūrėti priekabą',
- 'type' => 'Tipas',
- 'types' => 'Tipai',
- 'unbookmark' => 'Nepažymėkite žymės',
- 'unsatisfieds' => 'Nepatenkinti',
- 'unsticky' => 'Neįtikėtina',
- 'updated' => 'Atnaujinta',
- 'updated_at' => 'Atnaujinta:',
- 'uploaded' => 'Įkelta',
- 'uploaded-by' => 'Įkelta pagal',
- 'uploader' => 'Įkėlėjas',
- 'use-fl-token' => 'Naudokite „Freeleech“ raktą',
- 'video' => 'Vaizdo įrašas',
- 'view-more' => 'Peržiūrėti daugiau',
- 'view-trailer' => 'Peržiūrėti priekabą',
- 'votes' => 'Balsavimas',
+ 'grouping-results' => 'Rezultatų grupavimas',
+ 'groupings-view' => 'Grupių rodinys',
+ 'have-completed' => 'Baigta',
+ 'have-downloaded' => 'Atsisiuntė',
+ 'have-not-completed' => 'Ne pabaigtas',
+ 'have-not-downloaded' => 'Neįvertinta',
+ 'health' => 'Sveikata',
+ 'history' => 'Istorija',
+ 'hitrun' => 'H&R?',
+ 'hit-and-runs' => 'Paspaudimas ir skaičiavimas',
+ 'immune' => 'Imuninis?',
+ 'info' => 'Informacija',
+ 'internal' => 'Vidinis',
+ 'internal-release' => 'Vidinis išleidimas',
+ 'last-seed-activity' => 'Paskutinė sėklos veikla',
+ 'last-seeder' => 'Jūs esate paskutinis sėkladėžė! (parsisiunčiamas bent 3 kartus)',
+ 'last-update' => 'Paskutiniai pakeitimai',
+ 'leave-tip' => 'Palikite antgalį',
+ 'leecher' => 'Leecher',
+ 'leechers' => 'Leechers',
+ 'leeching' => 'Leeching',
+ 'left' => 'Kairė',
+ 'legendary-seeder' => 'Legendinis sėjamoji',
+ 'legendary-torrent' => 'Legendinis torrent',
+ 'list' => 'Sąrašas',
+ 'me' => 'Aš',
+ 'media-info' => '„MediaInfo“',
+ 'media-info-parser' => '„MediaInfo Parser“',
+ 'media-info-paste' => 'Čia įklijuokite „MediaInfo“ sąvartyną',
+ 'meta-desc' => 'Atsisiųsti: pavadinimas maksimaliu greičiu',
+ 'moderation' => 'Reguliavimas',
+ 'movies' => 'Filmai',
+ 'mvp' => 'MVP',
+ 'my-active-torrents' => 'Mano aktyvūs torrentai',
+ 'name' => 'vardas',
+ 'no-bookmarks' => 'Nerasta jokių žymių.',
+ 'no-discounts' => 'Šiuo metu nuolaidos nėra',
+ 'no-meta' => 'Nerasta jokių metaduomenų',
+ 'no-privileges' => 'Negalite atsisiųsti šio failo - daugiau informacijos rasite toliau',
+ 'no-privileges-desc' => 'Jei norite, kad atsisiuntimo mygtukas būtų rodomas, išspręskite anksčiau pateiktus nepavykusius rezultatus',
+ 'not-completed' => 'Pradėtas atsisiuntimas, bet niekada baigtas',
+ 'not-downloaded' => 'Neįvertinta',
+ 'old-torrent' => 'Senas torrent',
+ 'optional' => 'Neprivaloma',
+ 'original-output' => 'Rodyti / slėpti originalų išėjimą',
+ 'participant' => 'Dalyvis',
+ 'passed' => 'Perduota',
+ 'peers' => 'Kolegai',
+ 'pending' => 'Kol',
+ 'personal-freeleech' => 'Asmeninis Freeleechas',
+ 'poster' => 'plakatas',
+ 'poster-view' => 'Plakato vaizdas',
+ 'posters' => 'Plakatai',
+ 'prewarn' => 'Iš anksto įspėtas?',
+ 'progress' => 'Progresas',
+ 'quick-comment' => 'Greita pastaba',
+ 'quick-tip' => 'Greita patarimų suma',
+ 'rated' => 'Įvertinta',
+ 'rating' => 'Įvertinimas',
+ 'ready' => 'Šis failas paruoštas atsisiųsti',
+ 'rejected' => 'Atstumtas',
+ 'released' => 'Išleistas',
+ 'remaining' => 'Likęs',
+ 'request-reseed' => 'Užsisakyti Reseed',
+ 'requires-reseed' => 'Reikalingas Reseed',
+ 'resurrections' => 'Prisikėlimai',
+ 'revoke' => 'Atšaukti',
+ 'rss' => 'RSS',
+ 'runtime' => 'Trukmė',
+ 'satisfied_in' => 'Patenkintas',
+ 'say-thanks' => 'Nepamirškite pasakyti padėkos ir sėklos tiek, kiek galite',
+ 'sd-content' => 'SD turinys',
+ 'search' => 'Paieška',
+ 'seed-time' => 'Sėklos laikas',
+ 'seeder' => 'Sėjamoji',
+ 'seeders' => 'Sėjamosios',
+ 'seeding' => 'Sėjimas',
+ 'seedsize' => 'Seedsize',
+ 'seedtime' => 'Seedtime',
+ 'short-completed' => 'C',
+ 'short-leechs' => 'L',
+ 'short-seeds' => 'S',
+ 'show-files' => 'Rodyti failus',
+ 'similar' => 'Panašūs torrentai',
+ 'size' => 'Dydis',
+ 'special' => 'Specialus',
+ 'special-freeleech' => 'Specialus „Freeleech“',
+ 'started' => 'Pradėtas',
+ 'status' => 'Būsena',
+ 'statistics' => 'Statistika',
+ 'stats' => 'Statistika',
+ 'sticky' => 'Lipnus',
+ 'stream-optimized' => 'Srautas optimizuotas',
+ 'subtitle' => 'Subtitrai',
+ 'team-player' => 'Komandos žaidėjas',
+ 'thank' => 'Ačiū',
+ 'thanked' => 'Padėkojo',
+ 'thanks' => 'Dėkoju',
+ 'thanks-given' => 'Dėkojame',
+ 'times' => 'Laikai',
+ 'tip-jar' => 'Patarimo indelis',
+ 'title' => 'Pavadinimas',
+ 'titles' => 'Pavadinimai',
+ 'top-completed' => 'Į viršų baigtas',
+ 'top-dead' => 'Į viršų miręs',
+ 'top-dying' => 'Į viršų miršta',
+ 'top-leeched' => 'Į viršų paklota',
+ 'top-seeded' => 'Į viršų sėjama',
+ 'torrent' => 'Torrent',
+ 'torrent-request' => 'Torrent užklausa',
+ 'torrent-tips' => 'Iš viso : bendras BON buvo nukreiptas į įkėlimo programą, iš kurių : vartotojas yra iš jūsų',
+ 'torrent-tips-desc' => 'Tai bus atimama iš jūsų turimų premijų taškų',
+ 'torrents' => 'Torrents',
+ 'trailer' => 'Peržiūrėti priekabą',
+ 'type' => 'Tipas',
+ 'types' => 'Tipai',
+ 'unbookmark' => 'Nepažymėkite žymės',
+ 'unsatisfieds' => 'Nepatenkinti',
+ 'unsticky' => 'Neįtikėtina',
+ 'updated' => 'Atnaujinta',
+ 'updated_at' => 'Atnaujinta:',
+ 'uploaded' => 'Įkelta',
+ 'uploaded-by' => 'Įkelta pagal',
+ 'uploader' => 'Įkėlėjas',
+ 'use-fl-token' => 'Naudokite „Freeleech“ raktą',
+ 'video' => 'Vaizdo įrašas',
+ 'view-more' => 'Peržiūrėti daugiau',
+ 'view-trailer' => 'Peržiūrėti priekabą',
+ 'votes' => 'Balsavimas',
];
diff --git a/lang/lt/user.php b/lang/lt/user.php
index 548d4f032..52be53f82 100644
--- a/lang/lt/user.php
+++ b/lang/lt/user.php
@@ -12,316 +12,316 @@
*/
return [
- 'about' => 'Apie',
- 'about-me' => 'Apie mane',
- 'accepted-at' => 'Priimta ne',
- 'accepted-by' => 'Priimta',
- 'account-notification' => 'Paskyros pranešimo nustatymai',
- 'account-notification-follow' => 'Gauti pranešimą, kai naudotojas seka jūsų paskyra',
- 'account-notification-unfollow' => 'Gauti pranešimą, kai naudotojas atsisako paskyros',
- 'account-notification-help' => 'Valdykite, kurie pranešimai yra siunčiami dėl jūsų paskyros. Šie nustatymai yra nepakeisti, jei neleidžiate grupėms siųsti pranešimų apie jūsų paskyrą arba jei išjungiate pranešimus',
- 'account-settings' => 'Paskyros nustatymai',
- 'achievement-privacy' => 'Pasiekimo nustatymai',
- 'achievement-privacy-list' => 'Leiskite vartotojams peržiūrėti savo pasiekimų sąrašą',
- 'achievement-help' => 'Valdykite konkrečios su pasiekimais susijusios informacijos pasidalijimą su grupėmis, kurioms leidžiama pasiekti jūsų profilį. Šie nustatymai yra nepakeisti, jei neleidžiate grupėms pasiekti savo pasiekimų arba jei jūs einate į privatų asmenį',
- 'achievements' => 'Pasiekimai',
- 'active' => 'Aktyvus',
- 'active-table' => 'Mano aktyvus stalas',
- 'active-torrents' => 'Aktyvūs torrentai',
- 'active-warning' => 'Aktyvus įspėjimas',
- 'active-warnings' => 'Aktyvūs įspėjimai',
- 'add-seedbox' => 'Pridėti sėkladėžę',
- 'all-torrents' => 'Visi torrentai',
- 'article-comments' => 'Straipsnio komentarai',
- 'avatar' => 'Avataras',
- 'avg-seedtime' => 'Vidutinis sėklų laikas',
- 'badges' => 'Ženklai',
- 'ban' => 'Uždrausti vartotoją',
- 'ban-log' => 'Ban Log',
- 'become-hidden' => 'Tapkite paslėpta',
- 'become-visible' => 'Tapkite matomu',
- 'bon' => 'BON',
- 'bon-notification' => 'BON pranešimų nustatymai',
- 'bon-notification-gift' => 'Gauti pranešimą, kai vartotojas dovanoja jums bon',
- 'bon-notification-help' => 'Kontroliuoti, kurie pranešimai siunčiami dėl BON sandorių. Šie nustatymai yra nepakeisti, jei neleidžiate grupėms siųsti pranešimų apie BON arba jei išjungiate pranešimus',
- 'bookmarks' => 'Žymės',
- 'bounty-given' => 'Bounty Pateikta',
- 'bounty-received' => 'Bounty Received',
- 'can-chat' => 'Gali kalbėtis',
- 'can-comment' => 'Ar gali komentuoti',
- 'can-download' => 'Galima atsisiųsti',
- 'can-invite' => 'Gali pakviesti',
- 'can-request' => 'Gali prašyti',
- 'can-upload' => 'Galima įkelti',
- 'certified-banker' => 'Sertifikuotas bankininkas',
- 'certified-banker-desc' => 'Turi 50 000 ar daugiau BON banke',
- 'certified-downloader' => 'Sertifikuotas Downloader',
- 'certified-downloader-desc' => 'Atsisiuntė 100 ar daugiau torrentų!',
- 'certified-seeder' => 'Sertifikuota sėjamoji',
- 'certified-seeder-desc' => 'Sėjamoji 150 ar daugiau aistrų!',
- 'change-email' => 'Pakeisti el. paštą',
- 'change-email-help' => 'Po to, kai pakeisite el. Paštą, turėsite dar kartą patvirtinti paskyrą',
- 'change-password' => 'Pakeisti slaptažodį',
- 'change-password-help' => 'Kai pakeisite slaptažodį, turėsite prisijungti dar kartą',
- 'client-ip-address' => 'Kliento IP adresas',
- 'code' => 'Kodas',
- 'comments' => 'Komentarai',
- 'created-on' => 'Sukurtas',
- 'credited-download' => 'Kredituotas atsisiuntimas',
- 'credited-upload' => 'Kredituotas įkėlimas',
- 'current-password' => 'Dabartinis slaptažodis',
- 'custom-title' => 'Priskirtas pavadinimas',
- 'delete' => 'Ištrinti naudotoją',
- 'disable-notifications' => 'Išjungti pranešimus',
- 'disclaimer' => 'Atsakomybės apribojimas',
- 'disclaimer-info' => 'Mes pagal nutylėjimą neprisiregistruojame vartotojų IP adresų, kaip ir dauguma stebėtojų. Įtraukę savo „seedbox“ IP žemiau, tikimasi, kad žinosite, kad toliau išvardyti IP yra saugomi mūsų duomenų bazėje, nebent ištrinsite įrašus.',
- 'disclaimer-info-bordered' => 'Pridedami „Seedbox“ IP, kurie sukels didelės spartos „torrent“ žymą torrentams, sėjamiems iš toliau išvardytų IP',
- 'download-bon' => 'Atsisiųsti pašalintas iš BON parduotuvės',
- 'download-recorded' => 'Įrašytas atsisiuntimas',
- 'download-true' => 'Tikrasis atsisiuntimas',
- 'downloads' => 'Atsisiuntimai',
- 'edit' => 'Redaguoti naudotoją',
- 'edit-profile' => 'Redaguoti profilį',
- 'enable-notifications' => 'Įgalinti pranešimus',
- 'expired' => 'Pasibaigęs',
- 'expires-on' => 'Baigia galioti',
- 'extra' => 'Papildoma',
- 'filled-request' => 'Užpildytų narių prašymai',
- 'follow' => 'Sekite',
- 'follower-privacy' => 'Stebėtojo nustatymai',
- 'follower-privacy-list' => 'Leisti vartotojams peržiūrėti savo pasekėjų sąrašą',
- 'follower-help' => 'Valdykite konkrečios stebėtojo informacijos bendrinimą su grupėmis, kurioms leidžiama pasiekti jūsų profilį. Šie nustatymai yra nepakeisti, jei neleidžiate jokioms grupėms pasiekti savo pasekėjų arba jei jūs einate į privatų asmenį',
- 'followers' => 'Stebėtojai',
- 'following-notification' => 'Sekantys naudotojo pranešimų nustatymai',
- 'following-notification-upload' => 'Gauti pranešimą, kai sekantis vartotojas įkelia torrent',
- 'following-notification-help' => 'Kontroliuoti, kokie pranešimai siunčiami dėl naudotojo svetainės veiksmų. Šie nustatymai yra nepakeisti, jei neleidžiate grupėms siųsti pranešimų apie sekančius vartotojus arba jei išjungiate pranešimus',
- 'formats-are-supported' => ': formatai yra palaikomi',
- 'forum-notification' => 'Forumo pranešimų nustatymai',
- 'forum-notification-topic' => 'Gauti pranešimą, kai pradėjote naują temą',
- 'forum-notification-help' => 'Kontroliuoti, kurie pranešimai siunčiami dėl forumo veiklos. Šie nustatymai yra nepakeisti, jei neleidžiate grupėms siųsti pranešimų apie forumo veiklą arba jei išjungiate pranešimus',
- 'forum-privacy' => 'Forumo nustatymai',
- 'forum-privacy-post' => 'Leiskite vartotojams peržiūrėti forumo įrašų, kuriuos paskelbėte, sąrašą',
- 'forum-privacy-topic' => 'Leiskite vartotojams peržiūrėti forumo temų, kurias pradėjote, sąrašą',
- 'forum-help' => 'Kontroliuokite dalijimąsi konkrečia forumų statistika ir informacija su grupėmis, kurioms leidžiama pasiekti jūsų profilį. Šie nustatymai yra neišvengiami, jei neleidžiate jokiai grupei pasiekti savo forumo susijusios statistikos ir informacijos arba jei jūs einate į privatų asmenį',
- 'forum-signature' => 'Forumo parašas',
- 'forums' => 'Forumai',
- 'general' => 'Bendra',
- 'general-settings' => 'Bendrieji nustatymai',
- 'gift-given' => 'Dovanų dovana',
- 'gift-received' => 'Gauta dovana',
- 'go-public' => 'Eiti viešai',
- 'go-private' => 'Eiti privačiai',
- 'history' => 'Istorija',
- 'history-table' => 'Mano istorijos lentelė',
- 'hit-n-runs' => 'Rezultatas ir bėgimai',
- 'hit-n-runs-count' => 'Rezultatas ir paleisti skaičius (visas laikas)',
- 'hit-n-runs-history' => '„Torrent Hit“ ir „istorija“',
- 'image' => 'Vaizdas',
- 'important' => 'Svarbu',
- 'important-info' => 'Svarbi informacija',
- 'information' => 'Informacija',
- 'invite-friend' => 'Pakvieskite savo draugą (el. Paštas + privalomas pranešimas)',
- 'invite-tree' => 'Pakviesti medį',
- 'invites' => 'Kvietimai',
- 'invites-banned' => 'Klaida: Jūsų kvietimų teisės buvo išjungtos',
- 'invites-banned-desc' => 'Jei jaučiatės tai yra klaida, prašome susisiekti su darbuotojais!',
- 'invites-count' => 'Turite: suskaičiuoti pakvietimo žetonų skaičių',
- 'invites-disabled' => 'Dėmesio: dėl atviros registracijos kvietimai yra neįgalūs!',
- 'invites-disabled-desc' => 'Prašome patikrinti atgal!',
- 'invites-rules' => '- Pakvieskite tik tuos žmones, kuriuos žinote ir pasitikite.
- Jūs būsite asmeniškai atsakingi už tuos, kuriuos pakviesite.
- Negalima pakviesti sau, mes tikriname kiekvieną pakviestą vartotoją.
- Negalima prekiauti ar parduoti kvietimų.
- Jei jūsų pakviestas asmuo yra sugautas apgaudinėjimas, prekybos sąskaita arba pardavimo / prekybos kviečiami, jūs būsite įspėti.
',
- 'invites-send' => 'Kvietimai Siųsti',
- 'last-login' => 'Paskutinis prisijungimas',
- 'locked' => 'Užrakinta',
- 'locked-achievements' => 'Užrakinti pasiekimai',
- 'member-since' => 'Narys nuo',
- 'members-desc' => 'Registruotų vartotojų sąrašas: pavadinimas su visomis grupėmis. Suraskite vartotoją dabar.',
- 'mention-notification' => '@Mention Notification Settings',
+ 'about' => 'Apie',
+ 'about-me' => 'Apie mane',
+ 'accepted-at' => 'Priimta ne',
+ 'accepted-by' => 'Priimta',
+ 'account-notification' => 'Paskyros pranešimo nustatymai',
+ 'account-notification-follow' => 'Gauti pranešimą, kai naudotojas seka jūsų paskyra',
+ 'account-notification-unfollow' => 'Gauti pranešimą, kai naudotojas atsisako paskyros',
+ 'account-notification-help' => 'Valdykite, kurie pranešimai yra siunčiami dėl jūsų paskyros. Šie nustatymai yra nepakeisti, jei neleidžiate grupėms siųsti pranešimų apie jūsų paskyrą arba jei išjungiate pranešimus',
+ 'account-settings' => 'Paskyros nustatymai',
+ 'achievement-privacy' => 'Pasiekimo nustatymai',
+ 'achievement-privacy-list' => 'Leiskite vartotojams peržiūrėti savo pasiekimų sąrašą',
+ 'achievement-help' => 'Valdykite konkrečios su pasiekimais susijusios informacijos pasidalijimą su grupėmis, kurioms leidžiama pasiekti jūsų profilį. Šie nustatymai yra nepakeisti, jei neleidžiate grupėms pasiekti savo pasiekimų arba jei jūs einate į privatų asmenį',
+ 'achievements' => 'Pasiekimai',
+ 'active' => 'Aktyvus',
+ 'active-table' => 'Mano aktyvus stalas',
+ 'active-torrents' => 'Aktyvūs torrentai',
+ 'active-warning' => 'Aktyvus įspėjimas',
+ 'active-warnings' => 'Aktyvūs įspėjimai',
+ 'add-seedbox' => 'Pridėti sėkladėžę',
+ 'all-torrents' => 'Visi torrentai',
+ 'article-comments' => 'Straipsnio komentarai',
+ 'avatar' => 'Avataras',
+ 'avg-seedtime' => 'Vidutinis sėklų laikas',
+ 'badges' => 'Ženklai',
+ 'ban' => 'Uždrausti vartotoją',
+ 'ban-log' => 'Ban Log',
+ 'become-hidden' => 'Tapkite paslėpta',
+ 'become-visible' => 'Tapkite matomu',
+ 'bon' => 'BON',
+ 'bon-notification' => 'BON pranešimų nustatymai',
+ 'bon-notification-gift' => 'Gauti pranešimą, kai vartotojas dovanoja jums bon',
+ 'bon-notification-help' => 'Kontroliuoti, kurie pranešimai siunčiami dėl BON sandorių. Šie nustatymai yra nepakeisti, jei neleidžiate grupėms siųsti pranešimų apie BON arba jei išjungiate pranešimus',
+ 'bookmarks' => 'Žymės',
+ 'bounty-given' => 'Bounty Pateikta',
+ 'bounty-received' => 'Bounty Received',
+ 'can-chat' => 'Gali kalbėtis',
+ 'can-comment' => 'Ar gali komentuoti',
+ 'can-download' => 'Galima atsisiųsti',
+ 'can-invite' => 'Gali pakviesti',
+ 'can-request' => 'Gali prašyti',
+ 'can-upload' => 'Galima įkelti',
+ 'certified-banker' => 'Sertifikuotas bankininkas',
+ 'certified-banker-desc' => 'Turi 50 000 ar daugiau BON banke',
+ 'certified-downloader' => 'Sertifikuotas Downloader',
+ 'certified-downloader-desc' => 'Atsisiuntė 100 ar daugiau torrentų!',
+ 'certified-seeder' => 'Sertifikuota sėjamoji',
+ 'certified-seeder-desc' => 'Sėjamoji 150 ar daugiau aistrų!',
+ 'change-email' => 'Pakeisti el. paštą',
+ 'change-email-help' => 'Po to, kai pakeisite el. Paštą, turėsite dar kartą patvirtinti paskyrą',
+ 'change-password' => 'Pakeisti slaptažodį',
+ 'change-password-help' => 'Kai pakeisite slaptažodį, turėsite prisijungti dar kartą',
+ 'client-ip-address' => 'Kliento IP adresas',
+ 'code' => 'Kodas',
+ 'comments' => 'Komentarai',
+ 'created-on' => 'Sukurtas',
+ 'credited-download' => 'Kredituotas atsisiuntimas',
+ 'credited-upload' => 'Kredituotas įkėlimas',
+ 'current-password' => 'Dabartinis slaptažodis',
+ 'custom-title' => 'Priskirtas pavadinimas',
+ 'delete' => 'Ištrinti naudotoją',
+ 'disable-notifications' => 'Išjungti pranešimus',
+ 'disclaimer' => 'Atsakomybės apribojimas',
+ 'disclaimer-info' => 'Mes pagal nutylėjimą neprisiregistruojame vartotojų IP adresų, kaip ir dauguma stebėtojų. Įtraukę savo „seedbox“ IP žemiau, tikimasi, kad žinosite, kad toliau išvardyti IP yra saugomi mūsų duomenų bazėje, nebent ištrinsite įrašus.',
+ 'disclaimer-info-bordered' => 'Pridedami „Seedbox“ IP, kurie sukels didelės spartos „torrent“ žymą torrentams, sėjamiems iš toliau išvardytų IP',
+ 'download-bon' => 'Atsisiųsti pašalintas iš BON parduotuvės',
+ 'download-recorded' => 'Įrašytas atsisiuntimas',
+ 'download-true' => 'Tikrasis atsisiuntimas',
+ 'downloads' => 'Atsisiuntimai',
+ 'edit' => 'Redaguoti naudotoją',
+ 'edit-profile' => 'Redaguoti profilį',
+ 'enable-notifications' => 'Įgalinti pranešimus',
+ 'expired' => 'Pasibaigęs',
+ 'expires-on' => 'Baigia galioti',
+ 'extra' => 'Papildoma',
+ 'filled-request' => 'Užpildytų narių prašymai',
+ 'follow' => 'Sekite',
+ 'follower-privacy' => 'Stebėtojo nustatymai',
+ 'follower-privacy-list' => 'Leisti vartotojams peržiūrėti savo pasekėjų sąrašą',
+ 'follower-help' => 'Valdykite konkrečios stebėtojo informacijos bendrinimą su grupėmis, kurioms leidžiama pasiekti jūsų profilį. Šie nustatymai yra nepakeisti, jei neleidžiate jokioms grupėms pasiekti savo pasekėjų arba jei jūs einate į privatų asmenį',
+ 'followers' => 'Stebėtojai',
+ 'following-notification' => 'Sekantys naudotojo pranešimų nustatymai',
+ 'following-notification-upload' => 'Gauti pranešimą, kai sekantis vartotojas įkelia torrent',
+ 'following-notification-help' => 'Kontroliuoti, kokie pranešimai siunčiami dėl naudotojo svetainės veiksmų. Šie nustatymai yra nepakeisti, jei neleidžiate grupėms siųsti pranešimų apie sekančius vartotojus arba jei išjungiate pranešimus',
+ 'formats-are-supported' => ': formatai yra palaikomi',
+ 'forum-notification' => 'Forumo pranešimų nustatymai',
+ 'forum-notification-topic' => 'Gauti pranešimą, kai pradėjote naują temą',
+ 'forum-notification-help' => 'Kontroliuoti, kurie pranešimai siunčiami dėl forumo veiklos. Šie nustatymai yra nepakeisti, jei neleidžiate grupėms siųsti pranešimų apie forumo veiklą arba jei išjungiate pranešimus',
+ 'forum-privacy' => 'Forumo nustatymai',
+ 'forum-privacy-post' => 'Leiskite vartotojams peržiūrėti forumo įrašų, kuriuos paskelbėte, sąrašą',
+ 'forum-privacy-topic' => 'Leiskite vartotojams peržiūrėti forumo temų, kurias pradėjote, sąrašą',
+ 'forum-help' => 'Kontroliuokite dalijimąsi konkrečia forumų statistika ir informacija su grupėmis, kurioms leidžiama pasiekti jūsų profilį. Šie nustatymai yra neišvengiami, jei neleidžiate jokiai grupei pasiekti savo forumo susijusios statistikos ir informacijos arba jei jūs einate į privatų asmenį',
+ 'forum-signature' => 'Forumo parašas',
+ 'forums' => 'Forumai',
+ 'general' => 'Bendra',
+ 'general-settings' => 'Bendrieji nustatymai',
+ 'gift-given' => 'Dovanų dovana',
+ 'gift-received' => 'Gauta dovana',
+ 'go-public' => 'Eiti viešai',
+ 'go-private' => 'Eiti privačiai',
+ 'history' => 'Istorija',
+ 'history-table' => 'Mano istorijos lentelė',
+ 'hit-n-runs' => 'Rezultatas ir bėgimai',
+ 'hit-n-runs-count' => 'Rezultatas ir paleisti skaičius (visas laikas)',
+ 'hit-n-runs-history' => '„Torrent Hit“ ir „istorija“',
+ 'image' => 'Vaizdas',
+ 'important' => 'Svarbu',
+ 'important-info' => 'Svarbi informacija',
+ 'information' => 'Informacija',
+ 'invite-friend' => 'Pakvieskite savo draugą (el. Paštas + privalomas pranešimas)',
+ 'invite-tree' => 'Pakviesti medį',
+ 'invites' => 'Kvietimai',
+ 'invites-banned' => 'Klaida: Jūsų kvietimų teisės buvo išjungtos',
+ 'invites-banned-desc' => 'Jei jaučiatės tai yra klaida, prašome susisiekti su darbuotojais!',
+ 'invites-count' => 'Turite: suskaičiuoti pakvietimo žetonų skaičių',
+ 'invites-disabled' => 'Dėmesio: dėl atviros registracijos kvietimai yra neįgalūs!',
+ 'invites-disabled-desc' => 'Prašome patikrinti atgal!',
+ 'invites-rules' => '- Pakvieskite tik tuos žmones, kuriuos žinote ir pasitikite.
- Jūs būsite asmeniškai atsakingi už tuos, kuriuos pakviesite.
- Negalima pakviesti sau, mes tikriname kiekvieną pakviestą vartotoją.
- Negalima prekiauti ar parduoti kvietimų.
- Jei jūsų pakviestas asmuo yra sugautas apgaudinėjimas, prekybos sąskaita arba pardavimo / prekybos kviečiami, jūs būsite įspėti.
',
+ 'invites-send' => 'Kvietimai Siųsti',
+ 'last-login' => 'Paskutinis prisijungimas',
+ 'locked' => 'Užrakinta',
+ 'locked-achievements' => 'Užrakinti pasiekimai',
+ 'member-since' => 'Narys nuo',
+ 'members-desc' => 'Registruotų vartotojų sąrašas: pavadinimas su visomis grupėmis. Suraskite vartotoją dabar.',
+ 'mention-notification' => '@Mention Notification Settings',
'mention-notification-article-comment' => 'Gaukite pranešimą, kai rašote komentarą',
'mention-notification-torrent-comment' => 'Gauti pranešimą, kai esate @ komentuotas „torrent“ komentare',
'mention-notification-request-comment' => 'Gaukite pranešimą, kai pateikiamas užklausos komentare',
- 'mention-notification-forum-post' => 'Gauti pranešimą, kai esate @ @ minėtas forumo pranešime',
- 'mention-notification-help' => 'Valdykite, kurie pranešimai siunčiami, kai naudotojas @mentions jus. Šie nustatymai yra panaikinti, jei neleidžiate grupėms siųsti pranešimų, jei naudotojas @mentions jus arba jei išjungsite pranešimus',
- 'moderated-by' => 'Moderavo: mod on',
- 'my-bonus-points' => 'Mano premijos taškai',
- 'my-bookmarks' => 'Mano žymos',
- 'my-fl-tokens' => 'Mano FL žetonai',
- 'my-general-settings' => 'Mano bendrieji nustatymai',
- 'my-notification' => 'Mano pranešimas',
- 'my-notification-settings' => 'Mano pranešimo nustatymai',
- 'my-privacy' => 'Mano privatumas',
- 'my-privacy-settings' => 'Mano privatumo nustatymai',
- 'my-profile' => 'Mano profilis',
- 'my-requested' => 'Mano prašoma',
- 'my-security' => 'Mano saugumas',
- 'my-security-settings' => 'Mano saugos nustatymai',
- 'my-seedboxes' => 'Mano sėkladėžės',
- 'my-settings' => 'Mano nustatymai',
- 'my-wishlist' => 'Mano norų sąrašas',
- 'no-logs' => 'Šio vartotojo duomenų bazėje nėra kvietimų žurnalų!',
- 'no-seedboxes' => 'Nėra sėklų dėžių 😔',
- 'not-authorized' => 'Jūs neturite teisės peržiūrėti šio puslapio. Šis narys nori paslėpti kaip ninja!',
- 'note' => 'Pastaba',
- 'notification' => 'Pranešimas',
- 'notification-settings' => 'Pranešimų nustatymai',
- 'notification-from-account' => 'Gauti paskyros pranešimus iš',
- 'notification-from-account-help' => 'Jūs gausite pranešimus tik iš sistemos, darbuotojų ir šių grupių. Jei išjungiate pranešimus, šie nustatymai yra nepakeisti',
- 'notification-from-bon' => 'Gauti BON pranešimus iš',
- 'notification-from-bon-help' => 'BON pranešimus gausite tik iš sistemos, darbuotojų ir šių grupių. Jei išjungiate pranešimus, šie nustatymai yra nepakeisti',
- 'notification-from-following' => 'Gauti tolesnius naudotojo pranešimus iš',
- 'notification-from-following-help' => 'Po šių naudotojų pranešimus gausite tik iš šių grupių. Jei išjungiate pranešimus, šie nustatymai yra nepakeisti',
- 'notification-from-forum' => 'Gauti forumo pranešimus iš',
- 'notification-from-forum-help' => 'Gausite pranešimus tik iš sistemos, darbuotojų ir šių grupių. Jei išjungiate pranešimus, šie nustatymai yra nepakeisti',
- 'notification-from-subscription' => 'Gauti prenumeratos pranešimus iš',
- 'notification-from-subscription-help' => 'Gausite pranešimus tik iš sistemos, darbuotojų ir šių grupių. Jei išjungiate pranešimus, šie nustatymai yra nepakeisti',
- 'notification-from-torrent' => 'Gauti Torrent pranešimus iš',
- 'notification-from-torrent-help' => 'Iš sistemos, darbuotojų ir šių grupių gausite tik torrent pranešimus. Jei išjungiate pranešimus, šie nustatymai yra nepakeisti',
- 'notification-from-mention' => 'Gauti pranešimus „@Mention“',
- 'notification-from-mention-help' => 'Jūs gausite tik @mention pranešimus iš sistemos, darbuotojų ir šių grupių. Jei išjungiate pranešimus, šie nustatymai yra nepakeisti',
- 'notification-from-request' => 'Gauti užklausos pranešimus iš',
- 'notification-from-request-help' => 'Jūs gausite pranešimus tik iš sistemos, darbuotojų ir šių grupių. Jei išjungiate pranešimus, šie nustatymai yra nepakeisti',
- 'notifications' => 'Pranešimai',
- 'offline' => 'Vartotojas neprisijungęs!',
- 'online' => 'Vartotojas prisijungęs!',
- 'options' => 'Galimybės',
- 'other-help' => 'Valdykite kitų statistinių duomenų ir informacijos dalijimąsi grupėmis, kurioms leidžiama pasiekti jūsų profilį. Šie nustatymai yra nepakeisti, jei neleidžiate jokiai grupei pasiekti kitų statistinių duomenų ir informacijos, arba jei jūs einate į privatų asmenį',
- 'other-privacy' => 'Kiti nustatymai',
- 'other-privacy-online' => 'Leiskite vartotojams matyti jus interneto vartotojų bloke',
- 'passkey' => 'PID',
- 'passkey-warning' => 'PID yra kaip jūsų slaptažodis, turite saugoti!',
- 'pending-achievements' => 'Laukiami pasiekimai',
- 'per-torrent' => 'Per Torrent',
- 'posts' => 'Žinutės',
- 'posts-posted' => 'Forumo įrašai paskelbti',
- 'privacy' => 'Privatumas',
- 'privacy-settings' => 'Privatumo nustatymai',
- 'private-info' => 'Asmeninė informacija',
- 'private-forum-profile' => 'Dėmesio: šie nariai ir temos istorija buvo nustatyti PRIVATE!',
- 'private-profile' => 'Dėmesio: šis profilis nustatytas PRIVATE!',
- 'profile' => 'Profilis',
- 'profile-desc' => 'Vartotojas: vartotojo profilis užregistruotas: title',
- 'profile-privacy' => 'Profilio nustatymai',
- 'profile-privacy-torrent-count' => 'Pasidalinkite savo viso atsisiuntimų, įkėlimų, sėklų ir pakrančių skaičiumi',
- 'profile-privacy-torrent-ratio' => 'Pasidalinkite savo viso įkėlimo / atsisiuntimo duomenimis ir įrašytu santykiu',
- 'profile-privacy-torrent-seed' => 'Pasidalinkite savo bendrą sėjimo laiką ir vidurkį',
- 'profile-privacy-title' => 'Pasidalinkite savo asmeninio pavadinimo informacija',
- 'profile-privacy-about' => 'Pasidalinkite savo asmenine informacija apie mane',
- 'profile-privacy-bon-extra' => 'Pasidalinkite savo BON statistika',
- 'profile-privacy-comment-extra' => 'Pasidalinkite savo komentarų statistika',
- 'profile-privacy-forum-extra' => 'Pasidalinkite savo forumo statistika',
- 'profile-privacy-request-extra' => 'Pasidalinkite savo užklausų statistika',
- 'profile-privacy-torrent-extra' => 'Pasidalinkite savo torrent statistika',
- 'profile-privacy-badge' => 'Pasidalinkite savo uždirbtais ženklais',
- 'profile-privacy-achievement' => 'Pasidalykite savo naujausiais pasiekimais',
- 'profile-privacy-follower' => 'Pasidalykite savo paskutiniais pasekėjais',
- 'profile-privacy-warning' => 'Pasidalykite savo įspėjimais apie H&R',
- 'profile-privacy-help' => 'Kontroliuokite, kurie statistiniai duomenys ir informacija yra jūsų profilyje. Šie nustatymai yra nepakeisti, jei neleidžiate jokiai grupei pasiekti savo profilio arba jei jūs einate į privatų',
- 'public-info' => 'Viešoji informacija',
- 'recent-achievements' => 'Naujausi pasiekimai',
- 'recent-followers' => 'Naujausi sekėjai',
- 'registration-date' => 'Registracijos data',
- 'report' => 'Ataskaita',
- 'request-help' => 'Valdykite konkrečių užklausų statistikos ir informacijos bendrinimą su grupėmis, kurioms leidžiama pasiekti jūsų profilį. Šie nustatymai yra nepakeisti, jei neleidžiate jokioms grupėms pasiekti prašomos susijusios statistikos ir informacijos, arba jei jūs einate į privatų asmenį',
- 'request' => 'Prašymas',
- 'requested' => 'Prašoma',
- 'requests' => 'Prašymai',
- 'request-comments' => 'Prašyti komentarų',
- 'request-notification' => 'Prašyti pranešimų nustatymų',
- 'request-notification-bounty' => 'Gauti pranešimą, kai prašoma torrent gauna naują bounty',
- 'request-notification-comment' => 'Gauti pranešimą, kai prašoma torrent gauna naują komentarą',
- 'request-notification-fill' => 'Gauti pranešimą, kai užpildytas prašomas torrent',
- 'request-notification-fill-approve' => 'Gauti pranešimą, kai bus gautas prašomas torrent užpildymas',
- 'request-notification-fill-reject' => 'Gauti pranešimą, kai prašomas torrent užpildymas atmetamas',
- 'request-notification-claim' => 'Gauti pranešimą, kai prašoma torrent prašoma',
- 'request-notification-unclaim' => 'Gauti pranešimą, kai prašoma torrent neprašoma',
- 'request-notification-help' => 'Kontroliuoti, kurie pranešimai siunčiami dėl prašymo veiklos. Šie nustatymai yra nepakeisti, jei neleidžiate grupėms siųsti pranešimų apie užklausų veiklą arba jei išjungiate pranešimus',
- 'request-privacy' => 'Užklausos nustatymai',
- 'request-privacy-requested' => 'Leisti naudotojams peržiūrėti pateiktų užklausų sąrašą',
- 'reset-passkey' => 'Atstatyti leidimo raktą (PID)',
- 'reset-passkey-help' => 'Po to, kai iš naujo nustatysite PID, turėsite iš naujo atsisiųsti / iš naujo įkelti visus aktyvius torrentus',
- 'reset-rss' => 'Atstatyti RSS raktą (RID)',
- 'reset-rss-help' => 'Atstatę RID, turėsite iš naujo įkelti visus aktyvius RSS kanalus',
- 'resurrections' => 'Prisikėlimai',
- 'search' => 'Greita paieška pagal naudotojo vardą',
- 'security' => 'Saugumas',
- 'security-settings' => 'Apsaugos Nustatymai',
- 'seedboxes' => 'Sėkladėžės',
- 'seeds' => 'Sėklos',
- 'send-invite' => 'Siųsti kvietimą',
- 'sender' => 'Siuntėjas',
- 'settings' => 'Nustatymai',
- 'show-passkey' => 'Rodyti PID',
- 'staff-noted' => 'Darbuotojų pažymėta sąskaita',
- 'statistics' => 'Statistika',
- 'subscription-notification' => 'Prenumeratos pranešimų nustatymai',
- 'subscription-notification-forum' => 'Gaukite pranešimą, kai prenumeruojamas forumas gauna naują temą',
- 'subscription-notification-topic' => 'Gaukite pranešimą, kai užregistruota tema gauna naują įrašą',
- 'subscription-notification-help' => 'Valdykite, kokie pranešimai siunčiami dėl jūsų prenumeratos. Šie nustatymai yra nepakeisti, jei neleidžiate grupėms siųsti pranešimų apie savo prenumeratą arba jei išjungiate pranešimus',
- 'thanks-given' => 'Dėkojame',
- 'thanks-received' => 'Ačiū Gauta',
- 'tips-given' => 'Patarimai pateikti',
- 'tips-received' => 'Gauti patarimai',
- 'title' => 'Pavadinimas',
- 'top-bankers' => 'Į viršų bankininkai',
- 'top-downloaders-data' => 'Populiariausi atsisiuntėjai (duomenys)',
- 'top-leechers' => 'Į viršų Leechers',
- 'top-leechers-count' => 'Į viršų Leechers (Count)',
- 'top-seeders' => 'Į viršų Sėjamosios',
- 'top-seeders-count' => 'Populiariausi sėjamieji (Count)',
- 'top-seeding-size' => 'Geriausias sėjimas (dydis)',
- 'top-seedtime' => 'Į viršų Seedtime',
- 'top-uploaders-data' => 'Populiariausi įkėlėjai (duomenys)',
- 'top-uploaders-count' => 'Populiariausi įkėlėjai (skaičius)',
- 'topics' => 'Temos',
- 'topics-started' => 'Pradėtos forumo temos',
- 'torrent-comments' => 'Torrent komentarai',
- 'torrent-help' => 'Kontroliuokite konkrečių su torrent susijusių statistinių duomenų ir informacijos pasidalijimą su grupėmis, kurioms leidžiama pasiekti jūsų profilį. Šie parametrai yra svarbesni, jei neleidžia jokios grupės prieiti prie jūsų torrent susiję statistinius duomenis ir informaciją, arba jei Eiti Privati',
- 'torrent-notification' => 'Torrent pranešimų nustatymai',
- 'torrent-notification-comment' => 'Gaukite pranešimą, kai įkelta torrent gauna naują komentarą',
- 'torrent-notification-thank' => 'Gauti pranešimą, kai įkelta torrent gauna naują dėką',
- 'torrent-notification-tip' => 'Gaukite pranešimą, kai įkeltas torrent gauna naują patarimą',
- 'torrent-notification-help' => 'Kontroliuoti, kurie pranešimai siunčiami apie torrent veiklą. Šie nustatymai yra nepakeisti, jei neleidžiate grupėms siųsti pranešimų apie torrent veiklą arba jei išjungiate pranešimus',
- 'torrent-privacy' => 'Torrent nustatymai',
- 'torrent-privacy-download' => 'Leisti naudotojams peržiūrėti atsisiuntimų sąrašą',
- 'torrent-privacy-upload' => 'Leiskite naudotojams peržiūrėti siųstų torrentų sąrašą',
- 'torrent-privacy-peer' => 'Leiskite vartotojams matyti jus „torrent“ bendraamžių istorijos lentelėje',
- 'torrents' => 'Torrents',
- 'torrents-history' => 'Torrents istorija',
- 'total-download' => 'Visas atsisiuntimas',
- 'total-downloads' => 'Iš viso atsisiuntimų',
- 'total-leeching' => 'Iš viso Leeching',
- 'total-seeding' => 'Iš viso sėklų',
- 'total-seedtime' => 'Iš viso Seedtime',
- 'total-upload' => 'Bendras įkėlimas',
- 'total-uploads' => 'Iš viso įkėlimų',
- 'unban' => 'Unban Vartotojas',
- 'unfollow' => 'Atšaukti',
- 'unlocked' => 'Atrakinta',
- 'unlocked-achievements' => 'Atrakinti pasiekimai',
- 'unsatisfieds' => 'Nepatenkinti',
- 'upload-bon' => 'Įkelta pridėta iš BON parduotuvės',
- 'upload-recorded' => 'Įrašytas įkėlimas',
- 'upload-true' => 'Tikrasis įkėlimas',
- 'uploads' => 'Įkėlimai',
- 'uploads-table' => 'Įkėlimo lentelė',
- 'user' => 'Vartotojas',
- 'user-id' => 'Vartotojo ID',
- 'username-seedbox' => 'Vartotojo vardas Seedbox',
- 'visible-to-achievement' => 'Pasiekimai matomi',
- 'visible-to-achievement-help' => 'Jūsų pasiekimai bus matomi tik darbuotojams ir šioms grupėms. Jei einate į privatų režimą, šie nustatymai bus panaikinti',
- 'visible-to-follower' => 'Stebėtojai matomi',
- 'visible-to-follower-help' => 'Jūsų pasekėjai bus matomi tik darbuotojams ir šioms grupėms. Jei einate į privatų režimą, šie nustatymai bus panaikinti',
- 'visible-to-forum' => 'Forumo informacija matoma',
- 'visible-to-forum-help' => 'Jūsų forumo informacija bus matoma tik darbuotojams ir šioms grupėms. Jei einate į privatų režimą, šie nustatymai bus panaikinti',
- 'visible-to-other' => 'Kita matoma',
- 'visible-to-other-help' => 'Kita informacija apie jūsų sąskaitą bus matoma tik darbuotojams ir šioms grupėms. Šie nustatymai yra ignoruojami, jei jūs einate į privatų arba paslėpsite',
- 'visible-to-profile' => 'Profilis matomas',
- 'visible-to-profile-help' => 'Jūsų profilis bus matomas tik darbuotojams ir šioms grupėms. Jei einate į privatų režimą, šie nustatymai bus panaikinti',
- 'visible-to-request' => 'Prašyti informacijos matoma',
- 'visible-to-request-help' => 'Jūsų užklausos informacija bus matoma tik darbuotojams ir šioms grupėms. Jei einate į privatų režimą, šie nustatymai bus panaikinti',
- 'visible-to-torrent' => 'Torrent informacija matoma',
- 'visible-to-torrent-help' => 'Jūsų torrent informacija bus matoma tik darbuotojams ir šioms grupėms. Šie nustatymai yra ignoruojami, jei jūs einate į privatų arba paslėpsite',
- 'warned-on' => 'Įspėjama',
- 'warning' => 'Įspėjimas',
- 'warning-log' => 'Įspėjimo žurnalas',
- 'wishlist' => 'Pageidavimų sąrašas',
+ 'mention-notification-forum-post' => 'Gauti pranešimą, kai esate @ @ minėtas forumo pranešime',
+ 'mention-notification-help' => 'Valdykite, kurie pranešimai siunčiami, kai naudotojas @mentions jus. Šie nustatymai yra panaikinti, jei neleidžiate grupėms siųsti pranešimų, jei naudotojas @mentions jus arba jei išjungsite pranešimus',
+ 'moderated-by' => 'Moderavo: mod on',
+ 'my-bonus-points' => 'Mano premijos taškai',
+ 'my-bookmarks' => 'Mano žymos',
+ 'my-fl-tokens' => 'Mano FL žetonai',
+ 'my-general-settings' => 'Mano bendrieji nustatymai',
+ 'my-notification' => 'Mano pranešimas',
+ 'my-notification-settings' => 'Mano pranešimo nustatymai',
+ 'my-privacy' => 'Mano privatumas',
+ 'my-privacy-settings' => 'Mano privatumo nustatymai',
+ 'my-profile' => 'Mano profilis',
+ 'my-requested' => 'Mano prašoma',
+ 'my-security' => 'Mano saugumas',
+ 'my-security-settings' => 'Mano saugos nustatymai',
+ 'my-seedboxes' => 'Mano sėkladėžės',
+ 'my-settings' => 'Mano nustatymai',
+ 'my-wishlist' => 'Mano norų sąrašas',
+ 'no-logs' => 'Šio vartotojo duomenų bazėje nėra kvietimų žurnalų!',
+ 'no-seedboxes' => 'Nėra sėklų dėžių 😔',
+ 'not-authorized' => 'Jūs neturite teisės peržiūrėti šio puslapio. Šis narys nori paslėpti kaip ninja!',
+ 'note' => 'Pastaba',
+ 'notification' => 'Pranešimas',
+ 'notification-settings' => 'Pranešimų nustatymai',
+ 'notification-from-account' => 'Gauti paskyros pranešimus iš',
+ 'notification-from-account-help' => 'Jūs gausite pranešimus tik iš sistemos, darbuotojų ir šių grupių. Jei išjungiate pranešimus, šie nustatymai yra nepakeisti',
+ 'notification-from-bon' => 'Gauti BON pranešimus iš',
+ 'notification-from-bon-help' => 'BON pranešimus gausite tik iš sistemos, darbuotojų ir šių grupių. Jei išjungiate pranešimus, šie nustatymai yra nepakeisti',
+ 'notification-from-following' => 'Gauti tolesnius naudotojo pranešimus iš',
+ 'notification-from-following-help' => 'Po šių naudotojų pranešimus gausite tik iš šių grupių. Jei išjungiate pranešimus, šie nustatymai yra nepakeisti',
+ 'notification-from-forum' => 'Gauti forumo pranešimus iš',
+ 'notification-from-forum-help' => 'Gausite pranešimus tik iš sistemos, darbuotojų ir šių grupių. Jei išjungiate pranešimus, šie nustatymai yra nepakeisti',
+ 'notification-from-subscription' => 'Gauti prenumeratos pranešimus iš',
+ 'notification-from-subscription-help' => 'Gausite pranešimus tik iš sistemos, darbuotojų ir šių grupių. Jei išjungiate pranešimus, šie nustatymai yra nepakeisti',
+ 'notification-from-torrent' => 'Gauti Torrent pranešimus iš',
+ 'notification-from-torrent-help' => 'Iš sistemos, darbuotojų ir šių grupių gausite tik torrent pranešimus. Jei išjungiate pranešimus, šie nustatymai yra nepakeisti',
+ 'notification-from-mention' => 'Gauti pranešimus „@Mention“',
+ 'notification-from-mention-help' => 'Jūs gausite tik @mention pranešimus iš sistemos, darbuotojų ir šių grupių. Jei išjungiate pranešimus, šie nustatymai yra nepakeisti',
+ 'notification-from-request' => 'Gauti užklausos pranešimus iš',
+ 'notification-from-request-help' => 'Jūs gausite pranešimus tik iš sistemos, darbuotojų ir šių grupių. Jei išjungiate pranešimus, šie nustatymai yra nepakeisti',
+ 'notifications' => 'Pranešimai',
+ 'offline' => 'Vartotojas neprisijungęs!',
+ 'online' => 'Vartotojas prisijungęs!',
+ 'options' => 'Galimybės',
+ 'other-help' => 'Valdykite kitų statistinių duomenų ir informacijos dalijimąsi grupėmis, kurioms leidžiama pasiekti jūsų profilį. Šie nustatymai yra nepakeisti, jei neleidžiate jokiai grupei pasiekti kitų statistinių duomenų ir informacijos, arba jei jūs einate į privatų asmenį',
+ 'other-privacy' => 'Kiti nustatymai',
+ 'other-privacy-online' => 'Leiskite vartotojams matyti jus interneto vartotojų bloke',
+ 'passkey' => 'PID',
+ 'passkey-warning' => 'PID yra kaip jūsų slaptažodis, turite saugoti!',
+ 'pending-achievements' => 'Laukiami pasiekimai',
+ 'per-torrent' => 'Per Torrent',
+ 'posts' => 'Žinutės',
+ 'posts-posted' => 'Forumo įrašai paskelbti',
+ 'privacy' => 'Privatumas',
+ 'privacy-settings' => 'Privatumo nustatymai',
+ 'private-info' => 'Asmeninė informacija',
+ 'private-forum-profile' => 'Dėmesio: šie nariai ir temos istorija buvo nustatyti PRIVATE!',
+ 'private-profile' => 'Dėmesio: šis profilis nustatytas PRIVATE!',
+ 'profile' => 'Profilis',
+ 'profile-desc' => 'Vartotojas: vartotojo profilis užregistruotas: title',
+ 'profile-privacy' => 'Profilio nustatymai',
+ 'profile-privacy-torrent-count' => 'Pasidalinkite savo viso atsisiuntimų, įkėlimų, sėklų ir pakrančių skaičiumi',
+ 'profile-privacy-torrent-ratio' => 'Pasidalinkite savo viso įkėlimo / atsisiuntimo duomenimis ir įrašytu santykiu',
+ 'profile-privacy-torrent-seed' => 'Pasidalinkite savo bendrą sėjimo laiką ir vidurkį',
+ 'profile-privacy-title' => 'Pasidalinkite savo asmeninio pavadinimo informacija',
+ 'profile-privacy-about' => 'Pasidalinkite savo asmenine informacija apie mane',
+ 'profile-privacy-bon-extra' => 'Pasidalinkite savo BON statistika',
+ 'profile-privacy-comment-extra' => 'Pasidalinkite savo komentarų statistika',
+ 'profile-privacy-forum-extra' => 'Pasidalinkite savo forumo statistika',
+ 'profile-privacy-request-extra' => 'Pasidalinkite savo užklausų statistika',
+ 'profile-privacy-torrent-extra' => 'Pasidalinkite savo torrent statistika',
+ 'profile-privacy-badge' => 'Pasidalinkite savo uždirbtais ženklais',
+ 'profile-privacy-achievement' => 'Pasidalykite savo naujausiais pasiekimais',
+ 'profile-privacy-follower' => 'Pasidalykite savo paskutiniais pasekėjais',
+ 'profile-privacy-warning' => 'Pasidalykite savo įspėjimais apie H&R',
+ 'profile-privacy-help' => 'Kontroliuokite, kurie statistiniai duomenys ir informacija yra jūsų profilyje. Šie nustatymai yra nepakeisti, jei neleidžiate jokiai grupei pasiekti savo profilio arba jei jūs einate į privatų',
+ 'public-info' => 'Viešoji informacija',
+ 'recent-achievements' => 'Naujausi pasiekimai',
+ 'recent-followers' => 'Naujausi sekėjai',
+ 'registration-date' => 'Registracijos data',
+ 'report' => 'Ataskaita',
+ 'request-help' => 'Valdykite konkrečių užklausų statistikos ir informacijos bendrinimą su grupėmis, kurioms leidžiama pasiekti jūsų profilį. Šie nustatymai yra nepakeisti, jei neleidžiate jokioms grupėms pasiekti prašomos susijusios statistikos ir informacijos, arba jei jūs einate į privatų asmenį',
+ 'request' => 'Prašymas',
+ 'requested' => 'Prašoma',
+ 'requests' => 'Prašymai',
+ 'request-comments' => 'Prašyti komentarų',
+ 'request-notification' => 'Prašyti pranešimų nustatymų',
+ 'request-notification-bounty' => 'Gauti pranešimą, kai prašoma torrent gauna naują bounty',
+ 'request-notification-comment' => 'Gauti pranešimą, kai prašoma torrent gauna naują komentarą',
+ 'request-notification-fill' => 'Gauti pranešimą, kai užpildytas prašomas torrent',
+ 'request-notification-fill-approve' => 'Gauti pranešimą, kai bus gautas prašomas torrent užpildymas',
+ 'request-notification-fill-reject' => 'Gauti pranešimą, kai prašomas torrent užpildymas atmetamas',
+ 'request-notification-claim' => 'Gauti pranešimą, kai prašoma torrent prašoma',
+ 'request-notification-unclaim' => 'Gauti pranešimą, kai prašoma torrent neprašoma',
+ 'request-notification-help' => 'Kontroliuoti, kurie pranešimai siunčiami dėl prašymo veiklos. Šie nustatymai yra nepakeisti, jei neleidžiate grupėms siųsti pranešimų apie užklausų veiklą arba jei išjungiate pranešimus',
+ 'request-privacy' => 'Užklausos nustatymai',
+ 'request-privacy-requested' => 'Leisti naudotojams peržiūrėti pateiktų užklausų sąrašą',
+ 'reset-passkey' => 'Atstatyti leidimo raktą (PID)',
+ 'reset-passkey-help' => 'Po to, kai iš naujo nustatysite PID, turėsite iš naujo atsisiųsti / iš naujo įkelti visus aktyvius torrentus',
+ 'reset-rss' => 'Atstatyti RSS raktą (RID)',
+ 'reset-rss-help' => 'Atstatę RID, turėsite iš naujo įkelti visus aktyvius RSS kanalus',
+ 'resurrections' => 'Prisikėlimai',
+ 'search' => 'Greita paieška pagal naudotojo vardą',
+ 'security' => 'Saugumas',
+ 'security-settings' => 'Apsaugos Nustatymai',
+ 'seedboxes' => 'Sėkladėžės',
+ 'seeds' => 'Sėklos',
+ 'send-invite' => 'Siųsti kvietimą',
+ 'sender' => 'Siuntėjas',
+ 'settings' => 'Nustatymai',
+ 'show-passkey' => 'Rodyti PID',
+ 'staff-noted' => 'Darbuotojų pažymėta sąskaita',
+ 'statistics' => 'Statistika',
+ 'subscription-notification' => 'Prenumeratos pranešimų nustatymai',
+ 'subscription-notification-forum' => 'Gaukite pranešimą, kai prenumeruojamas forumas gauna naują temą',
+ 'subscription-notification-topic' => 'Gaukite pranešimą, kai užregistruota tema gauna naują įrašą',
+ 'subscription-notification-help' => 'Valdykite, kokie pranešimai siunčiami dėl jūsų prenumeratos. Šie nustatymai yra nepakeisti, jei neleidžiate grupėms siųsti pranešimų apie savo prenumeratą arba jei išjungiate pranešimus',
+ 'thanks-given' => 'Dėkojame',
+ 'thanks-received' => 'Ačiū Gauta',
+ 'tips-given' => 'Patarimai pateikti',
+ 'tips-received' => 'Gauti patarimai',
+ 'title' => 'Pavadinimas',
+ 'top-bankers' => 'Į viršų bankininkai',
+ 'top-downloaders-data' => 'Populiariausi atsisiuntėjai (duomenys)',
+ 'top-leechers' => 'Į viršų Leechers',
+ 'top-leechers-count' => 'Į viršų Leechers (Count)',
+ 'top-seeders' => 'Į viršų Sėjamosios',
+ 'top-seeders-count' => 'Populiariausi sėjamieji (Count)',
+ 'top-seeding-size' => 'Geriausias sėjimas (dydis)',
+ 'top-seedtime' => 'Į viršų Seedtime',
+ 'top-uploaders-data' => 'Populiariausi įkėlėjai (duomenys)',
+ 'top-uploaders-count' => 'Populiariausi įkėlėjai (skaičius)',
+ 'topics' => 'Temos',
+ 'topics-started' => 'Pradėtos forumo temos',
+ 'torrent-comments' => 'Torrent komentarai',
+ 'torrent-help' => 'Kontroliuokite konkrečių su torrent susijusių statistinių duomenų ir informacijos pasidalijimą su grupėmis, kurioms leidžiama pasiekti jūsų profilį. Šie parametrai yra svarbesni, jei neleidžia jokios grupės prieiti prie jūsų torrent susiję statistinius duomenis ir informaciją, arba jei Eiti Privati',
+ 'torrent-notification' => 'Torrent pranešimų nustatymai',
+ 'torrent-notification-comment' => 'Gaukite pranešimą, kai įkelta torrent gauna naują komentarą',
+ 'torrent-notification-thank' => 'Gauti pranešimą, kai įkelta torrent gauna naują dėką',
+ 'torrent-notification-tip' => 'Gaukite pranešimą, kai įkeltas torrent gauna naują patarimą',
+ 'torrent-notification-help' => 'Kontroliuoti, kurie pranešimai siunčiami apie torrent veiklą. Šie nustatymai yra nepakeisti, jei neleidžiate grupėms siųsti pranešimų apie torrent veiklą arba jei išjungiate pranešimus',
+ 'torrent-privacy' => 'Torrent nustatymai',
+ 'torrent-privacy-download' => 'Leisti naudotojams peržiūrėti atsisiuntimų sąrašą',
+ 'torrent-privacy-upload' => 'Leiskite naudotojams peržiūrėti siųstų torrentų sąrašą',
+ 'torrent-privacy-peer' => 'Leiskite vartotojams matyti jus „torrent“ bendraamžių istorijos lentelėje',
+ 'torrents' => 'Torrents',
+ 'torrents-history' => 'Torrents istorija',
+ 'total-download' => 'Visas atsisiuntimas',
+ 'total-downloads' => 'Iš viso atsisiuntimų',
+ 'total-leeching' => 'Iš viso Leeching',
+ 'total-seeding' => 'Iš viso sėklų',
+ 'total-seedtime' => 'Iš viso Seedtime',
+ 'total-upload' => 'Bendras įkėlimas',
+ 'total-uploads' => 'Iš viso įkėlimų',
+ 'unban' => 'Unban Vartotojas',
+ 'unfollow' => 'Atšaukti',
+ 'unlocked' => 'Atrakinta',
+ 'unlocked-achievements' => 'Atrakinti pasiekimai',
+ 'unsatisfieds' => 'Nepatenkinti',
+ 'upload-bon' => 'Įkelta pridėta iš BON parduotuvės',
+ 'upload-recorded' => 'Įrašytas įkėlimas',
+ 'upload-true' => 'Tikrasis įkėlimas',
+ 'uploads' => 'Įkėlimai',
+ 'uploads-table' => 'Įkėlimo lentelė',
+ 'user' => 'Vartotojas',
+ 'user-id' => 'Vartotojo ID',
+ 'username-seedbox' => 'Vartotojo vardas Seedbox',
+ 'visible-to-achievement' => 'Pasiekimai matomi',
+ 'visible-to-achievement-help' => 'Jūsų pasiekimai bus matomi tik darbuotojams ir šioms grupėms. Jei einate į privatų režimą, šie nustatymai bus panaikinti',
+ 'visible-to-follower' => 'Stebėtojai matomi',
+ 'visible-to-follower-help' => 'Jūsų pasekėjai bus matomi tik darbuotojams ir šioms grupėms. Jei einate į privatų režimą, šie nustatymai bus panaikinti',
+ 'visible-to-forum' => 'Forumo informacija matoma',
+ 'visible-to-forum-help' => 'Jūsų forumo informacija bus matoma tik darbuotojams ir šioms grupėms. Jei einate į privatų režimą, šie nustatymai bus panaikinti',
+ 'visible-to-other' => 'Kita matoma',
+ 'visible-to-other-help' => 'Kita informacija apie jūsų sąskaitą bus matoma tik darbuotojams ir šioms grupėms. Šie nustatymai yra ignoruojami, jei jūs einate į privatų arba paslėpsite',
+ 'visible-to-profile' => 'Profilis matomas',
+ 'visible-to-profile-help' => 'Jūsų profilis bus matomas tik darbuotojams ir šioms grupėms. Jei einate į privatų režimą, šie nustatymai bus panaikinti',
+ 'visible-to-request' => 'Prašyti informacijos matoma',
+ 'visible-to-request-help' => 'Jūsų užklausos informacija bus matoma tik darbuotojams ir šioms grupėms. Jei einate į privatų režimą, šie nustatymai bus panaikinti',
+ 'visible-to-torrent' => 'Torrent informacija matoma',
+ 'visible-to-torrent-help' => 'Jūsų torrent informacija bus matoma tik darbuotojams ir šioms grupėms. Šie nustatymai yra ignoruojami, jei jūs einate į privatų arba paslėpsite',
+ 'warned-on' => 'Įspėjama',
+ 'warning' => 'Įspėjimas',
+ 'warning-log' => 'Įspėjimo žurnalas',
+ 'wishlist' => 'Pageidavimų sąrašas',
];
diff --git a/lang/lt/validation.php b/lang/lt/validation.php
index 392b77ad8..c9e066f01 100644
--- a/lang/lt/validation.php
+++ b/lang/lt/validation.php
@@ -22,108 +22,108 @@ return [
| tokių kaip dydžio taisyklės. Galite laisvai pataisyti bet kuriuos pranešimus.
|
*/
- 'accepted' => 'Laukas :attribute turi būti priimtas.',
- 'active_url' => 'Laukas :attribute nėra galiojantis internetinis adresas.',
- 'after' => 'Lauko :attribute reikšmė turi būti po :date datos.',
- 'after_or_equal' => 'Lauko :attribute reikšmė privalo būti data lygi arba vėlesnė negu :date.',
- 'alpha' => 'Laukas :attribute gali turėti tik raides.',
- 'alpha_dash' => 'Laukas :attribute gali turėti tik raides, skaičius ir brūkšnelius.',
- 'alpha_num' => 'Laukas :attribute gali turėti tik raides ir skaičius.',
- 'array' => 'Laukas :attribute turi būti masyvas.',
- 'before' => 'Laukas :attribute turi būti data prieš :date.',
- 'before_or_equal' => 'Lauko :attribute reikšmė privalo būti data lygi arba ankstesnė negu :date.',
- 'between' => [
+ 'accepted' => 'Laukas :attribute turi būti priimtas.',
+ 'active_url' => 'Laukas :attribute nėra galiojantis internetinis adresas.',
+ 'after' => 'Lauko :attribute reikšmė turi būti po :date datos.',
+ 'after_or_equal' => 'Lauko :attribute reikšmė privalo būti data lygi arba vėlesnė negu :date.',
+ 'alpha' => 'Laukas :attribute gali turėti tik raides.',
+ 'alpha_dash' => 'Laukas :attribute gali turėti tik raides, skaičius ir brūkšnelius.',
+ 'alpha_num' => 'Laukas :attribute gali turėti tik raides ir skaičius.',
+ 'array' => 'Laukas :attribute turi būti masyvas.',
+ 'before' => 'Laukas :attribute turi būti data prieš :date.',
+ 'before_or_equal' => 'Lauko :attribute reikšmė privalo būti data lygi arba ankstesnė negu :date.',
+ 'between' => [
'numeric' => 'Lauko :attribute reikšmė turi būti tarp :min ir :max.',
- 'file' => 'Failo dydis lauke :attribute turi būti tarp :min ir :max kilobaitų.',
- 'string' => 'Simbolių skaičius lauke :attribute turi būti tarp :min ir :max.',
- 'array' => 'Elementų skaičius lauke :attribute turi turėti nuo :min iki :max.',
+ 'file' => 'Failo dydis lauke :attribute turi būti tarp :min ir :max kilobaitų.',
+ 'string' => 'Simbolių skaičius lauke :attribute turi būti tarp :min ir :max.',
+ 'array' => 'Elementų skaičius lauke :attribute turi turėti nuo :min iki :max.',
],
- 'boolean' => "Lauko reikšmė :attribute turi būti 'taip' arba 'ne'.",
- 'confirmed' => 'Lauko :attribute patvirtinimas nesutampa.',
- 'date' => 'Lauko :attribute reikšmė nėra galiojanti data.',
- 'date_equals' => 'Lauko :attribute reikšmė turi būti data lygi :date.',
- 'date_format' => 'Lauko :attribute reikšmė neatitinka formato :format.',
- 'different' => 'Laukų :attribute ir :other reikšmės turi skirtis.',
- 'digits' => 'Laukas :attribute turi būti sudarytas iš :digits skaitmenų.',
- 'digits_between' => 'Laukas :attribute tuti turėti nuo :min iki :max skaitmenų.',
- 'dimensions' => 'Lauke :attribute įkeltas paveiksliukas neatitinka išmatavimų reikalavimo.',
- 'distinct' => 'Laukas :attribute pasikartoja.',
- 'email' => 'Lauko :attribute reikšmė turi būti galiojantis el. pašto adresas.',
- 'file' => 'The :attribute must be a file.',
- 'filled' => 'Laukas :attribute turi būti užpildytas.',
- 'exists' => 'Pasirinkta negaliojanti :attribute reikšmė.',
- 'gt' => [
+ 'boolean' => "Lauko reikšmė :attribute turi būti 'taip' arba 'ne'.",
+ 'confirmed' => 'Lauko :attribute patvirtinimas nesutampa.',
+ 'date' => 'Lauko :attribute reikšmė nėra galiojanti data.',
+ 'date_equals' => 'Lauko :attribute reikšmė turi būti data lygi :date.',
+ 'date_format' => 'Lauko :attribute reikšmė neatitinka formato :format.',
+ 'different' => 'Laukų :attribute ir :other reikšmės turi skirtis.',
+ 'digits' => 'Laukas :attribute turi būti sudarytas iš :digits skaitmenų.',
+ 'digits_between' => 'Laukas :attribute tuti turėti nuo :min iki :max skaitmenų.',
+ 'dimensions' => 'Lauke :attribute įkeltas paveiksliukas neatitinka išmatavimų reikalavimo.',
+ 'distinct' => 'Laukas :attribute pasikartoja.',
+ 'email' => 'Lauko :attribute reikšmė turi būti galiojantis el. pašto adresas.',
+ 'file' => 'The :attribute must be a file.',
+ 'filled' => 'Laukas :attribute turi būti užpildytas.',
+ 'exists' => 'Pasirinkta negaliojanti :attribute reikšmė.',
+ 'gt' => [
'numeric' => 'Lauko :attribute reikšmė turi būti didesnė negu :value.',
- 'file' => 'Lauko :attribute reikšmė turi būti didesnė negu :value kilobaitai.',
- 'string' => 'Lauko :attribute reikšmė turi būti didesnė negu :value simboliai.',
- 'array' => 'Laukas :attribute turi turėti daugiau nei :value elementus.',
+ 'file' => 'Lauko :attribute reikšmė turi būti didesnė negu :value kilobaitai.',
+ 'string' => 'Lauko :attribute reikšmė turi būti didesnė negu :value simboliai.',
+ 'array' => 'Laukas :attribute turi turėti daugiau nei :value elementus.',
],
- 'gte' => [
+ 'gte' => [
'numeric' => 'Lauko :attribute reikšmė turi būti didesnė arba lygi :value.',
- 'file' => 'Lauko :attribute reikšmė turi būti didesnė arba lygi :value kilobaitams.',
- 'string' => 'Lauko :attribute reikšmė turi būti didesnė arba lygi :value simboliams.',
- 'array' => 'Laukas :attribute turi turėti :value elementus arba daugiau.',
+ 'file' => 'Lauko :attribute reikšmė turi būti didesnė arba lygi :value kilobaitams.',
+ 'string' => 'Lauko :attribute reikšmė turi būti didesnė arba lygi :value simboliams.',
+ 'array' => 'Laukas :attribute turi turėti :value elementus arba daugiau.',
],
- 'image' => 'Lauko :attribute reikšmė turi būti paveikslėlis.',
- 'in' => 'Pasirinkta negaliojanti :attribute reikšmė.',
- 'in_array' => 'Laukas :attribute neegzistuoja :other lauke.',
- 'integer' => 'Lauko :attribute reikšmė turi būti sveikasis skaičius.',
- 'ip' => 'Lauko :attribute reikšmė turi būti galiojantis IP adresas.',
- 'ipv4' => 'Lauko :attribute reikšmė turi būti galiojantis IPv4 adresas.',
- 'ipv6' => 'Lauko :attribute reikšmė turi būti galiojantis IPv6 adresas.',
- 'json' => 'Lauko :attribute reikšmė turi būti JSON tekstas.',
- 'lt' => [
+ 'image' => 'Lauko :attribute reikšmė turi būti paveikslėlis.',
+ 'in' => 'Pasirinkta negaliojanti :attribute reikšmė.',
+ 'in_array' => 'Laukas :attribute neegzistuoja :other lauke.',
+ 'integer' => 'Lauko :attribute reikšmė turi būti sveikasis skaičius.',
+ 'ip' => 'Lauko :attribute reikšmė turi būti galiojantis IP adresas.',
+ 'ipv4' => 'Lauko :attribute reikšmė turi būti galiojantis IPv4 adresas.',
+ 'ipv6' => 'Lauko :attribute reikšmė turi būti galiojantis IPv6 adresas.',
+ 'json' => 'Lauko :attribute reikšmė turi būti JSON tekstas.',
+ 'lt' => [
'numeric' => 'Lauko :attribute reikšmė turi būti mažesnė negu :value.',
- 'file' => 'Lauko :attribute reikšmė turi būti mažesnė negu :value kilobaitai.',
- 'string' => 'Lauko :attribute reikšmė turi būti mažesnė negu :value simboliai.',
- 'array' => 'Laukas :attribute turi turėti mažiau negu :value elementus.',
+ 'file' => 'Lauko :attribute reikšmė turi būti mažesnė negu :value kilobaitai.',
+ 'string' => 'Lauko :attribute reikšmė turi būti mažesnė negu :value simboliai.',
+ 'array' => 'Laukas :attribute turi turėti mažiau negu :value elementus.',
],
- 'lte' => [
+ 'lte' => [
'numeric' => 'Lauko :attribute reikšmė turi būti mažesnė arba lygi :value.',
- 'file' => 'Lauko :attribute reikšmė turi būti mažesnė arba lygi :value kilobaitams.',
- 'string' => 'Lauko :attribute reikšmė turi būti mažesnė arba lygi :value simboliams.',
- 'array' => 'Laukas :attribute turi turėti mažiau arba lygiai :value elementus.',
+ 'file' => 'Lauko :attribute reikšmė turi būti mažesnė arba lygi :value kilobaitams.',
+ 'string' => 'Lauko :attribute reikšmė turi būti mažesnė arba lygi :value simboliams.',
+ 'array' => 'Laukas :attribute turi turėti mažiau arba lygiai :value elementus.',
],
- 'max' => [
+ 'max' => [
'numeric' => 'Lauko :attribute reikšmė negali būti didesnė nei :max.',
- 'file' => 'Failo dydis lauke :attribute reikšmė negali būti didesnė nei :max kilobaitų.',
- 'string' => 'Simbolių kiekis lauke :attribute reikšmė negali būti didesnė nei :max simbolių.',
- 'array' => 'Elementų kiekis lauke :attribute negali turėti daugiau nei :max elementų.',
+ 'file' => 'Failo dydis lauke :attribute reikšmė negali būti didesnė nei :max kilobaitų.',
+ 'string' => 'Simbolių kiekis lauke :attribute reikšmė negali būti didesnė nei :max simbolių.',
+ 'array' => 'Elementų kiekis lauke :attribute negali turėti daugiau nei :max elementų.',
],
- 'mimes' => 'Lauko reikšmė :attribute turi būti failas vieno iš sekančių tipų: :values.',
- 'mimetypes' => 'Lauko reikšmė :attribute turi būti failas vieno iš sekančių tipų: :values.',
- 'min' => [
+ 'mimes' => 'Lauko reikšmė :attribute turi būti failas vieno iš sekančių tipų: :values.',
+ 'mimetypes' => 'Lauko reikšmė :attribute turi būti failas vieno iš sekančių tipų: :values.',
+ 'min' => [
'numeric' => 'Lauko :attribute reikšmė turi būti ne mažesnė nei :min.',
- 'file' => 'Failo dydis lauke :attribute turi būti ne mažesnis nei :min kilobaitų.',
- 'string' => 'Simbolių kiekis lauke :attribute turi būti ne mažiau nei :min.',
- 'array' => 'Elementų kiekis lauke :attribute turi būti ne mažiau nei :min.',
+ 'file' => 'Failo dydis lauke :attribute turi būti ne mažesnis nei :min kilobaitų.',
+ 'string' => 'Simbolių kiekis lauke :attribute turi būti ne mažiau nei :min.',
+ 'array' => 'Elementų kiekis lauke :attribute turi būti ne mažiau nei :min.',
],
- 'not_in' => 'Pasirinkta negaliojanti reikšmė :attribute.',
- 'not_regex' => 'Lauko :attribute formatas yra neteisingas.',
- 'numeric' => 'Lauko :attribute reikšmė turi būti skaičius.',
- 'present' => 'Laukas :attribute turi egzistuoti.',
- 'regex' => 'Negaliojantis lauko :attribute formatas.',
- 'required' => 'Privaloma užpildyti lauką :attribute.',
- 'required_if' => 'Privaloma užpildyti lauką :attribute kai :other yra :value.',
- 'required_unless' => 'Laukas :attribute yra privalomas, nebent :other yra tarp :values reikšmių.',
- 'required_with' => 'Privaloma užpildyti lauką :attribute kai pateikta :values.',
- 'required_with_all' => 'Privaloma užpildyti lauką :attribute kai pateikta :values.',
- 'required_without' => 'Privaloma užpildyti lauką :attribute kai nepateikta :values.',
+ 'not_in' => 'Pasirinkta negaliojanti reikšmė :attribute.',
+ 'not_regex' => 'Lauko :attribute formatas yra neteisingas.',
+ 'numeric' => 'Lauko :attribute reikšmė turi būti skaičius.',
+ 'present' => 'Laukas :attribute turi egzistuoti.',
+ 'regex' => 'Negaliojantis lauko :attribute formatas.',
+ 'required' => 'Privaloma užpildyti lauką :attribute.',
+ 'required_if' => 'Privaloma užpildyti lauką :attribute kai :other yra :value.',
+ 'required_unless' => 'Laukas :attribute yra privalomas, nebent :other yra tarp :values reikšmių.',
+ 'required_with' => 'Privaloma užpildyti lauką :attribute kai pateikta :values.',
+ 'required_with_all' => 'Privaloma užpildyti lauką :attribute kai pateikta :values.',
+ 'required_without' => 'Privaloma užpildyti lauką :attribute kai nepateikta :values.',
'required_without_all' => 'Privaloma užpildyti lauką :attribute kai nepateikta nei viena iš reikšmių :values.',
- 'same' => 'Laukai :attribute ir :other turi sutapti.',
- 'size' => [
+ 'same' => 'Laukai :attribute ir :other turi sutapti.',
+ 'size' => [
'numeric' => 'Lauko :attribute reikšmė turi būti :size.',
- 'file' => 'Failo dydis lauke :attribute turi būti :size kilobaitai.',
- 'string' => 'Simbolių skaičius lauke :attribute turi būti :size.',
- 'array' => 'Elementų kiekis lauke :attribute turi būti :size.',
+ 'file' => 'Failo dydis lauke :attribute turi būti :size kilobaitai.',
+ 'string' => 'Simbolių skaičius lauke :attribute turi būti :size.',
+ 'array' => 'Elementų kiekis lauke :attribute turi būti :size.',
],
- 'starts_with' => 'Laukas :attribute turi prasidėti vienu iš: :values',
- 'string' => 'Laukas :attribute turi būti tekstinis.',
- 'timezone' => 'Lauko :attribute reikšmė turi būti galiojanti laiko zona.',
- 'unique' => 'Tokia :attribute reikšmė jau pasirinkta.',
- 'uploaded' => 'Nepavyko įkelti :attribute lauko.',
- 'url' => 'Negaliojantis lauko :attribute formatas.',
- 'uuid' => 'Lauko :attribute reikšmė turi būti galiojantis UUID.',
+ 'starts_with' => 'Laukas :attribute turi prasidėti vienu iš: :values',
+ 'string' => 'Laukas :attribute turi būti tekstinis.',
+ 'timezone' => 'Lauko :attribute reikšmė turi būti galiojanti laiko zona.',
+ 'unique' => 'Tokia :attribute reikšmė jau pasirinkta.',
+ 'uploaded' => 'Nepavyko įkelti :attribute lauko.',
+ 'url' => 'Negaliojantis lauko :attribute formatas.',
+ 'uuid' => 'Lauko :attribute reikšmė turi būti galiojantis UUID.',
/*
|--------------------------------------------------------------------------
| Pasirinktiniai patvirtinimo kalbos eilutės
diff --git a/lang/lv/articles.php b/lang/lv/articles.php
index 31f6fe874..8f8b6a662 100644
--- a/lang/lv/articles.php
+++ b/lang/lv/articles.php
@@ -12,8 +12,8 @@
*/
return [
- 'articles' => 'Raksti',
+ 'articles' => 'Raksti',
'meta-articles' => 'Raksti un ziņas par tracker un sabiedrību',
- 'published-at' => 'Publicēts',
- 'read-more' => 'Lasīt vairāk',
+ 'published-at' => 'Publicēts',
+ 'read-more' => 'Lasīt vairāk',
];
diff --git a/lang/lv/auth.php b/lang/lv/auth.php
index 7a05031ef..20e678a0d 100644
--- a/lang/lv/auth.php
+++ b/lang/lv/auth.php
@@ -23,6 +23,6 @@ return [
|
*/
- 'failed' => 'Šie dati neatbilst mūsu reģistram.',
+ 'failed' => 'Šie dati neatbilst mūsu reģistram.',
'throttle' => 'Pārāk daudz pieteikšanās mēģinājumu. Lūdzu mēģiniet vēlreiz pēc :seconds sekundēm.',
];
diff --git a/lang/lv/backup.php b/lang/lv/backup.php
index 5230e4085..e7549ca1c 100644
--- a/lang/lv/backup.php
+++ b/lang/lv/backup.php
@@ -12,32 +12,32 @@
*/
return [
- 'actions' => 'Darbības',
- 'backup' => 'Dublēšana',
- 'backup_doesnt_exist' => 'Dublējuma fails neeksistē.',
- 'create_a_new_backup' => 'Izveidot pilnu dublējumu',
- 'create_a_new_files_backup' => 'Izveidojiet failu dublējumu',
- 'create_a_new_db_backup' => 'Izveidot datu bāzes dublējumu',
- 'create_confirmation_message' => 'Lapas atkārtota ielāde 3 sekunžu laikā.',
- 'create_confirmation_title' => 'Dublējums pabeigts',
- 'create_error_message' => 'Backup failu nevarēja izveidot.',
- 'create_error_title' => 'Dublēšanas kļūda',
- 'create_warning_message' => 'Jūsu dublējums var nebūt izveidots. Lūdzu, pārbaudiet loga failus, lai iegūtu sīkāku informāciju.',
- 'create_warning_title' => 'Nezināma kļūda',
- 'date' => 'Datums',
- 'delete' => 'Dzēst',
- 'delete_cancel_message' => 'Dublējuma fails NAV izdzēsts.',
- 'delete_cancel_title' => 'Ir labi',
- 'delete_confirm' => 'Vai esat pārliecināts, ka vēlaties dzēst šo dublējuma failu?',
- 'delete_confirmation_message' => 'Dublējuma fails tika dzēsts.',
- 'delete_confirmation_title' => 'Gatavs',
- 'delete_error_message' => 'Dublējuma fails NAV izdzēsts.',
- 'delete_error_title' => 'Kļūda',
- 'download' => 'Lejupielādēt',
- 'existing_backups' => 'Esošie dublējumi',
- 'file_size' => 'Faila lielums',
- 'location' => 'Atrašanās vieta',
- 'manager' => 'Vadītājs',
- 'no_disks_configured' => 'Konfigurācijā config / backup.php nav konfigurēti diski',
+ 'actions' => 'Darbības',
+ 'backup' => 'Dublēšana',
+ 'backup_doesnt_exist' => 'Dublējuma fails neeksistē.',
+ 'create_a_new_backup' => 'Izveidot pilnu dublējumu',
+ 'create_a_new_files_backup' => 'Izveidojiet failu dublējumu',
+ 'create_a_new_db_backup' => 'Izveidot datu bāzes dublējumu',
+ 'create_confirmation_message' => 'Lapas atkārtota ielāde 3 sekunžu laikā.',
+ 'create_confirmation_title' => 'Dublējums pabeigts',
+ 'create_error_message' => 'Backup failu nevarēja izveidot.',
+ 'create_error_title' => 'Dublēšanas kļūda',
+ 'create_warning_message' => 'Jūsu dublējums var nebūt izveidots. Lūdzu, pārbaudiet loga failus, lai iegūtu sīkāku informāciju.',
+ 'create_warning_title' => 'Nezināma kļūda',
+ 'date' => 'Datums',
+ 'delete' => 'Dzēst',
+ 'delete_cancel_message' => 'Dublējuma fails NAV izdzēsts.',
+ 'delete_cancel_title' => 'Ir labi',
+ 'delete_confirm' => 'Vai esat pārliecināts, ka vēlaties dzēst šo dublējuma failu?',
+ 'delete_confirmation_message' => 'Dublējuma fails tika dzēsts.',
+ 'delete_confirmation_title' => 'Gatavs',
+ 'delete_error_message' => 'Dublējuma fails NAV izdzēsts.',
+ 'delete_error_title' => 'Kļūda',
+ 'download' => 'Lejupielādēt',
+ 'existing_backups' => 'Esošie dublējumi',
+ 'file_size' => 'Faila lielums',
+ 'location' => 'Atrašanās vieta',
+ 'manager' => 'Vadītājs',
+ 'no_disks_configured' => 'Konfigurācijā config / backup.php nav konfigurēti diski',
'only_local_downloads_supported' => 'Tiek atbalstītas tikai lejupielādes no lokālās failu sistēmas.',
];
diff --git a/lang/lv/blocks.php b/lang/lv/blocks.php
index bb26dfd7c..2f63b7012 100644
--- a/lang/lv/blocks.php
+++ b/lang/lv/blocks.php
@@ -12,19 +12,19 @@
*/
return [
- 'chatbox' => 'Tērzēšanas lodziņš',
- 'click' => 'Klikšķis',
- 'to-enable-editor' => 'lai iespējotu redaktoru',
- 'featured-by' => 'Piedāvā',
- 'featured-torrents' => 'Featured torrents',
+ 'chatbox' => 'Tērzēšanas lodziņš',
+ 'click' => 'Klikšķis',
+ 'to-enable-editor' => 'lai iespējotu redaktoru',
+ 'featured-by' => 'Piedāvā',
+ 'featured-torrents' => 'Featured torrents',
'featured-torrents-intro' => 'Get Them, kamēr jūs varat!',
- 'featured-until' => 'Tas ir redzams torrent līdz',
- 'top-torrents' => 'Populārākie torrenti',
- 'latest-posts' => 'Jaunākās ziņas',
- 'latest-topics' => 'Jaunākās tēmas',
- 'active-in-last' => 'Aktīvs pēdējo reizi',
- 'users-online' => 'Lietotāji tiešsaistē',
- 'check-news' => 'Jaunumi (pārbaudiet katru dienu)',
- 'new-news' => 'Jaunas ziņas',
- 'new-torrents' => 'Jaunas straumēm',
+ 'featured-until' => 'Tas ir redzams torrent līdz',
+ 'top-torrents' => 'Populārākie torrenti',
+ 'latest-posts' => 'Jaunākās ziņas',
+ 'latest-topics' => 'Jaunākās tēmas',
+ 'active-in-last' => 'Aktīvs pēdējo reizi',
+ 'users-online' => 'Lietotāji tiešsaistē',
+ 'check-news' => 'Jaunumi (pārbaudiet katru dienu)',
+ 'new-news' => 'Jaunas ziņas',
+ 'new-torrents' => 'Jaunas straumēm',
];
diff --git a/lang/lv/bon.php b/lang/lv/bon.php
index 6293acc59..016ae1b1f 100644
--- a/lang/lv/bon.php
+++ b/lang/lv/bon.php
@@ -12,44 +12,44 @@
*/
return [
- 'activated' => 'Aktivizēts',
- 'active' => 'Aktivizēts!',
- 'amount' => 'Summa',
- 'bon' => 'BON',
- 'bonus' => 'Bonuss',
- 'date' => 'Datums',
- 'earning' => 'Nopelnīt',
- 'earning-rate' => 'Šādā peļņas likmē jūs nopelnīsiet sekojošu laika periodu.',
- 'earnings' => 'Ieņēmumi',
- 'exchange' => 'Apmaiņa',
- 'exchange-warning' => 'Apmaiņas ir galīgas, pirms apmaiņas veikšanas pārbaudiet savas izvēles.',
- 'extended-stats' => 'Paplašinātā statistika',
- 'gift' => 'Dāvana',
- 'gift-bonus' => 'Dāvanu bonusa punkti',
- 'gift-to' => 'Dāvanu bonusa punkti',
- 'gifts' => 'Dāvanas',
- 'item' => 'Vienums',
- 'no-refund' => 'NĒ ATMAKSU!',
- 'per-day' => 'Punkti dienā',
- 'per-hour' => 'Punkti stundā',
- 'per-minute' => 'Punkti minūtē',
- 'per-month' => 'Punkti mēnesī',
- 'per-second' => 'Punkti sekundē',
- 'per-week' => 'Punkti nedēļā',
- 'per-year' => 'Punkti gadā',
- 'points' => 'Punkti',
- 'receiver' => 'Uztvērējs',
- 'review-seeds' => 'Pārskatiet visas sēklas',
- 'send-gift' => 'Sūtīt dāvanu',
- 'sender' => 'Sūtītājs',
- 'store' => 'Veikals',
- 'tips' => 'Padomi',
- 'total' => 'Kopējie ienākumi',
- 'total-gifts' => 'Kopā BON dāvanas',
- 'total-tips' => 'Kopā BON padomi',
+ 'activated' => 'Aktivizēts',
+ 'active' => 'Aktivizēts!',
+ 'amount' => 'Summa',
+ 'bon' => 'BON',
+ 'bonus' => 'Bonuss',
+ 'date' => 'Datums',
+ 'earning' => 'Nopelnīt',
+ 'earning-rate' => 'Šādā peļņas likmē jūs nopelnīsiet sekojošu laika periodu.',
+ 'earnings' => 'Ieņēmumi',
+ 'exchange' => 'Apmaiņa',
+ 'exchange-warning' => 'Apmaiņas ir galīgas, pirms apmaiņas veikšanas pārbaudiet savas izvēles.',
+ 'extended-stats' => 'Paplašinātā statistika',
+ 'gift' => 'Dāvana',
+ 'gift-bonus' => 'Dāvanu bonusa punkti',
+ 'gift-to' => 'Dāvanu bonusa punkti',
+ 'gifts' => 'Dāvanas',
+ 'item' => 'Vienums',
+ 'no-refund' => 'NĒ ATMAKSU!',
+ 'per-day' => 'Punkti dienā',
+ 'per-hour' => 'Punkti stundā',
+ 'per-minute' => 'Punkti minūtē',
+ 'per-month' => 'Punkti mēnesī',
+ 'per-second' => 'Punkti sekundē',
+ 'per-week' => 'Punkti nedēļā',
+ 'per-year' => 'Punkti gadā',
+ 'points' => 'Punkti',
+ 'receiver' => 'Uztvērējs',
+ 'review-seeds' => 'Pārskatiet visas sēklas',
+ 'send-gift' => 'Sūtīt dāvanu',
+ 'sender' => 'Sūtītājs',
+ 'store' => 'Veikals',
+ 'tips' => 'Padomi',
+ 'total' => 'Kopējie ienākumi',
+ 'total-gifts' => 'Kopā BON dāvanas',
+ 'total-tips' => 'Kopā BON padomi',
'you-have-received-gifts' => 'Jūs esat saņēmis',
- 'you-have-sent-gifts' => 'Jums ir nosūtīti',
- 'you-have-received-tips' => 'Jūs esat saņēmis',
- 'you-have-sent-tips' => 'Jums ir nosūtīti',
- 'your-points' => 'Jūsu punkti',
+ 'you-have-sent-gifts' => 'Jums ir nosūtīti',
+ 'you-have-received-tips' => 'Jūs esat saņēmis',
+ 'you-have-sent-tips' => 'Jums ir nosūtīti',
+ 'your-points' => 'Jūsu punkti',
];
diff --git a/lang/lv/bot.php b/lang/lv/bot.php
index 038b37f5d..5450db42a 100644
--- a/lang/lv/bot.php
+++ b/lang/lv/bot.php
@@ -12,15 +12,15 @@
*/
return [
- 'about' => 'Par',
- 'bot' => 'Bot',
- 'bots' => 'Boti',
- 'color' => 'Krāsa',
- 'command' => 'Komanda',
- 'edit-bot' => 'Rediģēt Bot',
+ 'about' => 'Par',
+ 'bot' => 'Bot',
+ 'bots' => 'Boti',
+ 'color' => 'Krāsa',
+ 'command' => 'Komanda',
+ 'edit-bot' => 'Rediģēt Bot',
'emoji-code' => 'Emociju kods',
- 'help' => 'Palīdzība',
- 'icon' => 'Ikona',
- 'info' => 'Informācija',
- 'name' => 'Nosaukums',
+ 'help' => 'Palīdzība',
+ 'icon' => 'Ikona',
+ 'info' => 'Informācija',
+ 'name' => 'Nosaukums',
];
diff --git a/lang/lv/bug.php b/lang/lv/bug.php
index 8895bcc1e..3d8ae1aab 100644
--- a/lang/lv/bug.php
+++ b/lang/lv/bug.php
@@ -12,15 +12,15 @@
*/
return [
- 'bug-report' => 'Kļūdu ziņojums',
+ 'bug-report' => 'Kļūdu ziņojums',
'bug-report-description' => 'Ziņojiet par vietnes kļūdu',
- 'enter-description' => 'Aprakstiet problēmu pēc iespējas labāk',
- 'enter-email' => 'Lūdzu, ievadiet savu e-pastu',
- 'enter-title' => 'Lūdzu, izvēlieties pareizu nosaukumu',
- 'enter-username' => 'Lūdzu, ievadiet savu lietotājvārdu',
- 'high' => 'Augsts',
- 'low' => 'Zems',
- 'priority' => 'Prioritāte',
- 'priority-description' => 'Izvēlieties tikai ļoti augstu, ja kļūda tiešām ir problēma vietnes izmantošanā.',
- 'very-high' => 'Ļoti augstu',
+ 'enter-description' => 'Aprakstiet problēmu pēc iespējas labāk',
+ 'enter-email' => 'Lūdzu, ievadiet savu e-pastu',
+ 'enter-title' => 'Lūdzu, izvēlieties pareizu nosaukumu',
+ 'enter-username' => 'Lūdzu, ievadiet savu lietotājvārdu',
+ 'high' => 'Augsts',
+ 'low' => 'Zems',
+ 'priority' => 'Prioritāte',
+ 'priority-description' => 'Izvēlieties tikai ļoti augstu, ja kļūda tiešām ir problēma vietnes izmantošanā.',
+ 'very-high' => 'Ļoti augstu',
];
diff --git a/lang/lv/common.php b/lang/lv/common.php
index 906cbc4af..f6deeb903 100644
--- a/lang/lv/common.php
+++ b/lang/lv/common.php
@@ -12,179 +12,179 @@
*/
return [
- 'a-an-art' => '',
- 'about' => 'Par mums',
- 'account' => 'Konts',
- 'achievement-title' => 'Satriecošs',
+ 'a-an-art' => '',
+ 'about' => 'Par mums',
+ 'account' => 'Konts',
+ 'achievement-title' => 'Satriecošs',
'achievement-unlocked' => 'Jūs atbloķējāt ": name" sasniegumu',
- 'active' => 'Aktīvs',
- 'active-warning' => 'Aktīvs brīdinājums',
- 'add' => 'Pievienot',
- 'added' => 'Pievienots',
- 'amount' => 'Summa',
- 'anonymous' => 'Anonīms',
- 'author' => 'Autors',
- 'balance' => 'Bilance',
- 'blacklist' => 'Klientu melnais saraksts',
- 'buffer' => 'Buferis',
- 'bug' => 'Ziņot par kļūdu',
- 'but' => 'Bet',
- 'cancel' => 'Atcelt',
- 'category' => 'Kategorija',
- 'categories' => 'Kategorijas',
- 'close' => 'Aizvērt',
- 'comment' => 'Komentārs',
- 'comments' => 'Komentāri',
- 'community' => 'Kopiena',
- 'contact' => 'Kontakti',
- 'contact-desc' => 'Šis kontaktu pieprasījums tiks nosūtīts īpašniekam un pēc iespējas ātrāk atgriezīsies pie jums',
- 'contact-header' => 'Sveiki',
- 'create' => 'Izveidot',
- 'created_at' => 'Izveidots At',
- 'day' => 'Diena',
- 'delete' => 'Dzēst',
- 'delete-your-comment' => 'Dzēst savu komentāru',
- 'description' => 'Apraksts',
- 'direction' => 'Virziens',
- 'disable' => 'Atspējot',
- 'doubleup_activated' => 'Aktivizēts globālais dubultās augšupielādes režīms',
- 'download' => 'Lejupielādēt',
- 'edit' => 'Rediģēt',
- 'edit-your-comment' => 'Rediģējiet savu komentāru',
- 'email' => 'E-pasts',
- 'email-blacklist' => 'E-pasta melnais saraksts',
- 'email-whitelist' => 'E-pasta baltais saraksts',
+ 'active' => 'Aktīvs',
+ 'active-warning' => 'Aktīvs brīdinājums',
+ 'add' => 'Pievienot',
+ 'added' => 'Pievienots',
+ 'amount' => 'Summa',
+ 'anonymous' => 'Anonīms',
+ 'author' => 'Autors',
+ 'balance' => 'Bilance',
+ 'blacklist' => 'Klientu melnais saraksts',
+ 'buffer' => 'Buferis',
+ 'bug' => 'Ziņot par kļūdu',
+ 'but' => 'Bet',
+ 'cancel' => 'Atcelt',
+ 'category' => 'Kategorija',
+ 'categories' => 'Kategorijas',
+ 'close' => 'Aizvērt',
+ 'comment' => 'Komentārs',
+ 'comments' => 'Komentāri',
+ 'community' => 'Kopiena',
+ 'contact' => 'Kontakti',
+ 'contact-desc' => 'Šis kontaktu pieprasījums tiks nosūtīts īpašniekam un pēc iespējas ātrāk atgriezīsies pie jums',
+ 'contact-header' => 'Sveiki',
+ 'create' => 'Izveidot',
+ 'created_at' => 'Izveidots At',
+ 'day' => 'Diena',
+ 'delete' => 'Dzēst',
+ 'delete-your-comment' => 'Dzēst savu komentāru',
+ 'description' => 'Apraksts',
+ 'direction' => 'Virziens',
+ 'disable' => 'Atspējot',
+ 'doubleup_activated' => 'Aktivizēts globālais dubultās augšupielādes režīms',
+ 'download' => 'Lejupielādēt',
+ 'edit' => 'Rediģēt',
+ 'edit-your-comment' => 'Rediģējiet savu komentāru',
+ 'email' => 'E-pasts',
+ 'email-blacklist' => 'E-pasta melnais saraksts',
+ 'email-whitelist' => 'E-pasta baltais saraksts',
'email-list-notactive' => 'E-pasta balto sarakstu / melnā saraksta sistēma nav aktivizēta',
- 'enable' => 'Iespējot',
- 'enter' => 'Ievadiet',
- 'error' => 'Kļūda',
- 'everyday' => 'Katru dienu',
- 'expired' => 'Beidzies',
- 'extra' => 'Papildus',
- 'extra-stats' => 'Papildus statistika',
- 'faq' => 'Bieži uzdotie jautājumi',
- 'files' => 'Faili',
- 'fl_token' => 'Freeleech Token',
- 'fl_tokens' => 'Freeleech žetoni',
- 'for' => 'par',
- 'forum' => 'Forums',
- 'free' => 'Bezmaksas',
- 'freeleech_activated' => 'Tiek aktivizēts globālais Freeleech režīms',
- 'global' => 'Globāls',
- 'group' => 'Grupa',
- 'groups' => 'Grupas',
- 'hidden' => 'Slēpts',
- 'high-speeds' => 'Liels ātrums',
- 'home' => 'Mājas',
- 'hot' => 'Karsts!',
- 'hour' => 'Stunda',
- 'huge' => 'Milzīgs',
- 'info' => 'Informācija',
- 'internal' => 'Iekšējais',
- 'ip' => 'IP',
- 'is-allowed' => 'ir atļauts',
- 'large' => 'Liels',
- 'latest' => 'Jaunākās',
- 'latest-posts' => 'Jaunākās ziņas',
- 'latest-topics' => 'Jaunākās tēmas',
- 'legal' => 'Juridiskā',
- 'legend' => 'Leģenda',
- 'lists' => 'Saraksti',
- 'lock-account' => 'Bloķēt kontu',
- 'logout' => 'Izlogoties',
- 'members' => 'Dalībnieki',
- 'message' => 'Ziņojums',
- 'minute' => 'Minūtes',
- 'moderated-by' => 'Moderēts ar',
- 'moderation' => 'Mērenība',
- 'moderation-approve' => 'Apstiprināt',
- 'moderation-postpone' => 'Atlikt',
- 'moderation-reject' => 'Noraidīt',
- 'month' => 'Mēnesis',
- 'months' => 'Mēneši',
- 'my' => 'Mans',
- 'name' => 'Nosaukums',
- 'navigation' => 'Navigācija',
- 'new' => 'Jaunums!',
- 'new-adj' => 'Jaunums',
- 'news' => 'Ziņas',
- 'next' => 'Nākamais',
- 'no' => 'Nē',
- 'no-comments' => 'Vēl nav komentāru',
- 'no-result' => 'Datubāzē vaicājumam nav rezultātu',
- 'notifications' => 'Paziņojumi',
- 'older-than' => 'Vecāki par',
- 'oldest' => 'Vecākais',
- 'openreg_activated' => 'Atvērta reģistrācija ir aktivizēta',
- 'order-by' => 'Sakārtot pēc',
- 'other' => 'Citi',
- 'pages' => 'Lapas',
- 'password' => 'Parole',
- 'patron' => 'Kļūsti par patronu',
- 'pending-torrents' => 'Līdz gaidāmajām straumēm',
- 'personal' => 'Personisks',
- 'plural-suffix' => 's',
- 'port' => 'Osta',
- 'position' => 'Pozīcija',
- 'posts' => 'Ziņojumi',
- 'powered-by' => 'Darbojas ar UNIT3D',
- 'preview' => 'Priekšskatījums',
- 'previous' => 'Iepriekšējais',
- 'progress' => 'Progress',
- 'publish' => 'Publicēt',
- 'quantity' => 'Daudzums',
- 'quick-search' => 'Ātrā meklēšana',
- 'ratio' => 'Attiecība',
- 'reason' => 'Iemesls',
- 'remove' => 'Noņemt',
- 'report' => 'Ziņojums',
- 'resend' => 'Sūtīt vēlreiz',
- 'reporter' => 'Reportieris',
- 'required' => 'Nepieciešams',
- 'results' => 'Rezultāti',
- 'rss-system' => 'RSS sistēma',
- 'rules' => 'Noteikumi',
- 'save' => 'Saglabāt',
- 'search' => 'Meklēt',
- 'search-results' => 'Meklēšanas rezultāti',
- 'search-results-desc' => 'Lūdzu, skatiet tālāk redzamos rezultātus',
- 'second' => 'Otrkārt',
- 'select' => 'Izvēlieties',
- 'sort' => 'Kārtot',
- 'special' => 'Īpašs',
- 'staff' => 'Personāls',
- 'staff-tools' => 'Darbinieku rīki',
- 'stats' => 'Statistika',
- 'status' => 'Statuss',
- 'sticked' => 'Uzlīmēts',
- 'submit' => 'Iesniegt',
- 'subscriptions' => 'Abonementi',
- 'teams' => 'Komandas',
- 'terms' => 'Lietošanas noteikumi',
- 'times' => 'Laiki',
- 'title' => 'Nosaukums',
- 'top-bountied' => 'Augšup Bountied',
- 'topics' => 'Tēmas',
- 'tracker-codes' => 'Tracker kodi',
- 'type' => 'Tips',
- 'type-verb' => 'Tips',
- 'types' => 'Veidi',
- 'genre' => 'Žanrs',
- 'genres' => 'Žanri',
- 'action' => 'Rīcība',
- 'actions' => 'Darbības',
- 'unknown' => 'Nezināms',
+ 'enable' => 'Iespējot',
+ 'enter' => 'Ievadiet',
+ 'error' => 'Kļūda',
+ 'everyday' => 'Katru dienu',
+ 'expired' => 'Beidzies',
+ 'extra' => 'Papildus',
+ 'extra-stats' => 'Papildus statistika',
+ 'faq' => 'Bieži uzdotie jautājumi',
+ 'files' => 'Faili',
+ 'fl_token' => 'Freeleech Token',
+ 'fl_tokens' => 'Freeleech žetoni',
+ 'for' => 'par',
+ 'forum' => 'Forums',
+ 'free' => 'Bezmaksas',
+ 'freeleech_activated' => 'Tiek aktivizēts globālais Freeleech režīms',
+ 'global' => 'Globāls',
+ 'group' => 'Grupa',
+ 'groups' => 'Grupas',
+ 'hidden' => 'Slēpts',
+ 'high-speeds' => 'Liels ātrums',
+ 'home' => 'Mājas',
+ 'hot' => 'Karsts!',
+ 'hour' => 'Stunda',
+ 'huge' => 'Milzīgs',
+ 'info' => 'Informācija',
+ 'internal' => 'Iekšējais',
+ 'ip' => 'IP',
+ 'is-allowed' => 'ir atļauts',
+ 'large' => 'Liels',
+ 'latest' => 'Jaunākās',
+ 'latest-posts' => 'Jaunākās ziņas',
+ 'latest-topics' => 'Jaunākās tēmas',
+ 'legal' => 'Juridiskā',
+ 'legend' => 'Leģenda',
+ 'lists' => 'Saraksti',
+ 'lock-account' => 'Bloķēt kontu',
+ 'logout' => 'Izlogoties',
+ 'members' => 'Dalībnieki',
+ 'message' => 'Ziņojums',
+ 'minute' => 'Minūtes',
+ 'moderated-by' => 'Moderēts ar',
+ 'moderation' => 'Mērenība',
+ 'moderation-approve' => 'Apstiprināt',
+ 'moderation-postpone' => 'Atlikt',
+ 'moderation-reject' => 'Noraidīt',
+ 'month' => 'Mēnesis',
+ 'months' => 'Mēneši',
+ 'my' => 'Mans',
+ 'name' => 'Nosaukums',
+ 'navigation' => 'Navigācija',
+ 'new' => 'Jaunums!',
+ 'new-adj' => 'Jaunums',
+ 'news' => 'Ziņas',
+ 'next' => 'Nākamais',
+ 'no' => 'Nē',
+ 'no-comments' => 'Vēl nav komentāru',
+ 'no-result' => 'Datubāzē vaicājumam nav rezultātu',
+ 'notifications' => 'Paziņojumi',
+ 'older-than' => 'Vecāki par',
+ 'oldest' => 'Vecākais',
+ 'openreg_activated' => 'Atvērta reģistrācija ir aktivizēta',
+ 'order-by' => 'Sakārtot pēc',
+ 'other' => 'Citi',
+ 'pages' => 'Lapas',
+ 'password' => 'Parole',
+ 'patron' => 'Kļūsti par patronu',
+ 'pending-torrents' => 'Līdz gaidāmajām straumēm',
+ 'personal' => 'Personisks',
+ 'plural-suffix' => 's',
+ 'port' => 'Osta',
+ 'position' => 'Pozīcija',
+ 'posts' => 'Ziņojumi',
+ 'powered-by' => 'Darbojas ar UNIT3D',
+ 'preview' => 'Priekšskatījums',
+ 'previous' => 'Iepriekšējais',
+ 'progress' => 'Progress',
+ 'publish' => 'Publicēt',
+ 'quantity' => 'Daudzums',
+ 'quick-search' => 'Ātrā meklēšana',
+ 'ratio' => 'Attiecība',
+ 'reason' => 'Iemesls',
+ 'remove' => 'Noņemt',
+ 'report' => 'Ziņojums',
+ 'resend' => 'Sūtīt vēlreiz',
+ 'reporter' => 'Reportieris',
+ 'required' => 'Nepieciešams',
+ 'results' => 'Rezultāti',
+ 'rss-system' => 'RSS sistēma',
+ 'rules' => 'Noteikumi',
+ 'save' => 'Saglabāt',
+ 'search' => 'Meklēt',
+ 'search-results' => 'Meklēšanas rezultāti',
+ 'search-results-desc' => 'Lūdzu, skatiet tālāk redzamos rezultātus',
+ 'second' => 'Otrkārt',
+ 'select' => 'Izvēlieties',
+ 'sort' => 'Kārtot',
+ 'special' => 'Īpašs',
+ 'staff' => 'Personāls',
+ 'staff-tools' => 'Darbinieku rīki',
+ 'stats' => 'Statistika',
+ 'status' => 'Statuss',
+ 'sticked' => 'Uzlīmēts',
+ 'submit' => 'Iesniegt',
+ 'subscriptions' => 'Abonementi',
+ 'teams' => 'Komandas',
+ 'terms' => 'Lietošanas noteikumi',
+ 'times' => 'Laiki',
+ 'title' => 'Nosaukums',
+ 'top-bountied' => 'Augšup Bountied',
+ 'topics' => 'Tēmas',
+ 'tracker-codes' => 'Tracker kodi',
+ 'type' => 'Tips',
+ 'type-verb' => 'Tips',
+ 'types' => 'Veidi',
+ 'genre' => 'Žanrs',
+ 'genres' => 'Žanri',
+ 'action' => 'Rīcība',
+ 'actions' => 'Darbības',
+ 'unknown' => 'Nezināms',
'unlocked-achievement' => 'Jūs atbloķējāt: sasniegumu sasniegšanu',
- 'upload' => 'Augšupielādēt',
- 'upload-guide' => 'Augšupielādes ceļvedis',
- 'user' => 'Lietotājs',
- 'username' => 'Lietotājvārds',
- 'users' => 'Lietotāji',
- 'view' => 'Skatīt',
- 'view-all' => 'Apskatīt visus',
- 'warnings' => 'Brīdinājumi',
- 'year' => 'Gads',
- 'yes' => 'Jā',
- 'your' => 'Jūsu',
- 'your-comment' => 'Jūsu komentārs',
+ 'upload' => 'Augšupielādēt',
+ 'upload-guide' => 'Augšupielādes ceļvedis',
+ 'user' => 'Lietotājs',
+ 'username' => 'Lietotājvārds',
+ 'users' => 'Lietotāji',
+ 'view' => 'Skatīt',
+ 'view-all' => 'Apskatīt visus',
+ 'warnings' => 'Brīdinājumi',
+ 'year' => 'Gads',
+ 'yes' => 'Jā',
+ 'your' => 'Jūsu',
+ 'your-comment' => 'Jūsu komentārs',
];
diff --git a/lang/lv/email.php b/lang/lv/email.php
index cd55c6cab..94903b781 100644
--- a/lang/lv/email.php
+++ b/lang/lv/email.php
@@ -12,46 +12,46 @@
*/
return [
- 'activate-account' => 'Aktivizēt kontu',
- 'ban-reason' => 'Iemesls',
- 'banned-footer' => 'Tas, ko jūs saņemat, lai neievērotu noteikumus',
- 'banned-header' => 'Jūs esat aizliegts',
- 'bug-description' => 'Problēma',
- 'bug-footer' => 'Fix šo sūdi',
- 'bug-header' => 'Jauns kļūdas ziņojums no',
- 'bug-priority' => 'Prioritāte',
- 'bug-title' => 'Kļūdas nosaukums',
- 'contact-header' => 'Jauns kontaktu pasts no',
- 'contact-message' => 'Ziņojums',
- 'contact-name' => 'Nosaukums',
+ 'activate-account' => 'Aktivizēt kontu',
+ 'ban-reason' => 'Iemesls',
+ 'banned-footer' => 'Tas, ko jūs saņemat, lai neievērotu noteikumus',
+ 'banned-header' => 'Jūs esat aizliegts',
+ 'bug-description' => 'Problēma',
+ 'bug-footer' => 'Fix šo sūdi',
+ 'bug-header' => 'Jauns kļūdas ziņojums no',
+ 'bug-priority' => 'Prioritāte',
+ 'bug-title' => 'Kļūdas nosaukums',
+ 'contact-header' => 'Jauns kontaktu pasts no',
+ 'contact-message' => 'Ziņojums',
+ 'contact-name' => 'Nosaukums',
'fail-login-greeting' => 'Konta pieteikšanās neizdevās!',
- 'fail-login-line1' => 'Jūsu kontam tika konstatēts neveiksmīgs pieteikšanās.',
- 'fail-login-line2' => 'Šis pieprasījums radies: ip (: host) vietnē: time',
- 'fail-login-subject' => 'Neizdevās pieteikšanās paziņojums',
- 'footer-link' => 'Ja rodas problēmas, noklikšķinot uz pogas: actionText, kopējiet un ielīmējiet tālāk redzamo URL savā tīmekļa pārlūkprogrammā:',
- 'invite-header' => 'Uzaicinājums uz',
- 'invite-invited' => 'Jūs esat uzaicināts',
- 'invite-message' => 'Ziņojums',
- 'invite-signup' => 'Piesakies tagad',
- 'newreply-header' => 'Jūsu tēmā ir jauna atbilde',
- 'newreply-message' => 'Ziņojums',
- 'newreply-replied' => 'Atbildēja uz jūsu tēmu',
- 'newreply-view' => 'Skatīt to tagad',
- 'no-email-found' => 'Mēs nevarējām atrast šo e-pastu mūsu sistēmā!',
- 'register-code' => 'Lai pabeigtu konta aktivizēšanu, noklikšķiniet uz tālāk redzamās pogas',
- 'register-footer' => 'Ja iepriekš minētā poga nedarbojas, kopējiet un ielīmējiet URL savā pārlūkprogrammas adreses joslā',
- 'register-header' => 'Sveiki! Paldies, ka pierakstījāt',
- 'report-comment' => 'Komentārs',
- 'report-email' => 'E-pasts',
- 'report-header' => 'Hi Admin, ir ziņots par saiti',
- 'report-link' => 'Saite',
- 'report-link-hash' => 'Faktiskā saite',
- 'thanks' => 'Paldies, ka izmantojāt',
- 'unban-footer' => 'Laipni lūdzam!',
- 'unban-header' => 'Jūs esat bijis nepiederošs',
- 'unban-reason' => 'Iemesls',
- 'username-reminder' => 'Jūs nesen nosūtījāt mums pieprasījumu par lietotājvārdu mūsu lietotnē. Jūsu lietotājvārds ir',
- 'username-sent' => 'Jūsu lietotājvārds ir nosūtīts uz jūsu e-pasta adresi!',
- 'disabled-header' => 'Jūsu konts ir atspējots',
- 'pruned-header' => 'Jūsu konts ir apgriezts',
+ 'fail-login-line1' => 'Jūsu kontam tika konstatēts neveiksmīgs pieteikšanās.',
+ 'fail-login-line2' => 'Šis pieprasījums radies: ip (: host) vietnē: time',
+ 'fail-login-subject' => 'Neizdevās pieteikšanās paziņojums',
+ 'footer-link' => 'Ja rodas problēmas, noklikšķinot uz pogas: actionText, kopējiet un ielīmējiet tālāk redzamo URL savā tīmekļa pārlūkprogrammā:',
+ 'invite-header' => 'Uzaicinājums uz',
+ 'invite-invited' => 'Jūs esat uzaicināts',
+ 'invite-message' => 'Ziņojums',
+ 'invite-signup' => 'Piesakies tagad',
+ 'newreply-header' => 'Jūsu tēmā ir jauna atbilde',
+ 'newreply-message' => 'Ziņojums',
+ 'newreply-replied' => 'Atbildēja uz jūsu tēmu',
+ 'newreply-view' => 'Skatīt to tagad',
+ 'no-email-found' => 'Mēs nevarējām atrast šo e-pastu mūsu sistēmā!',
+ 'register-code' => 'Lai pabeigtu konta aktivizēšanu, noklikšķiniet uz tālāk redzamās pogas',
+ 'register-footer' => 'Ja iepriekš minētā poga nedarbojas, kopējiet un ielīmējiet URL savā pārlūkprogrammas adreses joslā',
+ 'register-header' => 'Sveiki! Paldies, ka pierakstījāt',
+ 'report-comment' => 'Komentārs',
+ 'report-email' => 'E-pasts',
+ 'report-header' => 'Hi Admin, ir ziņots par saiti',
+ 'report-link' => 'Saite',
+ 'report-link-hash' => 'Faktiskā saite',
+ 'thanks' => 'Paldies, ka izmantojāt',
+ 'unban-footer' => 'Laipni lūdzam!',
+ 'unban-header' => 'Jūs esat bijis nepiederošs',
+ 'unban-reason' => 'Iemesls',
+ 'username-reminder' => 'Jūs nesen nosūtījāt mums pieprasījumu par lietotājvārdu mūsu lietotnē. Jūsu lietotājvārds ir',
+ 'username-sent' => 'Jūsu lietotājvārds ir nosūtīts uz jūsu e-pasta adresi!',
+ 'disabled-header' => 'Jūsu konts ir atspējots',
+ 'pruned-header' => 'Jūsu konts ir apgriezts',
];
diff --git a/lang/lv/forum.php b/lang/lv/forum.php
index 732bb110b..8984b0dc8 100644
--- a/lang/lv/forum.php
+++ b/lang/lv/forum.php
@@ -12,63 +12,63 @@
*/
return [
- 'action' => 'Rīcība',
- 'activity' => 'Aktivitāte',
- 'approved' => 'Apstiprināts',
- 'author' => 'Autors',
- 'bug' => 'Bug',
- 'category-quick-search' => 'Tēmas nosaukuma ātra meklēšana (kategorijā)',
- 'close-topic' => 'Bloķēt tēmu',
- 'closed' => 'Slēgts',
- 'create-new-topic' => 'Izveidot jaunu tēmu',
- 'created' => 'Izveidots',
- 'current' => 'Pašreizējais',
- 'delete-topic' => 'Dzēst šo tēmu',
- 'denied' => 'Atteikts',
- 'dislike-post' => 'Nepatīk šis pasts',
- 'display-forum' => 'Rādīt tēmas',
- 'edit-post' => 'Rediģēt pastu',
- 'edit-topic' => 'Rediģēt tēmu',
- 'forum' => 'Forums',
- 'forums' => 'Forums',
- 'implemented' => 'Īstenots',
- 'in' => 'In',
- 'invalid' => 'Nederīgs',
- 'label' => 'Etiķete',
- 'label-system' => 'Etiķešu sistēma',
- 'last-message' => 'Pēdējais ziņojums',
- 'last-post-info' => 'Pēdējā ziņojuma informācija',
- 'latest' => 'Jaunākās',
- 'like-post' => 'Tāpat kā šis ieraksts',
- 'meta-category' => 'Kategoriju saraksts',
- 'moderation' => 'Mērenība',
- 'name' => 'Nosaukums',
- 'not-connected' => 'Jums jābūt savienotam',
- 'not-subscribed' => 'Nav abonēts',
- 'open' => 'Atvērt',
- 'open-topic' => 'Atveriet šo tēmu',
- 'permalink' => 'Permalink',
- 'pin' => 'Pin',
- 'post' => 'Post',
- 'post-quick-search' => 'Ātra meklēšana pēc virsbūves',
- 'posts' => 'Ziņojumi',
- 'quote' => 'Citāts',
- 'read-topic' => 'Lasīt tēmu',
- 'replies' => 'Atbildes',
- 'send-new-topic' => 'Saglabāt šo tēmu',
- 'solved' => 'Atrisināts',
- 'state' => 'Valsts',
- 'stats' => 'Statistika',
- 'subscribed' => 'Abonēts',
+ 'action' => 'Rīcība',
+ 'activity' => 'Aktivitāte',
+ 'approved' => 'Apstiprināts',
+ 'author' => 'Autors',
+ 'bug' => 'Bug',
+ 'category-quick-search' => 'Tēmas nosaukuma ātra meklēšana (kategorijā)',
+ 'close-topic' => 'Bloķēt tēmu',
+ 'closed' => 'Slēgts',
+ 'create-new-topic' => 'Izveidot jaunu tēmu',
+ 'created' => 'Izveidots',
+ 'current' => 'Pašreizējais',
+ 'delete-topic' => 'Dzēst šo tēmu',
+ 'denied' => 'Atteikts',
+ 'dislike-post' => 'Nepatīk šis pasts',
+ 'display-forum' => 'Rādīt tēmas',
+ 'edit-post' => 'Rediģēt pastu',
+ 'edit-topic' => 'Rediģēt tēmu',
+ 'forum' => 'Forums',
+ 'forums' => 'Forums',
+ 'implemented' => 'Īstenots',
+ 'in' => 'In',
+ 'invalid' => 'Nederīgs',
+ 'label' => 'Etiķete',
+ 'label-system' => 'Etiķešu sistēma',
+ 'last-message' => 'Pēdējais ziņojums',
+ 'last-post-info' => 'Pēdējā ziņojuma informācija',
+ 'latest' => 'Jaunākās',
+ 'like-post' => 'Tāpat kā šis ieraksts',
+ 'meta-category' => 'Kategoriju saraksts',
+ 'moderation' => 'Mērenība',
+ 'name' => 'Nosaukums',
+ 'not-connected' => 'Jums jābūt savienotam',
+ 'not-subscribed' => 'Nav abonēts',
+ 'open' => 'Atvērt',
+ 'open-topic' => 'Atveriet šo tēmu',
+ 'permalink' => 'Permalink',
+ 'pin' => 'Pin',
+ 'post' => 'Post',
+ 'post-quick-search' => 'Ātra meklēšana pēc virsbūves',
+ 'posts' => 'Ziņojumi',
+ 'quote' => 'Citāts',
+ 'read-topic' => 'Lasīt tēmu',
+ 'replies' => 'Atbildes',
+ 'send-new-topic' => 'Saglabāt šo tēmu',
+ 'solved' => 'Atrisināts',
+ 'state' => 'Valsts',
+ 'stats' => 'Statistika',
+ 'subscribed' => 'Abonēts',
'subscription-quick-search' => 'Tēmas nosaukuma ātra meklēšana (abonementos)',
- 'suggestion' => 'Ieteikums',
- 'topic' => 'Temats',
- 'topic-closed' => 'Šī tēma ir slēgta',
- 'topic-name' => 'Tēmas nosaukums',
- 'topic-quick-search' => 'Tēmas nosaukuma ātra meklēšana',
- 'topic-title' => 'Šīs tēmas nosaukums',
- 'topics' => 'Tēmas',
- 'unpin' => 'Atvienojiet',
- 'view-all' => 'Skatīt visas tēmas',
- 'views' => 'Skatījumi',
+ 'suggestion' => 'Ieteikums',
+ 'topic' => 'Temats',
+ 'topic-closed' => 'Šī tēma ir slēgta',
+ 'topic-name' => 'Tēmas nosaukums',
+ 'topic-quick-search' => 'Tēmas nosaukuma ātra meklēšana',
+ 'topic-title' => 'Šīs tēmas nosaukums',
+ 'topics' => 'Tēmas',
+ 'unpin' => 'Atvienojiet',
+ 'view-all' => 'Skatīt visas tēmas',
+ 'views' => 'Skatījumi',
];
diff --git a/lang/lv/graveyard.php b/lang/lv/graveyard.php
index 62f296701..0b0034809 100644
--- a/lang/lv/graveyard.php
+++ b/lang/lv/graveyard.php
@@ -12,15 +12,15 @@
*/
return [
- 'dead' => 'Miruši',
- 'graveyard' => 'Kapsēta',
- 'guidelines' => 'Pamatnostādnes',
+ 'dead' => 'Miruši',
+ 'graveyard' => 'Kapsēta',
+ 'guidelines' => 'Pamatnostādnes',
'guidelines-content' => '1) Jūs nevarat augšupielādēt savus augšupielādes.
2) Dont atdzīvināt kaut ko, ko nevarat izdarīt.',
- 'howto' => 'Šeit ir noteikums',
- 'howto-desc1' => 'Jums ir nepieciešams sēklas : nosaukums 30 dienām, lai panāktu veiksmīgu iznākumu. Tādā gadījumā, kad jūsu pašreizējais sēklas laiks ir',
- 'howto-desc2' => 'Jūs saņemsiet atlīdzību',
- 'howto-hits' => 'Skatījumi',
- 'pending' => 'Gaida',
- 'resurrect' => 'Atdzīvināt',
- 'reward' => 'Freeleech žetoni',
+ 'howto' => 'Šeit ir noteikums',
+ 'howto-desc1' => 'Jums ir nepieciešams sēklas : nosaukums 30 dienām, lai panāktu veiksmīgu iznākumu. Tādā gadījumā, kad jūsu pašreizējais sēklas laiks ir',
+ 'howto-desc2' => 'Jūs saņemsiet atlīdzību',
+ 'howto-hits' => 'Skatījumi',
+ 'pending' => 'Gaida',
+ 'resurrect' => 'Atdzīvināt',
+ 'reward' => 'Freeleech žetoni',
];
diff --git a/lang/lv/notification.php b/lang/lv/notification.php
index 6c671ff0a..f10f64f4c 100644
--- a/lang/lv/notification.php
+++ b/lang/lv/notification.php
@@ -12,14 +12,14 @@
*/
return [
- 'date' => 'Datums',
- 'delete' => 'Dzēst',
- 'delete-all' => 'Dzēst visus paziņojumus',
- 'mark-all-read' => 'atzīmēt visu kā izlasītu',
- 'mark-read' => 'Atzīmēt kā lasītu',
- 'message' => 'Ziņojums',
+ 'date' => 'Datums',
+ 'delete' => 'Dzēst',
+ 'delete-all' => 'Dzēst visus paziņojumus',
+ 'mark-all-read' => 'atzīmēt visu kā izlasītu',
+ 'mark-read' => 'Atzīmēt kā lasītu',
+ 'message' => 'Ziņojums',
'no-notifications' => 'Nav atrasts neviens paziņojums',
- 'notifications' => 'Paziņojumi',
- 'read' => 'Lasīt',
- 'title' => 'Nosaukums',
+ 'notifications' => 'Paziņojumi',
+ 'read' => 'Lasīt',
+ 'title' => 'Nosaukums',
];
diff --git a/lang/lv/page.php b/lang/lv/page.php
index 46c1ef3cd..475e871ac 100644
--- a/lang/lv/page.php
+++ b/lang/lv/page.php
@@ -12,28 +12,28 @@
*/
return [
- 'aboutus-advantage' => 'Priekšrocība',
- 'aboutus-advantage1' => 'Mums ir pieredzējuši darbinieki un darbinieki, kas ir labi pārzinājuši HD video / audio un tehniskā atbalsta pasaulē.',
- 'aboutus-advantage2' => 'Kopā ar mūsu plašo aizraušanos ar filmām un TV šovām mēs piedāvājam arī vienu no labākajām izvēlēm kaut ko, ko dont - FANRES! Liels paldies mūsu satura ražotājiem.',
- 'aboutus-advantage3' => 'Lai gan mēs pieņemam ziedojumus, lai saglabātu vietni un darbotos, uz vietas nebūs bojā gājušo PM vai baneru. Mums nav ubagošanas.',
- 'aboutus-advantage4' => 'Mūsu kopiena ir otrais līdz šim agrīnā vecumā. Starp mūsu darbiniekiem un lietotāju bāzi vienmēr atradāmies, lai palīdzētu. Bija aizrautīgi par to, lai pārliecinātos, ka jūsu pieredze: tituls nav nekas nepārspējams.',
- 'aboutus-advantage5' => 'Mūsu pakalpojumus katru dienu izmanto daudzi cilvēki visā pasaulē. Mēs pierādījām, ka mēs rūpējamies par mūsu koda bāzes funkcionalitāti un drošību, un to var uzticēt un izmantot. Mūsu izstrādātāji katru dienu strādā, lai nodrošinātu patiesi nex-gen koda bāzi.',
- 'aboutus-header' => 'Sveiki',
- 'aboutus-rules' => 'Kas jums ir vajadzīgs',
- 'aboutus-rules1' => 'Būt aktīvam sabiedrības loceklim! Tas nozīmē produktīvi pievienoties sarunām, pievienot apstiprinātu saturu un palīdzēt citiem lietotājiem, ja jums ir iespēja.',
- 'aboutus-rules2' => 'Lai pilnībā izlasītu noteikumus un ievērotu tos!',
- 'aboutus-rules3' => 'Padarīt ieteikumus! Mēs cenšamies padarīt: katru dienu labāku nosaukumu. Mēs sakām, ka visi ieteikumi tiks izmantoti, bet nekad nav sāpīgi redzēt jaunas idejas.',
- 'aboutus-welcome' => 'Parunāsim par',
- 'aboutus-welcome-desc' => ': title ir kopienas veidota Movie / TV / FANRES datubāze. Katru datu kopu ir pievienojuši mūsu apbrīnojamā kopiena kopš 2017. gada. Nosaukumi, kuros galvenā uzmanība tiek pievērsta HD saturam, proaktīvai lietotāju bāzei, satriecošai / drošai koda bāzei un noderīgai un draudzīgai personāla komandai.',
- 'blacklist-browsers' => 'Pārlūkprogrammas',
- 'blacklist-btclient' => 'BitTorrent klients',
- 'blacklist-clients' => 'Klienti',
- 'blacklist-desc' => 'Sekojošie pārlūkprogrammas un Bittorrent klienti ir iekļauti melnajā sarakstā / Aizliegts no Annoucing To: title',
- 'blacklist-webbrowser' => 'Interneta pārlūks',
+ 'aboutus-advantage' => 'Priekšrocība',
+ 'aboutus-advantage1' => 'Mums ir pieredzējuši darbinieki un darbinieki, kas ir labi pārzinājuši HD video / audio un tehniskā atbalsta pasaulē.',
+ 'aboutus-advantage2' => 'Kopā ar mūsu plašo aizraušanos ar filmām un TV šovām mēs piedāvājam arī vienu no labākajām izvēlēm kaut ko, ko dont - FANRES! Liels paldies mūsu satura ražotājiem.',
+ 'aboutus-advantage3' => 'Lai gan mēs pieņemam ziedojumus, lai saglabātu vietni un darbotos, uz vietas nebūs bojā gājušo PM vai baneru. Mums nav ubagošanas.',
+ 'aboutus-advantage4' => 'Mūsu kopiena ir otrais līdz šim agrīnā vecumā. Starp mūsu darbiniekiem un lietotāju bāzi vienmēr atradāmies, lai palīdzētu. Bija aizrautīgi par to, lai pārliecinātos, ka jūsu pieredze: tituls nav nekas nepārspējams.',
+ 'aboutus-advantage5' => 'Mūsu pakalpojumus katru dienu izmanto daudzi cilvēki visā pasaulē. Mēs pierādījām, ka mēs rūpējamies par mūsu koda bāzes funkcionalitāti un drošību, un to var uzticēt un izmantot. Mūsu izstrādātāji katru dienu strādā, lai nodrošinātu patiesi nex-gen koda bāzi.',
+ 'aboutus-header' => 'Sveiki',
+ 'aboutus-rules' => 'Kas jums ir vajadzīgs',
+ 'aboutus-rules1' => 'Būt aktīvam sabiedrības loceklim! Tas nozīmē produktīvi pievienoties sarunām, pievienot apstiprinātu saturu un palīdzēt citiem lietotājiem, ja jums ir iespēja.',
+ 'aboutus-rules2' => 'Lai pilnībā izlasītu noteikumus un ievērotu tos!',
+ 'aboutus-rules3' => 'Padarīt ieteikumus! Mēs cenšamies padarīt: katru dienu labāku nosaukumu. Mēs sakām, ka visi ieteikumi tiks izmantoti, bet nekad nav sāpīgi redzēt jaunas idejas.',
+ 'aboutus-welcome' => 'Parunāsim par',
+ 'aboutus-welcome-desc' => ': title ir kopienas veidota Movie / TV / FANRES datubāze. Katru datu kopu ir pievienojuši mūsu apbrīnojamā kopiena kopš 2017. gada. Nosaukumi, kuros galvenā uzmanība tiek pievērsta HD saturam, proaktīvai lietotāju bāzei, satriecošai / drošai koda bāzei un noderīgai un draudzīgai personāla komandai.',
+ 'blacklist-browsers' => 'Pārlūkprogrammas',
+ 'blacklist-btclient' => 'BitTorrent klients',
+ 'blacklist-clients' => 'Klienti',
+ 'blacklist-desc' => 'Sekojošie pārlūkprogrammas un Bittorrent klienti ir iekļauti melnajā sarakstā / Aizliegts no Annoucing To: title',
+ 'blacklist-webbrowser' => 'Interneta pārlūks',
'blacklist-emaildomain' => 'Bloķēts domēns',
- 'email-blacklist-desc' => 'Sekojošie e-pasta domēni tiek bloķēti no to izmantošanas. Jūs nevarat reģistrēties vai sūtīt ielūgumu tālāk.',
- 'email-whitelist-desc' => 'Sekojošie e-pasta domēni ir vienīgie e-pasta domēni, kurus atļauts lietot. Jūs drīkstat tikai reģistrēties vai sūtīt ielūgumu, izmantojot tālāk minētos.',
- 'staff-group' => 'Grupa',
- 'staff-title' => 'Nosaukums',
+ 'email-blacklist-desc' => 'Sekojošie e-pasta domēni tiek bloķēti no to izmantošanas. Jūs nevarat reģistrēties vai sūtīt ielūgumu tālāk.',
+ 'email-whitelist-desc' => 'Sekojošie e-pasta domēni ir vienīgie e-pasta domēni, kurus atļauts lietot. Jūs drīkstat tikai reģistrēties vai sūtīt ielūgumu, izmantojot tālāk minētos.',
+ 'staff-group' => 'Grupa',
+ 'staff-title' => 'Nosaukums',
'whitelist-emaildomain' => 'Uzticamais domēns',
];
diff --git a/lang/lv/pagination.php b/lang/lv/pagination.php
index 9e0e2753b..0a0ad620c 100644
--- a/lang/lv/pagination.php
+++ b/lang/lv/pagination.php
@@ -24,5 +24,5 @@ return [
*/
'previous' => '« Iepriekšējais',
- 'next' => 'Nākamais »',
+ 'next' => 'Nākamais »',
];
diff --git a/lang/lv/passwords.php b/lang/lv/passwords.php
index 5ecae7fe7..08554d11c 100644
--- a/lang/lv/passwords.php
+++ b/lang/lv/passwords.php
@@ -24,8 +24,8 @@ return [
*/
'password' => 'Parolei jābūt vismaz 6 zīmes garai un jāatbilst apstiprinājumam.',
- 'reset' => 'Jūsu parole ir atjaunināta!',
- 'sent' => 'Mēs nosūtījām paroles maiņas linku uz jūsu e-pastu!',
- 'token' => 'Šāda zīme pie paroles maiņas nav atļauta.',
- 'user' => 'Mēs nevaram atrast lietotāju ar tādu e-pasta adresi.',
+ 'reset' => 'Jūsu parole ir atjaunināta!',
+ 'sent' => 'Mēs nosūtījām paroles maiņas linku uz jūsu e-pastu!',
+ 'token' => 'Šāda zīme pie paroles maiņas nav atļauta.',
+ 'user' => 'Mēs nevaram atrast lietotāju ar tādu e-pasta adresi.',
];
diff --git a/lang/lv/pm.php b/lang/lv/pm.php
index 371ad35bb..7eab26ab3 100644
--- a/lang/lv/pm.php
+++ b/lang/lv/pm.php
@@ -12,29 +12,29 @@
*/
return [
- 'create' => 'Izveidot',
- 'delete' => 'Dzēst',
+ 'create' => 'Izveidot',
+ 'delete' => 'Dzēst',
'enter-subject' => 'Ievadiet tēmu',
- 'from' => 'No',
- 'inbox' => 'Iesūtne',
+ 'from' => 'No',
+ 'inbox' => 'Iesūtne',
'mark-all-read' => 'Atzīmējiet visus ziņojumus kā lasītus',
- 'message' => 'Ziņojums',
- 'messages' => 'Ziņas',
- 'new' => 'Jauns ziņojums',
- 'outbox' => 'Izsþtne',
- 'private' => 'Privāts',
- 'read' => 'Lasīt',
- 'received-at' => 'Saņemts',
- 'refresh' => 'atjaunot',
- 'reply' => 'Atbildēt',
- 'search' => 'Meklēt pēc tēmas',
- 'select' => 'Izvēlieties Lietotājs',
- 'send' => 'Nosūtīt PM',
- 'send-to' => 'Nosūtīt PM',
- 'sent' => 'Nosūtīts',
- 'sent-at' => 'Nosūtīts',
- 'subject' => 'Temats',
- 'to' => 'Uz',
- 'unread' => 'Nelasīta',
- 'empty-inbox' => 'Iztukšojiet iesūtni',
+ 'message' => 'Ziņojums',
+ 'messages' => 'Ziņas',
+ 'new' => 'Jauns ziņojums',
+ 'outbox' => 'Izsþtne',
+ 'private' => 'Privāts',
+ 'read' => 'Lasīt',
+ 'received-at' => 'Saņemts',
+ 'refresh' => 'atjaunot',
+ 'reply' => 'Atbildēt',
+ 'search' => 'Meklēt pēc tēmas',
+ 'select' => 'Izvēlieties Lietotājs',
+ 'send' => 'Nosūtīt PM',
+ 'send-to' => 'Nosūtīt PM',
+ 'sent' => 'Nosūtīts',
+ 'sent-at' => 'Nosūtīts',
+ 'subject' => 'Temats',
+ 'to' => 'Uz',
+ 'unread' => 'Nelasīta',
+ 'empty-inbox' => 'Iztukšojiet iesūtni',
];
diff --git a/lang/lv/poll.php b/lang/lv/poll.php
index 6891bef96..61be5fbd6 100644
--- a/lang/lv/poll.php
+++ b/lang/lv/poll.php
@@ -12,18 +12,18 @@
*/
return [
- 'add-option' => 'Pievienot opciju',
- 'create-poll' => 'Izveidot aptauju',
- 'current' => 'Pašreizējā aptauja',
- 'delete-option' => 'Dzēst opciju',
+ 'add-option' => 'Pievienot opciju',
+ 'create-poll' => 'Izveidot aptauju',
+ 'current' => 'Pašreizējā aptauja',
+ 'delete-option' => 'Dzēst opciju',
'multiple-choice' => 'Tā ir aptaujāta izvēle. Izvēlieties tik daudz atbilžu, cik vēlaties.',
- 'option' => 'Iespēja',
- 'poll' => 'Aptauja',
- 'polls' => 'Aptaujas',
- 'results' => 'Aptaujas rezultāti',
- 'title' => 'Nosaukums',
- 'total' => 'Kopā balsis',
- 'vote' => 'Balsojums',
- 'vote-now' => 'Iegūstiet savu balsojumu tagad!',
- 'votes' => 'Balsis',
+ 'option' => 'Iespēja',
+ 'poll' => 'Aptauja',
+ 'polls' => 'Aptaujas',
+ 'results' => 'Aptaujas rezultāti',
+ 'title' => 'Nosaukums',
+ 'total' => 'Kopā balsis',
+ 'vote' => 'Balsojums',
+ 'vote-now' => 'Iegūstiet savu balsojumu tagad!',
+ 'votes' => 'Balsis',
];
diff --git a/lang/lv/request.php b/lang/lv/request.php
index 432feb3dd..b3698e3ef 100644
--- a/lang/lv/request.php
+++ b/lang/lv/request.php
@@ -12,67 +12,67 @@
*/
return [
- 'add-request' => 'Pievienot pieprasījumu',
- 'age' => 'Vecums',
- 'all-requests' => 'Visi pieprasījumi',
- 'approve' => 'Apstiprināt',
- 'bounty' => 'Bounty',
- 'bounty-claimed' => 'Bounty apgalvoja',
- 'bounty-unclaimed' => 'Bounty nepieprasīja',
- 'category' => 'Kategorija',
- 'claim' => 'Prasība',
- 'claim-anon-choose' => 'Lūdzu, izvēlieties gudri',
- 'claim-as-anon' => 'Vai jūs vēlētos pieprasīt šo anonīmi',
- 'claim-now' => 'Pieprasiet tagad',
- 'claimed' => 'Apgalvots',
- 'current' => 'Pašreizējais',
- 'delete' => 'Dzēst šo pieprasījumu',
+ 'add-request' => 'Pievienot pieprasījumu',
+ 'age' => 'Vecums',
+ 'all-requests' => 'Visi pieprasījumi',
+ 'approve' => 'Apstiprināt',
+ 'bounty' => 'Bounty',
+ 'bounty-claimed' => 'Bounty apgalvoja',
+ 'bounty-unclaimed' => 'Bounty nepieprasīja',
+ 'category' => 'Kategorija',
+ 'claim' => 'Prasība',
+ 'claim-anon-choose' => 'Lūdzu, izvēlieties gudri',
+ 'claim-as-anon' => 'Vai jūs vēlētos pieprasīt šo anonīmi',
+ 'claim-now' => 'Pieprasiet tagad',
+ 'claimed' => 'Apgalvots',
+ 'current' => 'Pašreizējais',
+ 'delete' => 'Dzēst šo pieprasījumu',
'delete-confirmation' => 'Vai tiešām vēlaties dzēst šo pieprasījumu',
- 'delete-filled' => 'Šo pieprasījumu var dzēst tikai tad, ja tas nav aizpildīts',
- 'description' => 'Apraksts',
- 'dont-have-bps' => 'Jums nav pietiekami daudz bonusa',
- 'edit-request' => 'Rediģēt pieprasījumu',
- 'enter-bp' => 'Ievadiet bonusa punktus (vismaz 100)',
- 'enter-hash' => 'Ievadiet augšupielādētās Torrent informācijas informāciju',
- 'fill' => 'Aizpildiet',
- 'fill-request' => 'Aizpildiet šo pieprasījumu',
- 'filled' => 'Aizpildīts',
- 'filled-by' => 'Aizpildīts ar',
- 'for' => 'par',
- 'fulfill' => 'Izpildiet',
- 'last-vote' => 'Pēdējā balsojums',
- 'my-requests' => 'Mani pieprasījumi',
- 'no' => 'Nē,',
- 'no-imdb-id' => 'Visiem pieprasījumiem jāietver IMDB numurs',
- 'no-privileges' => 'Kļūda: jūsu pieprasījuma tiesības ir atspējotas',
- 'no-privileges-desc' => 'Ja uzskatāt, ka tas ir kļūdains, lūdzu, sazinieties ar personālu',
- 'no-refunds' => 'BON apmaiņa par izveidošanu, aizpildīšanu un bounties ir galīga!
NĒ ATMAKSU!',
- 'pending' => 'Gaida',
- 'reason' => 'Iemesls',
- 'reject' => 'Noraidīt',
- 'report' => 'Ziņojuma pieprasījums',
- 'request' => 'Pieprasījums',
- 'request-details' => 'Pieprasīt informāciju',
- 'requested-by' => 'Pieprasīts no',
- 'requests' => 'Pieprasījumi',
- 'required' => 'Nepieciešams',
- 'reset' => 'Atiestatīt',
- 'reset-confirmation' => 'Vai tiešām vēlaties atiestatīt šo pieprasījumu',
- 'reset-request' => 'Atiestatīt šo pieprasījumu',
- 'reward' => 'Atlīdzība',
- 'reward-desc' => 'Cik lielu bonusa punktu jūs vēlētos apbalvot? Vismaz 100 BP',
- 'reward-from' => 'No',
- 'title' => 'Nosaukums',
- 'torrent-hash' => 'Torrent Hash',
- 'total-bounty' => 'Kopējais devums',
- 'type' => 'Tips',
- 'unclaim' => 'Nepieprasiet šo pieprasījumu',
- 'unfilled' => 'Neizpildīts',
- 'view-filled' => 'Skatīt aizpildītu',
- 'view-unfilled' => 'Skatīt nepildītu',
- 'vote' => 'Balsojums',
- 'vote-that' => 'Balsojiet par šo pieprasījumu',
- 'voters' => 'Vēlētāji',
- 'votes' => 'Balsis',
- 'yes' => 'Jā',
+ 'delete-filled' => 'Šo pieprasījumu var dzēst tikai tad, ja tas nav aizpildīts',
+ 'description' => 'Apraksts',
+ 'dont-have-bps' => 'Jums nav pietiekami daudz bonusa',
+ 'edit-request' => 'Rediģēt pieprasījumu',
+ 'enter-bp' => 'Ievadiet bonusa punktus (vismaz 100)',
+ 'enter-hash' => 'Ievadiet augšupielādētās Torrent informācijas informāciju',
+ 'fill' => 'Aizpildiet',
+ 'fill-request' => 'Aizpildiet šo pieprasījumu',
+ 'filled' => 'Aizpildīts',
+ 'filled-by' => 'Aizpildīts ar',
+ 'for' => 'par',
+ 'fulfill' => 'Izpildiet',
+ 'last-vote' => 'Pēdējā balsojums',
+ 'my-requests' => 'Mani pieprasījumi',
+ 'no' => 'Nē,',
+ 'no-imdb-id' => 'Visiem pieprasījumiem jāietver IMDB numurs',
+ 'no-privileges' => 'Kļūda: jūsu pieprasījuma tiesības ir atspējotas',
+ 'no-privileges-desc' => 'Ja uzskatāt, ka tas ir kļūdains, lūdzu, sazinieties ar personālu',
+ 'no-refunds' => 'BON apmaiņa par izveidošanu, aizpildīšanu un bounties ir galīga!
NĒ ATMAKSU!',
+ 'pending' => 'Gaida',
+ 'reason' => 'Iemesls',
+ 'reject' => 'Noraidīt',
+ 'report' => 'Ziņojuma pieprasījums',
+ 'request' => 'Pieprasījums',
+ 'request-details' => 'Pieprasīt informāciju',
+ 'requested-by' => 'Pieprasīts no',
+ 'requests' => 'Pieprasījumi',
+ 'required' => 'Nepieciešams',
+ 'reset' => 'Atiestatīt',
+ 'reset-confirmation' => 'Vai tiešām vēlaties atiestatīt šo pieprasījumu',
+ 'reset-request' => 'Atiestatīt šo pieprasījumu',
+ 'reward' => 'Atlīdzība',
+ 'reward-desc' => 'Cik lielu bonusa punktu jūs vēlētos apbalvot? Vismaz 100 BP',
+ 'reward-from' => 'No',
+ 'title' => 'Nosaukums',
+ 'torrent-hash' => 'Torrent Hash',
+ 'total-bounty' => 'Kopējais devums',
+ 'type' => 'Tips',
+ 'unclaim' => 'Nepieprasiet šo pieprasījumu',
+ 'unfilled' => 'Neizpildīts',
+ 'view-filled' => 'Skatīt aizpildītu',
+ 'view-unfilled' => 'Skatīt nepildītu',
+ 'vote' => 'Balsojums',
+ 'vote-that' => 'Balsojiet par šo pieprasījumu',
+ 'voters' => 'Vēlētāji',
+ 'votes' => 'Balsis',
+ 'yes' => 'Jā',
];
diff --git a/lang/lv/rss.php b/lang/lv/rss.php
index 83657f9bd..c0b0ae8d9 100644
--- a/lang/lv/rss.php
+++ b/lang/lv/rss.php
@@ -12,19 +12,19 @@
*/
return [
- 'create' => 'Izveidot',
+ 'create' => 'Izveidot',
'create-private-feed' => 'Izveidot privātu RSS plūsmu',
- 'create-public-feed' => 'Izveidot publisku RSS plūsmu',
- 'delete' => 'Dzēst',
- 'edit' => 'Rediģēt',
- 'edit-private-feed' => 'Rediģēt privāto RSS plūsmu',
- 'edit-public-feed' => 'Rediģēt publisko RSS plūsmu',
- 'feed' => 'Plūsma',
- 'feeds' => 'Plūsmas',
- 'name' => 'Nosaukums',
- 'public' => 'Publiska',
- 'private' => 'Privāts',
- 'rss' => 'RSS',
- 'rss-feed' => 'RSS plūsma',
- 'type' => 'Tips',
+ 'create-public-feed' => 'Izveidot publisku RSS plūsmu',
+ 'delete' => 'Dzēst',
+ 'edit' => 'Rediģēt',
+ 'edit-private-feed' => 'Rediģēt privāto RSS plūsmu',
+ 'edit-public-feed' => 'Rediģēt publisko RSS plūsmu',
+ 'feed' => 'Plūsma',
+ 'feeds' => 'Plūsmas',
+ 'name' => 'Nosaukums',
+ 'public' => 'Publiska',
+ 'private' => 'Privāts',
+ 'rss' => 'RSS',
+ 'rss-feed' => 'RSS plūsma',
+ 'type' => 'Tips',
];
diff --git a/lang/lv/staff.php b/lang/lv/staff.php
index e3b86a17e..a00579b5b 100644
--- a/lang/lv/staff.php
+++ b/lang/lv/staff.php
@@ -12,48 +12,48 @@
*/
return [
- 'audit-log' => 'Aktivitāšu vēsture',
- 'articles' => 'Raksti',
- 'applications' => 'Programmas',
- 'bans-log' => 'Aizlieguma žurnāls',
- 'blocks' => 'Bloki',
- 'bot' => 'Bot',
- 'bots' => 'Boti',
- 'chat' => 'Tērzēšana',
- 'config-manager' => 'Config Manager',
- 'dashboard' => 'Mērinstrumentu panelis',
- 'failed-login-log' => 'Neizdevās pieteikšanās žurnāls',
- 'flush-ghost-peers' => 'Izskalojiet spoku vienaudžus',
- 'forums' => 'Forums',
- 'frontend' => 'Priekšpuse',
- 'general-tools' => 'Vispārējie rīki',
- 'groups' => 'Grupas',
- 'invites-log' => 'Uzaicinājumu žurnāls',
- 'laravel-log' => 'Laravel žurnāls',
- 'links' => 'Saites',
- 'logs' => 'Žurnāli',
- 'mass-pm' => 'Masas PM',
- 'mass-validate-users' => 'Masu validēt lietotājus',
- 'moderation' => 'Mērenība',
- 'pages' => 'Lapas',
- 'please-moderate' => 'Lūdzu, moderējiet šo Torrent!',
- 'polls' => 'Aptaujas',
- 'reports-log' => 'Ziņojumu žurnāls',
- 'rss' => 'RSS',
- 'staff-dashboard' => 'Personāla vadības panelis',
- 'torrent-categories' => 'Torrent kategorijas',
- 'torrent-moderation' => 'Torrent Moderation',
- 'torrent-tools' => 'Torrent rīki',
- 'torrent-types' => 'Torrent veidi',
- 'torrents' => 'Torrents',
- 'user-gifting' => 'Lietotāja dāvana',
- 'user-notes' => 'Lietotāju piezīmju žurnāls',
- 'user-search' => 'Lietotāja meklēšana',
- 'user-tools' => 'Lietotāja rīki',
- 'warnings-log' => 'Brīdinājumu žurnāls',
- 'you-have' => 'Tev ir',
+ 'audit-log' => 'Aktivitāšu vēsture',
+ 'articles' => 'Raksti',
+ 'applications' => 'Programmas',
+ 'bans-log' => 'Aizlieguma žurnāls',
+ 'blocks' => 'Bloki',
+ 'bot' => 'Bot',
+ 'bots' => 'Boti',
+ 'chat' => 'Tērzēšana',
+ 'config-manager' => 'Config Manager',
+ 'dashboard' => 'Mērinstrumentu panelis',
+ 'failed-login-log' => 'Neizdevās pieteikšanās žurnāls',
+ 'flush-ghost-peers' => 'Izskalojiet spoku vienaudžus',
+ 'forums' => 'Forums',
+ 'frontend' => 'Priekšpuse',
+ 'general-tools' => 'Vispārējie rīki',
+ 'groups' => 'Grupas',
+ 'invites-log' => 'Uzaicinājumu žurnāls',
+ 'laravel-log' => 'Laravel žurnāls',
+ 'links' => 'Saites',
+ 'logs' => 'Žurnāli',
+ 'mass-pm' => 'Masas PM',
+ 'mass-validate-users' => 'Masu validēt lietotājus',
+ 'moderation' => 'Mērenība',
+ 'pages' => 'Lapas',
+ 'please-moderate' => 'Lūdzu, moderējiet šo Torrent!',
+ 'polls' => 'Aptaujas',
+ 'reports-log' => 'Ziņojumu žurnāls',
+ 'rss' => 'RSS',
+ 'staff-dashboard' => 'Personāla vadības panelis',
+ 'torrent-categories' => 'Torrent kategorijas',
+ 'torrent-moderation' => 'Torrent Moderation',
+ 'torrent-tools' => 'Torrent rīki',
+ 'torrent-types' => 'Torrent veidi',
+ 'torrents' => 'Torrents',
+ 'user-gifting' => 'Lietotāja dāvana',
+ 'user-notes' => 'Lietotāju piezīmju žurnāls',
+ 'user-search' => 'Lietotāja meklēšana',
+ 'user-tools' => 'Lietotāja rīki',
+ 'warnings-log' => 'Brīdinājumu žurnāls',
+ 'you-have' => 'Tev ir',
'possible-leech-cheaters' => 'Iespējamie krāpnieki',
- 'chat-tools' => 'Tērzēšanas rīki',
- 'flush-chat' => 'Flush Chatbox',
- 'seedboxes' => 'Reģistrētās sēklu kastes',
+ 'chat-tools' => 'Tērzēšanas rīki',
+ 'flush-chat' => 'Flush Chatbox',
+ 'seedboxes' => 'Reģistrētās sēklu kastes',
];
diff --git a/lang/lv/stat.php b/lang/lv/stat.php
index 3d2f8fb3b..7d7ed1f5f 100644
--- a/lang/lv/stat.php
+++ b/lang/lv/stat.php
@@ -12,40 +12,40 @@
*/
return [
- 'by-count' => 'Pēc skaita',
- 'by-data' => 'Pēc datiem',
- 'by-volume' => 'Pēc apjoma',
- 'group' => 'Grupa',
- 'groups' => 'Grupas',
- 'nerd-stats' => 'Nerd stats',
- 'nerd-stats-desc' => 'Mēs visi mīlam statistiku. Šeit ir daži, ko mēs uzskatām par svarīgiem',
- 'registration-date' => 'Reģistrācijas datums',
- 'request-fulfilled' => 'Pieprasījums ir izpildīts',
- 'request-not-fulfilled' => 'Pieprasījums nav izpildīts',
+ 'by-count' => 'Pēc skaita',
+ 'by-data' => 'Pēc datiem',
+ 'by-volume' => 'Pēc apjoma',
+ 'group' => 'Grupa',
+ 'groups' => 'Grupas',
+ 'nerd-stats' => 'Nerd stats',
+ 'nerd-stats-desc' => 'Mēs visi mīlam statistiku. Šeit ir daži, ko mēs uzskatām par svarīgiem',
+ 'registration-date' => 'Reģistrācijas datums',
+ 'request-fulfilled' => 'Pieprasījums ir izpildīts',
+ 'request-not-fulfilled' => 'Pieprasījums nav izpildīts',
'request-pending-aproval' => 'Pieprasījums gaida apstiprināšanu',
- 'select-category' => 'Lūdzu, izvēlieties zemāk redzamo kategoriju',
- 'site-stats' => 'Vietnes statistika',
- 'stats' => 'Statistika',
- 'stats-format' => 'Visi statistikas dati, kas parādīti 100 lielākajā formātā',
- 'top-bankers' => 'Populārākie bankas darbinieki',
- 'top-bountied' => 'Augšup Bountied',
- 'top-completed' => 'Augšup Pabeigts',
- 'top-dead' => 'Top Dead',
- 'top-downloaded' => 'Top Lejupielādētie torrenti',
- 'top-downloaders' => 'Top Downloaders',
- 'top-dying' => 'Augšā mirst',
- 'top-leeched' => 'Top Leeched',
- 'top-leechers' => 'Top Leechers',
- 'top-seeded' => 'Top Seeded',
- 'top-seeding' => 'Augšējā sēšana',
- 'top-seeders' => 'Top sējmašīnas',
- 'top-seedsize' => 'Top Seedsize',
- 'top-seedtime' => 'Top Seedtime',
- 'top-uploaders' => 'Augšējie augšupielādētāji',
- 'total-download' => 'Kopējais lejupielāde',
- 'total-torrents' => 'Kopējie torrenti',
- 'total-traffic' => 'Kopējā satiksme',
- 'total-upload' => 'Kopējais augšupielāde',
- 'users-in-group' => 'Lietotāji grupā',
- 'users-per-group' => 'Lietotāji grupā',
+ 'select-category' => 'Lūdzu, izvēlieties zemāk redzamo kategoriju',
+ 'site-stats' => 'Vietnes statistika',
+ 'stats' => 'Statistika',
+ 'stats-format' => 'Visi statistikas dati, kas parādīti 100 lielākajā formātā',
+ 'top-bankers' => 'Populārākie bankas darbinieki',
+ 'top-bountied' => 'Augšup Bountied',
+ 'top-completed' => 'Augšup Pabeigts',
+ 'top-dead' => 'Top Dead',
+ 'top-downloaded' => 'Top Lejupielādētie torrenti',
+ 'top-downloaders' => 'Top Downloaders',
+ 'top-dying' => 'Augšā mirst',
+ 'top-leeched' => 'Top Leeched',
+ 'top-leechers' => 'Top Leechers',
+ 'top-seeded' => 'Top Seeded',
+ 'top-seeding' => 'Augšējā sēšana',
+ 'top-seeders' => 'Top sējmašīnas',
+ 'top-seedsize' => 'Top Seedsize',
+ 'top-seedtime' => 'Top Seedtime',
+ 'top-uploaders' => 'Augšējie augšupielādētāji',
+ 'total-download' => 'Kopējais lejupielāde',
+ 'total-torrents' => 'Kopējie torrenti',
+ 'total-traffic' => 'Kopējā satiksme',
+ 'total-upload' => 'Kopējais augšupielāde',
+ 'users-in-group' => 'Lietotāji grupā',
+ 'users-per-group' => 'Lietotāji grupā',
];
diff --git a/lang/lv/torrent.php b/lang/lv/torrent.php
index 88e7781a1..480ef78b2 100644
--- a/lang/lv/torrent.php
+++ b/lang/lv/torrent.php
@@ -12,197 +12,197 @@
*/
return [
- 'activity' => 'Aktivitāte',
- 'age' => 'Vecums',
- 'agent' => 'Aģents',
- 'alive' => 'Alive',
- 'announce-url' => 'Paziņot URL',
- 'announce-url-desc' => 'Lūdzu, izmantojiet iepriekš norādīto URL, veidojot jaunu torrent. Ja jūs vēlaties izmantot savu torrent bez tās lejupielādes no vietnes, jums ir jāiestata privātais karogs un avots: source',
- 'announce-url-desc-url' => 'Ir problēmas? Skatiet mūsu ceļvedi ŠEIT',
- 'announce-url-desc2' => 'TMDB un IMDB ir nepieciešami visiem attēliem! To izmanto, lai greifers Plakātus / Backdrops un ExtraInfo',
- 'approved' => 'Apstiprināts',
- 'audio' => 'Audio',
- 'bon-tipped' => 'BON nostiprināts',
- 'bookmark' => 'Grāmatzīme',
- 'bookmarks' => 'Grāmatzīmes',
- 'bump' => 'Bump',
- 'cant-upload' => 'Kļūda: jūsu augšupielādes tiesības ir atspējotas',
- 'cant-upload-desc' => 'Ja jūtaties kā kļūda, lūdzu, sazinieties ar personālu',
- 'cards' => 'Kartes',
- 'cards-view' => 'Torrent karšu skats',
- 'categories' => 'Kategorijas',
- 'category' => 'Kategorija',
- 'client' => 'Klients',
- 'commited' => 'Iesaistīts',
- 'completed' => 'Pabeigts',
- 'completed_at' => 'Pabeigts',
- 'completed-not-seeding' => 'Jūs esat pabeidzis šo lejupielādi, bet vairs nenotiek',
- 'created_at' => 'Izveidots vietnē',
- 'credited' => 'Kreditēts',
- 'current' => 'Pašreizējais',
- 'current-filters' => 'Pašreizējie filtri',
- 'currently-leeching' => 'Pašlaik Leeching',
- 'currently-seeding' => 'Pašlaik sēšana',
- 'dead-torrent' => 'Dead Torrent',
- 'dead-torrents' => 'Dead Torrents',
- 'delete-bookmark' => 'Dzēst šo grāmatzīmi',
- 'description' => 'Apraksts',
- 'discounts' => 'Atlaides',
- 'double-upload' => 'Dubultā augšupielāde',
- 'download-all' => 'Lejupielādēt visu',
- 'download-check' => 'Lejupielādes pārbaude',
- 'downloaded' => 'Lejupielādēts',
- 'dying-torrent' => 'Dying Torrent',
- 'dying-torrents' => 'Mirstošie straumi',
- 'encode-settings' => 'Kodēt iestatījumus',
- 'estimated-ratio' => 'Aprēķinātā attiecība pēc lejupielādes',
- 'failed' => 'Neizdevās',
- 'feature' => 'Funkcija',
- 'featured' => 'Ieteicams',
- 'featured-desc' => 'Piedāvātie straumi ir 100% bezmaksas un Dubultā augšupielāde!',
- 'featured-until' => 'Tas ir populārs Torrent Līdz',
- 'file' => 'Fails',
- 'filters' => 'Filtri',
- 'fl-tokens-left' => 'Tev ir : žetoni palikuši',
- 'freeleech' => 'Freeleech',
- 'freeleech-token' => 'Freeleech Token',
- 'general' => 'Vispārīgi',
- 'genre' => 'Žanrs',
- 'global-double-upload' => 'Globālā dubultā augšupielāde',
- 'global-freeleech' => 'Global Freeleech',
- 'grant' => 'Dotācija',
- 'greater-than' => 'Lielāks nekā',
- 'grouping' => 'Grupēšana',
- 'groupings' => 'Grupas',
- 'grouping-categories' => 'Grupēšanas kategorijas',
+ 'activity' => 'Aktivitāte',
+ 'age' => 'Vecums',
+ 'agent' => 'Aģents',
+ 'alive' => 'Alive',
+ 'announce-url' => 'Paziņot URL',
+ 'announce-url-desc' => 'Lūdzu, izmantojiet iepriekš norādīto URL, veidojot jaunu torrent. Ja jūs vēlaties izmantot savu torrent bez tās lejupielādes no vietnes, jums ir jāiestata privātais karogs un avots: source',
+ 'announce-url-desc-url' => 'Ir problēmas? Skatiet mūsu ceļvedi ŠEIT',
+ 'announce-url-desc2' => 'TMDB un IMDB ir nepieciešami visiem attēliem! To izmanto, lai greifers Plakātus / Backdrops un ExtraInfo',
+ 'approved' => 'Apstiprināts',
+ 'audio' => 'Audio',
+ 'bon-tipped' => 'BON nostiprināts',
+ 'bookmark' => 'Grāmatzīme',
+ 'bookmarks' => 'Grāmatzīmes',
+ 'bump' => 'Bump',
+ 'cant-upload' => 'Kļūda: jūsu augšupielādes tiesības ir atspējotas',
+ 'cant-upload-desc' => 'Ja jūtaties kā kļūda, lūdzu, sazinieties ar personālu',
+ 'cards' => 'Kartes',
+ 'cards-view' => 'Torrent karšu skats',
+ 'categories' => 'Kategorijas',
+ 'category' => 'Kategorija',
+ 'client' => 'Klients',
+ 'commited' => 'Iesaistīts',
+ 'completed' => 'Pabeigts',
+ 'completed_at' => 'Pabeigts',
+ 'completed-not-seeding' => 'Jūs esat pabeidzis šo lejupielādi, bet vairs nenotiek',
+ 'created_at' => 'Izveidots vietnē',
+ 'credited' => 'Kreditēts',
+ 'current' => 'Pašreizējais',
+ 'current-filters' => 'Pašreizējie filtri',
+ 'currently-leeching' => 'Pašlaik Leeching',
+ 'currently-seeding' => 'Pašlaik sēšana',
+ 'dead-torrent' => 'Dead Torrent',
+ 'dead-torrents' => 'Dead Torrents',
+ 'delete-bookmark' => 'Dzēst šo grāmatzīmi',
+ 'description' => 'Apraksts',
+ 'discounts' => 'Atlaides',
+ 'double-upload' => 'Dubultā augšupielāde',
+ 'download-all' => 'Lejupielādēt visu',
+ 'download-check' => 'Lejupielādes pārbaude',
+ 'downloaded' => 'Lejupielādēts',
+ 'dying-torrent' => 'Dying Torrent',
+ 'dying-torrents' => 'Mirstošie straumi',
+ 'encode-settings' => 'Kodēt iestatījumus',
+ 'estimated-ratio' => 'Aprēķinātā attiecība pēc lejupielādes',
+ 'failed' => 'Neizdevās',
+ 'feature' => 'Funkcija',
+ 'featured' => 'Ieteicams',
+ 'featured-desc' => 'Piedāvātie straumi ir 100% bezmaksas un Dubultā augšupielāde!',
+ 'featured-until' => 'Tas ir populārs Torrent Līdz',
+ 'file' => 'Fails',
+ 'filters' => 'Filtri',
+ 'fl-tokens-left' => 'Tev ir : žetoni palikuši',
+ 'freeleech' => 'Freeleech',
+ 'freeleech-token' => 'Freeleech Token',
+ 'general' => 'Vispārīgi',
+ 'genre' => 'Žanrs',
+ 'global-double-upload' => 'Globālā dubultā augšupielāde',
+ 'global-freeleech' => 'Global Freeleech',
+ 'grant' => 'Dotācija',
+ 'greater-than' => 'Lielāks nekā',
+ 'grouping' => 'Grupēšana',
+ 'groupings' => 'Grupas',
+ 'grouping-categories' => 'Grupēšanas kategorijas',
'grouping-categories-desc' => 'Kādu kategoriju vēlaties grupēt?',
- 'grouping-results' => 'Rezultātu grupēšana',
- 'groupings-view' => 'Grupu skats',
- 'have-completed' => 'Pabeigts',
- 'have-downloaded' => 'Lejupielādēts',
- 'have-not-completed' => 'Nav pabeigta',
- 'have-not-downloaded' => 'Nav lejupielādēts',
- 'health' => 'Veselība',
- 'history' => 'Vēsture',
- 'hitrun' => 'H&R?',
- 'hit-and-runs' => 'Rezultāts un skrējiens',
- 'immune' => 'Imūns?',
- 'info' => 'Informācija',
- 'internal' => 'Iekšējais',
- 'internal-release' => 'Iekšējā atbrīvošana',
- 'last-seed-activity' => 'Pēdējā sēklu darbība',
- 'last-seeder' => 'Jūs esat pēdējais palikušais sējējs! (lejupielādēts vismaz 3 reizes)',
- 'last-update' => 'Pēdējā atjaunošana',
- 'leave-tip' => 'Atstājiet galu',
- 'leecher' => 'Leecher',
- 'leechers' => 'Leechers',
- 'leeching' => 'Leeching',
- 'left' => 'Pa kreisi',
- 'legendary-seeder' => 'Leģendārais sējmašīna',
- 'legendary-torrent' => 'Leģendārais torrent',
- 'list' => 'Saraksts',
- 'me' => 'Es',
- 'media-info' => 'MediaInfo',
- 'media-info-parser' => 'MediaInfo Parser',
- 'media-info-paste' => 'Ielīmējiet MediaInfo izgāztuvi šeit',
- 'meta-desc' => 'Lejupielāde: nosaukums maksimālā ātrumā',
- 'moderation' => 'Mērenība',
- 'movies' => 'Filmas',
- 'mvp' => 'MVP',
- 'my-active-torrents' => 'Manas aktīvās straumes',
- 'name' => 'Nosaukums',
- 'no-bookmarks' => 'Grāmatzīmes nav atrastas.',
- 'no-discounts' => 'Pašlaik atlaides nav',
- 'no-meta' => 'Nav atrasts neviens metadats',
- 'no-privileges' => 'Jūs nevarat lejupielādēt šo failu - lūdzu, pārbaudiet tālāk, lai iegūtu vairāk informācijas',
- 'no-privileges-desc' => 'Lūdzu, atrisiniet neveiksmīgos iepriekšminētos rezultātus, lai parādītu lejupielādes pogu',
- 'not-completed' => 'Uzsākta lejupielāde, bet nekad nav pabeigta',
- 'not-downloaded' => 'Nav lejupielādēts',
- 'old-torrent' => 'Vecā torrent',
- 'optional' => 'Neobligāti',
- 'original-output' => 'Rādīt / slēpt sākotnējo izvadi',
- 'participant' => 'Dalībnieks',
- 'passed' => 'Nodots',
- 'peers' => 'Kolēģi',
- 'pending' => 'Gaida',
- 'personal-freeleech' => 'Personīgā Freeleech',
- 'poster' => 'Plakāts',
- 'poster-view' => 'Plakāta skats',
- 'posters' => 'Plakāti',
- 'prewarn' => 'Paredzēts?',
- 'progress' => 'Progress',
- 'quick-comment' => 'Ātrais komentārs',
- 'quick-tip' => 'Ātro galu summas',
- 'rated' => 'Novērtēts',
- 'rating' => 'Reitings',
- 'ready' => 'Šis fails ir gatavs lejupielādei',
- 'rejected' => 'Noraidīts',
- 'released' => 'Atbrīvots',
- 'remaining' => 'Atlikušais',
- 'request-reseed' => 'Pieprasīt Reseed',
- 'requires-reseed' => 'Nepieciešama Reseed',
- 'resurrections' => 'Augšāmcelšanās',
- 'revoke' => 'Atcelt',
- 'rss' => 'RSS',
- 'runtime' => 'Runtime',
- 'satisfied_in' => 'Apmierināts',
- 'say-thanks' => 'Lūdzu, atcerieties pateikt pateicību un sēklas tik ilgi, cik vien iespējams',
- 'sd-content' => 'SD saturs',
- 'search' => 'Meklēt',
- 'seed-time' => 'Sēklu laiks',
- 'seeder' => 'Sējmašīna',
- 'seeders' => 'Sējmašīnas',
- 'seeding' => 'Sēšana',
- 'seedsize' => 'Seedsize',
- 'seedtime' => 'Seedtime',
- 'short-completed' => 'C',
- 'short-leechs' => 'L',
- 'short-seeds' => 'S',
- 'show-files' => 'Rādīt failus',
- 'similar' => 'Līdzīgi straumi',
- 'size' => 'Izmērs',
- 'special' => 'Īpašs',
- 'special-freeleech' => 'Īpašais Freeleech',
- 'started' => 'Sākta',
- 'status' => 'Statuss',
- 'statistics' => 'Statistika',
- 'stats' => 'Statistika',
- 'sticky' => 'Sticky',
- 'stream-optimized' => 'Plūsma optimizēta',
- 'subtitle' => 'Apakšvirsraksts',
- 'team-player' => 'Komandas spēlētājs',
- 'thank' => 'Paldies',
- 'thanked' => 'Pateicās',
- 'thanks' => 'Paldies',
- 'thanks-given' => 'Paldies',
- 'times' => 'Laiki',
- 'tip-jar' => 'Tipa burka',
- 'title' => 'Nosaukums',
- 'titles' => 'Nosaukumi',
- 'top-completed' => 'Tops pabeigts',
- 'top-dead' => 'Top miris',
- 'top-dying' => 'Augšā mirst',
- 'top-leeched' => 'Augšējā dēle',
- 'top-seeded' => 'Augšējais sēj',
- 'torrent' => 'Torrent',
- 'torrent-request' => 'Torrent pieprasījums',
- 'torrent-tips' => 'Kopā : kopējais BON ir novirzīts augšupielādētājam, no kura : lietotājs ir no jums',
- 'torrent-tips-desc' => 'Tas tiks atskaitīts no jūsu pieejamajiem bonusa punktiem',
- 'torrents' => 'Torrents',
- 'trailer' => 'Skatīt piekabi',
- 'type' => 'Tips',
- 'types' => 'Veidi',
- 'unbookmark' => 'Atzīmējiet atzīmi',
- 'unsatisfieds' => 'Neapmierināti',
- 'unsticky' => 'Unsticky',
- 'updated' => 'Atjaunināts',
- 'updated_at' => 'Atjaunināts vietnē',
- 'uploaded' => 'Augšupielādēts',
- 'uploaded-by' => 'Augšupielādējis',
- 'uploader' => 'Augšupielādētājs',
- 'use-fl-token' => 'Izmantojiet Freeleech Token',
- 'video' => 'Video',
- 'view-more' => 'Skatīt vairāk',
- 'view-trailer' => 'Skatīt piekabi',
- 'votes' => 'Balsis',
+ 'grouping-results' => 'Rezultātu grupēšana',
+ 'groupings-view' => 'Grupu skats',
+ 'have-completed' => 'Pabeigts',
+ 'have-downloaded' => 'Lejupielādēts',
+ 'have-not-completed' => 'Nav pabeigta',
+ 'have-not-downloaded' => 'Nav lejupielādēts',
+ 'health' => 'Veselība',
+ 'history' => 'Vēsture',
+ 'hitrun' => 'H&R?',
+ 'hit-and-runs' => 'Rezultāts un skrējiens',
+ 'immune' => 'Imūns?',
+ 'info' => 'Informācija',
+ 'internal' => 'Iekšējais',
+ 'internal-release' => 'Iekšējā atbrīvošana',
+ 'last-seed-activity' => 'Pēdējā sēklu darbība',
+ 'last-seeder' => 'Jūs esat pēdējais palikušais sējējs! (lejupielādēts vismaz 3 reizes)',
+ 'last-update' => 'Pēdējā atjaunošana',
+ 'leave-tip' => 'Atstājiet galu',
+ 'leecher' => 'Leecher',
+ 'leechers' => 'Leechers',
+ 'leeching' => 'Leeching',
+ 'left' => 'Pa kreisi',
+ 'legendary-seeder' => 'Leģendārais sējmašīna',
+ 'legendary-torrent' => 'Leģendārais torrent',
+ 'list' => 'Saraksts',
+ 'me' => 'Es',
+ 'media-info' => 'MediaInfo',
+ 'media-info-parser' => 'MediaInfo Parser',
+ 'media-info-paste' => 'Ielīmējiet MediaInfo izgāztuvi šeit',
+ 'meta-desc' => 'Lejupielāde: nosaukums maksimālā ātrumā',
+ 'moderation' => 'Mērenība',
+ 'movies' => 'Filmas',
+ 'mvp' => 'MVP',
+ 'my-active-torrents' => 'Manas aktīvās straumes',
+ 'name' => 'Nosaukums',
+ 'no-bookmarks' => 'Grāmatzīmes nav atrastas.',
+ 'no-discounts' => 'Pašlaik atlaides nav',
+ 'no-meta' => 'Nav atrasts neviens metadats',
+ 'no-privileges' => 'Jūs nevarat lejupielādēt šo failu - lūdzu, pārbaudiet tālāk, lai iegūtu vairāk informācijas',
+ 'no-privileges-desc' => 'Lūdzu, atrisiniet neveiksmīgos iepriekšminētos rezultātus, lai parādītu lejupielādes pogu',
+ 'not-completed' => 'Uzsākta lejupielāde, bet nekad nav pabeigta',
+ 'not-downloaded' => 'Nav lejupielādēts',
+ 'old-torrent' => 'Vecā torrent',
+ 'optional' => 'Neobligāti',
+ 'original-output' => 'Rādīt / slēpt sākotnējo izvadi',
+ 'participant' => 'Dalībnieks',
+ 'passed' => 'Nodots',
+ 'peers' => 'Kolēģi',
+ 'pending' => 'Gaida',
+ 'personal-freeleech' => 'Personīgā Freeleech',
+ 'poster' => 'Plakāts',
+ 'poster-view' => 'Plakāta skats',
+ 'posters' => 'Plakāti',
+ 'prewarn' => 'Paredzēts?',
+ 'progress' => 'Progress',
+ 'quick-comment' => 'Ātrais komentārs',
+ 'quick-tip' => 'Ātro galu summas',
+ 'rated' => 'Novērtēts',
+ 'rating' => 'Reitings',
+ 'ready' => 'Šis fails ir gatavs lejupielādei',
+ 'rejected' => 'Noraidīts',
+ 'released' => 'Atbrīvots',
+ 'remaining' => 'Atlikušais',
+ 'request-reseed' => 'Pieprasīt Reseed',
+ 'requires-reseed' => 'Nepieciešama Reseed',
+ 'resurrections' => 'Augšāmcelšanās',
+ 'revoke' => 'Atcelt',
+ 'rss' => 'RSS',
+ 'runtime' => 'Runtime',
+ 'satisfied_in' => 'Apmierināts',
+ 'say-thanks' => 'Lūdzu, atcerieties pateikt pateicību un sēklas tik ilgi, cik vien iespējams',
+ 'sd-content' => 'SD saturs',
+ 'search' => 'Meklēt',
+ 'seed-time' => 'Sēklu laiks',
+ 'seeder' => 'Sējmašīna',
+ 'seeders' => 'Sējmašīnas',
+ 'seeding' => 'Sēšana',
+ 'seedsize' => 'Seedsize',
+ 'seedtime' => 'Seedtime',
+ 'short-completed' => 'C',
+ 'short-leechs' => 'L',
+ 'short-seeds' => 'S',
+ 'show-files' => 'Rādīt failus',
+ 'similar' => 'Līdzīgi straumi',
+ 'size' => 'Izmērs',
+ 'special' => 'Īpašs',
+ 'special-freeleech' => 'Īpašais Freeleech',
+ 'started' => 'Sākta',
+ 'status' => 'Statuss',
+ 'statistics' => 'Statistika',
+ 'stats' => 'Statistika',
+ 'sticky' => 'Sticky',
+ 'stream-optimized' => 'Plūsma optimizēta',
+ 'subtitle' => 'Apakšvirsraksts',
+ 'team-player' => 'Komandas spēlētājs',
+ 'thank' => 'Paldies',
+ 'thanked' => 'Pateicās',
+ 'thanks' => 'Paldies',
+ 'thanks-given' => 'Paldies',
+ 'times' => 'Laiki',
+ 'tip-jar' => 'Tipa burka',
+ 'title' => 'Nosaukums',
+ 'titles' => 'Nosaukumi',
+ 'top-completed' => 'Tops pabeigts',
+ 'top-dead' => 'Top miris',
+ 'top-dying' => 'Augšā mirst',
+ 'top-leeched' => 'Augšējā dēle',
+ 'top-seeded' => 'Augšējais sēj',
+ 'torrent' => 'Torrent',
+ 'torrent-request' => 'Torrent pieprasījums',
+ 'torrent-tips' => 'Kopā : kopējais BON ir novirzīts augšupielādētājam, no kura : lietotājs ir no jums',
+ 'torrent-tips-desc' => 'Tas tiks atskaitīts no jūsu pieejamajiem bonusa punktiem',
+ 'torrents' => 'Torrents',
+ 'trailer' => 'Skatīt piekabi',
+ 'type' => 'Tips',
+ 'types' => 'Veidi',
+ 'unbookmark' => 'Atzīmējiet atzīmi',
+ 'unsatisfieds' => 'Neapmierināti',
+ 'unsticky' => 'Unsticky',
+ 'updated' => 'Atjaunināts',
+ 'updated_at' => 'Atjaunināts vietnē',
+ 'uploaded' => 'Augšupielādēts',
+ 'uploaded-by' => 'Augšupielādējis',
+ 'uploader' => 'Augšupielādētājs',
+ 'use-fl-token' => 'Izmantojiet Freeleech Token',
+ 'video' => 'Video',
+ 'view-more' => 'Skatīt vairāk',
+ 'view-trailer' => 'Skatīt piekabi',
+ 'votes' => 'Balsis',
];
diff --git a/lang/lv/user.php b/lang/lv/user.php
index 4f674d4d6..4847c59d1 100644
--- a/lang/lv/user.php
+++ b/lang/lv/user.php
@@ -12,316 +12,316 @@
*/
return [
- 'about' => 'Par',
- 'about-me' => 'Par mani',
- 'accepted-at' => 'Pieņemts',
- 'accepted-by' => 'Pieņemts',
- 'account-notification' => 'Konta paziņojumu iestatījumi',
- 'account-notification-follow' => 'Saņemiet paziņojumu, kad lietotājs seko jūsu kontam',
- 'account-notification-unfollow' => 'Saņemiet paziņojumu, kad lietotājs pārtrauc jūsu kontu',
- 'account-notification-help' => 'Kontrolējiet, kuri paziņojumi ir nosūtīti saistībā ar jūsu kontu. Šie iestatījumi tiek ignorēti, ja neļaujat nevienai grupai nosūtīt paziņojumus par jūsu kontu vai ja jūs atspējojat paziņojumus',
- 'account-settings' => 'Konta iestatījumi',
- 'achievement-privacy' => 'Sasniegumu iestatījumi',
- 'achievement-privacy-list' => 'Ļauj lietotājiem skatīt jūsu sasniegumu sarakstu',
- 'achievement-help' => 'Kontrolējiet konkrētas sasniegumu informācijas apmaiņu ar grupām, kurām ir atļauts piekļūt jūsu profilam. Šie iestatījumi tiek ignorēti, ja neļaujat nevienai grupai piekļūt jūsu sasniegumiem vai ja dodaties privātajā režīmā',
- 'achievements' => 'Sasniegumi',
- 'active' => 'Aktīvs',
- 'active-table' => 'Mana aktīvā tabula',
- 'active-torrents' => 'Aktīvie straumi',
- 'active-warning' => 'Aktīvais brīdinājums',
- 'active-warnings' => 'Aktīvie brīdinājumi',
- 'add-seedbox' => 'Pievienot sēklu kasti',
- 'all-torrents' => 'Visi torrenti',
- 'article-comments' => 'Raksta komentāri',
- 'avatar' => 'Avatar',
- 'avg-seedtime' => 'Vidējais laiks',
- 'badges' => 'Nozīmītes',
- 'ban' => 'Aizliegt lietotāju',
- 'ban-log' => 'Ban Log',
- 'become-hidden' => 'Kļūsti slēpts',
- 'become-visible' => 'Kļūsti redzams',
- 'bon' => 'BON',
- 'bon-notification' => 'BON paziņojumu iestatījumi',
- 'bon-notification-gift' => 'Saņemiet paziņojumu, kad lietotājs dāvā jums bonus',
- 'bon-notification-help' => 'Kontrolējiet, kuri paziņojumi ir nosūtīti par BON darījumiem. Šie iestatījumi tiek ignorēti, ja nevienai grupai nav atļauts nosūtīt paziņojumus par BON vai ja jūs atspējojat paziņojumus',
- 'bookmarks' => 'Grāmatzīmes',
- 'bounty-given' => 'Bounty Given',
- 'bounty-received' => 'Bounty Saņemts',
- 'can-chat' => 'Var tērzēt',
- 'can-comment' => 'Var komentēt',
- 'can-download' => 'Var lejupielādēt',
- 'can-invite' => 'Var uzaicināt',
- 'can-request' => 'Var pieprasīt',
- 'can-upload' => 'Var augšupielādēt',
- 'certified-banker' => 'Sertificēts bankas darbinieks',
- 'certified-banker-desc' => 'Ir 50 000 vai vairāk BON bankā',
- 'certified-downloader' => 'Sertificēts Downloader',
- 'certified-downloader-desc' => 'Lejupielādēts 100 vai vairāk torrentu!',
- 'certified-seeder' => 'Sertificēts sējmašīna',
- 'certified-seeder-desc' => 'Sējas 150 vai vairāk straumju!',
- 'change-email' => 'Mainīt e-pastu',
- 'change-email-help' => 'Pēc e-pasta maiņas jums būs atkārtoti jāapstiprina jūsu konts',
- 'change-password' => 'Mainīt paroli',
- 'change-password-help' => 'Pēc paroles maiņas jums būs jāreģistrējas vēlreiz',
- 'client-ip-address' => 'Klienta IP adrese',
- 'code' => 'Kods',
- 'comments' => 'Komentāri',
- 'created-on' => 'Izveidots',
- 'credited-download' => 'Kreditēta lejupielāde',
- 'credited-upload' => 'Kreditēts augšupielāde',
- 'current-password' => 'Pašreizējā parole',
- 'custom-title' => 'Pielāgots nosaukums',
- 'delete' => 'Dzēst lietotāju',
- 'disable-notifications' => 'Atspējot paziņojumus',
- 'disclaimer' => 'Atruna',
- 'disclaimer-info' => 'Mēs pēc noklusējuma neierakstām lietotāju IP adreses, piemēram, vairumu. Pievienojot jūsu sēklas kastes IP, ir sagaidāms, ka jūs zināt, ka turpmāk uzskaitītie IP tagad ir saglabāti mūsu datu bāzē, ja vien neizdzēsīsiet ierakstus.',
- 'disclaimer-info-bordered' => 'Pievienotie Seedbox IP pēc tam aktivizēs ātrgaitas torrent tagu torrentiem, kas sēklas no tālāk uzskaitītajiem IP',
- 'download-bon' => 'Lejupielāde noņemta no BON veikala',
- 'download-recorded' => 'Ierakstītā lejupielāde',
- 'download-true' => 'True Download',
- 'downloads' => 'Lejupielādes',
- 'edit' => 'Rediģēt lietotāju',
- 'edit-profile' => 'Rediģēt profilu',
- 'enable-notifications' => 'Iespējot paziņojumus',
- 'expired' => 'Beidzies',
- 'expires-on' => 'Beigu termiņš',
- 'extra' => 'Papildus',
- 'filled-request' => 'Pieprasītie deputātu pieprasījumi',
- 'follow' => 'Sekojiet',
- 'follower-privacy' => 'Sekotāju iestatījumi',
- 'follower-privacy-list' => 'Ļauj lietotājiem skatīt jūsu sekotāju sarakstu',
- 'follower-help' => 'Kontrolējiet konkrētas sekotāju saistītās informācijas koplietošanu ar grupām, kurām atļauts piekļūt jūsu profilam. Šie iestatījumi tiek ignorēti, ja neļaujat nevienai grupai piekļūt saviem sekotājiem vai ja dodaties privātajā režīmā',
- 'followers' => 'Sekotāji',
- 'following-notification' => 'Sekojošie lietotāja paziņojumu iestatījumi',
- 'following-notification-upload' => 'Saņemiet paziņojumu, kad sekotais lietotājs augšupielādē torrent',
- 'following-notification-help' => 'Kontrolējiet, kuri paziņojumi ir nosūtīti saistībā ar lietotāja vietnes darbībām. Šie iestatījumi tiek ignorēti, ja neļaujat nevienai grupai nosūtīt paziņojumus par sekojošiem lietotājiem vai ja jūs atspējojat paziņojumus',
- 'formats-are-supported' => ': tiek atbalstīti formāti',
- 'forum-notification' => 'Foruma paziņojumu iestatījumi',
- 'forum-notification-topic' => 'Saņemiet paziņojumu, kad tēma, kuru sākāt, saņem jaunu ziņu',
- 'forum-notification-help' => 'Kontrolējiet, kuri paziņojumi ir nosūtīti saistībā ar foruma darbībām. Šie iestatījumi tiek ignorēti, ja neļaujat nevienai grupai nosūtīt paziņojumus par foruma aktivitātēm vai ja jūs atspējojat paziņojumus',
- 'forum-privacy' => 'Foruma iestatījumi',
- 'forum-privacy-post' => 'Ļaujiet lietotājiem apskatīt jūsu publicēto foruma ziņu sarakstu',
- 'forum-privacy-topic' => 'Ļaujiet lietotājiem skatīt forumu tēmu sarakstu, ko esat sācis',
- 'forum-help' => 'Kontrolējiet konkrētas foruma statistikas un informācijas koplietošanu ar grupām, kurām atļauts piekļūt jūsu profilam. Šie iestatījumi tiek ignorēti, ja neļaujat nevienai grupai piekļūt jūsu forumam saistītai statistikai un informācijai vai ja dodaties privātajā režīmā',
- 'forum-signature' => 'Foruma paraksts',
- 'forums' => 'Forums',
- 'general' => 'Vispārīgi',
- 'general-settings' => 'Vispārīgie iestatījumi',
- 'gift-given' => 'Dāvanu dāvana',
- 'gift-received' => 'Dāvanu saņēma',
- 'go-public' => 'Iet publiski',
- 'go-private' => 'Iet uz privātu',
- 'history' => 'Vēsture',
- 'history-table' => 'Manas vēstures tabula',
- 'hit-n-runs' => 'Rezultāts un braucieni',
- 'hit-n-runs-count' => 'Rezultātu un palaišanas skaits (visu laiku)',
- 'hit-n-runs-history' => 'Torrent Hit un darbojas vēsturē',
- 'image' => 'Attēls',
- 'important' => 'Svarīgs',
- 'important-info' => 'Svarīga informācija',
- 'information' => 'Informācija',
- 'invite-friend' => 'Uzaiciniet savu draugu (e-pasts + pieprasītais ziņojums)',
- 'invite-tree' => 'Uzaicināt koku',
- 'invites' => 'Uzaicina',
- 'invites-banned' => 'Kļūda: Jūsu ielūguma tiesības ir atspējotas',
- 'invites-banned-desc' => 'Ja jūtaties, ka tā ir kļūda, lūdzu, sazinieties ar personālu!',
- 'invites-count' => 'Jums ir: skaits Uzaicināt žetoni',
- 'invites-disabled' => 'Uzmanību! Uzaicinājumi ir atspējoti atvērtas reģistrācijas dēļ!',
- 'invites-disabled-desc' => 'Lūdzu, pārbaudiet drīz!',
- 'invites-rules' => '- Uzaiciniet tikai tos cilvēkus, kurus zināt un uzticat.
- Jūs esat personīgi atbildīgs par tiem, kurus jūs uzaicināt.
- Dont uzaicināt sevi, mēs pārbaudām katru uzaicināto lietotāju.
- Nepārdodiet vai nepārdodiet uzaicinājumus.
- Ja persona, kurai jūs uzaicinājāt, tiek nozvejota krāpšana, tirdzniecības konts vai pārdošanas / tirdzniecības uzaicinājumi, jums tiks brīdināts.
',
- 'invites-send' => 'Uzaicina nosūtīt',
- 'last-login' => 'Pēdējā pieteikšanās',
- 'locked' => 'Slēgta',
- 'locked-achievements' => 'Slēgtie sasniegumi',
- 'member-since' => 'Biedrs kopš',
- 'members-desc' => 'Reģistrēto lietotāju saraksts: nosaukums ar visām grupām. Atrast lietotāju tagad.',
- 'mention-notification' => '@Minēšanas paziņojuma iestatījumi',
+ 'about' => 'Par',
+ 'about-me' => 'Par mani',
+ 'accepted-at' => 'Pieņemts',
+ 'accepted-by' => 'Pieņemts',
+ 'account-notification' => 'Konta paziņojumu iestatījumi',
+ 'account-notification-follow' => 'Saņemiet paziņojumu, kad lietotājs seko jūsu kontam',
+ 'account-notification-unfollow' => 'Saņemiet paziņojumu, kad lietotājs pārtrauc jūsu kontu',
+ 'account-notification-help' => 'Kontrolējiet, kuri paziņojumi ir nosūtīti saistībā ar jūsu kontu. Šie iestatījumi tiek ignorēti, ja neļaujat nevienai grupai nosūtīt paziņojumus par jūsu kontu vai ja jūs atspējojat paziņojumus',
+ 'account-settings' => 'Konta iestatījumi',
+ 'achievement-privacy' => 'Sasniegumu iestatījumi',
+ 'achievement-privacy-list' => 'Ļauj lietotājiem skatīt jūsu sasniegumu sarakstu',
+ 'achievement-help' => 'Kontrolējiet konkrētas sasniegumu informācijas apmaiņu ar grupām, kurām ir atļauts piekļūt jūsu profilam. Šie iestatījumi tiek ignorēti, ja neļaujat nevienai grupai piekļūt jūsu sasniegumiem vai ja dodaties privātajā režīmā',
+ 'achievements' => 'Sasniegumi',
+ 'active' => 'Aktīvs',
+ 'active-table' => 'Mana aktīvā tabula',
+ 'active-torrents' => 'Aktīvie straumi',
+ 'active-warning' => 'Aktīvais brīdinājums',
+ 'active-warnings' => 'Aktīvie brīdinājumi',
+ 'add-seedbox' => 'Pievienot sēklu kasti',
+ 'all-torrents' => 'Visi torrenti',
+ 'article-comments' => 'Raksta komentāri',
+ 'avatar' => 'Avatar',
+ 'avg-seedtime' => 'Vidējais laiks',
+ 'badges' => 'Nozīmītes',
+ 'ban' => 'Aizliegt lietotāju',
+ 'ban-log' => 'Ban Log',
+ 'become-hidden' => 'Kļūsti slēpts',
+ 'become-visible' => 'Kļūsti redzams',
+ 'bon' => 'BON',
+ 'bon-notification' => 'BON paziņojumu iestatījumi',
+ 'bon-notification-gift' => 'Saņemiet paziņojumu, kad lietotājs dāvā jums bonus',
+ 'bon-notification-help' => 'Kontrolējiet, kuri paziņojumi ir nosūtīti par BON darījumiem. Šie iestatījumi tiek ignorēti, ja nevienai grupai nav atļauts nosūtīt paziņojumus par BON vai ja jūs atspējojat paziņojumus',
+ 'bookmarks' => 'Grāmatzīmes',
+ 'bounty-given' => 'Bounty Given',
+ 'bounty-received' => 'Bounty Saņemts',
+ 'can-chat' => 'Var tērzēt',
+ 'can-comment' => 'Var komentēt',
+ 'can-download' => 'Var lejupielādēt',
+ 'can-invite' => 'Var uzaicināt',
+ 'can-request' => 'Var pieprasīt',
+ 'can-upload' => 'Var augšupielādēt',
+ 'certified-banker' => 'Sertificēts bankas darbinieks',
+ 'certified-banker-desc' => 'Ir 50 000 vai vairāk BON bankā',
+ 'certified-downloader' => 'Sertificēts Downloader',
+ 'certified-downloader-desc' => 'Lejupielādēts 100 vai vairāk torrentu!',
+ 'certified-seeder' => 'Sertificēts sējmašīna',
+ 'certified-seeder-desc' => 'Sējas 150 vai vairāk straumju!',
+ 'change-email' => 'Mainīt e-pastu',
+ 'change-email-help' => 'Pēc e-pasta maiņas jums būs atkārtoti jāapstiprina jūsu konts',
+ 'change-password' => 'Mainīt paroli',
+ 'change-password-help' => 'Pēc paroles maiņas jums būs jāreģistrējas vēlreiz',
+ 'client-ip-address' => 'Klienta IP adrese',
+ 'code' => 'Kods',
+ 'comments' => 'Komentāri',
+ 'created-on' => 'Izveidots',
+ 'credited-download' => 'Kreditēta lejupielāde',
+ 'credited-upload' => 'Kreditēts augšupielāde',
+ 'current-password' => 'Pašreizējā parole',
+ 'custom-title' => 'Pielāgots nosaukums',
+ 'delete' => 'Dzēst lietotāju',
+ 'disable-notifications' => 'Atspējot paziņojumus',
+ 'disclaimer' => 'Atruna',
+ 'disclaimer-info' => 'Mēs pēc noklusējuma neierakstām lietotāju IP adreses, piemēram, vairumu. Pievienojot jūsu sēklas kastes IP, ir sagaidāms, ka jūs zināt, ka turpmāk uzskaitītie IP tagad ir saglabāti mūsu datu bāzē, ja vien neizdzēsīsiet ierakstus.',
+ 'disclaimer-info-bordered' => 'Pievienotie Seedbox IP pēc tam aktivizēs ātrgaitas torrent tagu torrentiem, kas sēklas no tālāk uzskaitītajiem IP',
+ 'download-bon' => 'Lejupielāde noņemta no BON veikala',
+ 'download-recorded' => 'Ierakstītā lejupielāde',
+ 'download-true' => 'True Download',
+ 'downloads' => 'Lejupielādes',
+ 'edit' => 'Rediģēt lietotāju',
+ 'edit-profile' => 'Rediģēt profilu',
+ 'enable-notifications' => 'Iespējot paziņojumus',
+ 'expired' => 'Beidzies',
+ 'expires-on' => 'Beigu termiņš',
+ 'extra' => 'Papildus',
+ 'filled-request' => 'Pieprasītie deputātu pieprasījumi',
+ 'follow' => 'Sekojiet',
+ 'follower-privacy' => 'Sekotāju iestatījumi',
+ 'follower-privacy-list' => 'Ļauj lietotājiem skatīt jūsu sekotāju sarakstu',
+ 'follower-help' => 'Kontrolējiet konkrētas sekotāju saistītās informācijas koplietošanu ar grupām, kurām atļauts piekļūt jūsu profilam. Šie iestatījumi tiek ignorēti, ja neļaujat nevienai grupai piekļūt saviem sekotājiem vai ja dodaties privātajā režīmā',
+ 'followers' => 'Sekotāji',
+ 'following-notification' => 'Sekojošie lietotāja paziņojumu iestatījumi',
+ 'following-notification-upload' => 'Saņemiet paziņojumu, kad sekotais lietotājs augšupielādē torrent',
+ 'following-notification-help' => 'Kontrolējiet, kuri paziņojumi ir nosūtīti saistībā ar lietotāja vietnes darbībām. Šie iestatījumi tiek ignorēti, ja neļaujat nevienai grupai nosūtīt paziņojumus par sekojošiem lietotājiem vai ja jūs atspējojat paziņojumus',
+ 'formats-are-supported' => ': tiek atbalstīti formāti',
+ 'forum-notification' => 'Foruma paziņojumu iestatījumi',
+ 'forum-notification-topic' => 'Saņemiet paziņojumu, kad tēma, kuru sākāt, saņem jaunu ziņu',
+ 'forum-notification-help' => 'Kontrolējiet, kuri paziņojumi ir nosūtīti saistībā ar foruma darbībām. Šie iestatījumi tiek ignorēti, ja neļaujat nevienai grupai nosūtīt paziņojumus par foruma aktivitātēm vai ja jūs atspējojat paziņojumus',
+ 'forum-privacy' => 'Foruma iestatījumi',
+ 'forum-privacy-post' => 'Ļaujiet lietotājiem apskatīt jūsu publicēto foruma ziņu sarakstu',
+ 'forum-privacy-topic' => 'Ļaujiet lietotājiem skatīt forumu tēmu sarakstu, ko esat sācis',
+ 'forum-help' => 'Kontrolējiet konkrētas foruma statistikas un informācijas koplietošanu ar grupām, kurām atļauts piekļūt jūsu profilam. Šie iestatījumi tiek ignorēti, ja neļaujat nevienai grupai piekļūt jūsu forumam saistītai statistikai un informācijai vai ja dodaties privātajā režīmā',
+ 'forum-signature' => 'Foruma paraksts',
+ 'forums' => 'Forums',
+ 'general' => 'Vispārīgi',
+ 'general-settings' => 'Vispārīgie iestatījumi',
+ 'gift-given' => 'Dāvanu dāvana',
+ 'gift-received' => 'Dāvanu saņēma',
+ 'go-public' => 'Iet publiski',
+ 'go-private' => 'Iet uz privātu',
+ 'history' => 'Vēsture',
+ 'history-table' => 'Manas vēstures tabula',
+ 'hit-n-runs' => 'Rezultāts un braucieni',
+ 'hit-n-runs-count' => 'Rezultātu un palaišanas skaits (visu laiku)',
+ 'hit-n-runs-history' => 'Torrent Hit un darbojas vēsturē',
+ 'image' => 'Attēls',
+ 'important' => 'Svarīgs',
+ 'important-info' => 'Svarīga informācija',
+ 'information' => 'Informācija',
+ 'invite-friend' => 'Uzaiciniet savu draugu (e-pasts + pieprasītais ziņojums)',
+ 'invite-tree' => 'Uzaicināt koku',
+ 'invites' => 'Uzaicina',
+ 'invites-banned' => 'Kļūda: Jūsu ielūguma tiesības ir atspējotas',
+ 'invites-banned-desc' => 'Ja jūtaties, ka tā ir kļūda, lūdzu, sazinieties ar personālu!',
+ 'invites-count' => 'Jums ir: skaits Uzaicināt žetoni',
+ 'invites-disabled' => 'Uzmanību! Uzaicinājumi ir atspējoti atvērtas reģistrācijas dēļ!',
+ 'invites-disabled-desc' => 'Lūdzu, pārbaudiet drīz!',
+ 'invites-rules' => '- Uzaiciniet tikai tos cilvēkus, kurus zināt un uzticat.
- Jūs esat personīgi atbildīgs par tiem, kurus jūs uzaicināt.
- Dont uzaicināt sevi, mēs pārbaudām katru uzaicināto lietotāju.
- Nepārdodiet vai nepārdodiet uzaicinājumus.
- Ja persona, kurai jūs uzaicinājāt, tiek nozvejota krāpšana, tirdzniecības konts vai pārdošanas / tirdzniecības uzaicinājumi, jums tiks brīdināts.
',
+ 'invites-send' => 'Uzaicina nosūtīt',
+ 'last-login' => 'Pēdējā pieteikšanās',
+ 'locked' => 'Slēgta',
+ 'locked-achievements' => 'Slēgtie sasniegumi',
+ 'member-since' => 'Biedrs kopš',
+ 'members-desc' => 'Reģistrēto lietotāju saraksts: nosaukums ar visām grupām. Atrast lietotāju tagad.',
+ 'mention-notification' => '@Minēšanas paziņojuma iestatījumi',
'mention-notification-article-comment' => 'Saņemiet paziņojumu, kad esat rakstījis rakstu komentārā',
'mention-notification-torrent-comment' => 'Saņemiet paziņojumu, kad esat komentējis torrentu komentāru',
'mention-notification-request-comment' => 'Saņemiet paziņojumu, kad esat pieprasījis komentāru',
- 'mention-notification-forum-post' => 'Saņemiet paziņojumu, kad jūs esat @ @ minēts foruma ziņojumā',
- 'mention-notification-help' => 'Kontrolējiet, kuri paziņojumi tiek nosūtīti, kad lietotājs @mentions jums. Šie iestatījumi tiek ignorēti, ja nevienai grupai nav atļauts nosūtīt paziņojumus, ja lietotājs @mentions jūs vai ja atspējojat paziņojumus',
- 'moderated-by' => 'Moderē: mod on',
- 'my-bonus-points' => 'Mani bonusa punkti',
- 'my-bookmarks' => 'Manas grāmatzīmes',
- 'my-fl-tokens' => 'Mani FL marķieri',
- 'my-general-settings' => 'Mani vispārējie iestatījumi',
- 'my-notification' => 'Mans paziņojums',
- 'my-notification-settings' => 'Mani paziņojumu iestatījumi',
- 'my-privacy' => 'Mana konfidencialitāte',
- 'my-privacy-settings' => 'Mani konfidencialitātes iestatījumi',
- 'my-profile' => 'Mans profils',
- 'my-requested' => 'Mans pieprasītais',
- 'my-security' => 'Mana drošība',
- 'my-security-settings' => 'Mani drošības iestatījumi',
- 'my-seedboxes' => 'Mani sēklas kastes',
- 'my-settings' => 'Mani iestatījumi',
- 'my-wishlist' => 'Mans vēlmju saraksts',
- 'no-logs' => 'Šī lietotāja datu bāzē nav ielūgumu žurnālu!',
- 'no-seedboxes' => 'Nav sēklu kastes 😔',
- 'not-authorized' => 'Jums nav tiesību skatīt šo lapu. Šis dalībnieks dod priekšroku, lai būtu paslēpts kā ninja!',
- 'note' => 'Piezīme',
- 'notification' => 'Paziņojums',
- 'notification-settings' => 'Paziņojuma iestatījumi',
- 'notification-from-account' => 'Saņemt konta paziņojumus no',
- 'notification-from-account-help' => 'Jūs saņemsiet tikai konta paziņojumus no sistēmas, darbiniekiem un šādām grupām. Šie iestatījumi tiek ignorēti, ja atspējojat paziņojumus',
- 'notification-from-bon' => 'Saņemt BON paziņojumus no',
- 'notification-from-bon-help' => 'BON paziņojumus saņemsiet tikai no sistēmas, darbiniekiem un šādām grupām. Šie iestatījumi tiek ignorēti, ja atspējojat paziņojumus',
- 'notification-from-following' => 'Saņemt sekojošus lietotāja paziņojumus no',
- 'notification-from-following-help' => 'Sekojošu lietotāju paziņojumus saņemsiet tikai no šādām grupām. Šie iestatījumi tiek ignorēti, ja atspējojat paziņojumus',
- 'notification-from-forum' => 'Saņemt foruma paziņojumus no',
- 'notification-from-forum-help' => 'Jūs saņemsiet tikai foruma paziņojumus no sistēmas, darbiniekiem un šādām grupām. Šie iestatījumi tiek ignorēti, ja atspējojat paziņojumus',
- 'notification-from-subscription' => 'Saņemt abonēšanas paziņojumus no',
- 'notification-from-subscription-help' => 'Jūs saņemsiet tikai foruma paziņojumus no sistēmas, darbiniekiem un šādām grupām. Šie iestatījumi tiek ignorēti, ja atspējojat paziņojumus',
- 'notification-from-torrent' => 'Saņemt Torrent paziņojumus no',
- 'notification-from-torrent-help' => 'Tu saņemsi paziņojumus tikai no sistēmas, darbiniekiem un šādām grupām. Šie iestatījumi tiek ignorēti, ja atspējojat paziņojumus',
- 'notification-from-mention' => 'Saņemt paziņojumus no @Mention',
- 'notification-from-mention-help' => 'Jūs saņemsiet tikai @mention paziņojumus no sistēmas, darbiniekiem un šādām grupām. Šie iestatījumi tiek ignorēti, ja atspējojat paziņojumus',
- 'notification-from-request' => 'Saņemt pieprasījuma paziņojumus no',
- 'notification-from-request-help' => 'Jūs saņemsiet tikai paziņojumus no sistēmas, darbiniekiem un šādām grupām. Šie iestatījumi tiek ignorēti, ja atspējojat paziņojumus',
- 'notifications' => 'Paziņojumi',
- 'offline' => 'Lietotājs ir bezsaistē!',
- 'online' => 'Lietotājs ir tiešsaistē!',
- 'options' => 'Iespējas',
- 'other-help' => 'Kontrolējiet citu statistikas un informācijas koplietošanu ar grupām, kurām atļauts piekļūt jūsu profilam. Šie iestatījumi tiek ignorēti, ja neļaujat nevienai grupai piekļūt savai citai statistikai un informācijai vai ja dodaties privātajā režīmā',
- 'other-privacy' => 'Citi iestatījumi',
- 'other-privacy-online' => 'Ļauj lietotājiem redzēt jūs tiešsaistes lietotāju blokā',
- 'passkey' => 'PID',
- 'passkey-warning' => 'PID ir tāda pati kā jūsu parole.',
- 'pending-achievements' => 'Gaidāmie sasniegumi',
- 'per-torrent' => 'Per Torrent',
- 'posts' => 'Ziņojumi',
- 'posts-posted' => 'Foruma ziņojumi',
- 'privacy' => 'Privātums',
- 'privacy-settings' => 'Privātuma iestatījumi',
- 'private-info' => 'Privātā informācija',
- 'private-forum-profile' => 'Uzmanību: šis deputātu temats un vēstures vēsture ir iestatīta PRIVĀTAM!',
- 'private-profile' => 'Uzmanību: šis profils ir iestatīts PRIVĀTĀ!',
- 'profile' => 'Profils',
- 'profile-desc' => 'Lietotājs: lietotāja profils reģistrēts: title',
- 'profile-privacy' => 'Profila iestatījumi',
- 'profile-privacy-torrent-count' => 'Koplietojiet savu kopējo lejupielāžu, augšupielāžu, sēklu un dēļu skaitu',
- 'profile-privacy-torrent-ratio' => 'Koplietojiet kopējos augšupielādes / lejupielādes datus kopā ar reģistrēto attiecību',
- 'profile-privacy-torrent-seed' => 'Koplietojiet kopējo sēšanas laiku un vidējo rādītāju',
- 'profile-privacy-title' => 'Kopīgojiet savu personisko nosaukumu informāciju',
- 'profile-privacy-about' => 'Dalieties savā personīgajā informācijā par mani',
- 'profile-privacy-bon-extra' => 'Koplietojiet savu BON statistiku',
- 'profile-privacy-comment-extra' => 'Koplietojiet savu komentāru statistiku',
- 'profile-privacy-forum-extra' => 'Koplietojiet savu foruma statistiku',
- 'profile-privacy-request-extra' => 'Kopīgojiet pieprasījumu statistiku',
- 'profile-privacy-torrent-extra' => 'Koplietojiet jūsu torrent statistiku',
- 'profile-privacy-badge' => 'Koplietojiet nopelnītās nozīmītes',
- 'profile-privacy-achievement' => 'Koplietojiet savus nesenos sasniegumus',
- 'profile-privacy-follower' => 'Koplietojiet savus pēdējos sekotājus',
- 'profile-privacy-warning' => 'Koplietojiet savus H&R brīdinājumus',
- 'profile-privacy-help' => 'Kontrolējiet, kāda statistika un informācija parādās jūsu profilā. Šie iestatījumi tiek ignorēti, ja neļaujat nevienai grupai piekļūt savam profilam vai ja dodaties privātajā režīmā',
- 'public-info' => 'Publiska informācija',
- 'recent-achievements' => 'Jaunākie sasniegumi',
- 'recent-followers' => 'Jaunākie sekotāji',
- 'registration-date' => 'Reģistrācijas datums',
- 'report' => 'Ziņojums',
- 'request-help' => 'Kontrolējiet ar konkrētu pieprasījumu saistītās statistikas un informācijas koplietošanu ar grupām, kurām atļauts piekļūt jūsu profilam. Šie iestatījumi tiek ignorēti, ja neļaujat nevienai grupai piekļūt jūsu pieprasītajai saistītajai statistikai un informācijai vai ja jūs dodaties privātajā režīmā',
- 'request' => 'Pieprasījums',
- 'requested' => 'Pieprasīta',
- 'requests' => 'Pieprasījumi',
- 'request-comments' => 'Pieprasīt komentārus',
- 'request-notification' => 'Pieprasīt paziņojumu iestatījumus',
- 'request-notification-bounty' => 'Saņemiet paziņojumu, kad pieprasītais torrent saņem jaunu devumu',
- 'request-notification-comment' => 'Saņemiet paziņojumu, kad pieprasītais torrent saņem jaunu komentāru',
- 'request-notification-fill' => 'Saņemiet paziņojumu, kad piepildīta pieprasītā torrent',
- 'request-notification-fill-approve' => 'Saņemiet paziņojumu, kad tiek apstiprināta pieprasītā torrent aizpildīšana',
- 'request-notification-fill-reject' => 'Saņemiet paziņojumu, kad pieprasītā torrent aizpildīšana tiek noraidīta',
- 'request-notification-claim' => 'Saņemiet paziņojumu, kad tiek pieprasīts pieprasītais torrent',
- 'request-notification-unclaim' => 'Saņemiet paziņojumu, kad pieprasītā torrent tiek pieprasīta',
- 'request-notification-help' => 'Kontrolējiet, kuri paziņojumi tiek nosūtīti saistībā ar pieprasījuma darbībām. Šie iestatījumi tiek ignorēti, ja neļaujat nevienai grupai nosūtīt paziņojumus par pieprasījumu darbībām vai ja jūs atspējojat paziņojumus',
- 'request-privacy' => 'Pieprasījuma iestatījumi',
- 'request-privacy-requested' => 'Ļaujiet lietotājiem skatīt pieprasījumu sarakstu',
- 'reset-passkey' => 'Atjaunot piekļuves atslēgu (PID)',
- 'reset-passkey-help' => 'Pēc PID atiestatīšanas jums būs atkārtoti jāielādē / jāielādē visi jūsu aktīvie straumi',
- 'reset-rss' => 'Atjaunot RSS atslēgu (RID)',
- 'reset-rss-help' => 'Pēc RID atiestatīšanas jums būs jāielādē visas aktīvās RSS plūsmas',
- 'resurrections' => 'Augšāmcelšanās',
- 'search' => 'Ātra meklēšana pēc lietotājvārda',
- 'security' => 'Drošība',
- 'security-settings' => 'Drošības iestatījumi',
- 'seedboxes' => 'Sēklu kastes',
- 'seeds' => 'Sēklas',
- 'send-invite' => 'Sūtīt ielūgumu',
- 'sender' => 'Sūtītājs',
- 'settings' => 'Iestatījumi',
- 'show-passkey' => 'Rādīt PID',
- 'staff-noted' => 'Personāls atzīmēja kontu',
- 'statistics' => 'Statistika',
- 'subscription-notification' => 'Abonēšanas paziņojumu iestatījumi',
- 'subscription-notification-forum' => 'Saņemiet paziņojumu, kad abonēts forums saņem jaunu tēmu',
- 'subscription-notification-topic' => 'Saņemiet paziņojumu, kad abonētā tēma saņem jaunu ziņu',
- 'subscription-notification-help' => 'Kontrolējiet, kuri paziņojumi ir nosūtīti saistībā ar jūsu abonementiem. Šie iestatījumi tiek ignorēti, ja nevienai grupai nav atļauts nosūtīt paziņojumus par jūsu abonementiem vai ja jūs atspējojat paziņojumus',
- 'thanks-given' => 'Paldies',
- 'thanks-received' => 'Paldies',
- 'tips-given' => 'Padomi sniegti',
- 'tips-received' => 'Saņemtie padomi',
- 'title' => 'Nosaukums',
- 'top-bankers' => 'Populārākie bankas darbinieki',
- 'top-downloaders-data' => 'Top Downloaders (dati)',
- 'top-leechers' => 'Top Leechers',
- 'top-leechers-count' => 'Top Leechers (Count)',
- 'top-seeders' => 'Top sējmašīnas',
- 'top-seeders-count' => 'Top sējmašīnas (skaits)',
- 'top-seeding-size' => 'Augšējā sēšana (izmērs)',
- 'top-seedtime' => 'Top Seedtime',
- 'top-uploaders-data' => 'Augšākie augšupielādētāji (dati)',
- 'top-uploaders-count' => 'Augšējie augšupielādētāji (skaits)',
- 'topics' => 'Tēmas',
- 'topics-started' => 'Sāktas foruma tēmas',
- 'torrent-comments' => 'Torrent Komentāri Made',
- 'torrent-help' => 'Kontrolējiet konkrētas torrent saistītās statistikas un informācijas koplietošanu ar grupām, kurām atļauts piekļūt jūsu profilam. Šie iestatījumi tiek ignorēti, ja neļaujat nevienai grupai piekļūt jūsu statistikai un informācijai, kas saistīta ar torrentu, vai ja jūs dodaties privātajā režīmā',
- 'torrent-notification' => 'Torrent paziņojumu iestatījumi',
- 'torrent-notification-comment' => 'Saņemiet paziņojumu, kad augšupielādētais torrent saņem jaunu komentāru',
- 'torrent-notification-thank' => 'Saņemiet paziņojumu, kad augšupielādētais torrent saņem jaunu pateicību',
- 'torrent-notification-tip' => 'Saņemiet paziņojumu, kad augšupielādētais torrent saņem jaunu tipu',
- 'torrent-notification-help' => 'Kontrolējiet, kuri paziņojumi ir nosūtīti par torrent darbībām. Šie iestatījumi tiek ignorēti, ja neļaujat nevienai grupai nosūtīt paziņojumus par torrent darbībām vai ja jūs atspējojat paziņojumus',
- 'torrent-privacy' => 'Torrent iestatījumi',
- 'torrent-privacy-download' => 'Ļauj lietotājiem skatīt lejupielādēto straumju sarakstu',
- 'torrent-privacy-upload' => 'Ļauj lietotājiem skatīt augšupielādēto straumju sarakstu',
- 'torrent-privacy-peer' => 'Ļauj lietotājiem redzēt tevi torrent peer history tabulā',
- 'torrents' => 'Torrents',
- 'torrents-history' => 'Torentu vēsture',
- 'total-download' => 'Kopējais lejupielāde',
- 'total-downloads' => 'Lejupielādes',
- 'total-leeching' => 'Kopā Leeching',
- 'total-seeding' => 'Kopējā sēšana',
- 'total-seedtime' => 'Kopējais sēklas laiks',
- 'total-upload' => 'Kopējais augšupielāde',
- 'total-uploads' => 'Kopējais augšupielāžu skaits',
- 'unban' => 'Unban Lietotājs',
- 'unfollow' => 'Atsakieties',
- 'unlocked' => 'Atslēgts',
- 'unlocked-achievements' => 'Atslēgti sasniegumi',
- 'unsatisfieds' => 'Neapmierināti',
- 'upload-bon' => 'Augšupielādēts no BON veikala',
- 'upload-recorded' => 'Ierakstītais augšupielāde',
- 'upload-true' => 'True Upload',
- 'uploads' => 'Augšupielādes',
- 'uploads-table' => 'Augšupielādes tabula',
- 'user' => 'Lietotājs',
- 'user-id' => 'Lietotāja ID',
- 'username-seedbox' => 'Lietotājvārds Seedbox',
- 'visible-to-achievement' => 'Sasniedzamie sasniegumi',
- 'visible-to-achievement-help' => 'Jūsu sasniegumi būs redzami tikai darbiniekiem un šādām grupām. Šie iestatījumi tiek ignorēti, ja dodaties privātajā režīmā',
- 'visible-to-follower' => 'Sekotāji redzami',
- 'visible-to-follower-help' => 'Jūsu sekotāji būs redzami tikai darbiniekiem un šādām grupām. Šie iestatījumi tiek ignorēti, ja dodaties privātajā režīmā',
- 'visible-to-forum' => 'Informācija par forumu ir redzama',
- 'visible-to-forum-help' => 'Jūsu foruma informācija būs redzama tikai darbiniekiem un šādām grupām. Šie iestatījumi tiek ignorēti, ja dodaties privātajā režīmā',
- 'visible-to-other' => 'Citi redzami',
- 'visible-to-other-help' => 'Cita informācija par jūsu kontu būs redzama tikai darbiniekiem un šādām grupām. Šie iestatījumi tiek ignorēti, ja dodaties privātajā režīmā vai slēpjat',
- 'visible-to-profile' => 'Profils redzams',
- 'visible-to-profile-help' => 'Jūsu profils būs redzams tikai darbiniekiem un šādām grupām. Šie iestatījumi tiek ignorēti, ja dodaties privātajā režīmā',
- 'visible-to-request' => 'Pieprasīt informāciju, kas redzama',
- 'visible-to-request-help' => 'Jūsu pieprasījuma informācija būs redzama tikai darbiniekiem un šādām grupām. Šie iestatījumi tiek ignorēti, ja dodaties privātajā režīmā',
- 'visible-to-torrent' => 'Torrent informācija redzama',
- 'visible-to-torrent-help' => 'Jūsu torrent informācija būs redzama tikai darbiniekiem un šādām grupām. Šie iestatījumi tiek ignorēti, ja dodaties privātajā režīmā vai slēpjat',
- 'warned-on' => 'Brīdinājums ir ieslēgts',
- 'warning' => 'Brīdinājums',
- 'warning-log' => 'Brīdinājuma žurnāls',
- 'wishlist' => 'Vēlmju saraksts',
+ 'mention-notification-forum-post' => 'Saņemiet paziņojumu, kad jūs esat @ @ minēts foruma ziņojumā',
+ 'mention-notification-help' => 'Kontrolējiet, kuri paziņojumi tiek nosūtīti, kad lietotājs @mentions jums. Šie iestatījumi tiek ignorēti, ja nevienai grupai nav atļauts nosūtīt paziņojumus, ja lietotājs @mentions jūs vai ja atspējojat paziņojumus',
+ 'moderated-by' => 'Moderē: mod on',
+ 'my-bonus-points' => 'Mani bonusa punkti',
+ 'my-bookmarks' => 'Manas grāmatzīmes',
+ 'my-fl-tokens' => 'Mani FL marķieri',
+ 'my-general-settings' => 'Mani vispārējie iestatījumi',
+ 'my-notification' => 'Mans paziņojums',
+ 'my-notification-settings' => 'Mani paziņojumu iestatījumi',
+ 'my-privacy' => 'Mana konfidencialitāte',
+ 'my-privacy-settings' => 'Mani konfidencialitātes iestatījumi',
+ 'my-profile' => 'Mans profils',
+ 'my-requested' => 'Mans pieprasītais',
+ 'my-security' => 'Mana drošība',
+ 'my-security-settings' => 'Mani drošības iestatījumi',
+ 'my-seedboxes' => 'Mani sēklas kastes',
+ 'my-settings' => 'Mani iestatījumi',
+ 'my-wishlist' => 'Mans vēlmju saraksts',
+ 'no-logs' => 'Šī lietotāja datu bāzē nav ielūgumu žurnālu!',
+ 'no-seedboxes' => 'Nav sēklu kastes 😔',
+ 'not-authorized' => 'Jums nav tiesību skatīt šo lapu. Šis dalībnieks dod priekšroku, lai būtu paslēpts kā ninja!',
+ 'note' => 'Piezīme',
+ 'notification' => 'Paziņojums',
+ 'notification-settings' => 'Paziņojuma iestatījumi',
+ 'notification-from-account' => 'Saņemt konta paziņojumus no',
+ 'notification-from-account-help' => 'Jūs saņemsiet tikai konta paziņojumus no sistēmas, darbiniekiem un šādām grupām. Šie iestatījumi tiek ignorēti, ja atspējojat paziņojumus',
+ 'notification-from-bon' => 'Saņemt BON paziņojumus no',
+ 'notification-from-bon-help' => 'BON paziņojumus saņemsiet tikai no sistēmas, darbiniekiem un šādām grupām. Šie iestatījumi tiek ignorēti, ja atspējojat paziņojumus',
+ 'notification-from-following' => 'Saņemt sekojošus lietotāja paziņojumus no',
+ 'notification-from-following-help' => 'Sekojošu lietotāju paziņojumus saņemsiet tikai no šādām grupām. Šie iestatījumi tiek ignorēti, ja atspējojat paziņojumus',
+ 'notification-from-forum' => 'Saņemt foruma paziņojumus no',
+ 'notification-from-forum-help' => 'Jūs saņemsiet tikai foruma paziņojumus no sistēmas, darbiniekiem un šādām grupām. Šie iestatījumi tiek ignorēti, ja atspējojat paziņojumus',
+ 'notification-from-subscription' => 'Saņemt abonēšanas paziņojumus no',
+ 'notification-from-subscription-help' => 'Jūs saņemsiet tikai foruma paziņojumus no sistēmas, darbiniekiem un šādām grupām. Šie iestatījumi tiek ignorēti, ja atspējojat paziņojumus',
+ 'notification-from-torrent' => 'Saņemt Torrent paziņojumus no',
+ 'notification-from-torrent-help' => 'Tu saņemsi paziņojumus tikai no sistēmas, darbiniekiem un šādām grupām. Šie iestatījumi tiek ignorēti, ja atspējojat paziņojumus',
+ 'notification-from-mention' => 'Saņemt paziņojumus no @Mention',
+ 'notification-from-mention-help' => 'Jūs saņemsiet tikai @mention paziņojumus no sistēmas, darbiniekiem un šādām grupām. Šie iestatījumi tiek ignorēti, ja atspējojat paziņojumus',
+ 'notification-from-request' => 'Saņemt pieprasījuma paziņojumus no',
+ 'notification-from-request-help' => 'Jūs saņemsiet tikai paziņojumus no sistēmas, darbiniekiem un šādām grupām. Šie iestatījumi tiek ignorēti, ja atspējojat paziņojumus',
+ 'notifications' => 'Paziņojumi',
+ 'offline' => 'Lietotājs ir bezsaistē!',
+ 'online' => 'Lietotājs ir tiešsaistē!',
+ 'options' => 'Iespējas',
+ 'other-help' => 'Kontrolējiet citu statistikas un informācijas koplietošanu ar grupām, kurām atļauts piekļūt jūsu profilam. Šie iestatījumi tiek ignorēti, ja neļaujat nevienai grupai piekļūt savai citai statistikai un informācijai vai ja dodaties privātajā režīmā',
+ 'other-privacy' => 'Citi iestatījumi',
+ 'other-privacy-online' => 'Ļauj lietotājiem redzēt jūs tiešsaistes lietotāju blokā',
+ 'passkey' => 'PID',
+ 'passkey-warning' => 'PID ir tāda pati kā jūsu parole.',
+ 'pending-achievements' => 'Gaidāmie sasniegumi',
+ 'per-torrent' => 'Per Torrent',
+ 'posts' => 'Ziņojumi',
+ 'posts-posted' => 'Foruma ziņojumi',
+ 'privacy' => 'Privātums',
+ 'privacy-settings' => 'Privātuma iestatījumi',
+ 'private-info' => 'Privātā informācija',
+ 'private-forum-profile' => 'Uzmanību: šis deputātu temats un vēstures vēsture ir iestatīta PRIVĀTAM!',
+ 'private-profile' => 'Uzmanību: šis profils ir iestatīts PRIVĀTĀ!',
+ 'profile' => 'Profils',
+ 'profile-desc' => 'Lietotājs: lietotāja profils reģistrēts: title',
+ 'profile-privacy' => 'Profila iestatījumi',
+ 'profile-privacy-torrent-count' => 'Koplietojiet savu kopējo lejupielāžu, augšupielāžu, sēklu un dēļu skaitu',
+ 'profile-privacy-torrent-ratio' => 'Koplietojiet kopējos augšupielādes / lejupielādes datus kopā ar reģistrēto attiecību',
+ 'profile-privacy-torrent-seed' => 'Koplietojiet kopējo sēšanas laiku un vidējo rādītāju',
+ 'profile-privacy-title' => 'Kopīgojiet savu personisko nosaukumu informāciju',
+ 'profile-privacy-about' => 'Dalieties savā personīgajā informācijā par mani',
+ 'profile-privacy-bon-extra' => 'Koplietojiet savu BON statistiku',
+ 'profile-privacy-comment-extra' => 'Koplietojiet savu komentāru statistiku',
+ 'profile-privacy-forum-extra' => 'Koplietojiet savu foruma statistiku',
+ 'profile-privacy-request-extra' => 'Kopīgojiet pieprasījumu statistiku',
+ 'profile-privacy-torrent-extra' => 'Koplietojiet jūsu torrent statistiku',
+ 'profile-privacy-badge' => 'Koplietojiet nopelnītās nozīmītes',
+ 'profile-privacy-achievement' => 'Koplietojiet savus nesenos sasniegumus',
+ 'profile-privacy-follower' => 'Koplietojiet savus pēdējos sekotājus',
+ 'profile-privacy-warning' => 'Koplietojiet savus H&R brīdinājumus',
+ 'profile-privacy-help' => 'Kontrolējiet, kāda statistika un informācija parādās jūsu profilā. Šie iestatījumi tiek ignorēti, ja neļaujat nevienai grupai piekļūt savam profilam vai ja dodaties privātajā režīmā',
+ 'public-info' => 'Publiska informācija',
+ 'recent-achievements' => 'Jaunākie sasniegumi',
+ 'recent-followers' => 'Jaunākie sekotāji',
+ 'registration-date' => 'Reģistrācijas datums',
+ 'report' => 'Ziņojums',
+ 'request-help' => 'Kontrolējiet ar konkrētu pieprasījumu saistītās statistikas un informācijas koplietošanu ar grupām, kurām atļauts piekļūt jūsu profilam. Šie iestatījumi tiek ignorēti, ja neļaujat nevienai grupai piekļūt jūsu pieprasītajai saistītajai statistikai un informācijai vai ja jūs dodaties privātajā režīmā',
+ 'request' => 'Pieprasījums',
+ 'requested' => 'Pieprasīta',
+ 'requests' => 'Pieprasījumi',
+ 'request-comments' => 'Pieprasīt komentārus',
+ 'request-notification' => 'Pieprasīt paziņojumu iestatījumus',
+ 'request-notification-bounty' => 'Saņemiet paziņojumu, kad pieprasītais torrent saņem jaunu devumu',
+ 'request-notification-comment' => 'Saņemiet paziņojumu, kad pieprasītais torrent saņem jaunu komentāru',
+ 'request-notification-fill' => 'Saņemiet paziņojumu, kad piepildīta pieprasītā torrent',
+ 'request-notification-fill-approve' => 'Saņemiet paziņojumu, kad tiek apstiprināta pieprasītā torrent aizpildīšana',
+ 'request-notification-fill-reject' => 'Saņemiet paziņojumu, kad pieprasītā torrent aizpildīšana tiek noraidīta',
+ 'request-notification-claim' => 'Saņemiet paziņojumu, kad tiek pieprasīts pieprasītais torrent',
+ 'request-notification-unclaim' => 'Saņemiet paziņojumu, kad pieprasītā torrent tiek pieprasīta',
+ 'request-notification-help' => 'Kontrolējiet, kuri paziņojumi tiek nosūtīti saistībā ar pieprasījuma darbībām. Šie iestatījumi tiek ignorēti, ja neļaujat nevienai grupai nosūtīt paziņojumus par pieprasījumu darbībām vai ja jūs atspējojat paziņojumus',
+ 'request-privacy' => 'Pieprasījuma iestatījumi',
+ 'request-privacy-requested' => 'Ļaujiet lietotājiem skatīt pieprasījumu sarakstu',
+ 'reset-passkey' => 'Atjaunot piekļuves atslēgu (PID)',
+ 'reset-passkey-help' => 'Pēc PID atiestatīšanas jums būs atkārtoti jāielādē / jāielādē visi jūsu aktīvie straumi',
+ 'reset-rss' => 'Atjaunot RSS atslēgu (RID)',
+ 'reset-rss-help' => 'Pēc RID atiestatīšanas jums būs jāielādē visas aktīvās RSS plūsmas',
+ 'resurrections' => 'Augšāmcelšanās',
+ 'search' => 'Ātra meklēšana pēc lietotājvārda',
+ 'security' => 'Drošība',
+ 'security-settings' => 'Drošības iestatījumi',
+ 'seedboxes' => 'Sēklu kastes',
+ 'seeds' => 'Sēklas',
+ 'send-invite' => 'Sūtīt ielūgumu',
+ 'sender' => 'Sūtītājs',
+ 'settings' => 'Iestatījumi',
+ 'show-passkey' => 'Rādīt PID',
+ 'staff-noted' => 'Personāls atzīmēja kontu',
+ 'statistics' => 'Statistika',
+ 'subscription-notification' => 'Abonēšanas paziņojumu iestatījumi',
+ 'subscription-notification-forum' => 'Saņemiet paziņojumu, kad abonēts forums saņem jaunu tēmu',
+ 'subscription-notification-topic' => 'Saņemiet paziņojumu, kad abonētā tēma saņem jaunu ziņu',
+ 'subscription-notification-help' => 'Kontrolējiet, kuri paziņojumi ir nosūtīti saistībā ar jūsu abonementiem. Šie iestatījumi tiek ignorēti, ja nevienai grupai nav atļauts nosūtīt paziņojumus par jūsu abonementiem vai ja jūs atspējojat paziņojumus',
+ 'thanks-given' => 'Paldies',
+ 'thanks-received' => 'Paldies',
+ 'tips-given' => 'Padomi sniegti',
+ 'tips-received' => 'Saņemtie padomi',
+ 'title' => 'Nosaukums',
+ 'top-bankers' => 'Populārākie bankas darbinieki',
+ 'top-downloaders-data' => 'Top Downloaders (dati)',
+ 'top-leechers' => 'Top Leechers',
+ 'top-leechers-count' => 'Top Leechers (Count)',
+ 'top-seeders' => 'Top sējmašīnas',
+ 'top-seeders-count' => 'Top sējmašīnas (skaits)',
+ 'top-seeding-size' => 'Augšējā sēšana (izmērs)',
+ 'top-seedtime' => 'Top Seedtime',
+ 'top-uploaders-data' => 'Augšākie augšupielādētāji (dati)',
+ 'top-uploaders-count' => 'Augšējie augšupielādētāji (skaits)',
+ 'topics' => 'Tēmas',
+ 'topics-started' => 'Sāktas foruma tēmas',
+ 'torrent-comments' => 'Torrent Komentāri Made',
+ 'torrent-help' => 'Kontrolējiet konkrētas torrent saistītās statistikas un informācijas koplietošanu ar grupām, kurām atļauts piekļūt jūsu profilam. Šie iestatījumi tiek ignorēti, ja neļaujat nevienai grupai piekļūt jūsu statistikai un informācijai, kas saistīta ar torrentu, vai ja jūs dodaties privātajā režīmā',
+ 'torrent-notification' => 'Torrent paziņojumu iestatījumi',
+ 'torrent-notification-comment' => 'Saņemiet paziņojumu, kad augšupielādētais torrent saņem jaunu komentāru',
+ 'torrent-notification-thank' => 'Saņemiet paziņojumu, kad augšupielādētais torrent saņem jaunu pateicību',
+ 'torrent-notification-tip' => 'Saņemiet paziņojumu, kad augšupielādētais torrent saņem jaunu tipu',
+ 'torrent-notification-help' => 'Kontrolējiet, kuri paziņojumi ir nosūtīti par torrent darbībām. Šie iestatījumi tiek ignorēti, ja neļaujat nevienai grupai nosūtīt paziņojumus par torrent darbībām vai ja jūs atspējojat paziņojumus',
+ 'torrent-privacy' => 'Torrent iestatījumi',
+ 'torrent-privacy-download' => 'Ļauj lietotājiem skatīt lejupielādēto straumju sarakstu',
+ 'torrent-privacy-upload' => 'Ļauj lietotājiem skatīt augšupielādēto straumju sarakstu',
+ 'torrent-privacy-peer' => 'Ļauj lietotājiem redzēt tevi torrent peer history tabulā',
+ 'torrents' => 'Torrents',
+ 'torrents-history' => 'Torentu vēsture',
+ 'total-download' => 'Kopējais lejupielāde',
+ 'total-downloads' => 'Lejupielādes',
+ 'total-leeching' => 'Kopā Leeching',
+ 'total-seeding' => 'Kopējā sēšana',
+ 'total-seedtime' => 'Kopējais sēklas laiks',
+ 'total-upload' => 'Kopējais augšupielāde',
+ 'total-uploads' => 'Kopējais augšupielāžu skaits',
+ 'unban' => 'Unban Lietotājs',
+ 'unfollow' => 'Atsakieties',
+ 'unlocked' => 'Atslēgts',
+ 'unlocked-achievements' => 'Atslēgti sasniegumi',
+ 'unsatisfieds' => 'Neapmierināti',
+ 'upload-bon' => 'Augšupielādēts no BON veikala',
+ 'upload-recorded' => 'Ierakstītais augšupielāde',
+ 'upload-true' => 'True Upload',
+ 'uploads' => 'Augšupielādes',
+ 'uploads-table' => 'Augšupielādes tabula',
+ 'user' => 'Lietotājs',
+ 'user-id' => 'Lietotāja ID',
+ 'username-seedbox' => 'Lietotājvārds Seedbox',
+ 'visible-to-achievement' => 'Sasniedzamie sasniegumi',
+ 'visible-to-achievement-help' => 'Jūsu sasniegumi būs redzami tikai darbiniekiem un šādām grupām. Šie iestatījumi tiek ignorēti, ja dodaties privātajā režīmā',
+ 'visible-to-follower' => 'Sekotāji redzami',
+ 'visible-to-follower-help' => 'Jūsu sekotāji būs redzami tikai darbiniekiem un šādām grupām. Šie iestatījumi tiek ignorēti, ja dodaties privātajā režīmā',
+ 'visible-to-forum' => 'Informācija par forumu ir redzama',
+ 'visible-to-forum-help' => 'Jūsu foruma informācija būs redzama tikai darbiniekiem un šādām grupām. Šie iestatījumi tiek ignorēti, ja dodaties privātajā režīmā',
+ 'visible-to-other' => 'Citi redzami',
+ 'visible-to-other-help' => 'Cita informācija par jūsu kontu būs redzama tikai darbiniekiem un šādām grupām. Šie iestatījumi tiek ignorēti, ja dodaties privātajā režīmā vai slēpjat',
+ 'visible-to-profile' => 'Profils redzams',
+ 'visible-to-profile-help' => 'Jūsu profils būs redzams tikai darbiniekiem un šādām grupām. Šie iestatījumi tiek ignorēti, ja dodaties privātajā režīmā',
+ 'visible-to-request' => 'Pieprasīt informāciju, kas redzama',
+ 'visible-to-request-help' => 'Jūsu pieprasījuma informācija būs redzama tikai darbiniekiem un šādām grupām. Šie iestatījumi tiek ignorēti, ja dodaties privātajā režīmā',
+ 'visible-to-torrent' => 'Torrent informācija redzama',
+ 'visible-to-torrent-help' => 'Jūsu torrent informācija būs redzama tikai darbiniekiem un šādām grupām. Šie iestatījumi tiek ignorēti, ja dodaties privātajā režīmā vai slēpjat',
+ 'warned-on' => 'Brīdinājums ir ieslēgts',
+ 'warning' => 'Brīdinājums',
+ 'warning-log' => 'Brīdinājuma žurnāls',
+ 'wishlist' => 'Vēlmju saraksts',
];
diff --git a/lang/lv/validation.php b/lang/lv/validation.php
index 647cc68b5..7320bc37f 100644
--- a/lang/lv/validation.php
+++ b/lang/lv/validation.php
@@ -23,108 +23,108 @@ return [
|
*/
- 'accepted' => ' :attribute ir jābūt pieņemtam.',
- 'active_url' => ' :attribute ir ar nederīgu linku.',
- 'after' => ' :attribute ir jābūt ar datumu pēc :datums.',
- 'after_or_equal' => ' :attribute ir jābūt ar datumu pēc vai vienādu ar :datums.',
- 'alpha' => ' :attribute var saturēt tikai burtus.',
- 'alpha_dash' => ' :attribute var saturēt tikai burtus, nummurus un atstarpes.',
- 'alpha_num' => ' :attribute var tikai saturēt burtus un nummurus.',
- 'array' => ' :attribute ir jābūt sakārtotam.',
- 'before' => ' :attribute ir jābūt ar datumu pirms :datums.',
- 'before_or_equal' => ' :attribute ir jābūt ar datumu pirms vai vienādu ar :datums.',
- 'between' => [
+ 'accepted' => ' :attribute ir jābūt pieņemtam.',
+ 'active_url' => ' :attribute ir ar nederīgu linku.',
+ 'after' => ' :attribute ir jābūt ar datumu pēc :datums.',
+ 'after_or_equal' => ' :attribute ir jābūt ar datumu pēc vai vienādu ar :datums.',
+ 'alpha' => ' :attribute var saturēt tikai burtus.',
+ 'alpha_dash' => ' :attribute var saturēt tikai burtus, nummurus un atstarpes.',
+ 'alpha_num' => ' :attribute var tikai saturēt burtus un nummurus.',
+ 'array' => ' :attribute ir jābūt sakārtotam.',
+ 'before' => ' :attribute ir jābūt ar datumu pirms :datums.',
+ 'before_or_equal' => ' :attribute ir jābūt ar datumu pirms vai vienādu ar :datums.',
+ 'between' => [
'numeric' => ' :attribute jābūt starp :min un :max.',
- 'file' => ' :attribute jābūt starp :min un :max kilobaiti.',
- 'string' => ' :attribute jābūt no :min līdz :max zīmēm.',
- 'array' => ' :attribute jābūt no :min līdz :max vienībām.',
+ 'file' => ' :attribute jābūt starp :min un :max kilobaiti.',
+ 'string' => ' :attribute jābūt no :min līdz :max zīmēm.',
+ 'array' => ' :attribute jābūt no :min līdz :max vienībām.',
],
- 'boolean' => ' :attribute laiciņam jābūt atbilstošam vai neatbilstošam.',
- 'confirmed' => ' :attribute apstiprinājums neatbilst.',
- 'date' => ' :attribute nav derīgs.',
- 'date_equals' => 'The :attribute must be a date equal to :date.',
- 'date_format' => ' :attribute neatbilst formātam :format.',
- 'different' => ' :attribute un :other ir jābūt citiem.',
- 'digits' => ' :attribute ir jābūt :digits ciparam.',
- 'digits_between' => ' :attribute ir jābūt :min un :max ciparam.',
- 'dimensions' => ' :attribute ir nederīgs attēla izmērs.',
- 'distinct' => ' :attribute laikam ir dubulta vērtība.',
- 'email' => ' :attribute derīgam e-pastam.',
- 'exists' => 'Izvēlētais :attribute ir nederīgs.',
- 'file' => ' :attribute jābūt failam.',
- 'filled' => ':attribute lauks ir nepieciešams.',
- 'gt' => [
+ 'boolean' => ' :attribute laiciņam jābūt atbilstošam vai neatbilstošam.',
+ 'confirmed' => ' :attribute apstiprinājums neatbilst.',
+ 'date' => ' :attribute nav derīgs.',
+ 'date_equals' => 'The :attribute must be a date equal to :date.',
+ 'date_format' => ' :attribute neatbilst formātam :format.',
+ 'different' => ' :attribute un :other ir jābūt citiem.',
+ 'digits' => ' :attribute ir jābūt :digits ciparam.',
+ 'digits_between' => ' :attribute ir jābūt :min un :max ciparam.',
+ 'dimensions' => ' :attribute ir nederīgs attēla izmērs.',
+ 'distinct' => ' :attribute laikam ir dubulta vērtība.',
+ 'email' => ' :attribute derīgam e-pastam.',
+ 'exists' => 'Izvēlētais :attribute ir nederīgs.',
+ 'file' => ' :attribute jābūt failam.',
+ 'filled' => ':attribute lauks ir nepieciešams.',
+ 'gt' => [
'numeric' => 'The :attribute must be greater than :value.',
- 'file' => 'The :attribute must be greater than :value kilobytes.',
- 'string' => 'The :attribute must be greater than :value characters.',
- 'array' => 'The :attribute must have more than :value items.',
+ 'file' => 'The :attribute must be greater than :value kilobytes.',
+ 'string' => 'The :attribute must be greater than :value characters.',
+ 'array' => 'The :attribute must have more than :value items.',
],
- 'gte' => [
+ 'gte' => [
'numeric' => 'The :attribute must be greater than or equal :value.',
- 'file' => 'The :attribute must be greater than or equal :value kilobytes.',
- 'string' => 'The :attribute must be greater than or equal :value characters.',
- 'array' => 'The :attribute must have :value items or more.',
+ 'file' => 'The :attribute must be greater than or equal :value kilobytes.',
+ 'string' => 'The :attribute must be greater than or equal :value characters.',
+ 'array' => 'The :attribute must have :value items or more.',
],
- 'image' => ' :attribute jābūt attēlam.',
- 'in' => 'Izvēlētais :attribute ir nederīgs.',
- 'in_array' => ' :attribute laiks neeksistē :cits.',
- 'integer' => ' :attribute ir jabūt skaitim.',
- 'ip' => ' :attribute jābūt derīgai IP adresei.',
- 'ipv4' => 'The :attribute must be a valid IPv4 address.',
- 'ipv6' => 'The :attribute must be a valid IPv6 address.',
- 'json' => ' :attribute jābūt derīgai JSON virknei.',
- 'lt' => [
+ 'image' => ' :attribute jābūt attēlam.',
+ 'in' => 'Izvēlētais :attribute ir nederīgs.',
+ 'in_array' => ' :attribute laiks neeksistē :cits.',
+ 'integer' => ' :attribute ir jabūt skaitim.',
+ 'ip' => ' :attribute jābūt derīgai IP adresei.',
+ 'ipv4' => 'The :attribute must be a valid IPv4 address.',
+ 'ipv6' => 'The :attribute must be a valid IPv6 address.',
+ 'json' => ' :attribute jābūt derīgai JSON virknei.',
+ 'lt' => [
'numeric' => 'The :attribute must be less than :value.',
- 'file' => 'The :attribute must be less than :value kilobytes.',
- 'string' => 'The :attribute must be less than :value characters.',
- 'array' => 'The :attribute must have less than :value items.',
+ 'file' => 'The :attribute must be less than :value kilobytes.',
+ 'string' => 'The :attribute must be less than :value characters.',
+ 'array' => 'The :attribute must have less than :value items.',
],
- 'lte' => [
+ 'lte' => [
'numeric' => 'The :attribute must be less than or equal :value.',
- 'file' => 'The :attribute must be less than or equal :value kilobytes.',
- 'string' => 'The :attribute must be less than or equal :value characters.',
- 'array' => 'The :attribute must not have more than :value items.',
+ 'file' => 'The :attribute must be less than or equal :value kilobytes.',
+ 'string' => 'The :attribute must be less than or equal :value characters.',
+ 'array' => 'The :attribute must not have more than :value items.',
],
- 'max' => [
+ 'max' => [
'numeric' => ' :attribute nedrīkst pārsniegt :max.',
- 'file' => ' :attribute nedrīkst pārsniegt :max kilobaiti.',
- 'string' => ' :attribute nedrīkst pārsniegt :max zīmes.',
- 'array' => ' :attribute nedrīkst pārsniegt :max vienības.',
+ 'file' => ' :attribute nedrīkst pārsniegt :max kilobaiti.',
+ 'string' => ' :attribute nedrīkst pārsniegt :max zīmes.',
+ 'array' => ' :attribute nedrīkst pārsniegt :max vienības.',
],
- 'mimes' => ' :attribute jābūt faila tipam: :values',
- 'mimetypes' => ' :attribute jābūt faile tipam: :values.',
- 'min' => [
+ 'mimes' => ' :attribute jābūt faila tipam: :values',
+ 'mimetypes' => ' :attribute jābūt faile tipam: :values.',
+ 'min' => [
'numeric' => ' :attribute jābūt vismaz :min.',
- 'file' => ' :attribute jābūt vismaz :min kilobaiti.',
- 'string' => ' :attribute jābūt vismaz :min zīmes.',
- 'array' => ' :attribute jāsatur vismaz :min vienības.',
+ 'file' => ' :attribute jābūt vismaz :min kilobaiti.',
+ 'string' => ' :attribute jābūt vismaz :min zīmes.',
+ 'array' => ' :attribute jāsatur vismaz :min vienības.',
],
- 'not_in' => ' izvēlieties :attribute ir nederīgs.',
- 'not_regex' => 'The :attribute format is invalid.',
- 'numeric' => ' :attribute jābūt skaitlim.',
- 'present' => ' :attribute laikums ir nepieciešams.',
- 'regex' => ' :attribute formāts ir nederīgs.',
- 'required' => ' :attribute laukums ir nepieciešams.',
- 'required_if' => ' :attribute laukums ir nepieciešams, ja vien :other ir :values.',
- 'required_unless' => ' :attribute laukums ir nepieciešams, ja vien :other ir :values.',
- 'required_with' => ' :attribute laukums ir nepieciešams, kad :values ir pieejama.',
- 'required_with_all' => ' :attribute laukums ir nepieciešams, kad :values ir pieejama.',
- 'required_without' => ' :attribute laukums ir nepieciešams, kad :values nav pieejama.',
+ 'not_in' => ' izvēlieties :attribute ir nederīgs.',
+ 'not_regex' => 'The :attribute format is invalid.',
+ 'numeric' => ' :attribute jābūt skaitlim.',
+ 'present' => ' :attribute laikums ir nepieciešams.',
+ 'regex' => ' :attribute formāts ir nederīgs.',
+ 'required' => ' :attribute laukums ir nepieciešams.',
+ 'required_if' => ' :attribute laukums ir nepieciešams, ja vien :other ir :values.',
+ 'required_unless' => ' :attribute laukums ir nepieciešams, ja vien :other ir :values.',
+ 'required_with' => ' :attribute laukums ir nepieciešams, kad :values ir pieejama.',
+ 'required_with_all' => ' :attribute laukums ir nepieciešams, kad :values ir pieejama.',
+ 'required_without' => ' :attribute laukums ir nepieciešams, kad :values nav pieejama.',
'required_without_all' => ' :attribute laukums ir nepieciešams, kad neviena no :values nav pieejama.',
- 'same' => ' :attribute un :citiem ir jāsakrīt.',
- 'size' => [
+ 'same' => ' :attribute un :citiem ir jāsakrīt.',
+ 'size' => [
'numeric' => ' :attribute jābūt :size.',
- 'file' => ' :attribute jābūt :size kilobaiti.',
- 'string' => ' :attribute jābūt :size zīmes.',
- 'array' => ' :attribute jāsatur :size vienības.',
+ 'file' => ' :attribute jābūt :size kilobaiti.',
+ 'string' => ' :attribute jābūt :size zīmes.',
+ 'array' => ' :attribute jāsatur :size vienības.',
],
- 'starts_with' => 'The :attribute must start with one of the following: :values',
- 'string' => ' :attribute jābūt virknē.',
- 'timezone' => ' :attribute jābūt derīgā zonā.',
- 'unique' => ' :attribute jau ir aizņemts.',
- 'uploaded' => ' :attribute netika augšuplādēts.',
- 'url' => ' :attribute formāts ir nederīgs.',
- 'uuid' => 'The :attribute must be a valid UUID.',
+ 'starts_with' => 'The :attribute must start with one of the following: :values',
+ 'string' => ' :attribute jābūt virknē.',
+ 'timezone' => ' :attribute jābūt derīgā zonā.',
+ 'unique' => ' :attribute jau ir aizņemts.',
+ 'uploaded' => ' :attribute netika augšuplādēts.',
+ 'url' => ' :attribute formāts ir nederīgs.',
+ 'uuid' => 'The :attribute must be a valid UUID.',
/*
|--------------------------------------------------------------------------
diff --git a/lang/mk/articles.php b/lang/mk/articles.php
index 45b0d50a9..28c7a3220 100644
--- a/lang/mk/articles.php
+++ b/lang/mk/articles.php
@@ -12,8 +12,8 @@
*/
return [
- 'articles' => 'Статии',
+ 'articles' => 'Статии',
'meta-articles' => 'Статии и вести на тракерот и заедницата',
- 'published-at' => 'Објавено на',
- 'read-more' => 'Прочитај повеќе',
+ 'published-at' => 'Објавено на',
+ 'read-more' => 'Прочитај повеќе',
];
diff --git a/lang/mk/auth.php b/lang/mk/auth.php
index fc51cd165..ee4eeafde 100644
--- a/lang/mk/auth.php
+++ b/lang/mk/auth.php
@@ -23,6 +23,6 @@ return [
|
*/
- 'failed' => 'These credentials do not match our records.',
+ 'failed' => 'These credentials do not match our records.',
'throttle' => 'Too many login attempts. Please try again in :seconds seconds.',
];
diff --git a/lang/mk/backup.php b/lang/mk/backup.php
index c4685d005..7fef1a35b 100644
--- a/lang/mk/backup.php
+++ b/lang/mk/backup.php
@@ -12,32 +12,32 @@
*/
return [
- 'actions' => 'Акции',
- 'backup' => 'Резервна копија',
- 'backup_doesnt_exist' => 'Резервната датотека не постои.',
- 'create_a_new_backup' => 'Креирај целосна резервна копија',
- 'create_a_new_files_backup' => 'Креирај резервни копии на датотеки',
- 'create_a_new_db_backup' => 'Креирај резервна копија на базата',
- 'create_confirmation_message' => 'Превртување на страницата за 3 секунди.',
- 'create_confirmation_title' => 'Резервната е завршена',
- 'create_error_message' => 'Датотеката за резервни копии не може да се создаде.',
- 'create_error_title' => 'Грешка при резервни копии',
- 'create_warning_message' => 'Вашата резервна копија можеби не била создадена. Ве молиме проверете ги лог датотеките за детали.',
- 'create_warning_title' => 'Непозната грешка',
- 'date' => 'Датум',
- 'delete' => 'Избриши',
- 'delete_cancel_message' => 'Резервната датотека НЕ е избришана.',
- 'delete_cancel_title' => 'Во ред е',
- 'delete_confirm' => 'Дали сте сигурни дека сакате да ја избришете оваа резервна датотека?',
- 'delete_confirmation_message' => 'Резервната датотека е избришана.',
- 'delete_confirmation_title' => 'Направено',
- 'delete_error_message' => 'Резервната датотека НЕ е избришана.',
- 'delete_error_title' => 'Грешка',
- 'download' => 'Преземи',
- 'existing_backups' => 'Постојни бекап',
- 'file_size' => 'Големина на Фајлот',
- 'location' => 'Локација',
- 'manager' => 'Менаџер',
- 'no_disks_configured' => 'Нема резервни дискови конфигурирани во config / backup.php',
+ 'actions' => 'Акции',
+ 'backup' => 'Резервна копија',
+ 'backup_doesnt_exist' => 'Резервната датотека не постои.',
+ 'create_a_new_backup' => 'Креирај целосна резервна копија',
+ 'create_a_new_files_backup' => 'Креирај резервни копии на датотеки',
+ 'create_a_new_db_backup' => 'Креирај резервна копија на базата',
+ 'create_confirmation_message' => 'Превртување на страницата за 3 секунди.',
+ 'create_confirmation_title' => 'Резервната е завршена',
+ 'create_error_message' => 'Датотеката за резервни копии не може да се создаде.',
+ 'create_error_title' => 'Грешка при резервни копии',
+ 'create_warning_message' => 'Вашата резервна копија можеби не била создадена. Ве молиме проверете ги лог датотеките за детали.',
+ 'create_warning_title' => 'Непозната грешка',
+ 'date' => 'Датум',
+ 'delete' => 'Избриши',
+ 'delete_cancel_message' => 'Резервната датотека НЕ е избришана.',
+ 'delete_cancel_title' => 'Во ред е',
+ 'delete_confirm' => 'Дали сте сигурни дека сакате да ја избришете оваа резервна датотека?',
+ 'delete_confirmation_message' => 'Резервната датотека е избришана.',
+ 'delete_confirmation_title' => 'Направено',
+ 'delete_error_message' => 'Резервната датотека НЕ е избришана.',
+ 'delete_error_title' => 'Грешка',
+ 'download' => 'Преземи',
+ 'existing_backups' => 'Постојни бекап',
+ 'file_size' => 'Големина на Фајлот',
+ 'location' => 'Локација',
+ 'manager' => 'Менаџер',
+ 'no_disks_configured' => 'Нема резервни дискови конфигурирани во config / backup.php',
'only_local_downloads_supported' => 'Поддржани се само преземања од Local Filesystem.',
];
diff --git a/lang/mk/blocks.php b/lang/mk/blocks.php
index 742c5526d..442d7feb3 100644
--- a/lang/mk/blocks.php
+++ b/lang/mk/blocks.php
@@ -12,19 +12,19 @@
*/
return [
- 'chatbox' => 'Chat Box',
- 'click' => 'Кликни',
- 'to-enable-editor' => 'за да овозможите уредник',
- 'featured-by' => 'Избрана од',
- 'featured-torrents' => 'Избрана акција',
+ 'chatbox' => 'Chat Box',
+ 'click' => 'Кликни',
+ 'to-enable-editor' => 'за да овозможите уредник',
+ 'featured-by' => 'Избрана од',
+ 'featured-torrents' => 'Избрана акција',
'featured-torrents-intro' => 'Добијте ги додека можете!',
- 'featured-until' => 'Ова е прикажан торен до',
- 'top-torrents' => 'Најсодржајниот добар',
- 'latest-posts' => 'Најнови пораки',
- 'latest-topics' => 'Најнови Теми',
- 'active-in-last' => 'Активен во минатата година',
- 'users-online' => 'Корисници онлајн',
- 'check-news' => 'Вести (проверете дневно)',
- 'new-news' => 'Нови вести',
- 'new-torrents' => 'Нови торенти',
+ 'featured-until' => 'Ова е прикажан торен до',
+ 'top-torrents' => 'Најсодржајниот добар',
+ 'latest-posts' => 'Најнови пораки',
+ 'latest-topics' => 'Најнови Теми',
+ 'active-in-last' => 'Активен во минатата година',
+ 'users-online' => 'Корисници онлајн',
+ 'check-news' => 'Вести (проверете дневно)',
+ 'new-news' => 'Нови вести',
+ 'new-torrents' => 'Нови торенти',
];
diff --git a/lang/mk/bon.php b/lang/mk/bon.php
index 4bf6f0e9f..d9cb686a2 100644
--- a/lang/mk/bon.php
+++ b/lang/mk/bon.php
@@ -12,44 +12,44 @@
*/
return [
- 'activated' => 'Активирано',
- 'active' => 'Активирано!',
- 'amount' => 'износ',
- 'bon' => 'БОН',
- 'bonus' => 'Бонус',
- 'date' => 'Датум',
- 'earning' => 'Заработка',
- 'earning-rate' => 'Во оваа стапка на заработка ќе заработите следна по временска рамка ..',
- 'earnings' => 'Заработка',
- 'exchange' => 'Размена',
- 'exchange-warning' => 'Размените се конечни, Ве молиме двојно проверете ги вашите избори пред да направите размена.',
- 'extended-stats' => 'Проширена статистика',
- 'gift' => 'Подарок',
- 'gift-bonus' => 'Бонус поени за подароци',
- 'gift-to' => 'Поени за бонус за подароци',
- 'gifts' => 'Подароци',
- 'item' => 'Точка',
- 'no-refund' => 'НЕ СЕ ВРАЌАЊЕ!',
- 'per-day' => 'Поени дневно',
- 'per-hour' => 'Поени по час',
- 'per-minute' => 'Поени во минута',
- 'per-month' => 'Поени месечно',
- 'per-second' => 'Поени во секунда',
- 'per-week' => 'Поени за една недела',
- 'per-year' => 'Поени годишно',
- 'points' => 'Поени',
- 'receiver' => 'Приемник',
- 'review-seeds' => 'Прегледајте ги сите семенски ротации',
- 'send-gift' => 'Испрати подарок',
- 'sender' => 'Испраќач',
- 'store' => 'Продавница',
- 'tips' => 'Совети',
- 'total' => 'Вкупни приходи',
- 'total-gifts' => 'Во Вкупно БОН Подароци',
- 'total-tips' => 'Во Вкупно БОН Совети',
+ 'activated' => 'Активирано',
+ 'active' => 'Активирано!',
+ 'amount' => 'износ',
+ 'bon' => 'БОН',
+ 'bonus' => 'Бонус',
+ 'date' => 'Датум',
+ 'earning' => 'Заработка',
+ 'earning-rate' => 'Во оваа стапка на заработка ќе заработите следна по временска рамка ..',
+ 'earnings' => 'Заработка',
+ 'exchange' => 'Размена',
+ 'exchange-warning' => 'Размените се конечни, Ве молиме двојно проверете ги вашите избори пред да направите размена.',
+ 'extended-stats' => 'Проширена статистика',
+ 'gift' => 'Подарок',
+ 'gift-bonus' => 'Бонус поени за подароци',
+ 'gift-to' => 'Поени за бонус за подароци',
+ 'gifts' => 'Подароци',
+ 'item' => 'Точка',
+ 'no-refund' => 'НЕ СЕ ВРАЌАЊЕ!',
+ 'per-day' => 'Поени дневно',
+ 'per-hour' => 'Поени по час',
+ 'per-minute' => 'Поени во минута',
+ 'per-month' => 'Поени месечно',
+ 'per-second' => 'Поени во секунда',
+ 'per-week' => 'Поени за една недела',
+ 'per-year' => 'Поени годишно',
+ 'points' => 'Поени',
+ 'receiver' => 'Приемник',
+ 'review-seeds' => 'Прегледајте ги сите семенски ротации',
+ 'send-gift' => 'Испрати подарок',
+ 'sender' => 'Испраќач',
+ 'store' => 'Продавница',
+ 'tips' => 'Совети',
+ 'total' => 'Вкупни приходи',
+ 'total-gifts' => 'Во Вкупно БОН Подароци',
+ 'total-tips' => 'Во Вкупно БОН Совети',
'you-have-received-gifts' => 'Сте примиле',
- 'you-have-sent-gifts' => 'Сте пратиле',
- 'you-have-received-tips' => 'Сте примиле',
- 'you-have-sent-tips' => 'Сте пратиле',
- 'your-points' => 'Ваши поени',
+ 'you-have-sent-gifts' => 'Сте пратиле',
+ 'you-have-received-tips' => 'Сте примиле',
+ 'you-have-sent-tips' => 'Сте пратиле',
+ 'your-points' => 'Ваши поени',
];
diff --git a/lang/mk/bot.php b/lang/mk/bot.php
index ace9c033d..ba0712157 100644
--- a/lang/mk/bot.php
+++ b/lang/mk/bot.php
@@ -12,15 +12,15 @@
*/
return [
- 'about' => 'За',
- 'bot' => 'Бот',
- 'bots' => 'Ботови',
- 'color' => 'Боја',
- 'command' => 'Команда',
- 'edit-bot' => 'Уредување на Бот',
+ 'about' => 'За',
+ 'bot' => 'Бот',
+ 'bots' => 'Ботови',
+ 'color' => 'Боја',
+ 'command' => 'Команда',
+ 'edit-bot' => 'Уредување на Бот',
'emoji-code' => 'Emoji Code',
- 'help' => 'Помош',
- 'icon' => 'Икона',
- 'info' => 'Информации',
- 'name' => 'Име',
+ 'help' => 'Помош',
+ 'icon' => 'Икона',
+ 'info' => 'Информации',
+ 'name' => 'Име',
];
diff --git a/lang/mk/bug.php b/lang/mk/bug.php
index 434bec722..2a45a354d 100644
--- a/lang/mk/bug.php
+++ b/lang/mk/bug.php
@@ -12,15 +12,15 @@
*/
return [
- 'bug-report' => 'Извештај за грешка',
+ 'bug-report' => 'Извештај за грешка',
'bug-report-description' => 'Пријавете грешка во страницата',
- 'enter-description' => 'Опишете го проблемот најдобро што е можно',
- 'enter-email' => 'Ве молиме внесете ја вашата е-пошта',
- 'enter-title' => 'Ве молиме изберете соодветен наслов',
- 'enter-username' => 'Ве молиме внесете го вашето корисничко име',
- 'high' => 'Високо',
- 'low' => 'Ниско',
- 'priority' => 'Приоритет',
- 'priority-description' => 'Изберете само многу високо ако бубачката навистина е проблем за користење на страницата.',
- 'very-high' => 'Многу високо',
+ 'enter-description' => 'Опишете го проблемот најдобро што е можно',
+ 'enter-email' => 'Ве молиме внесете ја вашата е-пошта',
+ 'enter-title' => 'Ве молиме изберете соодветен наслов',
+ 'enter-username' => 'Ве молиме внесете го вашето корисничко име',
+ 'high' => 'Високо',
+ 'low' => 'Ниско',
+ 'priority' => 'Приоритет',
+ 'priority-description' => 'Изберете само многу високо ако бубачката навистина е проблем за користење на страницата.',
+ 'very-high' => 'Многу високо',
];
diff --git a/lang/mk/common.php b/lang/mk/common.php
index 2d227d653..918dbb5ce 100644
--- a/lang/mk/common.php
+++ b/lang/mk/common.php
@@ -12,179 +12,179 @@
*/
return [
- 'a-an-art' => '',
- 'about' => 'За нас',
- 'account' => 'Сметка',
- 'achievement-title' => 'Прекрасно',
+ 'a-an-art' => '',
+ 'about' => 'За нас',
+ 'account' => 'Сметка',
+ 'achievement-title' => 'Прекрасно',
'achievement-unlocked' => 'Отклучивте ": име" достигнување',
- 'active' => 'Активен',
- 'active-warning' => 'Активно предупредување',
- 'add' => 'Додај',
- 'added' => 'Додадено',
- 'amount' => 'износ',
- 'anonymous' => 'Анонимен',
- 'author' => 'Автор',
- 'balance' => 'Баланс',
- 'blacklist' => 'Црна листа на клиенти',
- 'buffer' => 'Бафер',
- 'bug' => 'Пријави грешка',
- 'but' => 'Но',
- 'cancel' => 'Откажи',
- 'category' => 'Категорија',
- 'categories' => 'Категории',
- 'close' => 'Затвори',
- 'comment' => 'Коментар',
- 'comments' => 'Коментари',
- 'community' => 'Заедница',
- 'contact' => 'Контакт',
- 'contact-desc' => 'Ова барање за контакт ќе биде испратено до сопственикот и ќе ви се врати што побрзо',
- 'contact-header' => 'Здраво',
- 'create' => 'Креирај',
- 'created_at' => 'Создаден во',
- 'day' => 'Ден',
- 'delete' => 'Избриши',
- 'delete-your-comment' => 'Избришете го вашиот коментар',
- 'description' => 'Опис',
- 'direction' => 'Насока',
- 'disable' => 'Оневозможи',
- 'doubleup_activated' => 'Активиран е режимот за глобално двојно поставување',
- 'download' => 'Преземи',
- 'edit' => 'Уредување',
- 'edit-your-comment' => 'Уредете го вашиот коментар',
- 'email' => 'Е-пошта',
- 'email-blacklist' => 'Е-пошта црната листа',
- 'email-whitelist' => 'Е-пошта',
+ 'active' => 'Активен',
+ 'active-warning' => 'Активно предупредување',
+ 'add' => 'Додај',
+ 'added' => 'Додадено',
+ 'amount' => 'износ',
+ 'anonymous' => 'Анонимен',
+ 'author' => 'Автор',
+ 'balance' => 'Баланс',
+ 'blacklist' => 'Црна листа на клиенти',
+ 'buffer' => 'Бафер',
+ 'bug' => 'Пријави грешка',
+ 'but' => 'Но',
+ 'cancel' => 'Откажи',
+ 'category' => 'Категорија',
+ 'categories' => 'Категории',
+ 'close' => 'Затвори',
+ 'comment' => 'Коментар',
+ 'comments' => 'Коментари',
+ 'community' => 'Заедница',
+ 'contact' => 'Контакт',
+ 'contact-desc' => 'Ова барање за контакт ќе биде испратено до сопственикот и ќе ви се врати што побрзо',
+ 'contact-header' => 'Здраво',
+ 'create' => 'Креирај',
+ 'created_at' => 'Создаден во',
+ 'day' => 'Ден',
+ 'delete' => 'Избриши',
+ 'delete-your-comment' => 'Избришете го вашиот коментар',
+ 'description' => 'Опис',
+ 'direction' => 'Насока',
+ 'disable' => 'Оневозможи',
+ 'doubleup_activated' => 'Активиран е режимот за глобално двојно поставување',
+ 'download' => 'Преземи',
+ 'edit' => 'Уредување',
+ 'edit-your-comment' => 'Уредете го вашиот коментар',
+ 'email' => 'Е-пошта',
+ 'email-blacklist' => 'Е-пошта црната листа',
+ 'email-whitelist' => 'Е-пошта',
'email-list-notactive' => 'Систем за Белата листа / црната листа не е активиран',
- 'enable' => 'Овозможи',
- 'enter' => 'Внесете',
- 'error' => 'Грешка',
- 'everyday' => 'Секој ден',
- 'expired' => 'Истечено',
- 'extra' => 'Екстра',
- 'extra-stats' => 'Екстра-статистика',
- 'faq' => 'ЧПП',
- 'files' => 'Датотеки',
- 'fl_token' => 'Freeleech Token',
- 'fl_tokens' => 'Freeleech Tokens',
- 'for' => 'за',
- 'forum' => 'Форум',
- 'free' => 'Бесплатно',
- 'freeleech_activated' => 'Активиран е Глобалниот Freeleech режим',
- 'global' => 'Глобал',
- 'group' => 'Група',
- 'groups' => 'Групи',
- 'hidden' => 'Скриена',
- 'high-speeds' => 'Големи брзини',
- 'home' => 'Дома',
- 'hot' => 'Топло!',
- 'hour' => 'Час',
- 'huge' => 'Огромен',
- 'info' => 'Информации',
- 'internal' => 'Внатрешна',
- 'ip' => 'IP',
- 'is-allowed' => 'е дозволено',
- 'large' => 'Голем',
- 'latest' => 'Најнови',
- 'latest-posts' => 'Најнови пораки',
- 'latest-topics' => 'Најнови Теми',
- 'legal' => 'Правни',
- 'legend' => 'Легенда',
- 'lists' => 'Листи',
- 'lock-account' => 'Заклучи сметка',
- 'logout' => 'Одјави',
- 'members' => 'Членови',
- 'message' => 'Порака',
- 'minute' => 'Минута',
- 'moderated-by' => 'Умерено од',
- 'moderation' => 'Модерација',
- 'moderation-approve' => 'Одобри',
- 'moderation-postpone' => 'Одложи',
- 'moderation-reject' => 'Отфрли',
- 'month' => 'Месец',
- 'months' => 'Месеци',
- 'my' => 'Моја',
- 'name' => 'Име',
- 'navigation' => 'Навигација',
- 'new' => 'Ново!',
- 'new-adj' => 'Ново',
- 'news' => 'Вести',
- 'next' => 'Следно',
- 'no' => 'Не',
- 'no-comments' => 'Нема Коментари Сепак',
- 'no-result' => 'Не постои резултат во базата на податоци за пребарување',
- 'notifications' => 'Известувања',
- 'older-than' => 'Постари од',
- 'oldest' => 'Најстар',
- 'openreg_activated' => 'Отвори ја регистрацијата активирана',
- 'order-by' => 'Подреди по',
- 'other' => 'Друго',
- 'pages' => 'Страници',
- 'password' => 'Лозинка',
- 'patron' => 'Стани патрон',
- 'pending-torrents' => 'Во очекување на порои',
- 'personal' => 'Лично',
- 'plural-suffix' => 's',
- 'port' => 'Порт',
- 'position' => 'Позиција',
- 'posts' => 'Мислења',
- 'powered-by' => 'Powered by UNIT3D',
- 'preview' => 'Преглед',
- 'previous' => 'Претходна',
- 'progress' => 'Напредок',
- 'publish' => 'Објавување',
- 'quantity' => 'Квантитет',
- 'quick-search' => 'Брзо пребарување',
- 'ratio' => 'Сооднос',
- 'reason' => 'Причина',
- 'remove' => 'Отстрани',
- 'report' => 'Извештај',
- 'resend' => 'Повторно испрати',
- 'reporter' => 'Репортер',
- 'required' => 'Потребна е',
- 'results' => 'Резултати',
- 'rss-system' => 'RSS систем',
- 'rules' => 'Правила',
- 'save' => 'Зачувај',
- 'search' => 'Барај',
- 'search-results' => 'Резултати од пребарувањето',
- 'search-results-desc' => 'Ве молиме погледнете ги резултатите подолу',
- 'second' => 'Второ',
- 'select' => 'Изберете',
- 'sort' => 'Сортирај',
- 'special' => 'Специјални',
- 'staff' => 'Персонал',
- 'staff-tools' => 'Персонални алатки',
- 'stats' => 'Статистика',
- 'status' => 'Статус',
- 'sticked' => 'Ставен',
- 'submit' => 'Поднесете',
- 'subscriptions' => 'Претплати',
- 'teams' => 'Тимови',
- 'terms' => 'Услови за користење',
- 'times' => 'Времиња',
- 'title' => 'Наслов',
- 'top-bountied' => 'Top Bountied',
- 'topics' => 'Теми',
- 'tracker-codes' => 'Кодови за Tracker',
- 'type' => 'Тип',
- 'type-verb' => 'Тип',
- 'types' => 'Видови',
- 'genre' => 'Жанр',
- 'genres' => 'Жанрови',
- 'action' => 'Акција',
- 'actions' => 'Акции',
- 'unknown' => 'Непознат',
+ 'enable' => 'Овозможи',
+ 'enter' => 'Внесете',
+ 'error' => 'Грешка',
+ 'everyday' => 'Секој ден',
+ 'expired' => 'Истечено',
+ 'extra' => 'Екстра',
+ 'extra-stats' => 'Екстра-статистика',
+ 'faq' => 'ЧПП',
+ 'files' => 'Датотеки',
+ 'fl_token' => 'Freeleech Token',
+ 'fl_tokens' => 'Freeleech Tokens',
+ 'for' => 'за',
+ 'forum' => 'Форум',
+ 'free' => 'Бесплатно',
+ 'freeleech_activated' => 'Активиран е Глобалниот Freeleech режим',
+ 'global' => 'Глобал',
+ 'group' => 'Група',
+ 'groups' => 'Групи',
+ 'hidden' => 'Скриена',
+ 'high-speeds' => 'Големи брзини',
+ 'home' => 'Дома',
+ 'hot' => 'Топло!',
+ 'hour' => 'Час',
+ 'huge' => 'Огромен',
+ 'info' => 'Информации',
+ 'internal' => 'Внатрешна',
+ 'ip' => 'IP',
+ 'is-allowed' => 'е дозволено',
+ 'large' => 'Голем',
+ 'latest' => 'Најнови',
+ 'latest-posts' => 'Најнови пораки',
+ 'latest-topics' => 'Најнови Теми',
+ 'legal' => 'Правни',
+ 'legend' => 'Легенда',
+ 'lists' => 'Листи',
+ 'lock-account' => 'Заклучи сметка',
+ 'logout' => 'Одјави',
+ 'members' => 'Членови',
+ 'message' => 'Порака',
+ 'minute' => 'Минута',
+ 'moderated-by' => 'Умерено од',
+ 'moderation' => 'Модерација',
+ 'moderation-approve' => 'Одобри',
+ 'moderation-postpone' => 'Одложи',
+ 'moderation-reject' => 'Отфрли',
+ 'month' => 'Месец',
+ 'months' => 'Месеци',
+ 'my' => 'Моја',
+ 'name' => 'Име',
+ 'navigation' => 'Навигација',
+ 'new' => 'Ново!',
+ 'new-adj' => 'Ново',
+ 'news' => 'Вести',
+ 'next' => 'Следно',
+ 'no' => 'Не',
+ 'no-comments' => 'Нема Коментари Сепак',
+ 'no-result' => 'Не постои резултат во базата на податоци за пребарување',
+ 'notifications' => 'Известувања',
+ 'older-than' => 'Постари од',
+ 'oldest' => 'Најстар',
+ 'openreg_activated' => 'Отвори ја регистрацијата активирана',
+ 'order-by' => 'Подреди по',
+ 'other' => 'Друго',
+ 'pages' => 'Страници',
+ 'password' => 'Лозинка',
+ 'patron' => 'Стани патрон',
+ 'pending-torrents' => 'Во очекување на порои',
+ 'personal' => 'Лично',
+ 'plural-suffix' => 's',
+ 'port' => 'Порт',
+ 'position' => 'Позиција',
+ 'posts' => 'Мислења',
+ 'powered-by' => 'Powered by UNIT3D',
+ 'preview' => 'Преглед',
+ 'previous' => 'Претходна',
+ 'progress' => 'Напредок',
+ 'publish' => 'Објавување',
+ 'quantity' => 'Квантитет',
+ 'quick-search' => 'Брзо пребарување',
+ 'ratio' => 'Сооднос',
+ 'reason' => 'Причина',
+ 'remove' => 'Отстрани',
+ 'report' => 'Извештај',
+ 'resend' => 'Повторно испрати',
+ 'reporter' => 'Репортер',
+ 'required' => 'Потребна е',
+ 'results' => 'Резултати',
+ 'rss-system' => 'RSS систем',
+ 'rules' => 'Правила',
+ 'save' => 'Зачувај',
+ 'search' => 'Барај',
+ 'search-results' => 'Резултати од пребарувањето',
+ 'search-results-desc' => 'Ве молиме погледнете ги резултатите подолу',
+ 'second' => 'Второ',
+ 'select' => 'Изберете',
+ 'sort' => 'Сортирај',
+ 'special' => 'Специјални',
+ 'staff' => 'Персонал',
+ 'staff-tools' => 'Персонални алатки',
+ 'stats' => 'Статистика',
+ 'status' => 'Статус',
+ 'sticked' => 'Ставен',
+ 'submit' => 'Поднесете',
+ 'subscriptions' => 'Претплати',
+ 'teams' => 'Тимови',
+ 'terms' => 'Услови за користење',
+ 'times' => 'Времиња',
+ 'title' => 'Наслов',
+ 'top-bountied' => 'Top Bountied',
+ 'topics' => 'Теми',
+ 'tracker-codes' => 'Кодови за Tracker',
+ 'type' => 'Тип',
+ 'type-verb' => 'Тип',
+ 'types' => 'Видови',
+ 'genre' => 'Жанр',
+ 'genres' => 'Жанрови',
+ 'action' => 'Акција',
+ 'actions' => 'Акции',
+ 'unknown' => 'Непознат',
'unlocked-achievement' => 'Отклучен: достигнување достигнување',
- 'upload' => 'Подигни датотека',
- 'upload-guide' => 'Подигнете го водичот',
- 'user' => 'Корисник',
- 'username' => 'Корисничко име',
- 'users' => 'Корисници',
- 'view' => 'Поглед',
- 'view-all' => 'Види се',
- 'warnings' => 'Предупредувања',
- 'year' => 'Година',
- 'yes' => 'Да',
- 'your' => 'Вашиот',
- 'your-comment' => 'Вашиот коментар',
+ 'upload' => 'Подигни датотека',
+ 'upload-guide' => 'Подигнете го водичот',
+ 'user' => 'Корисник',
+ 'username' => 'Корисничко име',
+ 'users' => 'Корисници',
+ 'view' => 'Поглед',
+ 'view-all' => 'Види се',
+ 'warnings' => 'Предупредувања',
+ 'year' => 'Година',
+ 'yes' => 'Да',
+ 'your' => 'Вашиот',
+ 'your-comment' => 'Вашиот коментар',
];
diff --git a/lang/mk/email.php b/lang/mk/email.php
index 5ab945146..b161928d3 100644
--- a/lang/mk/email.php
+++ b/lang/mk/email.php
@@ -12,46 +12,46 @@
*/
return [
- 'activate-account' => 'Активирај ја сметката',
- 'ban-reason' => 'Причина',
- 'banned-footer' => 'Тоа е она што го добивате за да не ги следите правилата',
- 'banned-header' => 'Вие сте забранети',
- 'bug-description' => 'Проблем',
- 'bug-footer' => 'Поправи го тоа срање',
- 'bug-header' => 'Нов извештај за бубачка од',
- 'bug-priority' => 'Приоритет',
- 'bug-title' => 'Наслов на бубачки',
- 'contact-header' => 'Нова контактна пошта од',
- 'contact-message' => 'Порака',
- 'contact-name' => 'Име',
+ 'activate-account' => 'Активирај ја сметката',
+ 'ban-reason' => 'Причина',
+ 'banned-footer' => 'Тоа е она што го добивате за да не ги следите правилата',
+ 'banned-header' => 'Вие сте забранети',
+ 'bug-description' => 'Проблем',
+ 'bug-footer' => 'Поправи го тоа срање',
+ 'bug-header' => 'Нов извештај за бубачка од',
+ 'bug-priority' => 'Приоритет',
+ 'bug-title' => 'Наслов на бубачки',
+ 'contact-header' => 'Нова контактна пошта од',
+ 'contact-message' => 'Порака',
+ 'contact-name' => 'Име',
'fail-login-greeting' => 'Пријавувањето на сметката не успеа!',
- 'fail-login-line1' => 'Неуспешно пријавување беше откриено за вашата сметка.',
- 'fail-login-line2' => 'Ова барање потекнува од: ip (: host) во: време',
- 'fail-login-subject' => 'Неуспешно известување за најавување',
- 'footer-link' => 'Ако имате проблеми со кликање на копчето: actionText, ископирајте и ставете го URL-то подолу во вашиот веб прелистувач:',
- 'invite-header' => 'Покана за',
- 'invite-invited' => 'Ве поканувате',
- 'invite-message' => 'Порака',
- 'invite-signup' => 'Пријавете се сега',
- 'newreply-header' => 'Има нов одговор во вашата тема',
- 'newreply-message' => 'Порака',
- 'newreply-replied' => 'Дали одговори на вашата тема',
- 'newreply-view' => 'Погледнете го сега',
- 'no-email-found' => 'Не можевме да најдеме оваа е-пошта во нашиот систем!',
- 'register-code' => 'За да го завршите активирањето на вашиот профил кликнете на копчето подолу',
- 'register-footer' => 'Ако горното копче не работи, копирајте го и поставете го URL-то во лентата со адреси на прелистувачот',
- 'register-header' => 'Здраво! Ви благодариме за пријавувањето',
- 'report-comment' => 'Коментар',
- 'report-email' => 'Е-пошта',
- 'report-header' => 'Здраво администратор, врска е пријавена',
- 'report-link' => 'Линк',
- 'report-link-hash' => 'Крај на врската',
- 'thanks' => 'Ви благодариме за користењето',
- 'unban-footer' => 'Добредојде назад!',
- 'unban-header' => 'Не сте биле забранети',
- 'unban-reason' => 'Причина',
- 'username-reminder' => 'Неодамна ни испративте барање за вашето корисничко име за нашата апликација. Вашето корисничко име е',
- 'username-sent' => 'Вашето корисничко име е испратено на вашата e-mail адреса!',
- 'disabled-header' => 'Вашата сметка е оневозможена',
- 'pruned-header' => 'Вашата сметка е изчистена',
+ 'fail-login-line1' => 'Неуспешно пријавување беше откриено за вашата сметка.',
+ 'fail-login-line2' => 'Ова барање потекнува од: ip (: host) во: време',
+ 'fail-login-subject' => 'Неуспешно известување за најавување',
+ 'footer-link' => 'Ако имате проблеми со кликање на копчето: actionText, ископирајте и ставете го URL-то подолу во вашиот веб прелистувач:',
+ 'invite-header' => 'Покана за',
+ 'invite-invited' => 'Ве поканувате',
+ 'invite-message' => 'Порака',
+ 'invite-signup' => 'Пријавете се сега',
+ 'newreply-header' => 'Има нов одговор во вашата тема',
+ 'newreply-message' => 'Порака',
+ 'newreply-replied' => 'Дали одговори на вашата тема',
+ 'newreply-view' => 'Погледнете го сега',
+ 'no-email-found' => 'Не можевме да најдеме оваа е-пошта во нашиот систем!',
+ 'register-code' => 'За да го завршите активирањето на вашиот профил кликнете на копчето подолу',
+ 'register-footer' => 'Ако горното копче не работи, копирајте го и поставете го URL-то во лентата со адреси на прелистувачот',
+ 'register-header' => 'Здраво! Ви благодариме за пријавувањето',
+ 'report-comment' => 'Коментар',
+ 'report-email' => 'Е-пошта',
+ 'report-header' => 'Здраво администратор, врска е пријавена',
+ 'report-link' => 'Линк',
+ 'report-link-hash' => 'Крај на врската',
+ 'thanks' => 'Ви благодариме за користењето',
+ 'unban-footer' => 'Добредојде назад!',
+ 'unban-header' => 'Не сте биле забранети',
+ 'unban-reason' => 'Причина',
+ 'username-reminder' => 'Неодамна ни испративте барање за вашето корисничко име за нашата апликација. Вашето корисничко име е',
+ 'username-sent' => 'Вашето корисничко име е испратено на вашата e-mail адреса!',
+ 'disabled-header' => 'Вашата сметка е оневозможена',
+ 'pruned-header' => 'Вашата сметка е изчистена',
];
diff --git a/lang/mk/forum.php b/lang/mk/forum.php
index 699e0b5e5..975af5db6 100644
--- a/lang/mk/forum.php
+++ b/lang/mk/forum.php
@@ -12,63 +12,63 @@
*/
return [
- 'action' => 'Акција',
- 'activity' => 'Активност',
- 'approved' => 'Одобрено',
- 'author' => 'Автор',
- 'bug' => 'Грешка',
- 'category-quick-search' => 'Име на темата брзо пребарување (во категоријата)',
- 'close-topic' => 'Заклучи тема',
- 'closed' => 'Затворено',
- 'create-new-topic' => 'Креирај нова тема',
- 'created' => 'Создаден',
- 'current' => 'Тековна',
- 'delete-topic' => 'Избриши ја оваа тема',
- 'denied' => 'Одбиен',
- 'dislike-post' => 'Не ми се допаѓа оваа порака',
- 'display-forum' => 'Прикажи теми во',
- 'edit-post' => 'Уредете ја објавата',
- 'edit-topic' => 'Уредете ја темата',
- 'forum' => 'Форум',
- 'forums' => 'Форуми',
- 'implemented' => 'Имплементиран',
- 'in' => 'Во',
- 'invalid' => 'Невалиден',
- 'label' => 'Етикета',
- 'label-system' => 'Етикета систем',
- 'last-message' => 'Последна порака',
- 'last-post-info' => 'Последна порака',
- 'latest' => 'Најнови',
- 'like-post' => 'Како оваа порака',
- 'meta-category' => 'Листа на форуми во категоријата',
- 'moderation' => 'Модерација',
- 'name' => 'Име',
- 'not-connected' => 'Мора да бидете поврзани',
- 'not-subscribed' => 'Не се претплатени',
- 'open' => 'Отвори',
- 'open-topic' => 'Отвори ја оваа тема',
- 'permalink' => 'Верувам',
- 'pin' => 'Пин',
- 'post' => 'Пост',
- 'post-quick-search' => 'Брзо пребарување по телото',
- 'posts' => 'Мислења',
- 'quote' => 'Цитат',
- 'read-topic' => 'Прочитајте ја темата',
- 'replies' => 'Одговори',
- 'send-new-topic' => 'Зачувај ја оваа тема',
- 'solved' => 'Решено',
- 'state' => 'Држава',
- 'stats' => 'Статистика',
- 'subscribed' => 'Претплатени',
+ 'action' => 'Акција',
+ 'activity' => 'Активност',
+ 'approved' => 'Одобрено',
+ 'author' => 'Автор',
+ 'bug' => 'Грешка',
+ 'category-quick-search' => 'Име на темата брзо пребарување (во категоријата)',
+ 'close-topic' => 'Заклучи тема',
+ 'closed' => 'Затворено',
+ 'create-new-topic' => 'Креирај нова тема',
+ 'created' => 'Создаден',
+ 'current' => 'Тековна',
+ 'delete-topic' => 'Избриши ја оваа тема',
+ 'denied' => 'Одбиен',
+ 'dislike-post' => 'Не ми се допаѓа оваа порака',
+ 'display-forum' => 'Прикажи теми во',
+ 'edit-post' => 'Уредете ја објавата',
+ 'edit-topic' => 'Уредете ја темата',
+ 'forum' => 'Форум',
+ 'forums' => 'Форуми',
+ 'implemented' => 'Имплементиран',
+ 'in' => 'Во',
+ 'invalid' => 'Невалиден',
+ 'label' => 'Етикета',
+ 'label-system' => 'Етикета систем',
+ 'last-message' => 'Последна порака',
+ 'last-post-info' => 'Последна порака',
+ 'latest' => 'Најнови',
+ 'like-post' => 'Како оваа порака',
+ 'meta-category' => 'Листа на форуми во категоријата',
+ 'moderation' => 'Модерација',
+ 'name' => 'Име',
+ 'not-connected' => 'Мора да бидете поврзани',
+ 'not-subscribed' => 'Не се претплатени',
+ 'open' => 'Отвори',
+ 'open-topic' => 'Отвори ја оваа тема',
+ 'permalink' => 'Верувам',
+ 'pin' => 'Пин',
+ 'post' => 'Пост',
+ 'post-quick-search' => 'Брзо пребарување по телото',
+ 'posts' => 'Мислења',
+ 'quote' => 'Цитат',
+ 'read-topic' => 'Прочитајте ја темата',
+ 'replies' => 'Одговори',
+ 'send-new-topic' => 'Зачувај ја оваа тема',
+ 'solved' => 'Решено',
+ 'state' => 'Држава',
+ 'stats' => 'Статистика',
+ 'subscribed' => 'Претплатени',
'subscription-quick-search' => 'Брзо пребарување на името на темата (во претплатата)',
- 'suggestion' => 'Предлог',
- 'topic' => 'Тема',
- 'topic-closed' => 'Оваа тема е затворена',
- 'topic-name' => 'Име на темата',
- 'topic-quick-search' => 'Име на темата брзо пребарување',
- 'topic-title' => 'Наслов на оваа тема',
- 'topics' => 'Теми',
- 'unpin' => 'Откажи',
- 'view-all' => 'Прикажи ги сите теми',
- 'views' => 'Прегледи',
+ 'suggestion' => 'Предлог',
+ 'topic' => 'Тема',
+ 'topic-closed' => 'Оваа тема е затворена',
+ 'topic-name' => 'Име на темата',
+ 'topic-quick-search' => 'Име на темата брзо пребарување',
+ 'topic-title' => 'Наслов на оваа тема',
+ 'topics' => 'Теми',
+ 'unpin' => 'Откажи',
+ 'view-all' => 'Прикажи ги сите теми',
+ 'views' => 'Прегледи',
];
diff --git a/lang/mk/graveyard.php b/lang/mk/graveyard.php
index 6f5858cc6..a7dacd33f 100644
--- a/lang/mk/graveyard.php
+++ b/lang/mk/graveyard.php
@@ -12,15 +12,15 @@
*/
return [
- 'dead' => 'Мртви',
- 'graveyard' => 'Гробишта',
- 'guidelines' => 'Насоки',
+ 'dead' => 'Мртви',
+ 'graveyard' => 'Гробишта',
+ 'guidelines' => 'Насоки',
'guidelines-content' => '1) Не можете да ги воскреснете сопствените поставувања.
2) Не воскреснувај нешто што не можеш да го направиш.',
- 'howto' => 'Ова е правило',
- 'howto-desc1' => 'Мора да се сеќавате : име 30 дена за успешна презареждане. Во кој случај, кога сегашниот временски период на',
- 'howto-desc2' => 'Ќе бидете наградени',
- 'howto-hits' => 'Посети',
- 'pending' => 'Во тек',
- 'resurrect' => 'Воскресна',
- 'reward' => 'Freeleech токени',
+ 'howto' => 'Ова е правило',
+ 'howto-desc1' => 'Мора да се сеќавате : име 30 дена за успешна презареждане. Во кој случај, кога сегашниот временски период на',
+ 'howto-desc2' => 'Ќе бидете наградени',
+ 'howto-hits' => 'Посети',
+ 'pending' => 'Во тек',
+ 'resurrect' => 'Воскресна',
+ 'reward' => 'Freeleech токени',
];
diff --git a/lang/mk/notification.php b/lang/mk/notification.php
index f3353f441..71b1c863e 100644
--- a/lang/mk/notification.php
+++ b/lang/mk/notification.php
@@ -12,14 +12,14 @@
*/
return [
- 'date' => 'Датум',
- 'delete' => 'Избриши',
- 'delete-all' => 'Избришете ги сите известувања',
- 'mark-all-read' => 'означи се како Прочитано',
- 'mark-read' => 'Означи како прочитано',
- 'message' => 'Порака',
+ 'date' => 'Датум',
+ 'delete' => 'Избриши',
+ 'delete-all' => 'Избришете ги сите известувања',
+ 'mark-all-read' => 'означи се како Прочитано',
+ 'mark-read' => 'Означи како прочитано',
+ 'message' => 'Порака',
'no-notifications' => 'Нема известувања',
- 'notifications' => 'Известувања',
- 'read' => 'Прочитајте',
- 'title' => 'Наслов',
+ 'notifications' => 'Известувања',
+ 'read' => 'Прочитајте',
+ 'title' => 'Наслов',
];
diff --git a/lang/mk/page.php b/lang/mk/page.php
index c12c96bf6..57815d6f4 100644
--- a/lang/mk/page.php
+++ b/lang/mk/page.php
@@ -12,28 +12,28 @@
*/
return [
- 'aboutus-advantage' => 'Предноста',
- 'aboutus-advantage1' => 'Имаме искусни членови и вработени кои се добро обучени во светот на HD видео / аудио и техничка поддршка.',
- 'aboutus-advantage2' => 'Заедно со нашата голема страст за филмови и телевизиски емисии, ние исто така нудиме една од најдобрите селекции на нешто што најмногу не се случува - ФАНСИ! ГОЛЕМА БЛАГОДАРАМЕ на нашите содржини носители.',
- 'aboutus-advantage3' => 'Додека ние не прифаќаме донации за да го одржуваме местото и да работиме, нема да има преплавени премиери или банери на лице место. Без молат од нас.',
- 'aboutus-advantage4' => 'Нашата заедница е на второ место никој за својата рана возраст. Помеѓу нашиот персонал и корисничката база, секогаш беа тука да ви помогнат. Бевте страстни за да бидете сигурни дека вашето искуство на: наслов е ништо помалку од неверојатно.',
- 'aboutus-advantage5' => 'Нашата услуга се користи секојдневно од многу луѓе од целиот свет. Weve докажано дека ние се грижиме за функционалноста и безбедноста на нашата codebase и може да му се верува и да се потпреме. Нашите програмери работат секојдневно за да обезбедат вистинска nex-gen codebase.',
- 'aboutus-header' => 'Здраво',
- 'aboutus-rules' => 'Она што ни треба од тебе',
- 'aboutus-rules1' => 'Да се биде активен член на заедницата! Ова значи продуктивно да се вклучите во разговорите, да додадете одобрена содржина и да им помогнете на другите корисници ако сте во можност.',
- 'aboutus-rules2' => 'За да ги прочитате правилата во целост и ве молиме да ги почитувате!',
- 'aboutus-rules3' => 'Направи предлози! Ние се стремиме да го направиме: насловот подобро секој ден. Не сакаме да кажеме дека секој предлог ќе се користи, но никогаш не боли да види нови идеи.',
- 'aboutus-welcome' => 'Ајде да разговараме',
- 'aboutus-welcome-desc' => ': насловот е филм / ТВ / база на податоци FANRES заедницата изграден. Секој дел од податоците е додаден од нашата неверојатна заедница од 2017 година: насловите се фокусираат на HD содржини, проактивна корисничка база, одлична / сигурна кодекса и корисен и пријателски персонал тим.',
- 'blacklist-browsers' => 'Прелистувачи',
- 'blacklist-btclient' => 'Клиент на BitTorrent',
- 'blacklist-clients' => 'Клиенти',
- 'blacklist-desc' => 'Следниве прелистувачи и клиентите на BitTorrent се на црната листа / забранети од објавувањето на: наслов',
- 'blacklist-webbrowser' => 'Веб прелистувач',
+ 'aboutus-advantage' => 'Предноста',
+ 'aboutus-advantage1' => 'Имаме искусни членови и вработени кои се добро обучени во светот на HD видео / аудио и техничка поддршка.',
+ 'aboutus-advantage2' => 'Заедно со нашата голема страст за филмови и телевизиски емисии, ние исто така нудиме една од најдобрите селекции на нешто што најмногу не се случува - ФАНСИ! ГОЛЕМА БЛАГОДАРАМЕ на нашите содржини носители.',
+ 'aboutus-advantage3' => 'Додека ние не прифаќаме донации за да го одржуваме местото и да работиме, нема да има преплавени премиери или банери на лице место. Без молат од нас.',
+ 'aboutus-advantage4' => 'Нашата заедница е на второ место никој за својата рана возраст. Помеѓу нашиот персонал и корисничката база, секогаш беа тука да ви помогнат. Бевте страстни за да бидете сигурни дека вашето искуство на: наслов е ништо помалку од неверојатно.',
+ 'aboutus-advantage5' => 'Нашата услуга се користи секојдневно од многу луѓе од целиот свет. Weve докажано дека ние се грижиме за функционалноста и безбедноста на нашата codebase и може да му се верува и да се потпреме. Нашите програмери работат секојдневно за да обезбедат вистинска nex-gen codebase.',
+ 'aboutus-header' => 'Здраво',
+ 'aboutus-rules' => 'Она што ни треба од тебе',
+ 'aboutus-rules1' => 'Да се биде активен член на заедницата! Ова значи продуктивно да се вклучите во разговорите, да додадете одобрена содржина и да им помогнете на другите корисници ако сте во можност.',
+ 'aboutus-rules2' => 'За да ги прочитате правилата во целост и ве молиме да ги почитувате!',
+ 'aboutus-rules3' => 'Направи предлози! Ние се стремиме да го направиме: насловот подобро секој ден. Не сакаме да кажеме дека секој предлог ќе се користи, но никогаш не боли да види нови идеи.',
+ 'aboutus-welcome' => 'Ајде да разговараме',
+ 'aboutus-welcome-desc' => ': насловот е филм / ТВ / база на податоци FANRES заедницата изграден. Секој дел од податоците е додаден од нашата неверојатна заедница од 2017 година: насловите се фокусираат на HD содржини, проактивна корисничка база, одлична / сигурна кодекса и корисен и пријателски персонал тим.',
+ 'blacklist-browsers' => 'Прелистувачи',
+ 'blacklist-btclient' => 'Клиент на BitTorrent',
+ 'blacklist-clients' => 'Клиенти',
+ 'blacklist-desc' => 'Следниве прелистувачи и клиентите на BitTorrent се на црната листа / забранети од објавувањето на: наслов',
+ 'blacklist-webbrowser' => 'Веб прелистувач',
'blacklist-emaildomain' => 'Блокиран домен',
- 'email-blacklist-desc' => 'Следниве домени за е-пошта се блокирани од употребата. Не можете да се регистрирате или да испратите покана за следново.',
- 'email-whitelist-desc' => 'Следниве домени за е-пошта се само домените на е-пошта што може да се користат. Вие само може да се регистрирате или да испратите покана со користење на следново.',
- 'staff-group' => 'Група',
- 'staff-title' => 'Наслов',
+ 'email-blacklist-desc' => 'Следниве домени за е-пошта се блокирани од употребата. Не можете да се регистрирате или да испратите покана за следново.',
+ 'email-whitelist-desc' => 'Следниве домени за е-пошта се само домените на е-пошта што може да се користат. Вие само може да се регистрирате или да испратите покана со користење на следново.',
+ 'staff-group' => 'Група',
+ 'staff-title' => 'Наслов',
'whitelist-emaildomain' => 'Доверлив домен',
];
diff --git a/lang/mk/pagination.php b/lang/mk/pagination.php
index 46ff5a250..254ad55e4 100644
--- a/lang/mk/pagination.php
+++ b/lang/mk/pagination.php
@@ -24,5 +24,5 @@ return [
*/
'previous' => '« Назад',
- 'next' => 'Напред »',
+ 'next' => 'Напред »',
];
diff --git a/lang/mk/passwords.php b/lang/mk/passwords.php
index 69ee7e9de..a72f0f87f 100644
--- a/lang/mk/passwords.php
+++ b/lang/mk/passwords.php
@@ -24,8 +24,8 @@ return [
*/
'password' => 'Лозинката треба да биде најмалку шест карактери и да совпаѓа со потврдната лозинка.',
- 'reset' => 'Password has been reset!',
- 'sent' => 'Испратен емаил со инструкции за ресетирање на лозинка!',
- 'token' => 'Невалиден токен за ресетирање на лозинката.',
- 'user' => 'Не може да се пронајде корисник со таква емаил адреса.',
+ 'reset' => 'Password has been reset!',
+ 'sent' => 'Испратен емаил со инструкции за ресетирање на лозинка!',
+ 'token' => 'Невалиден токен за ресетирање на лозинката.',
+ 'user' => 'Не може да се пронајде корисник со таква емаил адреса.',
];
diff --git a/lang/mk/pm.php b/lang/mk/pm.php
index 441d6ee08..4a36fcf2a 100644
--- a/lang/mk/pm.php
+++ b/lang/mk/pm.php
@@ -12,29 +12,29 @@
*/
return [
- 'create' => 'Креирај',
- 'delete' => 'Избриши',
+ 'create' => 'Креирај',
+ 'delete' => 'Избриши',
'enter-subject' => 'Внесете предмет',
- 'from' => 'Од',
- 'inbox' => 'Влезно сандаче',
+ 'from' => 'Од',
+ 'inbox' => 'Влезно сандаче',
'mark-all-read' => 'Означете ги сите пораки како прочитани',
- 'message' => 'Порака',
- 'messages' => 'Пораки',
- 'new' => 'Нова порака',
- 'outbox' => 'Појдовно сандаче',
- 'private' => 'Приватен',
- 'read' => 'Прочитајте',
- 'received-at' => 'Примена во',
- 'refresh' => 'Освежи',
- 'reply' => 'Одговори',
- 'search' => 'Барај по предмет',
- 'select' => 'Изберете го корисникот',
- 'send' => 'Испрати ПМ',
- 'send-to' => 'Испрати ПМ до',
- 'sent' => 'Испратено',
- 'sent-at' => 'Испрати на',
- 'subject' => 'Предмет',
- 'to' => 'До',
- 'unread' => 'Непрочитано',
- 'empty-inbox' => 'Испразните сандаче',
+ 'message' => 'Порака',
+ 'messages' => 'Пораки',
+ 'new' => 'Нова порака',
+ 'outbox' => 'Појдовно сандаче',
+ 'private' => 'Приватен',
+ 'read' => 'Прочитајте',
+ 'received-at' => 'Примена во',
+ 'refresh' => 'Освежи',
+ 'reply' => 'Одговори',
+ 'search' => 'Барај по предмет',
+ 'select' => 'Изберете го корисникот',
+ 'send' => 'Испрати ПМ',
+ 'send-to' => 'Испрати ПМ до',
+ 'sent' => 'Испратено',
+ 'sent-at' => 'Испрати на',
+ 'subject' => 'Предмет',
+ 'to' => 'До',
+ 'unread' => 'Непрочитано',
+ 'empty-inbox' => 'Испразните сандаче',
];
diff --git a/lang/mk/poll.php b/lang/mk/poll.php
index 105c83759..1bbf3b2b1 100644
--- a/lang/mk/poll.php
+++ b/lang/mk/poll.php
@@ -12,18 +12,18 @@
*/
return [
- 'add-option' => 'Додај опција',
- 'create-poll' => 'Креирај анкета',
- 'current' => 'Тековни Анкета (и)',
- 'delete-option' => 'Избриши ја опцијата',
+ 'add-option' => 'Додај опција',
+ 'create-poll' => 'Креирај анкета',
+ 'current' => 'Тековни Анкета (и)',
+ 'delete-option' => 'Избриши ја опцијата',
'multiple-choice' => 'Ова е анкета за повеќекратен избор. Изберете што повеќе одговори колку што сакате.',
- 'option' => 'Опција',
- 'poll' => 'Анкета',
- 'polls' => 'Анкети',
- 'results' => 'Резултати од анкетата',
- 'title' => 'Наслов',
- 'total' => 'Вкупно гласања некогаш',
- 'vote' => 'Гласај',
- 'vote-now' => 'Заврши си го гласот сега!',
- 'votes' => 'Гласови',
+ 'option' => 'Опција',
+ 'poll' => 'Анкета',
+ 'polls' => 'Анкети',
+ 'results' => 'Резултати од анкетата',
+ 'title' => 'Наслов',
+ 'total' => 'Вкупно гласања некогаш',
+ 'vote' => 'Гласај',
+ 'vote-now' => 'Заврши си го гласот сега!',
+ 'votes' => 'Гласови',
];
diff --git a/lang/mk/request.php b/lang/mk/request.php
index eebf7d250..1afb26767 100644
--- a/lang/mk/request.php
+++ b/lang/mk/request.php
@@ -12,67 +12,67 @@
*/
return [
- 'add-request' => 'Додади барање',
- 'age' => 'Возраст',
- 'all-requests' => 'Сите барања',
- 'approve' => 'Одобри',
- 'bounty' => 'Награда',
- 'bounty-claimed' => 'Баунти тврди',
- 'bounty-unclaimed' => 'Баунти неподигнати',
- 'category' => 'Категорија',
- 'claim' => 'Тврдат',
- 'claim-anon-choose' => 'Изберете мудро',
- 'claim-as-anon' => 'Дали би сакал да го поднесам ова анонимно',
- 'claim-now' => 'Тврдат сега',
- 'claimed' => 'Тврдеше',
- 'current' => 'Тековна',
- 'delete' => 'Избришете го ова Барање',
+ 'add-request' => 'Додади барање',
+ 'age' => 'Возраст',
+ 'all-requests' => 'Сите барања',
+ 'approve' => 'Одобри',
+ 'bounty' => 'Награда',
+ 'bounty-claimed' => 'Баунти тврди',
+ 'bounty-unclaimed' => 'Баунти неподигнати',
+ 'category' => 'Категорија',
+ 'claim' => 'Тврдат',
+ 'claim-anon-choose' => 'Изберете мудро',
+ 'claim-as-anon' => 'Дали би сакал да го поднесам ова анонимно',
+ 'claim-now' => 'Тврдат сега',
+ 'claimed' => 'Тврдеше',
+ 'current' => 'Тековна',
+ 'delete' => 'Избришете го ова Барање',
'delete-confirmation' => 'Дали сте сигурни дека сакате да го избришете ова Барање',
- 'delete-filled' => 'Ова барање може да се избрише само ако не е пополнето',
- 'description' => 'Опис',
- 'dont-have-bps' => 'Вие немате доволно Бонус',
- 'edit-request' => 'Уредете го барањето',
- 'enter-bp' => 'Внесете бонус поени (минимум 100)',
- 'enter-hash' => 'Внесете го Info Hash на подигнатиот Torrent',
- 'fill' => 'Пополнете',
- 'fill-request' => 'Пополнете го ова барање',
- 'filled' => 'Пополнети',
- 'filled-by' => 'Исполнет од',
- 'for' => 'за',
- 'fulfill' => 'Исполни',
- 'last-vote' => 'Последно гласање',
- 'my-requests' => 'Моите барања',
- 'no' => 'Не,',
- 'no-imdb-id' => 'Сите барања мора да содржат IMDB број',
- 'no-privileges' => 'Грешка: Вашите права за барање се оневозможени',
- 'no-privileges-desc' => 'Ако сметате дека ова е погрешно, контактирајте со персоналот',
- 'no-refunds' => 'Размените на БОН за креирање, пополнување и награди се конечни!
НЕ СЕ ВРАЌАЊЕ!',
- 'pending' => 'Во тек',
- 'reason' => 'Причина',
- 'reject' => 'Отфрли',
- 'report' => 'Пријавете барање',
- 'request' => 'Барање',
- 'request-details' => 'Барам детали',
- 'requested-by' => 'Побарано од страна',
- 'requests' => 'Барања',
- 'required' => 'Потребна е',
- 'reset' => 'Ресетирај',
- 'reset-confirmation' => 'Дали сте сигурни дека сакате да го ресетирате ова барање?',
- 'reset-request' => 'Ресетирајте го ова Барање',
- 'reward' => 'Награда',
- 'reward-desc' => 'Колку бонус точка би сакале да се наградат? Минимум 100 БП',
- 'reward-from' => 'Од',
- 'title' => 'Наслов',
- 'torrent-hash' => 'Torrent Hash',
- 'total-bounty' => 'Вкупно распродаж',
- 'type' => 'Тип',
- 'unclaim' => 'Ослободете го ова барање',
- 'unfilled' => 'Незавршени',
- 'view-filled' => 'Погледнете исполнет',
- 'view-unfilled' => 'Погледнете незавршено',
- 'vote' => 'Гласај',
- 'vote-that' => 'Гласајте го ова Барање',
- 'voters' => 'Гласачи',
- 'votes' => 'Гласови',
- 'yes' => 'Да',
+ 'delete-filled' => 'Ова барање може да се избрише само ако не е пополнето',
+ 'description' => 'Опис',
+ 'dont-have-bps' => 'Вие немате доволно Бонус',
+ 'edit-request' => 'Уредете го барањето',
+ 'enter-bp' => 'Внесете бонус поени (минимум 100)',
+ 'enter-hash' => 'Внесете го Info Hash на подигнатиот Torrent',
+ 'fill' => 'Пополнете',
+ 'fill-request' => 'Пополнете го ова барање',
+ 'filled' => 'Пополнети',
+ 'filled-by' => 'Исполнет од',
+ 'for' => 'за',
+ 'fulfill' => 'Исполни',
+ 'last-vote' => 'Последно гласање',
+ 'my-requests' => 'Моите барања',
+ 'no' => 'Не,',
+ 'no-imdb-id' => 'Сите барања мора да содржат IMDB број',
+ 'no-privileges' => 'Грешка: Вашите права за барање се оневозможени',
+ 'no-privileges-desc' => 'Ако сметате дека ова е погрешно, контактирајте со персоналот',
+ 'no-refunds' => 'Размените на БОН за креирање, пополнување и награди се конечни!
НЕ СЕ ВРАЌАЊЕ!',
+ 'pending' => 'Во тек',
+ 'reason' => 'Причина',
+ 'reject' => 'Отфрли',
+ 'report' => 'Пријавете барање',
+ 'request' => 'Барање',
+ 'request-details' => 'Барам детали',
+ 'requested-by' => 'Побарано од страна',
+ 'requests' => 'Барања',
+ 'required' => 'Потребна е',
+ 'reset' => 'Ресетирај',
+ 'reset-confirmation' => 'Дали сте сигурни дека сакате да го ресетирате ова барање?',
+ 'reset-request' => 'Ресетирајте го ова Барање',
+ 'reward' => 'Награда',
+ 'reward-desc' => 'Колку бонус точка би сакале да се наградат? Минимум 100 БП',
+ 'reward-from' => 'Од',
+ 'title' => 'Наслов',
+ 'torrent-hash' => 'Torrent Hash',
+ 'total-bounty' => 'Вкупно распродаж',
+ 'type' => 'Тип',
+ 'unclaim' => 'Ослободете го ова барање',
+ 'unfilled' => 'Незавршени',
+ 'view-filled' => 'Погледнете исполнет',
+ 'view-unfilled' => 'Погледнете незавршено',
+ 'vote' => 'Гласај',
+ 'vote-that' => 'Гласајте го ова Барање',
+ 'voters' => 'Гласачи',
+ 'votes' => 'Гласови',
+ 'yes' => 'Да',
];
diff --git a/lang/mk/rss.php b/lang/mk/rss.php
index 886da11ed..cbec61770 100644
--- a/lang/mk/rss.php
+++ b/lang/mk/rss.php
@@ -12,19 +12,19 @@
*/
return [
- 'create' => 'Креирај',
+ 'create' => 'Креирај',
'create-private-feed' => 'Креирај Приватен RSS наслови',
- 'create-public-feed' => 'Креирај јавен RSS канал',
- 'delete' => 'Избриши',
- 'edit' => 'Уредување',
- 'edit-private-feed' => 'Уредете го RSS Feed',
- 'edit-public-feed' => 'Уредување на јавен RSS наслов',
- 'feed' => 'Feed',
- 'feeds' => 'Се хранат',
- 'name' => 'Име',
- 'public' => 'Јавно',
- 'private' => 'Приватен',
- 'rss' => 'RSS',
- 'rss-feed' => 'RSS наслови',
- 'type' => 'Тип',
+ 'create-public-feed' => 'Креирај јавен RSS канал',
+ 'delete' => 'Избриши',
+ 'edit' => 'Уредување',
+ 'edit-private-feed' => 'Уредете го RSS Feed',
+ 'edit-public-feed' => 'Уредување на јавен RSS наслов',
+ 'feed' => 'Feed',
+ 'feeds' => 'Се хранат',
+ 'name' => 'Име',
+ 'public' => 'Јавно',
+ 'private' => 'Приватен',
+ 'rss' => 'RSS',
+ 'rss-feed' => 'RSS наслови',
+ 'type' => 'Тип',
];
diff --git a/lang/mk/staff.php b/lang/mk/staff.php
index 9aea261d7..a1ca6254f 100644
--- a/lang/mk/staff.php
+++ b/lang/mk/staff.php
@@ -12,48 +12,48 @@
*/
return [
- 'audit-log' => 'Дневник на активност',
- 'articles' => 'Статии',
- 'applications' => 'Апликации',
- 'bans-log' => 'Забрани логирање',
- 'blocks' => 'Блокови',
- 'bot' => 'Бот',
- 'bots' => 'Ботови',
- 'chat' => 'Разговор',
- 'config-manager' => 'Конфигурациски менаџер',
- 'dashboard' => 'Табла',
- 'failed-login-log' => 'Неуспешно логирање за најавување',
- 'flush-ghost-peers' => 'Флеш Дух врсници',
- 'forums' => 'Форуми',
- 'frontend' => 'Предниот крај',
- 'general-tools' => 'Општи алатки',
- 'groups' => 'Групи',
- 'invites-log' => 'Покажува дневник',
- 'laravel-log' => 'Laravel Log',
- 'links' => 'Линкови',
- 'logs' => 'Логови',
- 'mass-pm' => 'Маса премиер',
- 'mass-validate-users' => 'Масовно провери корисници',
- 'moderation' => 'Модерација',
- 'pages' => 'Страници',
- 'please-moderate' => 'Ве молиме уметете го овој торент!',
- 'polls' => 'Анкети',
- 'reports-log' => 'Пријави извештаи',
- 'rss' => 'RSS',
- 'staff-dashboard' => 'Табла за персоналот',
- 'torrent-categories' => 'Категории на категории',
- 'torrent-moderation' => 'Torrent модерација',
- 'torrent-tools' => 'Torrent Tools',
- 'torrent-types' => 'Видови на оружје',
- 'torrents' => 'Torrents',
- 'user-gifting' => 'Кориснички подароци',
- 'user-notes' => 'Дневник за кориснички белешки',
- 'user-search' => 'Корисничко пребарување',
- 'user-tools' => 'Кориснички алатки',
- 'warnings-log' => 'Предупредувања се најавува',
- 'you-have' => 'Имаш',
+ 'audit-log' => 'Дневник на активност',
+ 'articles' => 'Статии',
+ 'applications' => 'Апликации',
+ 'bans-log' => 'Забрани логирање',
+ 'blocks' => 'Блокови',
+ 'bot' => 'Бот',
+ 'bots' => 'Ботови',
+ 'chat' => 'Разговор',
+ 'config-manager' => 'Конфигурациски менаџер',
+ 'dashboard' => 'Табла',
+ 'failed-login-log' => 'Неуспешно логирање за најавување',
+ 'flush-ghost-peers' => 'Флеш Дух врсници',
+ 'forums' => 'Форуми',
+ 'frontend' => 'Предниот крај',
+ 'general-tools' => 'Општи алатки',
+ 'groups' => 'Групи',
+ 'invites-log' => 'Покажува дневник',
+ 'laravel-log' => 'Laravel Log',
+ 'links' => 'Линкови',
+ 'logs' => 'Логови',
+ 'mass-pm' => 'Маса премиер',
+ 'mass-validate-users' => 'Масовно провери корисници',
+ 'moderation' => 'Модерација',
+ 'pages' => 'Страници',
+ 'please-moderate' => 'Ве молиме уметете го овој торент!',
+ 'polls' => 'Анкети',
+ 'reports-log' => 'Пријави извештаи',
+ 'rss' => 'RSS',
+ 'staff-dashboard' => 'Табла за персоналот',
+ 'torrent-categories' => 'Категории на категории',
+ 'torrent-moderation' => 'Torrent модерација',
+ 'torrent-tools' => 'Torrent Tools',
+ 'torrent-types' => 'Видови на оружје',
+ 'torrents' => 'Torrents',
+ 'user-gifting' => 'Кориснички подароци',
+ 'user-notes' => 'Дневник за кориснички белешки',
+ 'user-search' => 'Корисничко пребарување',
+ 'user-tools' => 'Кориснички алатки',
+ 'warnings-log' => 'Предупредувања се најавува',
+ 'you-have' => 'Имаш',
'possible-leech-cheaters' => 'Можни измамници',
- 'chat-tools' => 'Алатки за разговор',
- 'flush-chat' => 'Флеш Четбокс',
- 'seedboxes' => 'Регистрирани семенски кутии',
+ 'chat-tools' => 'Алатки за разговор',
+ 'flush-chat' => 'Флеш Четбокс',
+ 'seedboxes' => 'Регистрирани семенски кутии',
];
diff --git a/lang/mk/stat.php b/lang/mk/stat.php
index 440cb2585..cfb7a77b4 100644
--- a/lang/mk/stat.php
+++ b/lang/mk/stat.php
@@ -12,40 +12,40 @@
*/
return [
- 'by-count' => 'Од страна на грофот',
- 'by-data' => 'Со податоци',
- 'by-volume' => 'Со волумен',
- 'group' => 'Група',
- 'groups' => 'Групи',
- 'nerd-stats' => 'Нерд статистика',
- 'nerd-stats-desc' => 'Сите ги сакаме статистиките. Еве неколку што сметаме дека се важни',
- 'registration-date' => 'Датум на регистрација',
- 'request-fulfilled' => 'Барањето е исполнето',
- 'request-not-fulfilled' => 'Барањето не е исполнето',
+ 'by-count' => 'Од страна на грофот',
+ 'by-data' => 'Со податоци',
+ 'by-volume' => 'Со волумен',
+ 'group' => 'Група',
+ 'groups' => 'Групи',
+ 'nerd-stats' => 'Нерд статистика',
+ 'nerd-stats-desc' => 'Сите ги сакаме статистиките. Еве неколку што сметаме дека се важни',
+ 'registration-date' => 'Датум на регистрација',
+ 'request-fulfilled' => 'Барањето е исполнето',
+ 'request-not-fulfilled' => 'Барањето не е исполнето',
'request-pending-aproval' => 'Барање во очекување на одобрување',
- 'select-category' => 'Изберете категорија подолу',
- 'site-stats' => 'Статистика на сајтот',
- 'stats' => 'Статистика',
- 'stats-format' => 'Сите статистики се прикажани во топ 100 формат',
- 'top-bankers' => 'Топ банкари',
- 'top-bountied' => 'Top Bountied',
- 'top-completed' => 'Врвот е завршен',
- 'top-dead' => 'Top Dead',
- 'top-downloaded' => 'Најпопуларни преземени торренти',
- 'top-downloaders' => 'Врвни преземачи',
- 'top-dying' => 'Топ умирање',
- 'top-leeched' => 'На врвчето',
- 'top-leechers' => 'Топ Leechers',
- 'top-seeded' => 'Врвот седи',
- 'top-seeding' => 'Топ Закажувам',
- 'top-seeders' => 'Врвни седери',
- 'top-seedsize' => 'Најгоре Семезирај',
- 'top-seedtime' => 'Top Seedtime',
- 'top-uploaders' => 'Топ Постувачи',
- 'total-download' => 'Вкупно преземање',
- 'total-torrents' => 'Вкупно ротации',
- 'total-traffic' => 'Вкупно сообраќај',
- 'total-upload' => 'Вкупно поставување',
- 'users-in-group' => 'Корисници во група',
- 'users-per-group' => 'Корисници по група',
+ 'select-category' => 'Изберете категорија подолу',
+ 'site-stats' => 'Статистика на сајтот',
+ 'stats' => 'Статистика',
+ 'stats-format' => 'Сите статистики се прикажани во топ 100 формат',
+ 'top-bankers' => 'Топ банкари',
+ 'top-bountied' => 'Top Bountied',
+ 'top-completed' => 'Врвот е завршен',
+ 'top-dead' => 'Top Dead',
+ 'top-downloaded' => 'Најпопуларни преземени торренти',
+ 'top-downloaders' => 'Врвни преземачи',
+ 'top-dying' => 'Топ умирање',
+ 'top-leeched' => 'На врвчето',
+ 'top-leechers' => 'Топ Leechers',
+ 'top-seeded' => 'Врвот седи',
+ 'top-seeding' => 'Топ Закажувам',
+ 'top-seeders' => 'Врвни седери',
+ 'top-seedsize' => 'Најгоре Семезирај',
+ 'top-seedtime' => 'Top Seedtime',
+ 'top-uploaders' => 'Топ Постувачи',
+ 'total-download' => 'Вкупно преземање',
+ 'total-torrents' => 'Вкупно ротации',
+ 'total-traffic' => 'Вкупно сообраќај',
+ 'total-upload' => 'Вкупно поставување',
+ 'users-in-group' => 'Корисници во група',
+ 'users-per-group' => 'Корисници по група',
];
diff --git a/lang/mk/torrent.php b/lang/mk/torrent.php
index ff2f3c8f4..93001888e 100644
--- a/lang/mk/torrent.php
+++ b/lang/mk/torrent.php
@@ -12,197 +12,197 @@
*/
return [
- 'activity' => 'Активност',
- 'age' => 'Возраст',
- 'agent' => 'Агент',
- 'alive' => 'Жив',
- 'announce-url' => 'Објавете URL',
- 'announce-url-desc' => 'Ве молиме користете го објавувањето URL-то погоре кога креираш нов torrent. Ако сакате да го користите вашиот torrent без да го преземете од страницата, треба да го поставите приватното знаме и изворот да: извор',
- 'announce-url-desc-url' => 'Имајќи проблеми? Видете наш водич ТУКА',
- 'announce-url-desc2' => 'TMDB и IMDB се потребни за сите поставувања! Се користи за грабнување на постери / задни и екстра инфо',
- 'approved' => 'Одобрено',
- 'audio' => 'Аудио',
- 'bon-tipped' => 'БОН',
- 'bookmark' => 'Обележувач',
- 'bookmarks' => 'Обележувачи',
- 'bump' => 'Пад',
- 'cant-upload' => 'Грешка: Вашите права за поставување се оневозможени',
- 'cant-upload-desc' => 'Ако се чувствувате ова е во грешка, Ве молиме контактирајте го персоналот',
- 'cards' => 'Картички',
- 'cards-view' => 'Поглед на Torrent Cards',
- 'categories' => 'Категории',
- 'category' => 'Категорија',
- 'client' => 'Клиент',
- 'commited' => 'Посветени',
- 'completed' => 'Завршено',
- 'completed_at' => 'Завршено во',
- 'completed-not-seeding' => 'Завршивте овој превземање, но повеќе не го задржувате',
- 'created_at' => 'Создаден во',
- 'credited' => 'Кредитирани',
- 'current' => 'Тековна',
- 'current-filters' => 'Тековни филтри',
- 'currently-leeching' => 'Во моментов лечење',
- 'currently-seeding' => 'Во моментов седи',
- 'dead-torrent' => 'Dead Torrent',
- 'dead-torrents' => 'Мртви торренти',
- 'delete-bookmark' => 'Избриши го овој обележувач',
- 'description' => 'Опис',
- 'discounts' => 'Попусти',
- 'double-upload' => 'Двоен Upload',
- 'download-all' => 'Преземи ги сите',
- 'download-check' => 'Преземи проверка',
- 'downloaded' => 'Преземени',
- 'dying-torrent' => 'Умирање Torrent',
- 'dying-torrents' => 'Умира торрент',
- 'encode-settings' => 'Кодирај ги подесувањата',
- 'estimated-ratio' => 'Проценувачки сооднос по преземањето',
- 'failed' => 'Не успеа',
- 'feature' => 'Функција',
- 'featured' => 'Избрана',
- 'featured-desc' => 'Означени торенти се 100% слободен и Двоен Upload!',
- 'featured-until' => 'Ова е извонреден преглед до',
- 'file' => 'Датотека',
- 'filters' => 'Филтри',
- 'fl-tokens-left' => 'Имаш : оставени лектори',
- 'freeleech' => 'Freeleech',
- 'freeleech-token' => 'Freeleech Token',
- 'general' => 'Генерал',
- 'genre' => 'Жанр',
- 'global-double-upload' => 'Глобална двојна поставка',
- 'global-freeleech' => 'Глобален Freeleech',
- 'grant' => 'Грант',
- 'greater-than' => 'Поголем од',
- 'grouping' => 'Групирање',
- 'groupings' => 'Групи',
- 'grouping-categories' => 'Категории на групирање',
+ 'activity' => 'Активност',
+ 'age' => 'Возраст',
+ 'agent' => 'Агент',
+ 'alive' => 'Жив',
+ 'announce-url' => 'Објавете URL',
+ 'announce-url-desc' => 'Ве молиме користете го објавувањето URL-то погоре кога креираш нов torrent. Ако сакате да го користите вашиот torrent без да го преземете од страницата, треба да го поставите приватното знаме и изворот да: извор',
+ 'announce-url-desc-url' => 'Имајќи проблеми? Видете наш водич ТУКА',
+ 'announce-url-desc2' => 'TMDB и IMDB се потребни за сите поставувања! Се користи за грабнување на постери / задни и екстра инфо',
+ 'approved' => 'Одобрено',
+ 'audio' => 'Аудио',
+ 'bon-tipped' => 'БОН',
+ 'bookmark' => 'Обележувач',
+ 'bookmarks' => 'Обележувачи',
+ 'bump' => 'Пад',
+ 'cant-upload' => 'Грешка: Вашите права за поставување се оневозможени',
+ 'cant-upload-desc' => 'Ако се чувствувате ова е во грешка, Ве молиме контактирајте го персоналот',
+ 'cards' => 'Картички',
+ 'cards-view' => 'Поглед на Torrent Cards',
+ 'categories' => 'Категории',
+ 'category' => 'Категорија',
+ 'client' => 'Клиент',
+ 'commited' => 'Посветени',
+ 'completed' => 'Завршено',
+ 'completed_at' => 'Завршено во',
+ 'completed-not-seeding' => 'Завршивте овој превземање, но повеќе не го задржувате',
+ 'created_at' => 'Создаден во',
+ 'credited' => 'Кредитирани',
+ 'current' => 'Тековна',
+ 'current-filters' => 'Тековни филтри',
+ 'currently-leeching' => 'Во моментов лечење',
+ 'currently-seeding' => 'Во моментов седи',
+ 'dead-torrent' => 'Dead Torrent',
+ 'dead-torrents' => 'Мртви торренти',
+ 'delete-bookmark' => 'Избриши го овој обележувач',
+ 'description' => 'Опис',
+ 'discounts' => 'Попусти',
+ 'double-upload' => 'Двоен Upload',
+ 'download-all' => 'Преземи ги сите',
+ 'download-check' => 'Преземи проверка',
+ 'downloaded' => 'Преземени',
+ 'dying-torrent' => 'Умирање Torrent',
+ 'dying-torrents' => 'Умира торрент',
+ 'encode-settings' => 'Кодирај ги подесувањата',
+ 'estimated-ratio' => 'Проценувачки сооднос по преземањето',
+ 'failed' => 'Не успеа',
+ 'feature' => 'Функција',
+ 'featured' => 'Избрана',
+ 'featured-desc' => 'Означени торенти се 100% слободен и Двоен Upload!',
+ 'featured-until' => 'Ова е извонреден преглед до',
+ 'file' => 'Датотека',
+ 'filters' => 'Филтри',
+ 'fl-tokens-left' => 'Имаш : оставени лектори',
+ 'freeleech' => 'Freeleech',
+ 'freeleech-token' => 'Freeleech Token',
+ 'general' => 'Генерал',
+ 'genre' => 'Жанр',
+ 'global-double-upload' => 'Глобална двојна поставка',
+ 'global-freeleech' => 'Глобален Freeleech',
+ 'grant' => 'Грант',
+ 'greater-than' => 'Поголем од',
+ 'grouping' => 'Групирање',
+ 'groupings' => 'Групи',
+ 'grouping-categories' => 'Категории на групирање',
'grouping-categories-desc' => 'Која категорија сакате да ја групирате?',
- 'grouping-results' => 'Групни резултати',
- 'groupings-view' => 'Групирање Прикажи',
- 'have-completed' => 'Завршено',
- 'have-downloaded' => 'Преземени',
- 'have-not-completed' => 'Не е завршено',
- 'have-not-downloaded' => 'Не се преземени',
- 'health' => 'Здравје',
- 'history' => 'Историја',
- 'hitrun' => 'H & R?',
- 'hit-and-runs' => 'Хит и Старт брои',
- 'immune' => 'Имунолошки?',
- 'info' => 'Информации',
- 'internal' => 'Внатрешна',
- 'internal-release' => 'Внатрешно ослободување',
- 'last-seed-activity' => 'Последна активност на семето',
- 'last-seeder' => 'Вие сте последниот останувач! (беше симнат барем 3 пати)',
- 'last-update' => 'Последно ажурирање',
- 'leave-tip' => 'Оставете го врвот',
- 'leecher' => 'Лече',
- 'leechers' => 'Leechers',
- 'leeching' => 'Пукање',
- 'left' => 'Лево',
- 'legendary-seeder' => 'Легендарниот сејдер',
- 'legendary-torrent' => 'Легендарниот торент',
- 'list' => 'Листа',
- 'me' => 'Јас',
- 'media-info' => 'MediaInfo',
- 'media-info-parser' => 'Parser на MediaInfo',
- 'media-info-paste' => 'Вметнете ја депонијата МедиаИнфо тука',
- 'meta-desc' => 'Преземи: име со максимална брзина',
- 'moderation' => 'Модерација',
- 'movies' => 'Филмови',
- 'mvp' => 'MVP',
- 'my-active-torrents' => 'Моите активни порои',
- 'name' => 'Име',
- 'no-bookmarks' => 'Нема пронајдени обележувачи.',
- 'no-discounts' => 'Во моментов нема попусти',
- 'no-meta' => 'Не се пронајдени метаподатоци',
- 'no-privileges' => 'Не можете да ја преземете оваа датотека - ве молиме проверете подолу за повеќе информации',
- 'no-privileges-desc' => 'Ве молиме да ги решите неуспешните резултати погоре за копчето за преземање за да се појават',
- 'not-completed' => 'Започна да се симнува, но никогаш не е завршено',
- 'not-downloaded' => 'Не се преземени',
- 'old-torrent' => 'Стар torrent',
- 'optional' => 'Изборен',
- 'original-output' => 'Прикажи / Скриј го оригиналниот излез',
- 'participant' => 'Учесник',
- 'passed' => 'Помина',
- 'peers' => 'Врсници',
- 'pending' => 'Во тек',
- 'personal-freeleech' => 'Личен Freeleech',
- 'poster' => 'Постер',
- 'poster-view' => 'Поглед на постер',
- 'posters' => 'Постери',
- 'prewarn' => 'Запознаен?',
- 'progress' => 'Напредок',
- 'quick-comment' => 'Брз коментар',
- 'quick-tip' => 'Брзи врски',
- 'rated' => 'Оценето',
- 'rating' => 'Рејтинг',
- 'ready' => 'Оваа датотека е подготвена за преземање',
- 'rejected' => 'Одбиено',
- 'released' => 'Објавено',
- 'remaining' => 'Останува',
- 'request-reseed' => 'Барање резервирано',
- 'requires-reseed' => 'Потребна е резерва',
- 'resurrections' => 'Воскресенија',
- 'revoke' => 'Откажи',
- 'rss' => 'RSS',
- 'runtime' => 'Траење',
- 'satisfied_in' => 'Задоволен во',
- 'say-thanks' => 'Ве молиме запомнете да се заблагодарите и да седете колку што е можно подолго',
- 'sd-content' => 'SD содржина',
- 'search' => 'Барај',
- 'seed-time' => 'Време на семето',
- 'seeder' => 'Seeder',
- 'seeders' => 'Сејдери',
- 'seeding' => 'Закажувам',
- 'seedsize' => 'Семезирај',
- 'seedtime' => 'Seedtime',
- 'short-completed' => 'C',
- 'short-leechs' => 'Л',
- 'short-seeds' => 'S',
- 'show-files' => 'Прикажи датотеки',
- 'similar' => 'Слични Torrents',
- 'size' => 'Големина',
- 'special' => 'Специјални',
- 'special-freeleech' => 'Специјален Freeleech',
- 'started' => 'Почна',
- 'status' => 'Статус',
- 'statistics' => 'Статистика',
- 'stats' => 'Статистика',
- 'sticky' => 'Леплива',
- 'stream-optimized' => 'Тек оптимизиран',
- 'subtitle' => 'Превод',
- 'team-player' => 'Тимски играч',
- 'thank' => 'Благодарам',
- 'thanked' => 'Заблагодарен',
- 'thanks' => 'Благодарам',
- 'thanks-given' => 'Благодарение дадена',
- 'times' => 'Времиња',
- 'tip-jar' => 'Совет тегла',
- 'title' => 'Наслов',
- 'titles' => 'Наслови',
- 'top-completed' => 'Најдобро е завршено',
- 'top-dead' => 'Топ мртов',
- 'top-dying' => 'Врвна смрт',
- 'top-leeched' => 'На врвот излезе',
- 'top-seeded' => 'Најсодржајниот врвот',
- 'torrent' => 'Torrent',
- 'torrent-request' => 'Барање за Torrent',
- 'torrent-tips' => 'Во Вкупно : вкупно BON е доставен до поставувачот, од кои : корисникот е од вас',
- 'torrent-tips-desc' => 'Ова ќе биде одземено од вашите достапни бонус поени',
- 'torrents' => 'Torrents',
- 'trailer' => 'Прегледај ја приколката',
- 'type' => 'Тип',
- 'types' => 'Видови',
- 'unbookmark' => 'Ознаки за обележување',
- 'unsatisfieds' => 'Незадоволни',
- 'unsticky' => 'Нестабилен',
- 'updated' => 'Ажурирано',
- 'updated_at' => 'Ажурирано во',
- 'uploaded' => 'Поставено',
- 'uploaded-by' => 'Испратено од',
- 'uploader' => 'Поставувач',
- 'use-fl-token' => 'Користете го токенот на Freeleech',
- 'video' => 'Видео',
- 'view-more' => 'Гледај Повеќе',
- 'view-trailer' => 'Прегледај ја приколката',
- 'votes' => 'Гласови',
+ 'grouping-results' => 'Групни резултати',
+ 'groupings-view' => 'Групирање Прикажи',
+ 'have-completed' => 'Завршено',
+ 'have-downloaded' => 'Преземени',
+ 'have-not-completed' => 'Не е завршено',
+ 'have-not-downloaded' => 'Не се преземени',
+ 'health' => 'Здравје',
+ 'history' => 'Историја',
+ 'hitrun' => 'H & R?',
+ 'hit-and-runs' => 'Хит и Старт брои',
+ 'immune' => 'Имунолошки?',
+ 'info' => 'Информации',
+ 'internal' => 'Внатрешна',
+ 'internal-release' => 'Внатрешно ослободување',
+ 'last-seed-activity' => 'Последна активност на семето',
+ 'last-seeder' => 'Вие сте последниот останувач! (беше симнат барем 3 пати)',
+ 'last-update' => 'Последно ажурирање',
+ 'leave-tip' => 'Оставете го врвот',
+ 'leecher' => 'Лече',
+ 'leechers' => 'Leechers',
+ 'leeching' => 'Пукање',
+ 'left' => 'Лево',
+ 'legendary-seeder' => 'Легендарниот сејдер',
+ 'legendary-torrent' => 'Легендарниот торент',
+ 'list' => 'Листа',
+ 'me' => 'Јас',
+ 'media-info' => 'MediaInfo',
+ 'media-info-parser' => 'Parser на MediaInfo',
+ 'media-info-paste' => 'Вметнете ја депонијата МедиаИнфо тука',
+ 'meta-desc' => 'Преземи: име со максимална брзина',
+ 'moderation' => 'Модерација',
+ 'movies' => 'Филмови',
+ 'mvp' => 'MVP',
+ 'my-active-torrents' => 'Моите активни порои',
+ 'name' => 'Име',
+ 'no-bookmarks' => 'Нема пронајдени обележувачи.',
+ 'no-discounts' => 'Во моментов нема попусти',
+ 'no-meta' => 'Не се пронајдени метаподатоци',
+ 'no-privileges' => 'Не можете да ја преземете оваа датотека - ве молиме проверете подолу за повеќе информации',
+ 'no-privileges-desc' => 'Ве молиме да ги решите неуспешните резултати погоре за копчето за преземање за да се појават',
+ 'not-completed' => 'Започна да се симнува, но никогаш не е завршено',
+ 'not-downloaded' => 'Не се преземени',
+ 'old-torrent' => 'Стар torrent',
+ 'optional' => 'Изборен',
+ 'original-output' => 'Прикажи / Скриј го оригиналниот излез',
+ 'participant' => 'Учесник',
+ 'passed' => 'Помина',
+ 'peers' => 'Врсници',
+ 'pending' => 'Во тек',
+ 'personal-freeleech' => 'Личен Freeleech',
+ 'poster' => 'Постер',
+ 'poster-view' => 'Поглед на постер',
+ 'posters' => 'Постери',
+ 'prewarn' => 'Запознаен?',
+ 'progress' => 'Напредок',
+ 'quick-comment' => 'Брз коментар',
+ 'quick-tip' => 'Брзи врски',
+ 'rated' => 'Оценето',
+ 'rating' => 'Рејтинг',
+ 'ready' => 'Оваа датотека е подготвена за преземање',
+ 'rejected' => 'Одбиено',
+ 'released' => 'Објавено',
+ 'remaining' => 'Останува',
+ 'request-reseed' => 'Барање резервирано',
+ 'requires-reseed' => 'Потребна е резерва',
+ 'resurrections' => 'Воскресенија',
+ 'revoke' => 'Откажи',
+ 'rss' => 'RSS',
+ 'runtime' => 'Траење',
+ 'satisfied_in' => 'Задоволен во',
+ 'say-thanks' => 'Ве молиме запомнете да се заблагодарите и да седете колку што е можно подолго',
+ 'sd-content' => 'SD содржина',
+ 'search' => 'Барај',
+ 'seed-time' => 'Време на семето',
+ 'seeder' => 'Seeder',
+ 'seeders' => 'Сејдери',
+ 'seeding' => 'Закажувам',
+ 'seedsize' => 'Семезирај',
+ 'seedtime' => 'Seedtime',
+ 'short-completed' => 'C',
+ 'short-leechs' => 'Л',
+ 'short-seeds' => 'S',
+ 'show-files' => 'Прикажи датотеки',
+ 'similar' => 'Слични Torrents',
+ 'size' => 'Големина',
+ 'special' => 'Специјални',
+ 'special-freeleech' => 'Специјален Freeleech',
+ 'started' => 'Почна',
+ 'status' => 'Статус',
+ 'statistics' => 'Статистика',
+ 'stats' => 'Статистика',
+ 'sticky' => 'Леплива',
+ 'stream-optimized' => 'Тек оптимизиран',
+ 'subtitle' => 'Превод',
+ 'team-player' => 'Тимски играч',
+ 'thank' => 'Благодарам',
+ 'thanked' => 'Заблагодарен',
+ 'thanks' => 'Благодарам',
+ 'thanks-given' => 'Благодарение дадена',
+ 'times' => 'Времиња',
+ 'tip-jar' => 'Совет тегла',
+ 'title' => 'Наслов',
+ 'titles' => 'Наслови',
+ 'top-completed' => 'Најдобро е завршено',
+ 'top-dead' => 'Топ мртов',
+ 'top-dying' => 'Врвна смрт',
+ 'top-leeched' => 'На врвот излезе',
+ 'top-seeded' => 'Најсодржајниот врвот',
+ 'torrent' => 'Torrent',
+ 'torrent-request' => 'Барање за Torrent',
+ 'torrent-tips' => 'Во Вкупно : вкупно BON е доставен до поставувачот, од кои : корисникот е од вас',
+ 'torrent-tips-desc' => 'Ова ќе биде одземено од вашите достапни бонус поени',
+ 'torrents' => 'Torrents',
+ 'trailer' => 'Прегледај ја приколката',
+ 'type' => 'Тип',
+ 'types' => 'Видови',
+ 'unbookmark' => 'Ознаки за обележување',
+ 'unsatisfieds' => 'Незадоволни',
+ 'unsticky' => 'Нестабилен',
+ 'updated' => 'Ажурирано',
+ 'updated_at' => 'Ажурирано во',
+ 'uploaded' => 'Поставено',
+ 'uploaded-by' => 'Испратено од',
+ 'uploader' => 'Поставувач',
+ 'use-fl-token' => 'Користете го токенот на Freeleech',
+ 'video' => 'Видео',
+ 'view-more' => 'Гледај Повеќе',
+ 'view-trailer' => 'Прегледај ја приколката',
+ 'votes' => 'Гласови',
];
diff --git a/lang/mk/user.php b/lang/mk/user.php
index c8a817fd2..4d67463fb 100644
--- a/lang/mk/user.php
+++ b/lang/mk/user.php
@@ -12,316 +12,316 @@
*/
return [
- 'about' => 'За',
- 'about-me' => 'За мене',
- 'accepted-at' => 'Прифатено во',
- 'accepted-by' => 'Прифатено од',
- 'account-notification' => 'Подесувања за известување за сметката',
- 'account-notification-follow' => 'Примајте известување кога корисникот ја следи вашата сметка',
- 'account-notification-unfollow' => 'Примајте известување кога корисникот не ја објави вашата сметка',
- 'account-notification-help' => 'Контролирајте кои известувања се испраќаат во врска со вашата сметка. Овие поставки се преоптоварени ако не дозволите групите да испраќаат известувања во врска со вашата сметка или ако Вие ги оневозможите Известувања',
- 'account-settings' => 'Подесувања на сметка',
- 'achievement-privacy' => 'Поставувања за достигнување',
- 'achievement-privacy-list' => 'Овозможете им на корисниците да ја видат листата на вашите достигнувања',
- 'achievement-help' => 'Контролирајте го споделувањето на специфични информации поврзани со постигнувањата со групите на кои им е дозволено пристап до вашиот профил. Овие поставки се преоптоварени ако не им дозволите на ниедна група да пристапи до вашите достигнувања или ако одите приватно',
- 'achievements' => 'Достигнувања',
- 'active' => 'Активен',
- 'active-table' => 'Мојата активна табела',
- 'active-torrents' => 'Активни торенти',
- 'active-warning' => 'Активно предупредување',
- 'active-warnings' => 'Активни предупредувања',
- 'add-seedbox' => 'Додај семплирање',
- 'all-torrents' => 'Сите торренти',
- 'article-comments' => 'Член Коментари Направени',
- 'avatar' => 'Аватар',
- 'avg-seedtime' => 'Просечна седмица',
- 'badges' => 'Значки',
- 'ban' => 'Забрани корисник',
- 'ban-log' => 'Запиши се',
- 'become-hidden' => 'Стани скриени',
- 'become-visible' => 'Стани видливи',
- 'bon' => 'БОН',
- 'bon-notification' => 'Подесувања на известувања за БОН',
- 'bon-notification-gift' => 'Примајте известување кога корисникот ќе му подари бон',
- 'bon-notification-help' => 'Контролирајте кои известувања се испраќаат во врска со трансакциите со BON. Овие поставки се преоптоварени ако не дозволите групите да испраќаат известувања во врска со BON или ако Вие ги оневозможите известувањата',
- 'bookmarks' => 'Обележувачи',
- 'bounty-given' => 'Баунти даден',
- 'bounty-received' => 'Добиена Баунти',
- 'can-chat' => 'Може да разговарате',
- 'can-comment' => 'Може да коментира',
- 'can-download' => 'Може да се преземе',
- 'can-invite' => 'Може да покани',
- 'can-request' => 'Може да побара',
- 'can-upload' => 'Може да се постави',
- 'certified-banker' => 'Сертифициран банкар',
- 'certified-banker-desc' => 'Има 50.000 или повеќе БОН во банка',
- 'certified-downloader' => 'Сертифициран симнувач',
- 'certified-downloader-desc' => 'Преземени 100 или повеќе торенти!',
- 'certified-seeder' => 'Сертифициран седец',
- 'certified-seeder-desc' => 'Закажувам 150 или повеќе торенти!',
- 'change-email' => 'Промена на е-пошта',
- 'change-email-help' => 'Ќе мора повторно да ја потврдите вашата сметка, откако ќе ја промените вашата е-пошта',
- 'change-password' => 'Промени го пасвордот',
- 'change-password-help' => 'Ќе мора повторно да се пријавите, откако ќе ја смените лозинката',
- 'client-ip-address' => 'Клиентска IP адреса',
- 'code' => 'Код',
- 'comments' => 'Коментари',
- 'created-on' => 'Создаден на',
- 'credited-download' => 'Кредитирана преземање',
- 'credited-upload' => 'Кредитирано поставување',
- 'current-password' => 'Сегашна лозинка',
- 'custom-title' => 'Прилагодено наслов',
- 'delete' => 'Избриши го корисникот',
- 'disable-notifications' => 'Оневозможи известувања',
- 'disclaimer' => 'Одрекување од одговорност',
- 'disclaimer-info' => 'Ние стандардно не ги најавуваме корисниците на IP адреси како повеќето тракери. Со додавање на вашата IP-адреса од сандачето подолу, се очекува дека знаете дека вашите IP-адреси наведени подолу сега се зачувани во нашата база на податоци, освен ако не ги избришете записите.',
- 'disclaimer-info-bordered' => 'Додадените IP-адреси на Seedbox потоа ќе активираат ознака за брзина на висока брзина на торентите именувани од IP-адресите наведени подолу',
- 'download-bon' => 'Преземање отстрането од BON Продавница',
- 'download-recorded' => 'Снимено преземање',
- 'download-true' => 'Точно преземање',
- 'downloads' => 'Преземања',
- 'edit' => 'Уредете го корисникот',
- 'edit-profile' => 'Уреди го профилот',
- 'enable-notifications' => 'Овозможи известувања',
- 'expired' => 'Истечено',
- 'expires-on' => 'Истекува на',
- 'extra' => 'Екстра',
- 'filled-request' => 'Пополнети барања за членови',
- 'follow' => 'Следете',
- 'follower-privacy' => 'Подесувања на следбеници',
- 'follower-privacy-list' => 'Дозволи им на корисниците да ја видат листата на вашите следбеници',
- 'follower-help' => 'Контролирајте го споделувањето на специфични информации поврзани со следбениците со групите на кои им е дозволено да пристапуваат до вашиот профил. Овие подесувања се преоптоварени ако не дозволите ниедна група да пристапи до вашите следбеници или ако одите приватна',
- 'followers' => 'Следбеници',
- 'following-notification' => 'Подесувани подесувања за известување на корисникот',
- 'following-notification-upload' => 'Примајте известување кога следен корисник подигнал torrent',
- 'following-notification-help' => 'Контролирајте кои известувања се праќаат во врска со акциите на корисникот што следат. Овие поставки се преоптоварени ако не дозволите групите да испраќаат известувања за следените корисници или ако Вие ги оневозможите известувањата',
- 'formats-are-supported' => ': формати се поддржани',
- 'forum-notification' => 'Поставувања за известување на форумот',
- 'forum-notification-topic' => 'Добијте известување кога некоја тема што ја започнавте добива нов пост',
- 'forum-notification-help' => 'Контролирајте кои известувања се испраќаат за активностите на форумот. Овие подесувања се преоптоварени ако не дозволите групите да испраќаат известувања за активности на форумот или ако ги оневозможите известувањата',
- 'forum-privacy' => 'Поставки на форумот',
- 'forum-privacy-post' => 'Дозволи им на корисниците да ја видат листата на постови на форумот што сте ги објавиле',
- 'forum-privacy-topic' => 'Дозволи им на корисниците да ја видат листата на теми на форумот што сте ги започнале',
- 'forum-help' => 'Контролирајте го споделувањето на специфични статистички податоци поврзани со форумот и информации со групите на кои им е дозволено пристап до вашиот профил. Овие поставки се преоптоварени ако не им дозволите на ниедна група да пристапи до статистичките податоци и информациите поврзани со форумот или ако одите приватно',
- 'forum-signature' => 'Потпис на форумот',
- 'forums' => 'Форуми',
- 'general' => 'Генерал',
- 'general-settings' => 'Општи поставувања',
- 'gift-given' => 'Подарок подарок',
- 'gift-received' => 'Добиен подарок',
- 'go-public' => 'Оди јавно',
- 'go-private' => 'Оди во приватна',
- 'history' => 'Историја',
- 'history-table' => 'Табела за мојата историја',
- 'hit-n-runs' => 'Хит и стартува',
- 'hit-n-runs-count' => 'Hit и Run Count (цело време)',
- 'hit-n-runs-history' => 'Torrent Хит и Извршува Историја',
- 'image' => 'Слика',
- 'important' => 'Важно',
- 'important-info' => 'Важна информација',
- 'information' => 'Информации',
- 'invite-friend' => 'Покани го својот пријател (е-пошта + задолжителна порака)',
- 'invite-tree' => 'Покани го дрвото',
- 'invites' => 'Покани',
- 'invites-banned' => 'Грешка: Вашите права за покана беа оневозможени',
- 'invites-banned-desc' => 'Ако се чувствувате ова е во грешка, Ве молиме контактирајте го персоналот!',
- 'invites-count' => 'Имате: брои ги поканите токени',
- 'invites-disabled' => 'Внимание: поканите се оневозможени поради отворање на регистрација!',
- 'invites-disabled-desc' => 'Ве молиме проверете наскоро!',
- 'invites-rules' => '- Само покани луѓе што ги познавате и доверба.
- Вие ќе бидете лично одговорени за оние што ги поканувате.
- Не ве поканувајте, го проверуваме секој поканет корисник.
- Не тргувајте или продаваме покани.
- Ако лицето што го покани е фатено мамење, трговска сметка или покани за продажба / тргување, ќе бидете предупредени.
',
- 'invites-send' => 'Покани Испрати',
- 'last-login' => 'Последна најава',
- 'locked' => 'Заклучен',
- 'locked-achievements' => 'Заклучени достигнувања',
- 'member-since' => 'Член од',
- 'members-desc' => 'Листа на корисници регистрирани на: наслов со сите групи. Најдете корисник сега.',
- 'mention-notification' => '@ Поставки за известување за мени',
+ 'about' => 'За',
+ 'about-me' => 'За мене',
+ 'accepted-at' => 'Прифатено во',
+ 'accepted-by' => 'Прифатено од',
+ 'account-notification' => 'Подесувања за известување за сметката',
+ 'account-notification-follow' => 'Примајте известување кога корисникот ја следи вашата сметка',
+ 'account-notification-unfollow' => 'Примајте известување кога корисникот не ја објави вашата сметка',
+ 'account-notification-help' => 'Контролирајте кои известувања се испраќаат во врска со вашата сметка. Овие поставки се преоптоварени ако не дозволите групите да испраќаат известувања во врска со вашата сметка или ако Вие ги оневозможите Известувања',
+ 'account-settings' => 'Подесувања на сметка',
+ 'achievement-privacy' => 'Поставувања за достигнување',
+ 'achievement-privacy-list' => 'Овозможете им на корисниците да ја видат листата на вашите достигнувања',
+ 'achievement-help' => 'Контролирајте го споделувањето на специфични информации поврзани со постигнувањата со групите на кои им е дозволено пристап до вашиот профил. Овие поставки се преоптоварени ако не им дозволите на ниедна група да пристапи до вашите достигнувања или ако одите приватно',
+ 'achievements' => 'Достигнувања',
+ 'active' => 'Активен',
+ 'active-table' => 'Мојата активна табела',
+ 'active-torrents' => 'Активни торенти',
+ 'active-warning' => 'Активно предупредување',
+ 'active-warnings' => 'Активни предупредувања',
+ 'add-seedbox' => 'Додај семплирање',
+ 'all-torrents' => 'Сите торренти',
+ 'article-comments' => 'Член Коментари Направени',
+ 'avatar' => 'Аватар',
+ 'avg-seedtime' => 'Просечна седмица',
+ 'badges' => 'Значки',
+ 'ban' => 'Забрани корисник',
+ 'ban-log' => 'Запиши се',
+ 'become-hidden' => 'Стани скриени',
+ 'become-visible' => 'Стани видливи',
+ 'bon' => 'БОН',
+ 'bon-notification' => 'Подесувања на известувања за БОН',
+ 'bon-notification-gift' => 'Примајте известување кога корисникот ќе му подари бон',
+ 'bon-notification-help' => 'Контролирајте кои известувања се испраќаат во врска со трансакциите со BON. Овие поставки се преоптоварени ако не дозволите групите да испраќаат известувања во врска со BON или ако Вие ги оневозможите известувањата',
+ 'bookmarks' => 'Обележувачи',
+ 'bounty-given' => 'Баунти даден',
+ 'bounty-received' => 'Добиена Баунти',
+ 'can-chat' => 'Може да разговарате',
+ 'can-comment' => 'Може да коментира',
+ 'can-download' => 'Може да се преземе',
+ 'can-invite' => 'Може да покани',
+ 'can-request' => 'Може да побара',
+ 'can-upload' => 'Може да се постави',
+ 'certified-banker' => 'Сертифициран банкар',
+ 'certified-banker-desc' => 'Има 50.000 или повеќе БОН во банка',
+ 'certified-downloader' => 'Сертифициран симнувач',
+ 'certified-downloader-desc' => 'Преземени 100 или повеќе торенти!',
+ 'certified-seeder' => 'Сертифициран седец',
+ 'certified-seeder-desc' => 'Закажувам 150 или повеќе торенти!',
+ 'change-email' => 'Промена на е-пошта',
+ 'change-email-help' => 'Ќе мора повторно да ја потврдите вашата сметка, откако ќе ја промените вашата е-пошта',
+ 'change-password' => 'Промени го пасвордот',
+ 'change-password-help' => 'Ќе мора повторно да се пријавите, откако ќе ја смените лозинката',
+ 'client-ip-address' => 'Клиентска IP адреса',
+ 'code' => 'Код',
+ 'comments' => 'Коментари',
+ 'created-on' => 'Создаден на',
+ 'credited-download' => 'Кредитирана преземање',
+ 'credited-upload' => 'Кредитирано поставување',
+ 'current-password' => 'Сегашна лозинка',
+ 'custom-title' => 'Прилагодено наслов',
+ 'delete' => 'Избриши го корисникот',
+ 'disable-notifications' => 'Оневозможи известувања',
+ 'disclaimer' => 'Одрекување од одговорност',
+ 'disclaimer-info' => 'Ние стандардно не ги најавуваме корисниците на IP адреси како повеќето тракери. Со додавање на вашата IP-адреса од сандачето подолу, се очекува дека знаете дека вашите IP-адреси наведени подолу сега се зачувани во нашата база на податоци, освен ако не ги избришете записите.',
+ 'disclaimer-info-bordered' => 'Додадените IP-адреси на Seedbox потоа ќе активираат ознака за брзина на висока брзина на торентите именувани од IP-адресите наведени подолу',
+ 'download-bon' => 'Преземање отстрането од BON Продавница',
+ 'download-recorded' => 'Снимено преземање',
+ 'download-true' => 'Точно преземање',
+ 'downloads' => 'Преземања',
+ 'edit' => 'Уредете го корисникот',
+ 'edit-profile' => 'Уреди го профилот',
+ 'enable-notifications' => 'Овозможи известувања',
+ 'expired' => 'Истечено',
+ 'expires-on' => 'Истекува на',
+ 'extra' => 'Екстра',
+ 'filled-request' => 'Пополнети барања за членови',
+ 'follow' => 'Следете',
+ 'follower-privacy' => 'Подесувања на следбеници',
+ 'follower-privacy-list' => 'Дозволи им на корисниците да ја видат листата на вашите следбеници',
+ 'follower-help' => 'Контролирајте го споделувањето на специфични информации поврзани со следбениците со групите на кои им е дозволено да пристапуваат до вашиот профил. Овие подесувања се преоптоварени ако не дозволите ниедна група да пристапи до вашите следбеници или ако одите приватна',
+ 'followers' => 'Следбеници',
+ 'following-notification' => 'Подесувани подесувања за известување на корисникот',
+ 'following-notification-upload' => 'Примајте известување кога следен корисник подигнал torrent',
+ 'following-notification-help' => 'Контролирајте кои известувања се праќаат во врска со акциите на корисникот што следат. Овие поставки се преоптоварени ако не дозволите групите да испраќаат известувања за следените корисници или ако Вие ги оневозможите известувањата',
+ 'formats-are-supported' => ': формати се поддржани',
+ 'forum-notification' => 'Поставувања за известување на форумот',
+ 'forum-notification-topic' => 'Добијте известување кога некоја тема што ја започнавте добива нов пост',
+ 'forum-notification-help' => 'Контролирајте кои известувања се испраќаат за активностите на форумот. Овие подесувања се преоптоварени ако не дозволите групите да испраќаат известувања за активности на форумот или ако ги оневозможите известувањата',
+ 'forum-privacy' => 'Поставки на форумот',
+ 'forum-privacy-post' => 'Дозволи им на корисниците да ја видат листата на постови на форумот што сте ги објавиле',
+ 'forum-privacy-topic' => 'Дозволи им на корисниците да ја видат листата на теми на форумот што сте ги започнале',
+ 'forum-help' => 'Контролирајте го споделувањето на специфични статистички податоци поврзани со форумот и информации со групите на кои им е дозволено пристап до вашиот профил. Овие поставки се преоптоварени ако не им дозволите на ниедна група да пристапи до статистичките податоци и информациите поврзани со форумот или ако одите приватно',
+ 'forum-signature' => 'Потпис на форумот',
+ 'forums' => 'Форуми',
+ 'general' => 'Генерал',
+ 'general-settings' => 'Општи поставувања',
+ 'gift-given' => 'Подарок подарок',
+ 'gift-received' => 'Добиен подарок',
+ 'go-public' => 'Оди јавно',
+ 'go-private' => 'Оди во приватна',
+ 'history' => 'Историја',
+ 'history-table' => 'Табела за мојата историја',
+ 'hit-n-runs' => 'Хит и стартува',
+ 'hit-n-runs-count' => 'Hit и Run Count (цело време)',
+ 'hit-n-runs-history' => 'Torrent Хит и Извршува Историја',
+ 'image' => 'Слика',
+ 'important' => 'Важно',
+ 'important-info' => 'Важна информација',
+ 'information' => 'Информации',
+ 'invite-friend' => 'Покани го својот пријател (е-пошта + задолжителна порака)',
+ 'invite-tree' => 'Покани го дрвото',
+ 'invites' => 'Покани',
+ 'invites-banned' => 'Грешка: Вашите права за покана беа оневозможени',
+ 'invites-banned-desc' => 'Ако се чувствувате ова е во грешка, Ве молиме контактирајте го персоналот!',
+ 'invites-count' => 'Имате: брои ги поканите токени',
+ 'invites-disabled' => 'Внимание: поканите се оневозможени поради отворање на регистрација!',
+ 'invites-disabled-desc' => 'Ве молиме проверете наскоро!',
+ 'invites-rules' => '- Само покани луѓе што ги познавате и доверба.
- Вие ќе бидете лично одговорени за оние што ги поканувате.
- Не ве поканувајте, го проверуваме секој поканет корисник.
- Не тргувајте или продаваме покани.
- Ако лицето што го покани е фатено мамење, трговска сметка или покани за продажба / тргување, ќе бидете предупредени.
',
+ 'invites-send' => 'Покани Испрати',
+ 'last-login' => 'Последна најава',
+ 'locked' => 'Заклучен',
+ 'locked-achievements' => 'Заклучени достигнувања',
+ 'member-since' => 'Член од',
+ 'members-desc' => 'Листа на корисници регистрирани на: наслов со сите групи. Најдете корисник сега.',
+ 'mention-notification' => '@ Поставки за известување за мени',
'mention-notification-article-comment' => 'Примајте известување кога сте @ назначени во коментар за статија',
'mention-notification-torrent-comment' => 'Добијте известување кога сте @ поставен во коментар за torrent',
'mention-notification-request-comment' => 'Примајте известување кога сте @ поставен во коментар за барање',
- 'mention-notification-forum-post' => 'Примајте известување кога сте @ поставен во пост на форум',
- 'mention-notification-help' => 'Контролирајте кои известувања се испраќаат кога корисник ќе те назначи. Овие подесувања се преоптоварени ако не дозволите групите да испраќаат известувања ако некој корисник ќе те назначи или ако оневозможите известувања',
- 'moderated-by' => 'Модератори: mod on',
- 'my-bonus-points' => 'Мои бонусни поени',
- 'my-bookmarks' => 'Мои обележувачи',
- 'my-fl-tokens' => 'Мој FL токени',
- 'my-general-settings' => 'Мои Општи Подесувања',
- 'my-notification' => 'Мое известување',
- 'my-notification-settings' => 'Поставки за известувања',
- 'my-privacy' => 'Моја приватност',
- 'my-privacy-settings' => 'Подесувања за приватност',
- 'my-profile' => 'Мој Профил',
- 'my-requested' => 'Моето барање',
- 'my-security' => 'Моја безбедност',
- 'my-security-settings' => 'Мои поставки за безбедност',
- 'my-seedboxes' => 'Мои кутии за сандачиња',
- 'my-settings' => 'Мои подесувања',
- 'my-wishlist' => 'мојата листа на желби',
- 'no-logs' => 'Во оваа база на податоци нема бајти во базата на податоци за овој корисник!',
- 'no-seedboxes' => 'Нема сандачиња за ¼',
- 'not-authorized' => 'Не сте овластени да ја гледате оваа страница. Овој член претпочита да биде скриен како нинџа!',
- 'note' => 'Забелешка',
- 'notification' => 'Известување',
- 'notification-settings' => 'Поставки за известувања',
- 'notification-from-account' => 'Добива известувања од сметката од',
- 'notification-from-account-help' => 'Ќе добивате известувања само од системот, вработените и следните групи. Овие поставки се преоптоварени ако ги оневозможите Известувања',
- 'notification-from-bon' => 'Добивајте известувања од BON',
- 'notification-from-bon-help' => 'Ќе добивате BON известувања само од системот, од персоналот и од следниве групи. Овие поставки се преоптоварени ако ги оневозможите Известувања',
- 'notification-from-following' => 'Добиваме известувања за следното корисничко име',
- 'notification-from-following-help' => 'Ќе добивате само следени кориснички известувања од следните групи. Овие поставки се преоптоварени ако ги оневозможите Известувања',
- 'notification-from-forum' => 'Добивај известувања од форумот',
- 'notification-from-forum-help' => 'Ќе добивате само известувања на форумот од системот, персоналот и следните групи. Овие поставки се преоптоварени ако ги оневозможите Известувања',
- 'notification-from-subscription' => 'Добивајте известувања за зачленување од',
- 'notification-from-subscription-help' => 'Ќе добивате само известувања на форумот од системот, персоналот и следните групи. Овие поставки се преоптоварени ако ги оневозможите Известувања',
- 'notification-from-torrent' => 'Добивајте известувања од торент',
- 'notification-from-torrent-help' => 'Ќе добивате само известувања за теренот од системот, персоналот и следните групи. Овие поставки се преоптоварени ако ги оневозможите Известувања',
- 'notification-from-mention' => 'Добивајте @Ментни известувања од',
- 'notification-from-mention-help' => 'Ќе добивате @mention известувања само од системот, од персоналот и од следниве групи. Овие поставки се преоптоварени ако ги оневозможите Известувања',
- 'notification-from-request' => 'Добивање известувања за барања од',
- 'notification-from-request-help' => 'Ќе добивате само известувања за барање од системот, персоналот и следните групи. Овие поставки се преоптоварени ако ги оневозможите Известувања',
- 'notifications' => 'Известувања',
- 'offline' => 'Корисникот е офлајн!',
- 'online' => 'Корисникот е он-лайн!',
- 'options' => 'Опции',
- 'other-help' => 'Контролирајте го споделувањето на други статистики и информации со групите на кои им е дозволено пристап до вашиот профил. Овие подесувања се преоптоварени ако не дозволите групите да пристапат до вашите други статистики и информации или ако одите во приватна сопственост',
- 'other-privacy' => 'Други подесувања',
- 'other-privacy-online' => 'Дозволете на корисниците да ве гледаат во блокот на интернет корисници',
- 'passkey' => 'PID',
- 'passkey-warning' => 'PID е како вашата лозинка, мора да го чувате на сигурно!',
- 'pending-achievements' => 'Очекувани достигнувања',
- 'per-torrent' => 'Per Torrent',
- 'posts' => 'Мислења',
- 'posts-posted' => 'Објавено во форумот',
- 'privacy' => 'Приватност',
- 'privacy-settings' => 'Поставки за приватност',
- 'private-info' => 'Приватни информации',
- 'private-forum-profile' => 'Внимание: Оваа Членови историјата на тема и пост е поставена на приватна!',
- 'private-profile' => 'Внимание: овој профил е поставен за приватно!',
- 'profile' => 'Профил',
- 'profile-desc' => 'Корисник: кориснички профил регистриран на: наслов',
- 'profile-privacy' => 'Подесувања на профил',
- 'profile-privacy-torrent-count' => 'Споделете го вкупниот број превземања, подигнувања, семиња и пијавици',
- 'profile-privacy-torrent-ratio' => 'Споделете ги вашите вкупни податоци за преснимување / преземање заедно со запишан сооднос',
- 'profile-privacy-torrent-seed' => 'Споделете го вкупното време за сеење и просекот',
- 'profile-privacy-title' => 'Споделете ги вашите лични податоци за наслов',
- 'profile-privacy-about' => 'Споделете ги вашите лични информации за мене',
- 'profile-privacy-bon-extra' => 'Споделете ги статистиките за BON',
- 'profile-privacy-comment-extra' => 'Споделете ја вашата коментар статистика',
- 'profile-privacy-forum-extra' => 'Споделете ја вашата статистика на форумот',
- 'profile-privacy-request-extra' => 'Споделете ги вашите статистички податоци за барање',
- 'profile-privacy-torrent-extra' => 'Споделете ги вашите статистики за torrent',
- 'profile-privacy-badge' => 'Споделете ги вашите заработени беџови',
- 'profile-privacy-achievement' => 'Споделете ги вашите неодамнешни достигнувања',
- 'profile-privacy-follower' => 'Споделете ги вашите неодамнешни следбеници',
- 'profile-privacy-warning' => 'Споделете ги вашите предупредувања за H & R',
- 'profile-privacy-help' => 'Контролирајте кои статистички податоци и информации се појавуваат на вашиот профил. Овие поставки се преоптоварени ако не дозволите групите да пристапат до вашиот профил или ако одите приватно',
- 'public-info' => 'Информации од јавен карактер',
- 'recent-achievements' => 'Неодамнешни постигнувања',
- 'recent-followers' => 'Неодамнешни следбеници',
- 'registration-date' => 'Датум на регистрација',
- 'report' => 'Извештај',
- 'request-help' => 'Контролирајте го споделувањето на специфични статистички податоци поврзани со барање и информации со групи на кои им е дозволено да пристапуваат до вашиот профил. Овие подесувања се преоптоварени ако не дозволите групите да пристапат до Вашите бараните статистички податоци и информации или ако одите приватно',
- 'request' => 'Барање',
- 'requested' => 'Баран',
- 'requests' => 'Барања',
- 'request-comments' => 'Испратете ги коментарите направени',
- 'request-notification' => 'Побарај поставки за известувања',
- 'request-notification-bounty' => 'Примајте известување кога бараниот torrent добива нова награда',
- 'request-notification-comment' => 'Примајте известување кога бараниот torrent добива нов коментар',
- 'request-notification-fill' => 'Примајте известување кога бараниот порој ќе биде пополнет',
- 'request-notification-fill-approve' => 'Примајте известување кога бараното пополнување на torrent е добиено одобрено',
- 'request-notification-fill-reject' => 'Примање на известување кога бараното пополнување на torrent е отфрлено',
- 'request-notification-claim' => 'Примајте известување кога побараниот torrent добива тврди',
- 'request-notification-unclaim' => 'Примајте известување кога бараниот порој добива неподигнатост',
- 'request-notification-help' => 'Контролирајте кои известувања се испраќаат во врска со активностите за барање. Овие поставки се преоптоварени ако не дозволите групите да испраќаат известувања во врска со активностите за барање или ако Вие оневозможите Известувања',
- 'request-privacy' => 'Побарај поставувања',
- 'request-privacy-requested' => 'Дозволи им на корисниците да ја видат листата на барања што сте ги направиле',
- 'reset-passkey' => 'Ресетирај го клучот за пренос (PID)',
- 'reset-passkey-help' => 'Ќе мора повторно да ги преземете / повторно да ги поставите сите ваши активни торенти, откако ќе го ресетирате PID',
- 'reset-rss' => 'Ресетирај RSS клуч (RID)',
- 'reset-rss-help' => 'Ќе мора повторно да ги вчитате сите ваши активни RSS-канали, откако ќе го ресетирате RID',
- 'resurrections' => 'Воскресенија',
- 'search' => 'Брзо пребарување по корисничко име',
- 'security' => 'Безбедност',
- 'security-settings' => 'Подесувања за безбедност',
- 'seedboxes' => 'Кутии за садови',
- 'seeds' => 'Семиња',
- 'send-invite' => 'Испрати Покани',
- 'sender' => 'Испраќач',
- 'settings' => 'Подесувања',
- 'show-passkey' => 'Покажи PID',
- 'staff-noted' => 'Сметка за сметка на персоналот',
- 'statistics' => 'Статистика',
- 'subscription-notification' => 'Подесувања за известување за претплата',
- 'subscription-notification-forum' => 'Примајте известување кога претплатениот форум добива нова тема',
- 'subscription-notification-topic' => 'Примајте известување кога претплатената тема добива нов пост',
- 'subscription-notification-help' => 'Контролирајте кои известувања се испраќаат во врска со вашите претплати. Овие поставки се преоптоварени ако не дозволите групите да испраќаат известувања во врска со вашите претплати или ако Вие оневозможите Известувања',
- 'thanks-given' => 'Ви благодарам',
- 'thanks-received' => 'Ви благодариме',
- 'tips-given' => 'Дадени совети',
- 'tips-received' => 'Добиени совети',
- 'title' => 'Наслов',
- 'top-bankers' => 'Топ банкари',
- 'top-downloaders-data' => 'Врвни преземачи (податоци)',
- 'top-leechers' => 'Топ Leechers',
- 'top-leechers-count' => 'Топ Leechers (Грофот)',
- 'top-seeders' => 'Врвни седери',
- 'top-seeders-count' => 'Најдобри седници (брои)',
- 'top-seeding-size' => 'Најголемо засејување (големина)',
- 'top-seedtime' => 'Top Seedtime',
- 'top-uploaders-data' => 'Најпопуларни корисници (податоци)',
- 'top-uploaders-count' => 'Популарни Поставувачи (Број)',
- 'topics' => 'Теми',
- 'topics-started' => 'Теми на форумот започна',
- 'torrent-comments' => 'Торентни коментари направени',
- 'torrent-help' => 'Контролирајте го споделувањето на специфични статистички податоци поврзани со torrent и информации со групите на кои им е дозволен пристап до вашиот профил. Овие подесувања се преоптоварени ако не дозволите ниедна група да пристапи до статистичките податоци и информациите поврзани со торентот или ако одите во приватна сопственост',
- 'torrent-notification' => 'Поставувања за известувања за пренос',
- 'torrent-notification-comment' => 'Добијте известување кога подигнатиот torrent добива нов коментар',
- 'torrent-notification-thank' => 'Добијте известување кога подигнатиот torrent добива нова благодарност',
- 'torrent-notification-tip' => 'Добијте известување кога подигнатиот torrent добива нов совет',
- 'torrent-notification-help' => 'Контролирајте кои известувања се испраќаат во врска со torrent активностите. Овие поставки се преоптоварени ако не дозволите групите да испраќаат известувања во врска со torrent активности или ако Вие ги оневозможите известувањата',
- 'torrent-privacy' => 'Поставувања за пренос',
- 'torrent-privacy-download' => 'Овозможете им на корисниците да ја видат листата на торенти што сте ги презеле',
- 'torrent-privacy-upload' => 'Дозволи им на корисниците да ја видат листата на торенти што сте ги поставиле',
- 'torrent-privacy-peer' => 'Овозможете им на корисниците да ве гледаат во табелата за историја на врските на почетниците',
- 'torrents' => 'Torrents',
- 'torrents-history' => 'Историја на ротации',
- 'total-download' => 'Вкупно преземање',
- 'total-downloads' => 'Вкупно превземања',
- 'total-leeching' => 'Вкупно пиењето',
- 'total-seeding' => 'Вкупно засејување',
- 'total-seedtime' => 'Вкупно време за сеење',
- 'total-upload' => 'Вкупно поставување',
- 'total-uploads' => 'Вкупно Поставени',
- 'unban' => 'Отстрани корисник',
- 'unfollow' => 'Откажете',
- 'unlocked' => 'Отклучен',
- 'unlocked-achievements' => 'Отклучени достигнувања',
- 'unsatisfieds' => 'Незадоволни',
- 'upload-bon' => 'Додаден додаток од продавницата БОН',
- 'upload-recorded' => 'Снимено поставување',
- 'upload-true' => 'Точно поставување',
- 'uploads' => 'Поставени',
- 'uploads-table' => 'Поставува табела',
- 'user' => 'Корисник',
- 'user-id' => 'ИД на корисникот',
- 'username-seedbox' => 'Корисничко име',
- 'visible-to-achievement' => 'Достигнати резултати',
- 'visible-to-achievement-help' => 'Вашите достигнувања ќе бидат видливи само за вработените и за следните групи. Овие подесувања се преоптоварени ако одите приватно',
- 'visible-to-follower' => 'Следбеници видливи на',
- 'visible-to-follower-help' => 'Вашите следбеници ќе бидат видливи само за персоналот и за следните групи. Овие подесувања се преоптоварени ако одите приватно',
- 'visible-to-forum' => 'Информации за форумот видливи',
- 'visible-to-forum-help' => 'Вашите информации за форумот ќе бидат видливи само за персоналот и за следните групи. Овие подесувања се преоптоварени ако одите приватно',
- 'visible-to-other' => 'Други видливи',
- 'visible-to-other-help' => 'Други информации во врска со вашата сметка ќе бидат видливи само за вработените и за следните групи. Овие подесувања се преоптоварени ако одите приватно или ако одите скриени',
- 'visible-to-profile' => 'Профилот е видлив',
- 'visible-to-profile-help' => 'Вашиот профил ќе биде видлив само за вработените и за следните групи. Овие подесувања се преоптоварени ако одите приватно',
- 'visible-to-request' => 'Побарајте информации за видливи',
- 'visible-to-request-help' => 'Информациите за вашето барање ќе бидат видливи само за вработените и за следните групи. Овие подесувања се преоптоварени ако одите приватно',
- 'visible-to-torrent' => 'Информации за прегледување видливи на',
- 'visible-to-torrent-help' => 'Вашите податоци за torrent ќе бидат видливи само за вработените и за следните групи. Овие подесувања се преоптоварени ако одите приватно или ако одите скриени',
- 'warned-on' => 'Предупредувано',
- 'warning' => 'Предупредување',
- 'warning-log' => 'Предупредувачки дневник',
- 'wishlist' => 'Wishlist',
+ 'mention-notification-forum-post' => 'Примајте известување кога сте @ поставен во пост на форум',
+ 'mention-notification-help' => 'Контролирајте кои известувања се испраќаат кога корисник ќе те назначи. Овие подесувања се преоптоварени ако не дозволите групите да испраќаат известувања ако некој корисник ќе те назначи или ако оневозможите известувања',
+ 'moderated-by' => 'Модератори: mod on',
+ 'my-bonus-points' => 'Мои бонусни поени',
+ 'my-bookmarks' => 'Мои обележувачи',
+ 'my-fl-tokens' => 'Мој FL токени',
+ 'my-general-settings' => 'Мои Општи Подесувања',
+ 'my-notification' => 'Мое известување',
+ 'my-notification-settings' => 'Поставки за известувања',
+ 'my-privacy' => 'Моја приватност',
+ 'my-privacy-settings' => 'Подесувања за приватност',
+ 'my-profile' => 'Мој Профил',
+ 'my-requested' => 'Моето барање',
+ 'my-security' => 'Моја безбедност',
+ 'my-security-settings' => 'Мои поставки за безбедност',
+ 'my-seedboxes' => 'Мои кутии за сандачиња',
+ 'my-settings' => 'Мои подесувања',
+ 'my-wishlist' => 'мојата листа на желби',
+ 'no-logs' => 'Во оваа база на податоци нема бајти во базата на податоци за овој корисник!',
+ 'no-seedboxes' => 'Нема сандачиња за ¼',
+ 'not-authorized' => 'Не сте овластени да ја гледате оваа страница. Овој член претпочита да биде скриен како нинџа!',
+ 'note' => 'Забелешка',
+ 'notification' => 'Известување',
+ 'notification-settings' => 'Поставки за известувања',
+ 'notification-from-account' => 'Добива известувања од сметката од',
+ 'notification-from-account-help' => 'Ќе добивате известувања само од системот, вработените и следните групи. Овие поставки се преоптоварени ако ги оневозможите Известувања',
+ 'notification-from-bon' => 'Добивајте известувања од BON',
+ 'notification-from-bon-help' => 'Ќе добивате BON известувања само од системот, од персоналот и од следниве групи. Овие поставки се преоптоварени ако ги оневозможите Известувања',
+ 'notification-from-following' => 'Добиваме известувања за следното корисничко име',
+ 'notification-from-following-help' => 'Ќе добивате само следени кориснички известувања од следните групи. Овие поставки се преоптоварени ако ги оневозможите Известувања',
+ 'notification-from-forum' => 'Добивај известувања од форумот',
+ 'notification-from-forum-help' => 'Ќе добивате само известувања на форумот од системот, персоналот и следните групи. Овие поставки се преоптоварени ако ги оневозможите Известувања',
+ 'notification-from-subscription' => 'Добивајте известувања за зачленување од',
+ 'notification-from-subscription-help' => 'Ќе добивате само известувања на форумот од системот, персоналот и следните групи. Овие поставки се преоптоварени ако ги оневозможите Известувања',
+ 'notification-from-torrent' => 'Добивајте известувања од торент',
+ 'notification-from-torrent-help' => 'Ќе добивате само известувања за теренот од системот, персоналот и следните групи. Овие поставки се преоптоварени ако ги оневозможите Известувања',
+ 'notification-from-mention' => 'Добивајте @Ментни известувања од',
+ 'notification-from-mention-help' => 'Ќе добивате @mention известувања само од системот, од персоналот и од следниве групи. Овие поставки се преоптоварени ако ги оневозможите Известувања',
+ 'notification-from-request' => 'Добивање известувања за барања од',
+ 'notification-from-request-help' => 'Ќе добивате само известувања за барање од системот, персоналот и следните групи. Овие поставки се преоптоварени ако ги оневозможите Известувања',
+ 'notifications' => 'Известувања',
+ 'offline' => 'Корисникот е офлајн!',
+ 'online' => 'Корисникот е он-лайн!',
+ 'options' => 'Опции',
+ 'other-help' => 'Контролирајте го споделувањето на други статистики и информации со групите на кои им е дозволено пристап до вашиот профил. Овие подесувања се преоптоварени ако не дозволите групите да пристапат до вашите други статистики и информации или ако одите во приватна сопственост',
+ 'other-privacy' => 'Други подесувања',
+ 'other-privacy-online' => 'Дозволете на корисниците да ве гледаат во блокот на интернет корисници',
+ 'passkey' => 'PID',
+ 'passkey-warning' => 'PID е како вашата лозинка, мора да го чувате на сигурно!',
+ 'pending-achievements' => 'Очекувани достигнувања',
+ 'per-torrent' => 'Per Torrent',
+ 'posts' => 'Мислења',
+ 'posts-posted' => 'Објавено во форумот',
+ 'privacy' => 'Приватност',
+ 'privacy-settings' => 'Поставки за приватност',
+ 'private-info' => 'Приватни информации',
+ 'private-forum-profile' => 'Внимание: Оваа Членови историјата на тема и пост е поставена на приватна!',
+ 'private-profile' => 'Внимание: овој профил е поставен за приватно!',
+ 'profile' => 'Профил',
+ 'profile-desc' => 'Корисник: кориснички профил регистриран на: наслов',
+ 'profile-privacy' => 'Подесувања на профил',
+ 'profile-privacy-torrent-count' => 'Споделете го вкупниот број превземања, подигнувања, семиња и пијавици',
+ 'profile-privacy-torrent-ratio' => 'Споделете ги вашите вкупни податоци за преснимување / преземање заедно со запишан сооднос',
+ 'profile-privacy-torrent-seed' => 'Споделете го вкупното време за сеење и просекот',
+ 'profile-privacy-title' => 'Споделете ги вашите лични податоци за наслов',
+ 'profile-privacy-about' => 'Споделете ги вашите лични информации за мене',
+ 'profile-privacy-bon-extra' => 'Споделете ги статистиките за BON',
+ 'profile-privacy-comment-extra' => 'Споделете ја вашата коментар статистика',
+ 'profile-privacy-forum-extra' => 'Споделете ја вашата статистика на форумот',
+ 'profile-privacy-request-extra' => 'Споделете ги вашите статистички податоци за барање',
+ 'profile-privacy-torrent-extra' => 'Споделете ги вашите статистики за torrent',
+ 'profile-privacy-badge' => 'Споделете ги вашите заработени беџови',
+ 'profile-privacy-achievement' => 'Споделете ги вашите неодамнешни достигнувања',
+ 'profile-privacy-follower' => 'Споделете ги вашите неодамнешни следбеници',
+ 'profile-privacy-warning' => 'Споделете ги вашите предупредувања за H & R',
+ 'profile-privacy-help' => 'Контролирајте кои статистички податоци и информации се појавуваат на вашиот профил. Овие поставки се преоптоварени ако не дозволите групите да пристапат до вашиот профил или ако одите приватно',
+ 'public-info' => 'Информации од јавен карактер',
+ 'recent-achievements' => 'Неодамнешни постигнувања',
+ 'recent-followers' => 'Неодамнешни следбеници',
+ 'registration-date' => 'Датум на регистрација',
+ 'report' => 'Извештај',
+ 'request-help' => 'Контролирајте го споделувањето на специфични статистички податоци поврзани со барање и информации со групи на кои им е дозволено да пристапуваат до вашиот профил. Овие подесувања се преоптоварени ако не дозволите групите да пристапат до Вашите бараните статистички податоци и информации или ако одите приватно',
+ 'request' => 'Барање',
+ 'requested' => 'Баран',
+ 'requests' => 'Барања',
+ 'request-comments' => 'Испратете ги коментарите направени',
+ 'request-notification' => 'Побарај поставки за известувања',
+ 'request-notification-bounty' => 'Примајте известување кога бараниот torrent добива нова награда',
+ 'request-notification-comment' => 'Примајте известување кога бараниот torrent добива нов коментар',
+ 'request-notification-fill' => 'Примајте известување кога бараниот порој ќе биде пополнет',
+ 'request-notification-fill-approve' => 'Примајте известување кога бараното пополнување на torrent е добиено одобрено',
+ 'request-notification-fill-reject' => 'Примање на известување кога бараното пополнување на torrent е отфрлено',
+ 'request-notification-claim' => 'Примајте известување кога побараниот torrent добива тврди',
+ 'request-notification-unclaim' => 'Примајте известување кога бараниот порој добива неподигнатост',
+ 'request-notification-help' => 'Контролирајте кои известувања се испраќаат во врска со активностите за барање. Овие поставки се преоптоварени ако не дозволите групите да испраќаат известувања во врска со активностите за барање или ако Вие оневозможите Известувања',
+ 'request-privacy' => 'Побарај поставувања',
+ 'request-privacy-requested' => 'Дозволи им на корисниците да ја видат листата на барања што сте ги направиле',
+ 'reset-passkey' => 'Ресетирај го клучот за пренос (PID)',
+ 'reset-passkey-help' => 'Ќе мора повторно да ги преземете / повторно да ги поставите сите ваши активни торенти, откако ќе го ресетирате PID',
+ 'reset-rss' => 'Ресетирај RSS клуч (RID)',
+ 'reset-rss-help' => 'Ќе мора повторно да ги вчитате сите ваши активни RSS-канали, откако ќе го ресетирате RID',
+ 'resurrections' => 'Воскресенија',
+ 'search' => 'Брзо пребарување по корисничко име',
+ 'security' => 'Безбедност',
+ 'security-settings' => 'Подесувања за безбедност',
+ 'seedboxes' => 'Кутии за садови',
+ 'seeds' => 'Семиња',
+ 'send-invite' => 'Испрати Покани',
+ 'sender' => 'Испраќач',
+ 'settings' => 'Подесувања',
+ 'show-passkey' => 'Покажи PID',
+ 'staff-noted' => 'Сметка за сметка на персоналот',
+ 'statistics' => 'Статистика',
+ 'subscription-notification' => 'Подесувања за известување за претплата',
+ 'subscription-notification-forum' => 'Примајте известување кога претплатениот форум добива нова тема',
+ 'subscription-notification-topic' => 'Примајте известување кога претплатената тема добива нов пост',
+ 'subscription-notification-help' => 'Контролирајте кои известувања се испраќаат во врска со вашите претплати. Овие поставки се преоптоварени ако не дозволите групите да испраќаат известувања во врска со вашите претплати или ако Вие оневозможите Известувања',
+ 'thanks-given' => 'Ви благодарам',
+ 'thanks-received' => 'Ви благодариме',
+ 'tips-given' => 'Дадени совети',
+ 'tips-received' => 'Добиени совети',
+ 'title' => 'Наслов',
+ 'top-bankers' => 'Топ банкари',
+ 'top-downloaders-data' => 'Врвни преземачи (податоци)',
+ 'top-leechers' => 'Топ Leechers',
+ 'top-leechers-count' => 'Топ Leechers (Грофот)',
+ 'top-seeders' => 'Врвни седери',
+ 'top-seeders-count' => 'Најдобри седници (брои)',
+ 'top-seeding-size' => 'Најголемо засејување (големина)',
+ 'top-seedtime' => 'Top Seedtime',
+ 'top-uploaders-data' => 'Најпопуларни корисници (податоци)',
+ 'top-uploaders-count' => 'Популарни Поставувачи (Број)',
+ 'topics' => 'Теми',
+ 'topics-started' => 'Теми на форумот започна',
+ 'torrent-comments' => 'Торентни коментари направени',
+ 'torrent-help' => 'Контролирајте го споделувањето на специфични статистички податоци поврзани со torrent и информации со групите на кои им е дозволен пристап до вашиот профил. Овие подесувања се преоптоварени ако не дозволите ниедна група да пристапи до статистичките податоци и информациите поврзани со торентот или ако одите во приватна сопственост',
+ 'torrent-notification' => 'Поставувања за известувања за пренос',
+ 'torrent-notification-comment' => 'Добијте известување кога подигнатиот torrent добива нов коментар',
+ 'torrent-notification-thank' => 'Добијте известување кога подигнатиот torrent добива нова благодарност',
+ 'torrent-notification-tip' => 'Добијте известување кога подигнатиот torrent добива нов совет',
+ 'torrent-notification-help' => 'Контролирајте кои известувања се испраќаат во врска со torrent активностите. Овие поставки се преоптоварени ако не дозволите групите да испраќаат известувања во врска со torrent активности или ако Вие ги оневозможите известувањата',
+ 'torrent-privacy' => 'Поставувања за пренос',
+ 'torrent-privacy-download' => 'Овозможете им на корисниците да ја видат листата на торенти што сте ги презеле',
+ 'torrent-privacy-upload' => 'Дозволи им на корисниците да ја видат листата на торенти што сте ги поставиле',
+ 'torrent-privacy-peer' => 'Овозможете им на корисниците да ве гледаат во табелата за историја на врските на почетниците',
+ 'torrents' => 'Torrents',
+ 'torrents-history' => 'Историја на ротации',
+ 'total-download' => 'Вкупно преземање',
+ 'total-downloads' => 'Вкупно превземања',
+ 'total-leeching' => 'Вкупно пиењето',
+ 'total-seeding' => 'Вкупно засејување',
+ 'total-seedtime' => 'Вкупно време за сеење',
+ 'total-upload' => 'Вкупно поставување',
+ 'total-uploads' => 'Вкупно Поставени',
+ 'unban' => 'Отстрани корисник',
+ 'unfollow' => 'Откажете',
+ 'unlocked' => 'Отклучен',
+ 'unlocked-achievements' => 'Отклучени достигнувања',
+ 'unsatisfieds' => 'Незадоволни',
+ 'upload-bon' => 'Додаден додаток од продавницата БОН',
+ 'upload-recorded' => 'Снимено поставување',
+ 'upload-true' => 'Точно поставување',
+ 'uploads' => 'Поставени',
+ 'uploads-table' => 'Поставува табела',
+ 'user' => 'Корисник',
+ 'user-id' => 'ИД на корисникот',
+ 'username-seedbox' => 'Корисничко име',
+ 'visible-to-achievement' => 'Достигнати резултати',
+ 'visible-to-achievement-help' => 'Вашите достигнувања ќе бидат видливи само за вработените и за следните групи. Овие подесувања се преоптоварени ако одите приватно',
+ 'visible-to-follower' => 'Следбеници видливи на',
+ 'visible-to-follower-help' => 'Вашите следбеници ќе бидат видливи само за персоналот и за следните групи. Овие подесувања се преоптоварени ако одите приватно',
+ 'visible-to-forum' => 'Информации за форумот видливи',
+ 'visible-to-forum-help' => 'Вашите информации за форумот ќе бидат видливи само за персоналот и за следните групи. Овие подесувања се преоптоварени ако одите приватно',
+ 'visible-to-other' => 'Други видливи',
+ 'visible-to-other-help' => 'Други информации во врска со вашата сметка ќе бидат видливи само за вработените и за следните групи. Овие подесувања се преоптоварени ако одите приватно или ако одите скриени',
+ 'visible-to-profile' => 'Профилот е видлив',
+ 'visible-to-profile-help' => 'Вашиот профил ќе биде видлив само за вработените и за следните групи. Овие подесувања се преоптоварени ако одите приватно',
+ 'visible-to-request' => 'Побарајте информации за видливи',
+ 'visible-to-request-help' => 'Информациите за вашето барање ќе бидат видливи само за вработените и за следните групи. Овие подесувања се преоптоварени ако одите приватно',
+ 'visible-to-torrent' => 'Информации за прегледување видливи на',
+ 'visible-to-torrent-help' => 'Вашите податоци за torrent ќе бидат видливи само за вработените и за следните групи. Овие подесувања се преоптоварени ако одите приватно или ако одите скриени',
+ 'warned-on' => 'Предупредувано',
+ 'warning' => 'Предупредување',
+ 'warning-log' => 'Предупредувачки дневник',
+ 'wishlist' => 'Wishlist',
];
diff --git a/lang/mk/validation.php b/lang/mk/validation.php
index 9e58302a8..9c652b712 100644
--- a/lang/mk/validation.php
+++ b/lang/mk/validation.php
@@ -23,108 +23,108 @@ return [
|
*/
- 'accepted' => 'Полето :attribute мора да биде прифатено.',
- 'active_url' => 'Полето :attribute не е валиден URL.',
- 'after' => 'Полето :attribute мора да биде датум после :date.',
- 'after_or_equal' => 'The :attribute must be a date after or equal to :date.',
- 'alpha' => 'Полето :attribute може да содржи само букви.',
- 'alpha_dash' => 'Полето :attribute може да содржи само букви, цифри, долна црта и тире.',
- 'alpha_num' => 'Полето :attribute може да содржи само букви и цифри.',
- 'array' => 'Полето :attribute мора да биде низа.',
- 'before' => 'Полето :attribute мора да биде датум пред :date.',
- 'before_or_equal' => 'The :attribute must be a date before or equal to :date.',
- 'between' => [
+ 'accepted' => 'Полето :attribute мора да биде прифатено.',
+ 'active_url' => 'Полето :attribute не е валиден URL.',
+ 'after' => 'Полето :attribute мора да биде датум после :date.',
+ 'after_or_equal' => 'The :attribute must be a date after or equal to :date.',
+ 'alpha' => 'Полето :attribute може да содржи само букви.',
+ 'alpha_dash' => 'Полето :attribute може да содржи само букви, цифри, долна црта и тире.',
+ 'alpha_num' => 'Полето :attribute може да содржи само букви и цифри.',
+ 'array' => 'Полето :attribute мора да биде низа.',
+ 'before' => 'Полето :attribute мора да биде датум пред :date.',
+ 'before_or_equal' => 'The :attribute must be a date before or equal to :date.',
+ 'between' => [
'numeric' => 'Полето :attribute мора да биде помеѓу :min и :max.',
- 'file' => 'Полето :attribute мора да биде помеѓу :min и :max килобајти.',
- 'string' => 'Полето :attribute мора да биде помеѓу :min и :max карактери.',
- 'array' => 'Полето :attribute мора да има помеѓу :min - :max карактери.',
+ 'file' => 'Полето :attribute мора да биде помеѓу :min и :max килобајти.',
+ 'string' => 'Полето :attribute мора да биде помеѓу :min и :max карактери.',
+ 'array' => 'Полето :attribute мора да има помеѓу :min - :max карактери.',
],
- 'boolean' => 'The :attribute field must be true or false',
- 'confirmed' => 'Полето :attribute не е потврдено.',
- 'date' => 'Полето :attribute не е валиден датум.',
- 'date_equals' => 'The :attribute must be a date equal to :date.',
- 'date_format' => 'Полето :attribute не е во формат :format.',
- 'different' => 'Полињата :attribute и :other треба да се различни.',
- 'digits' => 'Полето :attribute треба да има :digits цифри.',
- 'digits_between' => 'Полето :attribute треба да има помеѓу :min и :max цифри.',
- 'dimensions' => 'The :attribute has invalid image dimensions.',
- 'distinct' => 'The :attribute field has a duplicate value.',
- 'email' => 'Полето :attribute не е во валиден формат.',
- 'exists' => 'Избранато поле :attribute веќе постои.',
- 'file' => 'The :attribute must be a file.',
- 'filled' => 'Полето :attribute е задолжително.',
- 'gt' => [
+ 'boolean' => 'The :attribute field must be true or false',
+ 'confirmed' => 'Полето :attribute не е потврдено.',
+ 'date' => 'Полето :attribute не е валиден датум.',
+ 'date_equals' => 'The :attribute must be a date equal to :date.',
+ 'date_format' => 'Полето :attribute не е во формат :format.',
+ 'different' => 'Полињата :attribute и :other треба да се различни.',
+ 'digits' => 'Полето :attribute треба да има :digits цифри.',
+ 'digits_between' => 'Полето :attribute треба да има помеѓу :min и :max цифри.',
+ 'dimensions' => 'The :attribute has invalid image dimensions.',
+ 'distinct' => 'The :attribute field has a duplicate value.',
+ 'email' => 'Полето :attribute не е во валиден формат.',
+ 'exists' => 'Избранато поле :attribute веќе постои.',
+ 'file' => 'The :attribute must be a file.',
+ 'filled' => 'Полето :attribute е задолжително.',
+ 'gt' => [
'numeric' => 'The :attribute must be greater than :value.',
- 'file' => 'The :attribute must be greater than :value kilobytes.',
- 'string' => 'The :attribute must be greater than :value characters.',
- 'array' => 'The :attribute must have more than :value items.',
+ 'file' => 'The :attribute must be greater than :value kilobytes.',
+ 'string' => 'The :attribute must be greater than :value characters.',
+ 'array' => 'The :attribute must have more than :value items.',
],
- 'gte' => [
+ 'gte' => [
'numeric' => 'The :attribute must be greater than or equal :value.',
- 'file' => 'The :attribute must be greater than or equal :value kilobytes.',
- 'string' => 'The :attribute must be greater than or equal :value characters.',
- 'array' => 'The :attribute must have :value items or more.',
+ 'file' => 'The :attribute must be greater than or equal :value kilobytes.',
+ 'string' => 'The :attribute must be greater than or equal :value characters.',
+ 'array' => 'The :attribute must have :value items or more.',
],
- 'image' => 'Полето :attribute мора да биде слика.',
- 'in' => 'Избраното поле :attribute е невалидно.',
- 'in_array' => 'The :attribute field does not exist in :other.',
- 'integer' => 'Полето :attribute мора да биде цел број.',
- 'ip' => 'Полето :attribute мора да биде IP адреса.',
- 'ipv4' => 'The :attribute must be a valid IPv4 address.',
- 'ipv6' => 'The :attribute must be a valid IPv6 address.',
- 'json' => 'The :attribute must be a valid JSON string.',
- 'lt' => [
+ 'image' => 'Полето :attribute мора да биде слика.',
+ 'in' => 'Избраното поле :attribute е невалидно.',
+ 'in_array' => 'The :attribute field does not exist in :other.',
+ 'integer' => 'Полето :attribute мора да биде цел број.',
+ 'ip' => 'Полето :attribute мора да биде IP адреса.',
+ 'ipv4' => 'The :attribute must be a valid IPv4 address.',
+ 'ipv6' => 'The :attribute must be a valid IPv6 address.',
+ 'json' => 'The :attribute must be a valid JSON string.',
+ 'lt' => [
'numeric' => 'The :attribute must be less than :value.',
- 'file' => 'The :attribute must be less than :value kilobytes.',
- 'string' => 'The :attribute must be less than :value characters.',
- 'array' => 'The :attribute must have less than :value items.',
+ 'file' => 'The :attribute must be less than :value kilobytes.',
+ 'string' => 'The :attribute must be less than :value characters.',
+ 'array' => 'The :attribute must have less than :value items.',
],
- 'lte' => [
+ 'lte' => [
'numeric' => 'The :attribute must be less than or equal :value.',
- 'file' => 'The :attribute must be less than or equal :value kilobytes.',
- 'string' => 'The :attribute must be less than or equal :value characters.',
- 'array' => 'The :attribute must not have more than :value items.',
+ 'file' => 'The :attribute must be less than or equal :value kilobytes.',
+ 'string' => 'The :attribute must be less than or equal :value characters.',
+ 'array' => 'The :attribute must not have more than :value items.',
],
- 'max' => [
+ 'max' => [
'numeric' => 'Полето :attribute мора да биде помало од :max.',
- 'file' => 'Полето :attribute мора да биде помало од :max килобајти.',
- 'string' => 'Полето :attribute мора да има помалку од :max карактери.',
- 'array' => 'Полето :attribute не може да има повеќе од :max карактери.',
+ 'file' => 'Полето :attribute мора да биде помало од :max килобајти.',
+ 'string' => 'Полето :attribute мора да има помалку од :max карактери.',
+ 'array' => 'Полето :attribute не може да има повеќе од :max карактери.',
],
- 'mimes' => 'Полето :attribute мора да биде фајл од типот: :values.',
- 'mimetypes' => 'Полето :attribute мора да биде фајл од типот: :values.',
- 'min' => [
+ 'mimes' => 'Полето :attribute мора да биде фајл од типот: :values.',
+ 'mimetypes' => 'Полето :attribute мора да биде фајл од типот: :values.',
+ 'min' => [
'numeric' => 'Полето :attribute мора да биде минимум :min.',
- 'file' => 'Полето :attribute мора да биде минимум :min килобајти.',
- 'string' => 'Полето :attribute мора да има минимум :min карактери.',
- 'array' => 'Полето :attribute мора да има минимум :min карактери.',
+ 'file' => 'Полето :attribute мора да биде минимум :min килобајти.',
+ 'string' => 'Полето :attribute мора да има минимум :min карактери.',
+ 'array' => 'Полето :attribute мора да има минимум :min карактери.',
],
- 'not_in' => 'Избраното поле :attribute е невалидно.',
- 'not_regex' => 'The :attribute format is invalid.',
- 'numeric' => 'Полето :attribute мора да биде број.',
- 'present' => 'The :attribute field must be present.',
- 'regex' => 'Полето :attribute е во невалиден формат.',
- 'required' => 'Полето :attribute е задолжително.',
- 'required_if' => 'Полето :attribute е задолжително, кога :other е :value.',
- 'required_unless' => 'The :attribute field is required unless :other is in :values.',
- 'required_with' => 'Полето :attribute е задолжително, кога е внесено :values.',
- 'required_with_all' => 'The :attribute field is required when :values is present.',
- 'required_without' => 'Полето :attribute е задолжително, кога не е внесено :values.',
+ 'not_in' => 'Избраното поле :attribute е невалидно.',
+ 'not_regex' => 'The :attribute format is invalid.',
+ 'numeric' => 'Полето :attribute мора да биде број.',
+ 'present' => 'The :attribute field must be present.',
+ 'regex' => 'Полето :attribute е во невалиден формат.',
+ 'required' => 'Полето :attribute е задолжително.',
+ 'required_if' => 'Полето :attribute е задолжително, кога :other е :value.',
+ 'required_unless' => 'The :attribute field is required unless :other is in :values.',
+ 'required_with' => 'Полето :attribute е задолжително, кога е внесено :values.',
+ 'required_with_all' => 'The :attribute field is required when :values is present.',
+ 'required_without' => 'Полето :attribute е задолжително, кога не е внесено :values.',
'required_without_all' => 'The :attribute field is required when none of :values are present.',
- 'same' => 'Полињата :attribute и :other треба да совпаѓаат.',
- 'size' => [
+ 'same' => 'Полињата :attribute и :other треба да совпаѓаат.',
+ 'size' => [
'numeric' => 'Полето :attribute мора да биде :size.',
- 'file' => 'Полето :attribute мора да биде :size килобајти.',
- 'string' => 'Полето :attribute мора да има :size карактери.',
- 'array' => 'Полето :attribute мора да има :size карактери.',
+ 'file' => 'Полето :attribute мора да биде :size килобајти.',
+ 'string' => 'Полето :attribute мора да има :size карактери.',
+ 'array' => 'Полето :attribute мора да има :size карактери.',
],
- 'starts_with' => 'The :attribute must start with one of the following: :values',
- 'string' => 'The :attribute must be a string.',
- 'timezone' => 'The :attribute must be a valid zone.',
- 'unique' => 'Полето :attribute веќе постои.',
- 'uploaded' => 'The :attribute failed to upload.',
- 'url' => 'Полето :attribute не е во валиден формат.',
- 'uuid' => 'The :attribute must be a valid UUID.',
+ 'starts_with' => 'The :attribute must start with one of the following: :values',
+ 'string' => 'The :attribute must be a string.',
+ 'timezone' => 'The :attribute must be a valid zone.',
+ 'unique' => 'Полето :attribute веќе постои.',
+ 'uploaded' => 'The :attribute failed to upload.',
+ 'url' => 'Полето :attribute не е во валиден формат.',
+ 'uuid' => 'The :attribute must be a valid UUID.',
/*
|--------------------------------------------------------------------------
diff --git a/lang/mn/articles.php b/lang/mn/articles.php
index 519de1834..9ecf807d3 100644
--- a/lang/mn/articles.php
+++ b/lang/mn/articles.php
@@ -12,8 +12,8 @@
*/
return [
- 'articles' => 'Нийтлэл',
+ 'articles' => 'Нийтлэл',
'meta-articles' => 'Туршлага болон нийгэмлэгийн талаарх мэдээ, мэдээлэл',
- 'published-at' => 'Нийтлэгдсэн',
- 'read-more' => 'Цааш унших',
+ 'published-at' => 'Нийтлэгдсэн',
+ 'read-more' => 'Цааш унших',
];
diff --git a/lang/mn/auth.php b/lang/mn/auth.php
index 815956f95..10b418194 100644
--- a/lang/mn/auth.php
+++ b/lang/mn/auth.php
@@ -23,6 +23,6 @@ return [
|
*/
- 'failed' => 'Хэрэглэгчийн нэр эсвэл нууц үг буруу.',
+ 'failed' => 'Хэрэглэгчийн нэр эсвэл нууц үг буруу.',
'throttle' => 'Олон удаагийн буруу оролдого. :seconds секундийн дараа дахин оролдоно уу.',
];
diff --git a/lang/mn/backup.php b/lang/mn/backup.php
index a70d902d8..33ba07fde 100644
--- a/lang/mn/backup.php
+++ b/lang/mn/backup.php
@@ -12,32 +12,32 @@
*/
return [
- 'actions' => 'Үйл ажиллагаа',
- 'backup' => 'Нөөцлөх',
- 'backup_doesnt_exist' => 'Нөөц файл байхгүй байна.',
- 'create_a_new_backup' => 'Бүтэн нөөцлөлт үүсгээрэй',
- 'create_a_new_files_backup' => 'Файлуудыг нөөцөлж авах',
- 'create_a_new_db_backup' => 'Өгөгдлийн санг үүсгэх',
- 'create_confirmation_message' => '3 секундын дотор хуудсыг дахин ачаална уу.',
- 'create_confirmation_title' => 'Нөөц дууссан',
- 'create_error_message' => 'Нөөц файл үүсгэх боломжгүй.',
- 'create_error_title' => 'Нөөшлөлтийн алдаа',
- 'create_warning_message' => 'Таны нөөцийг үүсгэх боломжгүй байж болно. Дэлгэрэнгүй мэдээллийг бүртгэлийн файлууд шалгана уу.',
- 'create_warning_title' => 'Үл мэдэгдэх алдаа',
- 'date' => 'Огноо',
- 'delete' => 'Устгах',
- 'delete_cancel_message' => 'Нөөц файл устгагдахгүй байна.',
- 'delete_cancel_title' => 'Энэ бол зүгээр юм',
- 'delete_confirm' => 'Та энэ нөөц файлыг устгахыг хүсэж байна уу?',
- 'delete_confirmation_message' => 'Нөөц файл устгагдсан байна.',
- 'delete_confirmation_title' => 'Дууссан',
- 'delete_error_message' => 'Нөөц файл устгагдахгүй байна.',
- 'delete_error_title' => 'Алдаа',
- 'download' => 'Татаж авах',
- 'existing_backups' => 'Одоо байгаа нөөцүүд',
- 'file_size' => 'Файлын хэмжээ',
- 'location' => 'Байршил',
- 'manager' => 'Менежер',
- 'no_disks_configured' => 'Config / backup.php-д нөөцлөлтийн дискнүүд байхгүй байна',
+ 'actions' => 'Үйл ажиллагаа',
+ 'backup' => 'Нөөцлөх',
+ 'backup_doesnt_exist' => 'Нөөц файл байхгүй байна.',
+ 'create_a_new_backup' => 'Бүтэн нөөцлөлт үүсгээрэй',
+ 'create_a_new_files_backup' => 'Файлуудыг нөөцөлж авах',
+ 'create_a_new_db_backup' => 'Өгөгдлийн санг үүсгэх',
+ 'create_confirmation_message' => '3 секундын дотор хуудсыг дахин ачаална уу.',
+ 'create_confirmation_title' => 'Нөөц дууссан',
+ 'create_error_message' => 'Нөөц файл үүсгэх боломжгүй.',
+ 'create_error_title' => 'Нөөшлөлтийн алдаа',
+ 'create_warning_message' => 'Таны нөөцийг үүсгэх боломжгүй байж болно. Дэлгэрэнгүй мэдээллийг бүртгэлийн файлууд шалгана уу.',
+ 'create_warning_title' => 'Үл мэдэгдэх алдаа',
+ 'date' => 'Огноо',
+ 'delete' => 'Устгах',
+ 'delete_cancel_message' => 'Нөөц файл устгагдахгүй байна.',
+ 'delete_cancel_title' => 'Энэ бол зүгээр юм',
+ 'delete_confirm' => 'Та энэ нөөц файлыг устгахыг хүсэж байна уу?',
+ 'delete_confirmation_message' => 'Нөөц файл устгагдсан байна.',
+ 'delete_confirmation_title' => 'Дууссан',
+ 'delete_error_message' => 'Нөөц файл устгагдахгүй байна.',
+ 'delete_error_title' => 'Алдаа',
+ 'download' => 'Татаж авах',
+ 'existing_backups' => 'Одоо байгаа нөөцүүд',
+ 'file_size' => 'Файлын хэмжээ',
+ 'location' => 'Байршил',
+ 'manager' => 'Менежер',
+ 'no_disks_configured' => 'Config / backup.php-д нөөцлөлтийн дискнүүд байхгүй байна',
'only_local_downloads_supported' => 'Зөвхөн Локал файлын системээс татаж авдаг.',
];
diff --git a/lang/mn/blocks.php b/lang/mn/blocks.php
index e04515d29..17f70e0f6 100644
--- a/lang/mn/blocks.php
+++ b/lang/mn/blocks.php
@@ -12,19 +12,19 @@
*/
return [
- 'chatbox' => 'Чатын хайрцаг',
- 'click' => 'Дарна уу',
- 'to-enable-editor' => 'засварлагчийг идэвхжүүлэх',
- 'featured-by' => 'Онцлогоор нь',
- 'featured-torrents' => 'Онцлох Оноо',
+ 'chatbox' => 'Чатын хайрцаг',
+ 'click' => 'Дарна уу',
+ 'to-enable-editor' => 'засварлагчийг идэвхжүүлэх',
+ 'featured-by' => 'Онцлогоор нь',
+ 'featured-torrents' => 'Онцлох Оноо',
'featured-torrents-intro' => 'Тэднийг боломжтой байхад нь аваарай!',
- 'featured-until' => 'Энэ нь хүртэл траффикийн онцлогтой',
- 'top-torrents' => 'Шилдэг тоогоор',
- 'latest-posts' => 'Хамгийн сүүлийн бичлэг',
- 'latest-topics' => 'Хамгийн сүүлийн үеийн сэдвүүд',
- 'active-in-last' => 'Хамгийн сүүлд идэвхтэй байна',
- 'users-online' => 'Онлайн хэрэглэгчид',
- 'check-news' => 'Мэдээ мэдээлэл (өдөр бүр шалгах)',
- 'new-news' => 'Шинэ мэдээ',
- 'new-torrents' => 'Шинэ урсгал',
+ 'featured-until' => 'Энэ нь хүртэл траффикийн онцлогтой',
+ 'top-torrents' => 'Шилдэг тоогоор',
+ 'latest-posts' => 'Хамгийн сүүлийн бичлэг',
+ 'latest-topics' => 'Хамгийн сүүлийн үеийн сэдвүүд',
+ 'active-in-last' => 'Хамгийн сүүлд идэвхтэй байна',
+ 'users-online' => 'Онлайн хэрэглэгчид',
+ 'check-news' => 'Мэдээ мэдээлэл (өдөр бүр шалгах)',
+ 'new-news' => 'Шинэ мэдээ',
+ 'new-torrents' => 'Шинэ урсгал',
];
diff --git a/lang/mn/bon.php b/lang/mn/bon.php
index 461602c90..76c324250 100644
--- a/lang/mn/bon.php
+++ b/lang/mn/bon.php
@@ -12,44 +12,44 @@
*/
return [
- 'activated' => 'Идэвхжүүлсэн',
- 'active' => 'Идэвхжүүлсэн!',
- 'amount' => 'Хэмжээ',
- 'bon' => 'Бон',
- 'bonus' => 'Шагнал',
- 'date' => 'Огноо',
- 'earning' => 'Орлого',
- 'earning-rate' => 'Орлогын энэ түвшинд та дараахь хугацаанд цалин авна.',
- 'earnings' => 'Орлого',
- 'exchange' => 'Солилцоо',
- 'exchange-warning' => 'Хөрөнгө солилцох нь эцсийн, солилцохоосоо өмнө өөрийн сонголтоо дахин шалгана уу.',
- 'extended-stats' => 'Өргөтгөсөн статистик',
- 'gift' => 'Бэлэг',
- 'gift-bonus' => 'Бэлэг дурсгалын шагнал оноо',
- 'gift-to' => 'Бэлэг дурсгалын шагнал оноо авах',
- 'gifts' => 'Бэлэг',
- 'item' => 'Зүйл',
- 'no-refund' => 'Үгүй',
- 'per-day' => 'Өдөр бүр оноо',
- 'per-hour' => 'Цагийн хуваарь',
- 'per-minute' => 'Минут тутамд оноо',
- 'per-month' => 'Сар тутам Оноо',
- 'per-second' => 'Секунд тутамд оноо',
- 'per-week' => 'Долоо хоног тутамд оноо',
- 'per-year' => 'Он жилүүдийн оноо',
- 'points' => 'Оноо',
- 'receiver' => 'Хүлээн авагч',
- 'review-seeds' => 'Бүх тариалсан тэжээлийг шалгана уу',
- 'send-gift' => 'Бэлэг илгээх',
- 'sender' => 'Илгээгч',
- 'store' => 'Store',
- 'tips' => 'Зөвлөмж',
- 'total' => 'Нийт орлого',
- 'total-gifts' => 'Нийт Бон Бэлэг',
- 'total-tips' => 'Нийт Бондын зөвлөмжүүд',
+ 'activated' => 'Идэвхжүүлсэн',
+ 'active' => 'Идэвхжүүлсэн!',
+ 'amount' => 'Хэмжээ',
+ 'bon' => 'Бон',
+ 'bonus' => 'Шагнал',
+ 'date' => 'Огноо',
+ 'earning' => 'Орлого',
+ 'earning-rate' => 'Орлогын энэ түвшинд та дараахь хугацаанд цалин авна.',
+ 'earnings' => 'Орлого',
+ 'exchange' => 'Солилцоо',
+ 'exchange-warning' => 'Хөрөнгө солилцох нь эцсийн, солилцохоосоо өмнө өөрийн сонголтоо дахин шалгана уу.',
+ 'extended-stats' => 'Өргөтгөсөн статистик',
+ 'gift' => 'Бэлэг',
+ 'gift-bonus' => 'Бэлэг дурсгалын шагнал оноо',
+ 'gift-to' => 'Бэлэг дурсгалын шагнал оноо авах',
+ 'gifts' => 'Бэлэг',
+ 'item' => 'Зүйл',
+ 'no-refund' => 'Үгүй',
+ 'per-day' => 'Өдөр бүр оноо',
+ 'per-hour' => 'Цагийн хуваарь',
+ 'per-minute' => 'Минут тутамд оноо',
+ 'per-month' => 'Сар тутам Оноо',
+ 'per-second' => 'Секунд тутамд оноо',
+ 'per-week' => 'Долоо хоног тутамд оноо',
+ 'per-year' => 'Он жилүүдийн оноо',
+ 'points' => 'Оноо',
+ 'receiver' => 'Хүлээн авагч',
+ 'review-seeds' => 'Бүх тариалсан тэжээлийг шалгана уу',
+ 'send-gift' => 'Бэлэг илгээх',
+ 'sender' => 'Илгээгч',
+ 'store' => 'Store',
+ 'tips' => 'Зөвлөмж',
+ 'total' => 'Нийт орлого',
+ 'total-gifts' => 'Нийт Бон Бэлэг',
+ 'total-tips' => 'Нийт Бондын зөвлөмжүүд',
'you-have-received-gifts' => 'Та хүлээн авсан',
- 'you-have-sent-gifts' => 'Та илгээсэн',
- 'you-have-received-tips' => 'Та хүлээн авсан',
- 'you-have-sent-tips' => 'Та илгээсэн',
- 'your-points' => 'Таны оноо',
+ 'you-have-sent-gifts' => 'Та илгээсэн',
+ 'you-have-received-tips' => 'Та хүлээн авсан',
+ 'you-have-sent-tips' => 'Та илгээсэн',
+ 'your-points' => 'Таны оноо',
];
diff --git a/lang/mn/bot.php b/lang/mn/bot.php
index f96610291..d60c8f9a5 100644
--- a/lang/mn/bot.php
+++ b/lang/mn/bot.php
@@ -12,15 +12,15 @@
*/
return [
- 'about' => 'Тухай',
- 'bot' => 'Bot',
- 'bots' => 'Bots',
- 'color' => 'Өнгө',
- 'command' => 'Тушаал',
- 'edit-bot' => 'Bot засах',
+ 'about' => 'Тухай',
+ 'bot' => 'Bot',
+ 'bots' => 'Bots',
+ 'color' => 'Өнгө',
+ 'command' => 'Тушаал',
+ 'edit-bot' => 'Bot засах',
'emoji-code' => 'Emoji код',
- 'help' => 'Туслаач',
- 'icon' => 'Icon',
- 'info' => 'Мэдээлэл',
- 'name' => 'Нэр',
+ 'help' => 'Туслаач',
+ 'icon' => 'Icon',
+ 'info' => 'Мэдээлэл',
+ 'name' => 'Нэр',
];
diff --git a/lang/mn/bug.php b/lang/mn/bug.php
index 7788d2e1b..19570024b 100644
--- a/lang/mn/bug.php
+++ b/lang/mn/bug.php
@@ -12,15 +12,15 @@
*/
return [
- 'bug-report' => 'Алдааны тайлан',
+ 'bug-report' => 'Алдааны тайлан',
'bug-report-description' => 'Сайтын алдааг мэдээлэх',
- 'enter-description' => 'Аливаа асуудлыг хамгийн сайн тайлбарлах',
- 'enter-email' => 'И-мэйлээ оруулна уу',
- 'enter-title' => 'Зөв нэрийг сонгоно уу',
- 'enter-username' => 'Хэрэглэгчийн нэрээ оруулна уу',
- 'high' => 'Өндөр',
- 'low' => 'Бага байна',
- 'priority' => 'Тэргүүлэх чиглэл',
- 'priority-description' => 'Сайтыг ашиглахад алдаа нь үнэхээр асуудал байгаа бол маш ихийг сонгоно уу.',
- 'very-high' => 'Маш өндөр',
+ 'enter-description' => 'Аливаа асуудлыг хамгийн сайн тайлбарлах',
+ 'enter-email' => 'И-мэйлээ оруулна уу',
+ 'enter-title' => 'Зөв нэрийг сонгоно уу',
+ 'enter-username' => 'Хэрэглэгчийн нэрээ оруулна уу',
+ 'high' => 'Өндөр',
+ 'low' => 'Бага байна',
+ 'priority' => 'Тэргүүлэх чиглэл',
+ 'priority-description' => 'Сайтыг ашиглахад алдаа нь үнэхээр асуудал байгаа бол маш ихийг сонгоно уу.',
+ 'very-high' => 'Маш өндөр',
];
diff --git a/lang/mn/common.php b/lang/mn/common.php
index 5214982fa..17eeacffd 100644
--- a/lang/mn/common.php
+++ b/lang/mn/common.php
@@ -12,179 +12,179 @@
*/
return [
- 'a-an-art' => '',
- 'about' => 'Бидний тухай',
- 'account' => 'Данс',
- 'achievement-title' => 'Гайхалтай',
+ 'a-an-art' => '',
+ 'about' => 'Бидний тухай',
+ 'account' => 'Данс',
+ 'achievement-title' => 'Гайхалтай',
'achievement-unlocked' => 'Та "нэр:" амжилтгүй болсон',
- 'active' => 'Идэвхтэй байна',
- 'active-warning' => 'Идэвхтэй анхааруулга',
- 'add' => 'Нэмэх',
- 'added' => 'Нэмэгдсэн',
- 'amount' => 'Хэмжээ',
- 'anonymous' => 'Нэргүй',
- 'author' => 'Зохиогч',
- 'balance' => 'Тэнцвэр',
- 'blacklist' => 'Үйлчлүүлэгчийн Хар жагсаалт',
- 'buffer' => 'Буфер',
- 'bug' => 'Алдааны талаар мэдээлэх',
- 'but' => 'Гэхдээ',
- 'cancel' => 'Цуцлах',
- 'category' => 'Ангилал',
- 'categories' => 'Ангилалууд',
- 'close' => 'Хаах',
- 'comment' => 'Сэтгэгдэл бичих',
- 'comments' => 'Сэтгэгдэл',
- 'community' => 'Олон нийт',
- 'contact' => 'Холбоо барих',
- 'contact-desc' => 'Энэ харилцагчийн хүсэлтийг эзэмшигч рүү илгээгдэх бөгөөд аль болох түргэн буцаж ирнэ',
- 'contact-header' => 'Сайн уу',
- 'create' => 'Үүсгэх',
- 'created_at' => 'At үүсгэсэн',
- 'day' => 'Өдөр',
- 'delete' => 'Устгах',
- 'delete-your-comment' => 'Саналаа устгах',
- 'description' => 'Тодорхойлолт',
- 'direction' => 'Чиглэл',
- 'disable' => 'Идэвхгүй болгох',
- 'doubleup_activated' => 'Глобал Давхар оруулах горим идэвхжсэн',
- 'download' => 'Татаж авах',
- 'edit' => 'Засах',
- 'edit-your-comment' => 'Сэтгэгдэл бичих',
- 'email' => 'И-мэйл',
- 'email-blacklist' => 'И-мэйл хаяг',
- 'email-whitelist' => 'Whitelist имэйл',
+ 'active' => 'Идэвхтэй байна',
+ 'active-warning' => 'Идэвхтэй анхааруулга',
+ 'add' => 'Нэмэх',
+ 'added' => 'Нэмэгдсэн',
+ 'amount' => 'Хэмжээ',
+ 'anonymous' => 'Нэргүй',
+ 'author' => 'Зохиогч',
+ 'balance' => 'Тэнцвэр',
+ 'blacklist' => 'Үйлчлүүлэгчийн Хар жагсаалт',
+ 'buffer' => 'Буфер',
+ 'bug' => 'Алдааны талаар мэдээлэх',
+ 'but' => 'Гэхдээ',
+ 'cancel' => 'Цуцлах',
+ 'category' => 'Ангилал',
+ 'categories' => 'Ангилалууд',
+ 'close' => 'Хаах',
+ 'comment' => 'Сэтгэгдэл бичих',
+ 'comments' => 'Сэтгэгдэл',
+ 'community' => 'Олон нийт',
+ 'contact' => 'Холбоо барих',
+ 'contact-desc' => 'Энэ харилцагчийн хүсэлтийг эзэмшигч рүү илгээгдэх бөгөөд аль болох түргэн буцаж ирнэ',
+ 'contact-header' => 'Сайн уу',
+ 'create' => 'Үүсгэх',
+ 'created_at' => 'At үүсгэсэн',
+ 'day' => 'Өдөр',
+ 'delete' => 'Устгах',
+ 'delete-your-comment' => 'Саналаа устгах',
+ 'description' => 'Тодорхойлолт',
+ 'direction' => 'Чиглэл',
+ 'disable' => 'Идэвхгүй болгох',
+ 'doubleup_activated' => 'Глобал Давхар оруулах горим идэвхжсэн',
+ 'download' => 'Татаж авах',
+ 'edit' => 'Засах',
+ 'edit-your-comment' => 'Сэтгэгдэл бичих',
+ 'email' => 'И-мэйл',
+ 'email-blacklist' => 'И-мэйл хаяг',
+ 'email-whitelist' => 'Whitelist имэйл',
'email-list-notactive' => 'Цагаан өнгөтэй Whitelist / Хар жагсаалтыг идэвхжүүлээгүй систем',
- 'enable' => 'Бататгах',
- 'enter' => 'Оруулна уу',
- 'error' => 'Алдаа',
- 'everyday' => 'Өдөр бүр',
- 'expired' => 'Хугацаа дууссан',
- 'extra' => 'Нэмэлт',
- 'extra-stats' => 'Нэмэлт-Статус',
- 'faq' => 'ТАХ нь',
- 'files' => 'Файлууд',
- 'fl_token' => 'Freeleech Token',
- 'fl_tokens' => 'Freeleech Токенс',
- 'for' => 'for',
- 'forum' => 'Форум',
- 'free' => 'Үнэгүй',
- 'freeleech_activated' => 'Global Freeleech горим идэвхжсэн',
- 'global' => 'Глобал',
- 'group' => 'Групп',
- 'groups' => 'Бүлгүүд',
- 'hidden' => 'Далд',
- 'high-speeds' => 'Өндөр хурдтай',
- 'home' => 'Гэр',
- 'hot' => 'Халуун!',
- 'hour' => 'Цаг',
- 'huge' => 'Хэт их',
- 'info' => 'Мэдээлэл',
- 'internal' => 'Дотоод',
- 'ip' => 'IP',
- 'is-allowed' => 'зөвшөөрөгдсөн',
- 'large' => 'Том',
- 'latest' => 'Хамгийн сүүлд',
- 'latest-posts' => 'Хамгийн сүүлийн бичлэг',
- 'latest-topics' => 'Хамгийн сүүлийн үеийн сэдвүүд',
- 'legal' => 'Хууль эрх зүйн',
- 'legend' => 'Домог',
- 'lists' => 'Жагсаалт',
- 'lock-account' => 'Бүртгэлийг түгжих',
- 'logout' => 'Гарах',
- 'members' => 'Гишүүд',
- 'message' => 'Мессеж',
- 'minute' => 'Минутад',
- 'moderated-by' => 'Дундажаар',
- 'moderation' => 'Дунд зэрэг',
- 'moderation-approve' => 'Зөвшөөрөх',
- 'moderation-postpone' => 'Түр хүлээнэ үү',
- 'moderation-reject' => 'Татгалзах',
- 'month' => 'Сар',
- 'months' => 'Сар',
- 'my' => 'Миний',
- 'name' => 'Нэр',
- 'navigation' => 'Хөтөч',
- 'new' => 'Шинэ!',
- 'new-adj' => 'Шинэ',
- 'news' => 'Мэдээ мэдээлэл',
- 'next' => 'Дараачийн',
- 'no' => 'Үгүй',
- 'no-comments' => 'Үгүй ээ',
- 'no-result' => 'Шалгалтын өгөгдлийн сан үр дүнд хүрэхгүй байна',
- 'notifications' => 'Мэдэгдэл',
- 'older-than' => 'Аас дээш насны',
- 'oldest' => 'Хамгийн хөгшин',
- 'openreg_activated' => 'Нээлттэй бүртгэлийн идэвхжсэн',
- 'order-by' => 'Тушаалаар',
- 'other' => 'Бусад',
- 'pages' => 'Хуудаснууд',
- 'password' => 'Нууц үг',
- 'patron' => 'Тайвшруулагч болох',
- 'pending-torrents' => 'Түр хүлээнэ',
- 'personal' => 'Хувийн',
- 'plural-suffix' => 's',
- 'port' => 'Порт',
- 'position' => 'Байрлал',
- 'posts' => 'Бичлэгүүд',
- 'powered-by' => 'Powered by UNIT3D',
- 'preview' => 'Урьдчилан харах',
- 'previous' => 'Өмнөх',
- 'progress' => 'Ажиллагаа',
- 'publish' => 'Нийтлэх',
- 'quantity' => 'Тоо хэмжээ',
- 'quick-search' => 'Түргэн хайлт',
- 'ratio' => 'Харьцаа',
- 'reason' => 'Шалтгаан',
- 'remove' => 'Устгах',
- 'report' => 'Тайлан бичих',
- 'resend' => 'Дахин хэлэх',
- 'reporter' => 'Сурвалжлагч',
- 'required' => 'Шаардлагатай',
- 'results' => 'Үр дүн',
- 'rss-system' => 'RSS систем',
- 'rules' => 'Дүрэм',
- 'save' => 'Хадгалах',
- 'search' => 'Хайлт',
- 'search-results' => 'Хайлтын үр дүн',
- 'search-results-desc' => 'Доорх үр дүнг харна уу',
- 'second' => 'Хоёрдугаарт',
- 'select' => 'Сонгох',
- 'sort' => 'Эрэмбэлэх',
- 'special' => 'Онцгой',
- 'staff' => 'Ажилтнууд',
- 'staff-tools' => 'Ажилтны хэрэгсэл',
- 'stats' => 'Статус',
- 'status' => 'Статус',
- 'sticked' => 'Sticked',
- 'submit' => 'Илгээх',
- 'subscriptions' => 'Захиалга',
- 'teams' => 'Багууд',
- 'terms' => 'Ашиглах нөхцөл',
- 'times' => 'Таймс',
- 'title' => 'Гарчиг',
- 'top-bountied' => 'Топ Bountied',
- 'topics' => 'Сэдэвүүд',
- 'tracker-codes' => 'Tracker код',
- 'type' => 'Төрөл',
- 'type-verb' => 'Төрөл',
- 'types' => 'Төрөл',
- 'genre' => 'Төрөл',
- 'genres' => 'Genres',
- 'action' => 'Үйлдэл',
- 'actions' => 'Үйл ажиллагаа',
- 'unknown' => 'Үл мэдэгдэх',
+ 'enable' => 'Бататгах',
+ 'enter' => 'Оруулна уу',
+ 'error' => 'Алдаа',
+ 'everyday' => 'Өдөр бүр',
+ 'expired' => 'Хугацаа дууссан',
+ 'extra' => 'Нэмэлт',
+ 'extra-stats' => 'Нэмэлт-Статус',
+ 'faq' => 'ТАХ нь',
+ 'files' => 'Файлууд',
+ 'fl_token' => 'Freeleech Token',
+ 'fl_tokens' => 'Freeleech Токенс',
+ 'for' => 'for',
+ 'forum' => 'Форум',
+ 'free' => 'Үнэгүй',
+ 'freeleech_activated' => 'Global Freeleech горим идэвхжсэн',
+ 'global' => 'Глобал',
+ 'group' => 'Групп',
+ 'groups' => 'Бүлгүүд',
+ 'hidden' => 'Далд',
+ 'high-speeds' => 'Өндөр хурдтай',
+ 'home' => 'Гэр',
+ 'hot' => 'Халуун!',
+ 'hour' => 'Цаг',
+ 'huge' => 'Хэт их',
+ 'info' => 'Мэдээлэл',
+ 'internal' => 'Дотоод',
+ 'ip' => 'IP',
+ 'is-allowed' => 'зөвшөөрөгдсөн',
+ 'large' => 'Том',
+ 'latest' => 'Хамгийн сүүлд',
+ 'latest-posts' => 'Хамгийн сүүлийн бичлэг',
+ 'latest-topics' => 'Хамгийн сүүлийн үеийн сэдвүүд',
+ 'legal' => 'Хууль эрх зүйн',
+ 'legend' => 'Домог',
+ 'lists' => 'Жагсаалт',
+ 'lock-account' => 'Бүртгэлийг түгжих',
+ 'logout' => 'Гарах',
+ 'members' => 'Гишүүд',
+ 'message' => 'Мессеж',
+ 'minute' => 'Минутад',
+ 'moderated-by' => 'Дундажаар',
+ 'moderation' => 'Дунд зэрэг',
+ 'moderation-approve' => 'Зөвшөөрөх',
+ 'moderation-postpone' => 'Түр хүлээнэ үү',
+ 'moderation-reject' => 'Татгалзах',
+ 'month' => 'Сар',
+ 'months' => 'Сар',
+ 'my' => 'Миний',
+ 'name' => 'Нэр',
+ 'navigation' => 'Хөтөч',
+ 'new' => 'Шинэ!',
+ 'new-adj' => 'Шинэ',
+ 'news' => 'Мэдээ мэдээлэл',
+ 'next' => 'Дараачийн',
+ 'no' => 'Үгүй',
+ 'no-comments' => 'Үгүй ээ',
+ 'no-result' => 'Шалгалтын өгөгдлийн сан үр дүнд хүрэхгүй байна',
+ 'notifications' => 'Мэдэгдэл',
+ 'older-than' => 'Аас дээш насны',
+ 'oldest' => 'Хамгийн хөгшин',
+ 'openreg_activated' => 'Нээлттэй бүртгэлийн идэвхжсэн',
+ 'order-by' => 'Тушаалаар',
+ 'other' => 'Бусад',
+ 'pages' => 'Хуудаснууд',
+ 'password' => 'Нууц үг',
+ 'patron' => 'Тайвшруулагч болох',
+ 'pending-torrents' => 'Түр хүлээнэ',
+ 'personal' => 'Хувийн',
+ 'plural-suffix' => 's',
+ 'port' => 'Порт',
+ 'position' => 'Байрлал',
+ 'posts' => 'Бичлэгүүд',
+ 'powered-by' => 'Powered by UNIT3D',
+ 'preview' => 'Урьдчилан харах',
+ 'previous' => 'Өмнөх',
+ 'progress' => 'Ажиллагаа',
+ 'publish' => 'Нийтлэх',
+ 'quantity' => 'Тоо хэмжээ',
+ 'quick-search' => 'Түргэн хайлт',
+ 'ratio' => 'Харьцаа',
+ 'reason' => 'Шалтгаан',
+ 'remove' => 'Устгах',
+ 'report' => 'Тайлан бичих',
+ 'resend' => 'Дахин хэлэх',
+ 'reporter' => 'Сурвалжлагч',
+ 'required' => 'Шаардлагатай',
+ 'results' => 'Үр дүн',
+ 'rss-system' => 'RSS систем',
+ 'rules' => 'Дүрэм',
+ 'save' => 'Хадгалах',
+ 'search' => 'Хайлт',
+ 'search-results' => 'Хайлтын үр дүн',
+ 'search-results-desc' => 'Доорх үр дүнг харна уу',
+ 'second' => 'Хоёрдугаарт',
+ 'select' => 'Сонгох',
+ 'sort' => 'Эрэмбэлэх',
+ 'special' => 'Онцгой',
+ 'staff' => 'Ажилтнууд',
+ 'staff-tools' => 'Ажилтны хэрэгсэл',
+ 'stats' => 'Статус',
+ 'status' => 'Статус',
+ 'sticked' => 'Sticked',
+ 'submit' => 'Илгээх',
+ 'subscriptions' => 'Захиалга',
+ 'teams' => 'Багууд',
+ 'terms' => 'Ашиглах нөхцөл',
+ 'times' => 'Таймс',
+ 'title' => 'Гарчиг',
+ 'top-bountied' => 'Топ Bountied',
+ 'topics' => 'Сэдэвүүд',
+ 'tracker-codes' => 'Tracker код',
+ 'type' => 'Төрөл',
+ 'type-verb' => 'Төрөл',
+ 'types' => 'Төрөл',
+ 'genre' => 'Төрөл',
+ 'genres' => 'Genres',
+ 'action' => 'Үйлдэл',
+ 'actions' => 'Үйл ажиллагаа',
+ 'unknown' => 'Үл мэдэгдэх',
'unlocked-achievement' => 'Та түгжээгүй: ололт амжилт',
- 'upload' => 'Байршуулах',
- 'upload-guide' => 'Байршуулах заавар',
- 'user' => 'Хэрэглэгч',
- 'username' => 'Хэрэглэгчийн нэр',
- 'users' => 'Хэрэглэгчид',
- 'view' => 'Харах',
- 'view-all' => 'Бүгдийг харах',
- 'warnings' => 'Анхааруулга',
- 'year' => 'Жил',
- 'yes' => 'Тиймээ',
- 'your' => 'Таны',
- 'your-comment' => 'Таны сэтгэгдэл',
+ 'upload' => 'Байршуулах',
+ 'upload-guide' => 'Байршуулах заавар',
+ 'user' => 'Хэрэглэгч',
+ 'username' => 'Хэрэглэгчийн нэр',
+ 'users' => 'Хэрэглэгчид',
+ 'view' => 'Харах',
+ 'view-all' => 'Бүгдийг харах',
+ 'warnings' => 'Анхааруулга',
+ 'year' => 'Жил',
+ 'yes' => 'Тиймээ',
+ 'your' => 'Таны',
+ 'your-comment' => 'Таны сэтгэгдэл',
];
diff --git a/lang/mn/email.php b/lang/mn/email.php
index 67ff4433f..817f38e09 100644
--- a/lang/mn/email.php
+++ b/lang/mn/email.php
@@ -12,46 +12,46 @@
*/
return [
- 'activate-account' => 'Дансыг идэвхжүүлнэ үү',
- 'ban-reason' => 'Шалтгаан',
- 'banned-footer' => 'Дүрмүүдийг дагаж мөрдөхгүйн тулд юу авахыг та хараарай',
- 'banned-header' => 'Та хориотой байсан',
- 'bug-description' => 'Асуудал',
- 'bug-footer' => 'Үүнийг засах хэрэгтэй',
- 'bug-header' => 'Шинэ алдааны тайлан',
- 'bug-priority' => 'Тэргүүлэх чиглэл',
- 'bug-title' => 'Алдааны гарчиг',
- 'contact-header' => 'Шинэ холбоо барих мэйлээс',
- 'contact-message' => 'Мессеж',
- 'contact-name' => 'Нэр',
+ 'activate-account' => 'Дансыг идэвхжүүлнэ үү',
+ 'ban-reason' => 'Шалтгаан',
+ 'banned-footer' => 'Дүрмүүдийг дагаж мөрдөхгүйн тулд юу авахыг та хараарай',
+ 'banned-header' => 'Та хориотой байсан',
+ 'bug-description' => 'Асуудал',
+ 'bug-footer' => 'Үүнийг засах хэрэгтэй',
+ 'bug-header' => 'Шинэ алдааны тайлан',
+ 'bug-priority' => 'Тэргүүлэх чиглэл',
+ 'bug-title' => 'Алдааны гарчиг',
+ 'contact-header' => 'Шинэ холбоо барих мэйлээс',
+ 'contact-message' => 'Мессеж',
+ 'contact-name' => 'Нэр',
'fail-login-greeting' => 'Акаунт руу нэвтрэх амжилтгүй болсон!',
- 'fail-login-line1' => 'Таны бүртгэлд амжилтгүй нэвтэрсэн байна.',
- 'fail-login-line2' => 'Энэ хүсэлт нь дараах байдалтай байна: ip (: host) from: time',
- 'fail-login-subject' => 'Нэвтрэх Мэдэгдлийн алдаа',
- 'footer-link' => 'Хэрэв та: actiontext товчийг дарахад дараахь URL хаягийг өөрийн вэб хөтөч рүү хуулж оруулаарай:',
- 'invite-header' => '. Руу урих',
- 'invite-invited' => 'Та уригдсан',
- 'invite-message' => 'Мессеж',
- 'invite-signup' => 'Одоо Бүртгүүлэх',
- 'newreply-header' => 'Таны сэдэв дэх шинэ хариулт байна',
- 'newreply-message' => 'Мессеж',
- 'newreply-replied' => 'Таны сэдэвт хариулсан',
- 'newreply-view' => 'Үүнийг үзэх',
- 'no-email-found' => 'Бид энэ имэйлийг манай системд олж чадсангүй!',
- 'register-code' => 'Бүртгэлээ идэвхжүүлэхийн тулд доорх товчийг дарна уу',
- 'register-footer' => 'Дээрх товчлуур нь ажиллахгүй бол URL-ыг өөрийн браузерын хаягийн мөрөнд хуулж буулгана',
- 'register-header' => 'Сайн байна уу! Нэвтрэн ороход тань баярлалаа',
- 'report-comment' => 'Сэтгэгдэл бичих',
- 'report-email' => 'И-мэйл',
- 'report-header' => 'Сайн байна уу Админ, А холбоосыг мэдээлсэн байна',
- 'report-link' => 'Холбоос',
- 'report-link-hash' => 'Бодит холбоос',
- 'thanks' => 'Ашиглахад баярлалаа',
- 'unban-footer' => 'Буцаад тавтай морил!',
- 'unban-header' => 'Танд хориглоогүй',
- 'unban-reason' => 'Шалтгаан',
- 'username-reminder' => 'Та саяхан бидний аппликешн дээрх хэрэглэгчийн хүсэлтийг илгээсэн. Таны хэрэглэгчийн нэр байна',
- 'username-sent' => 'Таны хэрэглэгчийн нэр таны и-мэйл хаяг руу илгээгдсэн!',
- 'disabled-header' => 'Таны дансыг идэвхгүй болгосон',
- 'pruned-header' => 'Таны данс нурсан байна',
+ 'fail-login-line1' => 'Таны бүртгэлд амжилтгүй нэвтэрсэн байна.',
+ 'fail-login-line2' => 'Энэ хүсэлт нь дараах байдалтай байна: ip (: host) from: time',
+ 'fail-login-subject' => 'Нэвтрэх Мэдэгдлийн алдаа',
+ 'footer-link' => 'Хэрэв та: actiontext товчийг дарахад дараахь URL хаягийг өөрийн вэб хөтөч рүү хуулж оруулаарай:',
+ 'invite-header' => '. Руу урих',
+ 'invite-invited' => 'Та уригдсан',
+ 'invite-message' => 'Мессеж',
+ 'invite-signup' => 'Одоо Бүртгүүлэх',
+ 'newreply-header' => 'Таны сэдэв дэх шинэ хариулт байна',
+ 'newreply-message' => 'Мессеж',
+ 'newreply-replied' => 'Таны сэдэвт хариулсан',
+ 'newreply-view' => 'Үүнийг үзэх',
+ 'no-email-found' => 'Бид энэ имэйлийг манай системд олж чадсангүй!',
+ 'register-code' => 'Бүртгэлээ идэвхжүүлэхийн тулд доорх товчийг дарна уу',
+ 'register-footer' => 'Дээрх товчлуур нь ажиллахгүй бол URL-ыг өөрийн браузерын хаягийн мөрөнд хуулж буулгана',
+ 'register-header' => 'Сайн байна уу! Нэвтрэн ороход тань баярлалаа',
+ 'report-comment' => 'Сэтгэгдэл бичих',
+ 'report-email' => 'И-мэйл',
+ 'report-header' => 'Сайн байна уу Админ, А холбоосыг мэдээлсэн байна',
+ 'report-link' => 'Холбоос',
+ 'report-link-hash' => 'Бодит холбоос',
+ 'thanks' => 'Ашиглахад баярлалаа',
+ 'unban-footer' => 'Буцаад тавтай морил!',
+ 'unban-header' => 'Танд хориглоогүй',
+ 'unban-reason' => 'Шалтгаан',
+ 'username-reminder' => 'Та саяхан бидний аппликешн дээрх хэрэглэгчийн хүсэлтийг илгээсэн. Таны хэрэглэгчийн нэр байна',
+ 'username-sent' => 'Таны хэрэглэгчийн нэр таны и-мэйл хаяг руу илгээгдсэн!',
+ 'disabled-header' => 'Таны дансыг идэвхгүй болгосон',
+ 'pruned-header' => 'Таны данс нурсан байна',
];
diff --git a/lang/mn/forum.php b/lang/mn/forum.php
index a8506f4cb..90c3b53dc 100644
--- a/lang/mn/forum.php
+++ b/lang/mn/forum.php
@@ -12,63 +12,63 @@
*/
return [
- 'action' => 'Үйлдэл',
- 'activity' => 'Үйл ажиллагаа',
- 'approved' => 'Батлагдсан',
- 'author' => 'Зохиогч',
- 'bug' => 'Алдаан',
- 'category-quick-search' => 'Сэдвийн нэр хурдан хайлт (ангилал дотор)',
- 'close-topic' => 'Сэдвийн түгжээ',
- 'closed' => 'Хаалттай байна',
- 'create-new-topic' => 'Шинэ сэдэв үүсгэх',
- 'created' => 'Үүсгэсэн',
- 'current' => 'Одоогийн',
- 'delete-topic' => 'Энэ сэдвийг устгах',
- 'denied' => 'Батлагдсан',
- 'dislike-post' => 'Энэ бичлэгийг дургүй',
- 'display-forum' => 'Сэдвүүдийг харуулах',
- 'edit-post' => 'Бичлэгийн засвар',
- 'edit-topic' => 'Сэдвийг засварлах',
- 'forum' => 'Форум',
- 'forums' => 'Форум',
- 'implemented' => 'Хэрэгжүүлсэн',
- 'in' => 'Дотор нь',
- 'invalid' => 'Буруу байна',
- 'label' => 'Шошго',
- 'label-system' => 'Шошгоны систем',
- 'last-message' => 'Хамгийн сүүлчийн зурвас',
- 'last-post-info' => 'Сүүлийн шуудангийн мэдээлэл',
- 'latest' => 'Хамгийн сүүлд',
- 'like-post' => 'Энэ нийтлэл шиг',
- 'meta-category' => 'Ангилал дахь форумын жагсаалт',
- 'moderation' => 'Дунд зэрэг',
- 'name' => 'Нэр',
- 'not-connected' => 'Та холбогдсон байх ёстой',
- 'not-subscribed' => 'Захиалга хийгээгүй',
- 'open' => 'Нээлттэй байна',
- 'open-topic' => 'Энэ сэдвийг нээх',
- 'permalink' => 'Permalink',
- 'pin' => 'Пин',
- 'post' => 'Бичлэг',
- 'post-quick-search' => 'Бичлэгийн байгууллага хурдан хайх',
- 'posts' => 'Бичлэгүүд',
- 'quote' => 'Иш татах',
- 'read-topic' => 'Сэдэв уншина уу',
- 'replies' => 'Хариултууд',
- 'send-new-topic' => 'Энэ сэдвийг хадгалах',
- 'solved' => 'Шийдэг',
- 'state' => 'Улс',
- 'stats' => 'Статус',
- 'subscribed' => 'Захиалсан',
+ 'action' => 'Үйлдэл',
+ 'activity' => 'Үйл ажиллагаа',
+ 'approved' => 'Батлагдсан',
+ 'author' => 'Зохиогч',
+ 'bug' => 'Алдаан',
+ 'category-quick-search' => 'Сэдвийн нэр хурдан хайлт (ангилал дотор)',
+ 'close-topic' => 'Сэдвийн түгжээ',
+ 'closed' => 'Хаалттай байна',
+ 'create-new-topic' => 'Шинэ сэдэв үүсгэх',
+ 'created' => 'Үүсгэсэн',
+ 'current' => 'Одоогийн',
+ 'delete-topic' => 'Энэ сэдвийг устгах',
+ 'denied' => 'Батлагдсан',
+ 'dislike-post' => 'Энэ бичлэгийг дургүй',
+ 'display-forum' => 'Сэдвүүдийг харуулах',
+ 'edit-post' => 'Бичлэгийн засвар',
+ 'edit-topic' => 'Сэдвийг засварлах',
+ 'forum' => 'Форум',
+ 'forums' => 'Форум',
+ 'implemented' => 'Хэрэгжүүлсэн',
+ 'in' => 'Дотор нь',
+ 'invalid' => 'Буруу байна',
+ 'label' => 'Шошго',
+ 'label-system' => 'Шошгоны систем',
+ 'last-message' => 'Хамгийн сүүлчийн зурвас',
+ 'last-post-info' => 'Сүүлийн шуудангийн мэдээлэл',
+ 'latest' => 'Хамгийн сүүлд',
+ 'like-post' => 'Энэ нийтлэл шиг',
+ 'meta-category' => 'Ангилал дахь форумын жагсаалт',
+ 'moderation' => 'Дунд зэрэг',
+ 'name' => 'Нэр',
+ 'not-connected' => 'Та холбогдсон байх ёстой',
+ 'not-subscribed' => 'Захиалга хийгээгүй',
+ 'open' => 'Нээлттэй байна',
+ 'open-topic' => 'Энэ сэдвийг нээх',
+ 'permalink' => 'Permalink',
+ 'pin' => 'Пин',
+ 'post' => 'Бичлэг',
+ 'post-quick-search' => 'Бичлэгийн байгууллага хурдан хайх',
+ 'posts' => 'Бичлэгүүд',
+ 'quote' => 'Иш татах',
+ 'read-topic' => 'Сэдэв уншина уу',
+ 'replies' => 'Хариултууд',
+ 'send-new-topic' => 'Энэ сэдвийг хадгалах',
+ 'solved' => 'Шийдэг',
+ 'state' => 'Улс',
+ 'stats' => 'Статус',
+ 'subscribed' => 'Захиалсан',
'subscription-quick-search' => 'Сэдвийн нэр хурдан хайлт (захиалга дотор)',
- 'suggestion' => 'Санал',
- 'topic' => 'Сэдэв',
- 'topic-closed' => 'Энэ сэдэв нь хаалттай байна',
- 'topic-name' => 'Сэдвийн нэр',
- 'topic-quick-search' => 'Сэдвийн нэр хурдан хайлт',
- 'topic-title' => 'Энэ Сэдвийн нэр',
- 'topics' => 'Сэдэвүүд',
- 'unpin' => 'Unpin',
- 'view-all' => 'Бүх сэдвийг харах',
- 'views' => 'Харах',
+ 'suggestion' => 'Санал',
+ 'topic' => 'Сэдэв',
+ 'topic-closed' => 'Энэ сэдэв нь хаалттай байна',
+ 'topic-name' => 'Сэдвийн нэр',
+ 'topic-quick-search' => 'Сэдвийн нэр хурдан хайлт',
+ 'topic-title' => 'Энэ Сэдвийн нэр',
+ 'topics' => 'Сэдэвүүд',
+ 'unpin' => 'Unpin',
+ 'view-all' => 'Бүх сэдвийг харах',
+ 'views' => 'Харах',
];
diff --git a/lang/mn/graveyard.php b/lang/mn/graveyard.php
index c9c60d216..8b11785a4 100644
--- a/lang/mn/graveyard.php
+++ b/lang/mn/graveyard.php
@@ -12,15 +12,15 @@
*/
return [
- 'dead' => 'Нас барсан',
- 'graveyard' => 'Газарзүй',
- 'guidelines' => 'Удирдамж',
+ 'dead' => 'Нас барсан',
+ 'graveyard' => 'Газарзүй',
+ 'guidelines' => 'Удирдамж',
'guidelines-content' => '1) Та өөрийнхөө байршуулалтыг сэргээх боломжгүй.
2) Дэмжихгүй зүйлээ бүү сэргээнэ.',
- 'howto' => 'Heres The Rule',
- 'howto-desc1' => 'Та үрийн ёстой: нэрийг succesful ressurection нь 30 хоног. Энэ тохиолдолд таны одоогийн суулгацын үед',
- 'howto-desc2' => 'Та шагнагдах болно',
- 'howto-hits' => 'Үзсэн',
- 'pending' => 'Хүлээгдэж байна',
- 'resurrect' => 'Амилуулалт',
- 'reward' => 'Freeleech жетон',
+ 'howto' => 'Heres The Rule',
+ 'howto-desc1' => 'Та үрийн ёстой: нэрийг succesful ressurection нь 30 хоног. Энэ тохиолдолд таны одоогийн суулгацын үед',
+ 'howto-desc2' => 'Та шагнагдах болно',
+ 'howto-hits' => 'Үзсэн',
+ 'pending' => 'Хүлээгдэж байна',
+ 'resurrect' => 'Амилуулалт',
+ 'reward' => 'Freeleech жетон',
];
diff --git a/lang/mn/notification.php b/lang/mn/notification.php
index a2ceda6d7..a86631625 100644
--- a/lang/mn/notification.php
+++ b/lang/mn/notification.php
@@ -12,14 +12,14 @@
*/
return [
- 'date' => 'Огноо',
- 'delete' => 'Устгах',
- 'delete-all' => 'Бүх мэдэгдлийг устгах',
- 'mark-all-read' => 'Бүхнийг уншсан гэж тэмдэглэ',
- 'mark-read' => 'Уншсан гэж тэмдэглэ',
- 'message' => 'Мессеж',
+ 'date' => 'Огноо',
+ 'delete' => 'Устгах',
+ 'delete-all' => 'Бүх мэдэгдлийг устгах',
+ 'mark-all-read' => 'Бүхнийг уншсан гэж тэмдэглэ',
+ 'mark-read' => 'Уншсан гэж тэмдэглэ',
+ 'message' => 'Мессеж',
'no-notifications' => 'Мэдэгдэл байхгүй байна',
- 'notifications' => 'Мэдэгдэл',
- 'read' => 'Унших',
- 'title' => 'Гарчиг',
+ 'notifications' => 'Мэдэгдэл',
+ 'read' => 'Унших',
+ 'title' => 'Гарчиг',
];
diff --git a/lang/mn/page.php b/lang/mn/page.php
index 16d13fef4..fc2aa2bc6 100644
--- a/lang/mn/page.php
+++ b/lang/mn/page.php
@@ -12,28 +12,28 @@
*/
return [
- 'aboutus-advantage' => 'Давуу тал',
- 'aboutus-advantage1' => 'HD видео / аудио болон техникийн дэмжлэгтэйгээр дэлхий даяар сайн мэддэг гишүүд, ажилтнуудтай танилцсан.',
- 'aboutus-advantage2' => 'Кино, телевизийн шоуны талаар бидний хүсэл эрмэлзлээс гадна хамгийн их сонголттой FANRES! Том Манай агуулгын bringers баярлалаа.',
- 'aboutus-advantage3' => 'Хэдийгээр сайтын ажлыг үргэлжлүүлэхийн тулд хандив хүлээн авдаг бол сайтын PM эсвэл тугны талбайг хорогдуулахгүй. Биднээс гуйдаггүй.',
- 'aboutus-advantage4' => 'Манай хамт олон эрт дээр үеэсээ хоѐрдогч байхгүй. Манай ажилтнууд болон Userbase-ийн хооронд байнга туслахаар ирсэн. Таны туршлага дээр тулгуурласан байхын тулд: нэр нь гайхалтай зүйл биш юм.',
- 'aboutus-advantage5' => 'Манай үйлчилгээг дэлхий даяар олон хүмүүс өдөр бүр ашигладаг. Бид өөрсдийн кодын функц, аюулгүй байдлын талаар санаа тавьж, найдвартай, найдвартай гэдэгт итгэлтэй байна. Манай хөгжүүлэгчид өдөр бүр ажилладаг бөгөөд nex-gen-ийн код бичиж өгдөг.',
- 'aboutus-header' => 'Сайн байна уу',
- 'aboutus-rules' => 'Бидэнд юу хэрэгтэй байна',
- 'aboutus-rules1' => 'Нутгийн идэвхтэй гишүүн байх Энэ нь үр дүнтэй яриа хэлэлцээрт нэгдэх, батлагдсан агуулга нэмэх, боломжтой бол бусад хэрэглэгчид туслах болно гэсэн үг юм.',
- 'aboutus-rules2' => 'Дүрмүүдийг бүрэн уншаад тэднийг хүндэлнэ үү!',
- 'aboutus-rules3' => 'Санал болгох Бид өдөр бүр илүү сайн нэрлэхийг хичээдэг. Бид санал болголт бүрийг ашиглах болно гэж хэлдэг ч, шинэ санаануудыг олж харах нь тийм ч төвөгтэй биш юм.',
- 'aboutus-welcome' => 'Магадгүй ярих болно',
- 'aboutus-welcome-desc' => ': title нь олон нийтийн бүтээсэн кино / ТВ / FANRES мэдээллийн бааз юм. Өгөгдлийн хэсэг бүр нь 2017 оноос хойш манай гайхалтай олон нийтийн нэмж байна: бүртгэгдсэн хүчтэй анхаарал HD агуулга, идэвхтэй userbase, Гайхалтай / аюулгүй ийн код болон ашигтай, найрсаг ажилтнууд баг байна.',
- 'blacklist-browsers' => 'Хөтчүүд',
- 'blacklist-btclient' => 'BitTorrent клиент',
- 'blacklist-clients' => 'Үйлчлүүлэгчид',
- 'blacklist-desc' => 'Дараах хөтчүүд болон Bittorrent клиентүүд нь дараах жагсаалт руу илгээгдэж / хориглогдсон байна',
- 'blacklist-webbrowser' => 'Вэб хөтөч',
+ 'aboutus-advantage' => 'Давуу тал',
+ 'aboutus-advantage1' => 'HD видео / аудио болон техникийн дэмжлэгтэйгээр дэлхий даяар сайн мэддэг гишүүд, ажилтнуудтай танилцсан.',
+ 'aboutus-advantage2' => 'Кино, телевизийн шоуны талаар бидний хүсэл эрмэлзлээс гадна хамгийн их сонголттой FANRES! Том Манай агуулгын bringers баярлалаа.',
+ 'aboutus-advantage3' => 'Хэдийгээр сайтын ажлыг үргэлжлүүлэхийн тулд хандив хүлээн авдаг бол сайтын PM эсвэл тугны талбайг хорогдуулахгүй. Биднээс гуйдаггүй.',
+ 'aboutus-advantage4' => 'Манай хамт олон эрт дээр үеэсээ хоѐрдогч байхгүй. Манай ажилтнууд болон Userbase-ийн хооронд байнга туслахаар ирсэн. Таны туршлага дээр тулгуурласан байхын тулд: нэр нь гайхалтай зүйл биш юм.',
+ 'aboutus-advantage5' => 'Манай үйлчилгээг дэлхий даяар олон хүмүүс өдөр бүр ашигладаг. Бид өөрсдийн кодын функц, аюулгүй байдлын талаар санаа тавьж, найдвартай, найдвартай гэдэгт итгэлтэй байна. Манай хөгжүүлэгчид өдөр бүр ажилладаг бөгөөд nex-gen-ийн код бичиж өгдөг.',
+ 'aboutus-header' => 'Сайн байна уу',
+ 'aboutus-rules' => 'Бидэнд юу хэрэгтэй байна',
+ 'aboutus-rules1' => 'Нутгийн идэвхтэй гишүүн байх Энэ нь үр дүнтэй яриа хэлэлцээрт нэгдэх, батлагдсан агуулга нэмэх, боломжтой бол бусад хэрэглэгчид туслах болно гэсэн үг юм.',
+ 'aboutus-rules2' => 'Дүрмүүдийг бүрэн уншаад тэднийг хүндэлнэ үү!',
+ 'aboutus-rules3' => 'Санал болгох Бид өдөр бүр илүү сайн нэрлэхийг хичээдэг. Бид санал болголт бүрийг ашиглах болно гэж хэлдэг ч, шинэ санаануудыг олж харах нь тийм ч төвөгтэй биш юм.',
+ 'aboutus-welcome' => 'Магадгүй ярих болно',
+ 'aboutus-welcome-desc' => ': title нь олон нийтийн бүтээсэн кино / ТВ / FANRES мэдээллийн бааз юм. Өгөгдлийн хэсэг бүр нь 2017 оноос хойш манай гайхалтай олон нийтийн нэмж байна: бүртгэгдсэн хүчтэй анхаарал HD агуулга, идэвхтэй userbase, Гайхалтай / аюулгүй ийн код болон ашигтай, найрсаг ажилтнууд баг байна.',
+ 'blacklist-browsers' => 'Хөтчүүд',
+ 'blacklist-btclient' => 'BitTorrent клиент',
+ 'blacklist-clients' => 'Үйлчлүүлэгчид',
+ 'blacklist-desc' => 'Дараах хөтчүүд болон Bittorrent клиентүүд нь дараах жагсаалт руу илгээгдэж / хориглогдсон байна',
+ 'blacklist-webbrowser' => 'Вэб хөтөч',
'blacklist-emaildomain' => 'Blocked Domain',
- 'email-blacklist-desc' => 'Дараах И-мэйлийн домэйнууд нь ашиглагдсанаасаа хаагдсан байна. Та бүртгүүлэх эсвэл доорх зүйлсийг урих боломжгүй.',
- 'email-whitelist-desc' => 'Дараах имэйлийн домэйнууд нь цорын ганц имэйлийн домэйнууд ашиглах боломжтой болсон. Та зөвхөн бүртгүүлэх эсвэл дараах зүйлийг ашиглан урих эрхтэй.',
- 'staff-group' => 'Групп',
- 'staff-title' => 'Гарчиг',
+ 'email-blacklist-desc' => 'Дараах И-мэйлийн домэйнууд нь ашиглагдсанаасаа хаагдсан байна. Та бүртгүүлэх эсвэл доорх зүйлсийг урих боломжгүй.',
+ 'email-whitelist-desc' => 'Дараах имэйлийн домэйнууд нь цорын ганц имэйлийн домэйнууд ашиглах боломжтой болсон. Та зөвхөн бүртгүүлэх эсвэл дараах зүйлийг ашиглан урих эрхтэй.',
+ 'staff-group' => 'Групп',
+ 'staff-title' => 'Гарчиг',
'whitelist-emaildomain' => 'Итгэмжлэгдсэн домэйн',
];
diff --git a/lang/mn/pagination.php b/lang/mn/pagination.php
index 6bc539185..b54c50bb9 100644
--- a/lang/mn/pagination.php
+++ b/lang/mn/pagination.php
@@ -24,5 +24,5 @@ return [
*/
'previous' => '« Өмнөх',
- 'next' => 'Дараах »',
+ 'next' => 'Дараах »',
];
diff --git a/lang/mn/passwords.php b/lang/mn/passwords.php
index 43ec89a94..194c8368a 100644
--- a/lang/mn/passwords.php
+++ b/lang/mn/passwords.php
@@ -24,8 +24,8 @@ return [
*/
'password' => 'Нууц үг хамгийн багадаа 6-н тэмдэгтийн урттай байх бөгөөд баталгаажуулттай ижил байх ёстой.',
- 'reset' => 'Таний нууц үг шинэчлэгдсэн!',
- 'sent' => 'Нууц үг сэргээх холбоосийг таний и-мэйл хаяг уруу явуулсан!',
- 'token' => 'Алдаатай нууц үг сэргээх холбоос.',
- 'user' => 'Ийм и-мэйл хаягтай хэрэглэгч олдсонгүй.',
+ 'reset' => 'Таний нууц үг шинэчлэгдсэн!',
+ 'sent' => 'Нууц үг сэргээх холбоосийг таний и-мэйл хаяг уруу явуулсан!',
+ 'token' => 'Алдаатай нууц үг сэргээх холбоос.',
+ 'user' => 'Ийм и-мэйл хаягтай хэрэглэгч олдсонгүй.',
];
diff --git a/lang/mn/pm.php b/lang/mn/pm.php
index 934484243..ff0fa39a3 100644
--- a/lang/mn/pm.php
+++ b/lang/mn/pm.php
@@ -12,29 +12,29 @@
*/
return [
- 'create' => 'Үүсгэх',
- 'delete' => 'Устгах',
+ 'create' => 'Үүсгэх',
+ 'delete' => 'Устгах',
'enter-subject' => 'Гарчиг оруулна уу',
- 'from' => 'Эхлээд',
- 'inbox' => 'Ирсэн имэйл',
+ 'from' => 'Эхлээд',
+ 'inbox' => 'Ирсэн имэйл',
'mark-all-read' => 'Бүх зурвасыг уншсан гэж тэмдэглэ',
- 'message' => 'Мессеж',
- 'messages' => 'Мессежүүд',
- 'new' => 'Шинэ зурвас',
- 'outbox' => 'Outbox',
- 'private' => 'Хувийн',
- 'read' => 'Унших',
- 'received-at' => 'Хүлээн авсан өдөр',
- 'refresh' => 'Сэргээх',
- 'reply' => 'Хариу бичих',
- 'search' => 'Гарчигаар хайх',
- 'select' => 'Хэрэглэгчийг сонго',
- 'send' => 'РМ илгээх',
- 'send-to' => 'РМ илгээх',
- 'sent' => 'Илгээсэн',
- 'sent-at' => 'Оруулсан',
- 'subject' => 'Гарчиг',
- 'to' => 'To',
- 'unread' => 'Уншаагүй',
- 'empty-inbox' => 'Ирсэн хайрцгийг хоослох',
+ 'message' => 'Мессеж',
+ 'messages' => 'Мессежүүд',
+ 'new' => 'Шинэ зурвас',
+ 'outbox' => 'Outbox',
+ 'private' => 'Хувийн',
+ 'read' => 'Унших',
+ 'received-at' => 'Хүлээн авсан өдөр',
+ 'refresh' => 'Сэргээх',
+ 'reply' => 'Хариу бичих',
+ 'search' => 'Гарчигаар хайх',
+ 'select' => 'Хэрэглэгчийг сонго',
+ 'send' => 'РМ илгээх',
+ 'send-to' => 'РМ илгээх',
+ 'sent' => 'Илгээсэн',
+ 'sent-at' => 'Оруулсан',
+ 'subject' => 'Гарчиг',
+ 'to' => 'To',
+ 'unread' => 'Уншаагүй',
+ 'empty-inbox' => 'Ирсэн хайрцгийг хоослох',
];
diff --git a/lang/mn/poll.php b/lang/mn/poll.php
index 5af82812d..caad5ff3f 100644
--- a/lang/mn/poll.php
+++ b/lang/mn/poll.php
@@ -12,18 +12,18 @@
*/
return [
- 'add-option' => 'Опцион нэмэх',
- 'create-poll' => 'Санал асуулга үүсгэх',
- 'current' => 'Одоогийн санал (ууд)',
- 'delete-option' => 'Сонголтыг устгах',
+ 'add-option' => 'Опцион нэмэх',
+ 'create-poll' => 'Санал асуулга үүсгэх',
+ 'current' => 'Одоогийн санал (ууд)',
+ 'delete-option' => 'Сонголтыг устгах',
'multiple-choice' => 'Энэ бол олон сонголттой санал асуулга юм. Өөрийн хүссэн хариултыг сонгох.',
- 'option' => 'Сонголт',
- 'poll' => 'Санал асуулга',
- 'polls' => 'Санал асуулга',
- 'results' => 'Санал асуулга',
- 'title' => 'Гарчиг',
- 'total' => 'Хэзээ ч нийт votes',
- 'vote' => 'Санал өгөх',
- 'vote-now' => 'Одоо саналаа аваарай!',
- 'votes' => 'Үнэн',
+ 'option' => 'Сонголт',
+ 'poll' => 'Санал асуулга',
+ 'polls' => 'Санал асуулга',
+ 'results' => 'Санал асуулга',
+ 'title' => 'Гарчиг',
+ 'total' => 'Хэзээ ч нийт votes',
+ 'vote' => 'Санал өгөх',
+ 'vote-now' => 'Одоо саналаа аваарай!',
+ 'votes' => 'Үнэн',
];
diff --git a/lang/mn/request.php b/lang/mn/request.php
index 1f1c96775..2aafd8d49 100644
--- a/lang/mn/request.php
+++ b/lang/mn/request.php
@@ -12,67 +12,67 @@
*/
return [
- 'add-request' => 'Хүсэлт нэмэх',
- 'age' => 'Нас',
- 'all-requests' => 'Бүх хүсэлт',
- 'approve' => 'Зөвшөөрөх',
- 'bounty' => 'Баян',
- 'bounty-claimed' => 'Баффей өгүүлэв',
- 'bounty-unclaimed' => 'Баян нь үгүй',
- 'category' => 'Ангилал',
- 'claim' => 'Нэхэмжлэл',
- 'claim-anon-choose' => 'Ухаалаг сонгоно уу',
- 'claim-as-anon' => 'Энэ нь танд таалагдах болно',
- 'claim-now' => 'Одоо нэхэмжил',
- 'claimed' => 'Нэхэмжлэл гаргасан',
- 'current' => 'Одоогийн',
- 'delete' => 'Энэ хүсэлтийг устгах',
+ 'add-request' => 'Хүсэлт нэмэх',
+ 'age' => 'Нас',
+ 'all-requests' => 'Бүх хүсэлт',
+ 'approve' => 'Зөвшөөрөх',
+ 'bounty' => 'Баян',
+ 'bounty-claimed' => 'Баффей өгүүлэв',
+ 'bounty-unclaimed' => 'Баян нь үгүй',
+ 'category' => 'Ангилал',
+ 'claim' => 'Нэхэмжлэл',
+ 'claim-anon-choose' => 'Ухаалаг сонгоно уу',
+ 'claim-as-anon' => 'Энэ нь танд таалагдах болно',
+ 'claim-now' => 'Одоо нэхэмжил',
+ 'claimed' => 'Нэхэмжлэл гаргасан',
+ 'current' => 'Одоогийн',
+ 'delete' => 'Энэ хүсэлтийг устгах',
'delete-confirmation' => 'Та энэ хүсэлтийг устгахыг хүсч байгаадаа итгэлтэй байна уу',
- 'delete-filled' => 'Энэ хүсэлтийг зөвхөн бөглөөгүй тохиолдолд устгах боломжтой',
- 'description' => 'Тодорхойлолт',
- 'dont-have-bps' => 'Та хангалттай Bonus байхгүй байна',
- 'edit-request' => 'Хүсэлтийг засах',
- 'enter-bp' => 'Бондын оноо (хамгийн багадаа 100)',
- 'enter-hash' => 'Байршуулсан Torrent-ын Мэдээлэл Хашыг оруулна уу',
- 'fill' => 'Дуусга',
- 'fill-request' => 'Энэ хүсэлтийг бөглөнө үү',
- 'filled' => 'Дүүрэн',
- 'filled-by' => 'Бүгд',
- 'for' => 'for',
- 'fulfill' => 'Дуусга',
- 'last-vote' => 'Сүүлийн санал',
- 'my-requests' => 'Миний хүсэлт',
- 'no' => 'Үгүй,',
- 'no-imdb-id' => 'Бүх хүсэлтүүд нь IMDB дугаартай байх ёстой',
- 'no-privileges' => 'Алдаа: Таны хүсэлтийг хүчингүй болгосон',
- 'no-privileges-desc' => 'Хэрэв та энэ алдаа гэж үзэж байгаа бол ажилтнуудад хандана уу',
- 'no-refunds' => 'Бон солилцох, дүүргэх, үр өгөөжийг эцэс болгох!
Үгүй',
- 'pending' => 'Хүлээгдэж байна',
- 'reason' => 'Шалтгаан',
- 'reject' => 'Татгалзах',
- 'report' => 'Хүсэлтийг мэдээлэх',
- 'request' => 'Хүсэлт гаргах',
- 'request-details' => 'Хүсэлт гарга',
- 'requested-by' => 'Хүсэлтээр',
- 'requests' => 'Хүсэлт',
- 'required' => 'Шаардлагатай',
- 'reset' => 'Дахин тохируулах',
- 'reset-confirmation' => 'Та энэ хүсэлтийг дахин шинэчлэхийг хүсэж байна уу?',
- 'reset-request' => 'Энэ хүсэлтийг дахин тохируулна уу',
- 'reward' => 'Шагнал',
- 'reward-desc' => 'Шагналын шагналыг хэр их хүсч байна вэ? Хамгийн багадаа 100 ВП',
- 'reward-from' => 'Эхлээд',
- 'title' => 'Гарчиг',
- 'torrent-hash' => 'Torrent Hash',
- 'total-bounty' => 'Нийт өгөөж',
- 'type' => 'Төрөл',
- 'unclaim' => 'Энэ хүсэлтийг хүчингүй болгох',
- 'unfilled' => 'Дуусаагүй',
- 'view-filled' => 'Дууг үзэх',
- 'view-unfilled' => 'Үл үзэгдэх байдлыг харах',
- 'vote' => 'Санал өгөх',
- 'vote-that' => 'Энэ хүсэлтийг санал болгов',
- 'voters' => 'Сонгогчид',
- 'votes' => 'Үнэн',
- 'yes' => 'Тиймээ',
+ 'delete-filled' => 'Энэ хүсэлтийг зөвхөн бөглөөгүй тохиолдолд устгах боломжтой',
+ 'description' => 'Тодорхойлолт',
+ 'dont-have-bps' => 'Та хангалттай Bonus байхгүй байна',
+ 'edit-request' => 'Хүсэлтийг засах',
+ 'enter-bp' => 'Бондын оноо (хамгийн багадаа 100)',
+ 'enter-hash' => 'Байршуулсан Torrent-ын Мэдээлэл Хашыг оруулна уу',
+ 'fill' => 'Дуусга',
+ 'fill-request' => 'Энэ хүсэлтийг бөглөнө үү',
+ 'filled' => 'Дүүрэн',
+ 'filled-by' => 'Бүгд',
+ 'for' => 'for',
+ 'fulfill' => 'Дуусга',
+ 'last-vote' => 'Сүүлийн санал',
+ 'my-requests' => 'Миний хүсэлт',
+ 'no' => 'Үгүй,',
+ 'no-imdb-id' => 'Бүх хүсэлтүүд нь IMDB дугаартай байх ёстой',
+ 'no-privileges' => 'Алдаа: Таны хүсэлтийг хүчингүй болгосон',
+ 'no-privileges-desc' => 'Хэрэв та энэ алдаа гэж үзэж байгаа бол ажилтнуудад хандана уу',
+ 'no-refunds' => 'Бон солилцох, дүүргэх, үр өгөөжийг эцэс болгох!
Үгүй',
+ 'pending' => 'Хүлээгдэж байна',
+ 'reason' => 'Шалтгаан',
+ 'reject' => 'Татгалзах',
+ 'report' => 'Хүсэлтийг мэдээлэх',
+ 'request' => 'Хүсэлт гаргах',
+ 'request-details' => 'Хүсэлт гарга',
+ 'requested-by' => 'Хүсэлтээр',
+ 'requests' => 'Хүсэлт',
+ 'required' => 'Шаардлагатай',
+ 'reset' => 'Дахин тохируулах',
+ 'reset-confirmation' => 'Та энэ хүсэлтийг дахин шинэчлэхийг хүсэж байна уу?',
+ 'reset-request' => 'Энэ хүсэлтийг дахин тохируулна уу',
+ 'reward' => 'Шагнал',
+ 'reward-desc' => 'Шагналын шагналыг хэр их хүсч байна вэ? Хамгийн багадаа 100 ВП',
+ 'reward-from' => 'Эхлээд',
+ 'title' => 'Гарчиг',
+ 'torrent-hash' => 'Torrent Hash',
+ 'total-bounty' => 'Нийт өгөөж',
+ 'type' => 'Төрөл',
+ 'unclaim' => 'Энэ хүсэлтийг хүчингүй болгох',
+ 'unfilled' => 'Дуусаагүй',
+ 'view-filled' => 'Дууг үзэх',
+ 'view-unfilled' => 'Үл үзэгдэх байдлыг харах',
+ 'vote' => 'Санал өгөх',
+ 'vote-that' => 'Энэ хүсэлтийг санал болгов',
+ 'voters' => 'Сонгогчид',
+ 'votes' => 'Үнэн',
+ 'yes' => 'Тиймээ',
];
diff --git a/lang/mn/rss.php b/lang/mn/rss.php
index ebd859b88..a327d8f09 100644
--- a/lang/mn/rss.php
+++ b/lang/mn/rss.php
@@ -12,19 +12,19 @@
*/
return [
- 'create' => 'Үүсгэх',
+ 'create' => 'Үүсгэх',
'create-private-feed' => 'Хувийн RSS Feed үүсгэх',
- 'create-public-feed' => 'Нийтийн RSS Feed үүсгэнэ',
- 'delete' => 'Устгах',
- 'edit' => 'Засах',
- 'edit-private-feed' => 'Хувийн RSS Feedыг засах',
- 'edit-public-feed' => 'Нийтийн RSS Feedыг засах',
- 'feed' => 'Feed байна',
- 'feeds' => 'Feeds',
- 'name' => 'Нэр',
- 'public' => 'Олон нийтийн',
- 'private' => 'Хувийн',
- 'rss' => 'RSS',
- 'rss-feed' => 'RSS Feed',
- 'type' => 'Төрөл',
+ 'create-public-feed' => 'Нийтийн RSS Feed үүсгэнэ',
+ 'delete' => 'Устгах',
+ 'edit' => 'Засах',
+ 'edit-private-feed' => 'Хувийн RSS Feedыг засах',
+ 'edit-public-feed' => 'Нийтийн RSS Feedыг засах',
+ 'feed' => 'Feed байна',
+ 'feeds' => 'Feeds',
+ 'name' => 'Нэр',
+ 'public' => 'Олон нийтийн',
+ 'private' => 'Хувийн',
+ 'rss' => 'RSS',
+ 'rss-feed' => 'RSS Feed',
+ 'type' => 'Төрөл',
];
diff --git a/lang/mn/staff.php b/lang/mn/staff.php
index 698c7d310..4f47fc72e 100644
--- a/lang/mn/staff.php
+++ b/lang/mn/staff.php
@@ -12,48 +12,48 @@
*/
return [
- 'audit-log' => 'Үйл ажиллагааны бүртгэл',
- 'articles' => 'Нийтлэл',
- 'applications' => 'Програмууд',
- 'bans-log' => 'Бүртгүүлэх',
- 'blocks' => 'Блок',
- 'bot' => 'Bot',
- 'bots' => 'Bots',
- 'chat' => 'Чатлах',
- 'config-manager' => 'Config менежер',
- 'dashboard' => 'Хянах самбар',
- 'failed-login-log' => 'Нэвтрэх Нэвтрээгүй',
- 'flush-ghost-peers' => 'Flush Ghost Peers',
- 'forums' => 'Форум',
- 'frontend' => 'Урд хэсэг',
- 'general-tools' => 'Ерөнхий хэрэгслүүд',
- 'groups' => 'Бүлгүүд',
- 'invites-log' => 'Лог хүлээн авах',
- 'laravel-log' => 'Лараоре лог',
- 'links' => 'Холбоосууд',
- 'logs' => 'Бүртгэл',
- 'mass-pm' => 'Mass PM',
- 'mass-validate-users' => 'Массивчлагдсан хэрэглэгчид',
- 'moderation' => 'Дунд зэрэг',
- 'pages' => 'Хуудаснууд',
- 'please-moderate' => 'Энэ Torrent!',
- 'polls' => 'Санал асуулга',
- 'reports-log' => 'Тайлан бичих',
- 'rss' => 'RSS',
- 'staff-dashboard' => 'Ажилтны Хяналтын самбар',
- 'torrent-categories' => 'Torrent Ангилалууд',
- 'torrent-moderation' => 'Torrent Moderation',
- 'torrent-tools' => 'Torrent Tools',
- 'torrent-types' => 'Torrent Types',
- 'torrents' => 'Торрент',
- 'user-gifting' => 'Хэрэглэгч бэлэглэх',
- 'user-notes' => 'Хэрэглэгчийн тэмдэглэл',
- 'user-search' => 'Хэрэглэгчийн Хайлт',
- 'user-tools' => 'Хэрэглэгчийн хэрэгсэл',
- 'warnings-log' => 'Анхааруулга',
- 'you-have' => 'Та байна',
+ 'audit-log' => 'Үйл ажиллагааны бүртгэл',
+ 'articles' => 'Нийтлэл',
+ 'applications' => 'Програмууд',
+ 'bans-log' => 'Бүртгүүлэх',
+ 'blocks' => 'Блок',
+ 'bot' => 'Bot',
+ 'bots' => 'Bots',
+ 'chat' => 'Чатлах',
+ 'config-manager' => 'Config менежер',
+ 'dashboard' => 'Хянах самбар',
+ 'failed-login-log' => 'Нэвтрэх Нэвтрээгүй',
+ 'flush-ghost-peers' => 'Flush Ghost Peers',
+ 'forums' => 'Форум',
+ 'frontend' => 'Урд хэсэг',
+ 'general-tools' => 'Ерөнхий хэрэгслүүд',
+ 'groups' => 'Бүлгүүд',
+ 'invites-log' => 'Лог хүлээн авах',
+ 'laravel-log' => 'Лараоре лог',
+ 'links' => 'Холбоосууд',
+ 'logs' => 'Бүртгэл',
+ 'mass-pm' => 'Mass PM',
+ 'mass-validate-users' => 'Массивчлагдсан хэрэглэгчид',
+ 'moderation' => 'Дунд зэрэг',
+ 'pages' => 'Хуудаснууд',
+ 'please-moderate' => 'Энэ Torrent!',
+ 'polls' => 'Санал асуулга',
+ 'reports-log' => 'Тайлан бичих',
+ 'rss' => 'RSS',
+ 'staff-dashboard' => 'Ажилтны Хяналтын самбар',
+ 'torrent-categories' => 'Torrent Ангилалууд',
+ 'torrent-moderation' => 'Torrent Moderation',
+ 'torrent-tools' => 'Torrent Tools',
+ 'torrent-types' => 'Torrent Types',
+ 'torrents' => 'Торрент',
+ 'user-gifting' => 'Хэрэглэгч бэлэглэх',
+ 'user-notes' => 'Хэрэглэгчийн тэмдэглэл',
+ 'user-search' => 'Хэрэглэгчийн Хайлт',
+ 'user-tools' => 'Хэрэглэгчийн хэрэгсэл',
+ 'warnings-log' => 'Анхааруулга',
+ 'you-have' => 'Та байна',
'possible-leech-cheaters' => 'Болгоомжтой хакерууд',
- 'chat-tools' => 'Чатын хэрэгсэл',
- 'flush-chat' => 'Зөөх Chatbox',
- 'seedboxes' => 'Бүртгэгдсэн Seedboxes',
+ 'chat-tools' => 'Чатын хэрэгсэл',
+ 'flush-chat' => 'Зөөх Chatbox',
+ 'seedboxes' => 'Бүртгэгдсэн Seedboxes',
];
diff --git a/lang/mn/stat.php b/lang/mn/stat.php
index e6557d32a..19c7e0e00 100644
--- a/lang/mn/stat.php
+++ b/lang/mn/stat.php
@@ -12,40 +12,40 @@
*/
return [
- 'by-count' => 'Count тоо',
- 'by-data' => 'Мэдээллийн дагуу',
- 'by-volume' => 'Эзлэхүүнээр',
- 'group' => 'Групп',
- 'groups' => 'Бүлгүүд',
- 'nerd-stats' => 'Nerd статистик',
- 'nerd-stats-desc' => 'Бид бүгд статистикт дуртай. Бидний олж мэдсэн цөөн хэдэн чухал зүйл байна',
- 'registration-date' => 'Бүртгэлийн өдөр',
- 'request-fulfilled' => 'Хүсэлт биелсэн',
- 'request-not-fulfilled' => 'Хүсэлт биелүүлэхгүй байх',
+ 'by-count' => 'Count тоо',
+ 'by-data' => 'Мэдээллийн дагуу',
+ 'by-volume' => 'Эзлэхүүнээр',
+ 'group' => 'Групп',
+ 'groups' => 'Бүлгүүд',
+ 'nerd-stats' => 'Nerd статистик',
+ 'nerd-stats-desc' => 'Бид бүгд статистикт дуртай. Бидний олж мэдсэн цөөн хэдэн чухал зүйл байна',
+ 'registration-date' => 'Бүртгэлийн өдөр',
+ 'request-fulfilled' => 'Хүсэлт биелсэн',
+ 'request-not-fulfilled' => 'Хүсэлт биелүүлэхгүй байх',
'request-pending-aproval' => 'Хүлээгдэж буй хүлээгдэж буй хүсэлт',
- 'select-category' => 'Доорх ангиллыг сонгоно уу',
- 'site-stats' => 'Сайтын статистик',
- 'stats' => 'Статус',
- 'stats-format' => 'Бүх статистик топ 100 форматаар үзүүлэв',
- 'top-bankers' => 'Топ Банкирууд',
- 'top-bountied' => 'Топ Bountied',
- 'top-completed' => 'Дууссан Топ',
- 'top-dead' => 'Топ үхсэн',
- 'top-downloaded' => 'Дээд Татаж авсан Торрент',
- 'top-downloaders' => 'Топ Татаж авах',
- 'top-dying' => 'Топ үхэх',
- 'top-leeched' => 'Топ Leeched',
- 'top-leechers' => 'Топ Leechers',
- 'top-seeded' => 'Топ үсэнд',
- 'top-seeding' => 'Топ үртэс',
- 'top-seeders' => 'Топ үхэрчид',
- 'top-seedsize' => 'Топ үрслэл',
- 'top-seedtime' => 'Топ Үрийн цаг',
- 'top-uploaders' => 'Топ байршуулагчид',
- 'total-download' => 'Нийт татан авалт',
- 'total-torrents' => 'Нийт дүн',
- 'total-traffic' => 'Нийт урсгал',
- 'total-upload' => 'Нийт байршуулалт',
- 'users-in-group' => 'Группын хэрэглэгчид',
- 'users-per-group' => 'Групп бүрт хэрэглэгчид',
+ 'select-category' => 'Доорх ангиллыг сонгоно уу',
+ 'site-stats' => 'Сайтын статистик',
+ 'stats' => 'Статус',
+ 'stats-format' => 'Бүх статистик топ 100 форматаар үзүүлэв',
+ 'top-bankers' => 'Топ Банкирууд',
+ 'top-bountied' => 'Топ Bountied',
+ 'top-completed' => 'Дууссан Топ',
+ 'top-dead' => 'Топ үхсэн',
+ 'top-downloaded' => 'Дээд Татаж авсан Торрент',
+ 'top-downloaders' => 'Топ Татаж авах',
+ 'top-dying' => 'Топ үхэх',
+ 'top-leeched' => 'Топ Leeched',
+ 'top-leechers' => 'Топ Leechers',
+ 'top-seeded' => 'Топ үсэнд',
+ 'top-seeding' => 'Топ үртэс',
+ 'top-seeders' => 'Топ үхэрчид',
+ 'top-seedsize' => 'Топ үрслэл',
+ 'top-seedtime' => 'Топ Үрийн цаг',
+ 'top-uploaders' => 'Топ байршуулагчид',
+ 'total-download' => 'Нийт татан авалт',
+ 'total-torrents' => 'Нийт дүн',
+ 'total-traffic' => 'Нийт урсгал',
+ 'total-upload' => 'Нийт байршуулалт',
+ 'users-in-group' => 'Группын хэрэглэгчид',
+ 'users-per-group' => 'Групп бүрт хэрэглэгчид',
];
diff --git a/lang/mn/torrent.php b/lang/mn/torrent.php
index 2cc147c6e..cbbf3aaa3 100644
--- a/lang/mn/torrent.php
+++ b/lang/mn/torrent.php
@@ -12,197 +12,197 @@
*/
return [
- 'activity' => 'Үйл ажиллагаа',
- 'age' => 'Нас',
- 'agent' => 'Агент',
- 'alive' => 'Амьд',
- 'announce-url' => 'URL-г зарлана уу',
- 'announce-url-desc' => 'Шинэ урсгал үүсгэх үед дээрх URL-ыг ашиглана уу. Хэрэв та сайтаас татаж авахгүйгээр өөрийн torrent-ийг ашиглахыг хүсвэл хувийн туг болон эх сурвалжийг дараах байдлаар байрлуулах хэрэгтэй болно',
- 'announce-url-desc-url' => 'Trouble-тэй юу? Манай гарын авлагыг үзнэ үү',
- 'announce-url-desc2' => 'TMDB болон IMDB бүх бичлэгт шаардлагатай байна! Энэ нь Posters / Backdrops болон ExtraInfo -г татаж авахад хэрэглэгддэг',
- 'approved' => 'Батлагдсан',
- 'audio' => 'Аудио',
- 'bon-tipped' => 'Бон дүнтэй байна',
- 'bookmark' => 'Хавчуурга',
- 'bookmarks' => 'Хавчуурга',
- 'bump' => 'Бөөн',
- 'cant-upload' => 'Алдаа: Таны байршуулах эрхийг идэвхгүй болгосон',
- 'cant-upload-desc' => 'Хэрэв та үүнийг буруу гэж бодож байгаа бол ажилтнуудтай холбоо барина уу',
- 'cards' => 'Карт',
- 'cards-view' => 'Torrent карт харах',
- 'categories' => 'Ангилалууд',
- 'category' => 'Ангилал',
- 'client' => 'Клиент',
- 'commited' => 'Захиалга өгсөн',
- 'completed' => 'Дууссан',
- 'completed_at' => 'Дууссан',
- 'completed-not-seeding' => 'Та энэ Татаж авч дууссан. Гэхдээ үүнийг илүү урт үржүүлэхгүй байна',
- 'created_at' => 'Үүсгэгдсэн',
- 'credited' => 'Итгэмжлэгдсэн',
- 'current' => 'Одоогийн',
- 'current-filters' => 'Одоогийн шүүлтүүрүүд',
- 'currently-leeching' => 'Одоогоор Leeching',
- 'currently-seeding' => 'Одоогоор тариалалт',
- 'dead-torrent' => 'Dead Torrent',
- 'dead-torrents' => 'Dead Torrents',
- 'delete-bookmark' => 'Энэ Хавчуургыг устгах',
- 'description' => 'Тодорхойлолт',
- 'discounts' => 'Хөнгөлөлт',
- 'double-upload' => 'Давхар байршуулалт',
- 'download-all' => 'Татаж авах бүх',
- 'download-check' => 'Чек шалгах',
- 'downloaded' => 'Татаж авсан',
- 'dying-torrent' => 'Үхэх Torrent',
- 'dying-torrents' => 'Үхэх цаг',
- 'encode-settings' => 'Encode Тохиргоо',
- 'estimated-ratio' => 'Татан авсны дараа тооцсон харьцаа',
- 'failed' => 'Амжилтгүй болсон',
- 'feature' => 'Онцлог',
- 'featured' => 'Онцлог',
- 'featured-desc' => 'Онцлох алдаа нь 100% Үнэгүй ба Давхар оруулах!',
- 'featured-until' => 'Энэ нь хүртэл Токио хүртэл байна',
- 'file' => 'Файл',
- 'filters' => 'Шүүлтүүрүүд',
- 'fl-tokens-left' => 'Чамд байна : Токенс үлдсэн',
- 'freeleech' => 'Freeleech',
- 'freeleech-token' => 'Freeleech Token',
- 'general' => 'Ерөнхий',
- 'genre' => 'Төрөл',
- 'global-double-upload' => 'Глобал Давхар оруулах',
- 'global-freeleech' => 'Глобал Freeleech',
- 'grant' => 'Буцалтгүй тусламж',
- 'greater-than' => 'Илүү',
- 'grouping' => 'Бүлгэм',
- 'groupings' => 'Бүлэг',
- 'grouping-categories' => 'Бүлгэмлэх ангилал',
+ 'activity' => 'Үйл ажиллагаа',
+ 'age' => 'Нас',
+ 'agent' => 'Агент',
+ 'alive' => 'Амьд',
+ 'announce-url' => 'URL-г зарлана уу',
+ 'announce-url-desc' => 'Шинэ урсгал үүсгэх үед дээрх URL-ыг ашиглана уу. Хэрэв та сайтаас татаж авахгүйгээр өөрийн torrent-ийг ашиглахыг хүсвэл хувийн туг болон эх сурвалжийг дараах байдлаар байрлуулах хэрэгтэй болно',
+ 'announce-url-desc-url' => 'Trouble-тэй юу? Манай гарын авлагыг үзнэ үү',
+ 'announce-url-desc2' => 'TMDB болон IMDB бүх бичлэгт шаардлагатай байна! Энэ нь Posters / Backdrops болон ExtraInfo -г татаж авахад хэрэглэгддэг',
+ 'approved' => 'Батлагдсан',
+ 'audio' => 'Аудио',
+ 'bon-tipped' => 'Бон дүнтэй байна',
+ 'bookmark' => 'Хавчуурга',
+ 'bookmarks' => 'Хавчуурга',
+ 'bump' => 'Бөөн',
+ 'cant-upload' => 'Алдаа: Таны байршуулах эрхийг идэвхгүй болгосон',
+ 'cant-upload-desc' => 'Хэрэв та үүнийг буруу гэж бодож байгаа бол ажилтнуудтай холбоо барина уу',
+ 'cards' => 'Карт',
+ 'cards-view' => 'Torrent карт харах',
+ 'categories' => 'Ангилалууд',
+ 'category' => 'Ангилал',
+ 'client' => 'Клиент',
+ 'commited' => 'Захиалга өгсөн',
+ 'completed' => 'Дууссан',
+ 'completed_at' => 'Дууссан',
+ 'completed-not-seeding' => 'Та энэ Татаж авч дууссан. Гэхдээ үүнийг илүү урт үржүүлэхгүй байна',
+ 'created_at' => 'Үүсгэгдсэн',
+ 'credited' => 'Итгэмжлэгдсэн',
+ 'current' => 'Одоогийн',
+ 'current-filters' => 'Одоогийн шүүлтүүрүүд',
+ 'currently-leeching' => 'Одоогоор Leeching',
+ 'currently-seeding' => 'Одоогоор тариалалт',
+ 'dead-torrent' => 'Dead Torrent',
+ 'dead-torrents' => 'Dead Torrents',
+ 'delete-bookmark' => 'Энэ Хавчуургыг устгах',
+ 'description' => 'Тодорхойлолт',
+ 'discounts' => 'Хөнгөлөлт',
+ 'double-upload' => 'Давхар байршуулалт',
+ 'download-all' => 'Татаж авах бүх',
+ 'download-check' => 'Чек шалгах',
+ 'downloaded' => 'Татаж авсан',
+ 'dying-torrent' => 'Үхэх Torrent',
+ 'dying-torrents' => 'Үхэх цаг',
+ 'encode-settings' => 'Encode Тохиргоо',
+ 'estimated-ratio' => 'Татан авсны дараа тооцсон харьцаа',
+ 'failed' => 'Амжилтгүй болсон',
+ 'feature' => 'Онцлог',
+ 'featured' => 'Онцлог',
+ 'featured-desc' => 'Онцлох алдаа нь 100% Үнэгүй ба Давхар оруулах!',
+ 'featured-until' => 'Энэ нь хүртэл Токио хүртэл байна',
+ 'file' => 'Файл',
+ 'filters' => 'Шүүлтүүрүүд',
+ 'fl-tokens-left' => 'Чамд байна : Токенс үлдсэн',
+ 'freeleech' => 'Freeleech',
+ 'freeleech-token' => 'Freeleech Token',
+ 'general' => 'Ерөнхий',
+ 'genre' => 'Төрөл',
+ 'global-double-upload' => 'Глобал Давхар оруулах',
+ 'global-freeleech' => 'Глобал Freeleech',
+ 'grant' => 'Буцалтгүй тусламж',
+ 'greater-than' => 'Илүү',
+ 'grouping' => 'Бүлгэм',
+ 'groupings' => 'Бүлэг',
+ 'grouping-categories' => 'Бүлгэмлэх ангилал',
'grouping-categories-desc' => 'Ямар ангилалд оруулахыг хүсч байна вэ?',
- 'grouping-results' => 'Бүлгийн үр дүн',
- 'groupings-view' => 'Бүлгүүд харах',
- 'have-completed' => 'Дууссан',
- 'have-downloaded' => 'Татаж авсан',
- 'have-not-completed' => 'Дуусгаагүй',
- 'have-not-downloaded' => 'Татаж авахгүй',
- 'health' => 'Эрүүл мэнд',
- 'history' => 'Түүх',
- 'hitrun' => 'H & R?',
- 'hit-and-runs' => 'Hit болон Run тоо',
- 'immune' => 'Дархлаа?',
- 'info' => 'Мэдээлэл',
- 'internal' => 'Дотоод',
- 'internal-release' => 'Дотоод хувилбар',
- 'last-seed-activity' => 'Сүүлийн үр үйл ажиллагаа',
- 'last-seeder' => 'Та бол хамгийн сүүлд үлдсэн тариачин! (татаж аваад 3 удаа татагдсан)',
- 'last-update' => 'Хамгийн сүүлийн шинэчлэлт',
- 'leave-tip' => 'Зөвлөгөө өгөх',
- 'leecher' => 'Leecher',
- 'leechers' => 'Луучид',
- 'leeching' => 'Leeching',
- 'left' => 'Зүүн талд',
- 'legendary-seeder' => 'Домогт тамирчин',
- 'legendary-torrent' => 'Домогт тийрэлтэт',
- 'list' => 'Жагсаалт',
- 'me' => 'Надад',
- 'media-info' => 'MediaInfo',
- 'media-info-parser' => 'MediaInfo Parser',
- 'media-info-paste' => 'MediaInfo-г энд буулгана уу',
- 'meta-desc' => 'Татаж авах: нэрийг хамгийн дээд хурдаар ав',
- 'moderation' => 'Дунд зэрэг',
- 'movies' => 'Кино',
- 'mvp' => 'MVP',
- 'my-active-torrents' => 'Миний идэвхтэй урсгал',
- 'name' => 'Нэр',
- 'no-bookmarks' => 'Хавчуурга байхгүй байна.',
- 'no-discounts' => 'Одоогийн байдлаар хөнгөлөлт байхгүй байна',
- 'no-meta' => 'Мета өгөгдөл олдсонгүй',
- 'no-privileges' => 'Та энэ файлыг татаж авах боломжгүй байна. Дэлгэрэнгүйг доорх хаягаар орж үзнэ үү',
- 'no-privileges-desc' => 'Дээрх амжилтгүй үр дүнг татаж авах товчийг дарна уу',
- 'not-completed' => 'Татаж авах эхэлсэн боловч хэзээ ч дуусаагүй',
- 'not-downloaded' => 'Татаж авахгүй',
- 'old-torrent' => 'Хуучин урсгал',
- 'optional' => 'Нэмэлт',
- 'original-output' => 'Анхны гаралтыг харуулах / нуух',
- 'participant' => 'Оролцогчид',
- 'passed' => 'Дамжин өнгөрөх',
- 'peers' => 'Бүгд',
- 'pending' => 'Хүлээгдэж байна',
- 'personal-freeleech' => 'Хувийн Freeleech',
- 'poster' => 'Зурагт хуудас',
- 'poster-view' => 'Зурагт хуудас харах',
- 'posters' => 'Зурагт хуудас',
- 'prewarn' => 'Урьдчилан сэргийлэх үү?',
- 'progress' => 'Ажиллагаа',
- 'quick-comment' => 'Түргэн тайлбар',
- 'quick-tip' => 'Түргэн хугацааны дүн',
- 'rated' => 'Үнэлгээ',
- 'rating' => 'Үнэлгээ',
- 'ready' => 'Энэ файлыг татаж авахад бэлэн байна',
- 'rejected' => 'Татгалзсан',
- 'released' => 'Гарсан',
- 'remaining' => 'Үлдсэн',
- 'request-reseed' => 'Дахин хүсэлт тавив',
- 'requires-reseed' => 'Дахин нэхэмжилж байна',
- 'resurrections' => 'Амилуулалтууд',
- 'revoke' => 'Уучлаарай',
- 'rss' => 'RSS',
- 'runtime' => 'Ажиллах цаг',
- 'satisfied_in' => 'Сэтгэл хангалуун байна',
- 'say-thanks' => 'Талархал хэлж, та нар аль болох удаан үрийн анхаарна уу',
- 'sd-content' => 'SD агуулга',
- 'search' => 'Хайлт',
- 'seed-time' => 'Үрийн хугацаа',
- 'seeder' => 'Суулчид',
- 'seeders' => 'Суулчид',
- 'seeding' => 'Үр тариа',
- 'seedsize' => 'Үр тариа',
- 'seedtime' => 'Үр тариа',
- 'short-completed' => 'C',
- 'short-leechs' => 'L',
- 'short-seeds' => 'S',
- 'show-files' => 'Файлуудыг харуулах',
- 'similar' => 'Similar Torrents',
- 'size' => 'Хэмжээ',
- 'special' => 'Онцгой',
- 'special-freeleech' => 'Тусгай Freeleech',
- 'started' => 'Эхлээд',
- 'status' => 'Статус',
- 'statistics' => 'Статистик тоо',
- 'stats' => 'Статус',
- 'sticky' => 'Наалттай',
- 'stream-optimized' => 'Дамжуулалт оновчтой болсон',
- 'subtitle' => 'Дэд гарчиг',
- 'team-player' => 'Багийн тоглогч',
- 'thank' => 'Баярлалаа',
- 'thanked' => 'Баярлалаа',
- 'thanks' => 'Баярлалаа',
- 'thanks-given' => 'Танд баярлалаа',
- 'times' => 'Таймс',
- 'tip-jar' => 'Зөвлөгөө өгөх сав',
- 'title' => 'Гарчиг',
- 'titles' => 'Гарчиг',
- 'top-completed' => 'Топ дууссан',
- 'top-dead' => 'Топ үхсэн',
- 'top-dying' => 'Топ үхэх',
- 'top-leeched' => 'Топ жийргэвч',
- 'top-seeded' => 'Топ үрийн',
- 'torrent' => 'Torrent',
- 'torrent-request' => 'Torrent хүсэлт',
- 'torrent-tips' => 'Нийтдээ : нийт BON байршуулагч руу чиглүүлсэн бөгөөд үүнд : хэрэглэгч таных байна',
- 'torrent-tips-desc' => 'Энэ нь таны урамшууллын цэгээс хасагдах болно',
- 'torrents' => 'Торрент',
- 'trailer' => 'Чиргүүлийг харах',
- 'type' => 'Төрөл',
- 'types' => 'Төрөл',
- 'unbookmark' => 'Номын дэвтэргүй',
- 'unsatisfieds' => 'Сэтгэл ханамжгүй байна',
- 'unsticky' => 'Наалтгүй байна',
- 'updated' => 'Шинэчлэгдсэн',
- 'updated_at' => 'Дээр шинэчилсэн',
- 'uploaded' => 'Байршуулсан байна',
- 'uploaded-by' => 'By',
- 'uploader' => 'Байршуулагч',
- 'use-fl-token' => 'А Freeleech Token ашиглах',
- 'video' => 'Видео',
- 'view-more' => 'Илүү ихийг үзэх',
- 'view-trailer' => 'Чиргүүлийг харах',
- 'votes' => 'Үнэн',
+ 'grouping-results' => 'Бүлгийн үр дүн',
+ 'groupings-view' => 'Бүлгүүд харах',
+ 'have-completed' => 'Дууссан',
+ 'have-downloaded' => 'Татаж авсан',
+ 'have-not-completed' => 'Дуусгаагүй',
+ 'have-not-downloaded' => 'Татаж авахгүй',
+ 'health' => 'Эрүүл мэнд',
+ 'history' => 'Түүх',
+ 'hitrun' => 'H & R?',
+ 'hit-and-runs' => 'Hit болон Run тоо',
+ 'immune' => 'Дархлаа?',
+ 'info' => 'Мэдээлэл',
+ 'internal' => 'Дотоод',
+ 'internal-release' => 'Дотоод хувилбар',
+ 'last-seed-activity' => 'Сүүлийн үр үйл ажиллагаа',
+ 'last-seeder' => 'Та бол хамгийн сүүлд үлдсэн тариачин! (татаж аваад 3 удаа татагдсан)',
+ 'last-update' => 'Хамгийн сүүлийн шинэчлэлт',
+ 'leave-tip' => 'Зөвлөгөө өгөх',
+ 'leecher' => 'Leecher',
+ 'leechers' => 'Луучид',
+ 'leeching' => 'Leeching',
+ 'left' => 'Зүүн талд',
+ 'legendary-seeder' => 'Домогт тамирчин',
+ 'legendary-torrent' => 'Домогт тийрэлтэт',
+ 'list' => 'Жагсаалт',
+ 'me' => 'Надад',
+ 'media-info' => 'MediaInfo',
+ 'media-info-parser' => 'MediaInfo Parser',
+ 'media-info-paste' => 'MediaInfo-г энд буулгана уу',
+ 'meta-desc' => 'Татаж авах: нэрийг хамгийн дээд хурдаар ав',
+ 'moderation' => 'Дунд зэрэг',
+ 'movies' => 'Кино',
+ 'mvp' => 'MVP',
+ 'my-active-torrents' => 'Миний идэвхтэй урсгал',
+ 'name' => 'Нэр',
+ 'no-bookmarks' => 'Хавчуурга байхгүй байна.',
+ 'no-discounts' => 'Одоогийн байдлаар хөнгөлөлт байхгүй байна',
+ 'no-meta' => 'Мета өгөгдөл олдсонгүй',
+ 'no-privileges' => 'Та энэ файлыг татаж авах боломжгүй байна. Дэлгэрэнгүйг доорх хаягаар орж үзнэ үү',
+ 'no-privileges-desc' => 'Дээрх амжилтгүй үр дүнг татаж авах товчийг дарна уу',
+ 'not-completed' => 'Татаж авах эхэлсэн боловч хэзээ ч дуусаагүй',
+ 'not-downloaded' => 'Татаж авахгүй',
+ 'old-torrent' => 'Хуучин урсгал',
+ 'optional' => 'Нэмэлт',
+ 'original-output' => 'Анхны гаралтыг харуулах / нуух',
+ 'participant' => 'Оролцогчид',
+ 'passed' => 'Дамжин өнгөрөх',
+ 'peers' => 'Бүгд',
+ 'pending' => 'Хүлээгдэж байна',
+ 'personal-freeleech' => 'Хувийн Freeleech',
+ 'poster' => 'Зурагт хуудас',
+ 'poster-view' => 'Зурагт хуудас харах',
+ 'posters' => 'Зурагт хуудас',
+ 'prewarn' => 'Урьдчилан сэргийлэх үү?',
+ 'progress' => 'Ажиллагаа',
+ 'quick-comment' => 'Түргэн тайлбар',
+ 'quick-tip' => 'Түргэн хугацааны дүн',
+ 'rated' => 'Үнэлгээ',
+ 'rating' => 'Үнэлгээ',
+ 'ready' => 'Энэ файлыг татаж авахад бэлэн байна',
+ 'rejected' => 'Татгалзсан',
+ 'released' => 'Гарсан',
+ 'remaining' => 'Үлдсэн',
+ 'request-reseed' => 'Дахин хүсэлт тавив',
+ 'requires-reseed' => 'Дахин нэхэмжилж байна',
+ 'resurrections' => 'Амилуулалтууд',
+ 'revoke' => 'Уучлаарай',
+ 'rss' => 'RSS',
+ 'runtime' => 'Ажиллах цаг',
+ 'satisfied_in' => 'Сэтгэл хангалуун байна',
+ 'say-thanks' => 'Талархал хэлж, та нар аль болох удаан үрийн анхаарна уу',
+ 'sd-content' => 'SD агуулга',
+ 'search' => 'Хайлт',
+ 'seed-time' => 'Үрийн хугацаа',
+ 'seeder' => 'Суулчид',
+ 'seeders' => 'Суулчид',
+ 'seeding' => 'Үр тариа',
+ 'seedsize' => 'Үр тариа',
+ 'seedtime' => 'Үр тариа',
+ 'short-completed' => 'C',
+ 'short-leechs' => 'L',
+ 'short-seeds' => 'S',
+ 'show-files' => 'Файлуудыг харуулах',
+ 'similar' => 'Similar Torrents',
+ 'size' => 'Хэмжээ',
+ 'special' => 'Онцгой',
+ 'special-freeleech' => 'Тусгай Freeleech',
+ 'started' => 'Эхлээд',
+ 'status' => 'Статус',
+ 'statistics' => 'Статистик тоо',
+ 'stats' => 'Статус',
+ 'sticky' => 'Наалттай',
+ 'stream-optimized' => 'Дамжуулалт оновчтой болсон',
+ 'subtitle' => 'Дэд гарчиг',
+ 'team-player' => 'Багийн тоглогч',
+ 'thank' => 'Баярлалаа',
+ 'thanked' => 'Баярлалаа',
+ 'thanks' => 'Баярлалаа',
+ 'thanks-given' => 'Танд баярлалаа',
+ 'times' => 'Таймс',
+ 'tip-jar' => 'Зөвлөгөө өгөх сав',
+ 'title' => 'Гарчиг',
+ 'titles' => 'Гарчиг',
+ 'top-completed' => 'Топ дууссан',
+ 'top-dead' => 'Топ үхсэн',
+ 'top-dying' => 'Топ үхэх',
+ 'top-leeched' => 'Топ жийргэвч',
+ 'top-seeded' => 'Топ үрийн',
+ 'torrent' => 'Torrent',
+ 'torrent-request' => 'Torrent хүсэлт',
+ 'torrent-tips' => 'Нийтдээ : нийт BON байршуулагч руу чиглүүлсэн бөгөөд үүнд : хэрэглэгч таных байна',
+ 'torrent-tips-desc' => 'Энэ нь таны урамшууллын цэгээс хасагдах болно',
+ 'torrents' => 'Торрент',
+ 'trailer' => 'Чиргүүлийг харах',
+ 'type' => 'Төрөл',
+ 'types' => 'Төрөл',
+ 'unbookmark' => 'Номын дэвтэргүй',
+ 'unsatisfieds' => 'Сэтгэл ханамжгүй байна',
+ 'unsticky' => 'Наалтгүй байна',
+ 'updated' => 'Шинэчлэгдсэн',
+ 'updated_at' => 'Дээр шинэчилсэн',
+ 'uploaded' => 'Байршуулсан байна',
+ 'uploaded-by' => 'By',
+ 'uploader' => 'Байршуулагч',
+ 'use-fl-token' => 'А Freeleech Token ашиглах',
+ 'video' => 'Видео',
+ 'view-more' => 'Илүү ихийг үзэх',
+ 'view-trailer' => 'Чиргүүлийг харах',
+ 'votes' => 'Үнэн',
];
diff --git a/lang/mn/user.php b/lang/mn/user.php
index ef1a71c3d..bfd9c5a1d 100644
--- a/lang/mn/user.php
+++ b/lang/mn/user.php
@@ -12,316 +12,316 @@
*/
return [
- 'about' => 'Тухай',
- 'about-me' => 'Миний тухай',
- 'accepted-at' => 'Хүлээн зөвшөөрсөн',
- 'accepted-by' => 'Хүлээн зөвшөөрсөн',
- 'account-notification' => 'Дансны мэдэгдлийн тохиргоо',
- 'account-notification-follow' => 'Хэрэглэгч таны акаунтыг дагах үед мэдэгдэл хүлээн авна',
- 'account-notification-unfollow' => 'Хэрэглэгч таны данс нээгдэх үед мэдэгдэл хүлээн авна',
- 'account-notification-help' => 'Өөрийн акаунттай холбоотой мэдэгдлүүдийг хянах. Хэрэв та ямар нэгэн бүлгүүд таны акаунттай холбоотой мэдэгдэл илгээх эсвэл Мэдэгдэлийг идэвхгүй болгохыг зөвшөөрөхгүй бол эдгээр тохиргоог өөрчлөх боломжтой',
- 'account-settings' => 'Акаунтын тохиргоо',
- 'achievement-privacy' => 'Амжилтын тохиргоо',
- 'achievement-privacy-list' => 'Хэрэглэгчид таны ололтуудын жагсаалтыг үзэхийг зөвшөөрөх',
- 'achievement-help' => 'Өөрийн профайлд хандах эрхтэй группүүдтэй холбоотой тодорхой амжилтанд хүрэх мэдээллийг хуваалцах. Хэрэв та ямар ч бүлгүүд олсон амжилтанд нь хандах эсвэл Хувийн хэвээр очихыг зөвшөөрөхгүй бол эдгээр тохиргоог өөрчлөх боломжтой',
- 'achievements' => 'Ололт амжилтууд',
- 'active' => 'Идэвхтэй байна',
- 'active-table' => 'Миний идэвхитэй хүснэгт',
- 'active-torrents' => 'Идэвхтэй байгаа',
- 'active-warning' => 'Идэвхтэй сануулга',
- 'active-warnings' => 'Идэвхтэй сэрэмжлүүлэг',
- 'add-seedbox' => 'Seedbox нэм',
- 'all-torrents' => 'Бүх гүйлгээ',
- 'article-comments' => 'Сэтгэгдэл бичих',
- 'avatar' => 'Хөрөг',
- 'avg-seedtime' => 'Үрийн дундаж',
- 'badges' => 'Тэмдэглэл',
- 'ban' => 'Хэрэглэгчийг хориглох',
- 'ban-log' => 'Бан бүртгэл',
- 'become-hidden' => 'Нууцлагдсан байх',
- 'become-visible' => 'Харагдах байдал',
- 'bon' => 'Бон',
- 'bon-notification' => 'БОН Мэдэгдлийн тохиргоо',
- 'bon-notification-gift' => 'Хэрэглэгчийн бэлгийг өгөх үед мэдэгдэл хүлээн авна уу',
- 'bon-notification-help' => 'Бон гүйлгээний талаар мэдэгдэл илгээж буйг хянах. Эдгээр тохиргоонууд нь та ямар ч бүлэг Bon талаар мэдэгдэл илгээх боломж байхгүй бол, эсвэл өөрчлөгдөж дарагдан бичигдэж байгаа та Мэдэгдэл идэвхгүй болгосон бол',
- 'bookmarks' => 'Хавчуурга',
- 'bounty-given' => 'Баян өгөгдсөн',
- 'bounty-received' => 'Баялгийн хүлээн авсан',
- 'can-chat' => 'Чатлах боломжтой',
- 'can-comment' => 'Сэтгэгдэл бичих боломжтой',
- 'can-download' => 'Татаж авах боломжтой',
- 'can-invite' => 'Надад урьж болно',
- 'can-request' => 'Хүсэлт гаргаж болно',
- 'can-upload' => 'Байршуулах боломжтой',
- 'certified-banker' => 'Мэргэшсэн банкир',
- 'certified-banker-desc' => 'Банкинд 50,000 Эсвэл илүү Бон',
- 'certified-downloader' => 'Мэргэшсэн Татаж авах',
- 'certified-downloader-desc' => '100 буюу түүнээс олон удаа татаж авсан!',
- 'certified-seeder' => 'Мэргэшсэн Seeder',
- 'certified-seeder-desc' => '150 эсвэл түүнээс олон удаа цацах',
- 'change-email' => 'Имэйл өөрчлөх',
- 'change-email-help' => 'Та имэйлээ өөрчилсний дараа та өөрийн акаунтыг дахин баталгаажуулах шаардлагатай болно',
- 'change-password' => 'Нууц үг өөрчлөх',
- 'change-password-help' => 'Та нууц үгээ өөрчилсний дараа дахин нэвтрэх хэрэгтэй',
- 'client-ip-address' => 'Хэрэглэгчийн IP хаяг',
- 'code' => 'Код',
- 'comments' => 'Сэтгэгдэл',
- 'created-on' => 'Үүсгэсэн',
- 'credited-download' => 'Баталгаат татаж авах',
- 'credited-upload' => 'Баталгаат засвар оруулах',
- 'current-password' => 'Одоогын Нууц Үг',
- 'custom-title' => 'Гаалийн нэр',
- 'delete' => 'Хэрэглэгчийг устгах',
- 'disable-notifications' => 'Мэдэгдэл идэвхгүй болгох',
- 'disclaimer' => 'Disclaimer',
- 'disclaimer-info' => 'Бид анхдагчаар ихэнх хэрэглэгчидтэй адил IP хаягуудыг бүртгэдэггүй. Доор доор байгаа таны seedbox IP-г нэмснээр та доорх IP-г битгий хадгалаарай гэж найдаж байна.',
- 'disclaimer-info-bordered' => 'Нэмэгдсэн Seedbox IPs нь доор дурдсан IPS-уудаас үр цацагдсан өндөр хурдны урсгалыг үүсгэх болно',
- 'download-bon' => 'BON Дэлгүүрээс хасагдсан',
- 'download-recorded' => 'Татаж авсан бичлэг',
- 'download-true' => 'Үнэн Татаж авах',
- 'downloads' => 'Татаж авах',
- 'edit' => 'Хэрэглэгчийг засварлах',
- 'edit-profile' => 'Засварлах Хувийн мэдээллийг vзэх',
- 'enable-notifications' => 'Мэдэгдэл идэвхжүүлэх',
- 'expired' => 'Хугацаа дууссан',
- 'expires-on' => 'Дуусах',
- 'extra' => 'Нэмэлт',
- 'filled-request' => 'Filled Members Гуйцэтгэл',
- 'follow' => 'Дагаж байна',
- 'follower-privacy' => 'Нийлүүлэгчийн тохиргоо',
- 'follower-privacy-list' => 'Хэрэглэгчидийг таны дагагчдын жагсаалтыг харахыг зөвшөөрөх',
- 'follower-help' => 'Өөрийн профайлд хандах эрхтэй группүүдтэй тусгайлсан дагалдагчтай холбоотой мэдээллийг хуваалцаж бай. Хэрэв та ямар нэгэн бүлгүүд таны дагалдагчид эсвэл Go Private рүү нэвтрэхийг зөвшөөрөхгүй бол эдгээр тохиргоог өөрчлөх боломжтой',
- 'followers' => 'Дагагчид',
- 'following-notification' => 'Хэрэглэгчийн мэдэгдлийн тохиргоо',
- 'following-notification-upload' => 'Дараачийн хэрэглэгч рүү урсгал оруулах үед мэдэгдэл хүлээн авах',
- 'following-notification-help' => 'Хэрэглэгчийн сайтын үйл ажиллагааг дагалдсан мэдэгдлүүдийг хянах. Хэрэв та ямар нэгэн бүлгүүд хэрэглэгчидэд мэдэгдэл илгээж, Мэдэгдэл өгөхийг идэвхгүй болгохыг зөвшөөрөхгүй бол эдгээр тохиргоог өөрчлөх боломжтой',
- 'formats-are-supported' => ': форматууд дэмжигддэг',
- 'forum-notification' => 'Чуулганы мэдэгдлийн тохиргоо',
- 'forum-notification-topic' => 'Таны эхлүүлсэн сэдэв шинэ бичлэг хүлээн авмагц мэдэгдэл хүлээн авна',
- 'forum-notification-help' => 'Чуулганы үйл ажиллагаатай холбоотой ямар мэдэгдэл илгээж байгааг хянах. Хэрэв та форумын үйл ажиллагаатай холбоотой мэдэгдлийг ямар ч бүлэг илгээхийг зөвшөөрөхгүй эсвэл Мэдэгдэлийг идэвхгүй болгох тохиолдолд эдгээр тохиргоог өөрчлөх боломжтой',
- 'forum-privacy' => 'Форумын тохиргоо',
- 'forum-privacy-post' => 'Хэрэглэгчдэд өөрийн байрлуулсан форумын жагсаалтыг харахыг зөвшөөрөх',
- 'forum-privacy-topic' => 'Хэрэглэгчидээ эхлүүлсэн форумын сэдвүүдийн жагсаалтыг үзэхийг хэрэглэгчид зөвшөөрөх',
- 'forum-help' => 'Форумтай холбоотой статистик мэдээллийг хуваалцах, таны профайлд нэвтрэх эрхтэй группүүдтэй хуваалцах. Хэрэв та ямар ч бүлгүүд таны форумын холбоотой статистик болон мэдээлэл рүү нэвтрэх эсвэл Go Private гэсэн хүмүүст нэвтрэхийг зөвшөөрөхгүй бол эдгээр тохиргоог өөрчлөх боломжтой',
- 'forum-signature' => 'Чуулганы гарын үсэг',
- 'forums' => 'Форум',
- 'general' => 'Ерөнхий',
- 'general-settings' => 'Ерөнхий Тохиргоо',
- 'gift-given' => 'Бэлэглэсэн бэлэг',
- 'gift-received' => 'Хүлээн авсан бэлэг',
- 'go-public' => 'Нийтэд хандана уу',
- 'go-private' => 'Хувийн аялал',
- 'history' => 'Түүх',
- 'history-table' => 'Миний түүх Хүснэгт',
- 'hit-n-runs' => 'Hit болон Runs',
- 'hit-n-runs-count' => 'Гарах ба гүйх (Бүх цаг)',
- 'hit-n-runs-history' => 'Torrent Hit болон Run History',
- 'image' => 'Зураг',
- 'important' => 'Чухал',
- 'important-info' => 'Чухал мэдээлэл',
- 'information' => 'Мэдээлэл',
- 'invite-friend' => 'Найзаа урих (Имэйл + Шаардлагатай зурвас)',
- 'invite-tree' => 'Модыг урих',
- 'invites' => 'Урьж байна',
- 'invites-banned' => 'Алдаа: Таны урилга нь тахир дутуу болсон',
- 'invites-banned-desc' => 'Хэрэв та үүнийг мэдэж байгаа бол энэ алдаа гэж бодож байвал ажилтнуудад хандана уу!',
- 'invites-count' => 'Танд: тоолох Токенуудыг урь',
- 'invites-disabled' => 'Анхаар: Хөгжлийн бэрхшээлтэй хүмүүсийг урих нь бүртгэлийг нээхээс урьдаг!',
- 'invites-disabled-desc' => 'Буцаж ирнэ үү!',
- 'invites-rules' => '- Зөвхөн таньдаг, итгэлтэй хүмүүсийг урь.
- Та урьсан хүмүүстээ хариуцлага хүлээх болно.
- Өөрийгөө урихгүй бол уригдсан хэрэглэгч бүрийг шалгана уу.
- Худалдаж авах эсвэл борлуулахгүй байх.
- Хэрэв та урьсан хүн хууран мэхлэх, худалдааны данс эсвэл худалдах, худалдан авах урилга авбал та анхааруулах болно.
',
- 'invites-send' => 'Илгээх',
- 'last-login' => 'Сүүлчийн Нэвтрэх',
- 'locked' => 'Түгжигдсэн',
- 'locked-achievements' => 'Хангалттай амжилтууд',
- 'member-since' => 'Оноос хойш',
- 'members-desc' => 'Бүртгэгдсэн хэрэглэгчдийн жагсаалт: бүх бүлгүүдтэй гарчигтай. Хэрэглэгчийг одоо олох.',
- 'mention-notification' => '@ Зөвлөмжийн Тохиргооны Тохиргоо',
+ 'about' => 'Тухай',
+ 'about-me' => 'Миний тухай',
+ 'accepted-at' => 'Хүлээн зөвшөөрсөн',
+ 'accepted-by' => 'Хүлээн зөвшөөрсөн',
+ 'account-notification' => 'Дансны мэдэгдлийн тохиргоо',
+ 'account-notification-follow' => 'Хэрэглэгч таны акаунтыг дагах үед мэдэгдэл хүлээн авна',
+ 'account-notification-unfollow' => 'Хэрэглэгч таны данс нээгдэх үед мэдэгдэл хүлээн авна',
+ 'account-notification-help' => 'Өөрийн акаунттай холбоотой мэдэгдлүүдийг хянах. Хэрэв та ямар нэгэн бүлгүүд таны акаунттай холбоотой мэдэгдэл илгээх эсвэл Мэдэгдэлийг идэвхгүй болгохыг зөвшөөрөхгүй бол эдгээр тохиргоог өөрчлөх боломжтой',
+ 'account-settings' => 'Акаунтын тохиргоо',
+ 'achievement-privacy' => 'Амжилтын тохиргоо',
+ 'achievement-privacy-list' => 'Хэрэглэгчид таны ололтуудын жагсаалтыг үзэхийг зөвшөөрөх',
+ 'achievement-help' => 'Өөрийн профайлд хандах эрхтэй группүүдтэй холбоотой тодорхой амжилтанд хүрэх мэдээллийг хуваалцах. Хэрэв та ямар ч бүлгүүд олсон амжилтанд нь хандах эсвэл Хувийн хэвээр очихыг зөвшөөрөхгүй бол эдгээр тохиргоог өөрчлөх боломжтой',
+ 'achievements' => 'Ололт амжилтууд',
+ 'active' => 'Идэвхтэй байна',
+ 'active-table' => 'Миний идэвхитэй хүснэгт',
+ 'active-torrents' => 'Идэвхтэй байгаа',
+ 'active-warning' => 'Идэвхтэй сануулга',
+ 'active-warnings' => 'Идэвхтэй сэрэмжлүүлэг',
+ 'add-seedbox' => 'Seedbox нэм',
+ 'all-torrents' => 'Бүх гүйлгээ',
+ 'article-comments' => 'Сэтгэгдэл бичих',
+ 'avatar' => 'Хөрөг',
+ 'avg-seedtime' => 'Үрийн дундаж',
+ 'badges' => 'Тэмдэглэл',
+ 'ban' => 'Хэрэглэгчийг хориглох',
+ 'ban-log' => 'Бан бүртгэл',
+ 'become-hidden' => 'Нууцлагдсан байх',
+ 'become-visible' => 'Харагдах байдал',
+ 'bon' => 'Бон',
+ 'bon-notification' => 'БОН Мэдэгдлийн тохиргоо',
+ 'bon-notification-gift' => 'Хэрэглэгчийн бэлгийг өгөх үед мэдэгдэл хүлээн авна уу',
+ 'bon-notification-help' => 'Бон гүйлгээний талаар мэдэгдэл илгээж буйг хянах. Эдгээр тохиргоонууд нь та ямар ч бүлэг Bon талаар мэдэгдэл илгээх боломж байхгүй бол, эсвэл өөрчлөгдөж дарагдан бичигдэж байгаа та Мэдэгдэл идэвхгүй болгосон бол',
+ 'bookmarks' => 'Хавчуурга',
+ 'bounty-given' => 'Баян өгөгдсөн',
+ 'bounty-received' => 'Баялгийн хүлээн авсан',
+ 'can-chat' => 'Чатлах боломжтой',
+ 'can-comment' => 'Сэтгэгдэл бичих боломжтой',
+ 'can-download' => 'Татаж авах боломжтой',
+ 'can-invite' => 'Надад урьж болно',
+ 'can-request' => 'Хүсэлт гаргаж болно',
+ 'can-upload' => 'Байршуулах боломжтой',
+ 'certified-banker' => 'Мэргэшсэн банкир',
+ 'certified-banker-desc' => 'Банкинд 50,000 Эсвэл илүү Бон',
+ 'certified-downloader' => 'Мэргэшсэн Татаж авах',
+ 'certified-downloader-desc' => '100 буюу түүнээс олон удаа татаж авсан!',
+ 'certified-seeder' => 'Мэргэшсэн Seeder',
+ 'certified-seeder-desc' => '150 эсвэл түүнээс олон удаа цацах',
+ 'change-email' => 'Имэйл өөрчлөх',
+ 'change-email-help' => 'Та имэйлээ өөрчилсний дараа та өөрийн акаунтыг дахин баталгаажуулах шаардлагатай болно',
+ 'change-password' => 'Нууц үг өөрчлөх',
+ 'change-password-help' => 'Та нууц үгээ өөрчилсний дараа дахин нэвтрэх хэрэгтэй',
+ 'client-ip-address' => 'Хэрэглэгчийн IP хаяг',
+ 'code' => 'Код',
+ 'comments' => 'Сэтгэгдэл',
+ 'created-on' => 'Үүсгэсэн',
+ 'credited-download' => 'Баталгаат татаж авах',
+ 'credited-upload' => 'Баталгаат засвар оруулах',
+ 'current-password' => 'Одоогын Нууц Үг',
+ 'custom-title' => 'Гаалийн нэр',
+ 'delete' => 'Хэрэглэгчийг устгах',
+ 'disable-notifications' => 'Мэдэгдэл идэвхгүй болгох',
+ 'disclaimer' => 'Disclaimer',
+ 'disclaimer-info' => 'Бид анхдагчаар ихэнх хэрэглэгчидтэй адил IP хаягуудыг бүртгэдэггүй. Доор доор байгаа таны seedbox IP-г нэмснээр та доорх IP-г битгий хадгалаарай гэж найдаж байна.',
+ 'disclaimer-info-bordered' => 'Нэмэгдсэн Seedbox IPs нь доор дурдсан IPS-уудаас үр цацагдсан өндөр хурдны урсгалыг үүсгэх болно',
+ 'download-bon' => 'BON Дэлгүүрээс хасагдсан',
+ 'download-recorded' => 'Татаж авсан бичлэг',
+ 'download-true' => 'Үнэн Татаж авах',
+ 'downloads' => 'Татаж авах',
+ 'edit' => 'Хэрэглэгчийг засварлах',
+ 'edit-profile' => 'Засварлах Хувийн мэдээллийг vзэх',
+ 'enable-notifications' => 'Мэдэгдэл идэвхжүүлэх',
+ 'expired' => 'Хугацаа дууссан',
+ 'expires-on' => 'Дуусах',
+ 'extra' => 'Нэмэлт',
+ 'filled-request' => 'Filled Members Гуйцэтгэл',
+ 'follow' => 'Дагаж байна',
+ 'follower-privacy' => 'Нийлүүлэгчийн тохиргоо',
+ 'follower-privacy-list' => 'Хэрэглэгчидийг таны дагагчдын жагсаалтыг харахыг зөвшөөрөх',
+ 'follower-help' => 'Өөрийн профайлд хандах эрхтэй группүүдтэй тусгайлсан дагалдагчтай холбоотой мэдээллийг хуваалцаж бай. Хэрэв та ямар нэгэн бүлгүүд таны дагалдагчид эсвэл Go Private рүү нэвтрэхийг зөвшөөрөхгүй бол эдгээр тохиргоог өөрчлөх боломжтой',
+ 'followers' => 'Дагагчид',
+ 'following-notification' => 'Хэрэглэгчийн мэдэгдлийн тохиргоо',
+ 'following-notification-upload' => 'Дараачийн хэрэглэгч рүү урсгал оруулах үед мэдэгдэл хүлээн авах',
+ 'following-notification-help' => 'Хэрэглэгчийн сайтын үйл ажиллагааг дагалдсан мэдэгдлүүдийг хянах. Хэрэв та ямар нэгэн бүлгүүд хэрэглэгчидэд мэдэгдэл илгээж, Мэдэгдэл өгөхийг идэвхгүй болгохыг зөвшөөрөхгүй бол эдгээр тохиргоог өөрчлөх боломжтой',
+ 'formats-are-supported' => ': форматууд дэмжигддэг',
+ 'forum-notification' => 'Чуулганы мэдэгдлийн тохиргоо',
+ 'forum-notification-topic' => 'Таны эхлүүлсэн сэдэв шинэ бичлэг хүлээн авмагц мэдэгдэл хүлээн авна',
+ 'forum-notification-help' => 'Чуулганы үйл ажиллагаатай холбоотой ямар мэдэгдэл илгээж байгааг хянах. Хэрэв та форумын үйл ажиллагаатай холбоотой мэдэгдлийг ямар ч бүлэг илгээхийг зөвшөөрөхгүй эсвэл Мэдэгдэлийг идэвхгүй болгох тохиолдолд эдгээр тохиргоог өөрчлөх боломжтой',
+ 'forum-privacy' => 'Форумын тохиргоо',
+ 'forum-privacy-post' => 'Хэрэглэгчдэд өөрийн байрлуулсан форумын жагсаалтыг харахыг зөвшөөрөх',
+ 'forum-privacy-topic' => 'Хэрэглэгчидээ эхлүүлсэн форумын сэдвүүдийн жагсаалтыг үзэхийг хэрэглэгчид зөвшөөрөх',
+ 'forum-help' => 'Форумтай холбоотой статистик мэдээллийг хуваалцах, таны профайлд нэвтрэх эрхтэй группүүдтэй хуваалцах. Хэрэв та ямар ч бүлгүүд таны форумын холбоотой статистик болон мэдээлэл рүү нэвтрэх эсвэл Go Private гэсэн хүмүүст нэвтрэхийг зөвшөөрөхгүй бол эдгээр тохиргоог өөрчлөх боломжтой',
+ 'forum-signature' => 'Чуулганы гарын үсэг',
+ 'forums' => 'Форум',
+ 'general' => 'Ерөнхий',
+ 'general-settings' => 'Ерөнхий Тохиргоо',
+ 'gift-given' => 'Бэлэглэсэн бэлэг',
+ 'gift-received' => 'Хүлээн авсан бэлэг',
+ 'go-public' => 'Нийтэд хандана уу',
+ 'go-private' => 'Хувийн аялал',
+ 'history' => 'Түүх',
+ 'history-table' => 'Миний түүх Хүснэгт',
+ 'hit-n-runs' => 'Hit болон Runs',
+ 'hit-n-runs-count' => 'Гарах ба гүйх (Бүх цаг)',
+ 'hit-n-runs-history' => 'Torrent Hit болон Run History',
+ 'image' => 'Зураг',
+ 'important' => 'Чухал',
+ 'important-info' => 'Чухал мэдээлэл',
+ 'information' => 'Мэдээлэл',
+ 'invite-friend' => 'Найзаа урих (Имэйл + Шаардлагатай зурвас)',
+ 'invite-tree' => 'Модыг урих',
+ 'invites' => 'Урьж байна',
+ 'invites-banned' => 'Алдаа: Таны урилга нь тахир дутуу болсон',
+ 'invites-banned-desc' => 'Хэрэв та үүнийг мэдэж байгаа бол энэ алдаа гэж бодож байвал ажилтнуудад хандана уу!',
+ 'invites-count' => 'Танд: тоолох Токенуудыг урь',
+ 'invites-disabled' => 'Анхаар: Хөгжлийн бэрхшээлтэй хүмүүсийг урих нь бүртгэлийг нээхээс урьдаг!',
+ 'invites-disabled-desc' => 'Буцаж ирнэ үү!',
+ 'invites-rules' => '- Зөвхөн таньдаг, итгэлтэй хүмүүсийг урь.
- Та урьсан хүмүүстээ хариуцлага хүлээх болно.
- Өөрийгөө урихгүй бол уригдсан хэрэглэгч бүрийг шалгана уу.
- Худалдаж авах эсвэл борлуулахгүй байх.
- Хэрэв та урьсан хүн хууран мэхлэх, худалдааны данс эсвэл худалдах, худалдан авах урилга авбал та анхааруулах болно.
',
+ 'invites-send' => 'Илгээх',
+ 'last-login' => 'Сүүлчийн Нэвтрэх',
+ 'locked' => 'Түгжигдсэн',
+ 'locked-achievements' => 'Хангалттай амжилтууд',
+ 'member-since' => 'Оноос хойш',
+ 'members-desc' => 'Бүртгэгдсэн хэрэглэгчдийн жагсаалт: бүх бүлгүүдтэй гарчигтай. Хэрэглэгчийг одоо олох.',
+ 'mention-notification' => '@ Зөвлөмжийн Тохиргооны Тохиргоо',
'mention-notification-article-comment' => 'Та өгүүлэлд сэтгэгдэл бичихдээ хариу мэдэгдэл хүлээн авна',
'mention-notification-torrent-comment' => 'Тройд сэтгэгдэл бичих үед танд мэдэгдэл хүлээн авах болно',
'mention-notification-request-comment' => 'Хүсэлтийн тайлбар дээрээ хариу бичих үед мэдэгдэл хүлээж авах',
- 'mention-notification-forum-post' => 'Та форумын бичлэгт дурдах үедээ мэдэгдэл хүлээн авна',
- 'mention-notification-help' => 'Хэрэглэгч таны хариултыг өгөх үед аль мэдэгдлүүдийг илгээхийг хянах. Хэрэв та хэрэглэгчид @mentions эсвэл мэдэгдлийг идэвхгүй болгох бол мэдэгдэл илгээхийг зөвшөөрөхгүй бол эдгээр тохиргоог өөрчлөх боломжтой.',
- 'moderated-by' => 'Modedated by: mod on',
- 'my-bonus-points' => 'Миний Bonus оноо',
- 'my-bookmarks' => 'Миний Хавчуурга',
- 'my-fl-tokens' => 'Миний FL жетон',
- 'my-general-settings' => 'Миний ерөнхий тохиргоо',
- 'my-notification' => 'Миний мэдэгдэл',
- 'my-notification-settings' => 'Миний Мэдэгдэл Тохиргоо',
- 'my-privacy' => 'Миний нууцлал',
- 'my-privacy-settings' => 'Миний нууцлалын тохиргоо',
- 'my-profile' => 'Миний намтар',
- 'my-requested' => 'Миний хүсэлт',
- 'my-security' => 'Миний аюулгүй байдал',
- 'my-security-settings' => 'Миний аюулгүй байдлын тохиргоо',
- 'my-seedboxes' => 'Миний Seedboxes',
- 'my-settings' => 'Миний Тохиргоо',
- 'my-wishlist' => 'Миний хүслийн жагсаалт',
- 'no-logs' => 'Энэ хэрэглэгчдэд зориулсан мэдээллийн баазад бүртгэлгүй байна!',
- 'no-seedboxes' => 'Ямар ч seedboxes биш',
- 'not-authorized' => 'Та энэ хуудсыг үзэх эрхгүй байна. Энэ гишүүн нинжа шиг нуугдахыг илүүд үздэг!',
- 'note' => 'Тэмдэглэл',
- 'notification' => 'Мэдэгдэл',
- 'notification-settings' => 'Мэдэгдлийн тохиргоо',
- 'notification-from-account' => 'Бүртгэлээс мэдэгдэл хүлээн авах',
- 'notification-from-account-help' => 'Та систем, ажилтан болон дараах бүлгээс зөвхөн дансны мэдэгдлүүдийг хүлээн авах болно. Хэрэв та Мэдэгдлийг идэвхгүй болгох бол эдгээр тохиргоог өөрчлөх боломжтой',
- 'notification-from-bon' => 'Эхлэн БОН Мэдэгдэл хүлээн авах',
- 'notification-from-bon-help' => 'Та систем, ажилтан болон дараах бүлгээс зөвхөн BON мэдэгдэл хүлээн авах болно. Хэрэв та Мэдэгдлийг идэвхгүй болгох бол эдгээр тохиргоог өөрчлөх боломжтой',
- 'notification-from-following' => 'Эхлээд хэрэглэгчийн мэдээллүүдийг хүлээн авна уу',
- 'notification-from-following-help' => 'Та дараах бүлгүүдэд зөвхөн хэрэглэгчийн мэдэгдлийг хүлээн авах болно. Хэрэв та Мэдэгдлийг идэвхгүй болгох бол эдгээр тохиргоог өөрчлөх боломжтой',
- 'notification-from-forum' => 'Хүлээн авсан форумын мэдээллийг хүлээн авах',
- 'notification-from-forum-help' => 'Та систем, ажиллагсад болон дараах бүлгээс зөвхөн форумын мэдэгдлийг хүлээн авах болно. Хэрэв та Мэдэгдлийг идэвхгүй болгох бол эдгээр тохиргоог өөрчлөх боломжтой',
- 'notification-from-subscription' => 'Бүртгэлээс мэдэгдэл хүлээн авах',
- 'notification-from-subscription-help' => 'Та систем, ажиллагсад болон дараах бүлгээс зөвхөн форумын мэдэгдлийг хүлээн авах болно. Хэрэв та Мэдэгдлийг идэвхгүй болгох бол эдгээр тохиргоог өөрчлөх боломжтой',
- 'notification-from-torrent' => 'Эхлээд Torrent Мэдэгдэл хүлээн авах',
- 'notification-from-torrent-help' => 'Та систем, ажиллагсад болон дараах бүлгээс зөвхөн мэдэгдэл хүлээн авах болно. Хэрэв та Мэдэгдлийг идэвхгүй болгох бол эдгээр тохиргоог өөрчлөх боломжтой',
- 'notification-from-mention' => 'Хүлээн авах @ Мэдэгдлийн мэдээллийг хүлээн авна уу',
- 'notification-from-mention-help' => 'Та систем, ажилтнууд болон дараах хэсгээс @mention мэдэгдэл хүлээн авах болно. Хэрэв та Мэдэгдлийг идэвхгүй болгох бол эдгээр тохиргоог өөрчлөх боломжтой',
- 'notification-from-request' => 'Хүлээн авах мэдэгдлийг хүлээн авна',
- 'notification-from-request-help' => 'Та систем, ажилтан болон дараах бүлгээс зөвхөн хүсэлтийг хүлээн авах болно. Хэрэв та Мэдэгдлийг идэвхгүй болгох бол эдгээр тохиргоог өөрчлөх боломжтой',
- 'notifications' => 'Мэдэгдэл',
- 'offline' => 'Хэрэглэгч нь онлайн байна!',
- 'online' => 'Хэрэглэгч онлайн байна!',
- 'options' => 'Сонголтууд',
- 'other-help' => 'Өөрийн профайлд хандах эрхтэй бүлгүүдтэй бусад статистик мэдээллийг хуваалцах. Хэрэв та бусад статистик, мэдээлэлдээ хандах эсвэл Хувийн Go- д хандалт хийхийг зөвшөөрөхгүй бол эдгээр тохиргоог өөрчлөх боломжтой',
- 'other-privacy' => 'Бусад тохиргоо',
- 'other-privacy-online' => 'Хэрэглэгчдэд таныг онлайн хэрэглэгчийн блок дээр танихыг зөвшөөрөх',
- 'passkey' => 'PID',
- 'passkey-warning' => 'PID нь таны нууц үгтэй адил байх ёстой.',
- 'pending-achievements' => 'Хүлээгдэж буй амжилт',
- 'per-torrent' => 'Per Torrent',
- 'posts' => 'Бичлэгүүд',
- 'posts-posted' => 'Чуулганы бичлэгүүд Posted',
- 'privacy' => 'Нууцлал',
- 'privacy-settings' => 'Нууцлалын тохиргоо',
- 'private-info' => 'Хувийн мэдээлэл',
- 'private-forum-profile' => 'Анхаар: Энэ гишүүд Сэдэв болон Пост Түүхийг хувийн болгохыг хүссэн байна!',
- 'private-profile' => 'Анхааруулга: Энэ Хувийн Хувийн Хувийн Хувийн мэдээлэл',
- 'profile' => 'Профайл',
- 'profile-desc' => 'Хэрэглэгч: Хэрэглэгчийн профайл: нэрийг бүртгэв',
- 'profile-privacy' => 'Профайл тохиргоо',
- 'profile-privacy-torrent-count' => 'Татаж авах, байршуулах, үр, лагерийн нийт тоог хуваалцах',
- 'profile-privacy-torrent-ratio' => 'Нийтийг байршуулах / татаж авах датаг харьцуулсан харьцаатай хуваалцана уу',
- 'profile-privacy-torrent-seed' => 'Нийт үржүүлгийн хугацаа, дундажийг хуваалц',
- 'profile-privacy-title' => 'Өөрийн хувийн гарчгийн мэдээллийг хуваалцаарай',
- 'profile-privacy-about' => 'Миний тухай хувийн мэдээллийг хуваалцаж болно',
- 'profile-privacy-bon-extra' => 'Бондын статистикийг хуваалцана уу',
- 'profile-privacy-comment-extra' => 'Тайлбар статистикаа хуваалцана уу',
- 'profile-privacy-forum-extra' => 'Форумын статистикийг хуваалцана уу',
- 'profile-privacy-request-extra' => 'Хүсэлтийн статистикийг хуваалцана уу',
- 'profile-privacy-torrent-extra' => 'Өөрийн урсгалыг статистикийг хуваалц',
- 'profile-privacy-badge' => 'Өөрийн олдсон тэмдгүүдийг хуваалцаарай',
- 'profile-privacy-achievement' => 'Сүүлийн амжилтуудаа хуваалц',
- 'profile-privacy-follower' => 'Саяхан дагалдагчдыг хуваалц',
- 'profile-privacy-warning' => 'H & R сэрэмжлүүлгийг хуваалцаарай',
- 'profile-privacy-help' => 'Таны профайл дээр статистик мэдээлэл болон хэсгүүдийн алийг нь хянах. Хэрэв та аливаа профайлд өөрийн профайлд хандах эсвэл Private Go руу хандахыг зөвшөөрөхгүй бол эдгээр тохиргоог өөрчлөх боломжтой',
- 'public-info' => 'Нийтийн мэдээлэл',
- 'recent-achievements' => 'Сүүлийн үеийн амжилт',
- 'recent-followers' => 'Саяхан Дагагчид',
- 'registration-date' => 'Бүртгэлийн өдөр',
- 'report' => 'Тайлан бичих',
- 'request-help' => 'Өөрийн профайлд хандалт хийх эрхтэй группүүдтэй холбоотой тусгай хүсэлттэй холбоотой статистик мэдээлэл болон мэдээллийг хуваалцах. Хэрэв та хүссэн холбоотой статистик болон мэдээлэлдээ хандах эсвэл Хувийн Go-гүйрүү хандахыг зөвшөөрөхгүй бол дээрх тохиргоог өөрчлөх боломжтой',
- 'request' => 'Хүсэлт гаргах',
- 'requested' => 'Хүссэн',
- 'requests' => 'Хүсэлт',
- 'request-comments' => 'Санал хүсэлт хийсэн',
- 'request-notification' => 'Хүсэлт Мэдэгдлийн Тохиргоо',
- 'request-notification-bounty' => 'Хүссэн урсгал нь шинэ бонд авдаг тухай мэдэгдлийг хүлээж аваарай',
- 'request-notification-comment' => 'Хүссэн torrent-г шинэ сэтгэгдэлтэй болсон үед мэдэгдэл хүлээн авна',
- 'request-notification-fill' => 'Хүссэн урсгалыг дүүргэх үед мэдэгдэл хүлээн авна',
- 'request-notification-fill-approve' => 'Хүссэн torrent урсгалыг зөвшөөрсөн үед мэдэгдэл хүлээн авна',
- 'request-notification-fill-reject' => 'Хүссэн урсгал torrent татгалзах үед мэдэгдэл хүлээн авна',
- 'request-notification-claim' => 'Хүссэн түр torrent шаарддаг үед мэдэгдэл хүлээн авна',
- 'request-notification-unclaim' => 'Хүссэн урсгалыг аваагүй үед мэдэгдэл хүлээн авна',
- 'request-notification-help' => 'Хүсэлтийн үйл ажиллагааны талаар аль мэдэгдлүүдийг хянах. Хэрэв та хүссэн үйл ажиллагаатай холбоотой мэдэгдлүүдийг илгээхийг зөвшөөрөхгүй эсвэл Мэдэгдэлийг идэвхгүй болгох тохиолдолд эдгээр тохиргоог өөрчлөх боломжтой',
- 'request-privacy' => 'Тохиргоог хүсч байна',
- 'request-privacy-requested' => 'Хэрэглэгчид таны хүсэлтүүдийн жагсаалтыг үзэхийг зөвшөөрөх',
- 'reset-passkey' => 'Нэвтрэх түлхүүрийг дахин эхлүүлэх (PID)',
- 'reset-passkey-help' => 'Та PID-ийг шинэчилсний дараа дахин идэвхжүүлэгдэх ёстой',
- 'reset-rss' => 'RSS түлхүүрийг дахин тохируулах (RID)',
- 'reset-rss-help' => 'RID-ийг дахин тохируулсны дараа та өөрийн бүх идэвхтэй рекламыг дахин ачаалах хэрэгтэй болно',
- 'resurrections' => 'Амилуулалтууд',
- 'search' => 'Хэрэглэгчийн нэрээр түргэн хайлт хийнэ үү',
- 'security' => 'Аюулгүй байдал',
- 'security-settings' => 'Аюулгүй байдлын тохиргоо',
- 'seedboxes' => 'Seedboxes',
- 'seeds' => 'Seeds',
- 'send-invite' => 'Урилгыг илгээх',
- 'sender' => 'Илгээгч',
- 'settings' => 'Тохиргоо',
- 'show-passkey' => 'PID харуулах',
- 'staff-noted' => 'Ажиллагсадын данс бүртгэл',
- 'statistics' => 'Статистик тоо',
- 'subscription-notification' => 'Захиалгын мэдэгдэл тохируулга',
- 'subscription-notification-forum' => 'Захиалсан форум шинэ сэдэвтэй бол мэдэгдэл хүлээн авах',
- 'subscription-notification-topic' => 'Захиалсан сэдэв шинэ бичлэг хүлээн авмагц мэдэгдэл хүлээн авах',
- 'subscription-notification-help' => 'Захиалгын талаархи мэдэгдлүүдийг хянах. Хэрэв та ямар нэгэн бүлгүүд таны захиалгатай холбоотой мэдэгдэл илгээх эсвэл Мэдэгдэлийг идэвхгүй болгохыг зөвшөөрөхгүй бол эдгээр тохиргоог өөрчлөх боломжтой',
- 'thanks-given' => 'Баярлалаа',
- 'thanks-received' => 'Хүлээн авсанд баярлалаа',
- 'tips-given' => 'Танд өгөх зөвлөмжүүд',
- 'tips-received' => 'Хүлээн авах зөвлөмжүүд',
- 'title' => 'Гарчиг',
- 'top-bankers' => 'Топ Банкирууд',
- 'top-downloaders-data' => 'Топ татаж авах (Мэдээлэл)',
- 'top-leechers' => 'Топ Leechers',
- 'top-leechers-count' => 'Топ Leechers (Count)',
- 'top-seeders' => 'Топ үхэрчид',
- 'top-seeders-count' => 'Топ үхэрчид (тоо)',
- 'top-seeding-size' => 'Топ үртэс (Хэмжээ)',
- 'top-seedtime' => 'Топ Үрийн цаг',
- 'top-uploaders-data' => 'Топ байршуулагч (Мэдээлэл)',
- 'top-uploaders-count' => 'Топ байршуулагч (тоо)',
- 'topics' => 'Сэдэвүүд',
- 'topics-started' => 'Чуулганы сэдвүүд эхэллээ',
- 'torrent-comments' => 'Torrent Comments Made',
- 'torrent-help' => 'Өөрийн профайлд хандалт хийх эрхтэй группүүдтэй тусгай torrent болон статистик мэдээллийг хуваалцах. Хэрэв та ямар нэгэн групп таны урсгалтай холбоотой статистик мэдээлэл, эсвэл Хувийн Go- гүйрүү нэвтрэх эрхгүй бол эдгээр тохиргоог өөрчлөх боломжтой',
- 'torrent-notification' => 'Torrent Мэдэгдэл Тохиргоо',
- 'torrent-notification-comment' => 'Байршуулсан torrent нь шинэ сэтгэгдэл авах үед мэдэгдэл хүлээн авна',
- 'torrent-notification-thank' => 'Байршуулсан гүүрнүүд шинэ талархал хүлээж авснаар мэдэгдэл хүлээн авна',
- 'torrent-notification-tip' => 'Байршуулсан урсгалууд шинэ сантай болсон үед мэдэгдэл хүлээн авна',
- 'torrent-notification-help' => 'Түргэн тусламжийн талаархи мэдэгдлийг хянах. Эдгээр тохиргоонууд нь та ямар нэгэн бүлгүүд нь урсгал үйл ажиллагаатай холбоотой мэдэгдэл илгээхийг зөвшөөрөхгүй эсвэл Мэдэгдэлийг идэвхгүй болгох тохиолдолд өөрчлөх боломжтой',
- 'torrent-privacy' => 'Torrent Тохиргоо',
- 'torrent-privacy-download' => 'Өөрийн татаж авсан дуунуудын жагсаалтыг үзэхийг хэрэглэгчид зөвшөөрөх',
- 'torrent-privacy-upload' => 'Хэрэглэгчид таны байршуулсан дуунуудын жагсаалтыг гаргахыг зөвшөөрөх',
- 'torrent-privacy-peer' => 'Хэрэглэгчдэд тань тээгчдийн түүхийн хүснэгтийг харахыг зөвшөөрөх',
- 'torrents' => 'Торрент',
- 'torrents-history' => 'Түр хугацааны түүх',
- 'total-download' => 'Нийт татан авалт',
- 'total-downloads' => 'Нийт татаж авах',
- 'total-leeching' => 'Нийт Leeching',
- 'total-seeding' => 'Нийт тариалалт',
- 'total-seedtime' => 'Нийт ургац',
- 'total-upload' => 'Нийт байршуулалт',
- 'total-uploads' => 'Нийт байршуулалт',
- 'unban' => 'Unban User',
- 'unfollow' => 'Дахин дагахгүй',
- 'unlocked' => 'Нээлттэй байна',
- 'unlocked-achievements' => 'Нээлтт амжилтгүй болсон',
- 'unsatisfieds' => 'Сэтгэл дундуур байна',
- 'upload-bon' => 'Бон дэлгүүрээс нэмсэн байршуулалт',
- 'upload-recorded' => 'Бичлэг хийсэн',
- 'upload-true' => 'Жинхэнэ байршуулалт',
- 'uploads' => 'Байршуулах',
- 'uploads-table' => 'Хүснэгтийг байршуул',
- 'user' => 'Хэрэглэгч',
- 'user-id' => 'Хэрэглэгчийн ID',
- 'username-seedbox' => 'Хэрэглэгчийн нэр Seedbox',
- 'visible-to-achievement' => 'Харагдахуйц амжилтууд',
- 'visible-to-achievement-help' => 'Таны ололт амжилт нь зөвхөн ажилтнууд болон дараах бүлгүүдэд харагдах болно. Хэрэв та Go Private бол эдгээр тохиргоог өөрчлөх боломжтой',
- 'visible-to-follower' => 'Харагдах байдал',
- 'visible-to-follower-help' => 'Таны дагалдагчид зөвхөн ажилтнууд болон дараах бүлгүүдэд харагдах болно. Хэрэв та Go Private бол эдгээр тохиргоог өөрчлөх боломжтой',
- 'visible-to-forum' => 'Харагдах форумын мэдээлэл',
- 'visible-to-forum-help' => 'Таны форумын мэдээлэл зөвхөн ажилтнууд болон дараах бүлгүүдэд харагдах болно. Хэрэв та Go Private бол эдгээр тохиргоог өөрчлөх боломжтой',
- 'visible-to-other' => 'Харагдах бусад',
- 'visible-to-other-help' => 'Таны данстай холбоотой бусад мэдээлэл зөвхөн ажилтнууд болон дараах бүлгүүдэд харагдах болно. Эдгээр тохиргоонууд нь Go Private эсвэл Хэрэв та Go Hidden бол дарагдана',
- 'visible-to-profile' => 'Харагдах байдал',
- 'visible-to-profile-help' => 'Таны профайл зөвхөн ажилтнууд болон дараах бүлгүүдэд харагдах болно. Хэрэв та Go Private бол эдгээр тохиргоог өөрчлөх боломжтой',
- 'visible-to-request' => 'Хариуцлагатай мэдээлэл хүсэх',
- 'visible-to-request-help' => 'Таны хүсэлтийн мэдээлэл зөвхөн ажилтнууд болон дараах бүлгүүдэд харагдах болно. Хэрэв та Go Private бол эдгээр тохиргоог өөрчлөх боломжтой',
- 'visible-to-torrent' => 'Харагдах Torrent мэдээлэл',
- 'visible-to-torrent-help' => 'Түргэн мэдээллээ зөвхөн ажилтнууд болон дараах бүлгүүдэд харагдах болно. Эдгээр тохиргоонууд нь Go Private эсвэл Хэрэв та Go Hidden бол дарагдана',
- 'warned-on' => 'Анхааруулга',
- 'warning' => 'Анхааруулга',
- 'warning-log' => 'Анхаарах лог',
- 'wishlist' => 'Хүслийн жагсаалт',
+ 'mention-notification-forum-post' => 'Та форумын бичлэгт дурдах үедээ мэдэгдэл хүлээн авна',
+ 'mention-notification-help' => 'Хэрэглэгч таны хариултыг өгөх үед аль мэдэгдлүүдийг илгээхийг хянах. Хэрэв та хэрэглэгчид @mentions эсвэл мэдэгдлийг идэвхгүй болгох бол мэдэгдэл илгээхийг зөвшөөрөхгүй бол эдгээр тохиргоог өөрчлөх боломжтой.',
+ 'moderated-by' => 'Modedated by: mod on',
+ 'my-bonus-points' => 'Миний Bonus оноо',
+ 'my-bookmarks' => 'Миний Хавчуурга',
+ 'my-fl-tokens' => 'Миний FL жетон',
+ 'my-general-settings' => 'Миний ерөнхий тохиргоо',
+ 'my-notification' => 'Миний мэдэгдэл',
+ 'my-notification-settings' => 'Миний Мэдэгдэл Тохиргоо',
+ 'my-privacy' => 'Миний нууцлал',
+ 'my-privacy-settings' => 'Миний нууцлалын тохиргоо',
+ 'my-profile' => 'Миний намтар',
+ 'my-requested' => 'Миний хүсэлт',
+ 'my-security' => 'Миний аюулгүй байдал',
+ 'my-security-settings' => 'Миний аюулгүй байдлын тохиргоо',
+ 'my-seedboxes' => 'Миний Seedboxes',
+ 'my-settings' => 'Миний Тохиргоо',
+ 'my-wishlist' => 'Миний хүслийн жагсаалт',
+ 'no-logs' => 'Энэ хэрэглэгчдэд зориулсан мэдээллийн баазад бүртгэлгүй байна!',
+ 'no-seedboxes' => 'Ямар ч seedboxes биш',
+ 'not-authorized' => 'Та энэ хуудсыг үзэх эрхгүй байна. Энэ гишүүн нинжа шиг нуугдахыг илүүд үздэг!',
+ 'note' => 'Тэмдэглэл',
+ 'notification' => 'Мэдэгдэл',
+ 'notification-settings' => 'Мэдэгдлийн тохиргоо',
+ 'notification-from-account' => 'Бүртгэлээс мэдэгдэл хүлээн авах',
+ 'notification-from-account-help' => 'Та систем, ажилтан болон дараах бүлгээс зөвхөн дансны мэдэгдлүүдийг хүлээн авах болно. Хэрэв та Мэдэгдлийг идэвхгүй болгох бол эдгээр тохиргоог өөрчлөх боломжтой',
+ 'notification-from-bon' => 'Эхлэн БОН Мэдэгдэл хүлээн авах',
+ 'notification-from-bon-help' => 'Та систем, ажилтан болон дараах бүлгээс зөвхөн BON мэдэгдэл хүлээн авах болно. Хэрэв та Мэдэгдлийг идэвхгүй болгох бол эдгээр тохиргоог өөрчлөх боломжтой',
+ 'notification-from-following' => 'Эхлээд хэрэглэгчийн мэдээллүүдийг хүлээн авна уу',
+ 'notification-from-following-help' => 'Та дараах бүлгүүдэд зөвхөн хэрэглэгчийн мэдэгдлийг хүлээн авах болно. Хэрэв та Мэдэгдлийг идэвхгүй болгох бол эдгээр тохиргоог өөрчлөх боломжтой',
+ 'notification-from-forum' => 'Хүлээн авсан форумын мэдээллийг хүлээн авах',
+ 'notification-from-forum-help' => 'Та систем, ажиллагсад болон дараах бүлгээс зөвхөн форумын мэдэгдлийг хүлээн авах болно. Хэрэв та Мэдэгдлийг идэвхгүй болгох бол эдгээр тохиргоог өөрчлөх боломжтой',
+ 'notification-from-subscription' => 'Бүртгэлээс мэдэгдэл хүлээн авах',
+ 'notification-from-subscription-help' => 'Та систем, ажиллагсад болон дараах бүлгээс зөвхөн форумын мэдэгдлийг хүлээн авах болно. Хэрэв та Мэдэгдлийг идэвхгүй болгох бол эдгээр тохиргоог өөрчлөх боломжтой',
+ 'notification-from-torrent' => 'Эхлээд Torrent Мэдэгдэл хүлээн авах',
+ 'notification-from-torrent-help' => 'Та систем, ажиллагсад болон дараах бүлгээс зөвхөн мэдэгдэл хүлээн авах болно. Хэрэв та Мэдэгдлийг идэвхгүй болгох бол эдгээр тохиргоог өөрчлөх боломжтой',
+ 'notification-from-mention' => 'Хүлээн авах @ Мэдэгдлийн мэдээллийг хүлээн авна уу',
+ 'notification-from-mention-help' => 'Та систем, ажилтнууд болон дараах хэсгээс @mention мэдэгдэл хүлээн авах болно. Хэрэв та Мэдэгдлийг идэвхгүй болгох бол эдгээр тохиргоог өөрчлөх боломжтой',
+ 'notification-from-request' => 'Хүлээн авах мэдэгдлийг хүлээн авна',
+ 'notification-from-request-help' => 'Та систем, ажилтан болон дараах бүлгээс зөвхөн хүсэлтийг хүлээн авах болно. Хэрэв та Мэдэгдлийг идэвхгүй болгох бол эдгээр тохиргоог өөрчлөх боломжтой',
+ 'notifications' => 'Мэдэгдэл',
+ 'offline' => 'Хэрэглэгч нь онлайн байна!',
+ 'online' => 'Хэрэглэгч онлайн байна!',
+ 'options' => 'Сонголтууд',
+ 'other-help' => 'Өөрийн профайлд хандах эрхтэй бүлгүүдтэй бусад статистик мэдээллийг хуваалцах. Хэрэв та бусад статистик, мэдээлэлдээ хандах эсвэл Хувийн Go- д хандалт хийхийг зөвшөөрөхгүй бол эдгээр тохиргоог өөрчлөх боломжтой',
+ 'other-privacy' => 'Бусад тохиргоо',
+ 'other-privacy-online' => 'Хэрэглэгчдэд таныг онлайн хэрэглэгчийн блок дээр танихыг зөвшөөрөх',
+ 'passkey' => 'PID',
+ 'passkey-warning' => 'PID нь таны нууц үгтэй адил байх ёстой.',
+ 'pending-achievements' => 'Хүлээгдэж буй амжилт',
+ 'per-torrent' => 'Per Torrent',
+ 'posts' => 'Бичлэгүүд',
+ 'posts-posted' => 'Чуулганы бичлэгүүд Posted',
+ 'privacy' => 'Нууцлал',
+ 'privacy-settings' => 'Нууцлалын тохиргоо',
+ 'private-info' => 'Хувийн мэдээлэл',
+ 'private-forum-profile' => 'Анхаар: Энэ гишүүд Сэдэв болон Пост Түүхийг хувийн болгохыг хүссэн байна!',
+ 'private-profile' => 'Анхааруулга: Энэ Хувийн Хувийн Хувийн Хувийн мэдээлэл',
+ 'profile' => 'Профайл',
+ 'profile-desc' => 'Хэрэглэгч: Хэрэглэгчийн профайл: нэрийг бүртгэв',
+ 'profile-privacy' => 'Профайл тохиргоо',
+ 'profile-privacy-torrent-count' => 'Татаж авах, байршуулах, үр, лагерийн нийт тоог хуваалцах',
+ 'profile-privacy-torrent-ratio' => 'Нийтийг байршуулах / татаж авах датаг харьцуулсан харьцаатай хуваалцана уу',
+ 'profile-privacy-torrent-seed' => 'Нийт үржүүлгийн хугацаа, дундажийг хуваалц',
+ 'profile-privacy-title' => 'Өөрийн хувийн гарчгийн мэдээллийг хуваалцаарай',
+ 'profile-privacy-about' => 'Миний тухай хувийн мэдээллийг хуваалцаж болно',
+ 'profile-privacy-bon-extra' => 'Бондын статистикийг хуваалцана уу',
+ 'profile-privacy-comment-extra' => 'Тайлбар статистикаа хуваалцана уу',
+ 'profile-privacy-forum-extra' => 'Форумын статистикийг хуваалцана уу',
+ 'profile-privacy-request-extra' => 'Хүсэлтийн статистикийг хуваалцана уу',
+ 'profile-privacy-torrent-extra' => 'Өөрийн урсгалыг статистикийг хуваалц',
+ 'profile-privacy-badge' => 'Өөрийн олдсон тэмдгүүдийг хуваалцаарай',
+ 'profile-privacy-achievement' => 'Сүүлийн амжилтуудаа хуваалц',
+ 'profile-privacy-follower' => 'Саяхан дагалдагчдыг хуваалц',
+ 'profile-privacy-warning' => 'H & R сэрэмжлүүлгийг хуваалцаарай',
+ 'profile-privacy-help' => 'Таны профайл дээр статистик мэдээлэл болон хэсгүүдийн алийг нь хянах. Хэрэв та аливаа профайлд өөрийн профайлд хандах эсвэл Private Go руу хандахыг зөвшөөрөхгүй бол эдгээр тохиргоог өөрчлөх боломжтой',
+ 'public-info' => 'Нийтийн мэдээлэл',
+ 'recent-achievements' => 'Сүүлийн үеийн амжилт',
+ 'recent-followers' => 'Саяхан Дагагчид',
+ 'registration-date' => 'Бүртгэлийн өдөр',
+ 'report' => 'Тайлан бичих',
+ 'request-help' => 'Өөрийн профайлд хандалт хийх эрхтэй группүүдтэй холбоотой тусгай хүсэлттэй холбоотой статистик мэдээлэл болон мэдээллийг хуваалцах. Хэрэв та хүссэн холбоотой статистик болон мэдээлэлдээ хандах эсвэл Хувийн Go-гүйрүү хандахыг зөвшөөрөхгүй бол дээрх тохиргоог өөрчлөх боломжтой',
+ 'request' => 'Хүсэлт гаргах',
+ 'requested' => 'Хүссэн',
+ 'requests' => 'Хүсэлт',
+ 'request-comments' => 'Санал хүсэлт хийсэн',
+ 'request-notification' => 'Хүсэлт Мэдэгдлийн Тохиргоо',
+ 'request-notification-bounty' => 'Хүссэн урсгал нь шинэ бонд авдаг тухай мэдэгдлийг хүлээж аваарай',
+ 'request-notification-comment' => 'Хүссэн torrent-г шинэ сэтгэгдэлтэй болсон үед мэдэгдэл хүлээн авна',
+ 'request-notification-fill' => 'Хүссэн урсгалыг дүүргэх үед мэдэгдэл хүлээн авна',
+ 'request-notification-fill-approve' => 'Хүссэн torrent урсгалыг зөвшөөрсөн үед мэдэгдэл хүлээн авна',
+ 'request-notification-fill-reject' => 'Хүссэн урсгал torrent татгалзах үед мэдэгдэл хүлээн авна',
+ 'request-notification-claim' => 'Хүссэн түр torrent шаарддаг үед мэдэгдэл хүлээн авна',
+ 'request-notification-unclaim' => 'Хүссэн урсгалыг аваагүй үед мэдэгдэл хүлээн авна',
+ 'request-notification-help' => 'Хүсэлтийн үйл ажиллагааны талаар аль мэдэгдлүүдийг хянах. Хэрэв та хүссэн үйл ажиллагаатай холбоотой мэдэгдлүүдийг илгээхийг зөвшөөрөхгүй эсвэл Мэдэгдэлийг идэвхгүй болгох тохиолдолд эдгээр тохиргоог өөрчлөх боломжтой',
+ 'request-privacy' => 'Тохиргоог хүсч байна',
+ 'request-privacy-requested' => 'Хэрэглэгчид таны хүсэлтүүдийн жагсаалтыг үзэхийг зөвшөөрөх',
+ 'reset-passkey' => 'Нэвтрэх түлхүүрийг дахин эхлүүлэх (PID)',
+ 'reset-passkey-help' => 'Та PID-ийг шинэчилсний дараа дахин идэвхжүүлэгдэх ёстой',
+ 'reset-rss' => 'RSS түлхүүрийг дахин тохируулах (RID)',
+ 'reset-rss-help' => 'RID-ийг дахин тохируулсны дараа та өөрийн бүх идэвхтэй рекламыг дахин ачаалах хэрэгтэй болно',
+ 'resurrections' => 'Амилуулалтууд',
+ 'search' => 'Хэрэглэгчийн нэрээр түргэн хайлт хийнэ үү',
+ 'security' => 'Аюулгүй байдал',
+ 'security-settings' => 'Аюулгүй байдлын тохиргоо',
+ 'seedboxes' => 'Seedboxes',
+ 'seeds' => 'Seeds',
+ 'send-invite' => 'Урилгыг илгээх',
+ 'sender' => 'Илгээгч',
+ 'settings' => 'Тохиргоо',
+ 'show-passkey' => 'PID харуулах',
+ 'staff-noted' => 'Ажиллагсадын данс бүртгэл',
+ 'statistics' => 'Статистик тоо',
+ 'subscription-notification' => 'Захиалгын мэдэгдэл тохируулга',
+ 'subscription-notification-forum' => 'Захиалсан форум шинэ сэдэвтэй бол мэдэгдэл хүлээн авах',
+ 'subscription-notification-topic' => 'Захиалсан сэдэв шинэ бичлэг хүлээн авмагц мэдэгдэл хүлээн авах',
+ 'subscription-notification-help' => 'Захиалгын талаархи мэдэгдлүүдийг хянах. Хэрэв та ямар нэгэн бүлгүүд таны захиалгатай холбоотой мэдэгдэл илгээх эсвэл Мэдэгдэлийг идэвхгүй болгохыг зөвшөөрөхгүй бол эдгээр тохиргоог өөрчлөх боломжтой',
+ 'thanks-given' => 'Баярлалаа',
+ 'thanks-received' => 'Хүлээн авсанд баярлалаа',
+ 'tips-given' => 'Танд өгөх зөвлөмжүүд',
+ 'tips-received' => 'Хүлээн авах зөвлөмжүүд',
+ 'title' => 'Гарчиг',
+ 'top-bankers' => 'Топ Банкирууд',
+ 'top-downloaders-data' => 'Топ татаж авах (Мэдээлэл)',
+ 'top-leechers' => 'Топ Leechers',
+ 'top-leechers-count' => 'Топ Leechers (Count)',
+ 'top-seeders' => 'Топ үхэрчид',
+ 'top-seeders-count' => 'Топ үхэрчид (тоо)',
+ 'top-seeding-size' => 'Топ үртэс (Хэмжээ)',
+ 'top-seedtime' => 'Топ Үрийн цаг',
+ 'top-uploaders-data' => 'Топ байршуулагч (Мэдээлэл)',
+ 'top-uploaders-count' => 'Топ байршуулагч (тоо)',
+ 'topics' => 'Сэдэвүүд',
+ 'topics-started' => 'Чуулганы сэдвүүд эхэллээ',
+ 'torrent-comments' => 'Torrent Comments Made',
+ 'torrent-help' => 'Өөрийн профайлд хандалт хийх эрхтэй группүүдтэй тусгай torrent болон статистик мэдээллийг хуваалцах. Хэрэв та ямар нэгэн групп таны урсгалтай холбоотой статистик мэдээлэл, эсвэл Хувийн Go- гүйрүү нэвтрэх эрхгүй бол эдгээр тохиргоог өөрчлөх боломжтой',
+ 'torrent-notification' => 'Torrent Мэдэгдэл Тохиргоо',
+ 'torrent-notification-comment' => 'Байршуулсан torrent нь шинэ сэтгэгдэл авах үед мэдэгдэл хүлээн авна',
+ 'torrent-notification-thank' => 'Байршуулсан гүүрнүүд шинэ талархал хүлээж авснаар мэдэгдэл хүлээн авна',
+ 'torrent-notification-tip' => 'Байршуулсан урсгалууд шинэ сантай болсон үед мэдэгдэл хүлээн авна',
+ 'torrent-notification-help' => 'Түргэн тусламжийн талаархи мэдэгдлийг хянах. Эдгээр тохиргоонууд нь та ямар нэгэн бүлгүүд нь урсгал үйл ажиллагаатай холбоотой мэдэгдэл илгээхийг зөвшөөрөхгүй эсвэл Мэдэгдэлийг идэвхгүй болгох тохиолдолд өөрчлөх боломжтой',
+ 'torrent-privacy' => 'Torrent Тохиргоо',
+ 'torrent-privacy-download' => 'Өөрийн татаж авсан дуунуудын жагсаалтыг үзэхийг хэрэглэгчид зөвшөөрөх',
+ 'torrent-privacy-upload' => 'Хэрэглэгчид таны байршуулсан дуунуудын жагсаалтыг гаргахыг зөвшөөрөх',
+ 'torrent-privacy-peer' => 'Хэрэглэгчдэд тань тээгчдийн түүхийн хүснэгтийг харахыг зөвшөөрөх',
+ 'torrents' => 'Торрент',
+ 'torrents-history' => 'Түр хугацааны түүх',
+ 'total-download' => 'Нийт татан авалт',
+ 'total-downloads' => 'Нийт татаж авах',
+ 'total-leeching' => 'Нийт Leeching',
+ 'total-seeding' => 'Нийт тариалалт',
+ 'total-seedtime' => 'Нийт ургац',
+ 'total-upload' => 'Нийт байршуулалт',
+ 'total-uploads' => 'Нийт байршуулалт',
+ 'unban' => 'Unban User',
+ 'unfollow' => 'Дахин дагахгүй',
+ 'unlocked' => 'Нээлттэй байна',
+ 'unlocked-achievements' => 'Нээлтт амжилтгүй болсон',
+ 'unsatisfieds' => 'Сэтгэл дундуур байна',
+ 'upload-bon' => 'Бон дэлгүүрээс нэмсэн байршуулалт',
+ 'upload-recorded' => 'Бичлэг хийсэн',
+ 'upload-true' => 'Жинхэнэ байршуулалт',
+ 'uploads' => 'Байршуулах',
+ 'uploads-table' => 'Хүснэгтийг байршуул',
+ 'user' => 'Хэрэглэгч',
+ 'user-id' => 'Хэрэглэгчийн ID',
+ 'username-seedbox' => 'Хэрэглэгчийн нэр Seedbox',
+ 'visible-to-achievement' => 'Харагдахуйц амжилтууд',
+ 'visible-to-achievement-help' => 'Таны ололт амжилт нь зөвхөн ажилтнууд болон дараах бүлгүүдэд харагдах болно. Хэрэв та Go Private бол эдгээр тохиргоог өөрчлөх боломжтой',
+ 'visible-to-follower' => 'Харагдах байдал',
+ 'visible-to-follower-help' => 'Таны дагалдагчид зөвхөн ажилтнууд болон дараах бүлгүүдэд харагдах болно. Хэрэв та Go Private бол эдгээр тохиргоог өөрчлөх боломжтой',
+ 'visible-to-forum' => 'Харагдах форумын мэдээлэл',
+ 'visible-to-forum-help' => 'Таны форумын мэдээлэл зөвхөн ажилтнууд болон дараах бүлгүүдэд харагдах болно. Хэрэв та Go Private бол эдгээр тохиргоог өөрчлөх боломжтой',
+ 'visible-to-other' => 'Харагдах бусад',
+ 'visible-to-other-help' => 'Таны данстай холбоотой бусад мэдээлэл зөвхөн ажилтнууд болон дараах бүлгүүдэд харагдах болно. Эдгээр тохиргоонууд нь Go Private эсвэл Хэрэв та Go Hidden бол дарагдана',
+ 'visible-to-profile' => 'Харагдах байдал',
+ 'visible-to-profile-help' => 'Таны профайл зөвхөн ажилтнууд болон дараах бүлгүүдэд харагдах болно. Хэрэв та Go Private бол эдгээр тохиргоог өөрчлөх боломжтой',
+ 'visible-to-request' => 'Хариуцлагатай мэдээлэл хүсэх',
+ 'visible-to-request-help' => 'Таны хүсэлтийн мэдээлэл зөвхөн ажилтнууд болон дараах бүлгүүдэд харагдах болно. Хэрэв та Go Private бол эдгээр тохиргоог өөрчлөх боломжтой',
+ 'visible-to-torrent' => 'Харагдах Torrent мэдээлэл',
+ 'visible-to-torrent-help' => 'Түргэн мэдээллээ зөвхөн ажилтнууд болон дараах бүлгүүдэд харагдах болно. Эдгээр тохиргоонууд нь Go Private эсвэл Хэрэв та Go Hidden бол дарагдана',
+ 'warned-on' => 'Анхааруулга',
+ 'warning' => 'Анхааруулга',
+ 'warning-log' => 'Анхаарах лог',
+ 'wishlist' => 'Хүслийн жагсаалт',
];
diff --git a/lang/mn/validation.php b/lang/mn/validation.php
index 9e3b37dc7..4c9aab550 100644
--- a/lang/mn/validation.php
+++ b/lang/mn/validation.php
@@ -23,108 +23,108 @@ return [
|
*/
- 'accepted' => ':Attribute баталсан байх шаардлагатай.',
- 'active_url' => ':Attribute талбарт зөв URL хаяг оруулна уу.',
- 'after' => ':Attribute талбарт :date-с хойш огноо оруулна уу.',
- 'after_or_equal' => ':Attribute талбарт :date эсвэл түүнээс хойш огноо оруулна уу.',
- 'alpha' => ':Attribute талбарт латин үсэг оруулна уу.',
- 'alpha_dash' => ':Attribute талбарт латин үсэг, тоо болон зураас оруулах боломжтой.',
- 'alpha_num' => ':Attribute талбарт латин үсэг болон тоо оруулах боломжтой.',
- 'array' => ':Attribute талбар массив байх шаардлагатай.',
- 'before' => ':Attribute талбарт :date-с өмнөх огноо оруулна уу.',
- 'before_or_equal' => ':attribute талбарт :date эсвэл түүнээс өмнөх огноо оруулна уу.',
- 'between' => [
+ 'accepted' => ':Attribute баталсан байх шаардлагатай.',
+ 'active_url' => ':Attribute талбарт зөв URL хаяг оруулна уу.',
+ 'after' => ':Attribute талбарт :date-с хойш огноо оруулна уу.',
+ 'after_or_equal' => ':Attribute талбарт :date эсвэл түүнээс хойш огноо оруулна уу.',
+ 'alpha' => ':Attribute талбарт латин үсэг оруулна уу.',
+ 'alpha_dash' => ':Attribute талбарт латин үсэг, тоо болон зураас оруулах боломжтой.',
+ 'alpha_num' => ':Attribute талбарт латин үсэг болон тоо оруулах боломжтой.',
+ 'array' => ':Attribute талбар массив байх шаардлагатай.',
+ 'before' => ':Attribute талбарт :date-с өмнөх огноо оруулна уу.',
+ 'before_or_equal' => ':attribute талбарт :date эсвэл түүнээс өмнөх огноо оруулна уу.',
+ 'between' => [
'numeric' => ':Attribute талбарт :min-:max хооронд тоо оруулна уу.',
- 'file' => ':Attribute талбарт :min-:max килобайт хэмжээтэй файл оруулна уу.',
- 'string' => ':Attribute талбарт :min-:max урттай текст оруулна уу.',
- 'array' => ':Attribute массивт :min-:max элемэнт байх шаардлагатай.',
+ 'file' => ':Attribute талбарт :min-:max килобайт хэмжээтэй файл оруулна уу.',
+ 'string' => ':Attribute талбарт :min-:max урттай текст оруулна уу.',
+ 'array' => ':Attribute массивт :min-:max элемэнт байх шаардлагатай.',
],
- 'boolean' => ':Attribute талбарын утга үнэн эсвэл худал байх шаардлагатай.',
- 'confirmed' => ':Attribute талбарын баталагажуулалт тохирохгүй байна.',
- 'date' => ':Attribute талбарт оруулсан огноо буруу байна.',
- 'date_equals' => 'The :attribute must be a date equal to :date.',
- 'date_format' => ':Attribute талбарт :format хэлбэртэй огноо оруулна уу.',
- 'different' => ':Attribute талбарт :other -с өөр утга оруулах шаардлагатай.',
- 'digits' => ':Attribute талбарт дараах цифрүүдээс оруулах боломжтой. :digits.',
- 'digits_between' => ':Attribute талбарт :min-:max хоорондох цифр оруулах боломжтой.',
- 'dimensions' => ':Attribute талбарийн зургийн хэмжээс буруу байна.',
- 'distinct' => ':Attribute талбарт ялгаатай утга оруулах шаардлагатай.',
- 'email' => ':Attribute талбарт зөв и-мэйл хаяг оруулах шаардлагатай.',
- 'exists' => 'Сонгогдсон :attribute буруу байна.',
- 'file' => ':Attribute талбарт файл оруулах шаардлагатай.',
- 'filled' => ':Attribute талбар шаардлагатай.',
- 'gt' => [
+ 'boolean' => ':Attribute талбарын утга үнэн эсвэл худал байх шаардлагатай.',
+ 'confirmed' => ':Attribute талбарын баталагажуулалт тохирохгүй байна.',
+ 'date' => ':Attribute талбарт оруулсан огноо буруу байна.',
+ 'date_equals' => 'The :attribute must be a date equal to :date.',
+ 'date_format' => ':Attribute талбарт :format хэлбэртэй огноо оруулна уу.',
+ 'different' => ':Attribute талбарт :other -с өөр утга оруулах шаардлагатай.',
+ 'digits' => ':Attribute талбарт дараах цифрүүдээс оруулах боломжтой. :digits.',
+ 'digits_between' => ':Attribute талбарт :min-:max хоорондох цифр оруулах боломжтой.',
+ 'dimensions' => ':Attribute талбарийн зургийн хэмжээс буруу байна.',
+ 'distinct' => ':Attribute талбарт ялгаатай утга оруулах шаардлагатай.',
+ 'email' => ':Attribute талбарт зөв и-мэйл хаяг оруулах шаардлагатай.',
+ 'exists' => 'Сонгогдсон :attribute буруу байна.',
+ 'file' => ':Attribute талбарт файл оруулах шаардлагатай.',
+ 'filled' => ':Attribute талбар шаардлагатай.',
+ 'gt' => [
'numeric' => 'The :attribute must be greater than :value.',
- 'file' => 'The :attribute must be greater than :value kilobytes.',
- 'string' => 'The :attribute must be greater than :value characters.',
- 'array' => 'The :attribute must have more than :value items.',
+ 'file' => 'The :attribute must be greater than :value kilobytes.',
+ 'string' => 'The :attribute must be greater than :value characters.',
+ 'array' => 'The :attribute must have more than :value items.',
],
- 'gte' => [
+ 'gte' => [
'numeric' => 'The :attribute must be greater than or equal :value.',
- 'file' => 'The :attribute must be greater than or equal :value kilobytes.',
- 'string' => 'The :attribute must be greater than or equal :value characters.',
- 'array' => 'The :attribute must have :value items or more.',
+ 'file' => 'The :attribute must be greater than or equal :value kilobytes.',
+ 'string' => 'The :attribute must be greater than or equal :value characters.',
+ 'array' => 'The :attribute must have :value items or more.',
],
- 'image' => ':Attribute талбарт зураг оруулна уу.',
- 'in' => 'Сонгогдсон :attribute буруу байна.',
- 'in_array' => ':Attribute талбарт оруулсан утга :other -д байхгүй байна.',
- 'integer' => ':Attribute талбарт бүхэл тоо оруулах шаардлагатай.',
- 'ip' => ':Attribute талбарт зөв IP хаяг оруулах шаардлагатай.',
- 'ipv4' => 'The :attribute must be a valid IPv4 address.',
- 'ipv6' => 'The :attribute must be a valid IPv6 address.',
- 'json' => ':Attribute талбарт зөв JSON тэмдэгт мөр оруулах шаардлагатай.',
- 'lt' => [
+ 'image' => ':Attribute талбарт зураг оруулна уу.',
+ 'in' => 'Сонгогдсон :attribute буруу байна.',
+ 'in_array' => ':Attribute талбарт оруулсан утга :other -д байхгүй байна.',
+ 'integer' => ':Attribute талбарт бүхэл тоо оруулах шаардлагатай.',
+ 'ip' => ':Attribute талбарт зөв IP хаяг оруулах шаардлагатай.',
+ 'ipv4' => 'The :attribute must be a valid IPv4 address.',
+ 'ipv6' => 'The :attribute must be a valid IPv6 address.',
+ 'json' => ':Attribute талбарт зөв JSON тэмдэгт мөр оруулах шаардлагатай.',
+ 'lt' => [
'numeric' => 'The :attribute must be less than :value.',
- 'file' => 'The :attribute must be less than :value kilobytes.',
- 'string' => 'The :attribute must be less than :value characters.',
- 'array' => 'The :attribute must have less than :value items.',
+ 'file' => 'The :attribute must be less than :value kilobytes.',
+ 'string' => 'The :attribute must be less than :value characters.',
+ 'array' => 'The :attribute must have less than :value items.',
],
- 'lte' => [
+ 'lte' => [
'numeric' => 'The :attribute must be less than or equal :value.',
- 'file' => 'The :attribute must be less than or equal :value kilobytes.',
- 'string' => 'The :attribute must be less than or equal :value characters.',
- 'array' => 'The :attribute must not have more than :value items.',
+ 'file' => 'The :attribute must be less than or equal :value kilobytes.',
+ 'string' => 'The :attribute must be less than or equal :value characters.',
+ 'array' => 'The :attribute must not have more than :value items.',
],
- 'max' => [
+ 'max' => [
'numeric' => ':Attribute талбарт :max буюу түүнээс бага утга оруулна уу.',
- 'file' => ':Attribute талбарт :max килобайтаас бага хэмжээтэй файл оруулна уу.',
- 'string' => ':Attribute талбарт :max-с бага урттай текст оруулна уу.',
- 'array' => ':Attribute талбарт хамгийн ихдээ :max элемэнт оруулах боломжтой.',
+ 'file' => ':Attribute талбарт :max килобайтаас бага хэмжээтэй файл оруулна уу.',
+ 'string' => ':Attribute талбарт :max-с бага урттай текст оруулна уу.',
+ 'array' => ':Attribute талбарт хамгийн ихдээ :max элемэнт оруулах боломжтой.',
],
- 'mimes' => ':Attribute талбарт дараах төрлийн файл оруулах боломжтой: :values.',
- 'mimetypes' => ':Attribute талбарт дараах төрлийн файл оруулах боломжтой: :values.',
- 'min' => [
+ 'mimes' => ':Attribute талбарт дараах төрлийн файл оруулах боломжтой: :values.',
+ 'mimetypes' => ':Attribute талбарт дараах төрлийн файл оруулах боломжтой: :values.',
+ 'min' => [
'numeric' => ':Attribute талбарт :min буюу түүнээс их тоо оруулна уу.',
- 'file' => ':Attribute талбарт :min килобайтаас их хэмжээтэй файл оруулна уу.',
- 'string' => ':Attribute талбарт :min буюу түүнээс их үсэг бүхий текст оруулна уу.',
- 'array' => ':Attribute талбарт хамгийн багадаа :min элемэнт оруулах боломжтой.',
+ 'file' => ':Attribute талбарт :min килобайтаас их хэмжээтэй файл оруулна уу.',
+ 'string' => ':Attribute талбарт :min буюу түүнээс их үсэг бүхий текст оруулна уу.',
+ 'array' => ':Attribute талбарт хамгийн багадаа :min элемэнт оруулах боломжтой.',
],
- 'not_in' => 'Буруу :attribute сонгогдсон байна.',
- 'not_regex' => 'The :attribute format is invalid.',
- 'numeric' => ':Attribute талбарт тоон утга оруулна уу.',
- 'present' => ':Attribute талбар байх шаардлагатай.',
- 'regex' => ':Attribute талбарт оруулсан утга буруу байна.',
- 'required' => ':Attribute талбар шаардлагатай.',
- 'required_if' => 'Хэрэв :other :value бол :attribute табларт утга оруулах шаардлагатай.',
- 'required_unless' => ':other :values дотор байхгүй бол :attribute талбарт утга оруулах шаардлагатай.',
- 'required_with' => ':values утгуудийн аль нэг байвал :attribute талбар шаардлагатай.',
- 'required_with_all' => ':values утгууд байвал :attribute талбар шаардлагатай.',
- 'required_without' => 'The :attribute field is required when :values is not present.',
+ 'not_in' => 'Буруу :attribute сонгогдсон байна.',
+ 'not_regex' => 'The :attribute format is invalid.',
+ 'numeric' => ':Attribute талбарт тоон утга оруулна уу.',
+ 'present' => ':Attribute талбар байх шаардлагатай.',
+ 'regex' => ':Attribute талбарт оруулсан утга буруу байна.',
+ 'required' => ':Attribute талбар шаардлагатай.',
+ 'required_if' => 'Хэрэв :other :value бол :attribute табларт утга оруулах шаардлагатай.',
+ 'required_unless' => ':other :values дотор байхгүй бол :attribute талбарт утга оруулах шаардлагатай.',
+ 'required_with' => ':values утгуудийн аль нэг байвал :attribute талбар шаардлагатай.',
+ 'required_with_all' => ':values утгууд байвал :attribute талбар шаардлагатай.',
+ 'required_without' => 'The :attribute field is required when :values is not present.',
'required_without_all' => 'The :attribute field is required when none of :values are present.',
- 'same' => 'The :attribute and :other must match.',
- 'size' => [
+ 'same' => 'The :attribute and :other must match.',
+ 'size' => [
'numeric' => ':Attribute :size хэмжээтэй байх шаардлагатай.',
- 'file' => ':Attribute :size килобайт хэмжээтэй байх шаардлагатай.',
- 'string' => ':Attribute :size тэмдэгтийн урттай байх шаардлагатай.',
- 'array' => ':Attribute :size элемэнттэй байх шаардлагатай.',
+ 'file' => ':Attribute :size килобайт хэмжээтэй байх шаардлагатай.',
+ 'string' => ':Attribute :size тэмдэгтийн урттай байх шаардлагатай.',
+ 'array' => ':Attribute :size элемэнттэй байх шаардлагатай.',
],
- 'starts_with' => 'The :attribute must start with one of the following: :values',
- 'string' => ':Attribute талбарт текст оруулна уу.',
- 'timezone' => ':Attribute талбарт зөв цагийн бүс оруулна уу.',
- 'unique' => 'Оруулсан :attribute аль хэдий нь бүртгэгдсэн байна.',
- 'uploaded' => ':Attribute талбарт оруулсан файлыг хуулхад алдаа гарлаа.',
- 'url' => ':Attribute зөв url хаяг оруулна уу.',
- 'uuid' => 'The :attribute must be a valid UUID.',
+ 'starts_with' => 'The :attribute must start with one of the following: :values',
+ 'string' => ':Attribute талбарт текст оруулна уу.',
+ 'timezone' => ':Attribute талбарт зөв цагийн бүс оруулна уу.',
+ 'unique' => 'Оруулсан :attribute аль хэдий нь бүртгэгдсэн байна.',
+ 'uploaded' => ':Attribute талбарт оруулсан файлыг хуулхад алдаа гарлаа.',
+ 'url' => ':Attribute зөв url хаяг оруулна уу.',
+ 'uuid' => 'The :attribute must be a valid UUID.',
/*
|--------------------------------------------------------------------------
diff --git a/lang/ms/articles.php b/lang/ms/articles.php
index 6e1fe94dc..0ffd9c270 100644
--- a/lang/ms/articles.php
+++ b/lang/ms/articles.php
@@ -12,8 +12,8 @@
*/
return [
- 'articles' => 'Artikel',
+ 'articles' => 'Artikel',
'meta-articles' => 'Artikel dan berita mengenai pelacak dan komuniti',
- 'published-at' => 'Diterbitkan Pada',
- 'read-more' => 'Baca Lebih Lanjut',
+ 'published-at' => 'Diterbitkan Pada',
+ 'read-more' => 'Baca Lebih Lanjut',
];
diff --git a/lang/ms/auth.php b/lang/ms/auth.php
index 6c187b187..bccc1d0c7 100644
--- a/lang/ms/auth.php
+++ b/lang/ms/auth.php
@@ -23,6 +23,6 @@ return [
|
*/
- 'failed' => 'Butiran ini tidak sepadan dengan rekod kami.',
+ 'failed' => 'Butiran ini tidak sepadan dengan rekod kami.',
'throttle' => 'Terlalu banyak percubaan log masuk. Sila cuba lagi dalam :seconds saat.',
];
diff --git a/lang/ms/backup.php b/lang/ms/backup.php
index 1b8646ebc..dbb4909fb 100644
--- a/lang/ms/backup.php
+++ b/lang/ms/backup.php
@@ -12,32 +12,32 @@
*/
return [
- 'actions' => 'Tindakan',
- 'backup' => 'Sandaran',
- 'backup_doesnt_exist' => 'Fail sandaran tidak wujud.',
- 'create_a_new_backup' => 'Buat Backup Penuh',
- 'create_a_new_files_backup' => 'Buat Backup Fail',
- 'create_a_new_db_backup' => 'Buat Backup Pangkalan Data',
- 'create_confirmation_message' => 'Memuat semula halaman dalam 3 saat.',
- 'create_confirmation_title' => 'Backup selesai',
- 'create_error_message' => 'Fail sandaran TIDAK boleh dibuat.',
- 'create_error_title' => 'Kesilapan sandaran',
- 'create_warning_message' => 'Cadangan anda TIDAK boleh dibuat. Sila periksa fail log untuk butirannya.',
- 'create_warning_title' => 'Ralat tidak diketahui',
- 'date' => 'Tarikh',
- 'delete' => 'Padam',
- 'delete_cancel_message' => 'Fail sandaran TIDAK dihapuskan.',
- 'delete_cancel_title' => 'Tidak mengapa',
- 'delete_confirm' => 'Adakah anda pasti mahu memadamkan fail sandaran ini?',
- 'delete_confirmation_message' => 'Fail sandaran telah dipadamkan.',
- 'delete_confirmation_title' => 'Selesai',
- 'delete_error_message' => 'Fail sandaran TIDAK dihapuskan.',
- 'delete_error_title' => 'Ralat',
- 'download' => 'Muat turun',
- 'existing_backups' => 'Sandaran sedia ada',
- 'file_size' => 'Saiz fail',
- 'location' => 'Lokasi',
- 'manager' => 'Pengurus',
- 'no_disks_configured' => 'Tiada cakera sandaran yang dikonfigurasikan dalam config / backup.php',
+ 'actions' => 'Tindakan',
+ 'backup' => 'Sandaran',
+ 'backup_doesnt_exist' => 'Fail sandaran tidak wujud.',
+ 'create_a_new_backup' => 'Buat Backup Penuh',
+ 'create_a_new_files_backup' => 'Buat Backup Fail',
+ 'create_a_new_db_backup' => 'Buat Backup Pangkalan Data',
+ 'create_confirmation_message' => 'Memuat semula halaman dalam 3 saat.',
+ 'create_confirmation_title' => 'Backup selesai',
+ 'create_error_message' => 'Fail sandaran TIDAK boleh dibuat.',
+ 'create_error_title' => 'Kesilapan sandaran',
+ 'create_warning_message' => 'Cadangan anda TIDAK boleh dibuat. Sila periksa fail log untuk butirannya.',
+ 'create_warning_title' => 'Ralat tidak diketahui',
+ 'date' => 'Tarikh',
+ 'delete' => 'Padam',
+ 'delete_cancel_message' => 'Fail sandaran TIDAK dihapuskan.',
+ 'delete_cancel_title' => 'Tidak mengapa',
+ 'delete_confirm' => 'Adakah anda pasti mahu memadamkan fail sandaran ini?',
+ 'delete_confirmation_message' => 'Fail sandaran telah dipadamkan.',
+ 'delete_confirmation_title' => 'Selesai',
+ 'delete_error_message' => 'Fail sandaran TIDAK dihapuskan.',
+ 'delete_error_title' => 'Ralat',
+ 'download' => 'Muat turun',
+ 'existing_backups' => 'Sandaran sedia ada',
+ 'file_size' => 'Saiz fail',
+ 'location' => 'Lokasi',
+ 'manager' => 'Pengurus',
+ 'no_disks_configured' => 'Tiada cakera sandaran yang dikonfigurasikan dalam config / backup.php',
'only_local_downloads_supported' => 'Hanya muat turun dari sistem fail Tempatan disokong.',
];
diff --git a/lang/ms/blocks.php b/lang/ms/blocks.php
index 36feef70f..17c5adfd0 100644
--- a/lang/ms/blocks.php
+++ b/lang/ms/blocks.php
@@ -12,19 +12,19 @@
*/
return [
- 'chatbox' => 'Peti Sembang',
- 'click' => 'Klik',
- 'to-enable-editor' => 'untuk membolehkan editor',
- 'featured-by' => 'Disediakan oleh',
- 'featured-torrents' => 'Torrents yang ditonjolkan',
+ 'chatbox' => 'Peti Sembang',
+ 'click' => 'Klik',
+ 'to-enable-editor' => 'untuk membolehkan editor',
+ 'featured-by' => 'Disediakan oleh',
+ 'featured-torrents' => 'Torrents yang ditonjolkan',
'featured-torrents-intro' => 'Dapatkan Mereka Walaupun Anda Boleh!',
- 'featured-until' => 'Ini adalah tajuk utama sehingga',
- 'top-torrents' => 'Torrents Teratas',
- 'latest-posts' => 'Catatan Terkini',
- 'latest-topics' => 'Topik Terkini',
- 'active-in-last' => 'Aktif dalam terakhir',
- 'users-online' => 'Pengguna dalam talian',
- 'check-news' => 'Berita (periksa setiap hari)',
- 'new-news' => 'Berita baru',
- 'new-torrents' => 'Torrents baru',
+ 'featured-until' => 'Ini adalah tajuk utama sehingga',
+ 'top-torrents' => 'Torrents Teratas',
+ 'latest-posts' => 'Catatan Terkini',
+ 'latest-topics' => 'Topik Terkini',
+ 'active-in-last' => 'Aktif dalam terakhir',
+ 'users-online' => 'Pengguna dalam talian',
+ 'check-news' => 'Berita (periksa setiap hari)',
+ 'new-news' => 'Berita baru',
+ 'new-torrents' => 'Torrents baru',
];
diff --git a/lang/ms/bon.php b/lang/ms/bon.php
index c139f1482..bc0f5d05f 100644
--- a/lang/ms/bon.php
+++ b/lang/ms/bon.php
@@ -12,44 +12,44 @@
*/
return [
- 'activated' => 'Diaktifkan',
- 'active' => 'Diaktifkan!',
- 'amount' => 'Jumlah',
- 'bon' => 'BON',
- 'bonus' => 'Bonus',
- 'date' => 'Tarikh',
- 'earning' => 'Pendapatan',
- 'earning-rate' => 'Pada kadar pendapatan anda, anda akan mendapat berikut mengikut tempoh ..',
- 'earnings' => 'Pendapatan',
- 'exchange' => 'Pertukaran',
- 'exchange-warning' => 'Pertukaran adalah muktamad, Sila semak semula pilihan anda sebelum membuat pertukaran.',
- 'extended-stats' => 'Statistik Lanjutan',
- 'gift' => 'Hadiah',
- 'gift-bonus' => 'Mata Bonus Hadiah',
- 'gift-to' => 'Mata Bonus Hadiah Kepada',
- 'gifts' => 'Hadiah',
- 'item' => 'Perkara',
- 'no-refund' => 'NO REFUNDS!',
- 'per-day' => 'Mata Setiap Hari',
- 'per-hour' => 'Mata Setiap Jam',
- 'per-minute' => 'Mata Setiap Menit',
- 'per-month' => 'Mata Per Bulan',
- 'per-second' => 'Mata Per Kedua',
- 'per-week' => 'Mata Setiap Minggu',
- 'per-year' => 'Mata Per Tahun',
- 'points' => 'Mata',
- 'receiver' => 'Penerima',
- 'review-seeds' => 'Tinjau Semua Torrents Beranak',
- 'send-gift' => 'Hantar hadiah',
- 'sender' => 'Pengirim',
- 'store' => 'Kedai',
- 'tips' => 'Petua',
- 'total' => 'jumlah pendapatan',
- 'total-gifts' => 'Dalam Hadiah BON Jumlah',
- 'total-tips' => 'Dalam Jumlah BON Tips',
+ 'activated' => 'Diaktifkan',
+ 'active' => 'Diaktifkan!',
+ 'amount' => 'Jumlah',
+ 'bon' => 'BON',
+ 'bonus' => 'Bonus',
+ 'date' => 'Tarikh',
+ 'earning' => 'Pendapatan',
+ 'earning-rate' => 'Pada kadar pendapatan anda, anda akan mendapat berikut mengikut tempoh ..',
+ 'earnings' => 'Pendapatan',
+ 'exchange' => 'Pertukaran',
+ 'exchange-warning' => 'Pertukaran adalah muktamad, Sila semak semula pilihan anda sebelum membuat pertukaran.',
+ 'extended-stats' => 'Statistik Lanjutan',
+ 'gift' => 'Hadiah',
+ 'gift-bonus' => 'Mata Bonus Hadiah',
+ 'gift-to' => 'Mata Bonus Hadiah Kepada',
+ 'gifts' => 'Hadiah',
+ 'item' => 'Perkara',
+ 'no-refund' => 'NO REFUNDS!',
+ 'per-day' => 'Mata Setiap Hari',
+ 'per-hour' => 'Mata Setiap Jam',
+ 'per-minute' => 'Mata Setiap Menit',
+ 'per-month' => 'Mata Per Bulan',
+ 'per-second' => 'Mata Per Kedua',
+ 'per-week' => 'Mata Setiap Minggu',
+ 'per-year' => 'Mata Per Tahun',
+ 'points' => 'Mata',
+ 'receiver' => 'Penerima',
+ 'review-seeds' => 'Tinjau Semua Torrents Beranak',
+ 'send-gift' => 'Hantar hadiah',
+ 'sender' => 'Pengirim',
+ 'store' => 'Kedai',
+ 'tips' => 'Petua',
+ 'total' => 'jumlah pendapatan',
+ 'total-gifts' => 'Dalam Hadiah BON Jumlah',
+ 'total-tips' => 'Dalam Jumlah BON Tips',
'you-have-received-gifts' => 'Anda telah menerima',
- 'you-have-sent-gifts' => 'Anda telah hantar',
- 'you-have-received-tips' => 'Anda telah menerima',
- 'you-have-sent-tips' => 'Anda telah hantar',
- 'your-points' => 'Mata Anda',
+ 'you-have-sent-gifts' => 'Anda telah hantar',
+ 'you-have-received-tips' => 'Anda telah menerima',
+ 'you-have-sent-tips' => 'Anda telah hantar',
+ 'your-points' => 'Mata Anda',
];
diff --git a/lang/ms/bot.php b/lang/ms/bot.php
index 8b356a100..33cd1ec7d 100644
--- a/lang/ms/bot.php
+++ b/lang/ms/bot.php
@@ -12,15 +12,15 @@
*/
return [
- 'about' => 'Mengenai',
- 'bot' => 'Bot',
- 'bots' => 'Bot',
- 'color' => 'Warna',
- 'command' => 'Perintah',
- 'edit-bot' => 'Edit Bot',
+ 'about' => 'Mengenai',
+ 'bot' => 'Bot',
+ 'bots' => 'Bot',
+ 'color' => 'Warna',
+ 'command' => 'Perintah',
+ 'edit-bot' => 'Edit Bot',
'emoji-code' => 'Kod Emoji',
- 'help' => 'Bantuan',
- 'icon' => 'Ikon',
- 'info' => 'Maklumat',
- 'name' => 'Nama',
+ 'help' => 'Bantuan',
+ 'icon' => 'Ikon',
+ 'info' => 'Maklumat',
+ 'name' => 'Nama',
];
diff --git a/lang/ms/bug.php b/lang/ms/bug.php
index 8192d9474..5dabe0c1f 100644
--- a/lang/ms/bug.php
+++ b/lang/ms/bug.php
@@ -12,15 +12,15 @@
*/
return [
- 'bug-report' => 'Laporan bug',
+ 'bug-report' => 'Laporan bug',
'bug-report-description' => 'Laporkan bug tapak',
- 'enter-description' => 'Terangkan masalah sebaik mungkin',
- 'enter-email' => 'Sila masukkan e-mel anda',
- 'enter-title' => 'Sila pilih tajuk yang betul',
- 'enter-username' => 'Sila masukkan nama pengguna anda',
- 'high' => 'Tinggi',
- 'low' => 'Rendah',
- 'priority' => 'Keutamaan',
- 'priority-description' => 'Pilih hanya sangat tinggi jika bug benar-benar menjadi masalah untuk menggunakan laman web ini.',
- 'very-high' => 'Sangat tinggi',
+ 'enter-description' => 'Terangkan masalah sebaik mungkin',
+ 'enter-email' => 'Sila masukkan e-mel anda',
+ 'enter-title' => 'Sila pilih tajuk yang betul',
+ 'enter-username' => 'Sila masukkan nama pengguna anda',
+ 'high' => 'Tinggi',
+ 'low' => 'Rendah',
+ 'priority' => 'Keutamaan',
+ 'priority-description' => 'Pilih hanya sangat tinggi jika bug benar-benar menjadi masalah untuk menggunakan laman web ini.',
+ 'very-high' => 'Sangat tinggi',
];
diff --git a/lang/ms/common.php b/lang/ms/common.php
index e2c070b10..d3e3f24b6 100644
--- a/lang/ms/common.php
+++ b/lang/ms/common.php
@@ -12,179 +12,179 @@
*/
return [
- 'a-an-art' => '',
- 'about' => 'Tentang kita',
- 'account' => 'Akaun',
- 'achievement-title' => 'Awesome',
+ 'a-an-art' => '',
+ 'about' => 'Tentang kita',
+ 'account' => 'Akaun',
+ 'achievement-title' => 'Awesome',
'achievement-unlocked' => 'Anda membuka kunci "nama" pencapaian',
- 'active' => 'Aktif',
- 'active-warning' => 'Amaran aktif',
- 'add' => 'Tambah',
- 'added' => 'Ditambah',
- 'amount' => 'Jumlah',
- 'anonymous' => 'Anonymous',
- 'author' => 'Pengarang',
- 'balance' => 'Seimbang',
- 'blacklist' => 'Senarai Blacklist Pelanggan',
- 'buffer' => 'Penimbal',
- 'bug' => 'Laporkan Bug A',
- 'but' => 'Tetapi',
- 'cancel' => 'Batalkan',
- 'category' => 'Kategori',
- 'categories' => 'Kategori',
- 'close' => 'Tutup',
- 'comment' => 'Komen',
- 'comments' => 'Komen',
- 'community' => 'Komuniti',
- 'contact' => 'Hubungi',
- 'contact-desc' => 'Permintaan kenalan ini akan dihantar kepada pemilik dan akan kembali kepada anda secepat mungkin',
- 'contact-header' => 'Hello',
- 'create' => 'Buat',
- 'created_at' => 'Dicipta Pada',
- 'day' => 'Hari',
- 'delete' => 'Padam',
- 'delete-your-comment' => 'Padamkan ulasan anda',
- 'description' => 'Penerangan',
- 'direction' => 'Arah',
- 'disable' => 'Lumpuhkan',
- 'doubleup_activated' => 'Mod muat naik Global Double diaktifkan',
- 'download' => 'Muat turun',
- 'edit' => 'Edit',
- 'edit-your-comment' => 'Edit ulasan anda',
- 'email' => 'E-mel',
- 'email-blacklist' => 'Senarai Blacklist E-mel',
- 'email-whitelist' => 'Senarai Putih E-mel',
+ 'active' => 'Aktif',
+ 'active-warning' => 'Amaran aktif',
+ 'add' => 'Tambah',
+ 'added' => 'Ditambah',
+ 'amount' => 'Jumlah',
+ 'anonymous' => 'Anonymous',
+ 'author' => 'Pengarang',
+ 'balance' => 'Seimbang',
+ 'blacklist' => 'Senarai Blacklist Pelanggan',
+ 'buffer' => 'Penimbal',
+ 'bug' => 'Laporkan Bug A',
+ 'but' => 'Tetapi',
+ 'cancel' => 'Batalkan',
+ 'category' => 'Kategori',
+ 'categories' => 'Kategori',
+ 'close' => 'Tutup',
+ 'comment' => 'Komen',
+ 'comments' => 'Komen',
+ 'community' => 'Komuniti',
+ 'contact' => 'Hubungi',
+ 'contact-desc' => 'Permintaan kenalan ini akan dihantar kepada pemilik dan akan kembali kepada anda secepat mungkin',
+ 'contact-header' => 'Hello',
+ 'create' => 'Buat',
+ 'created_at' => 'Dicipta Pada',
+ 'day' => 'Hari',
+ 'delete' => 'Padam',
+ 'delete-your-comment' => 'Padamkan ulasan anda',
+ 'description' => 'Penerangan',
+ 'direction' => 'Arah',
+ 'disable' => 'Lumpuhkan',
+ 'doubleup_activated' => 'Mod muat naik Global Double diaktifkan',
+ 'download' => 'Muat turun',
+ 'edit' => 'Edit',
+ 'edit-your-comment' => 'Edit ulasan anda',
+ 'email' => 'E-mel',
+ 'email-blacklist' => 'Senarai Blacklist E-mel',
+ 'email-whitelist' => 'Senarai Putih E-mel',
'email-list-notactive' => 'Sistem Senarai Putih / Hitam Emel Tidak Diaktifkan',
- 'enable' => 'Dayakan',
- 'enter' => 'Masukkan',
- 'error' => 'Ralat',
- 'everyday' => 'Setiap hari',
- 'expired' => 'Tamat tempoh',
- 'extra' => 'Tambahan',
- 'extra-stats' => 'Tambahan-Statistik',
- 'faq' => 'Soalan Lazim',
- 'files' => 'Fail',
- 'fl_token' => 'Freeleech Token',
- 'fl_tokens' => 'Token Freeleech',
- 'for' => 'untuk',
- 'forum' => 'Forum',
- 'free' => 'Percuma',
- 'freeleech_activated' => 'Mod Global Freeleech diaktifkan',
- 'global' => 'Global',
- 'group' => 'Kumpulan',
- 'groups' => 'Kumpulan',
- 'hidden' => 'Tersembunyi',
- 'high-speeds' => 'Kelajuan tinggi',
- 'home' => 'Rumah',
- 'hot' => 'Panas!',
- 'hour' => 'Jam',
- 'huge' => 'Besar',
- 'info' => 'Maklumat',
- 'internal' => 'Dalaman',
- 'ip' => 'IP',
- 'is-allowed' => 'dibenarkan',
- 'large' => 'Besar',
- 'latest' => 'Terkini',
- 'latest-posts' => 'Catatan Terkini',
- 'latest-topics' => 'Topik Terkini',
- 'legal' => 'Undang-undang',
- 'legend' => 'Legend',
- 'lists' => 'Senarai',
- 'lock-account' => 'Kunci akaun',
- 'logout' => 'Log keluar',
- 'members' => 'Ahli',
- 'message' => 'Mesej',
- 'minute' => 'Minit',
- 'moderated-by' => 'Sederhana oleh',
- 'moderation' => 'Kesederhanaan',
- 'moderation-approve' => 'Terima',
- 'moderation-postpone' => 'Menangguhkan',
- 'moderation-reject' => 'Tolak',
- 'month' => 'Bulan',
- 'months' => 'Bulan',
- 'my' => 'Saya',
- 'name' => 'Nama',
- 'navigation' => 'Navigasi',
- 'new' => 'Baru!',
- 'new-adj' => 'Baru',
- 'news' => 'Berita',
- 'next' => 'Seterusnya',
- 'no' => 'Tidak',
- 'no-comments' => 'Tiada komen Namun',
- 'no-result' => 'Tiada hasil pangkalan data untuk pertanyaan',
- 'notifications' => 'Pemberitahuan',
- 'older-than' => 'Lebih tua daripada',
- 'oldest' => 'Paling lama',
- 'openreg_activated' => 'Pendaftaran terbuka diaktifkan',
- 'order-by' => 'Perintah oleh',
- 'other' => 'Lain-lain',
- 'pages' => 'Halaman-halaman',
- 'password' => 'Kata laluan',
- 'patron' => 'Menjadi Pelindung',
- 'pending-torrents' => 'Menunggu torrents',
- 'personal' => 'Peribadi',
- 'plural-suffix' => 's',
- 'port' => 'Pelabuhan',
- 'position' => 'Jawatan',
- 'posts' => 'Posts',
- 'powered-by' => 'Dikuasakan oleh UNIT3D',
- 'preview' => 'Pratonton',
- 'previous' => 'Sebelum ini',
- 'progress' => 'Kemajuan',
- 'publish' => 'Menerbitkan',
- 'quantity' => 'Kuantiti',
- 'quick-search' => 'Pencarian pantas',
- 'ratio' => 'Nisbah',
- 'reason' => 'Sebab',
- 'remove' => 'Keluarkan',
- 'report' => 'Laporan',
- 'resend' => 'Hantar semula',
- 'reporter' => 'Wartawan',
- 'required' => 'Dikehendaki',
- 'results' => 'Keputusan',
- 'rss-system' => 'Sistem RSS',
- 'rules' => 'Peraturan',
- 'save' => 'Simpan',
- 'search' => 'Carian',
- 'search-results' => 'Keputusan Carian',
- 'search-results-desc' => 'Sila lihat keputusan anda di bawah',
- 'second' => 'Kedua',
- 'select' => 'Pilih',
- 'sort' => 'Isih',
- 'special' => 'Khas',
- 'staff' => 'Kakitangan',
- 'staff-tools' => 'Alat kakitangan',
- 'stats' => 'Statistik',
- 'status' => 'Status',
- 'sticked' => 'Sticked',
- 'submit' => 'Hantar',
- 'subscriptions' => 'Langganan',
- 'teams' => 'Pasukan',
- 'terms' => 'Syarat penggunaan',
- 'times' => 'Masa',
- 'title' => 'Tajuk',
- 'top-bountied' => 'Bountied atas',
- 'topics' => 'Topik',
- 'tracker-codes' => 'Kod Tracker',
- 'type' => 'Taipkan',
- 'type-verb' => 'Taipkan',
- 'types' => 'Jenis',
- 'genre' => 'Genre',
- 'genres' => 'Genre',
- 'action' => 'Tindakan',
- 'actions' => 'Tindakan',
- 'unknown' => 'Tidak diketahui',
+ 'enable' => 'Dayakan',
+ 'enter' => 'Masukkan',
+ 'error' => 'Ralat',
+ 'everyday' => 'Setiap hari',
+ 'expired' => 'Tamat tempoh',
+ 'extra' => 'Tambahan',
+ 'extra-stats' => 'Tambahan-Statistik',
+ 'faq' => 'Soalan Lazim',
+ 'files' => 'Fail',
+ 'fl_token' => 'Freeleech Token',
+ 'fl_tokens' => 'Token Freeleech',
+ 'for' => 'untuk',
+ 'forum' => 'Forum',
+ 'free' => 'Percuma',
+ 'freeleech_activated' => 'Mod Global Freeleech diaktifkan',
+ 'global' => 'Global',
+ 'group' => 'Kumpulan',
+ 'groups' => 'Kumpulan',
+ 'hidden' => 'Tersembunyi',
+ 'high-speeds' => 'Kelajuan tinggi',
+ 'home' => 'Rumah',
+ 'hot' => 'Panas!',
+ 'hour' => 'Jam',
+ 'huge' => 'Besar',
+ 'info' => 'Maklumat',
+ 'internal' => 'Dalaman',
+ 'ip' => 'IP',
+ 'is-allowed' => 'dibenarkan',
+ 'large' => 'Besar',
+ 'latest' => 'Terkini',
+ 'latest-posts' => 'Catatan Terkini',
+ 'latest-topics' => 'Topik Terkini',
+ 'legal' => 'Undang-undang',
+ 'legend' => 'Legend',
+ 'lists' => 'Senarai',
+ 'lock-account' => 'Kunci akaun',
+ 'logout' => 'Log keluar',
+ 'members' => 'Ahli',
+ 'message' => 'Mesej',
+ 'minute' => 'Minit',
+ 'moderated-by' => 'Sederhana oleh',
+ 'moderation' => 'Kesederhanaan',
+ 'moderation-approve' => 'Terima',
+ 'moderation-postpone' => 'Menangguhkan',
+ 'moderation-reject' => 'Tolak',
+ 'month' => 'Bulan',
+ 'months' => 'Bulan',
+ 'my' => 'Saya',
+ 'name' => 'Nama',
+ 'navigation' => 'Navigasi',
+ 'new' => 'Baru!',
+ 'new-adj' => 'Baru',
+ 'news' => 'Berita',
+ 'next' => 'Seterusnya',
+ 'no' => 'Tidak',
+ 'no-comments' => 'Tiada komen Namun',
+ 'no-result' => 'Tiada hasil pangkalan data untuk pertanyaan',
+ 'notifications' => 'Pemberitahuan',
+ 'older-than' => 'Lebih tua daripada',
+ 'oldest' => 'Paling lama',
+ 'openreg_activated' => 'Pendaftaran terbuka diaktifkan',
+ 'order-by' => 'Perintah oleh',
+ 'other' => 'Lain-lain',
+ 'pages' => 'Halaman-halaman',
+ 'password' => 'Kata laluan',
+ 'patron' => 'Menjadi Pelindung',
+ 'pending-torrents' => 'Menunggu torrents',
+ 'personal' => 'Peribadi',
+ 'plural-suffix' => 's',
+ 'port' => 'Pelabuhan',
+ 'position' => 'Jawatan',
+ 'posts' => 'Posts',
+ 'powered-by' => 'Dikuasakan oleh UNIT3D',
+ 'preview' => 'Pratonton',
+ 'previous' => 'Sebelum ini',
+ 'progress' => 'Kemajuan',
+ 'publish' => 'Menerbitkan',
+ 'quantity' => 'Kuantiti',
+ 'quick-search' => 'Pencarian pantas',
+ 'ratio' => 'Nisbah',
+ 'reason' => 'Sebab',
+ 'remove' => 'Keluarkan',
+ 'report' => 'Laporan',
+ 'resend' => 'Hantar semula',
+ 'reporter' => 'Wartawan',
+ 'required' => 'Dikehendaki',
+ 'results' => 'Keputusan',
+ 'rss-system' => 'Sistem RSS',
+ 'rules' => 'Peraturan',
+ 'save' => 'Simpan',
+ 'search' => 'Carian',
+ 'search-results' => 'Keputusan Carian',
+ 'search-results-desc' => 'Sila lihat keputusan anda di bawah',
+ 'second' => 'Kedua',
+ 'select' => 'Pilih',
+ 'sort' => 'Isih',
+ 'special' => 'Khas',
+ 'staff' => 'Kakitangan',
+ 'staff-tools' => 'Alat kakitangan',
+ 'stats' => 'Statistik',
+ 'status' => 'Status',
+ 'sticked' => 'Sticked',
+ 'submit' => 'Hantar',
+ 'subscriptions' => 'Langganan',
+ 'teams' => 'Pasukan',
+ 'terms' => 'Syarat penggunaan',
+ 'times' => 'Masa',
+ 'title' => 'Tajuk',
+ 'top-bountied' => 'Bountied atas',
+ 'topics' => 'Topik',
+ 'tracker-codes' => 'Kod Tracker',
+ 'type' => 'Taipkan',
+ 'type-verb' => 'Taipkan',
+ 'types' => 'Jenis',
+ 'genre' => 'Genre',
+ 'genres' => 'Genre',
+ 'action' => 'Tindakan',
+ 'actions' => 'Tindakan',
+ 'unknown' => 'Tidak diketahui',
'unlocked-achievement' => 'Anda membuka kunci: pencapaian pencapaian',
- 'upload' => 'Muat naik',
- 'upload-guide' => 'Muat naik panduan',
- 'user' => 'Pengguna',
- 'username' => 'Nama pengguna',
- 'users' => 'Pengguna',
- 'view' => 'Lihat',
- 'view-all' => 'Lihat semua',
- 'warnings' => 'Amaran',
- 'year' => 'Tahun',
- 'yes' => 'Ya',
- 'your' => 'Anda',
- 'your-comment' => 'Komen anda',
+ 'upload' => 'Muat naik',
+ 'upload-guide' => 'Muat naik panduan',
+ 'user' => 'Pengguna',
+ 'username' => 'Nama pengguna',
+ 'users' => 'Pengguna',
+ 'view' => 'Lihat',
+ 'view-all' => 'Lihat semua',
+ 'warnings' => 'Amaran',
+ 'year' => 'Tahun',
+ 'yes' => 'Ya',
+ 'your' => 'Anda',
+ 'your-comment' => 'Komen anda',
];
diff --git a/lang/ms/email.php b/lang/ms/email.php
index 10c6d859a..2a273b944 100644
--- a/lang/ms/email.php
+++ b/lang/ms/email.php
@@ -12,46 +12,46 @@
*/
return [
- 'activate-account' => 'Aktifkan akaun',
- 'ban-reason' => 'Sebab',
- 'banned-footer' => 'Itulah yang anda dapatkan kerana tidak mematuhi peraturan',
- 'banned-header' => 'Anda telah dilarang',
- 'bug-description' => 'Masalah',
- 'bug-footer' => 'Betulkan Itu Shit',
- 'bug-header' => 'Laporan pepijat baru dari',
- 'bug-priority' => 'Keutamaan',
- 'bug-title' => 'Tajuk pepijat',
- 'contact-header' => 'Surat hubungan baru dari',
- 'contact-message' => 'Mesej',
- 'contact-name' => 'Nama',
+ 'activate-account' => 'Aktifkan akaun',
+ 'ban-reason' => 'Sebab',
+ 'banned-footer' => 'Itulah yang anda dapatkan kerana tidak mematuhi peraturan',
+ 'banned-header' => 'Anda telah dilarang',
+ 'bug-description' => 'Masalah',
+ 'bug-footer' => 'Betulkan Itu Shit',
+ 'bug-header' => 'Laporan pepijat baru dari',
+ 'bug-priority' => 'Keutamaan',
+ 'bug-title' => 'Tajuk pepijat',
+ 'contact-header' => 'Surat hubungan baru dari',
+ 'contact-message' => 'Mesej',
+ 'contact-name' => 'Nama',
'fail-login-greeting' => 'Masuk Akaun Gagal!',
- 'fail-login-line1' => 'Log masuk gagal dikesan untuk akaun anda.',
- 'fail-login-line2' => 'Permintaan ini berasal dari: ip (: host) pada: masa',
- 'fail-login-subject' => 'Pemberitahuan Log Masuk Gagal',
- 'footer-link' => 'Jika anda menghadapi masalah mengklik butang: butang actiontext, salin dan tampal URL di bawah ke pelayar web anda:',
- 'invite-header' => 'Jemputan ke',
- 'invite-invited' => 'Anda telah dijemput untuk',
- 'invite-message' => 'Mesej',
- 'invite-signup' => 'Daftarlah sekarang',
- 'newreply-header' => 'Terdapat balasan baru dalam topik anda',
- 'newreply-message' => 'Mesej',
- 'newreply-replied' => 'Telah menjawab topik anda',
- 'newreply-view' => 'Lihat Ia Sekarang',
- 'no-email-found' => 'Kami tidak dapat mencari e-mel ini dalam sistem kami!',
- 'register-code' => 'Untuk melengkapkan pengaktifan akaun anda, klik butang di bawah',
- 'register-footer' => 'Jika butang di atas tidak berfungsi, salin dan tampal URL ke dalam bar alamat pelayar anda',
- 'register-header' => 'Hi! Terima kasih kerana mendaftar',
- 'report-comment' => 'Komen',
- 'report-email' => 'E-mel',
- 'report-header' => 'Hai Admin, Pautan telah dilaporkan',
- 'report-link' => 'Pautan',
- 'report-link-hash' => 'Pautan sebenar',
- 'thanks' => 'Terima kasih kerana menggunakannya',
- 'unban-footer' => 'Selamat kembali!',
- 'unban-header' => 'Anda Telah Tidak Dilarang',
- 'unban-reason' => 'Sebab',
- 'username-reminder' => 'Anda baru-baru ini menghantar permintaan untuk nama pengguna anda di aplikasi kami. Nama pengguna anda ialah',
- 'username-sent' => 'Nama pengguna anda telah dihantar ke alamat e-mel anda!',
- 'disabled-header' => 'Akaun anda telah dilumpuhkan',
- 'pruned-header' => 'Akaun anda telah dipecahkan',
+ 'fail-login-line1' => 'Log masuk gagal dikesan untuk akaun anda.',
+ 'fail-login-line2' => 'Permintaan ini berasal dari: ip (: host) pada: masa',
+ 'fail-login-subject' => 'Pemberitahuan Log Masuk Gagal',
+ 'footer-link' => 'Jika anda menghadapi masalah mengklik butang: butang actiontext, salin dan tampal URL di bawah ke pelayar web anda:',
+ 'invite-header' => 'Jemputan ke',
+ 'invite-invited' => 'Anda telah dijemput untuk',
+ 'invite-message' => 'Mesej',
+ 'invite-signup' => 'Daftarlah sekarang',
+ 'newreply-header' => 'Terdapat balasan baru dalam topik anda',
+ 'newreply-message' => 'Mesej',
+ 'newreply-replied' => 'Telah menjawab topik anda',
+ 'newreply-view' => 'Lihat Ia Sekarang',
+ 'no-email-found' => 'Kami tidak dapat mencari e-mel ini dalam sistem kami!',
+ 'register-code' => 'Untuk melengkapkan pengaktifan akaun anda, klik butang di bawah',
+ 'register-footer' => 'Jika butang di atas tidak berfungsi, salin dan tampal URL ke dalam bar alamat pelayar anda',
+ 'register-header' => 'Hi! Terima kasih kerana mendaftar',
+ 'report-comment' => 'Komen',
+ 'report-email' => 'E-mel',
+ 'report-header' => 'Hai Admin, Pautan telah dilaporkan',
+ 'report-link' => 'Pautan',
+ 'report-link-hash' => 'Pautan sebenar',
+ 'thanks' => 'Terima kasih kerana menggunakannya',
+ 'unban-footer' => 'Selamat kembali!',
+ 'unban-header' => 'Anda Telah Tidak Dilarang',
+ 'unban-reason' => 'Sebab',
+ 'username-reminder' => 'Anda baru-baru ini menghantar permintaan untuk nama pengguna anda di aplikasi kami. Nama pengguna anda ialah',
+ 'username-sent' => 'Nama pengguna anda telah dihantar ke alamat e-mel anda!',
+ 'disabled-header' => 'Akaun anda telah dilumpuhkan',
+ 'pruned-header' => 'Akaun anda telah dipecahkan',
];
diff --git a/lang/ms/forum.php b/lang/ms/forum.php
index b3245ebad..787564853 100644
--- a/lang/ms/forum.php
+++ b/lang/ms/forum.php
@@ -12,63 +12,63 @@
*/
return [
- 'action' => 'Tindakan',
- 'activity' => 'Aktiviti',
- 'approved' => 'Diluluskan',
- 'author' => 'Pengarang',
- 'bug' => 'Bug',
- 'category-quick-search' => 'Carian pantas topik topik (dalam kategori)',
- 'close-topic' => 'Kunci Topik',
- 'closed' => 'Tertutup',
- 'create-new-topic' => 'Buat Topik Baru',
- 'created' => 'Dibuat',
- 'current' => 'Semasa',
- 'delete-topic' => 'Padamkan Topik ini',
- 'denied' => 'Ditolak',
- 'dislike-post' => 'Tidak suka Post ini',
- 'display-forum' => 'Tunjukkan topik dalam',
- 'edit-post' => 'Edit Pos',
- 'edit-topic' => 'Edit Topik',
- 'forum' => 'Forum',
- 'forums' => 'Forum',
- 'implemented' => 'Dilaksanakan',
- 'in' => 'In',
- 'invalid' => 'Tidak sah',
- 'label' => 'Label',
- 'label-system' => 'Sistem Label',
- 'last-message' => 'Mesej Terakhir',
- 'last-post-info' => 'Maklumat Pos Terkini',
- 'latest' => 'Terkini',
- 'like-post' => 'Seperti Post Ini',
- 'meta-category' => 'Senarai forum dalam kategori',
- 'moderation' => 'Kesederhanaan',
- 'name' => 'Nama',
- 'not-connected' => 'Anda mesti dihubungkan',
- 'not-subscribed' => 'Tidak dilanggan',
- 'open' => 'Buka',
- 'open-topic' => 'Buka Topik ini',
- 'permalink' => 'Permalink',
- 'pin' => 'Pin',
- 'post' => 'Hantar',
- 'post-quick-search' => 'Dapatkan carian pantas badan',
- 'posts' => 'Posts',
- 'quote' => 'Quote',
- 'read-topic' => 'Baca Topik ini',
- 'replies' => 'Balasan',
- 'send-new-topic' => 'Simpan Topik ini',
- 'solved' => 'Diselesaikan',
- 'state' => 'Negeri',
- 'stats' => 'Statistik',
- 'subscribed' => 'Dilanggan',
+ 'action' => 'Tindakan',
+ 'activity' => 'Aktiviti',
+ 'approved' => 'Diluluskan',
+ 'author' => 'Pengarang',
+ 'bug' => 'Bug',
+ 'category-quick-search' => 'Carian pantas topik topik (dalam kategori)',
+ 'close-topic' => 'Kunci Topik',
+ 'closed' => 'Tertutup',
+ 'create-new-topic' => 'Buat Topik Baru',
+ 'created' => 'Dibuat',
+ 'current' => 'Semasa',
+ 'delete-topic' => 'Padamkan Topik ini',
+ 'denied' => 'Ditolak',
+ 'dislike-post' => 'Tidak suka Post ini',
+ 'display-forum' => 'Tunjukkan topik dalam',
+ 'edit-post' => 'Edit Pos',
+ 'edit-topic' => 'Edit Topik',
+ 'forum' => 'Forum',
+ 'forums' => 'Forum',
+ 'implemented' => 'Dilaksanakan',
+ 'in' => 'In',
+ 'invalid' => 'Tidak sah',
+ 'label' => 'Label',
+ 'label-system' => 'Sistem Label',
+ 'last-message' => 'Mesej Terakhir',
+ 'last-post-info' => 'Maklumat Pos Terkini',
+ 'latest' => 'Terkini',
+ 'like-post' => 'Seperti Post Ini',
+ 'meta-category' => 'Senarai forum dalam kategori',
+ 'moderation' => 'Kesederhanaan',
+ 'name' => 'Nama',
+ 'not-connected' => 'Anda mesti dihubungkan',
+ 'not-subscribed' => 'Tidak dilanggan',
+ 'open' => 'Buka',
+ 'open-topic' => 'Buka Topik ini',
+ 'permalink' => 'Permalink',
+ 'pin' => 'Pin',
+ 'post' => 'Hantar',
+ 'post-quick-search' => 'Dapatkan carian pantas badan',
+ 'posts' => 'Posts',
+ 'quote' => 'Quote',
+ 'read-topic' => 'Baca Topik ini',
+ 'replies' => 'Balasan',
+ 'send-new-topic' => 'Simpan Topik ini',
+ 'solved' => 'Diselesaikan',
+ 'state' => 'Negeri',
+ 'stats' => 'Statistik',
+ 'subscribed' => 'Dilanggan',
'subscription-quick-search' => 'Carian pantas topik topik (dalam langganan)',
- 'suggestion' => 'Cadangan',
- 'topic' => 'Topik',
- 'topic-closed' => 'Topik ini ditutup',
- 'topic-name' => 'Nama topik',
- 'topic-quick-search' => 'Carian pantas topik topik',
- 'topic-title' => 'Tajuk Topik ini',
- 'topics' => 'Topik',
- 'unpin' => 'Nyahpasang',
- 'view-all' => 'Lihat Semua Topik',
- 'views' => 'Pandangan',
+ 'suggestion' => 'Cadangan',
+ 'topic' => 'Topik',
+ 'topic-closed' => 'Topik ini ditutup',
+ 'topic-name' => 'Nama topik',
+ 'topic-quick-search' => 'Carian pantas topik topik',
+ 'topic-title' => 'Tajuk Topik ini',
+ 'topics' => 'Topik',
+ 'unpin' => 'Nyahpasang',
+ 'view-all' => 'Lihat Semua Topik',
+ 'views' => 'Pandangan',
];
diff --git a/lang/ms/graveyard.php b/lang/ms/graveyard.php
index 6a2f5371b..e68543fea 100644
--- a/lang/ms/graveyard.php
+++ b/lang/ms/graveyard.php
@@ -12,15 +12,15 @@
*/
return [
- 'dead' => 'Mati',
- 'graveyard' => 'Makam',
- 'guidelines' => 'Garis Panduan',
+ 'dead' => 'Mati',
+ 'graveyard' => 'Makam',
+ 'guidelines' => 'Garis Panduan',
'guidelines-content' => '1) Anda tidak boleh membangkitkan semula upload anda sendiri.
2) Jangan membangkitkan sesuatu yang tidak boleh anda lakukan juga.',
- 'howto' => 'Heres The Rule',
- 'howto-desc1' => 'Anda mesti benih : nama selama 30 hari untuk pengekalan yang berjaya. Dalam hal ini, apabila masa benih Anda saat ini',
- 'howto-desc2' => 'Anda akan diberi ganjaran',
- 'howto-hits' => 'Hits',
- 'pending' => 'Yang belum selesai',
- 'resurrect' => 'Bangkit semula',
- 'reward' => 'Token Freeleech',
+ 'howto' => 'Heres The Rule',
+ 'howto-desc1' => 'Anda mesti benih : nama selama 30 hari untuk pengekalan yang berjaya. Dalam hal ini, apabila masa benih Anda saat ini',
+ 'howto-desc2' => 'Anda akan diberi ganjaran',
+ 'howto-hits' => 'Hits',
+ 'pending' => 'Yang belum selesai',
+ 'resurrect' => 'Bangkit semula',
+ 'reward' => 'Token Freeleech',
];
diff --git a/lang/ms/notification.php b/lang/ms/notification.php
index 51d11ab2d..b81149c31 100644
--- a/lang/ms/notification.php
+++ b/lang/ms/notification.php
@@ -12,14 +12,14 @@
*/
return [
- 'date' => 'Tarikh',
- 'delete' => 'Padam',
- 'delete-all' => 'Padamkan semua pemberitahuan',
- 'mark-all-read' => 'Tandakan semua seperti dibaca',
- 'mark-read' => 'tanda sebagai telah dibaca',
- 'message' => 'Mesej',
+ 'date' => 'Tarikh',
+ 'delete' => 'Padam',
+ 'delete-all' => 'Padamkan semua pemberitahuan',
+ 'mark-all-read' => 'Tandakan semua seperti dibaca',
+ 'mark-read' => 'tanda sebagai telah dibaca',
+ 'message' => 'Mesej',
'no-notifications' => 'Tiada pemberitahuan yang dijumpai',
- 'notifications' => 'Pemberitahuan',
- 'read' => 'Baca',
- 'title' => 'Tajuk',
+ 'notifications' => 'Pemberitahuan',
+ 'read' => 'Baca',
+ 'title' => 'Tajuk',
];
diff --git a/lang/ms/page.php b/lang/ms/page.php
index db5d735ed..f16b7d36b 100644
--- a/lang/ms/page.php
+++ b/lang/ms/page.php
@@ -12,28 +12,28 @@
*/
return [
- 'aboutus-advantage' => 'Kelebihan',
- 'aboutus-advantage1' => 'Kami telah berpengalaman ahli dan kakitangan yang mahir dalam dunia sokongan video / audio HD dan teknikal.',
- 'aboutus-advantage2' => 'Bersama dengan keghairahan kami yang luas untuk filem dan rancangan TV, kami juga menawarkan salah satu pilihan terbaik sesuatu yang paling tidak - FANRES! SATU TERIMA KASIH untuk pembawa kandungan kami.',
- 'aboutus-advantage3' => 'Walaupun kami menerima sumbangan untuk memastikan laman web ini berjalan dan berjalan di sana tidak akan ada PM atau spanduk yang mengganggu di laman web. Tidak memohon dari kami.',
- 'aboutus-advantage4' => 'Komuniti kami adalah yang kedua untuk usia awal. Antara kakitangan kami dan userbase, sentiasa berada di sini untuk membantu. Telah bersemangat untuk memastikan pengalaman anda pada: tajuk tidak begitu hebat.',
- 'aboutus-advantage5' => 'Perkhidmatan kami digunakan setiap hari oleh ramai orang di seluruh dunia. Kami telah membuktikan bahawa kami mengambil berat mengenai fungsi dan keselamatan dasar kami dan boleh dipercaya dan dipercayai. Pemaju kami bekerja setiap hari untuk menyediakan asas nex-gen yang sebenar.',
- 'aboutus-header' => 'Hai sana',
- 'aboutus-rules' => 'Apa yang kita perlukan dari awak',
- 'aboutus-rules1' => 'Untuk menjadi ahli komuniti yang aktif! Ini bermakna untuk menyertai dalam perbualan secara produktif, menambah kandungan yang diluluskan dan membantu pengguna lain jika anda mampu.',
- 'aboutus-rules2' => 'Untuk membaca peraturan secara penuh dan sila menghormati mereka!',
- 'aboutus-rules3' => 'Membuat cadangan! Kami berusaha untuk membuat: tajuk lebih baik setiap hari. Kami tidak mengatakan bahawa setiap cadangan akan digunakan, tetapi tidak menyakitkan untuk melihat idea-idea baru.',
- 'aboutus-welcome' => 'Mari bicarakan',
- 'aboutus-welcome-desc' => ': tajuk adalah pangkalan data Movie / TV / FANRES yang dibina oleh komuniti . Setiap bahagian data telah ditambah oleh masyarakat kita yang mengagumkan sejak 2017.: tajuk fokus yang kuat adalah pada kandungan HD, yang userbase proaktif, yang pangkalan kod yang bagus / selamat dan satu pasukan kakitangan suka membantu dan friendly.',
- 'blacklist-browsers' => 'Pelayar',
- 'blacklist-btclient' => 'Pelanggan BitTorrent',
- 'blacklist-clients' => 'Pelanggan',
- 'blacklist-desc' => 'Penjejakan dan Pelanggan Bittorrent Berikut adalah Senarai Hitam / Terlarang Dari Pemberitahuan Kepada: tajuk',
- 'blacklist-webbrowser' => 'Pelayar web',
+ 'aboutus-advantage' => 'Kelebihan',
+ 'aboutus-advantage1' => 'Kami telah berpengalaman ahli dan kakitangan yang mahir dalam dunia sokongan video / audio HD dan teknikal.',
+ 'aboutus-advantage2' => 'Bersama dengan keghairahan kami yang luas untuk filem dan rancangan TV, kami juga menawarkan salah satu pilihan terbaik sesuatu yang paling tidak - FANRES! SATU TERIMA KASIH untuk pembawa kandungan kami.',
+ 'aboutus-advantage3' => 'Walaupun kami menerima sumbangan untuk memastikan laman web ini berjalan dan berjalan di sana tidak akan ada PM atau spanduk yang mengganggu di laman web. Tidak memohon dari kami.',
+ 'aboutus-advantage4' => 'Komuniti kami adalah yang kedua untuk usia awal. Antara kakitangan kami dan userbase, sentiasa berada di sini untuk membantu. Telah bersemangat untuk memastikan pengalaman anda pada: tajuk tidak begitu hebat.',
+ 'aboutus-advantage5' => 'Perkhidmatan kami digunakan setiap hari oleh ramai orang di seluruh dunia. Kami telah membuktikan bahawa kami mengambil berat mengenai fungsi dan keselamatan dasar kami dan boleh dipercaya dan dipercayai. Pemaju kami bekerja setiap hari untuk menyediakan asas nex-gen yang sebenar.',
+ 'aboutus-header' => 'Hai sana',
+ 'aboutus-rules' => 'Apa yang kita perlukan dari awak',
+ 'aboutus-rules1' => 'Untuk menjadi ahli komuniti yang aktif! Ini bermakna untuk menyertai dalam perbualan secara produktif, menambah kandungan yang diluluskan dan membantu pengguna lain jika anda mampu.',
+ 'aboutus-rules2' => 'Untuk membaca peraturan secara penuh dan sila menghormati mereka!',
+ 'aboutus-rules3' => 'Membuat cadangan! Kami berusaha untuk membuat: tajuk lebih baik setiap hari. Kami tidak mengatakan bahawa setiap cadangan akan digunakan, tetapi tidak menyakitkan untuk melihat idea-idea baru.',
+ 'aboutus-welcome' => 'Mari bicarakan',
+ 'aboutus-welcome-desc' => ': tajuk adalah pangkalan data Movie / TV / FANRES yang dibina oleh komuniti . Setiap bahagian data telah ditambah oleh masyarakat kita yang mengagumkan sejak 2017.: tajuk fokus yang kuat adalah pada kandungan HD, yang userbase proaktif, yang pangkalan kod yang bagus / selamat dan satu pasukan kakitangan suka membantu dan friendly.',
+ 'blacklist-browsers' => 'Pelayar',
+ 'blacklist-btclient' => 'Pelanggan BitTorrent',
+ 'blacklist-clients' => 'Pelanggan',
+ 'blacklist-desc' => 'Penjejakan dan Pelanggan Bittorrent Berikut adalah Senarai Hitam / Terlarang Dari Pemberitahuan Kepada: tajuk',
+ 'blacklist-webbrowser' => 'Pelayar web',
'blacklist-emaildomain' => 'Domain yang Disekat',
- 'email-blacklist-desc' => 'Domain E-mel berikut disekat daripada digunakan. Anda Tidak Boleh Mendaftar Atau Kirim Jemput Untuk Berikut Ini.',
- 'email-whitelist-desc' => 'Domain E-mel Berikut adalah Domain E-mel Hanya Dibenarkan Digunakan. Anda Hanya Boleh Mendaftar Atau Kirim Jemputan Menggunakan Berikut Ini.',
- 'staff-group' => 'Kumpulan',
- 'staff-title' => 'Tajuk',
+ 'email-blacklist-desc' => 'Domain E-mel berikut disekat daripada digunakan. Anda Tidak Boleh Mendaftar Atau Kirim Jemput Untuk Berikut Ini.',
+ 'email-whitelist-desc' => 'Domain E-mel Berikut adalah Domain E-mel Hanya Dibenarkan Digunakan. Anda Hanya Boleh Mendaftar Atau Kirim Jemputan Menggunakan Berikut Ini.',
+ 'staff-group' => 'Kumpulan',
+ 'staff-title' => 'Tajuk',
'whitelist-emaildomain' => 'Domain Dipercayai',
];
diff --git a/lang/ms/pagination.php b/lang/ms/pagination.php
index 2c5081c2b..9b97f532c 100644
--- a/lang/ms/pagination.php
+++ b/lang/ms/pagination.php
@@ -24,5 +24,5 @@ return [
*/
'previous' => '« Sebelumnya',
- 'next' => 'Seterusnya »',
+ 'next' => 'Seterusnya »',
];
diff --git a/lang/ms/passwords.php b/lang/ms/passwords.php
index 9bea533bf..9c5d1ac41 100644
--- a/lang/ms/passwords.php
+++ b/lang/ms/passwords.php
@@ -24,8 +24,8 @@ return [
*/
'password' => 'Kata laluan mestilah sekurang-kurangnya enam aksara dan sepadan dengan pengesahan.',
- 'reset' => 'Kata laluan anda telah ditetapkan semula!',
- 'sent' => 'Kami telah e-mel pautan set semula kata laluan anda!',
- 'token' => 'Token set semula kata laluan ini tidak sah.',
- 'user' => 'Kami tidak dapat mencari pengguna dengan alamat e-mel tersebut.',
+ 'reset' => 'Kata laluan anda telah ditetapkan semula!',
+ 'sent' => 'Kami telah e-mel pautan set semula kata laluan anda!',
+ 'token' => 'Token set semula kata laluan ini tidak sah.',
+ 'user' => 'Kami tidak dapat mencari pengguna dengan alamat e-mel tersebut.',
];
diff --git a/lang/ms/pm.php b/lang/ms/pm.php
index 996377865..26e3ab269 100644
--- a/lang/ms/pm.php
+++ b/lang/ms/pm.php
@@ -12,29 +12,29 @@
*/
return [
- 'create' => 'Buat',
- 'delete' => 'Padam',
+ 'create' => 'Buat',
+ 'delete' => 'Padam',
'enter-subject' => 'Masukkan subjek',
- 'from' => 'Dari',
- 'inbox' => 'Peti masuk',
+ 'from' => 'Dari',
+ 'inbox' => 'Peti masuk',
'mark-all-read' => 'Tandakan semua mesej sebagai dibaca',
- 'message' => 'Mesej',
- 'messages' => 'Mesej',
- 'new' => 'Mesej baru',
- 'outbox' => 'Peti keluar',
- 'private' => 'Peribadi',
- 'read' => 'Baca',
- 'received-at' => 'Diterima Di',
- 'refresh' => 'Refresh',
- 'reply' => 'Balas',
- 'search' => 'Cari mengikut Subjek',
- 'select' => 'Pilih Pengguna',
- 'send' => 'Hantar PM',
- 'send-to' => 'Hantar PM Kepada',
- 'sent' => 'Dihantar',
- 'sent-at' => 'Dihantar Pada',
- 'subject' => 'Subjek',
- 'to' => 'Untuk',
- 'unread' => 'Belum dibaca',
- 'empty-inbox' => 'Kosongkan peti masuk',
+ 'message' => 'Mesej',
+ 'messages' => 'Mesej',
+ 'new' => 'Mesej baru',
+ 'outbox' => 'Peti keluar',
+ 'private' => 'Peribadi',
+ 'read' => 'Baca',
+ 'received-at' => 'Diterima Di',
+ 'refresh' => 'Refresh',
+ 'reply' => 'Balas',
+ 'search' => 'Cari mengikut Subjek',
+ 'select' => 'Pilih Pengguna',
+ 'send' => 'Hantar PM',
+ 'send-to' => 'Hantar PM Kepada',
+ 'sent' => 'Dihantar',
+ 'sent-at' => 'Dihantar Pada',
+ 'subject' => 'Subjek',
+ 'to' => 'Untuk',
+ 'unread' => 'Belum dibaca',
+ 'empty-inbox' => 'Kosongkan peti masuk',
];
diff --git a/lang/ms/poll.php b/lang/ms/poll.php
index bc3b70e4a..bf393d351 100644
--- a/lang/ms/poll.php
+++ b/lang/ms/poll.php
@@ -12,18 +12,18 @@
*/
return [
- 'add-option' => 'Tambah pilihan',
- 'create-poll' => 'Buat pengundian',
- 'current' => 'Pungutan Semasa',
- 'delete-option' => 'Padam pilihan',
+ 'add-option' => 'Tambah pilihan',
+ 'create-poll' => 'Buat pengundian',
+ 'current' => 'Pungutan Semasa',
+ 'delete-option' => 'Padam pilihan',
'multiple-choice' => 'Ini adalah pilihan pelbagai pilihan. Pilih seberapa banyak jawapan yang anda suka.',
- 'option' => 'Pilihan',
- 'poll' => 'Undian',
- 'polls' => 'Undian',
- 'results' => 'Keputusan Undian',
- 'title' => 'Tajuk',
- 'total' => 'Jumlah Undian Pernah',
- 'vote' => 'Undi',
- 'vote-now' => 'Dapatkan Undian Anda Sekarang!',
- 'votes' => 'Undian',
+ 'option' => 'Pilihan',
+ 'poll' => 'Undian',
+ 'polls' => 'Undian',
+ 'results' => 'Keputusan Undian',
+ 'title' => 'Tajuk',
+ 'total' => 'Jumlah Undian Pernah',
+ 'vote' => 'Undi',
+ 'vote-now' => 'Dapatkan Undian Anda Sekarang!',
+ 'votes' => 'Undian',
];
diff --git a/lang/ms/request.php b/lang/ms/request.php
index 50637d968..ab7d24ecb 100644
--- a/lang/ms/request.php
+++ b/lang/ms/request.php
@@ -12,67 +12,67 @@
*/
return [
- 'add-request' => 'Tambah permintaan',
- 'age' => 'Umur',
- 'all-requests' => 'Semua permintaan',
- 'approve' => 'Terima',
- 'bounty' => 'Bounty',
- 'bounty-claimed' => 'Bounty mendakwa',
- 'bounty-unclaimed' => 'Bounty tidak dituntut',
- 'category' => 'Kategori',
- 'claim' => 'Tuntutan',
- 'claim-anon-choose' => 'Sila pilih bijak',
- 'claim-as-anon' => 'Adakah Anda Suka Tuntut Ini Secara Maju',
- 'claim-now' => 'Tuntut sekarang',
- 'claimed' => 'Dikenakan',
- 'current' => 'Semasa',
- 'delete' => 'Padamkan Permintaan ini',
+ 'add-request' => 'Tambah permintaan',
+ 'age' => 'Umur',
+ 'all-requests' => 'Semua permintaan',
+ 'approve' => 'Terima',
+ 'bounty' => 'Bounty',
+ 'bounty-claimed' => 'Bounty mendakwa',
+ 'bounty-unclaimed' => 'Bounty tidak dituntut',
+ 'category' => 'Kategori',
+ 'claim' => 'Tuntutan',
+ 'claim-anon-choose' => 'Sila pilih bijak',
+ 'claim-as-anon' => 'Adakah Anda Suka Tuntut Ini Secara Maju',
+ 'claim-now' => 'Tuntut sekarang',
+ 'claimed' => 'Dikenakan',
+ 'current' => 'Semasa',
+ 'delete' => 'Padamkan Permintaan ini',
'delete-confirmation' => 'Adakah anda pasti mahu memadamkan Permintaan ini',
- 'delete-filled' => 'Permintaan ini hanya boleh dihapuskan jika ia belum diisi',
- 'description' => 'Penerangan',
- 'dont-have-bps' => 'Anda tidak mempunyai Bonus yang mencukupi',
- 'edit-request' => 'Edit permintaan',
- 'enter-bp' => 'Masukkan mata bonus (minimum 100)',
- 'enter-hash' => 'Masukkan Info Hash daripada Torrent yang dimuat naik',
- 'fill' => 'Isi',
- 'fill-request' => 'Isikan permintaan ini',
- 'filled' => 'Diisi',
- 'filled-by' => 'Diisi oleh',
- 'for' => 'untuk',
- 'fulfill' => 'Memenuhi',
- 'last-vote' => 'Undian terakhir',
- 'my-requests' => 'Permintaan saya',
- 'no' => 'Tidak,',
- 'no-imdb-id' => 'Semua Permintaan Mesti Mengemukakan Nombor IMDB',
- 'no-privileges' => 'Ralat: Hak permintaan anda telah dilumpuhkan',
- 'no-privileges-desc' => 'Jika anda merasakan ini salah, sila hubungi Kakitangan',
- 'no-refunds' => 'BON pertukaran pada penciptaan, pengisian dan nikmat adalah muktamad!
NO REFUNDS!',
- 'pending' => 'Yang belum selesai',
- 'reason' => 'Sebab',
- 'reject' => 'Tolak',
- 'report' => 'Permintaan laporan',
- 'request' => 'Permintaan',
- 'request-details' => 'Meminta butiran',
- 'requested-by' => 'Diminta oleh',
- 'requests' => 'Permintaan',
- 'required' => 'Dikehendaki',
- 'reset' => 'Tetapkan semula',
- 'reset-confirmation' => 'Adakah anda pasti mahu menetapkan semula Permintaan ini',
- 'reset-request' => 'Tetapkan semula Permintaan ini',
- 'reward' => 'Ganjaran',
- 'reward-desc' => 'Berapa banyak titik bonus yang anda ingin ganjaran? Minimum 100 BP',
- 'reward-from' => 'Dari',
- 'title' => 'Tajuk',
- 'torrent-hash' => 'Torrent Hash',
- 'total-bounty' => 'Jumlah hadiah',
- 'type' => 'Taipkan',
- 'unclaim' => 'Tidak dapat menuntut permintaan ini',
- 'unfilled' => 'Belum selesai',
- 'view-filled' => 'Lihat diisi',
- 'view-unfilled' => 'Lihat tidak diisi',
- 'vote' => 'Undi',
- 'vote-that' => 'Undian Permintaan ini',
- 'voters' => 'Pengundi',
- 'votes' => 'Undian',
- 'yes' => 'Ya',
+ 'delete-filled' => 'Permintaan ini hanya boleh dihapuskan jika ia belum diisi',
+ 'description' => 'Penerangan',
+ 'dont-have-bps' => 'Anda tidak mempunyai Bonus yang mencukupi',
+ 'edit-request' => 'Edit permintaan',
+ 'enter-bp' => 'Masukkan mata bonus (minimum 100)',
+ 'enter-hash' => 'Masukkan Info Hash daripada Torrent yang dimuat naik',
+ 'fill' => 'Isi',
+ 'fill-request' => 'Isikan permintaan ini',
+ 'filled' => 'Diisi',
+ 'filled-by' => 'Diisi oleh',
+ 'for' => 'untuk',
+ 'fulfill' => 'Memenuhi',
+ 'last-vote' => 'Undian terakhir',
+ 'my-requests' => 'Permintaan saya',
+ 'no' => 'Tidak,',
+ 'no-imdb-id' => 'Semua Permintaan Mesti Mengemukakan Nombor IMDB',
+ 'no-privileges' => 'Ralat: Hak permintaan anda telah dilumpuhkan',
+ 'no-privileges-desc' => 'Jika anda merasakan ini salah, sila hubungi Kakitangan',
+ 'no-refunds' => 'BON pertukaran pada penciptaan, pengisian dan nikmat adalah muktamad!
NO REFUNDS!',
+ 'pending' => 'Yang belum selesai',
+ 'reason' => 'Sebab',
+ 'reject' => 'Tolak',
+ 'report' => 'Permintaan laporan',
+ 'request' => 'Permintaan',
+ 'request-details' => 'Meminta butiran',
+ 'requested-by' => 'Diminta oleh',
+ 'requests' => 'Permintaan',
+ 'required' => 'Dikehendaki',
+ 'reset' => 'Tetapkan semula',
+ 'reset-confirmation' => 'Adakah anda pasti mahu menetapkan semula Permintaan ini',
+ 'reset-request' => 'Tetapkan semula Permintaan ini',
+ 'reward' => 'Ganjaran',
+ 'reward-desc' => 'Berapa banyak titik bonus yang anda ingin ganjaran? Minimum 100 BP',
+ 'reward-from' => 'Dari',
+ 'title' => 'Tajuk',
+ 'torrent-hash' => 'Torrent Hash',
+ 'total-bounty' => 'Jumlah hadiah',
+ 'type' => 'Taipkan',
+ 'unclaim' => 'Tidak dapat menuntut permintaan ini',
+ 'unfilled' => 'Belum selesai',
+ 'view-filled' => 'Lihat diisi',
+ 'view-unfilled' => 'Lihat tidak diisi',
+ 'vote' => 'Undi',
+ 'vote-that' => 'Undian Permintaan ini',
+ 'voters' => 'Pengundi',
+ 'votes' => 'Undian',
+ 'yes' => 'Ya',
];
diff --git a/lang/ms/rss.php b/lang/ms/rss.php
index ee5614c5b..10d05cdf7 100644
--- a/lang/ms/rss.php
+++ b/lang/ms/rss.php
@@ -12,19 +12,19 @@
*/
return [
- 'create' => 'Buat',
+ 'create' => 'Buat',
'create-private-feed' => 'Buat Pribadi RSS Feed',
- 'create-public-feed' => 'Buat Awam RSS Feed',
- 'delete' => 'Padam',
- 'edit' => 'Edit',
- 'edit-private-feed' => 'Edit Suapan RSS Pribadi',
- 'edit-public-feed' => 'Edit Awam RSS Feed',
- 'feed' => 'Suapan',
- 'feeds' => 'Suapan',
- 'name' => 'Nama',
- 'public' => 'Awam',
- 'private' => 'Peribadi',
- 'rss' => 'RSS',
- 'rss-feed' => 'RSS Feed',
- 'type' => 'Taipkan',
+ 'create-public-feed' => 'Buat Awam RSS Feed',
+ 'delete' => 'Padam',
+ 'edit' => 'Edit',
+ 'edit-private-feed' => 'Edit Suapan RSS Pribadi',
+ 'edit-public-feed' => 'Edit Awam RSS Feed',
+ 'feed' => 'Suapan',
+ 'feeds' => 'Suapan',
+ 'name' => 'Nama',
+ 'public' => 'Awam',
+ 'private' => 'Peribadi',
+ 'rss' => 'RSS',
+ 'rss-feed' => 'RSS Feed',
+ 'type' => 'Taipkan',
];
diff --git a/lang/ms/staff.php b/lang/ms/staff.php
index cdb9c10cb..f91db5b69 100644
--- a/lang/ms/staff.php
+++ b/lang/ms/staff.php
@@ -12,48 +12,48 @@
*/
return [
- 'audit-log' => 'Log aktiviti',
- 'articles' => 'Artikel',
- 'applications' => 'Permohonan',
- 'bans-log' => 'Larangan Log',
- 'blocks' => 'Blok',
- 'bot' => 'Bot',
- 'bots' => 'Bot',
- 'chat' => 'Sembang',
- 'config-manager' => 'Pengurus Config',
- 'dashboard' => 'Papan Pemuka',
- 'failed-login-log' => 'Log Masuk Gagal',
- 'flush-ghost-peers' => 'Pejuang Hantu Flush',
- 'forums' => 'Forum',
- 'frontend' => 'Frontend',
- 'general-tools' => 'Alat Am',
- 'groups' => 'Kumpulan',
- 'invites-log' => 'Menjemput Log',
- 'laravel-log' => 'Log Laravel',
- 'links' => 'Pautan',
- 'logs' => 'Log',
- 'mass-pm' => 'Mass Mass',
- 'mass-validate-users' => 'Pengguna Berikan Massa',
- 'moderation' => 'Kesederhanaan',
- 'pages' => 'Halaman-halaman',
- 'please-moderate' => 'Tolong Sederhana Torrent ini!',
- 'polls' => 'Undian',
- 'reports-log' => 'Log Laporan',
- 'rss' => 'RSS',
- 'staff-dashboard' => 'Dashboard kakitangan',
- 'torrent-categories' => 'Kategori Torrent',
- 'torrent-moderation' => 'Pengerudian Torrent',
- 'torrent-tools' => 'Alat Torrent',
- 'torrent-types' => 'Jenis Torrent',
- 'torrents' => 'Torrents',
- 'user-gifting' => 'Hadiah Pengguna',
- 'user-notes' => 'Log Nota Pengguna',
- 'user-search' => 'Carian Pengguna',
- 'user-tools' => 'Alat Pengguna',
- 'warnings-log' => 'Amaran Log',
- 'you-have' => 'Kamu ada',
+ 'audit-log' => 'Log aktiviti',
+ 'articles' => 'Artikel',
+ 'applications' => 'Permohonan',
+ 'bans-log' => 'Larangan Log',
+ 'blocks' => 'Blok',
+ 'bot' => 'Bot',
+ 'bots' => 'Bot',
+ 'chat' => 'Sembang',
+ 'config-manager' => 'Pengurus Config',
+ 'dashboard' => 'Papan Pemuka',
+ 'failed-login-log' => 'Log Masuk Gagal',
+ 'flush-ghost-peers' => 'Pejuang Hantu Flush',
+ 'forums' => 'Forum',
+ 'frontend' => 'Frontend',
+ 'general-tools' => 'Alat Am',
+ 'groups' => 'Kumpulan',
+ 'invites-log' => 'Menjemput Log',
+ 'laravel-log' => 'Log Laravel',
+ 'links' => 'Pautan',
+ 'logs' => 'Log',
+ 'mass-pm' => 'Mass Mass',
+ 'mass-validate-users' => 'Pengguna Berikan Massa',
+ 'moderation' => 'Kesederhanaan',
+ 'pages' => 'Halaman-halaman',
+ 'please-moderate' => 'Tolong Sederhana Torrent ini!',
+ 'polls' => 'Undian',
+ 'reports-log' => 'Log Laporan',
+ 'rss' => 'RSS',
+ 'staff-dashboard' => 'Dashboard kakitangan',
+ 'torrent-categories' => 'Kategori Torrent',
+ 'torrent-moderation' => 'Pengerudian Torrent',
+ 'torrent-tools' => 'Alat Torrent',
+ 'torrent-types' => 'Jenis Torrent',
+ 'torrents' => 'Torrents',
+ 'user-gifting' => 'Hadiah Pengguna',
+ 'user-notes' => 'Log Nota Pengguna',
+ 'user-search' => 'Carian Pengguna',
+ 'user-tools' => 'Alat Pengguna',
+ 'warnings-log' => 'Amaran Log',
+ 'you-have' => 'Kamu ada',
'possible-leech-cheaters' => 'Kemungkinan Penipu',
- 'chat-tools' => 'Alat Bual',
- 'flush-chat' => 'Chatbox Flush',
- 'seedboxes' => 'Kotak Seed Berdaftar',
+ 'chat-tools' => 'Alat Bual',
+ 'flush-chat' => 'Chatbox Flush',
+ 'seedboxes' => 'Kotak Seed Berdaftar',
];
diff --git a/lang/ms/stat.php b/lang/ms/stat.php
index 2b3c85fcc..6a90b580b 100644
--- a/lang/ms/stat.php
+++ b/lang/ms/stat.php
@@ -12,40 +12,40 @@
*/
return [
- 'by-count' => 'Oleh Count',
- 'by-data' => 'Dengan Data',
- 'by-volume' => 'Mengikut volum',
- 'group' => 'Kumpulan',
- 'groups' => 'Kumpulan',
- 'nerd-stats' => 'Statistik Nerd',
- 'nerd-stats-desc' => 'Kita semua suka statistik. Berikut adalah beberapa yang kita dapati penting',
- 'registration-date' => 'Tarikh pendaftaran',
- 'request-fulfilled' => 'Permintaan dipenuhi',
- 'request-not-fulfilled' => 'Permintaan tidak dipenuhi',
+ 'by-count' => 'Oleh Count',
+ 'by-data' => 'Dengan Data',
+ 'by-volume' => 'Mengikut volum',
+ 'group' => 'Kumpulan',
+ 'groups' => 'Kumpulan',
+ 'nerd-stats' => 'Statistik Nerd',
+ 'nerd-stats-desc' => 'Kita semua suka statistik. Berikut adalah beberapa yang kita dapati penting',
+ 'registration-date' => 'Tarikh pendaftaran',
+ 'request-fulfilled' => 'Permintaan dipenuhi',
+ 'request-not-fulfilled' => 'Permintaan tidak dipenuhi',
'request-pending-aproval' => 'Meminta pengesahan belum selesai',
- 'select-category' => 'Sila pilih kategori di bawah',
- 'site-stats' => 'Statistik tapak',
- 'stats' => 'Statistik',
- 'stats-format' => 'Semua Statistik Dipamerkan dalam 100 Format Teratas',
- 'top-bankers' => 'Peminjam Teratas',
- 'top-bountied' => 'Bountied atas',
- 'top-completed' => 'Atas Selesai',
- 'top-dead' => 'Top Dead',
- 'top-downloaded' => 'Torrents Teratas Dikemaskini',
- 'top-downloaders' => 'Pemuat Teratas',
- 'top-dying' => 'Top Dying',
- 'top-leeched' => 'Leeched atas',
- 'top-leechers' => 'Lintah atas',
- 'top-seeded' => 'Top Seeded',
- 'top-seeding' => 'Pembenihan Atas',
- 'top-seeders' => 'Seeders Top',
- 'top-seedsize' => 'Top Seedsize',
- 'top-seedtime' => 'Seedtime teratas',
- 'top-uploaders' => 'Pemuat naik Teratas',
- 'total-download' => 'Muat turun Jumlah',
- 'total-torrents' => 'Jumlah Torrents',
- 'total-traffic' => 'Jumlah Lalu Lintas',
- 'total-upload' => 'Jumlah Naik',
- 'users-in-group' => 'Pengguna Dalam Kumpulan',
- 'users-per-group' => 'Pengguna Per Kumpulan',
+ 'select-category' => 'Sila pilih kategori di bawah',
+ 'site-stats' => 'Statistik tapak',
+ 'stats' => 'Statistik',
+ 'stats-format' => 'Semua Statistik Dipamerkan dalam 100 Format Teratas',
+ 'top-bankers' => 'Peminjam Teratas',
+ 'top-bountied' => 'Bountied atas',
+ 'top-completed' => 'Atas Selesai',
+ 'top-dead' => 'Top Dead',
+ 'top-downloaded' => 'Torrents Teratas Dikemaskini',
+ 'top-downloaders' => 'Pemuat Teratas',
+ 'top-dying' => 'Top Dying',
+ 'top-leeched' => 'Leeched atas',
+ 'top-leechers' => 'Lintah atas',
+ 'top-seeded' => 'Top Seeded',
+ 'top-seeding' => 'Pembenihan Atas',
+ 'top-seeders' => 'Seeders Top',
+ 'top-seedsize' => 'Top Seedsize',
+ 'top-seedtime' => 'Seedtime teratas',
+ 'top-uploaders' => 'Pemuat naik Teratas',
+ 'total-download' => 'Muat turun Jumlah',
+ 'total-torrents' => 'Jumlah Torrents',
+ 'total-traffic' => 'Jumlah Lalu Lintas',
+ 'total-upload' => 'Jumlah Naik',
+ 'users-in-group' => 'Pengguna Dalam Kumpulan',
+ 'users-per-group' => 'Pengguna Per Kumpulan',
];
diff --git a/lang/ms/torrent.php b/lang/ms/torrent.php
index bbe59c301..1f2873924 100644
--- a/lang/ms/torrent.php
+++ b/lang/ms/torrent.php
@@ -12,197 +12,197 @@
*/
return [
- 'activity' => 'Aktiviti',
- 'age' => 'Umur',
- 'agent' => 'Ejen',
- 'alive' => 'Hidup',
- 'announce-url' => 'Umumkan URL',
- 'announce-url-desc' => 'Sila gunakan URL pengumuman di atas apabila mencipta torrent baru. Sekiranya anda ingin menggunakan torrent anda tanpa memuat turun dari laman web, anda perlu menetapkan bendera peribadi dan sumbernya kepada: sumber',
- 'announce-url-desc-url' => 'Mempunyai Masalah? Lihat Panduan Kami DI SINI',
- 'announce-url-desc2' => 'TMDB dan IMDB diperlukan untuk semua muat naik! Ia digunakan untuk memuat Poster / Backdrops dan ExtraInfo',
- 'approved' => 'Diluluskan',
- 'audio' => 'Audio',
- 'bon-tipped' => 'BON Tipped',
- 'bookmark' => 'Penanda buku',
- 'bookmarks' => 'Penanda buku',
- 'bump' => 'Bump',
- 'cant-upload' => 'Ralat: Hak Upload Anda Dinyahaktifkan',
- 'cant-upload-desc' => 'Jika Anda Merasakan Ini Ralat, Sila Hubungi Staf',
- 'cards' => 'Kad',
- 'cards-view' => 'Torrent Cards View',
- 'categories' => 'Kategori',
- 'category' => 'Kategori',
- 'client' => 'Pelanggan',
- 'commited' => 'Berjaya',
- 'completed' => 'Selesai',
- 'completed_at' => 'Selesai di',
- 'completed-not-seeding' => 'Anda Lengkapkan Muat Turun Ini Tetapi Tidak Ada Lagi Pembenihan Ia',
- 'created_at' => 'Dicipta pada',
- 'credited' => 'Dikreditkan',
- 'current' => 'Semasa',
- 'current-filters' => 'Penapis Semasa',
- 'currently-leeching' => 'Pada masa ini Leeching',
- 'currently-seeding' => 'Sedang pembenihan',
- 'dead-torrent' => 'Dead Torrent',
- 'dead-torrents' => 'Torrents mati',
- 'delete-bookmark' => 'Padamkan Bookmark ini',
- 'description' => 'Penerangan',
- 'discounts' => 'Diskaun',
- 'double-upload' => 'Muat Naik Double',
- 'download-all' => 'Muat turun Semua',
- 'download-check' => 'Semak semak',
- 'downloaded' => 'Dikemaskini',
- 'dying-torrent' => 'Dying Torrent',
- 'dying-torrents' => 'Torrents mati',
- 'encode-settings' => 'Pengekodan Kod',
- 'estimated-ratio' => 'Anggaran Nisbah selepas Muat Turun',
- 'failed' => 'Gagal',
- 'feature' => 'Ciri',
- 'featured' => 'Disediakan',
- 'featured-desc' => 'Torrents yang ditonjolkan adalah 100% percuma dan Muat Naik Double!',
- 'featured-until' => 'Ini Adakah Torrent Unggul Sehingga',
- 'file' => 'Fail',
- 'filters' => 'Penapis',
- 'fl-tokens-left' => 'Kamu ada : token dibiarkan',
- 'freeleech' => 'Freeleech',
- 'freeleech-token' => 'Freeleech Token',
- 'general' => 'Ketua',
- 'genre' => 'Genre',
- 'global-double-upload' => 'Muat Naik Global Double',
- 'global-freeleech' => 'Global Freeleech',
- 'grant' => 'Geran',
- 'greater-than' => 'Lebih besar daripada',
- 'grouping' => 'Pengumpulan',
- 'groupings' => 'Pengumpulan',
- 'grouping-categories' => 'Kategori kumpulan',
+ 'activity' => 'Aktiviti',
+ 'age' => 'Umur',
+ 'agent' => 'Ejen',
+ 'alive' => 'Hidup',
+ 'announce-url' => 'Umumkan URL',
+ 'announce-url-desc' => 'Sila gunakan URL pengumuman di atas apabila mencipta torrent baru. Sekiranya anda ingin menggunakan torrent anda tanpa memuat turun dari laman web, anda perlu menetapkan bendera peribadi dan sumbernya kepada: sumber',
+ 'announce-url-desc-url' => 'Mempunyai Masalah? Lihat Panduan Kami DI SINI',
+ 'announce-url-desc2' => 'TMDB dan IMDB diperlukan untuk semua muat naik! Ia digunakan untuk memuat Poster / Backdrops dan ExtraInfo',
+ 'approved' => 'Diluluskan',
+ 'audio' => 'Audio',
+ 'bon-tipped' => 'BON Tipped',
+ 'bookmark' => 'Penanda buku',
+ 'bookmarks' => 'Penanda buku',
+ 'bump' => 'Bump',
+ 'cant-upload' => 'Ralat: Hak Upload Anda Dinyahaktifkan',
+ 'cant-upload-desc' => 'Jika Anda Merasakan Ini Ralat, Sila Hubungi Staf',
+ 'cards' => 'Kad',
+ 'cards-view' => 'Torrent Cards View',
+ 'categories' => 'Kategori',
+ 'category' => 'Kategori',
+ 'client' => 'Pelanggan',
+ 'commited' => 'Berjaya',
+ 'completed' => 'Selesai',
+ 'completed_at' => 'Selesai di',
+ 'completed-not-seeding' => 'Anda Lengkapkan Muat Turun Ini Tetapi Tidak Ada Lagi Pembenihan Ia',
+ 'created_at' => 'Dicipta pada',
+ 'credited' => 'Dikreditkan',
+ 'current' => 'Semasa',
+ 'current-filters' => 'Penapis Semasa',
+ 'currently-leeching' => 'Pada masa ini Leeching',
+ 'currently-seeding' => 'Sedang pembenihan',
+ 'dead-torrent' => 'Dead Torrent',
+ 'dead-torrents' => 'Torrents mati',
+ 'delete-bookmark' => 'Padamkan Bookmark ini',
+ 'description' => 'Penerangan',
+ 'discounts' => 'Diskaun',
+ 'double-upload' => 'Muat Naik Double',
+ 'download-all' => 'Muat turun Semua',
+ 'download-check' => 'Semak semak',
+ 'downloaded' => 'Dikemaskini',
+ 'dying-torrent' => 'Dying Torrent',
+ 'dying-torrents' => 'Torrents mati',
+ 'encode-settings' => 'Pengekodan Kod',
+ 'estimated-ratio' => 'Anggaran Nisbah selepas Muat Turun',
+ 'failed' => 'Gagal',
+ 'feature' => 'Ciri',
+ 'featured' => 'Disediakan',
+ 'featured-desc' => 'Torrents yang ditonjolkan adalah 100% percuma dan Muat Naik Double!',
+ 'featured-until' => 'Ini Adakah Torrent Unggul Sehingga',
+ 'file' => 'Fail',
+ 'filters' => 'Penapis',
+ 'fl-tokens-left' => 'Kamu ada : token dibiarkan',
+ 'freeleech' => 'Freeleech',
+ 'freeleech-token' => 'Freeleech Token',
+ 'general' => 'Ketua',
+ 'genre' => 'Genre',
+ 'global-double-upload' => 'Muat Naik Global Double',
+ 'global-freeleech' => 'Global Freeleech',
+ 'grant' => 'Geran',
+ 'greater-than' => 'Lebih besar daripada',
+ 'grouping' => 'Pengumpulan',
+ 'groupings' => 'Pengumpulan',
+ 'grouping-categories' => 'Kategori kumpulan',
'grouping-categories-desc' => 'Kategori apa yang anda ingin kumpulan?',
- 'grouping-results' => 'Keputusan Pengumpulan',
- 'groupings-view' => 'Lihat Pengelasan',
- 'have-completed' => 'Selesai',
- 'have-downloaded' => 'Dikemaskini',
- 'have-not-completed' => 'Tidak selesai',
- 'have-not-downloaded' => 'Tidak dimuat turun',
- 'health' => 'Kesihatan',
- 'history' => 'Sejarah',
- 'hitrun' => 'H & R?',
- 'hit-and-runs' => 'Hit dan tuduhan Run',
- 'immune' => 'Imun?',
- 'info' => 'Maklumat',
- 'internal' => 'Dalaman',
- 'internal-release' => 'Pembebasan dalaman',
- 'last-seed-activity' => 'Aktiviti benih lepas',
- 'last-seeder' => 'Anda adalah Seeder yang terakhir! (telah dimuat turun sekurang-kurangnya 3 kali)',
- 'last-update' => 'Kemaskini terakhir',
- 'leave-tip' => 'Tinggalkan tip',
- 'leecher' => 'Leecher',
- 'leechers' => 'Lintah',
- 'leeching' => 'Leeching',
- 'left' => 'Ditinggalkan',
- 'legendary-seeder' => 'Penyiar legenda',
- 'legendary-torrent' => 'Torrent legenda',
- 'list' => 'Senarai',
- 'me' => 'Saya',
- 'media-info' => 'MediaInfo',
- 'media-info-parser' => 'MediaInfo Parser',
- 'media-info-paste' => 'Paste MediaInfo dump di sini',
- 'meta-desc' => 'Muat turun: nama pada kelajuan maksimum',
- 'moderation' => 'Kesederhanaan',
- 'movies' => 'Wayang',
- 'mvp' => 'MVP',
- 'my-active-torrents' => 'Kuasa aktif saya',
- 'name' => 'Nama',
- 'no-bookmarks' => 'Tiada penanda buku ditemui.',
- 'no-discounts' => 'Pada masa ini tiada diskaun',
- 'no-meta' => 'Tiada metadata dijumpai',
- 'no-privileges' => 'Anda tidak dapat memuat turun fail ini - sila semak di bawah untuk maklumat lanjut',
- 'no-privileges-desc' => 'Sila selesaikan hasil yang gagal di atas untuk muat turun untuk dipaparkan',
- 'not-completed' => 'Mula Men-download Tetapi Tidak Selesai',
- 'not-downloaded' => 'Tidak dimuat turun',
- 'old-torrent' => 'Torrent lama',
- 'optional' => 'Pilihan',
- 'original-output' => 'Tunjukkan / Sembunyikan output asal',
- 'participant' => 'Peserta',
- 'passed' => 'Lulus',
- 'peers' => 'Rakan sebaya',
- 'pending' => 'Yang belum selesai',
- 'personal-freeleech' => 'Freeleech peribadi',
- 'poster' => 'Poster',
- 'poster-view' => 'Pandangan poster',
- 'posters' => 'Poster',
- 'prewarn' => 'Dikemukakan?',
- 'progress' => 'Kemajuan',
- 'quick-comment' => 'Komen Pantas',
- 'quick-tip' => 'Jumlah tip cepat',
- 'rated' => 'Dinilai',
- 'rating' => 'Penilaian',
- 'ready' => 'Fail ini sedia untuk dimuat turun',
- 'rejected' => 'Ditolak',
- 'released' => 'Dikeluarkan',
- 'remaining' => 'Baki',
- 'request-reseed' => 'Minta Dibaca',
- 'requires-reseed' => 'Memerlukan Reseed',
- 'resurrections' => 'Kebangkitan semula',
- 'revoke' => 'Membatalkan',
- 'rss' => 'RSS',
- 'runtime' => 'Runtime',
- 'satisfied_in' => 'Puas dalam',
- 'say-thanks' => 'Sila ingat terima kasih dan benih selama yang anda boleh',
- 'sd-content' => 'Kandungan SD',
- 'search' => 'Carian',
- 'seed-time' => 'Masa benih',
- 'seeder' => 'Seeder',
- 'seeders' => 'Peniaga',
- 'seeding' => 'Pembenihan',
- 'seedsize' => 'Seedsize',
- 'seedtime' => 'Seedtime',
- 'short-completed' => 'C',
- 'short-leechs' => 'L',
- 'short-seeds' => 'S',
- 'show-files' => 'Paparkan Fail',
- 'similar' => 'Torrents serupa',
- 'size' => 'Saiz',
- 'special' => 'Khas',
- 'special-freeleech' => 'Freeleech Khas',
- 'started' => 'Dimulakan',
- 'status' => 'Status',
- 'statistics' => 'Statistik',
- 'stats' => 'Statistik',
- 'sticky' => 'Melekit',
- 'stream-optimized' => 'Aliran dioptimumkan',
- 'subtitle' => 'Sarikata',
- 'team-player' => 'Pemain pasukan',
- 'thank' => 'Terima kasih',
- 'thanked' => 'Terima kasih',
- 'thanks' => 'Terima kasih',
- 'thanks-given' => 'Terima kasih',
- 'times' => 'Masa',
- 'tip-jar' => 'Tong jarum',
- 'title' => 'Tajuk',
- 'titles' => 'Tajuk',
- 'top-completed' => 'Teratas disiapkan',
- 'top-dead' => 'Top mati',
- 'top-dying' => 'Paling mati',
- 'top-leeched' => 'Leeched teratas',
- 'top-seeded' => 'Pilihan utama',
- 'torrent' => 'Torrent',
- 'torrent-request' => 'Permintaan Torrent',
- 'torrent-tips' => 'Dalam Jumlah : jumlah BON telah diberikan kepada pemuat naik, yang mana : pengguna berasal dari anda',
- 'torrent-tips-desc' => 'Ini akan ditolak dari mata bonus anda yang ada',
- 'torrents' => 'Torrents',
- 'trailer' => 'Lihat treler',
- 'type' => 'Taipkan',
- 'types' => 'Jenis',
- 'unbookmark' => 'Buku nota',
- 'unsatisfieds' => 'Tidak berpuas hati',
- 'unsticky' => 'Tidak kuat',
- 'updated' => 'Dikemaskini',
- 'updated_at' => 'Dikemas kini di',
- 'uploaded' => 'Dimuat naik',
- 'uploaded-by' => 'Dimuat naik oleh',
- 'uploader' => 'Pemuat naik',
- 'use-fl-token' => 'Gunakan Token Freeleech',
- 'video' => 'Video',
- 'view-more' => 'Lihat lagi',
- 'view-trailer' => 'Lihat treler',
- 'votes' => 'Undian',
+ 'grouping-results' => 'Keputusan Pengumpulan',
+ 'groupings-view' => 'Lihat Pengelasan',
+ 'have-completed' => 'Selesai',
+ 'have-downloaded' => 'Dikemaskini',
+ 'have-not-completed' => 'Tidak selesai',
+ 'have-not-downloaded' => 'Tidak dimuat turun',
+ 'health' => 'Kesihatan',
+ 'history' => 'Sejarah',
+ 'hitrun' => 'H & R?',
+ 'hit-and-runs' => 'Hit dan tuduhan Run',
+ 'immune' => 'Imun?',
+ 'info' => 'Maklumat',
+ 'internal' => 'Dalaman',
+ 'internal-release' => 'Pembebasan dalaman',
+ 'last-seed-activity' => 'Aktiviti benih lepas',
+ 'last-seeder' => 'Anda adalah Seeder yang terakhir! (telah dimuat turun sekurang-kurangnya 3 kali)',
+ 'last-update' => 'Kemaskini terakhir',
+ 'leave-tip' => 'Tinggalkan tip',
+ 'leecher' => 'Leecher',
+ 'leechers' => 'Lintah',
+ 'leeching' => 'Leeching',
+ 'left' => 'Ditinggalkan',
+ 'legendary-seeder' => 'Penyiar legenda',
+ 'legendary-torrent' => 'Torrent legenda',
+ 'list' => 'Senarai',
+ 'me' => 'Saya',
+ 'media-info' => 'MediaInfo',
+ 'media-info-parser' => 'MediaInfo Parser',
+ 'media-info-paste' => 'Paste MediaInfo dump di sini',
+ 'meta-desc' => 'Muat turun: nama pada kelajuan maksimum',
+ 'moderation' => 'Kesederhanaan',
+ 'movies' => 'Wayang',
+ 'mvp' => 'MVP',
+ 'my-active-torrents' => 'Kuasa aktif saya',
+ 'name' => 'Nama',
+ 'no-bookmarks' => 'Tiada penanda buku ditemui.',
+ 'no-discounts' => 'Pada masa ini tiada diskaun',
+ 'no-meta' => 'Tiada metadata dijumpai',
+ 'no-privileges' => 'Anda tidak dapat memuat turun fail ini - sila semak di bawah untuk maklumat lanjut',
+ 'no-privileges-desc' => 'Sila selesaikan hasil yang gagal di atas untuk muat turun untuk dipaparkan',
+ 'not-completed' => 'Mula Men-download Tetapi Tidak Selesai',
+ 'not-downloaded' => 'Tidak dimuat turun',
+ 'old-torrent' => 'Torrent lama',
+ 'optional' => 'Pilihan',
+ 'original-output' => 'Tunjukkan / Sembunyikan output asal',
+ 'participant' => 'Peserta',
+ 'passed' => 'Lulus',
+ 'peers' => 'Rakan sebaya',
+ 'pending' => 'Yang belum selesai',
+ 'personal-freeleech' => 'Freeleech peribadi',
+ 'poster' => 'Poster',
+ 'poster-view' => 'Pandangan poster',
+ 'posters' => 'Poster',
+ 'prewarn' => 'Dikemukakan?',
+ 'progress' => 'Kemajuan',
+ 'quick-comment' => 'Komen Pantas',
+ 'quick-tip' => 'Jumlah tip cepat',
+ 'rated' => 'Dinilai',
+ 'rating' => 'Penilaian',
+ 'ready' => 'Fail ini sedia untuk dimuat turun',
+ 'rejected' => 'Ditolak',
+ 'released' => 'Dikeluarkan',
+ 'remaining' => 'Baki',
+ 'request-reseed' => 'Minta Dibaca',
+ 'requires-reseed' => 'Memerlukan Reseed',
+ 'resurrections' => 'Kebangkitan semula',
+ 'revoke' => 'Membatalkan',
+ 'rss' => 'RSS',
+ 'runtime' => 'Runtime',
+ 'satisfied_in' => 'Puas dalam',
+ 'say-thanks' => 'Sila ingat terima kasih dan benih selama yang anda boleh',
+ 'sd-content' => 'Kandungan SD',
+ 'search' => 'Carian',
+ 'seed-time' => 'Masa benih',
+ 'seeder' => 'Seeder',
+ 'seeders' => 'Peniaga',
+ 'seeding' => 'Pembenihan',
+ 'seedsize' => 'Seedsize',
+ 'seedtime' => 'Seedtime',
+ 'short-completed' => 'C',
+ 'short-leechs' => 'L',
+ 'short-seeds' => 'S',
+ 'show-files' => 'Paparkan Fail',
+ 'similar' => 'Torrents serupa',
+ 'size' => 'Saiz',
+ 'special' => 'Khas',
+ 'special-freeleech' => 'Freeleech Khas',
+ 'started' => 'Dimulakan',
+ 'status' => 'Status',
+ 'statistics' => 'Statistik',
+ 'stats' => 'Statistik',
+ 'sticky' => 'Melekit',
+ 'stream-optimized' => 'Aliran dioptimumkan',
+ 'subtitle' => 'Sarikata',
+ 'team-player' => 'Pemain pasukan',
+ 'thank' => 'Terima kasih',
+ 'thanked' => 'Terima kasih',
+ 'thanks' => 'Terima kasih',
+ 'thanks-given' => 'Terima kasih',
+ 'times' => 'Masa',
+ 'tip-jar' => 'Tong jarum',
+ 'title' => 'Tajuk',
+ 'titles' => 'Tajuk',
+ 'top-completed' => 'Teratas disiapkan',
+ 'top-dead' => 'Top mati',
+ 'top-dying' => 'Paling mati',
+ 'top-leeched' => 'Leeched teratas',
+ 'top-seeded' => 'Pilihan utama',
+ 'torrent' => 'Torrent',
+ 'torrent-request' => 'Permintaan Torrent',
+ 'torrent-tips' => 'Dalam Jumlah : jumlah BON telah diberikan kepada pemuat naik, yang mana : pengguna berasal dari anda',
+ 'torrent-tips-desc' => 'Ini akan ditolak dari mata bonus anda yang ada',
+ 'torrents' => 'Torrents',
+ 'trailer' => 'Lihat treler',
+ 'type' => 'Taipkan',
+ 'types' => 'Jenis',
+ 'unbookmark' => 'Buku nota',
+ 'unsatisfieds' => 'Tidak berpuas hati',
+ 'unsticky' => 'Tidak kuat',
+ 'updated' => 'Dikemaskini',
+ 'updated_at' => 'Dikemas kini di',
+ 'uploaded' => 'Dimuat naik',
+ 'uploaded-by' => 'Dimuat naik oleh',
+ 'uploader' => 'Pemuat naik',
+ 'use-fl-token' => 'Gunakan Token Freeleech',
+ 'video' => 'Video',
+ 'view-more' => 'Lihat lagi',
+ 'view-trailer' => 'Lihat treler',
+ 'votes' => 'Undian',
];
diff --git a/lang/ms/user.php b/lang/ms/user.php
index c85f56967..7c1fb58b1 100644
--- a/lang/ms/user.php
+++ b/lang/ms/user.php
@@ -12,316 +12,316 @@
*/
return [
- 'about' => 'Mengenai',
- 'about-me' => 'Tentang saya',
- 'accepted-at' => 'Diterima pada',
- 'accepted-by' => 'Diterima oleh',
- 'account-notification' => 'Tetapan Pemberitahuan Akaun',
- 'account-notification-follow' => 'Menerima pemberitahuan apabila pengguna mengikuti akaun anda',
- 'account-notification-unfollow' => 'Menerima pemberitahuan apabila pengguna melumpuhkan akaun anda',
- 'account-notification-help' => 'Kawal pemberitahuan mana yang dihantar mengenai akaun anda. Tetapan ini ditindih jika anda tidak membenarkan mana-mana kumpulan menghantar pemberitahuan mengenai akaun anda atau jika anda mematikan Pemberitahuan',
- 'account-settings' => 'Tetapan Akaun',
- 'achievement-privacy' => 'Tetapan Pencapaian',
- 'achievement-privacy-list' => 'Benarkan pengguna melihat senarai pencapaian anda',
- 'achievement-help' => 'Kawal perkongsian maklumat berkaitan pencapaian tertentu dengan kumpulan yang dibenarkan mengakses ke profil anda. Tetapan ini ditindih jika anda tidak membenarkan mana-mana kumpulan untuk mengakses pencapaian anda atau jika anda pergi Private',
- 'achievements' => 'Pencapaian',
- 'active' => 'Aktif',
- 'active-table' => 'Jadual Aktif saya',
- 'active-torrents' => 'Torrents aktif',
- 'active-warning' => 'Amaran Aktif',
- 'active-warnings' => 'Amaran Aktif',
- 'add-seedbox' => 'Tambah kotak Seedbox',
- 'all-torrents' => 'Semua Torrents',
- 'article-comments' => 'Komen Artikel Dibuat',
- 'avatar' => 'Avatar',
- 'avg-seedtime' => 'Purata Seedtime',
- 'badges' => 'Lencana',
- 'ban' => 'Ban Pengguna',
- 'ban-log' => 'Ban Log',
- 'become-hidden' => 'Menjadi tersembunyi',
- 'become-visible' => 'Menjadi Terlihat',
- 'bon' => 'BON',
- 'bon-notification' => 'Tetapan Pemberitahuan BON',
- 'bon-notification-gift' => 'Terima pemberitahuan apabila pengguna memberi hadiah kepada anda',
- 'bon-notification-help' => 'Kawal pemberitahuan yang dihantar mengenai transaksi BON. Tetapan ini ditindih jika anda tidak membenarkan mana-mana kumpulan menghantar pemberitahuan tentang BON atau jika anda mematikan Pemberitahuan',
- 'bookmarks' => 'Penanda buku',
- 'bounty-given' => 'Bounty Given',
- 'bounty-received' => 'Bounty Received',
- 'can-chat' => 'Boleh Sembang',
- 'can-comment' => 'Bolehkah Komen',
- 'can-download' => 'Boleh Muat turun',
- 'can-invite' => 'Boleh jemput',
- 'can-request' => 'Boleh meminta',
- 'can-upload' => 'Boleh Upload',
- 'certified-banker' => 'Bertauliah Banker',
- 'certified-banker-desc' => 'Mempunyai 50,000 Atau Lebih BON Di Bank',
- 'certified-downloader' => 'Pemuat Bertauliah',
- 'certified-downloader-desc' => 'Muat turun 100 Torrents Atau Lagi!',
- 'certified-seeder' => 'Seeder Certified',
- 'certified-seeder-desc' => 'Pembenihan 150 Atau Lagi Torrents!',
- 'change-email' => 'Tukar emel',
- 'change-email-help' => 'Anda perlu mengesahkan semula akaun anda, selepas anda menukar e-mel anda',
- 'change-password' => 'Tukar kata laluan',
- 'change-password-help' => 'Anda perlu log masuk sekali lagi, selepas anda menukar kata laluan anda',
- 'client-ip-address' => 'Alamat IP Pelanggan',
- 'code' => 'Kod',
- 'comments' => 'Komen',
- 'created-on' => 'Dicipta pada',
- 'credited-download' => 'Muat turun yang diperakui',
- 'credited-upload' => 'Muat naik yang diperakui',
- 'current-password' => 'Kata laluan semasa',
- 'custom-title' => 'Tajuk khusus',
- 'delete' => 'Padam Pengguna',
- 'disable-notifications' => 'Lumpuhkan Pemberitahuan',
- 'disclaimer' => 'Penafian',
- 'disclaimer-info' => 'Kami secara lalai tidak log alamat IP pengguna seperti kebanyakan pelacak. Dengan menambah IP kotak benih anda di bawah, ia dijangkakan bahawa anda tahu IP anda yang disenaraikan di bawah kini disimpan dalam pangkalan data kami melainkan anda memadamkan rekod.',
- 'disclaimer-info-bordered' => 'IP Seedbox ditambah kemudian akan mencetuskan tag torrent kelajuan tinggi pada torrent yang dibuang dari IP yang disenaraikan di bawah',
- 'download-bon' => 'Muat Turun Dialih Daripada BON Store',
- 'download-recorded' => 'Muat Turun Rakaman',
- 'download-true' => 'Muat turun Benar',
- 'downloads' => 'Muat turun',
- 'edit' => 'Edit Pengguna',
- 'edit-profile' => 'Sunting profil',
- 'enable-notifications' => 'Dayakan Pemberitahuan',
- 'expired' => 'Tamat tempoh',
- 'expires-on' => 'Luput pada',
- 'extra' => 'Tambahan',
- 'filled-request' => 'Permintaan Anggota yang Diisi',
- 'follow' => 'Ikutilah',
- 'follower-privacy' => 'Tetapan Pengikut',
- 'follower-privacy-list' => 'Benarkan pengguna melihat senarai pengikut anda',
- 'follower-help' => 'Kawal perkongsian maklumat berkaitan pengikut tertentu dengan kumpulan yang dibenarkan mengakses ke profil anda. Tetapan ini ditindih jika anda tidak membenarkan mana-mana kumpulan untuk mengakses pengikut anda atau jika anda Pergi Persendirian',
- 'followers' => 'Pengikut',
- 'following-notification' => 'Tetapan Pemberitahuan Pengguna Diikuti',
- 'following-notification-upload' => 'Terima pemberitahuan apabila pengguna yang diikuti memuat torrent',
- 'following-notification-help' => 'Kawal pemberitahuan yang dihantar mengenai tindakan tapak pengguna yang diikuti. Tetapan ini ditindih jika anda tidak membenarkan mana-mana kumpulan menghantar pemberitahuan mengenai pengguna yang diikuti atau jika anda mematikan Pemberitahuan',
- 'formats-are-supported' => ': format disokong',
- 'forum-notification' => 'Tetapan Pemberitahuan Forum',
- 'forum-notification-topic' => 'Menerima pemberitahuan apabila topik yang anda mulakan mendapat jawatan baru',
- 'forum-notification-help' => 'Kawal pemberitahuan yang dihantar mengenai aktiviti forum. Tetapan ini ditindih jika anda tidak membenarkan mana-mana kumpulan menghantar pemberitahuan mengenai aktiviti forum atau jika anda mematikan Pemberitahuan',
- 'forum-privacy' => 'Tetapan Forum',
- 'forum-privacy-post' => 'Benarkan pengguna melihat senarai siaran forum yang telah anda siarkan',
- 'forum-privacy-topic' => 'Benarkan pengguna melihat senarai topik forum yang telah anda mulakan',
- 'forum-help' => 'Kawal perkongsian statistik dan maklumat berkaitan forum tertentu dengan kumpulan yang dibenarkan mengakses ke profil anda. Tetapan ini ditindih jika anda tidak membenarkan mana-mana kumpulan untuk mengakses statistik dan maklumat berkaitan forum anda atau jika anda Pergi Persendirian',
- 'forum-signature' => 'Tandatangan Forum',
- 'forums' => 'Forum',
- 'general' => 'Ketua',
- 'general-settings' => 'Tetapan umum',
- 'gift-given' => 'Hadiah yang Diberikan',
- 'gift-received' => 'Hadiah yang Diterima',
- 'go-public' => 'Pergi ke Awam',
- 'go-private' => 'Pergi Persendirian',
- 'history' => 'Sejarah',
- 'history-table' => 'Jadual Sejarah Saya',
- 'hit-n-runs' => 'Hit dan Runs',
- 'hit-n-runs-count' => 'Hit dan Run Count (Semua Masa)',
- 'hit-n-runs-history' => 'Torrent Hit dan Runs History',
- 'image' => 'Gambar',
- 'important' => 'Penting',
- 'important-info' => 'Maklumat penting',
- 'information' => 'Maklumat',
- 'invite-friend' => 'Jemput rakan anda (Emel + Perbualan Diperlukan)',
- 'invite-tree' => 'Jemput Pokok',
- 'invites' => 'Jemputan',
- 'invites-banned' => 'Ralat: Hak Jemput Anda Telah Dinyahdayakan',
- 'invites-banned-desc' => 'Sekiranya Anda Merasakan Ini Ralat, Sila Hubungi Staf!',
- 'invites-count' => 'Anda Memiliki: mengira Mengimbas Token',
- 'invites-disabled' => 'Perhatian: Invites Adakah Disabled Due To Open Registration!',
- 'invites-disabled-desc' => 'Sila semak semula segera!',
- 'invites-rules' => '- Hanya menjemput orang yang anda kenali dan dipercayai.
- Anda akan bertanggungjawab secara peribadi untuk orang yang anda jemput.
- Jangan mengundang diri anda, kami periksa setiap pengguna yang dijemput.
- Jangan berdagang atau jual Invites.
- Jika seseorang yang anda jemput tertangkap menipu, akaun dagangan atau jemputan jualan / perdagangan, anda akan diberi amaran.
',
- 'invites-send' => 'Jemputan Hantar',
- 'last-login' => 'Log masuk kali terakhir',
- 'locked' => 'Terkunci',
- 'locked-achievements' => 'Pencapaian terkunci',
- 'member-since' => 'Ahli sejak',
- 'members-desc' => 'Senarai pengguna yang didaftarkan di: tajuk dengan semua kumpulan. Cari pengguna sekarang.',
- 'mention-notification' => '@ Tetapan Pemberitahuan Pemberitahuan',
+ 'about' => 'Mengenai',
+ 'about-me' => 'Tentang saya',
+ 'accepted-at' => 'Diterima pada',
+ 'accepted-by' => 'Diterima oleh',
+ 'account-notification' => 'Tetapan Pemberitahuan Akaun',
+ 'account-notification-follow' => 'Menerima pemberitahuan apabila pengguna mengikuti akaun anda',
+ 'account-notification-unfollow' => 'Menerima pemberitahuan apabila pengguna melumpuhkan akaun anda',
+ 'account-notification-help' => 'Kawal pemberitahuan mana yang dihantar mengenai akaun anda. Tetapan ini ditindih jika anda tidak membenarkan mana-mana kumpulan menghantar pemberitahuan mengenai akaun anda atau jika anda mematikan Pemberitahuan',
+ 'account-settings' => 'Tetapan Akaun',
+ 'achievement-privacy' => 'Tetapan Pencapaian',
+ 'achievement-privacy-list' => 'Benarkan pengguna melihat senarai pencapaian anda',
+ 'achievement-help' => 'Kawal perkongsian maklumat berkaitan pencapaian tertentu dengan kumpulan yang dibenarkan mengakses ke profil anda. Tetapan ini ditindih jika anda tidak membenarkan mana-mana kumpulan untuk mengakses pencapaian anda atau jika anda pergi Private',
+ 'achievements' => 'Pencapaian',
+ 'active' => 'Aktif',
+ 'active-table' => 'Jadual Aktif saya',
+ 'active-torrents' => 'Torrents aktif',
+ 'active-warning' => 'Amaran Aktif',
+ 'active-warnings' => 'Amaran Aktif',
+ 'add-seedbox' => 'Tambah kotak Seedbox',
+ 'all-torrents' => 'Semua Torrents',
+ 'article-comments' => 'Komen Artikel Dibuat',
+ 'avatar' => 'Avatar',
+ 'avg-seedtime' => 'Purata Seedtime',
+ 'badges' => 'Lencana',
+ 'ban' => 'Ban Pengguna',
+ 'ban-log' => 'Ban Log',
+ 'become-hidden' => 'Menjadi tersembunyi',
+ 'become-visible' => 'Menjadi Terlihat',
+ 'bon' => 'BON',
+ 'bon-notification' => 'Tetapan Pemberitahuan BON',
+ 'bon-notification-gift' => 'Terima pemberitahuan apabila pengguna memberi hadiah kepada anda',
+ 'bon-notification-help' => 'Kawal pemberitahuan yang dihantar mengenai transaksi BON. Tetapan ini ditindih jika anda tidak membenarkan mana-mana kumpulan menghantar pemberitahuan tentang BON atau jika anda mematikan Pemberitahuan',
+ 'bookmarks' => 'Penanda buku',
+ 'bounty-given' => 'Bounty Given',
+ 'bounty-received' => 'Bounty Received',
+ 'can-chat' => 'Boleh Sembang',
+ 'can-comment' => 'Bolehkah Komen',
+ 'can-download' => 'Boleh Muat turun',
+ 'can-invite' => 'Boleh jemput',
+ 'can-request' => 'Boleh meminta',
+ 'can-upload' => 'Boleh Upload',
+ 'certified-banker' => 'Bertauliah Banker',
+ 'certified-banker-desc' => 'Mempunyai 50,000 Atau Lebih BON Di Bank',
+ 'certified-downloader' => 'Pemuat Bertauliah',
+ 'certified-downloader-desc' => 'Muat turun 100 Torrents Atau Lagi!',
+ 'certified-seeder' => 'Seeder Certified',
+ 'certified-seeder-desc' => 'Pembenihan 150 Atau Lagi Torrents!',
+ 'change-email' => 'Tukar emel',
+ 'change-email-help' => 'Anda perlu mengesahkan semula akaun anda, selepas anda menukar e-mel anda',
+ 'change-password' => 'Tukar kata laluan',
+ 'change-password-help' => 'Anda perlu log masuk sekali lagi, selepas anda menukar kata laluan anda',
+ 'client-ip-address' => 'Alamat IP Pelanggan',
+ 'code' => 'Kod',
+ 'comments' => 'Komen',
+ 'created-on' => 'Dicipta pada',
+ 'credited-download' => 'Muat turun yang diperakui',
+ 'credited-upload' => 'Muat naik yang diperakui',
+ 'current-password' => 'Kata laluan semasa',
+ 'custom-title' => 'Tajuk khusus',
+ 'delete' => 'Padam Pengguna',
+ 'disable-notifications' => 'Lumpuhkan Pemberitahuan',
+ 'disclaimer' => 'Penafian',
+ 'disclaimer-info' => 'Kami secara lalai tidak log alamat IP pengguna seperti kebanyakan pelacak. Dengan menambah IP kotak benih anda di bawah, ia dijangkakan bahawa anda tahu IP anda yang disenaraikan di bawah kini disimpan dalam pangkalan data kami melainkan anda memadamkan rekod.',
+ 'disclaimer-info-bordered' => 'IP Seedbox ditambah kemudian akan mencetuskan tag torrent kelajuan tinggi pada torrent yang dibuang dari IP yang disenaraikan di bawah',
+ 'download-bon' => 'Muat Turun Dialih Daripada BON Store',
+ 'download-recorded' => 'Muat Turun Rakaman',
+ 'download-true' => 'Muat turun Benar',
+ 'downloads' => 'Muat turun',
+ 'edit' => 'Edit Pengguna',
+ 'edit-profile' => 'Sunting profil',
+ 'enable-notifications' => 'Dayakan Pemberitahuan',
+ 'expired' => 'Tamat tempoh',
+ 'expires-on' => 'Luput pada',
+ 'extra' => 'Tambahan',
+ 'filled-request' => 'Permintaan Anggota yang Diisi',
+ 'follow' => 'Ikutilah',
+ 'follower-privacy' => 'Tetapan Pengikut',
+ 'follower-privacy-list' => 'Benarkan pengguna melihat senarai pengikut anda',
+ 'follower-help' => 'Kawal perkongsian maklumat berkaitan pengikut tertentu dengan kumpulan yang dibenarkan mengakses ke profil anda. Tetapan ini ditindih jika anda tidak membenarkan mana-mana kumpulan untuk mengakses pengikut anda atau jika anda Pergi Persendirian',
+ 'followers' => 'Pengikut',
+ 'following-notification' => 'Tetapan Pemberitahuan Pengguna Diikuti',
+ 'following-notification-upload' => 'Terima pemberitahuan apabila pengguna yang diikuti memuat torrent',
+ 'following-notification-help' => 'Kawal pemberitahuan yang dihantar mengenai tindakan tapak pengguna yang diikuti. Tetapan ini ditindih jika anda tidak membenarkan mana-mana kumpulan menghantar pemberitahuan mengenai pengguna yang diikuti atau jika anda mematikan Pemberitahuan',
+ 'formats-are-supported' => ': format disokong',
+ 'forum-notification' => 'Tetapan Pemberitahuan Forum',
+ 'forum-notification-topic' => 'Menerima pemberitahuan apabila topik yang anda mulakan mendapat jawatan baru',
+ 'forum-notification-help' => 'Kawal pemberitahuan yang dihantar mengenai aktiviti forum. Tetapan ini ditindih jika anda tidak membenarkan mana-mana kumpulan menghantar pemberitahuan mengenai aktiviti forum atau jika anda mematikan Pemberitahuan',
+ 'forum-privacy' => 'Tetapan Forum',
+ 'forum-privacy-post' => 'Benarkan pengguna melihat senarai siaran forum yang telah anda siarkan',
+ 'forum-privacy-topic' => 'Benarkan pengguna melihat senarai topik forum yang telah anda mulakan',
+ 'forum-help' => 'Kawal perkongsian statistik dan maklumat berkaitan forum tertentu dengan kumpulan yang dibenarkan mengakses ke profil anda. Tetapan ini ditindih jika anda tidak membenarkan mana-mana kumpulan untuk mengakses statistik dan maklumat berkaitan forum anda atau jika anda Pergi Persendirian',
+ 'forum-signature' => 'Tandatangan Forum',
+ 'forums' => 'Forum',
+ 'general' => 'Ketua',
+ 'general-settings' => 'Tetapan umum',
+ 'gift-given' => 'Hadiah yang Diberikan',
+ 'gift-received' => 'Hadiah yang Diterima',
+ 'go-public' => 'Pergi ke Awam',
+ 'go-private' => 'Pergi Persendirian',
+ 'history' => 'Sejarah',
+ 'history-table' => 'Jadual Sejarah Saya',
+ 'hit-n-runs' => 'Hit dan Runs',
+ 'hit-n-runs-count' => 'Hit dan Run Count (Semua Masa)',
+ 'hit-n-runs-history' => 'Torrent Hit dan Runs History',
+ 'image' => 'Gambar',
+ 'important' => 'Penting',
+ 'important-info' => 'Maklumat penting',
+ 'information' => 'Maklumat',
+ 'invite-friend' => 'Jemput rakan anda (Emel + Perbualan Diperlukan)',
+ 'invite-tree' => 'Jemput Pokok',
+ 'invites' => 'Jemputan',
+ 'invites-banned' => 'Ralat: Hak Jemput Anda Telah Dinyahdayakan',
+ 'invites-banned-desc' => 'Sekiranya Anda Merasakan Ini Ralat, Sila Hubungi Staf!',
+ 'invites-count' => 'Anda Memiliki: mengira Mengimbas Token',
+ 'invites-disabled' => 'Perhatian: Invites Adakah Disabled Due To Open Registration!',
+ 'invites-disabled-desc' => 'Sila semak semula segera!',
+ 'invites-rules' => '- Hanya menjemput orang yang anda kenali dan dipercayai.
- Anda akan bertanggungjawab secara peribadi untuk orang yang anda jemput.
- Jangan mengundang diri anda, kami periksa setiap pengguna yang dijemput.
- Jangan berdagang atau jual Invites.
- Jika seseorang yang anda jemput tertangkap menipu, akaun dagangan atau jemputan jualan / perdagangan, anda akan diberi amaran.
',
+ 'invites-send' => 'Jemputan Hantar',
+ 'last-login' => 'Log masuk kali terakhir',
+ 'locked' => 'Terkunci',
+ 'locked-achievements' => 'Pencapaian terkunci',
+ 'member-since' => 'Ahli sejak',
+ 'members-desc' => 'Senarai pengguna yang didaftarkan di: tajuk dengan semua kumpulan. Cari pengguna sekarang.',
+ 'mention-notification' => '@ Tetapan Pemberitahuan Pemberitahuan',
'mention-notification-article-comment' => 'Terima pemberitahuan apabila anda diulas dalam ulasan artikel',
'mention-notification-torrent-comment' => 'Menerima pemberitahuan apabila anda diuripkan dalam komen torrent',
'mention-notification-request-comment' => 'Menerima pemberitahuan apabila anda diulas di dalam komen permintaan',
- 'mention-notification-forum-post' => 'Menerima pemberitahuan apabila anda diulas di dalam pos forum',
- 'mention-notification-help' => 'Kawal pemberitahuan mana yang dihantar apabila pengguna @menesan anda. Tetapan ini akan ditindih jika anda tidak membenarkan mana-mana kumpulan menghantar pemberitahuan jika pengguna @menesan anda atau jika anda Matikan Pemberitahuan',
- 'moderated-by' => 'Sederhana dengan: mod dihidupkan',
- 'my-bonus-points' => 'Mata Bonus Saya',
- 'my-bookmarks' => 'Penanda buku saya',
- 'my-fl-tokens' => 'Token FL saya',
- 'my-general-settings' => 'Tetapan Umum Saya',
- 'my-notification' => 'Pemberitahuan Saya',
- 'my-notification-settings' => 'Tetapan Pemberitahuan saya',
- 'my-privacy' => 'Privasi saya',
- 'my-privacy-settings' => 'Tetapan Privasi Saya',
- 'my-profile' => 'Profil saya',
- 'my-requested' => 'Saya diminta',
- 'my-security' => 'Keselamatan saya',
- 'my-security-settings' => 'Tetapan Keselamatan Saya',
- 'my-seedboxes' => 'Kotak Seediku',
- 'my-settings' => 'Tetapan saya',
- 'my-wishlist' => 'Senarai Saya',
- 'no-logs' => 'Tidak ada log jemputan dalam pangkalan data untuk pengguna ini!',
- 'no-seedboxes' => 'Tiada kotak benih œ',
- 'not-authorized' => 'Anda tidak dibenarkan untuk melihat halaman ini. Ahli ini lebih suka tersembunyi seperti ninja!',
- 'note' => 'Catatan',
- 'notification' => 'Pemberitahuan',
- 'notification-settings' => 'Tetapan Pemberitahuan',
- 'notification-from-account' => 'Terima Pemberitahuan Akaun Dari',
- 'notification-from-account-help' => 'Anda hanya akan menerima notifikasi akaun daripada sistem, kakitangan dan kumpulan berikut. Tetapan ini ditindih jika anda mematikan Pemberitahuan',
- 'notification-from-bon' => 'Terima Pemberitahuan BON Dari',
- 'notification-from-bon-help' => 'Anda hanya akan menerima pemberitahuan BON dari sistem, kakitangan dan kumpulan berikut. Tetapan ini ditindih jika anda mematikan Pemberitahuan',
- 'notification-from-following' => 'Terima Pemberitahuan Pengguna Diikuti Dari',
- 'notification-from-following-help' => 'Anda hanya akan menerima pemberitahuan pengguna yang diikuti dari kumpulan berikut. Tetapan ini ditindih jika anda mematikan Pemberitahuan',
- 'notification-from-forum' => 'Menerima Pemberitahuan Forum Dari',
- 'notification-from-forum-help' => 'Anda hanya akan menerima pemberitahuan forum daripada sistem, kakitangan dan kumpulan berikut. Tetapan ini ditindih jika anda mematikan Pemberitahuan',
- 'notification-from-subscription' => 'Terima Pemberitahuan Langganan Dari',
- 'notification-from-subscription-help' => 'Anda hanya akan menerima pemberitahuan forum daripada sistem, kakitangan dan kumpulan berikut. Tetapan ini ditindih jika anda mematikan Pemberitahuan',
- 'notification-from-torrent' => 'Terima Pemberitahuan Torrent Dari',
- 'notification-from-torrent-help' => 'Anda hanya akan menerima pemberitahuan torrent dari sistem, kakitangan dan kumpulan berikut. Tetapan ini ditindih jika anda mematikan Pemberitahuan',
- 'notification-from-mention' => 'Terima @ Pemberitahuan Pemberitahuan Dari',
- 'notification-from-mention-help' => 'Anda hanya akan menerima pemberitahuan balasan daripada sistem, kakitangan dan kumpulan berikut. Tetapan ini ditindih jika anda mematikan Pemberitahuan',
- 'notification-from-request' => 'Terima Pemberitahuan Permintaan Dari',
- 'notification-from-request-help' => 'Anda hanya akan menerima pemberitahuan permintaan dari sistem, kakitangan dan kumpulan berikut. Tetapan ini ditindih jika anda mematikan Pemberitahuan',
- 'notifications' => 'Pemberitahuan',
- 'offline' => 'Pengguna Luar Talian!',
- 'online' => 'Pengguna Adakah Dalam Talian!',
- 'options' => 'Pilihan',
- 'other-help' => 'Kawal perkongsian statistik dan maklumat lain dengan kumpulan yang dibenarkan untuk mengakses profil anda. Tetapan ini ditindih jika anda tidak membenarkan mana-mana kumpulan untuk mengakses statistik dan maklumat anda yang lain atau jika anda Pergi Persendirian',
- 'other-privacy' => 'Tetapan Lain',
- 'other-privacy-online' => 'Benarkan pengguna melihat anda di blok pengguna dalam talian',
- 'passkey' => 'PID',
- 'passkey-warning' => 'PID adalah seperti kata laluan anda, anda mesti menyimpannya dengan selamat!',
- 'pending-achievements' => 'Pencapaian yang belum selesai',
- 'per-torrent' => 'Per Torrent',
- 'posts' => 'Posts',
- 'posts-posted' => 'Forum Posts Diposkan',
- 'privacy' => 'Privasi',
- 'privacy-settings' => 'Tetapan privasi',
- 'private-info' => 'Maklumat Persendirian',
- 'private-forum-profile' => 'Perhatian: Sejarah Ahli Topik & Pos ini telah ditetapkan untuk PRIVATE!',
- 'private-profile' => 'Perhatian: Profil ini telah ditetapkan untuk PRIVATE!',
- 'profile' => 'Profil',
- 'profile-desc' => 'Pengguna: profil pengguna yang didaftarkan pada: tajuk',
- 'profile-privacy' => 'Tetapan Profil',
- 'profile-privacy-torrent-count' => 'Kongsi jumlah unduhan, muat naik, biji dan lintah anda',
- 'profile-privacy-torrent-ratio' => 'Kongsi jumlah muat naik / muat turun data anda dengan nisbah rekod',
- 'profile-privacy-torrent-seed' => 'Berkongsi masa dan purata jumlah penanaman anda',
- 'profile-privacy-title' => 'Berkongsi maklumat tajuk peribadi anda',
- 'profile-privacy-about' => 'Berkongsi maklumat peribadi tentang saya',
- 'profile-privacy-bon-extra' => 'Kongsi statistik BON anda',
- 'profile-privacy-comment-extra' => 'Kongsi statistik ulasan anda',
- 'profile-privacy-forum-extra' => 'Kongsi statistik forum anda',
- 'profile-privacy-request-extra' => 'Kongsi statistik permintaan anda',
- 'profile-privacy-torrent-extra' => 'Kongsi statistik torrent anda',
- 'profile-privacy-badge' => 'Kongsi lencana anda yang diperolehi',
- 'profile-privacy-achievement' => 'Kongsi pencapaian terkini anda',
- 'profile-privacy-follower' => 'Kongsi pengikut anda baru-baru ini',
- 'profile-privacy-warning' => 'Kongsi peringatan H & R anda',
- 'profile-privacy-help' => 'Kawal mana statistik dan maklumat yang muncul pada profil anda. Tetapan ini ditindih jika anda tidak membenarkan mana-mana kumpulan untuk mengakses profil anda atau jika anda Pergi Persendirian',
- 'public-info' => 'Maklumat Awam',
- 'recent-achievements' => 'Pencapaian Terkini',
- 'recent-followers' => 'Pengikut terkini',
- 'registration-date' => 'Tarikh pendaftaran',
- 'report' => 'Laporan',
- 'request-help' => 'Kawal perkongsian statistik dan maklumat berkaitan permintaan tertentu dengan kumpulan yang dibenarkan mengakses ke profil anda. Tetapan ini ditindih jika anda tidak membenarkan mana-mana kumpulan mengakses statistik dan maklumat berkaitan yang anda mahukan atau jika anda pergi Private',
- 'request' => 'Permintaan',
- 'requested' => 'Diminta',
- 'requests' => 'Permintaan',
- 'request-comments' => 'Meminta Komen Dibuat',
- 'request-notification' => 'Permintaan Tetapan Pemberitahuan',
- 'request-notification-bounty' => 'Terima pemberitahuan apabila torrent yang diminta mendapat karunia baru',
- 'request-notification-comment' => 'Menerima pemberitahuan apabila torrent yang diminta mendapat komen baru',
- 'request-notification-fill' => 'Menerima pemberitahuan apabila torrent yang diminta dapat diisi',
- 'request-notification-fill-approve' => 'Menerima pemberitahuan apabila mengisi torrent yang diminta mendapat kelulusan',
- 'request-notification-fill-reject' => 'Menerima pemberitahuan apabila mengisi torrent yang diminta akan ditolak',
- 'request-notification-claim' => 'Terima pemberitahuan apabila torrent yang diminta mendapat tuntutan',
- 'request-notification-unclaim' => 'Menerima pemberitahuan apabila torrent yang diminta tidak dituntut',
- 'request-notification-help' => 'Kawal pemberitahuan mana yang dihantar mengenai aktiviti permintaan. Tetapan ini ditindih jika anda tidak membenarkan mana-mana kumpulan menghantar pemberitahuan mengenai aktiviti permintaan atau jika anda mematikan Pemberitahuan',
- 'request-privacy' => 'Minta Tetapan',
- 'request-privacy-requested' => 'Benarkan pengguna melihat senarai permintaan yang telah anda buat',
- 'reset-passkey' => 'Reset Pass Key (PID)',
- 'reset-passkey-help' => 'Anda perlu memuat semula / memuat semula semula semua torrents aktif anda, selepas menetapkan semula PID',
- 'reset-rss' => 'Tetapkan Kunci RSS (RID)',
- 'reset-rss-help' => 'Anda perlu memuat semula semua suapan RSS aktif anda, selepas menetapkan semula RID',
- 'resurrections' => 'Kebangkitan semula',
- 'search' => 'Carian pantas oleh nama pengguna',
- 'security' => 'Keselamatan',
- 'security-settings' => 'Tetapan keselamatan',
- 'seedboxes' => 'Peti besi',
- 'seeds' => 'Benih',
- 'send-invite' => 'Hantar Jemput',
- 'sender' => 'Pengirim',
- 'settings' => 'Tetapan',
- 'show-passkey' => 'Tunjukkan PID',
- 'staff-noted' => 'Akaun Nota Kakitangan',
- 'statistics' => 'Statistik',
- 'subscription-notification' => 'Tetapan Pemberitahuan Langganan',
- 'subscription-notification-forum' => 'Menerima pemberitahuan apabila forum yang berlanggan mendapat topik baru',
- 'subscription-notification-topic' => 'Menerima pemberitahuan apabila topik berlanggan mendapat jawatan baru',
- 'subscription-notification-help' => 'Kawal pemberitahuan yang dihantar mengenai langganan anda. Tetapan ini ditindih jika anda tidak membenarkan mana-mana kumpulan menghantar pemberitahuan tentang langganan anda atau jika anda mematikan Pemberitahuan',
- 'thanks-given' => 'Terima kasih',
- 'thanks-received' => 'Terima kasih terima',
- 'tips-given' => 'Tips Diberi',
- 'tips-received' => 'Petua diterima',
- 'title' => 'Tajuk',
- 'top-bankers' => 'Peminjam Teratas',
- 'top-downloaders-data' => 'Pemuat Teratas (Data)',
- 'top-leechers' => 'Lintah atas',
- 'top-leechers-count' => 'Leechers Top (Count)',
- 'top-seeders' => 'Seeders Top',
- 'top-seeders-count' => 'Pembina Teratas (Bilangan)',
- 'top-seeding-size' => 'Pembenihan Atas (Saiz)',
- 'top-seedtime' => 'Seedtime teratas',
- 'top-uploaders-data' => 'Pemuat Naik Atas (Data)',
- 'top-uploaders-count' => 'Pemuat Naik Atas (Mengira)',
- 'topics' => 'Topik',
- 'topics-started' => 'Topik Forum Dimulakan',
- 'torrent-comments' => 'Komen Torrent Made',
- 'torrent-help' => 'Kawal perkongsian statistik dan maklumat berkaitan torrent khusus dengan kumpulan yang dibenarkan mengakses ke profil anda. Tetapan ini ditindih jika anda tidak membenarkan mana-mana kumpulan mengakses statistik dan maklumat berkaitan torrent anda atau jika anda Pergi Persendirian',
- 'torrent-notification' => 'Tetapan Pemberitahuan Torrent',
- 'torrent-notification-comment' => 'Menerima pemberitahuan apabila torrent yang dimuat naik mendapat komen baru',
- 'torrent-notification-thank' => 'Terima pemberitahuan apabila torrent yang dimuat naik mendapat terima kasih baru',
- 'torrent-notification-tip' => 'Menerima pemberitahuan apabila torrent yang dimuat naik mendapat tip baru',
- 'torrent-notification-help' => 'Kawal pemberitahuan yang dihantar mengenai aktiviti torrent. Tetapan ini ditindih jika anda tidak membenarkan mana-mana kumpulan menghantar pemberitahuan mengenai aktiviti torrent atau jika anda mematikan Pemberitahuan',
- 'torrent-privacy' => 'Tetapan Torrent',
- 'torrent-privacy-download' => 'Benarkan pengguna melihat senarai torrents yang telah anda muat turun',
- 'torrent-privacy-upload' => 'Benarkan pengguna melihat senarai torrents yang telah anda muat naik',
- 'torrent-privacy-peer' => 'Benarkan pengguna melihat anda dalam jadual sejarah peer torrent',
- 'torrents' => 'Torrents',
- 'torrents-history' => 'Sejarah Torrents',
- 'total-download' => 'Muat turun Jumlah',
- 'total-downloads' => 'Jumlah Muat Turun',
- 'total-leeching' => 'Jumlah Lintah',
- 'total-seeding' => 'Jumlah Pembenihan',
- 'total-seedtime' => 'Jumlah Seedtime',
- 'total-upload' => 'Jumlah Naik',
- 'total-uploads' => 'Jumlah muat naik',
- 'unban' => 'Pengguna Unban',
- 'unfollow' => 'Unfollow',
- 'unlocked' => 'Dikunci',
- 'unlocked-achievements' => 'Pencapaian Unlocked',
- 'unsatisfieds' => 'Tidak berpuas hati',
- 'upload-bon' => 'Muat naik Ditambah Daripada BON Store',
- 'upload-recorded' => 'Naik Taraf',
- 'upload-true' => 'Muat Naik Benar',
- 'uploads' => 'Muat naik',
- 'uploads-table' => 'Jadual muat naik',
- 'user' => 'Pengguna',
- 'user-id' => 'ID Pengguna',
- 'username-seedbox' => 'Nama Seedbox pengguna',
- 'visible-to-achievement' => 'Pencapaian yang boleh dilihat',
- 'visible-to-achievement-help' => 'Pencapaian anda hanya dapat dilihat oleh kakitangan dan kumpulan berikut. Tetapan ini ditindih jika anda pergi Private',
- 'visible-to-follower' => 'Pengikut Terlihat Kepada',
- 'visible-to-follower-help' => 'Para pengikut anda hanya dapat dilihat oleh kakitangan dan kumpulan berikut. Tetapan ini ditindih jika anda pergi Private',
- 'visible-to-forum' => 'Maklumat Forum Boleh Dilihat Kepada',
- 'visible-to-forum-help' => 'Maklumat forum anda hanya dapat dilihat oleh kakitangan dan kumpulan berikut. Tetapan ini ditindih jika anda pergi Private',
- 'visible-to-other' => 'Lain-lain Boleh Dilihat Kepada',
- 'visible-to-other-help' => 'Maklumat lain mengenai akaun anda hanya dapat dilihat oleh kakitangan dan kumpulan berikut. Tetapan ini ditindih jika anda Pergi Pribadi atau jika anda Pergi Tersembunyi',
- 'visible-to-profile' => 'Profil Boleh Dilihat Kepada',
- 'visible-to-profile-help' => 'Profil anda hanya akan dapat dilihat oleh kakitangan dan kumpulan berikut. Tetapan ini ditindih jika anda pergi Private',
- 'visible-to-request' => 'Meminta Maklumat Yang Dilihat Kepada',
- 'visible-to-request-help' => 'Maklumat permintaan anda hanya dapat dilihat oleh kakitangan dan kumpulan berikut. Tetapan ini ditindih jika anda pergi Private',
- 'visible-to-torrent' => 'Maklumat Torrent Boleh Dilihat',
- 'visible-to-torrent-help' => 'Maklumat torrent anda hanya dapat dilihat oleh kakitangan dan kumpulan berikut. Tetapan ini ditindih jika anda Pergi Pribadi atau jika anda Pergi Tersembunyi',
- 'warned-on' => 'Diperingatkan',
- 'warning' => 'Amaran',
- 'warning-log' => 'Log Amaran',
- 'wishlist' => 'Senarai Pilihan',
+ 'mention-notification-forum-post' => 'Menerima pemberitahuan apabila anda diulas di dalam pos forum',
+ 'mention-notification-help' => 'Kawal pemberitahuan mana yang dihantar apabila pengguna @menesan anda. Tetapan ini akan ditindih jika anda tidak membenarkan mana-mana kumpulan menghantar pemberitahuan jika pengguna @menesan anda atau jika anda Matikan Pemberitahuan',
+ 'moderated-by' => 'Sederhana dengan: mod dihidupkan',
+ 'my-bonus-points' => 'Mata Bonus Saya',
+ 'my-bookmarks' => 'Penanda buku saya',
+ 'my-fl-tokens' => 'Token FL saya',
+ 'my-general-settings' => 'Tetapan Umum Saya',
+ 'my-notification' => 'Pemberitahuan Saya',
+ 'my-notification-settings' => 'Tetapan Pemberitahuan saya',
+ 'my-privacy' => 'Privasi saya',
+ 'my-privacy-settings' => 'Tetapan Privasi Saya',
+ 'my-profile' => 'Profil saya',
+ 'my-requested' => 'Saya diminta',
+ 'my-security' => 'Keselamatan saya',
+ 'my-security-settings' => 'Tetapan Keselamatan Saya',
+ 'my-seedboxes' => 'Kotak Seediku',
+ 'my-settings' => 'Tetapan saya',
+ 'my-wishlist' => 'Senarai Saya',
+ 'no-logs' => 'Tidak ada log jemputan dalam pangkalan data untuk pengguna ini!',
+ 'no-seedboxes' => 'Tiada kotak benih œ',
+ 'not-authorized' => 'Anda tidak dibenarkan untuk melihat halaman ini. Ahli ini lebih suka tersembunyi seperti ninja!',
+ 'note' => 'Catatan',
+ 'notification' => 'Pemberitahuan',
+ 'notification-settings' => 'Tetapan Pemberitahuan',
+ 'notification-from-account' => 'Terima Pemberitahuan Akaun Dari',
+ 'notification-from-account-help' => 'Anda hanya akan menerima notifikasi akaun daripada sistem, kakitangan dan kumpulan berikut. Tetapan ini ditindih jika anda mematikan Pemberitahuan',
+ 'notification-from-bon' => 'Terima Pemberitahuan BON Dari',
+ 'notification-from-bon-help' => 'Anda hanya akan menerima pemberitahuan BON dari sistem, kakitangan dan kumpulan berikut. Tetapan ini ditindih jika anda mematikan Pemberitahuan',
+ 'notification-from-following' => 'Terima Pemberitahuan Pengguna Diikuti Dari',
+ 'notification-from-following-help' => 'Anda hanya akan menerima pemberitahuan pengguna yang diikuti dari kumpulan berikut. Tetapan ini ditindih jika anda mematikan Pemberitahuan',
+ 'notification-from-forum' => 'Menerima Pemberitahuan Forum Dari',
+ 'notification-from-forum-help' => 'Anda hanya akan menerima pemberitahuan forum daripada sistem, kakitangan dan kumpulan berikut. Tetapan ini ditindih jika anda mematikan Pemberitahuan',
+ 'notification-from-subscription' => 'Terima Pemberitahuan Langganan Dari',
+ 'notification-from-subscription-help' => 'Anda hanya akan menerima pemberitahuan forum daripada sistem, kakitangan dan kumpulan berikut. Tetapan ini ditindih jika anda mematikan Pemberitahuan',
+ 'notification-from-torrent' => 'Terima Pemberitahuan Torrent Dari',
+ 'notification-from-torrent-help' => 'Anda hanya akan menerima pemberitahuan torrent dari sistem, kakitangan dan kumpulan berikut. Tetapan ini ditindih jika anda mematikan Pemberitahuan',
+ 'notification-from-mention' => 'Terima @ Pemberitahuan Pemberitahuan Dari',
+ 'notification-from-mention-help' => 'Anda hanya akan menerima pemberitahuan balasan daripada sistem, kakitangan dan kumpulan berikut. Tetapan ini ditindih jika anda mematikan Pemberitahuan',
+ 'notification-from-request' => 'Terima Pemberitahuan Permintaan Dari',
+ 'notification-from-request-help' => 'Anda hanya akan menerima pemberitahuan permintaan dari sistem, kakitangan dan kumpulan berikut. Tetapan ini ditindih jika anda mematikan Pemberitahuan',
+ 'notifications' => 'Pemberitahuan',
+ 'offline' => 'Pengguna Luar Talian!',
+ 'online' => 'Pengguna Adakah Dalam Talian!',
+ 'options' => 'Pilihan',
+ 'other-help' => 'Kawal perkongsian statistik dan maklumat lain dengan kumpulan yang dibenarkan untuk mengakses profil anda. Tetapan ini ditindih jika anda tidak membenarkan mana-mana kumpulan untuk mengakses statistik dan maklumat anda yang lain atau jika anda Pergi Persendirian',
+ 'other-privacy' => 'Tetapan Lain',
+ 'other-privacy-online' => 'Benarkan pengguna melihat anda di blok pengguna dalam talian',
+ 'passkey' => 'PID',
+ 'passkey-warning' => 'PID adalah seperti kata laluan anda, anda mesti menyimpannya dengan selamat!',
+ 'pending-achievements' => 'Pencapaian yang belum selesai',
+ 'per-torrent' => 'Per Torrent',
+ 'posts' => 'Posts',
+ 'posts-posted' => 'Forum Posts Diposkan',
+ 'privacy' => 'Privasi',
+ 'privacy-settings' => 'Tetapan privasi',
+ 'private-info' => 'Maklumat Persendirian',
+ 'private-forum-profile' => 'Perhatian: Sejarah Ahli Topik & Pos ini telah ditetapkan untuk PRIVATE!',
+ 'private-profile' => 'Perhatian: Profil ini telah ditetapkan untuk PRIVATE!',
+ 'profile' => 'Profil',
+ 'profile-desc' => 'Pengguna: profil pengguna yang didaftarkan pada: tajuk',
+ 'profile-privacy' => 'Tetapan Profil',
+ 'profile-privacy-torrent-count' => 'Kongsi jumlah unduhan, muat naik, biji dan lintah anda',
+ 'profile-privacy-torrent-ratio' => 'Kongsi jumlah muat naik / muat turun data anda dengan nisbah rekod',
+ 'profile-privacy-torrent-seed' => 'Berkongsi masa dan purata jumlah penanaman anda',
+ 'profile-privacy-title' => 'Berkongsi maklumat tajuk peribadi anda',
+ 'profile-privacy-about' => 'Berkongsi maklumat peribadi tentang saya',
+ 'profile-privacy-bon-extra' => 'Kongsi statistik BON anda',
+ 'profile-privacy-comment-extra' => 'Kongsi statistik ulasan anda',
+ 'profile-privacy-forum-extra' => 'Kongsi statistik forum anda',
+ 'profile-privacy-request-extra' => 'Kongsi statistik permintaan anda',
+ 'profile-privacy-torrent-extra' => 'Kongsi statistik torrent anda',
+ 'profile-privacy-badge' => 'Kongsi lencana anda yang diperolehi',
+ 'profile-privacy-achievement' => 'Kongsi pencapaian terkini anda',
+ 'profile-privacy-follower' => 'Kongsi pengikut anda baru-baru ini',
+ 'profile-privacy-warning' => 'Kongsi peringatan H & R anda',
+ 'profile-privacy-help' => 'Kawal mana statistik dan maklumat yang muncul pada profil anda. Tetapan ini ditindih jika anda tidak membenarkan mana-mana kumpulan untuk mengakses profil anda atau jika anda Pergi Persendirian',
+ 'public-info' => 'Maklumat Awam',
+ 'recent-achievements' => 'Pencapaian Terkini',
+ 'recent-followers' => 'Pengikut terkini',
+ 'registration-date' => 'Tarikh pendaftaran',
+ 'report' => 'Laporan',
+ 'request-help' => 'Kawal perkongsian statistik dan maklumat berkaitan permintaan tertentu dengan kumpulan yang dibenarkan mengakses ke profil anda. Tetapan ini ditindih jika anda tidak membenarkan mana-mana kumpulan mengakses statistik dan maklumat berkaitan yang anda mahukan atau jika anda pergi Private',
+ 'request' => 'Permintaan',
+ 'requested' => 'Diminta',
+ 'requests' => 'Permintaan',
+ 'request-comments' => 'Meminta Komen Dibuat',
+ 'request-notification' => 'Permintaan Tetapan Pemberitahuan',
+ 'request-notification-bounty' => 'Terima pemberitahuan apabila torrent yang diminta mendapat karunia baru',
+ 'request-notification-comment' => 'Menerima pemberitahuan apabila torrent yang diminta mendapat komen baru',
+ 'request-notification-fill' => 'Menerima pemberitahuan apabila torrent yang diminta dapat diisi',
+ 'request-notification-fill-approve' => 'Menerima pemberitahuan apabila mengisi torrent yang diminta mendapat kelulusan',
+ 'request-notification-fill-reject' => 'Menerima pemberitahuan apabila mengisi torrent yang diminta akan ditolak',
+ 'request-notification-claim' => 'Terima pemberitahuan apabila torrent yang diminta mendapat tuntutan',
+ 'request-notification-unclaim' => 'Menerima pemberitahuan apabila torrent yang diminta tidak dituntut',
+ 'request-notification-help' => 'Kawal pemberitahuan mana yang dihantar mengenai aktiviti permintaan. Tetapan ini ditindih jika anda tidak membenarkan mana-mana kumpulan menghantar pemberitahuan mengenai aktiviti permintaan atau jika anda mematikan Pemberitahuan',
+ 'request-privacy' => 'Minta Tetapan',
+ 'request-privacy-requested' => 'Benarkan pengguna melihat senarai permintaan yang telah anda buat',
+ 'reset-passkey' => 'Reset Pass Key (PID)',
+ 'reset-passkey-help' => 'Anda perlu memuat semula / memuat semula semula semua torrents aktif anda, selepas menetapkan semula PID',
+ 'reset-rss' => 'Tetapkan Kunci RSS (RID)',
+ 'reset-rss-help' => 'Anda perlu memuat semula semua suapan RSS aktif anda, selepas menetapkan semula RID',
+ 'resurrections' => 'Kebangkitan semula',
+ 'search' => 'Carian pantas oleh nama pengguna',
+ 'security' => 'Keselamatan',
+ 'security-settings' => 'Tetapan keselamatan',
+ 'seedboxes' => 'Peti besi',
+ 'seeds' => 'Benih',
+ 'send-invite' => 'Hantar Jemput',
+ 'sender' => 'Pengirim',
+ 'settings' => 'Tetapan',
+ 'show-passkey' => 'Tunjukkan PID',
+ 'staff-noted' => 'Akaun Nota Kakitangan',
+ 'statistics' => 'Statistik',
+ 'subscription-notification' => 'Tetapan Pemberitahuan Langganan',
+ 'subscription-notification-forum' => 'Menerima pemberitahuan apabila forum yang berlanggan mendapat topik baru',
+ 'subscription-notification-topic' => 'Menerima pemberitahuan apabila topik berlanggan mendapat jawatan baru',
+ 'subscription-notification-help' => 'Kawal pemberitahuan yang dihantar mengenai langganan anda. Tetapan ini ditindih jika anda tidak membenarkan mana-mana kumpulan menghantar pemberitahuan tentang langganan anda atau jika anda mematikan Pemberitahuan',
+ 'thanks-given' => 'Terima kasih',
+ 'thanks-received' => 'Terima kasih terima',
+ 'tips-given' => 'Tips Diberi',
+ 'tips-received' => 'Petua diterima',
+ 'title' => 'Tajuk',
+ 'top-bankers' => 'Peminjam Teratas',
+ 'top-downloaders-data' => 'Pemuat Teratas (Data)',
+ 'top-leechers' => 'Lintah atas',
+ 'top-leechers-count' => 'Leechers Top (Count)',
+ 'top-seeders' => 'Seeders Top',
+ 'top-seeders-count' => 'Pembina Teratas (Bilangan)',
+ 'top-seeding-size' => 'Pembenihan Atas (Saiz)',
+ 'top-seedtime' => 'Seedtime teratas',
+ 'top-uploaders-data' => 'Pemuat Naik Atas (Data)',
+ 'top-uploaders-count' => 'Pemuat Naik Atas (Mengira)',
+ 'topics' => 'Topik',
+ 'topics-started' => 'Topik Forum Dimulakan',
+ 'torrent-comments' => 'Komen Torrent Made',
+ 'torrent-help' => 'Kawal perkongsian statistik dan maklumat berkaitan torrent khusus dengan kumpulan yang dibenarkan mengakses ke profil anda. Tetapan ini ditindih jika anda tidak membenarkan mana-mana kumpulan mengakses statistik dan maklumat berkaitan torrent anda atau jika anda Pergi Persendirian',
+ 'torrent-notification' => 'Tetapan Pemberitahuan Torrent',
+ 'torrent-notification-comment' => 'Menerima pemberitahuan apabila torrent yang dimuat naik mendapat komen baru',
+ 'torrent-notification-thank' => 'Terima pemberitahuan apabila torrent yang dimuat naik mendapat terima kasih baru',
+ 'torrent-notification-tip' => 'Menerima pemberitahuan apabila torrent yang dimuat naik mendapat tip baru',
+ 'torrent-notification-help' => 'Kawal pemberitahuan yang dihantar mengenai aktiviti torrent. Tetapan ini ditindih jika anda tidak membenarkan mana-mana kumpulan menghantar pemberitahuan mengenai aktiviti torrent atau jika anda mematikan Pemberitahuan',
+ 'torrent-privacy' => 'Tetapan Torrent',
+ 'torrent-privacy-download' => 'Benarkan pengguna melihat senarai torrents yang telah anda muat turun',
+ 'torrent-privacy-upload' => 'Benarkan pengguna melihat senarai torrents yang telah anda muat naik',
+ 'torrent-privacy-peer' => 'Benarkan pengguna melihat anda dalam jadual sejarah peer torrent',
+ 'torrents' => 'Torrents',
+ 'torrents-history' => 'Sejarah Torrents',
+ 'total-download' => 'Muat turun Jumlah',
+ 'total-downloads' => 'Jumlah Muat Turun',
+ 'total-leeching' => 'Jumlah Lintah',
+ 'total-seeding' => 'Jumlah Pembenihan',
+ 'total-seedtime' => 'Jumlah Seedtime',
+ 'total-upload' => 'Jumlah Naik',
+ 'total-uploads' => 'Jumlah muat naik',
+ 'unban' => 'Pengguna Unban',
+ 'unfollow' => 'Unfollow',
+ 'unlocked' => 'Dikunci',
+ 'unlocked-achievements' => 'Pencapaian Unlocked',
+ 'unsatisfieds' => 'Tidak berpuas hati',
+ 'upload-bon' => 'Muat naik Ditambah Daripada BON Store',
+ 'upload-recorded' => 'Naik Taraf',
+ 'upload-true' => 'Muat Naik Benar',
+ 'uploads' => 'Muat naik',
+ 'uploads-table' => 'Jadual muat naik',
+ 'user' => 'Pengguna',
+ 'user-id' => 'ID Pengguna',
+ 'username-seedbox' => 'Nama Seedbox pengguna',
+ 'visible-to-achievement' => 'Pencapaian yang boleh dilihat',
+ 'visible-to-achievement-help' => 'Pencapaian anda hanya dapat dilihat oleh kakitangan dan kumpulan berikut. Tetapan ini ditindih jika anda pergi Private',
+ 'visible-to-follower' => 'Pengikut Terlihat Kepada',
+ 'visible-to-follower-help' => 'Para pengikut anda hanya dapat dilihat oleh kakitangan dan kumpulan berikut. Tetapan ini ditindih jika anda pergi Private',
+ 'visible-to-forum' => 'Maklumat Forum Boleh Dilihat Kepada',
+ 'visible-to-forum-help' => 'Maklumat forum anda hanya dapat dilihat oleh kakitangan dan kumpulan berikut. Tetapan ini ditindih jika anda pergi Private',
+ 'visible-to-other' => 'Lain-lain Boleh Dilihat Kepada',
+ 'visible-to-other-help' => 'Maklumat lain mengenai akaun anda hanya dapat dilihat oleh kakitangan dan kumpulan berikut. Tetapan ini ditindih jika anda Pergi Pribadi atau jika anda Pergi Tersembunyi',
+ 'visible-to-profile' => 'Profil Boleh Dilihat Kepada',
+ 'visible-to-profile-help' => 'Profil anda hanya akan dapat dilihat oleh kakitangan dan kumpulan berikut. Tetapan ini ditindih jika anda pergi Private',
+ 'visible-to-request' => 'Meminta Maklumat Yang Dilihat Kepada',
+ 'visible-to-request-help' => 'Maklumat permintaan anda hanya dapat dilihat oleh kakitangan dan kumpulan berikut. Tetapan ini ditindih jika anda pergi Private',
+ 'visible-to-torrent' => 'Maklumat Torrent Boleh Dilihat',
+ 'visible-to-torrent-help' => 'Maklumat torrent anda hanya dapat dilihat oleh kakitangan dan kumpulan berikut. Tetapan ini ditindih jika anda Pergi Pribadi atau jika anda Pergi Tersembunyi',
+ 'warned-on' => 'Diperingatkan',
+ 'warning' => 'Amaran',
+ 'warning-log' => 'Log Amaran',
+ 'wishlist' => 'Senarai Pilihan',
];
diff --git a/lang/ms/validation.php b/lang/ms/validation.php
index c6f9ddd0d..443060fe0 100644
--- a/lang/ms/validation.php
+++ b/lang/ms/validation.php
@@ -23,108 +23,108 @@ return [
|
*/
- 'accepted' => ':attribute mesti diterima pakai.',
- 'active_url' => ':attribute bukan URL yang sah.',
- 'after' => ':attribute mesti tarikh selepas :date.',
- 'after_or_equal' => ':attribute mesti tarikh selepas atau sama dengan :date.',
- 'alpha' => ':attribute hanya boleh mengandungi huruf.',
- 'alpha_dash' => ':attribute boleh mengandungi huruf, nombor, dan sengkang.',
- 'alpha_num' => ':attribute boleh mengandungi huruf dan nombor.',
- 'array' => ':attribute mesti jujukan.',
- 'before' => ':attribute mesti tarikh sebelum :date.',
- 'before_or_equal' => ':attribute mesti tarikh sebelum atau sama dengan :date.',
- 'between' => [
+ 'accepted' => ':attribute mesti diterima pakai.',
+ 'active_url' => ':attribute bukan URL yang sah.',
+ 'after' => ':attribute mesti tarikh selepas :date.',
+ 'after_or_equal' => ':attribute mesti tarikh selepas atau sama dengan :date.',
+ 'alpha' => ':attribute hanya boleh mengandungi huruf.',
+ 'alpha_dash' => ':attribute boleh mengandungi huruf, nombor, dan sengkang.',
+ 'alpha_num' => ':attribute boleh mengandungi huruf dan nombor.',
+ 'array' => ':attribute mesti jujukan.',
+ 'before' => ':attribute mesti tarikh sebelum :date.',
+ 'before_or_equal' => ':attribute mesti tarikh sebelum atau sama dengan :date.',
+ 'between' => [
'numeric' => ':attribute mesti mengandungi antara :min dan :max.',
- 'file' => ':attribute mesti mengandungi antara :min dan :max kilobait.',
- 'string' => ':attribute mesti mengandungi antara :min dan :max aksara.',
- 'array' => ':attribute mesti mengandungi antara :min dan :max perkara.',
+ 'file' => ':attribute mesti mengandungi antara :min dan :max kilobait.',
+ 'string' => ':attribute mesti mengandungi antara :min dan :max aksara.',
+ 'array' => ':attribute mesti mengandungi antara :min dan :max perkara.',
],
- 'boolean' => ':attribute mesti benar atau salah.',
- 'confirmed' => ':attribute pengesahan yang tidak sepadan.',
- 'date' => ':attribute bukan tarikh yang sah.',
- 'date_equals' => ':attribute mesti tarikh sama dengan :date.',
- 'date_format' => ':attribute tidak mengikut format :format.',
- 'different' => ':attribute dan :other mesti berlainan.',
- 'dimensions' => ':attribute tidak sah',
- 'digits' => ':attribute mesti :digits.',
- 'digits_between' => ':attribute mesti mengandungi antara :min dan :max digits.',
- 'distinct' => ':attribute adalah nilai yang berulang',
- 'email' => ':attribute tidak sah.',
- 'exists' => ':attribute tidak sah.',
- 'file' => ':attribute mesti fail yang sah.',
- 'filled' => ':attribute diperlukan.',
- 'gt' => [
+ 'boolean' => ':attribute mesti benar atau salah.',
+ 'confirmed' => ':attribute pengesahan yang tidak sepadan.',
+ 'date' => ':attribute bukan tarikh yang sah.',
+ 'date_equals' => ':attribute mesti tarikh sama dengan :date.',
+ 'date_format' => ':attribute tidak mengikut format :format.',
+ 'different' => ':attribute dan :other mesti berlainan.',
+ 'dimensions' => ':attribute tidak sah',
+ 'digits' => ':attribute mesti :digits.',
+ 'digits_between' => ':attribute mesti mengandungi antara :min dan :max digits.',
+ 'distinct' => ':attribute adalah nilai yang berulang',
+ 'email' => ':attribute tidak sah.',
+ 'exists' => ':attribute tidak sah.',
+ 'file' => ':attribute mesti fail yang sah.',
+ 'filled' => ':attribute diperlukan.',
+ 'gt' => [
'numeric' => ':attribute mesti melebihi :value.',
- 'file' => ':attribute mesti melebihi :value kilobait.',
- 'string' => ':attribute mesti melebihi :value aksara.',
- 'array' => ':attribute mesti mengandungi lebih daripada :value perkara.',
+ 'file' => ':attribute mesti melebihi :value kilobait.',
+ 'string' => ':attribute mesti melebihi :value aksara.',
+ 'array' => ':attribute mesti mengandungi lebih daripada :value perkara.',
],
- 'gte' => [
+ 'gte' => [
'numeric' => ':attribute mesti melebihi atau bersamaan :value.',
- 'file' => ':attribute mesti melebihi atau bersamaan :value kilobait.',
- 'string' => ':attribute mesti melebihi atau bersamaan :value aksara.',
- 'array' => ':attribute mesti mengandungi :value perkara atau lebih.',
+ 'file' => ':attribute mesti melebihi atau bersamaan :value kilobait.',
+ 'string' => ':attribute mesti melebihi atau bersamaan :value aksara.',
+ 'array' => ':attribute mesti mengandungi :value perkara atau lebih.',
],
- 'image' => ':attribute mesti imej.',
- 'in' => ':attribute tidak sah.',
- 'in_array' => ':attribute tidak wujud dalam :other.',
- 'integer' => ':attribute mesti integer.',
- 'ip' => ':attribute mesti alamat IP yang sah.',
- 'ipv4' => ':attribute mesti alamat IPv4 yang sah.',
- 'ipv6' => ':attribute mesti alamat IPv6 yang sah',
- 'json' => ':attribute mesti JSON yang sah.',
- 'lt' => [
+ 'image' => ':attribute mesti imej.',
+ 'in' => ':attribute tidak sah.',
+ 'in_array' => ':attribute tidak wujud dalam :other.',
+ 'integer' => ':attribute mesti integer.',
+ 'ip' => ':attribute mesti alamat IP yang sah.',
+ 'ipv4' => ':attribute mesti alamat IPv4 yang sah.',
+ 'ipv6' => ':attribute mesti alamat IPv6 yang sah',
+ 'json' => ':attribute mesti JSON yang sah.',
+ 'lt' => [
'numeric' => ':attribute mesti kurang daripada :value.',
- 'file' => ':attribute mesti kurang daripada :value kilobait.',
- 'string' => ':attribute mesti kurang daripada :value aksara.',
- 'array' => ':attribute mesti mengandungi kurang daripada :value perkara.',
+ 'file' => ':attribute mesti kurang daripada :value kilobait.',
+ 'string' => ':attribute mesti kurang daripada :value aksara.',
+ 'array' => ':attribute mesti mengandungi kurang daripada :value perkara.',
],
- 'lte' => [
+ 'lte' => [
'numeric' => ':attribute mesti kurang daripada atau bersamaan dengan :value.',
- 'file' => ':attribute mesti kurang daripada atau bersamaan dengan :value kilobait.',
- 'string' => ':attribute mesti kurang daripada atau bersamaan dengan :value aksara.',
- 'array' => ':attribute mesti mengandungi kurang daripada atau bersamaan dengan :value perkara.',
+ 'file' => ':attribute mesti kurang daripada atau bersamaan dengan :value kilobait.',
+ 'string' => ':attribute mesti kurang daripada atau bersamaan dengan :value aksara.',
+ 'array' => ':attribute mesti mengandungi kurang daripada atau bersamaan dengan :value perkara.',
],
- 'max' => [
+ 'max' => [
'numeric' => 'Jumlah :attribute mesti tidak melebihi :max.',
- 'file' => 'Jumlah :attribute mesti tidak melebihi :max kilobait.',
- 'string' => 'Jumlah :attribute mesti tidak melebihi :max aksara.',
- 'array' => 'Jumlah :attribute mesti tidak melebihi :max perkara.',
+ 'file' => 'Jumlah :attribute mesti tidak melebihi :max kilobait.',
+ 'string' => 'Jumlah :attribute mesti tidak melebihi :max aksara.',
+ 'array' => 'Jumlah :attribute mesti tidak melebihi :max perkara.',
],
- 'mimes' => ':attribute mesti fail type: :values.',
- 'mimetypes' => ':attribute mesti fail type: :values.',
- 'min' => [
+ 'mimes' => ':attribute mesti fail type: :values.',
+ 'mimetypes' => ':attribute mesti fail type: :values.',
+ 'min' => [
'numeric' => 'Jumlah :attribute mesti sekurang-kurangnya :min.',
- 'file' => 'Jumlah :attribute mesti sekurang-kurangnya :min kilobait.',
- 'string' => 'Jumlah :attribute mesti sekurang-kurangnya :min aksara.',
- 'array' => 'Jumlah :attribute mesti sekurang-kurangnya :min perkara.',
+ 'file' => 'Jumlah :attribute mesti sekurang-kurangnya :min kilobait.',
+ 'string' => 'Jumlah :attribute mesti sekurang-kurangnya :min aksara.',
+ 'array' => 'Jumlah :attribute mesti sekurang-kurangnya :min perkara.',
],
- 'not_in' => ':attribute tidak sah.',
- 'not_regex' => 'Format :attribute adalah tidak sah.',
- 'numeric' => ':attribute mesti nombor.',
- 'present' => ':attribute mesti wujud.',
- 'regex' => 'Format :attribute tidak sah.',
- 'required' => 'Ruangan :attribute diperlukan.',
- 'required_if' => 'Ruangan :attribute diperlukan bila :other sama dengan :value.',
- 'required_unless' => 'Ruangan :attribute diperlukan sekiranya :other ada dalam :values.',
- 'required_with' => 'Ruangan :attribute diperlukan bila :values wujud.',
- 'required_with_all' => 'Ruangan :attribute diperlukan bila :values wujud.',
- 'required_without' => 'Ruangan :attribute diperlukan bila :values tidak wujud.',
+ 'not_in' => ':attribute tidak sah.',
+ 'not_regex' => 'Format :attribute adalah tidak sah.',
+ 'numeric' => ':attribute mesti nombor.',
+ 'present' => ':attribute mesti wujud.',
+ 'regex' => 'Format :attribute tidak sah.',
+ 'required' => 'Ruangan :attribute diperlukan.',
+ 'required_if' => 'Ruangan :attribute diperlukan bila :other sama dengan :value.',
+ 'required_unless' => 'Ruangan :attribute diperlukan sekiranya :other ada dalam :values.',
+ 'required_with' => 'Ruangan :attribute diperlukan bila :values wujud.',
+ 'required_with_all' => 'Ruangan :attribute diperlukan bila :values wujud.',
+ 'required_without' => 'Ruangan :attribute diperlukan bila :values tidak wujud.',
'required_without_all' => 'Ruangan :attribute diperlukan bila kesemua :values wujud.',
- 'same' => 'Ruangan :attribute dan :other mesti sepadan.',
- 'size' => [
+ 'same' => 'Ruangan :attribute dan :other mesti sepadan.',
+ 'size' => [
'numeric' => 'Saiz :attribute mesti :size.',
- 'file' => 'Saiz :attribute mesti :size kilobait.',
- 'string' => 'Saiz :attribute mesti :size aksara.',
- 'array' => 'Saiz :attribute mesti mengandungi :size perkara.',
+ 'file' => 'Saiz :attribute mesti :size kilobait.',
+ 'string' => 'Saiz :attribute mesti :size aksara.',
+ 'array' => 'Saiz :attribute mesti mengandungi :size perkara.',
],
- 'starts_with' => ':attribute mesti bermula dengan salah satu dari: :values',
- 'string' => ':attribute mesti aksara.',
- 'timezone' => ':attribute mesti zon masa yang sah.',
- 'unique' => ':attribute telah wujud.',
- 'uploaded' => ':attribute gagal dimuat naik.',
- 'url' => ':attribute format tidak sah.',
- 'uuid' => ':attribute mesti UUID yang sah.',
+ 'starts_with' => ':attribute mesti bermula dengan salah satu dari: :values',
+ 'string' => ':attribute mesti aksara.',
+ 'timezone' => ':attribute mesti zon masa yang sah.',
+ 'unique' => ':attribute telah wujud.',
+ 'uploaded' => ':attribute gagal dimuat naik.',
+ 'url' => ':attribute format tidak sah.',
+ 'uuid' => ':attribute mesti UUID yang sah.',
/*
|--------------------------------------------------------------------------
diff --git a/lang/ne/articles.php b/lang/ne/articles.php
index 45e715ced..8560299b5 100644
--- a/lang/ne/articles.php
+++ b/lang/ne/articles.php
@@ -12,8 +12,8 @@
*/
return [
- 'articles' => 'लेखहरू',
+ 'articles' => 'लेखहरू',
'meta-articles' => 'ट्रयाकर र समुदायमा लेखहरू र समाचारहरू',
- 'published-at' => 'प्रकाशित गरिएको',
- 'read-more' => 'थप पढ्नुहोस्',
+ 'published-at' => 'प्रकाशित गरिएको',
+ 'read-more' => 'थप पढ्नुहोस्',
];
diff --git a/lang/ne/auth.php b/lang/ne/auth.php
index 6f3bd5ce2..5a9fe8687 100644
--- a/lang/ne/auth.php
+++ b/lang/ne/auth.php
@@ -23,6 +23,6 @@ return [
|
*/
- 'failed' => 'यी प्रमाणहरू हाम्रो रेकर्ड संग मेल खादैनन्।',
+ 'failed' => 'यी प्रमाणहरू हाम्रो रेकर्ड संग मेल खादैनन्।',
'throttle' => 'धेरै लगिन प्रयास भयो। :seconds सेकेन्ड पछि फेरि प्रयास गर्नुहोस्।',
];
diff --git a/lang/ne/backup.php b/lang/ne/backup.php
index c726c9ec1..b21317707 100644
--- a/lang/ne/backup.php
+++ b/lang/ne/backup.php
@@ -12,32 +12,32 @@
*/
return [
- 'actions' => 'कार्यहरू',
- 'backup' => 'जगेडा',
- 'backup_doesnt_exist' => 'ब्याकअप फाइल अवस्थित छैन।',
- 'create_a_new_backup' => 'पूर्ण जगेडा सिर्जना गर्नुहोस्',
- 'create_a_new_files_backup' => 'फाईल ब्याकअप सिर्जना गर्नुहोस्',
- 'create_a_new_db_backup' => 'डेटाबेस ब्याकअप सिर्जना गर्नुहोस्',
- 'create_confirmation_message' => '3 सेकेन्डमा पृष्ठ पुन: लोड गर्दै।',
- 'create_confirmation_title' => 'जगेडा पूरा भयो',
- 'create_error_message' => 'ब्याकअप फाइल सिर्जना गर्न सकिएन।',
- 'create_error_title' => 'जगेडा त्रुटि',
- 'create_warning_message' => 'तपाईंको जगेडा सिर्जना गरिएको हुन सक्छ। विवरणका लागि लग फाइलहरू जाँच गर्नुहोस्।',
- 'create_warning_title' => 'अज्ञात त्रुटि',
- 'date' => 'मिति',
- 'delete' => 'मेटाउन',
- 'delete_cancel_message' => 'ब्याकअप फाइल मेटाइएको छैन।',
- 'delete_cancel_title' => 'ठिकै छ',
- 'delete_confirm' => 'के तपाईं पक्का यो ब्याकअप फाइल मेटाउन चाहनुहुन्छ?',
- 'delete_confirmation_message' => 'ब्याकअप फाइल मेटाईयो।',
- 'delete_confirmation_title' => 'भयो',
- 'delete_error_message' => 'ब्याकअप फाइल मेटाइएको छैन।',
- 'delete_error_title' => 'त्रुटि',
- 'download' => 'डाउनलोड गर्नुहोस्',
- 'existing_backups' => 'अवस्थित ब्याकअपहरू',
- 'file_size' => 'फाइल आकार',
- 'location' => 'स्थान',
- 'manager' => 'प्रबन्धक',
- 'no_disks_configured' => 'कुनै जगेडा डिस्क कन्फिगर / कन्फिगर.php मा कन्फिगर गरिएको छैन',
+ 'actions' => 'कार्यहरू',
+ 'backup' => 'जगेडा',
+ 'backup_doesnt_exist' => 'ब्याकअप फाइल अवस्थित छैन।',
+ 'create_a_new_backup' => 'पूर्ण जगेडा सिर्जना गर्नुहोस्',
+ 'create_a_new_files_backup' => 'फाईल ब्याकअप सिर्जना गर्नुहोस्',
+ 'create_a_new_db_backup' => 'डेटाबेस ब्याकअप सिर्जना गर्नुहोस्',
+ 'create_confirmation_message' => '3 सेकेन्डमा पृष्ठ पुन: लोड गर्दै।',
+ 'create_confirmation_title' => 'जगेडा पूरा भयो',
+ 'create_error_message' => 'ब्याकअप फाइल सिर्जना गर्न सकिएन।',
+ 'create_error_title' => 'जगेडा त्रुटि',
+ 'create_warning_message' => 'तपाईंको जगेडा सिर्जना गरिएको हुन सक्छ। विवरणका लागि लग फाइलहरू जाँच गर्नुहोस्।',
+ 'create_warning_title' => 'अज्ञात त्रुटि',
+ 'date' => 'मिति',
+ 'delete' => 'मेटाउन',
+ 'delete_cancel_message' => 'ब्याकअप फाइल मेटाइएको छैन।',
+ 'delete_cancel_title' => 'ठिकै छ',
+ 'delete_confirm' => 'के तपाईं पक्का यो ब्याकअप फाइल मेटाउन चाहनुहुन्छ?',
+ 'delete_confirmation_message' => 'ब्याकअप फाइल मेटाईयो।',
+ 'delete_confirmation_title' => 'भयो',
+ 'delete_error_message' => 'ब्याकअप फाइल मेटाइएको छैन।',
+ 'delete_error_title' => 'त्रुटि',
+ 'download' => 'डाउनलोड गर्नुहोस्',
+ 'existing_backups' => 'अवस्थित ब्याकअपहरू',
+ 'file_size' => 'फाइल आकार',
+ 'location' => 'स्थान',
+ 'manager' => 'प्रबन्धक',
+ 'no_disks_configured' => 'कुनै जगेडा डिस्क कन्फिगर / कन्फिगर.php मा कन्फिगर गरिएको छैन',
'only_local_downloads_supported' => 'स्थानीय फाइल प्रणालीबाट मात्र डाउनलोडहरू समर्थित छन्।',
];
diff --git a/lang/ne/blocks.php b/lang/ne/blocks.php
index fd28957b4..4da313d22 100644
--- a/lang/ne/blocks.php
+++ b/lang/ne/blocks.php
@@ -12,19 +12,19 @@
*/
return [
- 'chatbox' => 'च्याट बक्स',
- 'click' => 'क्लिक गर्नुहोस्',
- 'to-enable-editor' => 'सम्पादक सक्षम गर्न',
- 'featured-by' => 'द्वारा प्रदर्शित',
- 'featured-torrents' => 'Featured Torrents',
+ 'chatbox' => 'च्याट बक्स',
+ 'click' => 'क्लिक गर्नुहोस्',
+ 'to-enable-editor' => 'सम्पादक सक्षम गर्न',
+ 'featured-by' => 'द्वारा प्रदर्शित',
+ 'featured-torrents' => 'Featured Torrents',
'featured-torrents-intro' => 'तपाईं पाउन सक्नुहुन्छ जब प्राप्त गर्नुहोस्!',
- 'featured-until' => 'यो टोरेंट छ सम्म सम्म',
- 'top-torrents' => 'शीर्ष Torrents',
- 'latest-posts' => 'नवीनतम पोस्टहरू',
- 'latest-topics' => 'नवीनतम विषयहरू',
- 'active-in-last' => 'अन्तिममा सक्रिय',
- 'users-online' => 'प्रयोगकर्ताहरू अनलाइन',
- 'check-news' => 'समाचार (दैनिक जाँच गर्नुहोस्)',
- 'new-news' => 'नयाँ समाचार',
- 'new-torrents' => 'नयाँ ट्राफिकहरू',
+ 'featured-until' => 'यो टोरेंट छ सम्म सम्म',
+ 'top-torrents' => 'शीर्ष Torrents',
+ 'latest-posts' => 'नवीनतम पोस्टहरू',
+ 'latest-topics' => 'नवीनतम विषयहरू',
+ 'active-in-last' => 'अन्तिममा सक्रिय',
+ 'users-online' => 'प्रयोगकर्ताहरू अनलाइन',
+ 'check-news' => 'समाचार (दैनिक जाँच गर्नुहोस्)',
+ 'new-news' => 'नयाँ समाचार',
+ 'new-torrents' => 'नयाँ ट्राफिकहरू',
];
diff --git a/lang/ne/bon.php b/lang/ne/bon.php
index ea36d64ed..a6ed0dd6a 100644
--- a/lang/ne/bon.php
+++ b/lang/ne/bon.php
@@ -12,44 +12,44 @@
*/
return [
- 'activated' => 'सक्रिय',
- 'active' => 'सक्रिय गरियो!',
- 'amount' => 'रकम',
- 'bon' => 'BON',
- 'bonus' => 'बोनस',
- 'date' => 'मिति',
- 'earning' => 'आय',
- 'earning-rate' => 'कमाईको यो दरमा तपाईंले निम्न प्रतिसमय कमाउनुहुनेछ ..',
- 'earnings' => 'आय',
- 'exchange' => 'एक्सचेंज',
- 'exchange-warning' => 'एक्सचेंजहरू अन्तिम हो, कृपया विनिमय गर्न अघि आफ्नो छनौट जाँच गर्नुहोस्।',
- 'extended-stats' => 'विस्तारित तथ्याङ्कहरू',
- 'gift' => 'उपहार',
- 'gift-bonus' => 'उपहार बोनस अंकहरू',
- 'gift-to' => 'उपहार बोनस पोष्ट गर्न',
- 'gifts' => 'उपहारहरू',
- 'item' => 'वस्तु',
- 'no-refund' => 'कुनै प्रतिज्ञाहरू छैनन्!',
- 'per-day' => 'प्रति दिन अंकहरू',
- 'per-hour' => 'प्रति घन्टा अंकहरू',
- 'per-minute' => 'प्रति मिनेट अंकहरू',
- 'per-month' => 'प्रति महिना अंकहरू',
- 'per-second' => 'प्रति सेकेन्ड अंक',
- 'per-week' => 'प्रति हप्ता अंकहरू',
- 'per-year' => 'प्रति वर्ष अंकहरू',
- 'points' => 'अंकहरू',
- 'receiver' => 'प्राप्तकर्ता',
- 'review-seeds' => 'सबै बीज गरिएका टोरन्टहरूको समीक्षा गर्नुहोस्',
- 'send-gift' => 'साैगात पठाउ',
- 'sender' => 'प्रेषक',
- 'store' => 'स्टोर',
- 'tips' => 'सुझावहरू',
- 'total' => 'कुल आय',
- 'total-gifts' => 'कुल BON उपहारमा',
- 'total-tips' => 'कुल BON सुझावहरूमा',
+ 'activated' => 'सक्रिय',
+ 'active' => 'सक्रिय गरियो!',
+ 'amount' => 'रकम',
+ 'bon' => 'BON',
+ 'bonus' => 'बोनस',
+ 'date' => 'मिति',
+ 'earning' => 'आय',
+ 'earning-rate' => 'कमाईको यो दरमा तपाईंले निम्न प्रतिसमय कमाउनुहुनेछ ..',
+ 'earnings' => 'आय',
+ 'exchange' => 'एक्सचेंज',
+ 'exchange-warning' => 'एक्सचेंजहरू अन्तिम हो, कृपया विनिमय गर्न अघि आफ्नो छनौट जाँच गर्नुहोस्।',
+ 'extended-stats' => 'विस्तारित तथ्याङ्कहरू',
+ 'gift' => 'उपहार',
+ 'gift-bonus' => 'उपहार बोनस अंकहरू',
+ 'gift-to' => 'उपहार बोनस पोष्ट गर्न',
+ 'gifts' => 'उपहारहरू',
+ 'item' => 'वस्तु',
+ 'no-refund' => 'कुनै प्रतिज्ञाहरू छैनन्!',
+ 'per-day' => 'प्रति दिन अंकहरू',
+ 'per-hour' => 'प्रति घन्टा अंकहरू',
+ 'per-minute' => 'प्रति मिनेट अंकहरू',
+ 'per-month' => 'प्रति महिना अंकहरू',
+ 'per-second' => 'प्रति सेकेन्ड अंक',
+ 'per-week' => 'प्रति हप्ता अंकहरू',
+ 'per-year' => 'प्रति वर्ष अंकहरू',
+ 'points' => 'अंकहरू',
+ 'receiver' => 'प्राप्तकर्ता',
+ 'review-seeds' => 'सबै बीज गरिएका टोरन्टहरूको समीक्षा गर्नुहोस्',
+ 'send-gift' => 'साैगात पठाउ',
+ 'sender' => 'प्रेषक',
+ 'store' => 'स्टोर',
+ 'tips' => 'सुझावहरू',
+ 'total' => 'कुल आय',
+ 'total-gifts' => 'कुल BON उपहारमा',
+ 'total-tips' => 'कुल BON सुझावहरूमा',
'you-have-received-gifts' => 'तपाईंले प्राप्त गर्नुभएको छ',
- 'you-have-sent-gifts' => 'तपाईंले पठाउनुभएको छ',
- 'you-have-received-tips' => 'तपाईंले प्राप्त गर्नुभएको छ',
- 'you-have-sent-tips' => 'तपाईंले पठाउनुभएको छ',
- 'your-points' => 'तपाईंको अंकहरू',
+ 'you-have-sent-gifts' => 'तपाईंले पठाउनुभएको छ',
+ 'you-have-received-tips' => 'तपाईंले प्राप्त गर्नुभएको छ',
+ 'you-have-sent-tips' => 'तपाईंले पठाउनुभएको छ',
+ 'your-points' => 'तपाईंको अंकहरू',
];
diff --git a/lang/ne/bot.php b/lang/ne/bot.php
index acb9eabd7..80da3bbbb 100644
--- a/lang/ne/bot.php
+++ b/lang/ne/bot.php
@@ -12,15 +12,15 @@
*/
return [
- 'about' => 'बारेमा',
- 'bot' => 'Bot',
- 'bots' => 'बोट्स',
- 'color' => 'रंग',
- 'command' => 'आदेश',
- 'edit-bot' => 'Bot सम्पादन गर्नुहोस्',
+ 'about' => 'बारेमा',
+ 'bot' => 'Bot',
+ 'bots' => 'बोट्स',
+ 'color' => 'रंग',
+ 'command' => 'आदेश',
+ 'edit-bot' => 'Bot सम्पादन गर्नुहोस्',
'emoji-code' => 'इमोजी कोड',
- 'help' => 'मद्दत',
- 'icon' => 'प्रतिमा',
- 'info' => 'जानकारी',
- 'name' => 'नाम',
+ 'help' => 'मद्दत',
+ 'icon' => 'प्रतिमा',
+ 'info' => 'जानकारी',
+ 'name' => 'नाम',
];
diff --git a/lang/ne/bug.php b/lang/ne/bug.php
index ec77ccd9b..b72741106 100644
--- a/lang/ne/bug.php
+++ b/lang/ne/bug.php
@@ -12,15 +12,15 @@
*/
return [
- 'bug-report' => 'बग प्रतिवेदन',
+ 'bug-report' => 'बग प्रतिवेदन',
'bug-report-description' => 'साइट बग रिपोर्ट गर्नुहोस्',
- 'enter-description' => 'समस्याको बारेमा यथार्थलाई वर्णन गर्नुहोस्',
- 'enter-email' => 'कृपया तपाईंको ई-मेल प्रविष्ट गर्नुहोस्',
- 'enter-title' => 'कृपया एक उचित शीर्षक छान्नुहोस्',
- 'enter-username' => 'कृपया आफ्नो प्रयोगकर्ता नाम प्रविष्ट गर्नुहोस्',
- 'high' => 'उच्च',
- 'low' => 'कम',
- 'priority' => 'प्राथमिकता',
- 'priority-description' => 'यदि बग वास्तवमा साइट प्रयोग गर्न समस्या हो भने मात्र उच्च उच्च छान्नुहोस्।',
- 'very-high' => 'धेरै माथि',
+ 'enter-description' => 'समस्याको बारेमा यथार्थलाई वर्णन गर्नुहोस्',
+ 'enter-email' => 'कृपया तपाईंको ई-मेल प्रविष्ट गर्नुहोस्',
+ 'enter-title' => 'कृपया एक उचित शीर्षक छान्नुहोस्',
+ 'enter-username' => 'कृपया आफ्नो प्रयोगकर्ता नाम प्रविष्ट गर्नुहोस्',
+ 'high' => 'उच्च',
+ 'low' => 'कम',
+ 'priority' => 'प्राथमिकता',
+ 'priority-description' => 'यदि बग वास्तवमा साइट प्रयोग गर्न समस्या हो भने मात्र उच्च उच्च छान्नुहोस्।',
+ 'very-high' => 'धेरै माथि',
];
diff --git a/lang/ne/common.php b/lang/ne/common.php
index 7a3c7e514..4c0b6f34f 100644
--- a/lang/ne/common.php
+++ b/lang/ne/common.php
@@ -12,179 +12,179 @@
*/
return [
- 'a-an-art' => '',
- 'about' => 'हाम्रोबारे',
- 'account' => 'खाता',
- 'achievement-title' => 'अति उत्तम',
+ 'a-an-art' => '',
+ 'about' => 'हाम्रोबारे',
+ 'account' => 'खाता',
+ 'achievement-title' => 'अति उत्तम',
'achievement-unlocked' => 'तपाईंले "नाम" उपलब्धि अनलक गर्नुभयो',
- 'active' => 'सक्रिय',
- 'active-warning' => 'सक्रिय चेतावनी',
- 'add' => 'थप्नुहोस्',
- 'added' => 'थपियो',
- 'amount' => 'रकम',
- 'anonymous' => 'बेनामी',
- 'author' => 'लेखक',
- 'balance' => 'शेष',
- 'blacklist' => 'ग्राहक ब्ल्याकलिस्ट',
- 'buffer' => 'बफर',
- 'bug' => 'एक बग रिपोर्ट गर्नुहोस्',
- 'but' => 'तर',
- 'cancel' => 'रद्द गर्नुहोस्',
- 'category' => 'कोटि',
- 'categories' => 'कोटीहरू',
- 'close' => 'बन्द गर्नुहोस्',
- 'comment' => 'टिप्पणी',
- 'comments' => 'टिप्पणीहरू',
- 'community' => 'समुदाय',
- 'contact' => 'सम्पर्क',
- 'contact-desc' => 'यो सम्पर्क अनुरोध मालिकलाई पठाइनेछ र जितनी सकेसम्म तपाईंलाई फिर्ता आउनेछ',
- 'contact-header' => 'नमस्ते',
- 'create' => 'सिर्जना गर्नुहोस्',
- 'created_at' => 'सिर्जना गरियो',
- 'day' => 'दिन',
- 'delete' => 'मेटाउन',
- 'delete-your-comment' => 'तपाईंको टिप्पणी मेटाउनुहोस्',
- 'description' => 'विवरण',
- 'direction' => 'दिशा',
- 'disable' => 'असक्षम गर्नुहोस्',
- 'doubleup_activated' => 'ग्लोबल डबल अपलोड मोड सक्रिय गरियो',
- 'download' => 'डाउनलोड गर्नुहोस्',
- 'edit' => 'सम्पादन गर्नुहोस्',
- 'edit-your-comment' => 'तपाईंको टिप्पणी सम्पादन गर्नुहोस्',
- 'email' => 'ई-मेल',
- 'email-blacklist' => 'ब्ल्याकलिस्ट इमेल गर्नुहोस्',
- 'email-whitelist' => 'इमेल व्हाइटेलिस्ट',
+ 'active' => 'सक्रिय',
+ 'active-warning' => 'सक्रिय चेतावनी',
+ 'add' => 'थप्नुहोस्',
+ 'added' => 'थपियो',
+ 'amount' => 'रकम',
+ 'anonymous' => 'बेनामी',
+ 'author' => 'लेखक',
+ 'balance' => 'शेष',
+ 'blacklist' => 'ग्राहक ब्ल्याकलिस्ट',
+ 'buffer' => 'बफर',
+ 'bug' => 'एक बग रिपोर्ट गर्नुहोस्',
+ 'but' => 'तर',
+ 'cancel' => 'रद्द गर्नुहोस्',
+ 'category' => 'कोटि',
+ 'categories' => 'कोटीहरू',
+ 'close' => 'बन्द गर्नुहोस्',
+ 'comment' => 'टिप्पणी',
+ 'comments' => 'टिप्पणीहरू',
+ 'community' => 'समुदाय',
+ 'contact' => 'सम्पर्क',
+ 'contact-desc' => 'यो सम्पर्क अनुरोध मालिकलाई पठाइनेछ र जितनी सकेसम्म तपाईंलाई फिर्ता आउनेछ',
+ 'contact-header' => 'नमस्ते',
+ 'create' => 'सिर्जना गर्नुहोस्',
+ 'created_at' => 'सिर्जना गरियो',
+ 'day' => 'दिन',
+ 'delete' => 'मेटाउन',
+ 'delete-your-comment' => 'तपाईंको टिप्पणी मेटाउनुहोस्',
+ 'description' => 'विवरण',
+ 'direction' => 'दिशा',
+ 'disable' => 'असक्षम गर्नुहोस्',
+ 'doubleup_activated' => 'ग्लोबल डबल अपलोड मोड सक्रिय गरियो',
+ 'download' => 'डाउनलोड गर्नुहोस्',
+ 'edit' => 'सम्पादन गर्नुहोस्',
+ 'edit-your-comment' => 'तपाईंको टिप्पणी सम्पादन गर्नुहोस्',
+ 'email' => 'ई-मेल',
+ 'email-blacklist' => 'ब्ल्याकलिस्ट इमेल गर्नुहोस्',
+ 'email-whitelist' => 'इमेल व्हाइटेलिस्ट',
'email-list-notactive' => 'इमेल व्हाइटेलिस्ट / ब्ल्याकलिस्ट प्रणाली सक्रिय छैन',
- 'enable' => 'सक्रिय गर्नुहोस्',
- 'enter' => 'प्रविष्ट गर्नुहोस्',
- 'error' => 'त्रुटि',
- 'everyday' => 'हरेक दिन',
- 'expired' => 'समयावधि समाप्त भयो',
- 'extra' => 'अतिरिक्त',
- 'extra-stats' => 'थप तथ्याङ्कहरू',
- 'faq' => 'FAQ',
- 'files' => 'फाइलहरू',
- 'fl_token' => 'फ्रीलेच टोकन',
- 'fl_tokens' => 'फ्रीलेटे टोकन',
- 'for' => 'लागि',
- 'forum' => 'फोरम',
- 'free' => 'नि: शुल्क',
- 'freeleech_activated' => 'ग्लोबल फ्रिलेच मोड सक्रिय गरियो',
- 'global' => 'ग्लोबल',
- 'group' => 'समूह',
- 'groups' => 'समूहहरू',
- 'hidden' => 'लुकेको छ',
- 'high-speeds' => 'उच्च गति',
- 'home' => 'घर',
- 'hot' => 'हट!',
- 'hour' => 'घण्टा',
- 'huge' => 'विशाल',
- 'info' => 'जानकारी',
- 'internal' => 'आन्तरिक',
- 'ip' => 'आईपी',
- 'is-allowed' => 'अनुमति छ',
- 'large' => 'ठूलो',
- 'latest' => 'नवीनतम',
- 'latest-posts' => 'नवीनतम पोस्टहरू',
- 'latest-topics' => 'नवीनतम विषयहरू',
- 'legal' => 'कानूनी',
- 'legend' => 'कथा',
- 'lists' => 'सूचीहरू',
- 'lock-account' => 'खाता लक गर्नुहोस्',
- 'logout' => 'बाहिर निस्कनु',
- 'members' => 'सदस्यहरू',
- 'message' => 'सन्देश',
- 'minute' => 'मिनेट',
- 'moderated-by' => 'द्वारा पारित',
- 'moderation' => 'मध्यस्थता',
- 'moderation-approve' => 'अनुमोदन गर्नुहोस्',
- 'moderation-postpone' => 'स्थगित',
- 'moderation-reject' => 'अस्वीकार गर्नुहोस्',
- 'month' => 'महिना',
- 'months' => 'महिना',
- 'my' => 'मेरो',
- 'name' => 'नाम',
- 'navigation' => 'नेभिगेशन',
- 'new' => 'नयाँ!',
- 'new-adj' => 'नयाँ',
- 'news' => 'समाचार',
- 'next' => 'अर्को',
- 'no' => 'होइन',
- 'no-comments' => 'अझै सम्म कुनै टिप्पणीहरू छैनन्',
- 'no-result' => 'क्वेरीको लागि डाटाबेसमा कुनै परिणाम छैन',
- 'notifications' => 'अधिसूचनाहरू',
- 'older-than' => 'भन्दा पुरानो',
- 'oldest' => 'सबैभन्दा पुरानो',
- 'openreg_activated' => 'दर्ता खोल्ने सक्रिय',
- 'order-by' => 'द्वारा क्रम',
- 'other' => 'अन्य',
- 'pages' => 'पृष्ठहरु',
- 'password' => 'पासवर्ड',
- 'patron' => 'एक संरक्षक बनें',
- 'pending-torrents' => 'पेन्डिङ टरेन्टहरू',
- 'personal' => 'व्यक्तिगत',
- 'plural-suffix' => 's',
- 'port' => 'पोर्ट',
- 'position' => 'स्थिति',
- 'posts' => 'पोस्टहरू',
- 'powered-by' => 'UNIT3D द्वारा संचालित',
- 'preview' => 'पूर्वावलोकन',
- 'previous' => 'अघिल्लो',
- 'progress' => 'प्रगति',
- 'publish' => 'प्रकाशन गर्नुहोस्',
- 'quantity' => 'मात्रा',
- 'quick-search' => 'द्रुत खोज',
- 'ratio' => 'अनुपात',
- 'reason' => 'कारण',
- 'remove' => 'हटाउनुहोस्',
- 'report' => 'रिपोर्ट गर्नुहोस्',
- 'resend' => 'पुनः पठाउनुहोस्',
- 'reporter' => 'रिपोर्टर',
- 'required' => 'आवश्यक छ',
- 'results' => 'परिणामहरू',
- 'rss-system' => 'आरएसएस प्रणाली',
- 'rules' => 'नियमहरू',
- 'save' => 'बचत गर्नुहोस्',
- 'search' => 'खोज्नुहोस्',
- 'search-results' => 'खोजी परिणामहरू',
- 'search-results-desc' => 'कृपया तलका परिणामहरू हेर्नुहोस्',
- 'second' => 'दोस्रो',
- 'select' => 'छान्नुहोस्',
- 'sort' => 'क्रमबद्ध गर्नुहोस्',
- 'special' => 'विशेष',
- 'staff' => 'कर्मचारी',
- 'staff-tools' => 'कर्मचारी उपकरण',
- 'stats' => 'आँकडा',
- 'status' => 'स्थिति',
- 'sticked' => 'Sticked',
- 'submit' => 'पेश गर्नुहोस्',
- 'subscriptions' => 'सदस्यताहरू',
- 'teams' => 'टोलीहरू',
- 'terms' => 'प्रयोगका शर्तहरू',
- 'times' => 'टाइम्स',
- 'title' => 'शीर्षक',
- 'top-bountied' => 'शीर्ष बन्टेड',
- 'topics' => 'विषयहरू',
- 'tracker-codes' => 'ट्रयाक कोडहरू',
- 'type' => 'टाइप गर्नुहोस्',
- 'type-verb' => 'टाइप गर्नुहोस्',
- 'types' => 'प्रकारहरू',
- 'genre' => 'शैली',
- 'genres' => 'Genres',
- 'action' => 'कार्य',
- 'actions' => 'कार्यहरू',
- 'unknown' => 'अज्ञात',
+ 'enable' => 'सक्रिय गर्नुहोस्',
+ 'enter' => 'प्रविष्ट गर्नुहोस्',
+ 'error' => 'त्रुटि',
+ 'everyday' => 'हरेक दिन',
+ 'expired' => 'समयावधि समाप्त भयो',
+ 'extra' => 'अतिरिक्त',
+ 'extra-stats' => 'थप तथ्याङ्कहरू',
+ 'faq' => 'FAQ',
+ 'files' => 'फाइलहरू',
+ 'fl_token' => 'फ्रीलेच टोकन',
+ 'fl_tokens' => 'फ्रीलेटे टोकन',
+ 'for' => 'लागि',
+ 'forum' => 'फोरम',
+ 'free' => 'नि: शुल्क',
+ 'freeleech_activated' => 'ग्लोबल फ्रिलेच मोड सक्रिय गरियो',
+ 'global' => 'ग्लोबल',
+ 'group' => 'समूह',
+ 'groups' => 'समूहहरू',
+ 'hidden' => 'लुकेको छ',
+ 'high-speeds' => 'उच्च गति',
+ 'home' => 'घर',
+ 'hot' => 'हट!',
+ 'hour' => 'घण्टा',
+ 'huge' => 'विशाल',
+ 'info' => 'जानकारी',
+ 'internal' => 'आन्तरिक',
+ 'ip' => 'आईपी',
+ 'is-allowed' => 'अनुमति छ',
+ 'large' => 'ठूलो',
+ 'latest' => 'नवीनतम',
+ 'latest-posts' => 'नवीनतम पोस्टहरू',
+ 'latest-topics' => 'नवीनतम विषयहरू',
+ 'legal' => 'कानूनी',
+ 'legend' => 'कथा',
+ 'lists' => 'सूचीहरू',
+ 'lock-account' => 'खाता लक गर्नुहोस्',
+ 'logout' => 'बाहिर निस्कनु',
+ 'members' => 'सदस्यहरू',
+ 'message' => 'सन्देश',
+ 'minute' => 'मिनेट',
+ 'moderated-by' => 'द्वारा पारित',
+ 'moderation' => 'मध्यस्थता',
+ 'moderation-approve' => 'अनुमोदन गर्नुहोस्',
+ 'moderation-postpone' => 'स्थगित',
+ 'moderation-reject' => 'अस्वीकार गर्नुहोस्',
+ 'month' => 'महिना',
+ 'months' => 'महिना',
+ 'my' => 'मेरो',
+ 'name' => 'नाम',
+ 'navigation' => 'नेभिगेशन',
+ 'new' => 'नयाँ!',
+ 'new-adj' => 'नयाँ',
+ 'news' => 'समाचार',
+ 'next' => 'अर्को',
+ 'no' => 'होइन',
+ 'no-comments' => 'अझै सम्म कुनै टिप्पणीहरू छैनन्',
+ 'no-result' => 'क्वेरीको लागि डाटाबेसमा कुनै परिणाम छैन',
+ 'notifications' => 'अधिसूचनाहरू',
+ 'older-than' => 'भन्दा पुरानो',
+ 'oldest' => 'सबैभन्दा पुरानो',
+ 'openreg_activated' => 'दर्ता खोल्ने सक्रिय',
+ 'order-by' => 'द्वारा क्रम',
+ 'other' => 'अन्य',
+ 'pages' => 'पृष्ठहरु',
+ 'password' => 'पासवर्ड',
+ 'patron' => 'एक संरक्षक बनें',
+ 'pending-torrents' => 'पेन्डिङ टरेन्टहरू',
+ 'personal' => 'व्यक्तिगत',
+ 'plural-suffix' => 's',
+ 'port' => 'पोर्ट',
+ 'position' => 'स्थिति',
+ 'posts' => 'पोस्टहरू',
+ 'powered-by' => 'UNIT3D द्वारा संचालित',
+ 'preview' => 'पूर्वावलोकन',
+ 'previous' => 'अघिल्लो',
+ 'progress' => 'प्रगति',
+ 'publish' => 'प्रकाशन गर्नुहोस्',
+ 'quantity' => 'मात्रा',
+ 'quick-search' => 'द्रुत खोज',
+ 'ratio' => 'अनुपात',
+ 'reason' => 'कारण',
+ 'remove' => 'हटाउनुहोस्',
+ 'report' => 'रिपोर्ट गर्नुहोस्',
+ 'resend' => 'पुनः पठाउनुहोस्',
+ 'reporter' => 'रिपोर्टर',
+ 'required' => 'आवश्यक छ',
+ 'results' => 'परिणामहरू',
+ 'rss-system' => 'आरएसएस प्रणाली',
+ 'rules' => 'नियमहरू',
+ 'save' => 'बचत गर्नुहोस्',
+ 'search' => 'खोज्नुहोस्',
+ 'search-results' => 'खोजी परिणामहरू',
+ 'search-results-desc' => 'कृपया तलका परिणामहरू हेर्नुहोस्',
+ 'second' => 'दोस्रो',
+ 'select' => 'छान्नुहोस्',
+ 'sort' => 'क्रमबद्ध गर्नुहोस्',
+ 'special' => 'विशेष',
+ 'staff' => 'कर्मचारी',
+ 'staff-tools' => 'कर्मचारी उपकरण',
+ 'stats' => 'आँकडा',
+ 'status' => 'स्थिति',
+ 'sticked' => 'Sticked',
+ 'submit' => 'पेश गर्नुहोस्',
+ 'subscriptions' => 'सदस्यताहरू',
+ 'teams' => 'टोलीहरू',
+ 'terms' => 'प्रयोगका शर्तहरू',
+ 'times' => 'टाइम्स',
+ 'title' => 'शीर्षक',
+ 'top-bountied' => 'शीर्ष बन्टेड',
+ 'topics' => 'विषयहरू',
+ 'tracker-codes' => 'ट्रयाक कोडहरू',
+ 'type' => 'टाइप गर्नुहोस्',
+ 'type-verb' => 'टाइप गर्नुहोस्',
+ 'types' => 'प्रकारहरू',
+ 'genre' => 'शैली',
+ 'genres' => 'Genres',
+ 'action' => 'कार्य',
+ 'actions' => 'कार्यहरू',
+ 'unknown' => 'अज्ञात',
'unlocked-achievement' => 'तपाईंले अनलक गर्नुभयो: उपलब्धि उपलब्धि',
- 'upload' => 'अपलोड गर्नुहोस्',
- 'upload-guide' => 'गाइड अपलोड गर्नुहोस्',
- 'user' => 'प्रयोगकर्ता',
- 'username' => 'प्रयोगकर्तानाम',
- 'users' => 'प्रयोगकर्ताहरू',
- 'view' => 'हेर्नुहोस्',
- 'view-all' => 'सबै हेर्नुहोस्',
- 'warnings' => 'चेतावनीहरू',
- 'year' => 'वर्ष',
- 'yes' => 'हो',
- 'your' => 'तपाईंको',
- 'your-comment' => 'तपाईंको टिप्पणी',
+ 'upload' => 'अपलोड गर्नुहोस्',
+ 'upload-guide' => 'गाइड अपलोड गर्नुहोस्',
+ 'user' => 'प्रयोगकर्ता',
+ 'username' => 'प्रयोगकर्तानाम',
+ 'users' => 'प्रयोगकर्ताहरू',
+ 'view' => 'हेर्नुहोस्',
+ 'view-all' => 'सबै हेर्नुहोस्',
+ 'warnings' => 'चेतावनीहरू',
+ 'year' => 'वर्ष',
+ 'yes' => 'हो',
+ 'your' => 'तपाईंको',
+ 'your-comment' => 'तपाईंको टिप्पणी',
];
diff --git a/lang/ne/email.php b/lang/ne/email.php
index 63cc2694b..f809deaac 100644
--- a/lang/ne/email.php
+++ b/lang/ne/email.php
@@ -12,46 +12,46 @@
*/
return [
- 'activate-account' => 'खाता सक्रिय गर्नुहोस्',
- 'ban-reason' => 'कारण',
- 'banned-footer' => 'तपाईं नियमहरू पछ्याउन के लागि थियौं',
- 'banned-header' => 'तपाईंले बन्नु भएको छ',
- 'bug-description' => 'समस्या',
- 'bug-footer' => 'त्यो शतलाई ठीक गर्नुहोस्',
- 'bug-header' => 'नयाँ बग रिपोर्ट',
- 'bug-priority' => 'प्राथमिकता',
- 'bug-title' => 'बग शीर्षक',
- 'contact-header' => 'नयाँ सम्पर्क मेल बाट',
- 'contact-message' => 'सन्देश',
- 'contact-name' => 'नाम',
+ 'activate-account' => 'खाता सक्रिय गर्नुहोस्',
+ 'ban-reason' => 'कारण',
+ 'banned-footer' => 'तपाईं नियमहरू पछ्याउन के लागि थियौं',
+ 'banned-header' => 'तपाईंले बन्नु भएको छ',
+ 'bug-description' => 'समस्या',
+ 'bug-footer' => 'त्यो शतलाई ठीक गर्नुहोस्',
+ 'bug-header' => 'नयाँ बग रिपोर्ट',
+ 'bug-priority' => 'प्राथमिकता',
+ 'bug-title' => 'बग शीर्षक',
+ 'contact-header' => 'नयाँ सम्पर्क मेल बाट',
+ 'contact-message' => 'सन्देश',
+ 'contact-name' => 'नाम',
'fail-login-greeting' => 'खाता लग इन असफल भयो!',
- 'fail-login-line1' => 'तपाईंको खाताको लागि एउटा असफल लगइन पत्ता लाग्यो।',
- 'fail-login-line2' => 'यो अनुरोध बाट उत्पन्न: आईपी (: होस्ट) मा: समय',
- 'fail-login-subject' => 'असफल लगइन अधिसूचना',
- 'footer-link' => 'यदि तपाईंलाई समस्यामा क्लिक गरिरहेको छ भने: actionText बटन, तलको URL लाई तपाईंको वेब ब्राउजरमा टाँस्नुहोस्:',
- 'invite-header' => 'निमन्त्रणा',
- 'invite-invited' => 'तपाईंलाई निमन्त्रणा गरिएको छ',
- 'invite-message' => 'सन्देश',
- 'invite-signup' => 'अहिले साइन अप गर्नुहोस्',
- 'newreply-header' => 'तपाइँको विषयमा नयाँ जवाफ छ',
- 'newreply-message' => 'सन्देश',
- 'newreply-replied' => 'तपाईंको विषयलाई जवाफ दिईयो',
- 'newreply-view' => 'यसलाई हेर्नुहोस्',
- 'no-email-found' => 'हामीले यो इमेल हाम्रो प्रणालीमा फेला पार्न सकेनौं!',
- 'register-code' => 'तपाईंको खाता सक्रियता पूरा गर्नको लागि तलको बटनमा क्लिक गर्नुहोस्',
- 'register-footer' => 'यदि माथिको बटनले काम गर्दैन, URL लाई तपाईंको ब्राउजर ठेगाना पट्टीमा प्रतिलिपि बनाउनुहोस् र पेस्ट गर्नुहोस्',
- 'register-header' => 'नमस्कार! साइन अपका लागि धन्यवाद',
- 'report-comment' => 'टिप्पणी',
- 'report-email' => 'ई-मेल',
- 'report-header' => 'नमस्ते व्यवस्थापक, एक लिङ्कमा रिपोर्ट गरिएको छ',
- 'report-link' => 'लिङ्क',
- 'report-link-hash' => 'वास्तविक लिंक',
- 'thanks' => 'प्रयोगको लागि धन्यवाद',
- 'unban-footer' => 'फिर्ता आउनु भएकोमा स्वागत छ!',
- 'unban-header' => 'तपाईंले अनबन्क गर्नुभएको छ',
- 'unban-reason' => 'कारण',
- 'username-reminder' => 'तपाइँले भर्खरै हामीलाई हाम्रो एपमा तपाईंको प्रयोगकर्तानामको अनुरोध पठाउनुभयो। तपाईको प्रयोगकर्ता नाम हो',
- 'username-sent' => 'तपाईंको प्रयोगकर्ता नाम तपाईंको इमेल ठेगानामा पठाइएको छ!',
- 'disabled-header' => 'तपाईंको खाता असक्षम पारिएको छ',
- 'pruned-header' => 'तपाइँको खाता शुरु भएको छ',
+ 'fail-login-line1' => 'तपाईंको खाताको लागि एउटा असफल लगइन पत्ता लाग्यो।',
+ 'fail-login-line2' => 'यो अनुरोध बाट उत्पन्न: आईपी (: होस्ट) मा: समय',
+ 'fail-login-subject' => 'असफल लगइन अधिसूचना',
+ 'footer-link' => 'यदि तपाईंलाई समस्यामा क्लिक गरिरहेको छ भने: actionText बटन, तलको URL लाई तपाईंको वेब ब्राउजरमा टाँस्नुहोस्:',
+ 'invite-header' => 'निमन्त्रणा',
+ 'invite-invited' => 'तपाईंलाई निमन्त्रणा गरिएको छ',
+ 'invite-message' => 'सन्देश',
+ 'invite-signup' => 'अहिले साइन अप गर्नुहोस्',
+ 'newreply-header' => 'तपाइँको विषयमा नयाँ जवाफ छ',
+ 'newreply-message' => 'सन्देश',
+ 'newreply-replied' => 'तपाईंको विषयलाई जवाफ दिईयो',
+ 'newreply-view' => 'यसलाई हेर्नुहोस्',
+ 'no-email-found' => 'हामीले यो इमेल हाम्रो प्रणालीमा फेला पार्न सकेनौं!',
+ 'register-code' => 'तपाईंको खाता सक्रियता पूरा गर्नको लागि तलको बटनमा क्लिक गर्नुहोस्',
+ 'register-footer' => 'यदि माथिको बटनले काम गर्दैन, URL लाई तपाईंको ब्राउजर ठेगाना पट्टीमा प्रतिलिपि बनाउनुहोस् र पेस्ट गर्नुहोस्',
+ 'register-header' => 'नमस्कार! साइन अपका लागि धन्यवाद',
+ 'report-comment' => 'टिप्पणी',
+ 'report-email' => 'ई-मेल',
+ 'report-header' => 'नमस्ते व्यवस्थापक, एक लिङ्कमा रिपोर्ट गरिएको छ',
+ 'report-link' => 'लिङ्क',
+ 'report-link-hash' => 'वास्तविक लिंक',
+ 'thanks' => 'प्रयोगको लागि धन्यवाद',
+ 'unban-footer' => 'फिर्ता आउनु भएकोमा स्वागत छ!',
+ 'unban-header' => 'तपाईंले अनबन्क गर्नुभएको छ',
+ 'unban-reason' => 'कारण',
+ 'username-reminder' => 'तपाइँले भर्खरै हामीलाई हाम्रो एपमा तपाईंको प्रयोगकर्तानामको अनुरोध पठाउनुभयो। तपाईको प्रयोगकर्ता नाम हो',
+ 'username-sent' => 'तपाईंको प्रयोगकर्ता नाम तपाईंको इमेल ठेगानामा पठाइएको छ!',
+ 'disabled-header' => 'तपाईंको खाता असक्षम पारिएको छ',
+ 'pruned-header' => 'तपाइँको खाता शुरु भएको छ',
];
diff --git a/lang/ne/forum.php b/lang/ne/forum.php
index e8afc770a..87558d127 100644
--- a/lang/ne/forum.php
+++ b/lang/ne/forum.php
@@ -12,63 +12,63 @@
*/
return [
- 'action' => 'कार्य',
- 'activity' => 'गतिविधि',
- 'approved' => 'स्वीकृत',
- 'author' => 'लेखक',
- 'bug' => 'बग',
- 'category-quick-search' => 'विषय नाम द्रुत खोजी (श्रेणी भित्र)',
- 'close-topic' => 'लक विषय',
- 'closed' => 'बन्द गरियो',
- 'create-new-topic' => 'नयाँ विषय बनाउनुहोस्',
- 'created' => 'सिर्जना गरियो',
- 'current' => 'वर्तमान',
- 'delete-topic' => 'यो विषय मेटाउनुहोस्',
- 'denied' => 'अस्वीकृत',
- 'dislike-post' => 'यस पोष्ट मन नपराउनुहोस्',
- 'display-forum' => 'शीर्षकहरू देखाउनुहोस्',
- 'edit-post' => 'पोस्ट सम्पादन गर्नुहोस्',
- 'edit-topic' => 'विषय सम्पादन गर्नुहोस्',
- 'forum' => 'फोरम',
- 'forums' => 'फोरम',
- 'implemented' => 'लागू भयो',
- 'in' => 'मा',
- 'invalid' => 'अमान्य',
- 'label' => 'लेबल',
- 'label-system' => 'लेबल प्रणाली',
- 'last-message' => 'अन्तिम सन्देश',
- 'last-post-info' => 'अन्तिम पोस्ट जानकारी',
- 'latest' => 'नवीनतम',
- 'like-post' => 'यो पोष्ट जस्तै',
- 'meta-category' => 'श्रेणीमा भएका विषयहरूको सूची',
- 'moderation' => 'मध्यस्थता',
- 'name' => 'नाम',
- 'not-connected' => 'तपाईं जोड्नु पर्छ',
- 'not-subscribed' => 'सब्सक्राइब गरिएको छैन',
- 'open' => 'खोल्नुहोस्',
- 'open-topic' => 'यो विषय खोल्नुहोस्',
- 'permalink' => 'Permalink',
- 'pin' => 'पिन',
- 'post' => 'पोस्ट गर्नुहोस्',
- 'post-quick-search' => 'निकाय छिटो खोजी गर्नुहोस्',
- 'posts' => 'पोस्टहरू',
- 'quote' => 'उद्धरण',
- 'read-topic' => 'विषय पढ्नुहोस्',
- 'replies' => 'जवाफहरू',
- 'send-new-topic' => 'यो विषय सुरक्षित गर्नुहोस्',
- 'solved' => 'हल भयो',
- 'state' => 'राज्य',
- 'stats' => 'आँकडा',
- 'subscribed' => 'सब्सक्राइब गरिएको',
+ 'action' => 'कार्य',
+ 'activity' => 'गतिविधि',
+ 'approved' => 'स्वीकृत',
+ 'author' => 'लेखक',
+ 'bug' => 'बग',
+ 'category-quick-search' => 'विषय नाम द्रुत खोजी (श्रेणी भित्र)',
+ 'close-topic' => 'लक विषय',
+ 'closed' => 'बन्द गरियो',
+ 'create-new-topic' => 'नयाँ विषय बनाउनुहोस्',
+ 'created' => 'सिर्जना गरियो',
+ 'current' => 'वर्तमान',
+ 'delete-topic' => 'यो विषय मेटाउनुहोस्',
+ 'denied' => 'अस्वीकृत',
+ 'dislike-post' => 'यस पोष्ट मन नपराउनुहोस्',
+ 'display-forum' => 'शीर्षकहरू देखाउनुहोस्',
+ 'edit-post' => 'पोस्ट सम्पादन गर्नुहोस्',
+ 'edit-topic' => 'विषय सम्पादन गर्नुहोस्',
+ 'forum' => 'फोरम',
+ 'forums' => 'फोरम',
+ 'implemented' => 'लागू भयो',
+ 'in' => 'मा',
+ 'invalid' => 'अमान्य',
+ 'label' => 'लेबल',
+ 'label-system' => 'लेबल प्रणाली',
+ 'last-message' => 'अन्तिम सन्देश',
+ 'last-post-info' => 'अन्तिम पोस्ट जानकारी',
+ 'latest' => 'नवीनतम',
+ 'like-post' => 'यो पोष्ट जस्तै',
+ 'meta-category' => 'श्रेणीमा भएका विषयहरूको सूची',
+ 'moderation' => 'मध्यस्थता',
+ 'name' => 'नाम',
+ 'not-connected' => 'तपाईं जोड्नु पर्छ',
+ 'not-subscribed' => 'सब्सक्राइब गरिएको छैन',
+ 'open' => 'खोल्नुहोस्',
+ 'open-topic' => 'यो विषय खोल्नुहोस्',
+ 'permalink' => 'Permalink',
+ 'pin' => 'पिन',
+ 'post' => 'पोस्ट गर्नुहोस्',
+ 'post-quick-search' => 'निकाय छिटो खोजी गर्नुहोस्',
+ 'posts' => 'पोस्टहरू',
+ 'quote' => 'उद्धरण',
+ 'read-topic' => 'विषय पढ्नुहोस्',
+ 'replies' => 'जवाफहरू',
+ 'send-new-topic' => 'यो विषय सुरक्षित गर्नुहोस्',
+ 'solved' => 'हल भयो',
+ 'state' => 'राज्य',
+ 'stats' => 'आँकडा',
+ 'subscribed' => 'सब्सक्राइब गरिएको',
'subscription-quick-search' => 'विषय नाम द्रुत खोज (सदस्यता भित्र)',
- 'suggestion' => 'सुझाव',
- 'topic' => 'विषय',
- 'topic-closed' => 'यो विषय बन्द छ',
- 'topic-name' => 'विषय नाम',
- 'topic-quick-search' => 'विषय नाम द्रुत खोजी',
- 'topic-title' => 'यस विषयको शीर्षक',
- 'topics' => 'विषयहरू',
- 'unpin' => 'अनपिन',
- 'view-all' => 'सबै विषयहरू हेर्नुहोस्',
- 'views' => 'दृश्यहरू',
+ 'suggestion' => 'सुझाव',
+ 'topic' => 'विषय',
+ 'topic-closed' => 'यो विषय बन्द छ',
+ 'topic-name' => 'विषय नाम',
+ 'topic-quick-search' => 'विषय नाम द्रुत खोजी',
+ 'topic-title' => 'यस विषयको शीर्षक',
+ 'topics' => 'विषयहरू',
+ 'unpin' => 'अनपिन',
+ 'view-all' => 'सबै विषयहरू हेर्नुहोस्',
+ 'views' => 'दृश्यहरू',
];
diff --git a/lang/ne/graveyard.php b/lang/ne/graveyard.php
index 3890d9b0e..3144d2414 100644
--- a/lang/ne/graveyard.php
+++ b/lang/ne/graveyard.php
@@ -12,15 +12,15 @@
*/
return [
- 'dead' => 'मृत',
- 'graveyard' => 'कर्नेल',
- 'guidelines' => 'दिशानिर्देशहरू',
+ 'dead' => 'मृत',
+ 'graveyard' => 'कर्नेल',
+ 'guidelines' => 'दिशानिर्देशहरू',
'guidelines-content' => '1) तपाईं आफ्नो अपलोडको पुनरुत्थान गर्न सक्नुहुन्न।
2) कुनै कुरालाई पुनरुत्थान नगर्नुहोस् जुन तपाईं पनि गर्न सक्नुहुन्न।',
- 'howto' => 'उनको शासन',
- 'howto-desc1' => 'तपाईंले बीज गर्नु पर्छ : सफलतापूर्वक राजनैतिकताको लागि 30 दिनको लागि नाम । कुन स्थितिमा तपाईंको वर्तमान बिरुवाको बारेमा',
- 'howto-desc2' => 'तपाईंलाई इनाम दिइनेछ',
- 'howto-hits' => 'हिट्स',
- 'pending' => 'पेन्डिंग',
- 'resurrect' => 'पुन: सुधार गर्नुहोस्',
- 'reward' => 'फ्रीलेटे टोकनहरू',
+ 'howto' => 'उनको शासन',
+ 'howto-desc1' => 'तपाईंले बीज गर्नु पर्छ : सफलतापूर्वक राजनैतिकताको लागि 30 दिनको लागि नाम । कुन स्थितिमा तपाईंको वर्तमान बिरुवाको बारेमा',
+ 'howto-desc2' => 'तपाईंलाई इनाम दिइनेछ',
+ 'howto-hits' => 'हिट्स',
+ 'pending' => 'पेन्डिंग',
+ 'resurrect' => 'पुन: सुधार गर्नुहोस्',
+ 'reward' => 'फ्रीलेटे टोकनहरू',
];
diff --git a/lang/ne/notification.php b/lang/ne/notification.php
index e19a59f5a..065249eff 100644
--- a/lang/ne/notification.php
+++ b/lang/ne/notification.php
@@ -12,14 +12,14 @@
*/
return [
- 'date' => 'मिति',
- 'delete' => 'मेटाउन',
- 'delete-all' => 'सबै सूचनाहरू मेटाउनुहोस्',
- 'mark-all-read' => 'सबै पढिएको चिन्ह लगाउनुहोस्',
- 'mark-read' => 'पढिसकेको अंकित गर्नुहोस्',
- 'message' => 'सन्देश',
+ 'date' => 'मिति',
+ 'delete' => 'मेटाउन',
+ 'delete-all' => 'सबै सूचनाहरू मेटाउनुहोस्',
+ 'mark-all-read' => 'सबै पढिएको चिन्ह लगाउनुहोस्',
+ 'mark-read' => 'पढिसकेको अंकित गर्नुहोस्',
+ 'message' => 'सन्देश',
'no-notifications' => 'त्यहाँ कुनै सूचनाहरू फेला परेनन्',
- 'notifications' => 'अधिसूचनाहरू',
- 'read' => 'पढ्नुहोस्',
- 'title' => 'शीर्षक',
+ 'notifications' => 'अधिसूचनाहरू',
+ 'read' => 'पढ्नुहोस्',
+ 'title' => 'शीर्षक',
];
diff --git a/lang/ne/page.php b/lang/ne/page.php
index 6be7020b9..8112fbeee 100644
--- a/lang/ne/page.php
+++ b/lang/ne/page.php
@@ -12,28 +12,28 @@
*/
return [
- 'aboutus-advantage' => 'फायदा',
- 'aboutus-advantage1' => 'हामीले HD भिडियो / अडियो र टेक्निकल समर्थनको संसारमा राम्रो तरिकाले सदस्यहरू र कर्मचारीहरू अनुभव गरेका छौं।',
- 'aboutus-advantage2' => 'चलचित्रहरू र टिभि शोहरूको लागि हाम्रो व्यापक जुनसुकै साथ, हामी केहि भन्दा राम्रो चयनहरू पनि प्रस्ताव गर्दछौं जसले धेरै भन्दा फ्यान्रे! एक ठूलो धन्यवाद तपाईं हाम्रो सामाग्री ल्याउटर मा।',
- 'aboutus-advantage3' => 'जब हामी साइट माथि र दौड राख्न दानहरू स्वीकार गर्दछौं त्यहाँ त्यहाँ साइटमा पीएमहरू वा ब्यानरहरू हुनेछैनन्। हामिलाई माँग माग्नु छैन।',
- 'aboutus-advantage4' => 'हाम्रो समुदाय यसको प्रारम्भिक उमेरको लागि दोस्रो हो। हाम्रो कर्मचारी र userbase बीच, सधै यहाँ यहाँको लागि। आफ्नो अनुभव निश्चित गर्न को लागी भावुक थिए: शीर्षक केहि अचम्म लाग्दो छ।',
- 'aboutus-advantage5' => 'हाम्रो सेवा दुनिया भर मा धेरै मान्छे द्वारा प्रयोग गरिन्छ। हामीले प्रमाणित गरेका छौं कि हामी हाम्रो कोडबेसको कार्यक्षमता र सुरक्षाको ख्याल गर्छौं र यो भरोसा गर्न सकिन्छ र भरोसा गर्दछौं। हाम्रो विकासकर्ताहरूले दैनिक सचमुच नेक्स-जेन कोडबेस प्रदान गर्न काम गर्छन्।',
- 'aboutus-header' => 'नमस्ते त्यहाँ',
- 'aboutus-rules' => 'हामीलाई के बाट चाहिन्छ?',
- 'aboutus-rules1' => 'समुदायको सक्रिय सदस्य हुन! यो उत्पादक रूपमा वार्तालापमा सामेल हुन को लागी, स्वीकृत सामग्री थप गर्नुहोस् र यदि तपाईं सक्षम भएमा अन्य प्रयोगकर्ताहरूलाई मद्दत गर्नुहोस्।',
- 'aboutus-rules2' => 'पूर्ण नियमहरू पढ्न र उनीहरूको आदर गर्नुहोस्!',
- 'aboutus-rules3' => 'सुझावहरू बनाउनुहोस्! हामी बनाउन प्रयास गर्दैछौं: हरेक दिन राम्रो शीर्षक। हामीले यो किन्नु भएको छ कि हरेक सुझाव प्रयोग गरिनेछ, तर यो नयाँ विचारहरू हेर्नको लागी कहिल्यै दुख्दैन।',
- 'aboutus-welcome' => 'बारेमा कुरा गर्छ',
- 'aboutus-welcome-desc' => 'शीर्षक शीर्षक एक सामुदायिक निर्मित मूवी / TV / FANRES डाटाबेस हो। 2017 बाट डेटाको हरेक टुक्रा हाम्रो अचम्मको सामुदायिक द्वारा थपिएको छ। शीर्षकहरू बलियो फोकस HD सामग्री, एक सक्रिय userbase, एक भयानक / सुरक्षित कोडबेस र एक उपयोगी र मित्रवत कर्मचारी टोलीमा छ।',
- 'blacklist-browsers' => 'ब्राउजरहरू',
- 'blacklist-btclient' => 'BitTorrent क्लाइन्ट',
- 'blacklist-clients' => 'ग्राहकहरू',
- 'blacklist-desc' => 'निम्न ब्राउजरहरू र ब्राउजर क्लाइन्टहरू ब्ल्याकलिस्ट गरिएको / निषेध गरिएको छ Annoucing To बाट: शीर्षक',
- 'blacklist-webbrowser' => 'वेब ब्राउजर',
+ 'aboutus-advantage' => 'फायदा',
+ 'aboutus-advantage1' => 'हामीले HD भिडियो / अडियो र टेक्निकल समर्थनको संसारमा राम्रो तरिकाले सदस्यहरू र कर्मचारीहरू अनुभव गरेका छौं।',
+ 'aboutus-advantage2' => 'चलचित्रहरू र टिभि शोहरूको लागि हाम्रो व्यापक जुनसुकै साथ, हामी केहि भन्दा राम्रो चयनहरू पनि प्रस्ताव गर्दछौं जसले धेरै भन्दा फ्यान्रे! एक ठूलो धन्यवाद तपाईं हाम्रो सामाग्री ल्याउटर मा।',
+ 'aboutus-advantage3' => 'जब हामी साइट माथि र दौड राख्न दानहरू स्वीकार गर्दछौं त्यहाँ त्यहाँ साइटमा पीएमहरू वा ब्यानरहरू हुनेछैनन्। हामिलाई माँग माग्नु छैन।',
+ 'aboutus-advantage4' => 'हाम्रो समुदाय यसको प्रारम्भिक उमेरको लागि दोस्रो हो। हाम्रो कर्मचारी र userbase बीच, सधै यहाँ यहाँको लागि। आफ्नो अनुभव निश्चित गर्न को लागी भावुक थिए: शीर्षक केहि अचम्म लाग्दो छ।',
+ 'aboutus-advantage5' => 'हाम्रो सेवा दुनिया भर मा धेरै मान्छे द्वारा प्रयोग गरिन्छ। हामीले प्रमाणित गरेका छौं कि हामी हाम्रो कोडबेसको कार्यक्षमता र सुरक्षाको ख्याल गर्छौं र यो भरोसा गर्न सकिन्छ र भरोसा गर्दछौं। हाम्रो विकासकर्ताहरूले दैनिक सचमुच नेक्स-जेन कोडबेस प्रदान गर्न काम गर्छन्।',
+ 'aboutus-header' => 'नमस्ते त्यहाँ',
+ 'aboutus-rules' => 'हामीलाई के बाट चाहिन्छ?',
+ 'aboutus-rules1' => 'समुदायको सक्रिय सदस्य हुन! यो उत्पादक रूपमा वार्तालापमा सामेल हुन को लागी, स्वीकृत सामग्री थप गर्नुहोस् र यदि तपाईं सक्षम भएमा अन्य प्रयोगकर्ताहरूलाई मद्दत गर्नुहोस्।',
+ 'aboutus-rules2' => 'पूर्ण नियमहरू पढ्न र उनीहरूको आदर गर्नुहोस्!',
+ 'aboutus-rules3' => 'सुझावहरू बनाउनुहोस्! हामी बनाउन प्रयास गर्दैछौं: हरेक दिन राम्रो शीर्षक। हामीले यो किन्नु भएको छ कि हरेक सुझाव प्रयोग गरिनेछ, तर यो नयाँ विचारहरू हेर्नको लागी कहिल्यै दुख्दैन।',
+ 'aboutus-welcome' => 'बारेमा कुरा गर्छ',
+ 'aboutus-welcome-desc' => 'शीर्षक शीर्षक एक सामुदायिक निर्मित मूवी / TV / FANRES डाटाबेस हो। 2017 बाट डेटाको हरेक टुक्रा हाम्रो अचम्मको सामुदायिक द्वारा थपिएको छ। शीर्षकहरू बलियो फोकस HD सामग्री, एक सक्रिय userbase, एक भयानक / सुरक्षित कोडबेस र एक उपयोगी र मित्रवत कर्मचारी टोलीमा छ।',
+ 'blacklist-browsers' => 'ब्राउजरहरू',
+ 'blacklist-btclient' => 'BitTorrent क्लाइन्ट',
+ 'blacklist-clients' => 'ग्राहकहरू',
+ 'blacklist-desc' => 'निम्न ब्राउजरहरू र ब्राउजर क्लाइन्टहरू ब्ल्याकलिस्ट गरिएको / निषेध गरिएको छ Annoucing To बाट: शीर्षक',
+ 'blacklist-webbrowser' => 'वेब ब्राउजर',
'blacklist-emaildomain' => 'ब्लक गरिएको डोमेन',
- 'email-blacklist-desc' => 'निम्न इमेल डोमेनहरू प्रयोग हुनेमा रोकिएका छन्। तपाईं दर्ता गर्न सक्नुहुन्न वा निम्नलाई निम्तो पठाउनुहोस्।',
- 'email-whitelist-desc' => 'निम्न इमेल डोमेनहरू मात्र इ-मेल डोमेन प्रयोग हुने अनुमति हो। तपाईं मात्र रजिस्टर गर्न वा निम्न प्रयोग गरी निमन्त्रणा पठाउनुहोस्।',
- 'staff-group' => 'समूह',
- 'staff-title' => 'शीर्षक',
+ 'email-blacklist-desc' => 'निम्न इमेल डोमेनहरू प्रयोग हुनेमा रोकिएका छन्। तपाईं दर्ता गर्न सक्नुहुन्न वा निम्नलाई निम्तो पठाउनुहोस्।',
+ 'email-whitelist-desc' => 'निम्न इमेल डोमेनहरू मात्र इ-मेल डोमेन प्रयोग हुने अनुमति हो। तपाईं मात्र रजिस्टर गर्न वा निम्न प्रयोग गरी निमन्त्रणा पठाउनुहोस्।',
+ 'staff-group' => 'समूह',
+ 'staff-title' => 'शीर्षक',
'whitelist-emaildomain' => 'विश्वसनीय डोमेन',
];
diff --git a/lang/ne/pagination.php b/lang/ne/pagination.php
index c0817621b..63e19ed4d 100644
--- a/lang/ne/pagination.php
+++ b/lang/ne/pagination.php
@@ -24,5 +24,5 @@ return [
*/
'previous' => '« अघिल्लो',
- 'next' => 'अर्को »',
+ 'next' => 'अर्को »',
];
diff --git a/lang/ne/passwords.php b/lang/ne/passwords.php
index 4a1d5929d..6f2d1c851 100644
--- a/lang/ne/passwords.php
+++ b/lang/ne/passwords.php
@@ -24,8 +24,8 @@ return [
*/
'password' => 'पासवर्ड कम्तिमा छ वर्णको हुनु पर्छ र दाेहाेर्याइएकाे पासवर्ड संग मेल खानु पर्छ।',
- 'reset' => 'पासवर्ड रिसेट भयो!',
- 'sent' => 'हामीले पासवर्ड परिवर्तन गर्ने लिंक ईमेलमा पठाएका छौ!',
- 'token' => 'यो पासवर्ड रिसेट गर्ने टोकन अमान्य छ।',
- 'user' => 'दिइएको ईमेल प्रयोगकर्ता भेटिएन।',
+ 'reset' => 'पासवर्ड रिसेट भयो!',
+ 'sent' => 'हामीले पासवर्ड परिवर्तन गर्ने लिंक ईमेलमा पठाएका छौ!',
+ 'token' => 'यो पासवर्ड रिसेट गर्ने टोकन अमान्य छ।',
+ 'user' => 'दिइएको ईमेल प्रयोगकर्ता भेटिएन।',
];
diff --git a/lang/ne/pm.php b/lang/ne/pm.php
index e93b76632..b9925d626 100644
--- a/lang/ne/pm.php
+++ b/lang/ne/pm.php
@@ -12,29 +12,29 @@
*/
return [
- 'create' => 'सिर्जना गर्नुहोस्',
- 'delete' => 'मेटाउन',
+ 'create' => 'सिर्जना गर्नुहोस्',
+ 'delete' => 'मेटाउन',
'enter-subject' => 'विषय प्रविष्ट गर्नुहोस्',
- 'from' => 'बाट',
- 'inbox' => 'इनबक्स',
+ 'from' => 'बाट',
+ 'inbox' => 'इनबक्स',
'mark-all-read' => 'सबै सन्देशहरू पढ्ने रूपमा चिन्ह लगाउनुहोस्',
- 'message' => 'सन्देश',
- 'messages' => 'सन्देशहरू',
- 'new' => 'नयाँ सन्देश',
- 'outbox' => 'आउटबक्स',
- 'private' => 'निजी',
- 'read' => 'पढ्नुहोस्',
- 'received-at' => 'प्राप्त',
- 'refresh' => 'ताजा गर्नुहोस्',
- 'reply' => 'जवाफ दिनुहोस्',
- 'search' => 'विषय अनुसार खोज्नुहोस्',
- 'select' => 'प्रयोगकर्ता चयन गर्नुहोस्',
- 'send' => 'PM लाई पठाउनुहोस्',
- 'send-to' => 'PM लाई पठाउनुहोस्',
- 'sent' => 'पठायो',
- 'sent-at' => 'पठाइयो',
- 'subject' => 'विषय',
- 'to' => 'लाई',
- 'unread' => 'नपढिएको',
- 'empty-inbox' => 'खाली ईनबक्स',
+ 'message' => 'सन्देश',
+ 'messages' => 'सन्देशहरू',
+ 'new' => 'नयाँ सन्देश',
+ 'outbox' => 'आउटबक्स',
+ 'private' => 'निजी',
+ 'read' => 'पढ्नुहोस्',
+ 'received-at' => 'प्राप्त',
+ 'refresh' => 'ताजा गर्नुहोस्',
+ 'reply' => 'जवाफ दिनुहोस्',
+ 'search' => 'विषय अनुसार खोज्नुहोस्',
+ 'select' => 'प्रयोगकर्ता चयन गर्नुहोस्',
+ 'send' => 'PM लाई पठाउनुहोस्',
+ 'send-to' => 'PM लाई पठाउनुहोस्',
+ 'sent' => 'पठायो',
+ 'sent-at' => 'पठाइयो',
+ 'subject' => 'विषय',
+ 'to' => 'लाई',
+ 'unread' => 'नपढिएको',
+ 'empty-inbox' => 'खाली ईनबक्स',
];
diff --git a/lang/ne/poll.php b/lang/ne/poll.php
index de9820952..92562f373 100644
--- a/lang/ne/poll.php
+++ b/lang/ne/poll.php
@@ -12,18 +12,18 @@
*/
return [
- 'add-option' => 'विकल्प थप्नुहोस्',
- 'create-poll' => 'सर्वेक्षण सिर्जना गर्नुहोस्',
- 'current' => 'वर्तमान पोल (हरू)',
- 'delete-option' => 'विकल्प मेटाउनुहोस्',
+ 'add-option' => 'विकल्प थप्नुहोस्',
+ 'create-poll' => 'सर्वेक्षण सिर्जना गर्नुहोस्',
+ 'current' => 'वर्तमान पोल (हरू)',
+ 'delete-option' => 'विकल्प मेटाउनुहोस्',
'multiple-choice' => 'यो धेरै छनौट पोल छ। तपाइँ जस्तै जस्तै धेरै जवाफहरू चयन गर्नुहोस्।',
- 'option' => 'विकल्प',
- 'poll' => 'पोल',
- 'polls' => 'पोलहरू',
- 'results' => 'मतदान परिणामहरू',
- 'title' => 'शीर्षक',
- 'total' => 'कुल मतहरू कहिल्यै',
- 'vote' => 'मतदान गर्नुहोस्',
- 'vote-now' => 'अहिले तपाईंको मतदान पाउनुहोस्!',
- 'votes' => 'मतहरू',
+ 'option' => 'विकल्प',
+ 'poll' => 'पोल',
+ 'polls' => 'पोलहरू',
+ 'results' => 'मतदान परिणामहरू',
+ 'title' => 'शीर्षक',
+ 'total' => 'कुल मतहरू कहिल्यै',
+ 'vote' => 'मतदान गर्नुहोस्',
+ 'vote-now' => 'अहिले तपाईंको मतदान पाउनुहोस्!',
+ 'votes' => 'मतहरू',
];
diff --git a/lang/ne/request.php b/lang/ne/request.php
index 974ca8862..f86b870fc 100644
--- a/lang/ne/request.php
+++ b/lang/ne/request.php
@@ -12,67 +12,67 @@
*/
return [
- 'add-request' => 'अनुरोध थप्नुहोस्',
- 'age' => 'उमेर',
- 'all-requests' => 'सबै अनुरोधहरू',
- 'approve' => 'अनुमोदन गर्नुहोस्',
- 'bounty' => 'इनाम',
- 'bounty-claimed' => 'इनाम दावी गरिएको छ',
- 'bounty-unclaimed' => 'बधाई दाबी',
- 'category' => 'कोटि',
- 'claim' => 'दावा',
- 'claim-anon-choose' => 'कृपया बुद्धिमानी छनौट गर्नुहोस्',
- 'claim-as-anon' => 'तपाईं यसलाई एकअर्कालाई दाबी गर्न मनपर्छ',
- 'claim-now' => 'अहिले दावी गर्नुहोस्',
- 'claimed' => 'दाबी गरिएको छ',
- 'current' => 'वर्तमान',
- 'delete' => 'यस अनुरोध मेटाउनुहोस्',
+ 'add-request' => 'अनुरोध थप्नुहोस्',
+ 'age' => 'उमेर',
+ 'all-requests' => 'सबै अनुरोधहरू',
+ 'approve' => 'अनुमोदन गर्नुहोस्',
+ 'bounty' => 'इनाम',
+ 'bounty-claimed' => 'इनाम दावी गरिएको छ',
+ 'bounty-unclaimed' => 'बधाई दाबी',
+ 'category' => 'कोटि',
+ 'claim' => 'दावा',
+ 'claim-anon-choose' => 'कृपया बुद्धिमानी छनौट गर्नुहोस्',
+ 'claim-as-anon' => 'तपाईं यसलाई एकअर्कालाई दाबी गर्न मनपर्छ',
+ 'claim-now' => 'अहिले दावी गर्नुहोस्',
+ 'claimed' => 'दाबी गरिएको छ',
+ 'current' => 'वर्तमान',
+ 'delete' => 'यस अनुरोध मेटाउनुहोस्',
'delete-confirmation' => 'के तपाईं पक्का यो अनुरोध मेटाउन चाहानुहुन्छ',
- 'delete-filled' => 'यदि यो भरिएको छैन भने यो अनुरोध मेट्न सकिन्छ',
- 'description' => 'विवरण',
- 'dont-have-bps' => 'तपाईंसँग पर्याप्त बोनस छैन',
- 'edit-request' => 'अनुरोध सम्पादन गर्नुहोस्',
- 'enter-bp' => 'बोनस अंकहरू प्रविष्ट गर्नुहोस् (कम्तीमा 100)',
- 'enter-hash' => 'अपलोड गरिएको टोरेंटको जानकारी Hash लाई प्रविष्ट गर्नुहोस्',
- 'fill' => 'भर्न',
- 'fill-request' => 'यस अनुरोध भर्नुहोस्',
- 'filled' => 'भरिएको छ',
- 'filled-by' => 'द्वारा भरिएको',
- 'for' => 'लागि',
- 'fulfill' => 'पूरा गर्नुहोस्',
- 'last-vote' => 'अन्तिम मतदान',
- 'my-requests' => 'मेरा अनुरोधहरू',
- 'no' => 'होइन,',
- 'no-imdb-id' => 'सबै अनुरोधहरू एक आईएमडीबी नम्बर समावेश गर्नुपर्छ',
- 'no-privileges' => 'त्रुटि: तपाईंको अनुरोध अधिकार अक्षम गरिएको छ',
- 'no-privileges-desc' => 'यदि तपाईंलाई लाग्छ यो त्रुटिमा छ, कृपया स्टाफसँग सम्पर्क गर्नुहोस्',
- 'no-refunds' => 'BON सिर्जना गर्नका लागि एक्सचेंजहरू, भर्ना र उपहारहरू अन्तिम हो!
कुनै प्रतिज्ञाहरू छैनन्!',
- 'pending' => 'पेन्डिंग',
- 'reason' => 'कारण',
- 'reject' => 'अस्वीकार गर्नुहोस्',
- 'report' => 'अनुरोध अनुरोध गर्नुहोस्',
- 'request' => 'अनुरोध',
- 'request-details' => 'अनुरोध विवरणहरू',
- 'requested-by' => 'ले अनुरोध गर्नुभएको',
- 'requests' => 'अनुरोधहरू',
- 'required' => 'आवश्यक छ',
- 'reset' => 'पुनःसेट गर्नुहोस्',
- 'reset-confirmation' => 'के तपाईं पक्का यो अनुरोध रिसेट गर्न चाहनुहुन्छ?',
- 'reset-request' => 'यो अनुरोध रिसेट गर्नुहोस्',
- 'reward' => 'इनाम',
- 'reward-desc' => 'तपाईं कितना बोनस प्वाइन्ट इनाम चाहानुहुन्छ? न्यूनतम 100 बी.पी',
- 'reward-from' => 'बाट',
- 'title' => 'शीर्षक',
- 'torrent-hash' => 'Torrent Hash',
- 'total-bounty' => 'कुल इनाम',
- 'type' => 'टाइप गर्नुहोस्',
- 'unclaim' => 'यस अनुरोध को दावी गर्नुहोस्',
- 'unfilled' => 'अनफिल्ड',
- 'view-filled' => 'भरिएको हेर्नुहोस्',
- 'view-unfilled' => 'अचम्म हेर्नुहोस्',
- 'vote' => 'मतदान गर्नुहोस्',
- 'vote-that' => 'यस अनुरोधलाई मतदान गर्नुहोस्',
- 'voters' => 'मतदाताहरू',
- 'votes' => 'मतहरू',
- 'yes' => 'हो',
+ 'delete-filled' => 'यदि यो भरिएको छैन भने यो अनुरोध मेट्न सकिन्छ',
+ 'description' => 'विवरण',
+ 'dont-have-bps' => 'तपाईंसँग पर्याप्त बोनस छैन',
+ 'edit-request' => 'अनुरोध सम्पादन गर्नुहोस्',
+ 'enter-bp' => 'बोनस अंकहरू प्रविष्ट गर्नुहोस् (कम्तीमा 100)',
+ 'enter-hash' => 'अपलोड गरिएको टोरेंटको जानकारी Hash लाई प्रविष्ट गर्नुहोस्',
+ 'fill' => 'भर्न',
+ 'fill-request' => 'यस अनुरोध भर्नुहोस्',
+ 'filled' => 'भरिएको छ',
+ 'filled-by' => 'द्वारा भरिएको',
+ 'for' => 'लागि',
+ 'fulfill' => 'पूरा गर्नुहोस्',
+ 'last-vote' => 'अन्तिम मतदान',
+ 'my-requests' => 'मेरा अनुरोधहरू',
+ 'no' => 'होइन,',
+ 'no-imdb-id' => 'सबै अनुरोधहरू एक आईएमडीबी नम्बर समावेश गर्नुपर्छ',
+ 'no-privileges' => 'त्रुटि: तपाईंको अनुरोध अधिकार अक्षम गरिएको छ',
+ 'no-privileges-desc' => 'यदि तपाईंलाई लाग्छ यो त्रुटिमा छ, कृपया स्टाफसँग सम्पर्क गर्नुहोस्',
+ 'no-refunds' => 'BON सिर्जना गर्नका लागि एक्सचेंजहरू, भर्ना र उपहारहरू अन्तिम हो!
कुनै प्रतिज्ञाहरू छैनन्!',
+ 'pending' => 'पेन्डिंग',
+ 'reason' => 'कारण',
+ 'reject' => 'अस्वीकार गर्नुहोस्',
+ 'report' => 'अनुरोध अनुरोध गर्नुहोस्',
+ 'request' => 'अनुरोध',
+ 'request-details' => 'अनुरोध विवरणहरू',
+ 'requested-by' => 'ले अनुरोध गर्नुभएको',
+ 'requests' => 'अनुरोधहरू',
+ 'required' => 'आवश्यक छ',
+ 'reset' => 'पुनःसेट गर्नुहोस्',
+ 'reset-confirmation' => 'के तपाईं पक्का यो अनुरोध रिसेट गर्न चाहनुहुन्छ?',
+ 'reset-request' => 'यो अनुरोध रिसेट गर्नुहोस्',
+ 'reward' => 'इनाम',
+ 'reward-desc' => 'तपाईं कितना बोनस प्वाइन्ट इनाम चाहानुहुन्छ? न्यूनतम 100 बी.पी',
+ 'reward-from' => 'बाट',
+ 'title' => 'शीर्षक',
+ 'torrent-hash' => 'Torrent Hash',
+ 'total-bounty' => 'कुल इनाम',
+ 'type' => 'टाइप गर्नुहोस्',
+ 'unclaim' => 'यस अनुरोध को दावी गर्नुहोस्',
+ 'unfilled' => 'अनफिल्ड',
+ 'view-filled' => 'भरिएको हेर्नुहोस्',
+ 'view-unfilled' => 'अचम्म हेर्नुहोस्',
+ 'vote' => 'मतदान गर्नुहोस्',
+ 'vote-that' => 'यस अनुरोधलाई मतदान गर्नुहोस्',
+ 'voters' => 'मतदाताहरू',
+ 'votes' => 'मतहरू',
+ 'yes' => 'हो',
];
diff --git a/lang/ne/rss.php b/lang/ne/rss.php
index b97b1079c..9378b20cf 100644
--- a/lang/ne/rss.php
+++ b/lang/ne/rss.php
@@ -12,19 +12,19 @@
*/
return [
- 'create' => 'सिर्जना गर्नुहोस्',
+ 'create' => 'सिर्जना गर्नुहोस्',
'create-private-feed' => 'निजी RSS फिड सिर्जना गर्नुहोस्',
- 'create-public-feed' => 'सार्वजनिक आरएसएस फिड सिर्जना गर्नुहोस्',
- 'delete' => 'मेटाउन',
- 'edit' => 'सम्पादन गर्नुहोस्',
- 'edit-private-feed' => 'निजी RSS फीड सम्पादन गर्नुहोस्',
- 'edit-public-feed' => 'सार्वजनिक RSS Feed सम्पादन गर्नुहोस्',
- 'feed' => 'फीड',
- 'feeds' => 'फीडहरू',
- 'name' => 'नाम',
- 'public' => 'सार्वजनिक',
- 'private' => 'निजी',
- 'rss' => 'आरएसएस',
- 'rss-feed' => 'RSS Feed',
- 'type' => 'टाइप गर्नुहोस्',
+ 'create-public-feed' => 'सार्वजनिक आरएसएस फिड सिर्जना गर्नुहोस्',
+ 'delete' => 'मेटाउन',
+ 'edit' => 'सम्पादन गर्नुहोस्',
+ 'edit-private-feed' => 'निजी RSS फीड सम्पादन गर्नुहोस्',
+ 'edit-public-feed' => 'सार्वजनिक RSS Feed सम्पादन गर्नुहोस्',
+ 'feed' => 'फीड',
+ 'feeds' => 'फीडहरू',
+ 'name' => 'नाम',
+ 'public' => 'सार्वजनिक',
+ 'private' => 'निजी',
+ 'rss' => 'आरएसएस',
+ 'rss-feed' => 'RSS Feed',
+ 'type' => 'टाइप गर्नुहोस्',
];
diff --git a/lang/ne/staff.php b/lang/ne/staff.php
index 3448aa28f..60b099173 100644
--- a/lang/ne/staff.php
+++ b/lang/ne/staff.php
@@ -12,48 +12,48 @@
*/
return [
- 'audit-log' => 'गतिविधि लग',
- 'articles' => 'लेखहरू',
- 'applications' => 'अनुप्रयोगहरू',
- 'bans-log' => 'ब्यान लग',
- 'blocks' => 'ब्लाकहरू',
- 'bot' => 'Bot',
- 'bots' => 'बोट्स',
- 'chat' => 'च्याट',
- 'config-manager' => 'कन्फिग प्रबन्धक',
- 'dashboard' => 'ड्याशबोर्ड',
- 'failed-login-log' => 'असफल लगइन लग',
- 'flush-ghost-peers' => 'फ्लश घोस्टर',
- 'forums' => 'फोरम',
- 'frontend' => 'फ्रन्टइन्ड',
- 'general-tools' => 'सामान्य उपकरण',
- 'groups' => 'समूहहरू',
- 'invites-log' => 'लग इन निमन्त्रणा',
- 'laravel-log' => 'Laravel Log',
- 'links' => 'लिङ्कहरू',
- 'logs' => 'लगहरू',
- 'mass-pm' => 'Mass PM',
- 'mass-validate-users' => 'मास वैध प्रयोगकर्ताहरू',
- 'moderation' => 'मध्यस्थता',
- 'pages' => 'पृष्ठहरु',
- 'please-moderate' => 'कृपया यो टोरेन्ट मध्यस्थ गर्नुहोस्!',
- 'polls' => 'पोलहरू',
- 'reports-log' => 'रिपोर्ट लग',
- 'rss' => 'आरएसएस',
- 'staff-dashboard' => 'कर्मचारी ड्यासबोर्ड',
- 'torrent-categories' => 'Torrent Categories',
- 'torrent-moderation' => 'टोरेन्ट संसोधन',
- 'torrent-tools' => 'टोरेन्ट उपकरण',
- 'torrent-types' => 'टोरेन्ट प्रकारहरू',
- 'torrents' => 'Torrents',
- 'user-gifting' => 'प्रयोगकर्ता उपहार',
- 'user-notes' => 'प्रयोगकर्ता नोटहरू लग गर्नुहोस्',
- 'user-search' => 'प्रयोगकर्ता खोज',
- 'user-tools' => 'प्रयोगकर्ता उपकरणहरू',
- 'warnings-log' => 'चेतावनी लगइन',
- 'you-have' => 'तपाईँ सँग छ',
+ 'audit-log' => 'गतिविधि लग',
+ 'articles' => 'लेखहरू',
+ 'applications' => 'अनुप्रयोगहरू',
+ 'bans-log' => 'ब्यान लग',
+ 'blocks' => 'ब्लाकहरू',
+ 'bot' => 'Bot',
+ 'bots' => 'बोट्स',
+ 'chat' => 'च्याट',
+ 'config-manager' => 'कन्फिग प्रबन्धक',
+ 'dashboard' => 'ड्याशबोर्ड',
+ 'failed-login-log' => 'असफल लगइन लग',
+ 'flush-ghost-peers' => 'फ्लश घोस्टर',
+ 'forums' => 'फोरम',
+ 'frontend' => 'फ्रन्टइन्ड',
+ 'general-tools' => 'सामान्य उपकरण',
+ 'groups' => 'समूहहरू',
+ 'invites-log' => 'लग इन निमन्त्रणा',
+ 'laravel-log' => 'Laravel Log',
+ 'links' => 'लिङ्कहरू',
+ 'logs' => 'लगहरू',
+ 'mass-pm' => 'Mass PM',
+ 'mass-validate-users' => 'मास वैध प्रयोगकर्ताहरू',
+ 'moderation' => 'मध्यस्थता',
+ 'pages' => 'पृष्ठहरु',
+ 'please-moderate' => 'कृपया यो टोरेन्ट मध्यस्थ गर्नुहोस्!',
+ 'polls' => 'पोलहरू',
+ 'reports-log' => 'रिपोर्ट लग',
+ 'rss' => 'आरएसएस',
+ 'staff-dashboard' => 'कर्मचारी ड्यासबोर्ड',
+ 'torrent-categories' => 'Torrent Categories',
+ 'torrent-moderation' => 'टोरेन्ट संसोधन',
+ 'torrent-tools' => 'टोरेन्ट उपकरण',
+ 'torrent-types' => 'टोरेन्ट प्रकारहरू',
+ 'torrents' => 'Torrents',
+ 'user-gifting' => 'प्रयोगकर्ता उपहार',
+ 'user-notes' => 'प्रयोगकर्ता नोटहरू लग गर्नुहोस्',
+ 'user-search' => 'प्रयोगकर्ता खोज',
+ 'user-tools' => 'प्रयोगकर्ता उपकरणहरू',
+ 'warnings-log' => 'चेतावनी लगइन',
+ 'you-have' => 'तपाईँ सँग छ',
'possible-leech-cheaters' => 'सम्भावित चेटरहरू',
- 'chat-tools' => 'च्याट उपकरणहरू',
- 'flush-chat' => 'फ्लश च्याटबक्स',
- 'seedboxes' => 'दर्ता गरिएको बीजबक्सहरू',
+ 'chat-tools' => 'च्याट उपकरणहरू',
+ 'flush-chat' => 'फ्लश च्याटबक्स',
+ 'seedboxes' => 'दर्ता गरिएको बीजबक्सहरू',
];
diff --git a/lang/ne/stat.php b/lang/ne/stat.php
index 3c8fc6802..b5548e864 100644
--- a/lang/ne/stat.php
+++ b/lang/ne/stat.php
@@ -12,40 +12,40 @@
*/
return [
- 'by-count' => 'गणना द्वारा',
- 'by-data' => 'डेटाद्वारा',
- 'by-volume' => 'भोल्युम द्वारा',
- 'group' => 'समूह',
- 'groups' => 'समूहहरू',
- 'nerd-stats' => 'बेवकूफ तथ्याङ्कहरू',
- 'nerd-stats-desc' => 'हामी सबै आँकडा मनपर्छौं। यहाँ केहि छ कि हामीले महत्त्वपूर्ण भेट्ट्यौं',
- 'registration-date' => 'दर्ता मिति',
- 'request-fulfilled' => 'अनुरोध पूरा भयो',
- 'request-not-fulfilled' => 'अनुरोध पूरा हुँदैन',
+ 'by-count' => 'गणना द्वारा',
+ 'by-data' => 'डेटाद्वारा',
+ 'by-volume' => 'भोल्युम द्वारा',
+ 'group' => 'समूह',
+ 'groups' => 'समूहहरू',
+ 'nerd-stats' => 'बेवकूफ तथ्याङ्कहरू',
+ 'nerd-stats-desc' => 'हामी सबै आँकडा मनपर्छौं। यहाँ केहि छ कि हामीले महत्त्वपूर्ण भेट्ट्यौं',
+ 'registration-date' => 'दर्ता मिति',
+ 'request-fulfilled' => 'अनुरोध पूरा भयो',
+ 'request-not-fulfilled' => 'अनुरोध पूरा हुँदैन',
'request-pending-aproval' => 'अनुरोध पेन्डिङ पेन्डिङ्गमा',
- 'select-category' => 'कृपया तल कोटी चयन गर्नुहोस्',
- 'site-stats' => 'साइट तथ्याङ्क',
- 'stats' => 'आँकडा',
- 'stats-format' => 'सबै तथ्याङ्कहरू शीर्ष 100 ढाँचामा प्रदर्शन गरियो',
- 'top-bankers' => 'शीर्ष बैंकरहरू',
- 'top-bountied' => 'शीर्ष बन्टेड',
- 'top-completed' => 'शीर्ष पूरा भयो',
- 'top-dead' => 'माथि मृत',
- 'top-downloaded' => 'शीर्ष डाउनलोड ट्रारेन्ट',
- 'top-downloaders' => 'शीर्ष डाउनलोडकर्ताहरू',
- 'top-dying' => 'माथि मरिरहेको',
- 'top-leeched' => 'शीर्ष पक्का भयो',
- 'top-leechers' => 'शीर्ष लिभर्सहरू',
- 'top-seeded' => 'शीर्ष बीज',
- 'top-seeding' => 'शीर्ष बीजिंग',
- 'top-seeders' => 'शीर्ष सीजनहरू',
- 'top-seedsize' => 'शीर्ष बीजिजाइज',
- 'top-seedtime' => 'शीर्ष बीज समय',
- 'top-uploaders' => 'शीर्ष अपलोडरहरू',
- 'total-download' => 'कुल डाउनलोड',
- 'total-torrents' => 'कुल ट्राटर',
- 'total-traffic' => 'कुल यातायात',
- 'total-upload' => 'कुल अपलोड',
- 'users-in-group' => 'प्रयोगकर्ता समूहमा',
- 'users-per-group' => 'प्रति समूह प्रयोगकर्ताहरू',
+ 'select-category' => 'कृपया तल कोटी चयन गर्नुहोस्',
+ 'site-stats' => 'साइट तथ्याङ्क',
+ 'stats' => 'आँकडा',
+ 'stats-format' => 'सबै तथ्याङ्कहरू शीर्ष 100 ढाँचामा प्रदर्शन गरियो',
+ 'top-bankers' => 'शीर्ष बैंकरहरू',
+ 'top-bountied' => 'शीर्ष बन्टेड',
+ 'top-completed' => 'शीर्ष पूरा भयो',
+ 'top-dead' => 'माथि मृत',
+ 'top-downloaded' => 'शीर्ष डाउनलोड ट्रारेन्ट',
+ 'top-downloaders' => 'शीर्ष डाउनलोडकर्ताहरू',
+ 'top-dying' => 'माथि मरिरहेको',
+ 'top-leeched' => 'शीर्ष पक्का भयो',
+ 'top-leechers' => 'शीर्ष लिभर्सहरू',
+ 'top-seeded' => 'शीर्ष बीज',
+ 'top-seeding' => 'शीर्ष बीजिंग',
+ 'top-seeders' => 'शीर्ष सीजनहरू',
+ 'top-seedsize' => 'शीर्ष बीजिजाइज',
+ 'top-seedtime' => 'शीर्ष बीज समय',
+ 'top-uploaders' => 'शीर्ष अपलोडरहरू',
+ 'total-download' => 'कुल डाउनलोड',
+ 'total-torrents' => 'कुल ट्राटर',
+ 'total-traffic' => 'कुल यातायात',
+ 'total-upload' => 'कुल अपलोड',
+ 'users-in-group' => 'प्रयोगकर्ता समूहमा',
+ 'users-per-group' => 'प्रति समूह प्रयोगकर्ताहरू',
];
diff --git a/lang/ne/torrent.php b/lang/ne/torrent.php
index 6cef56d44..11be07725 100644
--- a/lang/ne/torrent.php
+++ b/lang/ne/torrent.php
@@ -12,197 +12,197 @@
*/
return [
- 'activity' => 'गतिविधि',
- 'age' => 'उमेर',
- 'agent' => 'एजेन्ट',
- 'alive' => 'जीवित',
- 'announce-url' => 'URL घोषणा गर्नुहोस्',
- 'announce-url-desc' => 'नयाँ टोरेंट सिर्जना गर्दा कृपया माथिको URL घोषणा गर्नुहोस्। यदि तपाईले तपाइँको टोरेंट को यसलाई साइटबाट डाउनलोड गर्न बिना प्रयोग गर्न चाहानुहुन्छ भने तपाईलाई निजी फ्ल्याग सेट गर्न र स्रोतमा स्रोत सेट गर्नु आवश्यक छ',
- 'announce-url-desc-url' => 'समस्या भयो? यहाँ हाम्रो मार्गदर्शक हेर्नुहोस्',
- 'announce-url-desc2' => 'सबै अपलोडहरूको लागि TMDB र IMDB आवाश्यक छ! यो पोस्टरहरू / ब्याकड्रपहरू र अतिरिक्त इन्फिगरेसन लिने प्रयोग गरिन्छ',
- 'approved' => 'स्वीकृत',
- 'audio' => 'अडियो',
- 'bon-tipped' => 'BON ट्याप गरियो',
- 'bookmark' => 'बुकमार्क',
- 'bookmarks' => 'बुकमार्कहरू',
- 'bump' => 'बम्प',
- 'cant-upload' => 'त्रुटि: तपाईंको अपलोड अधिकार असक्षम पारिएको छ',
- 'cant-upload-desc' => 'यदि तपाईंलाई यो त्रुटिमा महसुस गर्नुहुन्छ भने, कृपया सम्पर्क सम्पर्क गर्नुहोस्',
- 'cards' => 'कार्डहरू',
- 'cards-view' => 'टोरेन्ट कार्ड दृश्य',
- 'categories' => 'कोटीहरू',
- 'category' => 'कोटि',
- 'client' => 'ग्राहक',
- 'commited' => 'स्वीकृत',
- 'completed' => 'पूर्ण भयो',
- 'completed_at' => 'पूरा भयो',
- 'completed-not-seeding' => 'तपाईंले यो डाउनलोड पूरा गर्नुभयो तर यो लामो समयसम्म बाख्रा गर्दै हुनुहुन्छ',
- 'created_at' => 'मा सिर्जना गरियो',
- 'credited' => 'क्रेडिट गरिएको',
- 'current' => 'वर्तमान',
- 'current-filters' => 'हालका फिल्टरहरू',
- 'currently-leeching' => 'वर्तमान लिखित',
- 'currently-seeding' => 'हालको सीज',
- 'dead-torrent' => 'मृत टोरेंट',
- 'dead-torrents' => 'मृत टोरेंट',
- 'delete-bookmark' => 'यो बुकमार्क मेटाउनुहोस्',
- 'description' => 'विवरण',
- 'discounts' => 'छुटहरू',
- 'double-upload' => 'डबल अपलोड',
- 'download-all' => 'सबै डाउनलोड गर्नुहोस्',
- 'download-check' => 'चेक डाउनलोड गर्नुहोस्',
- 'downloaded' => 'डाउनलोड गरियो',
- 'dying-torrent' => 'मरिरहेको टोरेन्ट',
- 'dying-torrents' => 'मर्दा टरेटरहरू',
- 'encode-settings' => 'सेटिङ ईन्कोड गर्नुहोस्',
- 'estimated-ratio' => 'डाउनलोड पछि अनुमानित अनुपात',
- 'failed' => 'असफल भयो',
- 'feature' => 'फीचर',
- 'featured' => 'विशेष गरी',
- 'featured-desc' => 'विशेष टूर्रेन्ट हुन् 100% नि: शुल्क र डबल अपलोड!',
- 'featured-until' => 'यो एक विशेष टोरेंट छ',
- 'file' => 'फाइल',
- 'filters' => 'फिल्टरहरू',
- 'fl-tokens-left' => 'तपाईँ सँग छ : टोकन बायाँ',
- 'freeleech' => 'Freeleech',
- 'freeleech-token' => 'फ्रीलेच टोकन',
- 'general' => 'सामान्य',
- 'genre' => 'शैली',
- 'global-double-upload' => 'ग्लोबल डबल अपलोड',
- 'global-freeleech' => 'Global Freeleech',
- 'grant' => 'अनुदान',
- 'greater-than' => 'भन्दा ठुलो',
- 'grouping' => 'ग्रुप गर्दै',
- 'groupings' => 'समूहहरू',
- 'grouping-categories' => 'समूहबद्ध वर्गहरू',
+ 'activity' => 'गतिविधि',
+ 'age' => 'उमेर',
+ 'agent' => 'एजेन्ट',
+ 'alive' => 'जीवित',
+ 'announce-url' => 'URL घोषणा गर्नुहोस्',
+ 'announce-url-desc' => 'नयाँ टोरेंट सिर्जना गर्दा कृपया माथिको URL घोषणा गर्नुहोस्। यदि तपाईले तपाइँको टोरेंट को यसलाई साइटबाट डाउनलोड गर्न बिना प्रयोग गर्न चाहानुहुन्छ भने तपाईलाई निजी फ्ल्याग सेट गर्न र स्रोतमा स्रोत सेट गर्नु आवश्यक छ',
+ 'announce-url-desc-url' => 'समस्या भयो? यहाँ हाम्रो मार्गदर्शक हेर्नुहोस्',
+ 'announce-url-desc2' => 'सबै अपलोडहरूको लागि TMDB र IMDB आवाश्यक छ! यो पोस्टरहरू / ब्याकड्रपहरू र अतिरिक्त इन्फिगरेसन लिने प्रयोग गरिन्छ',
+ 'approved' => 'स्वीकृत',
+ 'audio' => 'अडियो',
+ 'bon-tipped' => 'BON ट्याप गरियो',
+ 'bookmark' => 'बुकमार्क',
+ 'bookmarks' => 'बुकमार्कहरू',
+ 'bump' => 'बम्प',
+ 'cant-upload' => 'त्रुटि: तपाईंको अपलोड अधिकार असक्षम पारिएको छ',
+ 'cant-upload-desc' => 'यदि तपाईंलाई यो त्रुटिमा महसुस गर्नुहुन्छ भने, कृपया सम्पर्क सम्पर्क गर्नुहोस्',
+ 'cards' => 'कार्डहरू',
+ 'cards-view' => 'टोरेन्ट कार्ड दृश्य',
+ 'categories' => 'कोटीहरू',
+ 'category' => 'कोटि',
+ 'client' => 'ग्राहक',
+ 'commited' => 'स्वीकृत',
+ 'completed' => 'पूर्ण भयो',
+ 'completed_at' => 'पूरा भयो',
+ 'completed-not-seeding' => 'तपाईंले यो डाउनलोड पूरा गर्नुभयो तर यो लामो समयसम्म बाख्रा गर्दै हुनुहुन्छ',
+ 'created_at' => 'मा सिर्जना गरियो',
+ 'credited' => 'क्रेडिट गरिएको',
+ 'current' => 'वर्तमान',
+ 'current-filters' => 'हालका फिल्टरहरू',
+ 'currently-leeching' => 'वर्तमान लिखित',
+ 'currently-seeding' => 'हालको सीज',
+ 'dead-torrent' => 'मृत टोरेंट',
+ 'dead-torrents' => 'मृत टोरेंट',
+ 'delete-bookmark' => 'यो बुकमार्क मेटाउनुहोस्',
+ 'description' => 'विवरण',
+ 'discounts' => 'छुटहरू',
+ 'double-upload' => 'डबल अपलोड',
+ 'download-all' => 'सबै डाउनलोड गर्नुहोस्',
+ 'download-check' => 'चेक डाउनलोड गर्नुहोस्',
+ 'downloaded' => 'डाउनलोड गरियो',
+ 'dying-torrent' => 'मरिरहेको टोरेन्ट',
+ 'dying-torrents' => 'मर्दा टरेटरहरू',
+ 'encode-settings' => 'सेटिङ ईन्कोड गर्नुहोस्',
+ 'estimated-ratio' => 'डाउनलोड पछि अनुमानित अनुपात',
+ 'failed' => 'असफल भयो',
+ 'feature' => 'फीचर',
+ 'featured' => 'विशेष गरी',
+ 'featured-desc' => 'विशेष टूर्रेन्ट हुन् 100% नि: शुल्क र डबल अपलोड!',
+ 'featured-until' => 'यो एक विशेष टोरेंट छ',
+ 'file' => 'फाइल',
+ 'filters' => 'फिल्टरहरू',
+ 'fl-tokens-left' => 'तपाईँ सँग छ : टोकन बायाँ',
+ 'freeleech' => 'Freeleech',
+ 'freeleech-token' => 'फ्रीलेच टोकन',
+ 'general' => 'सामान्य',
+ 'genre' => 'शैली',
+ 'global-double-upload' => 'ग्लोबल डबल अपलोड',
+ 'global-freeleech' => 'Global Freeleech',
+ 'grant' => 'अनुदान',
+ 'greater-than' => 'भन्दा ठुलो',
+ 'grouping' => 'ग्रुप गर्दै',
+ 'groupings' => 'समूहहरू',
+ 'grouping-categories' => 'समूहबद्ध वर्गहरू',
'grouping-categories-desc' => 'तपाइँ कुन समूहलाई समूहमा मनपर्छ?',
- 'grouping-results' => 'समूह परिणामहरू',
- 'groupings-view' => 'समूहहरू हेर्नुहोस्',
- 'have-completed' => 'पूर्ण भयो',
- 'have-downloaded' => 'डाउनलोड गरियो',
- 'have-not-completed' => 'पूर्ण छैन',
- 'have-not-downloaded' => 'डाउनलोड गरिएको छैन',
- 'health' => 'स्वास्थ्य',
- 'history' => 'इतिहास',
- 'hitrun' => 'एच एन्ड आर?',
- 'hit-and-runs' => 'हिट र हिज्जे चलाउनुहोस्',
- 'immune' => 'प्रतिरक्षा?',
- 'info' => 'जानकारी',
- 'internal' => 'आन्तरिक',
- 'internal-release' => 'आन्तरिक रिलीज',
- 'last-seed-activity' => 'अन्तिम बीउ गतिविधि',
- 'last-seeder' => 'तपाईं अन्तिम बाँकी बिरुवा हुनुहुन्छ! (कम से कम 3 पटक डाउनलोड गरिएको छ)',
- 'last-update' => 'अन्तिम अपडेट',
- 'leave-tip' => 'टिप छोड्नुहोस्',
- 'leecher' => 'Leecher',
- 'leechers' => 'Leechers',
- 'leeching' => 'लिखित',
- 'left' => 'बाँया',
- 'legendary-seeder' => 'पौराणिक सीडर',
- 'legendary-torrent' => 'पौडेल धार',
- 'list' => 'सूची',
- 'me' => 'म',
- 'media-info' => 'MediaInfo',
- 'media-info-parser' => 'मिडियासूचना पार्सर',
- 'media-info-paste' => 'टाँस्नुहोस् मिडियाइनफाई डम्प यहाँ',
- 'meta-desc' => 'डाउनलोड गर्नुहोस्: अधिकतम गतिमा नाम',
- 'moderation' => 'मध्यस्थता',
- 'movies' => 'चलचित्रहरू',
- 'mvp' => 'MVP',
- 'my-active-torrents' => 'मेरो सक्रिय टोकन',
- 'name' => 'नाम',
- 'no-bookmarks' => 'त्यहाँ कुनै बुकमार्कहरू फेला परेनन्।',
- 'no-discounts' => 'हाल कुनै छूट छैन',
- 'no-meta' => 'मेटाडेटा फेला परेन',
- 'no-privileges' => 'तपाईं यो फाईल डाउनलोड गर्न सक्षम हुनुहुन्न - कृपया थप जानकारीको लागि तल जाँच गर्नुहोस्',
- 'no-privileges-desc' => 'कृपया डाउनलोड बटनको लागि माथिको असफल नतिजा समाधान गर्नुहोस्',
- 'not-completed' => 'डाउनलोड गर्न सुरु भए तापनि कहिल्यै पूरा हुँदैन',
- 'not-downloaded' => 'डाउनलोड गरिएको छैन',
- 'old-torrent' => 'पुरानो धार',
- 'optional' => 'वैकल्पिक',
- 'original-output' => 'वास्तविक उत्पादन देखाउनुहोस् / लुकाउनुहोस्',
- 'participant' => 'सहभागी',
- 'passed' => 'पारित',
- 'peers' => 'साथीहरु',
- 'pending' => 'पेन्डिंग',
- 'personal-freeleech' => 'व्यक्तिगत फ्रीलेक',
- 'poster' => 'पोस्टर',
- 'poster-view' => 'पोस्टर दृश्य',
- 'posters' => 'पोस्टरहरू',
- 'prewarn' => 'पहिला?',
- 'progress' => 'प्रगति',
- 'quick-comment' => 'द्रुत टिप्पणी',
- 'quick-tip' => 'द्रुत टिप मात्रा',
- 'rated' => 'मूल्याङ्कन गरिएको',
- 'rating' => 'मूल्याङ्कन',
- 'ready' => 'यो फाइल डाउनलोडको लागि तयार छ',
- 'rejected' => 'अस्वीकृत',
- 'released' => 'जारी गरियो',
- 'remaining' => 'बाँकी',
- 'request-reseed' => 'अनुरोध अनुरोध गरियो',
- 'requires-reseed' => 'पनीर चाहिन्छ',
- 'resurrections' => 'पुनरुत्थान',
- 'revoke' => 'रद्द गर्नुहोस्',
- 'rss' => 'आरएसएस',
- 'runtime' => 'Runtime',
- 'satisfied_in' => 'मा सन्तुष्ट भयो',
- 'say-thanks' => 'कृपया लामो समयसम्मको लागि धन्यवाद र बीउ भन्नुहोस् सम्झनुहोस्',
- 'sd-content' => 'SD सामग्री',
- 'search' => 'खोज्नुहोस्',
- 'seed-time' => 'बीज समय',
- 'seeder' => 'सीडर',
- 'seeders' => 'सीजर्स',
- 'seeding' => 'सीडिंग',
- 'seedsize' => 'Seedsize',
- 'seedtime' => 'बीज समय',
- 'short-completed' => 'सी',
- 'short-leechs' => 'एल',
- 'short-seeds' => 'एस',
- 'show-files' => 'फाइलहरू देखाउनुहोस्',
- 'similar' => 'समान समानता',
- 'size' => 'आकार',
- 'special' => 'विशेष',
- 'special-freeleech' => 'विशेष फ्रीलेच',
- 'started' => 'सुरु भयो',
- 'status' => 'स्थिति',
- 'statistics' => 'तथ्याङ्कहरू',
- 'stats' => 'आँकडा',
- 'sticky' => 'स्टिकी',
- 'stream-optimized' => 'अनुकूलित स्ट्रीम',
- 'subtitle' => 'उपशीर्षक',
- 'team-player' => 'टोली खेलाडी',
- 'thank' => 'धन्यवाद',
- 'thanked' => 'धन्यवाद',
- 'thanks' => 'धन्यवाद',
- 'thanks-given' => 'धन्यवाद दिए',
- 'times' => 'टाइम्स',
- 'tip-jar' => 'सुझाव जार',
- 'title' => 'शीर्षक',
- 'titles' => 'शीर्षकहरू',
- 'top-completed' => 'माथि पूरा भयो',
- 'top-dead' => 'शीर्ष मृत',
- 'top-dying' => 'माथि मरिरहेको छ',
- 'top-leeched' => 'शीर्ष पट्टे',
- 'top-seeded' => 'शीर्ष बीउ',
- 'torrent' => 'टोरेन्ट',
- 'torrent-request' => 'टोरेंट अनुरोध',
- 'torrent-tips' => 'कुलमा: कुल BON अपलोडरमा ट्याप गरिएको छ, जसको मध्ये : प्रयोगकर्ता तपाईंबाट हो',
- 'torrent-tips-desc' => 'यो तपाईंको उपलब्ध बोनस अंकहरूबाट कटौती गरिनेछ',
- 'torrents' => 'Torrents',
- 'trailer' => 'ट्रेलर हेर्नुहोस्',
- 'type' => 'टाइप गर्नुहोस्',
- 'types' => 'प्रकारहरू',
- 'unbookmark' => 'Unbookmark',
- 'unsatisfieds' => 'असन्तुष्ट',
- 'unsticky' => 'असस्टिक',
- 'updated' => 'अद्यावधिक गरियो',
- 'updated_at' => 'अपडेट गरिएको छ',
- 'uploaded' => 'अपलोड गरिएको छ',
- 'uploaded-by' => 'द्वारा अपलोड गरिएको',
- 'uploader' => 'अपलोडर',
- 'use-fl-token' => 'फ्रिलेच टोकन प्रयोग गर्नुहोस्',
- 'video' => 'भिडियो',
- 'view-more' => 'थप हेर्नुहोस्',
- 'view-trailer' => 'ट्रेलर हेर्नुहोस्',
- 'votes' => 'मतहरू',
+ 'grouping-results' => 'समूह परिणामहरू',
+ 'groupings-view' => 'समूहहरू हेर्नुहोस्',
+ 'have-completed' => 'पूर्ण भयो',
+ 'have-downloaded' => 'डाउनलोड गरियो',
+ 'have-not-completed' => 'पूर्ण छैन',
+ 'have-not-downloaded' => 'डाउनलोड गरिएको छैन',
+ 'health' => 'स्वास्थ्य',
+ 'history' => 'इतिहास',
+ 'hitrun' => 'एच एन्ड आर?',
+ 'hit-and-runs' => 'हिट र हिज्जे चलाउनुहोस्',
+ 'immune' => 'प्रतिरक्षा?',
+ 'info' => 'जानकारी',
+ 'internal' => 'आन्तरिक',
+ 'internal-release' => 'आन्तरिक रिलीज',
+ 'last-seed-activity' => 'अन्तिम बीउ गतिविधि',
+ 'last-seeder' => 'तपाईं अन्तिम बाँकी बिरुवा हुनुहुन्छ! (कम से कम 3 पटक डाउनलोड गरिएको छ)',
+ 'last-update' => 'अन्तिम अपडेट',
+ 'leave-tip' => 'टिप छोड्नुहोस्',
+ 'leecher' => 'Leecher',
+ 'leechers' => 'Leechers',
+ 'leeching' => 'लिखित',
+ 'left' => 'बाँया',
+ 'legendary-seeder' => 'पौराणिक सीडर',
+ 'legendary-torrent' => 'पौडेल धार',
+ 'list' => 'सूची',
+ 'me' => 'म',
+ 'media-info' => 'MediaInfo',
+ 'media-info-parser' => 'मिडियासूचना पार्सर',
+ 'media-info-paste' => 'टाँस्नुहोस् मिडियाइनफाई डम्प यहाँ',
+ 'meta-desc' => 'डाउनलोड गर्नुहोस्: अधिकतम गतिमा नाम',
+ 'moderation' => 'मध्यस्थता',
+ 'movies' => 'चलचित्रहरू',
+ 'mvp' => 'MVP',
+ 'my-active-torrents' => 'मेरो सक्रिय टोकन',
+ 'name' => 'नाम',
+ 'no-bookmarks' => 'त्यहाँ कुनै बुकमार्कहरू फेला परेनन्।',
+ 'no-discounts' => 'हाल कुनै छूट छैन',
+ 'no-meta' => 'मेटाडेटा फेला परेन',
+ 'no-privileges' => 'तपाईं यो फाईल डाउनलोड गर्न सक्षम हुनुहुन्न - कृपया थप जानकारीको लागि तल जाँच गर्नुहोस्',
+ 'no-privileges-desc' => 'कृपया डाउनलोड बटनको लागि माथिको असफल नतिजा समाधान गर्नुहोस्',
+ 'not-completed' => 'डाउनलोड गर्न सुरु भए तापनि कहिल्यै पूरा हुँदैन',
+ 'not-downloaded' => 'डाउनलोड गरिएको छैन',
+ 'old-torrent' => 'पुरानो धार',
+ 'optional' => 'वैकल्पिक',
+ 'original-output' => 'वास्तविक उत्पादन देखाउनुहोस् / लुकाउनुहोस्',
+ 'participant' => 'सहभागी',
+ 'passed' => 'पारित',
+ 'peers' => 'साथीहरु',
+ 'pending' => 'पेन्डिंग',
+ 'personal-freeleech' => 'व्यक्तिगत फ्रीलेक',
+ 'poster' => 'पोस्टर',
+ 'poster-view' => 'पोस्टर दृश्य',
+ 'posters' => 'पोस्टरहरू',
+ 'prewarn' => 'पहिला?',
+ 'progress' => 'प्रगति',
+ 'quick-comment' => 'द्रुत टिप्पणी',
+ 'quick-tip' => 'द्रुत टिप मात्रा',
+ 'rated' => 'मूल्याङ्कन गरिएको',
+ 'rating' => 'मूल्याङ्कन',
+ 'ready' => 'यो फाइल डाउनलोडको लागि तयार छ',
+ 'rejected' => 'अस्वीकृत',
+ 'released' => 'जारी गरियो',
+ 'remaining' => 'बाँकी',
+ 'request-reseed' => 'अनुरोध अनुरोध गरियो',
+ 'requires-reseed' => 'पनीर चाहिन्छ',
+ 'resurrections' => 'पुनरुत्थान',
+ 'revoke' => 'रद्द गर्नुहोस्',
+ 'rss' => 'आरएसएस',
+ 'runtime' => 'Runtime',
+ 'satisfied_in' => 'मा सन्तुष्ट भयो',
+ 'say-thanks' => 'कृपया लामो समयसम्मको लागि धन्यवाद र बीउ भन्नुहोस् सम्झनुहोस्',
+ 'sd-content' => 'SD सामग्री',
+ 'search' => 'खोज्नुहोस्',
+ 'seed-time' => 'बीज समय',
+ 'seeder' => 'सीडर',
+ 'seeders' => 'सीजर्स',
+ 'seeding' => 'सीडिंग',
+ 'seedsize' => 'Seedsize',
+ 'seedtime' => 'बीज समय',
+ 'short-completed' => 'सी',
+ 'short-leechs' => 'एल',
+ 'short-seeds' => 'एस',
+ 'show-files' => 'फाइलहरू देखाउनुहोस्',
+ 'similar' => 'समान समानता',
+ 'size' => 'आकार',
+ 'special' => 'विशेष',
+ 'special-freeleech' => 'विशेष फ्रीलेच',
+ 'started' => 'सुरु भयो',
+ 'status' => 'स्थिति',
+ 'statistics' => 'तथ्याङ्कहरू',
+ 'stats' => 'आँकडा',
+ 'sticky' => 'स्टिकी',
+ 'stream-optimized' => 'अनुकूलित स्ट्रीम',
+ 'subtitle' => 'उपशीर्षक',
+ 'team-player' => 'टोली खेलाडी',
+ 'thank' => 'धन्यवाद',
+ 'thanked' => 'धन्यवाद',
+ 'thanks' => 'धन्यवाद',
+ 'thanks-given' => 'धन्यवाद दिए',
+ 'times' => 'टाइम्स',
+ 'tip-jar' => 'सुझाव जार',
+ 'title' => 'शीर्षक',
+ 'titles' => 'शीर्षकहरू',
+ 'top-completed' => 'माथि पूरा भयो',
+ 'top-dead' => 'शीर्ष मृत',
+ 'top-dying' => 'माथि मरिरहेको छ',
+ 'top-leeched' => 'शीर्ष पट्टे',
+ 'top-seeded' => 'शीर्ष बीउ',
+ 'torrent' => 'टोरेन्ट',
+ 'torrent-request' => 'टोरेंट अनुरोध',
+ 'torrent-tips' => 'कुलमा: कुल BON अपलोडरमा ट्याप गरिएको छ, जसको मध्ये : प्रयोगकर्ता तपाईंबाट हो',
+ 'torrent-tips-desc' => 'यो तपाईंको उपलब्ध बोनस अंकहरूबाट कटौती गरिनेछ',
+ 'torrents' => 'Torrents',
+ 'trailer' => 'ट्रेलर हेर्नुहोस्',
+ 'type' => 'टाइप गर्नुहोस्',
+ 'types' => 'प्रकारहरू',
+ 'unbookmark' => 'Unbookmark',
+ 'unsatisfieds' => 'असन्तुष्ट',
+ 'unsticky' => 'असस्टिक',
+ 'updated' => 'अद्यावधिक गरियो',
+ 'updated_at' => 'अपडेट गरिएको छ',
+ 'uploaded' => 'अपलोड गरिएको छ',
+ 'uploaded-by' => 'द्वारा अपलोड गरिएको',
+ 'uploader' => 'अपलोडर',
+ 'use-fl-token' => 'फ्रिलेच टोकन प्रयोग गर्नुहोस्',
+ 'video' => 'भिडियो',
+ 'view-more' => 'थप हेर्नुहोस्',
+ 'view-trailer' => 'ट्रेलर हेर्नुहोस्',
+ 'votes' => 'मतहरू',
];
diff --git a/lang/ne/user.php b/lang/ne/user.php
index ab5235045..18af6ad58 100644
--- a/lang/ne/user.php
+++ b/lang/ne/user.php
@@ -12,316 +12,316 @@
*/
return [
- 'about' => 'बारेमा',
- 'about-me' => 'मेरो बारेमा',
- 'accepted-at' => 'स्वीकार गरियो',
- 'accepted-by' => 'द्वारा स्वीकृत',
- 'account-notification' => 'खाता अधिसूचना सेटिङहरू',
- 'account-notification-follow' => 'प्रयोगकर्ताले तपाइँको खाता पछ्याउँदा एक सूचना प्राप्त गर्नुहोस्',
- 'account-notification-unfollow' => 'एक सूचना प्राप्त गर्दा प्रयोगकर्ताले तपाईंको खाता अनुचित गर्दछ',
- 'account-notification-help' => 'तपाईंको खाताको बारेमा कुन सूचनाहरू पठाइन्छ। यी सेटिङ्हरू ओभरराइड गरिएका छन् भने तपाईले कुनै पनि समुहलाई तपाईंको खाता सम्बन्धी अधिसूचनाहरू पठाउन अनुमति दिनुहुन्न वा यदि तपाइँ अधिसूचनाहरू असक्षम पार्नुहुन्छ',
- 'account-settings' => 'खाता सेटिङ',
- 'achievement-privacy' => 'उपलब्धि सेटिङ्हरू',
- 'achievement-privacy-list' => 'प्रयोगकर्ताहरूलाई तपाईंको उपलब्धिहरूको सूची हेर्न अनुमति दिनुहोस्',
- 'achievement-help' => 'विशिष्ट उपलब्धि सम्बन्धित जानकारी साझेदारी गर्ने समुहहरूसँग तपाईंको प्रोफाइलमा पहुँच गर्न अनुमति छ। यी सेटिङ्हरू ओभरराइड गरिएका छन् भने यदि तपाइँ कुनै पनि समूहले तपाइँका उपलब्धिहरू पहुँच गर्न अनुमति दिनुहुन्न वा यदि तपाई निजी हुनुभयो भने',
- 'achievements' => 'उपलब्धिहरु',
- 'active' => 'सक्रिय',
- 'active-table' => 'मेरो सक्रिय तालिका',
- 'active-torrents' => 'सक्रिय ट्राफिकहरू',
- 'active-warning' => 'सक्रिय चेतावनी',
- 'active-warnings' => 'सक्रिय चेतावनीहरू',
- 'add-seedbox' => 'बीजबक्स थप्नुहोस्',
- 'all-torrents' => 'सबै ट्राटर',
- 'article-comments' => 'लेखिएको टिप्पणी बनाइयो',
- 'avatar' => 'अवतार',
- 'avg-seedtime' => 'औसत सेकेन्ड',
- 'badges' => 'बैज',
- 'ban' => 'ब्यान प्रयोगकर्ता',
- 'ban-log' => 'ब्यान लग',
- 'become-hidden' => 'लुकेको हुनुहोस्',
- 'become-visible' => 'दृश्यात्मक हुनुहोस्',
- 'bon' => 'BON',
- 'bon-notification' => 'BON सूचना सेटिङ',
- 'bon-notification-gift' => 'प्रयोगकर्ताले तपाइँलाई बोनस उपहार दिँदा एक अधिसूचना प्राप्त गर्नुहोस्',
- 'bon-notification-help' => 'BON लेनदेनको सम्बन्धमा कुन अधिसूचनाहरू पठाइन्छ नियन्त्रण गर्नुहोस्। यी सेटिङ्हरू ओभरराइड गरिएका छन् यदि तपाईले कुनै समूहलाई BON सम्बन्धी अधिसूचनाहरू पठाउन अनुमति दिनुहुन्न वा यदि तपाइँ अधिसूचनाहरूलाई असक्षम पार्नुहुन्छ',
- 'bookmarks' => 'बुकमार्कहरू',
- 'bounty-given' => 'इनाम दिइयो',
- 'bounty-received' => 'इनाम प्राप्त भयो',
- 'can-chat' => 'कुराकानी गर्न सक्नुहुन्छ',
- 'can-comment' => 'टिप्पणी गर्न सक्नुहुन्छ',
- 'can-download' => 'डाउनलोड गर्न सक्नुहुन्छ',
- 'can-invite' => 'निम्तो गर्न सक्छ',
- 'can-request' => 'अनुरोध गर्न सक्छ',
- 'can-upload' => 'अपलोड गर्न सक्दछ',
- 'certified-banker' => 'प्रमाणित बैंकर',
- 'certified-banker-desc' => 'बैंकमा 50,000 वा बढी बोन छ',
- 'certified-downloader' => 'प्रमाणित डाउनलोडर',
- 'certified-downloader-desc' => 'डाउनलोड 100 वा अधिक ट्राटर!',
- 'certified-seeder' => 'प्रमाणित सेडर',
- 'certified-seeder-desc' => '150 या अधिक टराउन्टहरू बोकेर!',
- 'change-email' => 'इमेल परिवर्तन गर्नुहोस्',
- 'change-email-help' => 'तपाईंले आफ्नो ईमेल परिवर्तन गरेपछि, तपाईंको खाता पुन: पुष्टि गर्नुपर्नेछ',
- 'change-password' => 'पासवर्ड परिवर्तन गर्नुहोस्',
- 'change-password-help' => 'तपाईंले आफ्नो पासवर्ड परिवर्तन गरेपछि फेरि फेरि लगइन गर्नुपर्नेछ',
- 'client-ip-address' => 'क्लाइन्ट आईपी ठेगाना',
- 'code' => 'कोड',
- 'comments' => 'टिप्पणीहरू',
- 'created-on' => 'मा सिर्जना गरियो',
- 'credited-download' => 'श्रेय डाउनलोड',
- 'credited-upload' => 'क्रेडिट गरिएको अपलोड',
- 'current-password' => 'वर्तमान पासवर्ड',
- 'custom-title' => 'कस्टम शीर्षक',
- 'delete' => 'प्रयोगकर्ता मेटाउनुहोस्',
- 'disable-notifications' => 'अधिसूचनाहरू अक्षम गर्नुहोस्',
- 'disclaimer' => 'अस्वीकरण',
- 'disclaimer-info' => 'हामी पूर्वनिर्धारित रूपमा प्रयोगकर्ताहरू आईपी ठेगानाहरू जस्तै धेरै ट्रयाकहरू लगइन गर्नुहुन्न। तपाईंको बिरबक्स थप्न आईपी तल आईपुगेको हो भने तपाइँले सूचीबद्ध सूचीबद्ध आईपीहरू अब तपाईको डाटाबेसमा भण्डारण गरी भण्डारण नगरेसम्म तपाईले रेकर्ड मेटाउनुहुन्न।',
- 'disclaimer-info-bordered' => 'त्यसपछि बीडबक्स आईपीहरू थपिनेछन् तलको सूचीबद्ध आईपीबाट बीउको टाररेन्टहरूमा हाई स्पीड टोरेंट ट्याग ट्रिगर गर्नेछ',
- 'download-bon' => 'डाउनलोड BON स्टोर हटाइयो',
- 'download-recorded' => 'रेकर्ड गरिएको डाउनलोड',
- 'download-true' => 'साँचो डाउनलोड',
- 'downloads' => 'डाउनलोडहरू',
- 'edit' => 'प्रयोगकर्ता सम्पादन गर्नुहोस्',
- 'edit-profile' => 'प्रोफाइल सम्पादन गर',
- 'enable-notifications' => 'अधिसूचनाहरू सक्षम गर्नुहोस्',
- 'expired' => 'समयावधि समाप्त भयो',
- 'expires-on' => 'म्याद समाप्त हुन्छ',
- 'extra' => 'अतिरिक्त',
- 'filled-request' => 'भरिएको सदस्य अनुरोधहरू',
- 'follow' => 'पछ्याउन',
- 'follower-privacy' => 'अनुयायी सेटिङ्हरू',
- 'follower-privacy-list' => 'प्रयोगकर्ताहरूलाई तपाईंका अनुयायीहरूको सूची हेर्न अनुमति दिनुहोस्',
- 'follower-help' => 'विशिष्ट अनुयायी सम्बन्धित जानकारीको साझेदारीलाई समूहहरूमार्फत तपाईंको प्रोफाइलमा पहुँच गर्न अनुमति दिनुहोस्। यी सेटिङ्हरू ओभरराइड गरिएका छन् भने यदि तपाइँ कुनै पनि समूहले तपाइँको अनुयायीहरू पहुँच गर्न अनुमति नदिनु हुन्छ वा यदि तपाई निजी हुनुहुन्न भने',
- 'followers' => 'अनुयायीहरू',
- 'following-notification' => 'पछ्याइएको प्रयोगकर्ता अधिसूचना सेटिङहरू',
- 'following-notification-upload' => 'जब एक प्रयोगकर्ताले एक टोरेंट अपलोड गरेको बेला सूचना प्राप्त गर्नुहोस्',
- 'following-notification-help' => 'प्रयोगकर्ता साइट कार्यहरू पछिको कुन सूचनाहरू पठाइएका छन् नियन्त्रण गर्नुहोस्। यी सेटिङ्हरू ओभरराइड गरिएका छन् यदि तपाइँले कुनै पनि समूहहरूलाई पछ्याउने प्रयोगकर्ताहरूको बारेमा अधिसूचनाहरू पठाउन अनुमति दिनुहुन्न वा यदि तपाइँ अधिसूचनाहरूलाई असक्षम पार्नुहुन्छ',
- 'formats-are-supported' => 'ढाँचाहरू समर्थित छन्',
- 'forum-notification' => 'फोरम अधिसूचना सेटिंग्स',
- 'forum-notification-topic' => 'अधिसूचना प्राप्त गर्नुहोस् जब तपाईले सुरू गर्नु भएको विषय नयाँ पोष्ट हुन्छ',
- 'forum-notification-help' => 'फोरम गतिविधिहरूको बारेमा कुन सूचनाहरू पठाइन्छ नियन्त्रण गर्नुहोस्। यी सेटिङ्हरू ओभरराइड गरिएका छन् यदि तपाइँ कुनै पनि समूहलाई फोरम गतिविधिहरूको बारेमा अधिसूचनाहरू पठाउन अनुमति दिनुहुन्न वा यदि तपाइँ अधिसूचनाहरूलाई असक्षम पार्नुहुन्छ',
- 'forum-privacy' => 'फोरम सेटिंग्स',
- 'forum-privacy-post' => 'तपाइँले पोष्ट गरेको फोरम पदहरूको सूची हेर्न अनुमति दिनुहोस्',
- 'forum-privacy-topic' => 'तपाइँले सुरु गर्नुभएको फोरम विषयहरूको सूची हेर्न प्रयोगकर्तालाई अनुमति दिनुहोस्',
- 'forum-help' => 'तपाईंको फोरममा पहुँच गर्न अनुमति भएका समूहहरूसँग सम्बन्धित फोरम सम्बन्धित तथ्याङ्कहरू र जानकारीको साझेदारीलाई नियन्त्रण गर्नुहोस्। यी सेटिङ्हरू ओभरराइड गरिएका छन् यदि तपाइँ कुनै पनि समूहले तपाइँको फोरम सम्बन्धित सम्बन्धी तथ्याङ्कहरू र सूचनालाई पहुँच गर्न अनुमति दिनुहुन्न वा तपाईं निजी जानुहुन्छ भने',
- 'forum-signature' => 'फोरम हस्ताक्षर',
- 'forums' => 'फोरम',
- 'general' => 'सामान्य',
- 'general-settings' => 'सामान्य सेटिङहरू',
- 'gift-given' => 'गिफ्ट दिइयो',
- 'gift-received' => 'गिफ्ट प्राप्त भयो',
- 'go-public' => 'सार्वजनिक जानुहोस्',
- 'go-private' => 'निजी जानुहोस्',
- 'history' => 'इतिहास',
- 'history-table' => 'मेरो इतिहास तालिका',
- 'hit-n-runs' => 'हिट र चलाउँछ',
- 'hit-n-runs-count' => 'हिट र रन गणना (सबै समय)',
- 'hit-n-runs-history' => 'टोरेन्ट हिट र रन इतिहास',
- 'image' => 'छवि',
- 'important' => 'महत्त्वपूर्ण',
- 'important-info' => 'महत्त्वपूर्ण जानकारी',
- 'information' => 'जानकारी',
- 'invite-friend' => 'तपाईंको मित्रलाई निम्तो दिनुहोस् (इमेल + सन्देश आवाश्यक)',
- 'invite-tree' => 'ट्री निमन्त्रणा गर्नुहोस्',
- 'invites' => 'निमन्त्रणा',
- 'invites-banned' => 'त्रुटि: तपाईंको निमन्त्रणा अधिकार अक्षम पारिएको छ',
- 'invites-banned-desc' => 'यदि तपाईंलाई यो त्रुटिमा महसुस गर्नुहुन्छ भने, कृपया कर्मचारीलाई सम्पर्क गर्नुहोस्!',
- 'invites-count' => 'तपाईं छ: गणना बोनस निमन्त्रणा गर्नुहोस्',
- 'invites-disabled' => 'ध्यान दिनुहोस्: निमन्त्रणाहरू खोल्नका लागि असक्षम गरिएका कारणहरू!',
- 'invites-disabled-desc' => 'कृपया तुरुन्तै जाँच गर्नुहोस्!',
- 'invites-rules' => '- केवल तपाईलाई थाहा छ व्यक्तिहरूलाई आमन्त्रण गर्नुहोस् र विश्वास गर्नुहोस्।
- तपाईंले निमन्त्रणा गर्ने व्यक्तिहरूको लागि व्यक्तिगत रूपमा जिम्मेवार हुनुहुनेछ।
- आफैलाई निमन्त्रणा नगर्नुहोस्, हामी प्रत्येक आमन्त्रित प्रयोगकर्तालाई जाँच्नुहोस्।
- व्यापार नगर्नु वा निमन्त्रणाहरू बेच्नुहोस्।
- यदि तपाईंले निमन्त्रणा गर्नुभएको व्यक्ति धोखाधडी, व्यापारिक खाता वा बिक्री / निमन्त्रणा लिईएको छ, तपाईंलाई चेतावनी दिइनेछ।
',
- 'invites-send' => 'निमन्त्रणा पठाउनुहोस्',
- 'last-login' => 'अन्तिम लगइन',
- 'locked' => 'लक गरियो',
- 'locked-achievements' => 'उपलब्धिहरू उपलब्ध छन्',
- 'member-since' => 'देखि सदस्य',
- 'members-desc' => 'दर्ता भएका प्रयोगकर्ताहरूको सूची: सबै समूहसँग शीर्षक। अब प्रयोगकर्ता खोज्नुहोस्।',
- 'mention-notification' => '@ सम्झौता अधिसूचना सेटिङहरू',
+ 'about' => 'बारेमा',
+ 'about-me' => 'मेरो बारेमा',
+ 'accepted-at' => 'स्वीकार गरियो',
+ 'accepted-by' => 'द्वारा स्वीकृत',
+ 'account-notification' => 'खाता अधिसूचना सेटिङहरू',
+ 'account-notification-follow' => 'प्रयोगकर्ताले तपाइँको खाता पछ्याउँदा एक सूचना प्राप्त गर्नुहोस्',
+ 'account-notification-unfollow' => 'एक सूचना प्राप्त गर्दा प्रयोगकर्ताले तपाईंको खाता अनुचित गर्दछ',
+ 'account-notification-help' => 'तपाईंको खाताको बारेमा कुन सूचनाहरू पठाइन्छ। यी सेटिङ्हरू ओभरराइड गरिएका छन् भने तपाईले कुनै पनि समुहलाई तपाईंको खाता सम्बन्धी अधिसूचनाहरू पठाउन अनुमति दिनुहुन्न वा यदि तपाइँ अधिसूचनाहरू असक्षम पार्नुहुन्छ',
+ 'account-settings' => 'खाता सेटिङ',
+ 'achievement-privacy' => 'उपलब्धि सेटिङ्हरू',
+ 'achievement-privacy-list' => 'प्रयोगकर्ताहरूलाई तपाईंको उपलब्धिहरूको सूची हेर्न अनुमति दिनुहोस्',
+ 'achievement-help' => 'विशिष्ट उपलब्धि सम्बन्धित जानकारी साझेदारी गर्ने समुहहरूसँग तपाईंको प्रोफाइलमा पहुँच गर्न अनुमति छ। यी सेटिङ्हरू ओभरराइड गरिएका छन् भने यदि तपाइँ कुनै पनि समूहले तपाइँका उपलब्धिहरू पहुँच गर्न अनुमति दिनुहुन्न वा यदि तपाई निजी हुनुभयो भने',
+ 'achievements' => 'उपलब्धिहरु',
+ 'active' => 'सक्रिय',
+ 'active-table' => 'मेरो सक्रिय तालिका',
+ 'active-torrents' => 'सक्रिय ट्राफिकहरू',
+ 'active-warning' => 'सक्रिय चेतावनी',
+ 'active-warnings' => 'सक्रिय चेतावनीहरू',
+ 'add-seedbox' => 'बीजबक्स थप्नुहोस्',
+ 'all-torrents' => 'सबै ट्राटर',
+ 'article-comments' => 'लेखिएको टिप्पणी बनाइयो',
+ 'avatar' => 'अवतार',
+ 'avg-seedtime' => 'औसत सेकेन्ड',
+ 'badges' => 'बैज',
+ 'ban' => 'ब्यान प्रयोगकर्ता',
+ 'ban-log' => 'ब्यान लग',
+ 'become-hidden' => 'लुकेको हुनुहोस्',
+ 'become-visible' => 'दृश्यात्मक हुनुहोस्',
+ 'bon' => 'BON',
+ 'bon-notification' => 'BON सूचना सेटिङ',
+ 'bon-notification-gift' => 'प्रयोगकर्ताले तपाइँलाई बोनस उपहार दिँदा एक अधिसूचना प्राप्त गर्नुहोस्',
+ 'bon-notification-help' => 'BON लेनदेनको सम्बन्धमा कुन अधिसूचनाहरू पठाइन्छ नियन्त्रण गर्नुहोस्। यी सेटिङ्हरू ओभरराइड गरिएका छन् यदि तपाईले कुनै समूहलाई BON सम्बन्धी अधिसूचनाहरू पठाउन अनुमति दिनुहुन्न वा यदि तपाइँ अधिसूचनाहरूलाई असक्षम पार्नुहुन्छ',
+ 'bookmarks' => 'बुकमार्कहरू',
+ 'bounty-given' => 'इनाम दिइयो',
+ 'bounty-received' => 'इनाम प्राप्त भयो',
+ 'can-chat' => 'कुराकानी गर्न सक्नुहुन्छ',
+ 'can-comment' => 'टिप्पणी गर्न सक्नुहुन्छ',
+ 'can-download' => 'डाउनलोड गर्न सक्नुहुन्छ',
+ 'can-invite' => 'निम्तो गर्न सक्छ',
+ 'can-request' => 'अनुरोध गर्न सक्छ',
+ 'can-upload' => 'अपलोड गर्न सक्दछ',
+ 'certified-banker' => 'प्रमाणित बैंकर',
+ 'certified-banker-desc' => 'बैंकमा 50,000 वा बढी बोन छ',
+ 'certified-downloader' => 'प्रमाणित डाउनलोडर',
+ 'certified-downloader-desc' => 'डाउनलोड 100 वा अधिक ट्राटर!',
+ 'certified-seeder' => 'प्रमाणित सेडर',
+ 'certified-seeder-desc' => '150 या अधिक टराउन्टहरू बोकेर!',
+ 'change-email' => 'इमेल परिवर्तन गर्नुहोस्',
+ 'change-email-help' => 'तपाईंले आफ्नो ईमेल परिवर्तन गरेपछि, तपाईंको खाता पुन: पुष्टि गर्नुपर्नेछ',
+ 'change-password' => 'पासवर्ड परिवर्तन गर्नुहोस्',
+ 'change-password-help' => 'तपाईंले आफ्नो पासवर्ड परिवर्तन गरेपछि फेरि फेरि लगइन गर्नुपर्नेछ',
+ 'client-ip-address' => 'क्लाइन्ट आईपी ठेगाना',
+ 'code' => 'कोड',
+ 'comments' => 'टिप्पणीहरू',
+ 'created-on' => 'मा सिर्जना गरियो',
+ 'credited-download' => 'श्रेय डाउनलोड',
+ 'credited-upload' => 'क्रेडिट गरिएको अपलोड',
+ 'current-password' => 'वर्तमान पासवर्ड',
+ 'custom-title' => 'कस्टम शीर्षक',
+ 'delete' => 'प्रयोगकर्ता मेटाउनुहोस्',
+ 'disable-notifications' => 'अधिसूचनाहरू अक्षम गर्नुहोस्',
+ 'disclaimer' => 'अस्वीकरण',
+ 'disclaimer-info' => 'हामी पूर्वनिर्धारित रूपमा प्रयोगकर्ताहरू आईपी ठेगानाहरू जस्तै धेरै ट्रयाकहरू लगइन गर्नुहुन्न। तपाईंको बिरबक्स थप्न आईपी तल आईपुगेको हो भने तपाइँले सूचीबद्ध सूचीबद्ध आईपीहरू अब तपाईको डाटाबेसमा भण्डारण गरी भण्डारण नगरेसम्म तपाईले रेकर्ड मेटाउनुहुन्न।',
+ 'disclaimer-info-bordered' => 'त्यसपछि बीडबक्स आईपीहरू थपिनेछन् तलको सूचीबद्ध आईपीबाट बीउको टाररेन्टहरूमा हाई स्पीड टोरेंट ट्याग ट्रिगर गर्नेछ',
+ 'download-bon' => 'डाउनलोड BON स्टोर हटाइयो',
+ 'download-recorded' => 'रेकर्ड गरिएको डाउनलोड',
+ 'download-true' => 'साँचो डाउनलोड',
+ 'downloads' => 'डाउनलोडहरू',
+ 'edit' => 'प्रयोगकर्ता सम्पादन गर्नुहोस्',
+ 'edit-profile' => 'प्रोफाइल सम्पादन गर',
+ 'enable-notifications' => 'अधिसूचनाहरू सक्षम गर्नुहोस्',
+ 'expired' => 'समयावधि समाप्त भयो',
+ 'expires-on' => 'म्याद समाप्त हुन्छ',
+ 'extra' => 'अतिरिक्त',
+ 'filled-request' => 'भरिएको सदस्य अनुरोधहरू',
+ 'follow' => 'पछ्याउन',
+ 'follower-privacy' => 'अनुयायी सेटिङ्हरू',
+ 'follower-privacy-list' => 'प्रयोगकर्ताहरूलाई तपाईंका अनुयायीहरूको सूची हेर्न अनुमति दिनुहोस्',
+ 'follower-help' => 'विशिष्ट अनुयायी सम्बन्धित जानकारीको साझेदारीलाई समूहहरूमार्फत तपाईंको प्रोफाइलमा पहुँच गर्न अनुमति दिनुहोस्। यी सेटिङ्हरू ओभरराइड गरिएका छन् भने यदि तपाइँ कुनै पनि समूहले तपाइँको अनुयायीहरू पहुँच गर्न अनुमति नदिनु हुन्छ वा यदि तपाई निजी हुनुहुन्न भने',
+ 'followers' => 'अनुयायीहरू',
+ 'following-notification' => 'पछ्याइएको प्रयोगकर्ता अधिसूचना सेटिङहरू',
+ 'following-notification-upload' => 'जब एक प्रयोगकर्ताले एक टोरेंट अपलोड गरेको बेला सूचना प्राप्त गर्नुहोस्',
+ 'following-notification-help' => 'प्रयोगकर्ता साइट कार्यहरू पछिको कुन सूचनाहरू पठाइएका छन् नियन्त्रण गर्नुहोस्। यी सेटिङ्हरू ओभरराइड गरिएका छन् यदि तपाइँले कुनै पनि समूहहरूलाई पछ्याउने प्रयोगकर्ताहरूको बारेमा अधिसूचनाहरू पठाउन अनुमति दिनुहुन्न वा यदि तपाइँ अधिसूचनाहरूलाई असक्षम पार्नुहुन्छ',
+ 'formats-are-supported' => 'ढाँचाहरू समर्थित छन्',
+ 'forum-notification' => 'फोरम अधिसूचना सेटिंग्स',
+ 'forum-notification-topic' => 'अधिसूचना प्राप्त गर्नुहोस् जब तपाईले सुरू गर्नु भएको विषय नयाँ पोष्ट हुन्छ',
+ 'forum-notification-help' => 'फोरम गतिविधिहरूको बारेमा कुन सूचनाहरू पठाइन्छ नियन्त्रण गर्नुहोस्। यी सेटिङ्हरू ओभरराइड गरिएका छन् यदि तपाइँ कुनै पनि समूहलाई फोरम गतिविधिहरूको बारेमा अधिसूचनाहरू पठाउन अनुमति दिनुहुन्न वा यदि तपाइँ अधिसूचनाहरूलाई असक्षम पार्नुहुन्छ',
+ 'forum-privacy' => 'फोरम सेटिंग्स',
+ 'forum-privacy-post' => 'तपाइँले पोष्ट गरेको फोरम पदहरूको सूची हेर्न अनुमति दिनुहोस्',
+ 'forum-privacy-topic' => 'तपाइँले सुरु गर्नुभएको फोरम विषयहरूको सूची हेर्न प्रयोगकर्तालाई अनुमति दिनुहोस्',
+ 'forum-help' => 'तपाईंको फोरममा पहुँच गर्न अनुमति भएका समूहहरूसँग सम्बन्धित फोरम सम्बन्धित तथ्याङ्कहरू र जानकारीको साझेदारीलाई नियन्त्रण गर्नुहोस्। यी सेटिङ्हरू ओभरराइड गरिएका छन् यदि तपाइँ कुनै पनि समूहले तपाइँको फोरम सम्बन्धित सम्बन्धी तथ्याङ्कहरू र सूचनालाई पहुँच गर्न अनुमति दिनुहुन्न वा तपाईं निजी जानुहुन्छ भने',
+ 'forum-signature' => 'फोरम हस्ताक्षर',
+ 'forums' => 'फोरम',
+ 'general' => 'सामान्य',
+ 'general-settings' => 'सामान्य सेटिङहरू',
+ 'gift-given' => 'गिफ्ट दिइयो',
+ 'gift-received' => 'गिफ्ट प्राप्त भयो',
+ 'go-public' => 'सार्वजनिक जानुहोस्',
+ 'go-private' => 'निजी जानुहोस्',
+ 'history' => 'इतिहास',
+ 'history-table' => 'मेरो इतिहास तालिका',
+ 'hit-n-runs' => 'हिट र चलाउँछ',
+ 'hit-n-runs-count' => 'हिट र रन गणना (सबै समय)',
+ 'hit-n-runs-history' => 'टोरेन्ट हिट र रन इतिहास',
+ 'image' => 'छवि',
+ 'important' => 'महत्त्वपूर्ण',
+ 'important-info' => 'महत्त्वपूर्ण जानकारी',
+ 'information' => 'जानकारी',
+ 'invite-friend' => 'तपाईंको मित्रलाई निम्तो दिनुहोस् (इमेल + सन्देश आवाश्यक)',
+ 'invite-tree' => 'ट्री निमन्त्रणा गर्नुहोस्',
+ 'invites' => 'निमन्त्रणा',
+ 'invites-banned' => 'त्रुटि: तपाईंको निमन्त्रणा अधिकार अक्षम पारिएको छ',
+ 'invites-banned-desc' => 'यदि तपाईंलाई यो त्रुटिमा महसुस गर्नुहुन्छ भने, कृपया कर्मचारीलाई सम्पर्क गर्नुहोस्!',
+ 'invites-count' => 'तपाईं छ: गणना बोनस निमन्त्रणा गर्नुहोस्',
+ 'invites-disabled' => 'ध्यान दिनुहोस्: निमन्त्रणाहरू खोल्नका लागि असक्षम गरिएका कारणहरू!',
+ 'invites-disabled-desc' => 'कृपया तुरुन्तै जाँच गर्नुहोस्!',
+ 'invites-rules' => '- केवल तपाईलाई थाहा छ व्यक्तिहरूलाई आमन्त्रण गर्नुहोस् र विश्वास गर्नुहोस्।
- तपाईंले निमन्त्रणा गर्ने व्यक्तिहरूको लागि व्यक्तिगत रूपमा जिम्मेवार हुनुहुनेछ।
- आफैलाई निमन्त्रणा नगर्नुहोस्, हामी प्रत्येक आमन्त्रित प्रयोगकर्तालाई जाँच्नुहोस्।
- व्यापार नगर्नु वा निमन्त्रणाहरू बेच्नुहोस्।
- यदि तपाईंले निमन्त्रणा गर्नुभएको व्यक्ति धोखाधडी, व्यापारिक खाता वा बिक्री / निमन्त्रणा लिईएको छ, तपाईंलाई चेतावनी दिइनेछ।
',
+ 'invites-send' => 'निमन्त्रणा पठाउनुहोस्',
+ 'last-login' => 'अन्तिम लगइन',
+ 'locked' => 'लक गरियो',
+ 'locked-achievements' => 'उपलब्धिहरू उपलब्ध छन्',
+ 'member-since' => 'देखि सदस्य',
+ 'members-desc' => 'दर्ता भएका प्रयोगकर्ताहरूको सूची: सबै समूहसँग शीर्षक। अब प्रयोगकर्ता खोज्नुहोस्।',
+ 'mention-notification' => '@ सम्झौता अधिसूचना सेटिङहरू',
'mention-notification-article-comment' => 'जब तपाईं एक लेख टिप्पणीमा @mentioned हुनुहुन्छ एक अधिसूचना प्राप्त गर्नुहोस्',
'mention-notification-torrent-comment' => 'जब तपाईं एक टिप्पणी टिप्पणीमा @mentioned हुनुहुन्छ एक अधिसूचना प्राप्त गर्नुहोस्',
'mention-notification-request-comment' => 'जब तपाईं अनुरोध टिप्पणीमा @mentioned हुनुहुन्छ एक अधिसूचना प्राप्त गर्नुहोस्',
- 'mention-notification-forum-post' => 'जब तपाईं एक पोष्ट पोष्टमा @mentioned हुनुहुन्छ एक अधिसूचना प्राप्त गर्नुहोस्',
- 'mention-notification-help' => 'जब प्रयोगकर्ताले तपाईलाई @ तान्ने बेलामा कुन अधिसूचनाहरू पठाइन्छ लाई नियन्त्रण गर्नुहोस्। यी सेटिङ्हरू ओभरराइड गरिएका छन् यदि तपाईले कुनै पनि समूहहरूलाई सूचनाहरू पठाउन अनुमति दिनुहुन्न भने प्रयोगकर्ताले तपाईलाई निवेदन गर्नुहुन्छ वा यदि तपाइँ अधिसूचनाहरू असक्षम गर्नुभयो भने',
- 'moderated-by' => 'द्वारा परिमार्जित: मोड मा',
- 'my-bonus-points' => 'मेरो बोनस पोइन्टहरू',
- 'my-bookmarks' => 'मेरो बुकमार्कहरू',
- 'my-fl-tokens' => 'मेरो FL टोकन',
- 'my-general-settings' => 'मेरो सामान्य सेटिङ्हरू',
- 'my-notification' => 'मेरो अधिसूचना',
- 'my-notification-settings' => 'मेरो सूचना सेटिङ',
- 'my-privacy' => 'मेरो गोपनीयता',
- 'my-privacy-settings' => 'मेरो गोपनीयता सेटिङ',
- 'my-profile' => 'मेरो प्रोफाइल',
- 'my-requested' => 'मेरो अनुरोध',
- 'my-security' => 'मेरो सुरक्षा',
- 'my-security-settings' => 'मेरो सुरक्षा सेटिङ्हरू',
- 'my-seedboxes' => 'मेरो बीजबक्सहरू',
- 'my-settings' => 'मेरो सेटिङ्हरू',
- 'my-wishlist' => 'मेरो इच्छा सूची',
- 'no-logs' => 'यस प्रयोगकर्ताको लागि डेटाबेसमा कुनै निमन्त्रणा लगहरू छैनन्!',
- 'no-seedboxes' => 'कुनै बीजबक्सहरू र्याङ्किङ्ग छैन',
- 'not-authorized' => 'तपाईं यो पेज हेर्न अधिकार छैन। यो सदस्य निन्जा जस्तो लुकेको छ!',
- 'note' => 'नोट',
- 'notification' => 'अधिसूचना',
- 'notification-settings' => 'अधिसूचना सेटिङहरू',
- 'notification-from-account' => 'खाता सूचनाहरू प्राप्त गर्नुहोस्',
- 'notification-from-account-help' => 'तपाईले केवल प्रणाली, कर्मचारी र निम्न समूहबाट खाता अधिसूचना प्राप्त गर्नुहुनेछ। यी सेटिङहरू ओभरराइड गरिएका छन् यदि तपाइँ अधिसूचनाहरू निष्क्रिय गर्नुहोस्',
- 'notification-from-bon' => 'BON सूचनाहरू प्राप्त गर्नुहोस्',
- 'notification-from-bon-help' => 'तपाईले केवल प्रणाली, कर्मचारी र निम्न समूहबाट BON सूचनाहरू प्राप्त गर्नुहुनेछ। यी सेटिङहरू ओभरराइड गरिएका छन् यदि तपाइँ अधिसूचनाहरू निष्क्रिय गर्नुहोस्',
- 'notification-from-following' => 'पछ्याइएको प्रयोगकर्ता अधिसूचना प्राप्त गर्नुहोस्',
- 'notification-from-following-help' => 'तपाईले केवल निम्न समूहहरूको प्रयोगकर्ता सूचनाहरू पालन गर्नुहुनेछ। यी सेटिङहरू ओभरराइड गरिएका छन् यदि तपाइँ अधिसूचनाहरू निष्क्रिय गर्नुहोस्',
- 'notification-from-forum' => 'फोरम अधिसूचनाहरू प्राप्त गर्नुहोस्',
- 'notification-from-forum-help' => 'तपाईले केवल प्रणाली, कर्मचारी र निम्न समूहबाट फोरम अधिसूचनाहरू प्राप्त गर्नुहुनेछ। यी सेटिङहरू ओभरराइड गरिएका छन् यदि तपाइँ अधिसूचनाहरू निष्क्रिय गर्नुहोस्',
- 'notification-from-subscription' => 'सदस्यता सदस्यता प्राप्त गर्नुहोस् बाट',
- 'notification-from-subscription-help' => 'तपाईले केवल प्रणाली, कर्मचारी र निम्न समूहबाट फोरम अधिसूचनाहरू प्राप्त गर्नुहुनेछ। यी सेटिङहरू ओभरराइड गरिएका छन् यदि तपाइँ अधिसूचनाहरू निष्क्रिय गर्नुहोस्',
- 'notification-from-torrent' => 'टोरेंट नोटिस प्राप्त गर्नुहोस्',
- 'notification-from-torrent-help' => 'तपाईले केवल प्रणाली, कर्मचारी र निम्न समूहबाट केवल टोरेंट सूचनाहरू प्राप्त गर्नुहुनेछ। यी सेटिङहरू ओभरराइड गरिएका छन् यदि तपाइँ अधिसूचनाहरू निष्क्रिय गर्नुहोस्',
- 'notification-from-mention' => 'प्राप्त गर्नुहोस् @ सूचना सूचनाहरूबाट',
- 'notification-from-mention-help' => 'तपाईले मात्र प्रणाली, कर्मचारी र निम्न समूहबाट @mention सूचनाहरू प्राप्त गर्नुहुनेछ। यी सेटिङहरू ओभरराइड गरिएका छन् यदि तपाइँ अधिसूचनाहरू निष्क्रिय गर्नुहोस्',
- 'notification-from-request' => 'बाट अनुरोध सूचनाहरू प्राप्त गर्नुहोस्',
- 'notification-from-request-help' => 'तपाईले केवल प्रणाली, कर्मचारी र निम्न समूहबाट अनुरोध अधिसूचनाहरू प्राप्त गर्नुहुनेछ। यी सेटिङहरू ओभरराइड गरिएका छन् यदि तपाइँ अधिसूचनाहरू निष्क्रिय गर्नुहोस्',
- 'notifications' => 'अधिसूचनाहरू',
- 'offline' => 'प्रयोगकर्ता अफलाइन छ!',
- 'online' => 'प्रयोगकर्ता अनलाइन छ!',
- 'options' => 'विकल्पहरू',
- 'other-help' => 'तपाईंको प्रोफाईलमा पहुँच गर्न अनुमति भएका समुहहरूसँग अन्य तथ्याङ्क र जानकारीको साझेदारीलाई नियन्त्रण गर्नुहोस्। यी सेटिङ्हरू ओभरराइड गरिएका छन् भने यदि तपाइँ कुनै पनि समूहले तपाइँको अन्य तथ्याङ्कहरू र सूचनाको पहुँच गर्न अनुमति दिनुहुन्न वा तपाईं निजी जानुहुन्छ भने',
- 'other-privacy' => 'अन्य सेटिङ्हरू',
- 'other-privacy-online' => 'प्रयोगकर्ताहरूले तपाईंलाई अनलाइन प्रयोगकर्ता ब्लकमा हेर्न अनुमति दिनुहोस्',
- 'passkey' => 'PID',
- 'passkey-warning' => 'PID तपाईंको पासवर्ड जस्तो छ, तपाईंले सुरक्षित राख्नुपर्छ!',
- 'pending-achievements' => 'पेन्डिङ उपलब्धिहरू',
- 'per-torrent' => 'प्रति Torrent',
- 'posts' => 'पोस्टहरू',
- 'posts-posted' => 'फोरम पोस्ट पोस्ट गरियो',
- 'privacy' => 'गोपनीयता',
- 'privacy-settings' => 'गोपनीयता सेटिङहरू',
- 'private-info' => 'निजी जानकारी',
- 'private-forum-profile' => 'ध्यान दिनुहोस्: यो सदस्य विषय र पोस्ट इतिहास निजी गर्न सेट गरिएको छ!',
- 'private-profile' => 'ध्यान दिनुहोस्: यो प्रोफाइल निजी गर्न सेट गरिएको छ!',
- 'profile' => 'प्रोफाइल',
- 'profile-desc' => 'प्रयोगकर्ता: उपयोगकर्ता प्रोफाइलमा दर्ता गरिएको: शीर्षक',
- 'profile-privacy' => 'प्रोफाइल सेटिङ्हरू',
- 'profile-privacy-torrent-count' => 'तपाईंको कुल डाउनलोड डाउनलोड, अपलोडहरू, बीउ र रेखाहरू साझेदारी गर्नुहोस्',
- 'profile-privacy-torrent-ratio' => 'तपाईंको कुल अपलोड / डाउनलोड डाटा रेकर्ड गरिएको अनुपात सहित',
- 'profile-privacy-torrent-seed' => 'तपाईंको कुल बिरुवा समय र औसत साझेदारी गर्नुहोस्',
- 'profile-privacy-title' => 'तपाईंको व्यक्तिगत शीर्षक जानकारी साझेदारी गर्नुहोस्',
- 'profile-privacy-about' => 'तपाईंको व्यक्तिगत जानकारी मेरो बारे जानकारी साझा गर्नुहोस्',
- 'profile-privacy-bon-extra' => 'तपाईंको BON तथ्याङ्कहरू साझेदारी गर्नुहोस्',
- 'profile-privacy-comment-extra' => 'तपाईंको टिप्पणी तथ्याङ्क साझेदारी गर्नुहोस्',
- 'profile-privacy-forum-extra' => 'तपाईंको फोरम तथ्याङ्कहरू साझेदारी गर्नुहोस्',
- 'profile-privacy-request-extra' => 'तपाईंको अनुरोध तथ्याङ्क साझेदारी गर्नुहोस्',
- 'profile-privacy-torrent-extra' => 'तपाईंको टोरेंट तथ्याङ्क साझेदारी गर्नुहोस्',
- 'profile-privacy-badge' => 'आफ्नो अर्जित ब्याज साझेदारी गर्नुहोस्',
- 'profile-privacy-achievement' => 'तपाईंका हालका उपलब्धिहरू साझेदारी गर्नुहोस्',
- 'profile-privacy-follower' => 'तपाईंका हालका अनुयायीहरू साझेदारी गर्नुहोस्',
- 'profile-privacy-warning' => 'तपाईंको H & R चेतावनी साझेदारी गर्नुहोस्',
- 'profile-privacy-help' => 'तपाईंको प्रोफाइलमा कुन तथ्याङ्कहरू र जानकारीका टुक्राहरू देखाउँछन्। यी सेटिङ्हरू ओभरराइड गरिएका छन् यदि तपाईले कुनै पनि समूहलाई तपाईंको प्रोफाईल पहुँच गर्न अनुमति दिनुहुन्न वा तपाईं निजी जानुहुन्छ',
- 'public-info' => 'सार्वजनिक जानकारी',
- 'recent-achievements' => 'हालका उपलब्धिहरु',
- 'recent-followers' => 'हालका अनुयायीहरू',
- 'registration-date' => 'दर्ता मिति',
- 'report' => 'रिपोर्ट गर्नुहोस्',
- 'request-help' => 'विशेष अनुरोध सम्बन्धित तथ्याङ्कहरू र जानकारी साझेदारी गर्ने समूहहरूलाई तपाईंको प्रोफाईलमा पहुँच गर्न अनुमति दिईयो। यी सेटिङ्हरू ओभरराइड गरिएका छन् यदि तपाइँ कुनै पनि समूहले तपाइँको अनुरोध गरिएको सम्बन्धित तथ्याङ्कहरू र सूचनालाई पहुँच गर्न अनुमति दिनुहुन्न वा तपाईं निजी जानुहुन्छ भने',
- 'request' => 'अनुरोध',
- 'requested' => 'अनुरोध गरियो',
- 'requests' => 'अनुरोधहरू',
- 'request-comments' => 'टिप्पणी गरिएका टिप्पणीहरू बनाइयो',
- 'request-notification' => 'सूचना सेटिङ अनुरोध गर्नुहोस्',
- 'request-notification-bounty' => 'एक सूचना प्राप्त गर्दा अनुरोध गरिएको टोकनलाई नयाँ इनाम प्राप्त हुन्छ',
- 'request-notification-comment' => 'एक अनुरोध प्राप्त गर्नुहोस् जब अनुरोध गरिएको टोकनले नयाँ टिप्पणी पाउँछ',
- 'request-notification-fill' => 'एक अनुरोध प्राप्त गर्नुहोस् जब अनुरोध गरिएको टोकन भरिएको हुन्छ',
- 'request-notification-fill-approve' => 'एक अनुरोध प्राप्त गर्नुहोस् जब अनुरोध गरिएको टोकन भरिएको अनुमोदित हुन्छ',
- 'request-notification-fill-reject' => 'एक अनुरोध प्राप्त गर्नुहोस् जब अनुरोध गरिएको टोकन भरिएको अस्वीकार हुन्छ',
- 'request-notification-claim' => 'अनुरोध गरिएको टोकन दावी गर्दा सूचना प्राप्त गर्नुहोस्',
- 'request-notification-unclaim' => 'एक अनुरोध प्राप्त गर्नुहोस् जब अनुरोध गरिएको टोकन दावी नगरिएको हुन्छ',
- 'request-notification-help' => 'अनुरोध गतिविधिहरूको बारेमा कुन अधिसूचनाहरू पठाइन्छ नियन्त्रण गर्नुहोस्। यी सेटिङ्हरू ओभरराइड गरिएका छन् यदि तपाइँ कुनै पनि समूह अनुरोध गतिविधिहरूको सम्बन्धमा अधिसूचनाहरू पठाउन अनुमति दिनुहुन्न वा यदि सूचनाहरू असक्षम पार्नुहुन्छ',
- 'request-privacy' => 'अनुरोध सेटिङहरू',
- 'request-privacy-requested' => 'तपाईले बनाएका अनुरोधहरूको सूची हेर्न प्रयोगकर्तालाई अनुमति दिनुहोस्',
- 'reset-passkey' => 'पास कुञ्जी रिसेट गर्नुहोस् (PID)',
- 'reset-passkey-help' => 'तपाईंले PID लाई पुन: सेट गरे पछि, तपाईँका सबै सक्रिय ट्राभरेन्ट पुन: अपलोड / पुन: अपलोड गर्नु पर्नेछ',
- 'reset-rss' => 'RSS कुञ्जी रिसेट गर्नुहोस् (RID)',
- 'reset-rss-help' => 'RID लाई पुन: सेट गरे पछि तपाईले सबै आफ्नो आरएसएस फीडहरू पुन: लोड गर्नुपर्नेछ',
- 'resurrections' => 'पुनरुत्थान',
- 'search' => 'प्रयोगकर्ता नाम द्वारा द्रुत खोज',
- 'security' => 'सुरक्षा',
- 'security-settings' => 'सुरक्षा सेटिङ्हरू',
- 'seedboxes' => 'बीजबक्सहरू',
- 'seeds' => 'बीज',
- 'send-invite' => 'निमन्त्रणा पठाउनुहोस्',
- 'sender' => 'प्रेषक',
- 'settings' => 'सेटिङ्हरू',
- 'show-passkey' => 'PID देखाउनुहोस्',
- 'staff-noted' => 'कर्मचारी नोटिस खाता',
- 'statistics' => 'तथ्याङ्कहरू',
- 'subscription-notification' => 'सदस्यता अधिसूचना सेटिङहरू',
- 'subscription-notification-forum' => 'जब सब्सक्राइब फोरम नयाँ विषय हुन्छ जब एक अधिसूचना प्राप्त गर्नुहोस्',
- 'subscription-notification-topic' => 'जब सब्सक्राइब विषय नयाँ पोष्ट हुन्छ जब एक अधिसूचना प्राप्त गर्नुहोस्',
- 'subscription-notification-help' => 'तपाईंको सदस्यताहरूको बारेमा कुन अधिसूचनाहरू पठाइन्छ नियन्त्रण गर्नुहोस्। यी सेटिङ्हरू ओभरराइड गरिएका छन् यदि तपाईले कुनै पनि समूहहरूलाई तपाइँको सदस्यता सम्बन्धी अधिसूचनाहरू पठाउन अनुमति दिनुहुन्न वा यदि तपाइँ अधिसूचनाहरू असक्षम गर्नुभयो भने',
- 'thanks-given' => 'धन्यवाद दिइयो',
- 'thanks-received' => 'धन्यवाद प्राप्त भयो',
- 'tips-given' => 'दिइएका सुझावहरू',
- 'tips-received' => 'सुझाव प्राप्त भयो',
- 'title' => 'शीर्षक',
- 'top-bankers' => 'शीर्ष बैंकरहरू',
- 'top-downloaders-data' => 'शीर्ष डाउनलोडकर्ताहरू (डाटा)',
- 'top-leechers' => 'शीर्ष लिभर्सहरू',
- 'top-leechers-count' => 'शीर्ष लिभर्स (गणना)',
- 'top-seeders' => 'शीर्ष सीजनहरू',
- 'top-seeders-count' => 'शीर्ष सीजनहरू (गणना)',
- 'top-seeding-size' => 'शीर्ष बीज (आकार)',
- 'top-seedtime' => 'शीर्ष बीज समय',
- 'top-uploaders-data' => 'शीर्ष अपलोडरहरू (डाटा)',
- 'top-uploaders-count' => 'शीर्ष अपलोडरहरू (गणना)',
- 'topics' => 'विषयहरू',
- 'topics-started' => 'फोरम विषयहरू सुरु भयो',
- 'torrent-comments' => 'टोरेंट टिप्पणी बनाइयो',
- 'torrent-help' => 'तपाईंको प्रोफाइलमा पहुँच गर्न अनुमति भएका समुहहरूको साथ विशिष्ट धार सम्बन्धित तथ्याङ्कहरू र जानकारीको साझेदारीलाई नियन्त्रण गर्नुहोस्। यी सेटिङ्हरू ओभरराइड गरिएका छन् भने यदि तपाइँ कुनै पनि समूहले तपाईंको टोक सम्बन्धित सम्बन्धी तथ्याङ्कहरू र जानकारी पहुँच गर्न अनुमति दिनुहुन्न वा तपाईं निजी जानुहुन्छ',
- 'torrent-notification' => 'टोरेन्ट सूचना सेटिङ',
- 'torrent-notification-comment' => 'एक अधिसूचना प्राप्त गर्नुहोस् जब अपलोड गरिएको ट्युरेन्ट नयाँ टिप्पणी हुन्छ',
- 'torrent-notification-thank' => 'एक अधिसूचना प्राप्त गर्नुहोस् जब अपलोड गरिएको टोकन नयाँ धन्यवाद हुन्छ',
- 'torrent-notification-tip' => 'एक अधिसूचना प्राप्त गर्नुहोस् जब अपलोड गरिएको टोकन नयाँ टिप हुन्छ',
- 'torrent-notification-help' => 'कुन गतिविधिहरू प्रविधि गतिविधिहरूको बारेमा पठाइन्छ। यी सेटिङ्हरू ओभरराइड गरिएका छन् यदि तपाइँ कुनै पनि समूहलाई सक्रिय क्रियाकलाप सम्बन्धी अधिसूचनाहरू पठाउने अनुमति छैन वा यदि तपाइँ अधिसूचनाहरू असक्षम पार्नुहुन्छ',
- 'torrent-privacy' => 'टोरेन्ट सेटिङहरू',
- 'torrent-privacy-download' => 'तपाइँले डाउनलोड गर्नुभएको ट्राटरहरूको सूची हेर्न प्रयोगकर्तालाई अनुमति दिनुहोस्',
- 'torrent-privacy-upload' => 'तपाइँले अपलोड गर्नुभएको ट्रारेन्टहरूको सूची हेर्न प्रयोगकर्तालाई अनुमति दिनुहोस्',
- 'torrent-privacy-peer' => 'प्रयोगकर्ताहरूलाई तपाईंलाई सहकर्मी साथीको तालिकामा हेर्न अनुमति दिनुहोस्',
- 'torrents' => 'Torrents',
- 'torrents-history' => 'Torrents History',
- 'total-download' => 'कुल डाउनलोड',
- 'total-downloads' => 'कुल डाउनलोडहरू',
- 'total-leeching' => 'कुल लिखित',
- 'total-seeding' => 'कुल बीजिंग',
- 'total-seedtime' => 'कुल बीज समय',
- 'total-upload' => 'कुल अपलोड',
- 'total-uploads' => 'कुल अपलोडहरू',
- 'unban' => 'अनबन प्रयोगकर्ता',
- 'unfollow' => 'Unfollow',
- 'unlocked' => 'अनलक गरियो',
- 'unlocked-achievements' => 'अनलक उपलब्धिहरू',
- 'unsatisfieds' => 'असुरक्षित',
- 'upload-bon' => 'BON स्टोरबाट अपलोड गरिएको अपलोड',
- 'upload-recorded' => 'अपलोड गरिएको अपलोड',
- 'upload-true' => 'साँचो अपलोड',
- 'uploads' => 'अपलोडहरू',
- 'uploads-table' => 'अपलोड तालिका',
- 'user' => 'प्रयोगकर्ता',
- 'user-id' => 'प्रयोगकर्ता ID',
- 'username-seedbox' => 'प्रयोगकर्तानाम साइडबक्स',
- 'visible-to-achievement' => 'उपलब्धिहरू हेर्न मिल्ने',
- 'visible-to-achievement-help' => 'तपाईंका उपलब्धिहरू केवल कर्मचारी र निम्न समूहमा दृश्यात्मक हुनेछन्। यदि तपाइँ जानुहुन्छ भने यी सेटिङहरू ओभरराइड गरिएका छन्',
- 'visible-to-follower' => 'यसका लागि',
- 'visible-to-follower-help' => 'तपाइँका अनुयायीहरू केवल स्टाफ र निम्न समूहहरूमा दृश्यात्मक हुनेछन्। यदि तपाइँ जानुहुन्छ भने यी सेटिङहरू ओभरराइड गरिएका छन्',
- 'visible-to-forum' => 'फोरम जानकारी हेर्न मिल्ने',
- 'visible-to-forum-help' => 'तपाईंको फोरम जानकारी केवल स्टाफ र निम्न समूहमा देखिनेछ। यदि तपाइँ जानुहुन्छ भने यी सेटिङहरू ओभरराइड गरिएका छन्',
- 'visible-to-other' => 'अन्य देख्न सकिने',
- 'visible-to-other-help' => 'तपाईंको खाता सम्बन्धी अन्य जानकारी केवल स्टाफ र निम्न समूहका लागि दृश्यात्मक हुनेछ। यी सेटिङहरू ओभरराइड गरिएका छन् यदि तपाईं निजी जानुहोस् वा यदि लुकेको छ भने',
- 'visible-to-profile' => 'प्रोफाइल हेर्न मिल्ने',
- 'visible-to-profile-help' => 'तपाईंको प्रोफाईल केवल स्टाफ र निम्न समूहका लागि दृश्यात्मक हुनेछ। यदि तपाइँ जानुहुन्छ भने यी सेटिङहरू ओभरराइड गरिएका छन्',
- 'visible-to-request' => 'अनुरोध जानकारी हेर्न मिल्दैन',
- 'visible-to-request-help' => 'तपाईंको अनुरोध जानकारी मात्र स्टाफ र निम्न समूहहरूमा दृश्यात्मक हुनेछ। यदि तपाइँ जानुहुन्छ भने यी सेटिङहरू ओभरराइड गरिएका छन्',
- 'visible-to-torrent' => 'टोरेंट जानकारी हेर्न मिल्दैन',
- 'visible-to-torrent-help' => 'तपाईंको धार जानकारी केवल स्टाफ र निम्न समूहमा दृश्यात्मक हुनेछ। यी सेटिङहरू ओभरराइड गरिएका छन् यदि तपाईं निजी जानुहोस् वा यदि लुकेको छ भने',
- 'warned-on' => 'चेतावनी दिईयो',
- 'warning' => 'चेतावनी',
- 'warning-log' => 'चेतावनी लग',
- 'wishlist' => 'इच्छा सुची',
+ 'mention-notification-forum-post' => 'जब तपाईं एक पोष्ट पोष्टमा @mentioned हुनुहुन्छ एक अधिसूचना प्राप्त गर्नुहोस्',
+ 'mention-notification-help' => 'जब प्रयोगकर्ताले तपाईलाई @ तान्ने बेलामा कुन अधिसूचनाहरू पठाइन्छ लाई नियन्त्रण गर्नुहोस्। यी सेटिङ्हरू ओभरराइड गरिएका छन् यदि तपाईले कुनै पनि समूहहरूलाई सूचनाहरू पठाउन अनुमति दिनुहुन्न भने प्रयोगकर्ताले तपाईलाई निवेदन गर्नुहुन्छ वा यदि तपाइँ अधिसूचनाहरू असक्षम गर्नुभयो भने',
+ 'moderated-by' => 'द्वारा परिमार्जित: मोड मा',
+ 'my-bonus-points' => 'मेरो बोनस पोइन्टहरू',
+ 'my-bookmarks' => 'मेरो बुकमार्कहरू',
+ 'my-fl-tokens' => 'मेरो FL टोकन',
+ 'my-general-settings' => 'मेरो सामान्य सेटिङ्हरू',
+ 'my-notification' => 'मेरो अधिसूचना',
+ 'my-notification-settings' => 'मेरो सूचना सेटिङ',
+ 'my-privacy' => 'मेरो गोपनीयता',
+ 'my-privacy-settings' => 'मेरो गोपनीयता सेटिङ',
+ 'my-profile' => 'मेरो प्रोफाइल',
+ 'my-requested' => 'मेरो अनुरोध',
+ 'my-security' => 'मेरो सुरक्षा',
+ 'my-security-settings' => 'मेरो सुरक्षा सेटिङ्हरू',
+ 'my-seedboxes' => 'मेरो बीजबक्सहरू',
+ 'my-settings' => 'मेरो सेटिङ्हरू',
+ 'my-wishlist' => 'मेरो इच्छा सूची',
+ 'no-logs' => 'यस प्रयोगकर्ताको लागि डेटाबेसमा कुनै निमन्त्रणा लगहरू छैनन्!',
+ 'no-seedboxes' => 'कुनै बीजबक्सहरू र्याङ्किङ्ग छैन',
+ 'not-authorized' => 'तपाईं यो पेज हेर्न अधिकार छैन। यो सदस्य निन्जा जस्तो लुकेको छ!',
+ 'note' => 'नोट',
+ 'notification' => 'अधिसूचना',
+ 'notification-settings' => 'अधिसूचना सेटिङहरू',
+ 'notification-from-account' => 'खाता सूचनाहरू प्राप्त गर्नुहोस्',
+ 'notification-from-account-help' => 'तपाईले केवल प्रणाली, कर्मचारी र निम्न समूहबाट खाता अधिसूचना प्राप्त गर्नुहुनेछ। यी सेटिङहरू ओभरराइड गरिएका छन् यदि तपाइँ अधिसूचनाहरू निष्क्रिय गर्नुहोस्',
+ 'notification-from-bon' => 'BON सूचनाहरू प्राप्त गर्नुहोस्',
+ 'notification-from-bon-help' => 'तपाईले केवल प्रणाली, कर्मचारी र निम्न समूहबाट BON सूचनाहरू प्राप्त गर्नुहुनेछ। यी सेटिङहरू ओभरराइड गरिएका छन् यदि तपाइँ अधिसूचनाहरू निष्क्रिय गर्नुहोस्',
+ 'notification-from-following' => 'पछ्याइएको प्रयोगकर्ता अधिसूचना प्राप्त गर्नुहोस्',
+ 'notification-from-following-help' => 'तपाईले केवल निम्न समूहहरूको प्रयोगकर्ता सूचनाहरू पालन गर्नुहुनेछ। यी सेटिङहरू ओभरराइड गरिएका छन् यदि तपाइँ अधिसूचनाहरू निष्क्रिय गर्नुहोस्',
+ 'notification-from-forum' => 'फोरम अधिसूचनाहरू प्राप्त गर्नुहोस्',
+ 'notification-from-forum-help' => 'तपाईले केवल प्रणाली, कर्मचारी र निम्न समूहबाट फोरम अधिसूचनाहरू प्राप्त गर्नुहुनेछ। यी सेटिङहरू ओभरराइड गरिएका छन् यदि तपाइँ अधिसूचनाहरू निष्क्रिय गर्नुहोस्',
+ 'notification-from-subscription' => 'सदस्यता सदस्यता प्राप्त गर्नुहोस् बाट',
+ 'notification-from-subscription-help' => 'तपाईले केवल प्रणाली, कर्मचारी र निम्न समूहबाट फोरम अधिसूचनाहरू प्राप्त गर्नुहुनेछ। यी सेटिङहरू ओभरराइड गरिएका छन् यदि तपाइँ अधिसूचनाहरू निष्क्रिय गर्नुहोस्',
+ 'notification-from-torrent' => 'टोरेंट नोटिस प्राप्त गर्नुहोस्',
+ 'notification-from-torrent-help' => 'तपाईले केवल प्रणाली, कर्मचारी र निम्न समूहबाट केवल टोरेंट सूचनाहरू प्राप्त गर्नुहुनेछ। यी सेटिङहरू ओभरराइड गरिएका छन् यदि तपाइँ अधिसूचनाहरू निष्क्रिय गर्नुहोस्',
+ 'notification-from-mention' => 'प्राप्त गर्नुहोस् @ सूचना सूचनाहरूबाट',
+ 'notification-from-mention-help' => 'तपाईले मात्र प्रणाली, कर्मचारी र निम्न समूहबाट @mention सूचनाहरू प्राप्त गर्नुहुनेछ। यी सेटिङहरू ओभरराइड गरिएका छन् यदि तपाइँ अधिसूचनाहरू निष्क्रिय गर्नुहोस्',
+ 'notification-from-request' => 'बाट अनुरोध सूचनाहरू प्राप्त गर्नुहोस्',
+ 'notification-from-request-help' => 'तपाईले केवल प्रणाली, कर्मचारी र निम्न समूहबाट अनुरोध अधिसूचनाहरू प्राप्त गर्नुहुनेछ। यी सेटिङहरू ओभरराइड गरिएका छन् यदि तपाइँ अधिसूचनाहरू निष्क्रिय गर्नुहोस्',
+ 'notifications' => 'अधिसूचनाहरू',
+ 'offline' => 'प्रयोगकर्ता अफलाइन छ!',
+ 'online' => 'प्रयोगकर्ता अनलाइन छ!',
+ 'options' => 'विकल्पहरू',
+ 'other-help' => 'तपाईंको प्रोफाईलमा पहुँच गर्न अनुमति भएका समुहहरूसँग अन्य तथ्याङ्क र जानकारीको साझेदारीलाई नियन्त्रण गर्नुहोस्। यी सेटिङ्हरू ओभरराइड गरिएका छन् भने यदि तपाइँ कुनै पनि समूहले तपाइँको अन्य तथ्याङ्कहरू र सूचनाको पहुँच गर्न अनुमति दिनुहुन्न वा तपाईं निजी जानुहुन्छ भने',
+ 'other-privacy' => 'अन्य सेटिङ्हरू',
+ 'other-privacy-online' => 'प्रयोगकर्ताहरूले तपाईंलाई अनलाइन प्रयोगकर्ता ब्लकमा हेर्न अनुमति दिनुहोस्',
+ 'passkey' => 'PID',
+ 'passkey-warning' => 'PID तपाईंको पासवर्ड जस्तो छ, तपाईंले सुरक्षित राख्नुपर्छ!',
+ 'pending-achievements' => 'पेन्डिङ उपलब्धिहरू',
+ 'per-torrent' => 'प्रति Torrent',
+ 'posts' => 'पोस्टहरू',
+ 'posts-posted' => 'फोरम पोस्ट पोस्ट गरियो',
+ 'privacy' => 'गोपनीयता',
+ 'privacy-settings' => 'गोपनीयता सेटिङहरू',
+ 'private-info' => 'निजी जानकारी',
+ 'private-forum-profile' => 'ध्यान दिनुहोस्: यो सदस्य विषय र पोस्ट इतिहास निजी गर्न सेट गरिएको छ!',
+ 'private-profile' => 'ध्यान दिनुहोस्: यो प्रोफाइल निजी गर्न सेट गरिएको छ!',
+ 'profile' => 'प्रोफाइल',
+ 'profile-desc' => 'प्रयोगकर्ता: उपयोगकर्ता प्रोफाइलमा दर्ता गरिएको: शीर्षक',
+ 'profile-privacy' => 'प्रोफाइल सेटिङ्हरू',
+ 'profile-privacy-torrent-count' => 'तपाईंको कुल डाउनलोड डाउनलोड, अपलोडहरू, बीउ र रेखाहरू साझेदारी गर्नुहोस्',
+ 'profile-privacy-torrent-ratio' => 'तपाईंको कुल अपलोड / डाउनलोड डाटा रेकर्ड गरिएको अनुपात सहित',
+ 'profile-privacy-torrent-seed' => 'तपाईंको कुल बिरुवा समय र औसत साझेदारी गर्नुहोस्',
+ 'profile-privacy-title' => 'तपाईंको व्यक्तिगत शीर्षक जानकारी साझेदारी गर्नुहोस्',
+ 'profile-privacy-about' => 'तपाईंको व्यक्तिगत जानकारी मेरो बारे जानकारी साझा गर्नुहोस्',
+ 'profile-privacy-bon-extra' => 'तपाईंको BON तथ्याङ्कहरू साझेदारी गर्नुहोस्',
+ 'profile-privacy-comment-extra' => 'तपाईंको टिप्पणी तथ्याङ्क साझेदारी गर्नुहोस्',
+ 'profile-privacy-forum-extra' => 'तपाईंको फोरम तथ्याङ्कहरू साझेदारी गर्नुहोस्',
+ 'profile-privacy-request-extra' => 'तपाईंको अनुरोध तथ्याङ्क साझेदारी गर्नुहोस्',
+ 'profile-privacy-torrent-extra' => 'तपाईंको टोरेंट तथ्याङ्क साझेदारी गर्नुहोस्',
+ 'profile-privacy-badge' => 'आफ्नो अर्जित ब्याज साझेदारी गर्नुहोस्',
+ 'profile-privacy-achievement' => 'तपाईंका हालका उपलब्धिहरू साझेदारी गर्नुहोस्',
+ 'profile-privacy-follower' => 'तपाईंका हालका अनुयायीहरू साझेदारी गर्नुहोस्',
+ 'profile-privacy-warning' => 'तपाईंको H & R चेतावनी साझेदारी गर्नुहोस्',
+ 'profile-privacy-help' => 'तपाईंको प्रोफाइलमा कुन तथ्याङ्कहरू र जानकारीका टुक्राहरू देखाउँछन्। यी सेटिङ्हरू ओभरराइड गरिएका छन् यदि तपाईले कुनै पनि समूहलाई तपाईंको प्रोफाईल पहुँच गर्न अनुमति दिनुहुन्न वा तपाईं निजी जानुहुन्छ',
+ 'public-info' => 'सार्वजनिक जानकारी',
+ 'recent-achievements' => 'हालका उपलब्धिहरु',
+ 'recent-followers' => 'हालका अनुयायीहरू',
+ 'registration-date' => 'दर्ता मिति',
+ 'report' => 'रिपोर्ट गर्नुहोस्',
+ 'request-help' => 'विशेष अनुरोध सम्बन्धित तथ्याङ्कहरू र जानकारी साझेदारी गर्ने समूहहरूलाई तपाईंको प्रोफाईलमा पहुँच गर्न अनुमति दिईयो। यी सेटिङ्हरू ओभरराइड गरिएका छन् यदि तपाइँ कुनै पनि समूहले तपाइँको अनुरोध गरिएको सम्बन्धित तथ्याङ्कहरू र सूचनालाई पहुँच गर्न अनुमति दिनुहुन्न वा तपाईं निजी जानुहुन्छ भने',
+ 'request' => 'अनुरोध',
+ 'requested' => 'अनुरोध गरियो',
+ 'requests' => 'अनुरोधहरू',
+ 'request-comments' => 'टिप्पणी गरिएका टिप्पणीहरू बनाइयो',
+ 'request-notification' => 'सूचना सेटिङ अनुरोध गर्नुहोस्',
+ 'request-notification-bounty' => 'एक सूचना प्राप्त गर्दा अनुरोध गरिएको टोकनलाई नयाँ इनाम प्राप्त हुन्छ',
+ 'request-notification-comment' => 'एक अनुरोध प्राप्त गर्नुहोस् जब अनुरोध गरिएको टोकनले नयाँ टिप्पणी पाउँछ',
+ 'request-notification-fill' => 'एक अनुरोध प्राप्त गर्नुहोस् जब अनुरोध गरिएको टोकन भरिएको हुन्छ',
+ 'request-notification-fill-approve' => 'एक अनुरोध प्राप्त गर्नुहोस् जब अनुरोध गरिएको टोकन भरिएको अनुमोदित हुन्छ',
+ 'request-notification-fill-reject' => 'एक अनुरोध प्राप्त गर्नुहोस् जब अनुरोध गरिएको टोकन भरिएको अस्वीकार हुन्छ',
+ 'request-notification-claim' => 'अनुरोध गरिएको टोकन दावी गर्दा सूचना प्राप्त गर्नुहोस्',
+ 'request-notification-unclaim' => 'एक अनुरोध प्राप्त गर्नुहोस् जब अनुरोध गरिएको टोकन दावी नगरिएको हुन्छ',
+ 'request-notification-help' => 'अनुरोध गतिविधिहरूको बारेमा कुन अधिसूचनाहरू पठाइन्छ नियन्त्रण गर्नुहोस्। यी सेटिङ्हरू ओभरराइड गरिएका छन् यदि तपाइँ कुनै पनि समूह अनुरोध गतिविधिहरूको सम्बन्धमा अधिसूचनाहरू पठाउन अनुमति दिनुहुन्न वा यदि सूचनाहरू असक्षम पार्नुहुन्छ',
+ 'request-privacy' => 'अनुरोध सेटिङहरू',
+ 'request-privacy-requested' => 'तपाईले बनाएका अनुरोधहरूको सूची हेर्न प्रयोगकर्तालाई अनुमति दिनुहोस्',
+ 'reset-passkey' => 'पास कुञ्जी रिसेट गर्नुहोस् (PID)',
+ 'reset-passkey-help' => 'तपाईंले PID लाई पुन: सेट गरे पछि, तपाईँका सबै सक्रिय ट्राभरेन्ट पुन: अपलोड / पुन: अपलोड गर्नु पर्नेछ',
+ 'reset-rss' => 'RSS कुञ्जी रिसेट गर्नुहोस् (RID)',
+ 'reset-rss-help' => 'RID लाई पुन: सेट गरे पछि तपाईले सबै आफ्नो आरएसएस फीडहरू पुन: लोड गर्नुपर्नेछ',
+ 'resurrections' => 'पुनरुत्थान',
+ 'search' => 'प्रयोगकर्ता नाम द्वारा द्रुत खोज',
+ 'security' => 'सुरक्षा',
+ 'security-settings' => 'सुरक्षा सेटिङ्हरू',
+ 'seedboxes' => 'बीजबक्सहरू',
+ 'seeds' => 'बीज',
+ 'send-invite' => 'निमन्त्रणा पठाउनुहोस्',
+ 'sender' => 'प्रेषक',
+ 'settings' => 'सेटिङ्हरू',
+ 'show-passkey' => 'PID देखाउनुहोस्',
+ 'staff-noted' => 'कर्मचारी नोटिस खाता',
+ 'statistics' => 'तथ्याङ्कहरू',
+ 'subscription-notification' => 'सदस्यता अधिसूचना सेटिङहरू',
+ 'subscription-notification-forum' => 'जब सब्सक्राइब फोरम नयाँ विषय हुन्छ जब एक अधिसूचना प्राप्त गर्नुहोस्',
+ 'subscription-notification-topic' => 'जब सब्सक्राइब विषय नयाँ पोष्ट हुन्छ जब एक अधिसूचना प्राप्त गर्नुहोस्',
+ 'subscription-notification-help' => 'तपाईंको सदस्यताहरूको बारेमा कुन अधिसूचनाहरू पठाइन्छ नियन्त्रण गर्नुहोस्। यी सेटिङ्हरू ओभरराइड गरिएका छन् यदि तपाईले कुनै पनि समूहहरूलाई तपाइँको सदस्यता सम्बन्धी अधिसूचनाहरू पठाउन अनुमति दिनुहुन्न वा यदि तपाइँ अधिसूचनाहरू असक्षम गर्नुभयो भने',
+ 'thanks-given' => 'धन्यवाद दिइयो',
+ 'thanks-received' => 'धन्यवाद प्राप्त भयो',
+ 'tips-given' => 'दिइएका सुझावहरू',
+ 'tips-received' => 'सुझाव प्राप्त भयो',
+ 'title' => 'शीर्षक',
+ 'top-bankers' => 'शीर्ष बैंकरहरू',
+ 'top-downloaders-data' => 'शीर्ष डाउनलोडकर्ताहरू (डाटा)',
+ 'top-leechers' => 'शीर्ष लिभर्सहरू',
+ 'top-leechers-count' => 'शीर्ष लिभर्स (गणना)',
+ 'top-seeders' => 'शीर्ष सीजनहरू',
+ 'top-seeders-count' => 'शीर्ष सीजनहरू (गणना)',
+ 'top-seeding-size' => 'शीर्ष बीज (आकार)',
+ 'top-seedtime' => 'शीर्ष बीज समय',
+ 'top-uploaders-data' => 'शीर्ष अपलोडरहरू (डाटा)',
+ 'top-uploaders-count' => 'शीर्ष अपलोडरहरू (गणना)',
+ 'topics' => 'विषयहरू',
+ 'topics-started' => 'फोरम विषयहरू सुरु भयो',
+ 'torrent-comments' => 'टोरेंट टिप्पणी बनाइयो',
+ 'torrent-help' => 'तपाईंको प्रोफाइलमा पहुँच गर्न अनुमति भएका समुहहरूको साथ विशिष्ट धार सम्बन्धित तथ्याङ्कहरू र जानकारीको साझेदारीलाई नियन्त्रण गर्नुहोस्। यी सेटिङ्हरू ओभरराइड गरिएका छन् भने यदि तपाइँ कुनै पनि समूहले तपाईंको टोक सम्बन्धित सम्बन्धी तथ्याङ्कहरू र जानकारी पहुँच गर्न अनुमति दिनुहुन्न वा तपाईं निजी जानुहुन्छ',
+ 'torrent-notification' => 'टोरेन्ट सूचना सेटिङ',
+ 'torrent-notification-comment' => 'एक अधिसूचना प्राप्त गर्नुहोस् जब अपलोड गरिएको ट्युरेन्ट नयाँ टिप्पणी हुन्छ',
+ 'torrent-notification-thank' => 'एक अधिसूचना प्राप्त गर्नुहोस् जब अपलोड गरिएको टोकन नयाँ धन्यवाद हुन्छ',
+ 'torrent-notification-tip' => 'एक अधिसूचना प्राप्त गर्नुहोस् जब अपलोड गरिएको टोकन नयाँ टिप हुन्छ',
+ 'torrent-notification-help' => 'कुन गतिविधिहरू प्रविधि गतिविधिहरूको बारेमा पठाइन्छ। यी सेटिङ्हरू ओभरराइड गरिएका छन् यदि तपाइँ कुनै पनि समूहलाई सक्रिय क्रियाकलाप सम्बन्धी अधिसूचनाहरू पठाउने अनुमति छैन वा यदि तपाइँ अधिसूचनाहरू असक्षम पार्नुहुन्छ',
+ 'torrent-privacy' => 'टोरेन्ट सेटिङहरू',
+ 'torrent-privacy-download' => 'तपाइँले डाउनलोड गर्नुभएको ट्राटरहरूको सूची हेर्न प्रयोगकर्तालाई अनुमति दिनुहोस्',
+ 'torrent-privacy-upload' => 'तपाइँले अपलोड गर्नुभएको ट्रारेन्टहरूको सूची हेर्न प्रयोगकर्तालाई अनुमति दिनुहोस्',
+ 'torrent-privacy-peer' => 'प्रयोगकर्ताहरूलाई तपाईंलाई सहकर्मी साथीको तालिकामा हेर्न अनुमति दिनुहोस्',
+ 'torrents' => 'Torrents',
+ 'torrents-history' => 'Torrents History',
+ 'total-download' => 'कुल डाउनलोड',
+ 'total-downloads' => 'कुल डाउनलोडहरू',
+ 'total-leeching' => 'कुल लिखित',
+ 'total-seeding' => 'कुल बीजिंग',
+ 'total-seedtime' => 'कुल बीज समय',
+ 'total-upload' => 'कुल अपलोड',
+ 'total-uploads' => 'कुल अपलोडहरू',
+ 'unban' => 'अनबन प्रयोगकर्ता',
+ 'unfollow' => 'Unfollow',
+ 'unlocked' => 'अनलक गरियो',
+ 'unlocked-achievements' => 'अनलक उपलब्धिहरू',
+ 'unsatisfieds' => 'असुरक्षित',
+ 'upload-bon' => 'BON स्टोरबाट अपलोड गरिएको अपलोड',
+ 'upload-recorded' => 'अपलोड गरिएको अपलोड',
+ 'upload-true' => 'साँचो अपलोड',
+ 'uploads' => 'अपलोडहरू',
+ 'uploads-table' => 'अपलोड तालिका',
+ 'user' => 'प्रयोगकर्ता',
+ 'user-id' => 'प्रयोगकर्ता ID',
+ 'username-seedbox' => 'प्रयोगकर्तानाम साइडबक्स',
+ 'visible-to-achievement' => 'उपलब्धिहरू हेर्न मिल्ने',
+ 'visible-to-achievement-help' => 'तपाईंका उपलब्धिहरू केवल कर्मचारी र निम्न समूहमा दृश्यात्मक हुनेछन्। यदि तपाइँ जानुहुन्छ भने यी सेटिङहरू ओभरराइड गरिएका छन्',
+ 'visible-to-follower' => 'यसका लागि',
+ 'visible-to-follower-help' => 'तपाइँका अनुयायीहरू केवल स्टाफ र निम्न समूहहरूमा दृश्यात्मक हुनेछन्। यदि तपाइँ जानुहुन्छ भने यी सेटिङहरू ओभरराइड गरिएका छन्',
+ 'visible-to-forum' => 'फोरम जानकारी हेर्न मिल्ने',
+ 'visible-to-forum-help' => 'तपाईंको फोरम जानकारी केवल स्टाफ र निम्न समूहमा देखिनेछ। यदि तपाइँ जानुहुन्छ भने यी सेटिङहरू ओभरराइड गरिएका छन्',
+ 'visible-to-other' => 'अन्य देख्न सकिने',
+ 'visible-to-other-help' => 'तपाईंको खाता सम्बन्धी अन्य जानकारी केवल स्टाफ र निम्न समूहका लागि दृश्यात्मक हुनेछ। यी सेटिङहरू ओभरराइड गरिएका छन् यदि तपाईं निजी जानुहोस् वा यदि लुकेको छ भने',
+ 'visible-to-profile' => 'प्रोफाइल हेर्न मिल्ने',
+ 'visible-to-profile-help' => 'तपाईंको प्रोफाईल केवल स्टाफ र निम्न समूहका लागि दृश्यात्मक हुनेछ। यदि तपाइँ जानुहुन्छ भने यी सेटिङहरू ओभरराइड गरिएका छन्',
+ 'visible-to-request' => 'अनुरोध जानकारी हेर्न मिल्दैन',
+ 'visible-to-request-help' => 'तपाईंको अनुरोध जानकारी मात्र स्टाफ र निम्न समूहहरूमा दृश्यात्मक हुनेछ। यदि तपाइँ जानुहुन्छ भने यी सेटिङहरू ओभरराइड गरिएका छन्',
+ 'visible-to-torrent' => 'टोरेंट जानकारी हेर्न मिल्दैन',
+ 'visible-to-torrent-help' => 'तपाईंको धार जानकारी केवल स्टाफ र निम्न समूहमा दृश्यात्मक हुनेछ। यी सेटिङहरू ओभरराइड गरिएका छन् यदि तपाईं निजी जानुहोस् वा यदि लुकेको छ भने',
+ 'warned-on' => 'चेतावनी दिईयो',
+ 'warning' => 'चेतावनी',
+ 'warning-log' => 'चेतावनी लग',
+ 'wishlist' => 'इच्छा सुची',
];
diff --git a/lang/ne/validation.php b/lang/ne/validation.php
index a7fa8d327..842584318 100644
--- a/lang/ne/validation.php
+++ b/lang/ne/validation.php
@@ -23,108 +23,108 @@ return [
|
*/
- 'accepted' => ':attribute स्वीकार गरिएको हुनुपर्छ।',
- 'active_url' => ':attribute URL अमान्य छ।',
- 'after' => ':attribute को मिति :date भन्दा पछि हुनुपर्छ।',
- 'after_or_equal' => 'The :attribute must be a date after or equal to :date.',
- 'alpha' => ':attribute मा अक्षरहरु मात्र हुनसक्छ।',
- 'alpha_dash' => ':attribute मा अक्षर, संख्या र ड्यासहरू मात्र हुनसक्छ।',
- 'alpha_num' => ':attribute मा अक्षर र संख्याहरू मात्र हुनसक्छ।',
- 'array' => ':attribute array हुनुपर्छ।',
- 'before' => ':attribute को मिति :date भन्दा अघि हुनुपर्छ।',
- 'before_or_equal' => 'The :attribute must be a date before or equal to :date.',
- 'between' => [
+ 'accepted' => ':attribute स्वीकार गरिएको हुनुपर्छ।',
+ 'active_url' => ':attribute URL अमान्य छ।',
+ 'after' => ':attribute को मिति :date भन्दा पछि हुनुपर्छ।',
+ 'after_or_equal' => 'The :attribute must be a date after or equal to :date.',
+ 'alpha' => ':attribute मा अक्षरहरु मात्र हुनसक्छ।',
+ 'alpha_dash' => ':attribute मा अक्षर, संख्या र ड्यासहरू मात्र हुनसक्छ।',
+ 'alpha_num' => ':attribute मा अक्षर र संख्याहरू मात्र हुनसक्छ।',
+ 'array' => ':attribute array हुनुपर्छ।',
+ 'before' => ':attribute को मिति :date भन्दा अघि हुनुपर्छ।',
+ 'before_or_equal' => 'The :attribute must be a date before or equal to :date.',
+ 'between' => [
'numeric' => ':attribute :min र :max को बिचमा हुनुपर्छ।',
- 'file' => ':attribute :min र :max kilobytes को बिचमा हुनुपर्छ।',
- 'string' => ':attribute :min र :max वर्णको बिचमा हुनुपर्छ।',
- 'array' => ':attribute मा आइटमको संख्या :min र :max को बिचमा हुनुपर्छ।',
+ 'file' => ':attribute :min र :max kilobytes को बिचमा हुनुपर्छ।',
+ 'string' => ':attribute :min र :max वर्णको बिचमा हुनुपर्छ।',
+ 'array' => ':attribute मा आइटमको संख्या :min र :max को बिचमा हुनुपर्छ।',
],
- 'boolean' => ':attribute ठिक अथवा बेठिक हुनुपर्छ।',
- 'confirmed' => ':attribute दाेहाेर्याइएकाे मिलेन।',
- 'date' => ':attribute को मिति मिलेन।',
- 'date_equals' => 'The :attribute must be a date equal to :date.',
- 'date_format' => ':attribute को ढाँचा :format जस्तो हुनुपर्छ।',
- 'different' => ':attribute र :other फरक हुनुपर्छ।',
- 'digits' => ':attribute :digits अंकको हुनुपर्छ।',
- 'digits_between' => ':attribute :min देखि :max अंकको हुनुपर्छ।',
- 'dimensions' => 'The :attribute has invalid image dimensions.',
- 'distinct' => 'The :attribute field has a duplicate value.',
- 'email' => ':attribute को इमेल ठेगाना मिलेन।',
- 'exists' => 'छानिएको :attribute अमान्य छ।',
- 'file' => 'The :attribute must be a file.',
- 'filled' => ':attribute दिइएको हुनुपर्छ।',
- 'gt' => [
+ 'boolean' => ':attribute ठिक अथवा बेठिक हुनुपर्छ।',
+ 'confirmed' => ':attribute दाेहाेर्याइएकाे मिलेन।',
+ 'date' => ':attribute को मिति मिलेन।',
+ 'date_equals' => 'The :attribute must be a date equal to :date.',
+ 'date_format' => ':attribute को ढाँचा :format जस्तो हुनुपर्छ।',
+ 'different' => ':attribute र :other फरक हुनुपर्छ।',
+ 'digits' => ':attribute :digits अंकको हुनुपर्छ।',
+ 'digits_between' => ':attribute :min देखि :max अंकको हुनुपर्छ।',
+ 'dimensions' => 'The :attribute has invalid image dimensions.',
+ 'distinct' => 'The :attribute field has a duplicate value.',
+ 'email' => ':attribute को इमेल ठेगाना मिलेन।',
+ 'exists' => 'छानिएको :attribute अमान्य छ।',
+ 'file' => 'The :attribute must be a file.',
+ 'filled' => ':attribute दिइएको हुनुपर्छ।',
+ 'gt' => [
'numeric' => 'The :attribute must be greater than :value.',
- 'file' => 'The :attribute must be greater than :value kilobytes.',
- 'string' => 'The :attribute must be greater than :value characters.',
- 'array' => 'The :attribute must have more than :value items.',
+ 'file' => 'The :attribute must be greater than :value kilobytes.',
+ 'string' => 'The :attribute must be greater than :value characters.',
+ 'array' => 'The :attribute must have more than :value items.',
],
- 'gte' => [
+ 'gte' => [
'numeric' => 'The :attribute must be greater than or equal :value.',
- 'file' => 'The :attribute must be greater than or equal :value kilobytes.',
- 'string' => 'The :attribute must be greater than or equal :value characters.',
- 'array' => 'The :attribute must have :value items or more.',
+ 'file' => 'The :attribute must be greater than or equal :value kilobytes.',
+ 'string' => 'The :attribute must be greater than or equal :value characters.',
+ 'array' => 'The :attribute must have :value items or more.',
],
- 'image' => ':attribute मा फोटो हुनुपर्छ।',
- 'in' => 'छानिएको :attribute अमान्य छ।',
- 'in_array' => 'The :attribute field does not exist in :other.',
- 'integer' => ':attribute पूर्ण संख्या हुनुपर्छ।',
- 'ip' => ':attribute मा दिइएको मान्य IP ठेगाना हुनुपर्छ।',
- 'ipv4' => 'The :attribute must be a valid IPv4 address.',
- 'ipv6' => 'The :attribute must be a valid IPv6 address.',
- 'json' => ':attribute मा दिइएको मान्य JSON string हुनुपर्छ।',
- 'lt' => [
+ 'image' => ':attribute मा फोटो हुनुपर्छ।',
+ 'in' => 'छानिएको :attribute अमान्य छ।',
+ 'in_array' => 'The :attribute field does not exist in :other.',
+ 'integer' => ':attribute पूर्ण संख्या हुनुपर्छ।',
+ 'ip' => ':attribute मा दिइएको मान्य IP ठेगाना हुनुपर्छ।',
+ 'ipv4' => 'The :attribute must be a valid IPv4 address.',
+ 'ipv6' => 'The :attribute must be a valid IPv6 address.',
+ 'json' => ':attribute मा दिइएको मान्य JSON string हुनुपर्छ।',
+ 'lt' => [
'numeric' => 'The :attribute must be less than :value.',
- 'file' => 'The :attribute must be less than :value kilobytes.',
- 'string' => 'The :attribute must be less than :value characters.',
- 'array' => 'The :attribute must have less than :value items.',
+ 'file' => 'The :attribute must be less than :value kilobytes.',
+ 'string' => 'The :attribute must be less than :value characters.',
+ 'array' => 'The :attribute must have less than :value items.',
],
- 'lte' => [
+ 'lte' => [
'numeric' => 'The :attribute must be less than or equal :value.',
- 'file' => 'The :attribute must be less than or equal :value kilobytes.',
- 'string' => 'The :attribute must be less than or equal :value characters.',
- 'array' => 'The :attribute must not have more than :value items.',
+ 'file' => 'The :attribute must be less than or equal :value kilobytes.',
+ 'string' => 'The :attribute must be less than or equal :value characters.',
+ 'array' => 'The :attribute must not have more than :value items.',
],
- 'max' => [
+ 'max' => [
'numeric' => ':attribute :max भन्दा बढी हुनुहुदैन।',
- 'file' => ':attribute :max kilobytes भन्दा बढी हुनुहुदैन।',
- 'string' => ':attribute :max वर्ण भन्दा बढी हुनुहुदैन।',
- 'array' => ':attribute मा :max भन्दा बढी आइटम हुनुहुदैन।',
+ 'file' => ':attribute :max kilobytes भन्दा बढी हुनुहुदैन।',
+ 'string' => ':attribute :max वर्ण भन्दा बढी हुनुहुदैन।',
+ 'array' => ':attribute मा :max भन्दा बढी आइटम हुनुहुदैन।',
],
- 'mimes' => ':attribute :values प्रकारको फाइल हुनुपर्छ।',
- 'mimetypes' => ':attribute :values प्रकारको फाइल हुनुपर्छ।',
- 'min' => [
+ 'mimes' => ':attribute :values प्रकारको फाइल हुनुपर्छ।',
+ 'mimetypes' => ':attribute :values प्रकारको फाइल हुनुपर्छ।',
+ 'min' => [
'numeric' => ':attribute कम्तिमा :min हुनुपर्छ।',
- 'file' => ':attribute कम्तिमा :min kilobytesको हुनुपर्छ।',
- 'string' => ':attribute कम्तिमा :min वर्णको हुनुपर्छ।',
- 'array' => ':attribute मा कम्तिमा :min आइटम हुनुपर्छ।',
+ 'file' => ':attribute कम्तिमा :min kilobytesको हुनुपर्छ।',
+ 'string' => ':attribute कम्तिमा :min वर्णको हुनुपर्छ।',
+ 'array' => ':attribute मा कम्तिमा :min आइटम हुनुपर्छ।',
],
- 'not_in' => 'छानिएको :attribute अमान्य छ।',
- 'not_regex' => 'The :attribute format is invalid.',
- 'numeric' => ':attribute संख्या हुनुपर्छ।',
- 'present' => 'The :attribute field must be present.',
- 'regex' => ':attribute को ढाँचा मिलेन।',
- 'required' => ':attribute दिइएको हुनुपर्छ।',
- 'required_if' => ':attribute चाहिन्छ जब :other :value हुन्छ।',
- 'required_unless' => ':other :values मा नभएसम्म :attribute चाहिन्छ।',
- 'required_with' => ':values भएसम्म :attribute चाहिन्छ।',
- 'required_with_all' => ':values भएसम्म :attribute चाहिन्छ।',
- 'required_without' => ':values नभएको बेला :attribute चाहिन्छ।',
+ 'not_in' => 'छानिएको :attribute अमान्य छ।',
+ 'not_regex' => 'The :attribute format is invalid.',
+ 'numeric' => ':attribute संख्या हुनुपर्छ।',
+ 'present' => 'The :attribute field must be present.',
+ 'regex' => ':attribute को ढाँचा मिलेन।',
+ 'required' => ':attribute दिइएको हुनुपर्छ।',
+ 'required_if' => ':attribute चाहिन्छ जब :other :value हुन्छ।',
+ 'required_unless' => ':other :values मा नभएसम्म :attribute चाहिन्छ।',
+ 'required_with' => ':values भएसम्म :attribute चाहिन्छ।',
+ 'required_with_all' => ':values भएसम्म :attribute चाहिन्छ।',
+ 'required_without' => ':values नभएको बेला :attribute चाहिन्छ।',
'required_without_all' => 'कुनैपनि :values नभएको बेला :attribute चाहिन्छ।',
- 'same' => ':attribute र :other मिल्नुपर्छ।',
- 'size' => [
+ 'same' => ':attribute र :other मिल्नुपर्छ।',
+ 'size' => [
'numeric' => ':attribute :size हुनुपर्छ।',
- 'file' => ':attribute :size kilobytesको हुनुपर्छ।',
- 'string' => ':attribute :size वर्णको हुनुपर्छ।.',
- 'array' => ':attribute मा :size आइटम हुनुपर्छ।',
+ 'file' => ':attribute :size kilobytesको हुनुपर्छ।',
+ 'string' => ':attribute :size वर्णको हुनुपर्छ।.',
+ 'array' => ':attribute मा :size आइटम हुनुपर्छ।',
],
- 'starts_with' => 'The :attribute must start with one of the following: :values',
- 'string' => ':attribute string हुनुपर्छ।',
- 'timezone' => ':attribute मान्य समय क्षेत्र हुनुपर्छ।',
- 'unique' => 'यो :attribute पहिले नै लिई सकेको छ।',
- 'uploaded' => 'The :attribute failed to upload.',
- 'url' => ':attribute को ढांचा मिलेन।',
- 'uuid' => 'The :attribute must be a valid UUID.',
+ 'starts_with' => 'The :attribute must start with one of the following: :values',
+ 'string' => ':attribute string हुनुपर्छ।',
+ 'timezone' => ':attribute मान्य समय क्षेत्र हुनुपर्छ।',
+ 'unique' => 'यो :attribute पहिले नै लिई सकेको छ।',
+ 'uploaded' => 'The :attribute failed to upload.',
+ 'url' => ':attribute को ढांचा मिलेन।',
+ 'uuid' => 'The :attribute must be a valid UUID.',
/*
|--------------------------------------------------------------------------
diff --git a/lang/nl/articles.php b/lang/nl/articles.php
index 9e0b38606..238da8226 100644
--- a/lang/nl/articles.php
+++ b/lang/nl/articles.php
@@ -12,8 +12,8 @@
*/
return [
- 'articles' => 'artikelen',
+ 'articles' => 'artikelen',
'meta-articles' => 'Artikelen en nieuws over de tracker en de community',
- 'published-at' => 'Gepubliceerd op',
- 'read-more' => 'Lees verder',
+ 'published-at' => 'Gepubliceerd op',
+ 'read-more' => 'Lees verder',
];
diff --git a/lang/nl/auth.php b/lang/nl/auth.php
index 15b2eade1..6147dd318 100644
--- a/lang/nl/auth.php
+++ b/lang/nl/auth.php
@@ -23,6 +23,6 @@ return [
|
*/
- 'failed' => 'Deze combinatie van e-mailadres en wachtwoord is niet geldig.',
+ 'failed' => 'Deze combinatie van e-mailadres en wachtwoord is niet geldig.',
'throttle' => 'Te veel mislukte loginpogingen. Probeer het over :seconds seconden nogmaals.',
];
diff --git a/lang/nl/backup.php b/lang/nl/backup.php
index 4bd05cbad..ce61b8a6d 100644
--- a/lang/nl/backup.php
+++ b/lang/nl/backup.php
@@ -23,31 +23,31 @@ return [
|
*/
- 'backup' => 'Backup',
- 'create_a_new_backup' => 'Maak een nieuwe back-up',
- 'create_a_new_files_backup' => 'Maak een back-up van bestanden',
- 'create_a_new_db_backup' => 'Maak database back-up',
- 'existing_backups' => 'Bestaande backups',
- 'date' => 'Datum',
- 'file_size' => 'Bestandsgrootte',
- 'actions' => 'Acties',
- 'download' => 'Download',
- 'delete' => 'Verwijder',
- 'delete_confirm' => 'Weet je zeker dat je dit backup bestand wilt verwijderen?',
- 'delete_confirmation_title' => 'Klaar',
- 'delete_confirmation_message' => 'Het backup bestand is verwijderd.',
- 'delete_error_title' => 'Fout',
- 'delete_error_message' => 'Het backup bestand is NIET verwijderd.',
- 'delete_cancel_title' => 'Alles veilig',
- 'delete_cancel_message' => 'Het backup bestand is NIET verwijderd.',
- 'create_confirmation_title' => 'Backup voltooid',
- 'create_confirmation_message' => 'De pagina wordt opnieuw geladen in 3 seconden.',
- 'create_error_title' => 'Backup fout',
- 'create_error_message' => 'Het backup bestand kon NIET worden gemaakt.',
- 'create_warning_title' => 'Onbekende fout',
- 'create_warning_message' => 'Het kan zijn dat je backup niet gemaakt is. Controleer de log bestanden voor meer informatie.',
- 'location' => 'Locatie',
- 'no_disks_configured' => 'Geen backup locaties geconfigureerd in config/wbackup.php',
- 'backup_doesnt_exist' => 'Het backup bestand bestaat niet.',
+ 'backup' => 'Backup',
+ 'create_a_new_backup' => 'Maak een nieuwe back-up',
+ 'create_a_new_files_backup' => 'Maak een back-up van bestanden',
+ 'create_a_new_db_backup' => 'Maak database back-up',
+ 'existing_backups' => 'Bestaande backups',
+ 'date' => 'Datum',
+ 'file_size' => 'Bestandsgrootte',
+ 'actions' => 'Acties',
+ 'download' => 'Download',
+ 'delete' => 'Verwijder',
+ 'delete_confirm' => 'Weet je zeker dat je dit backup bestand wilt verwijderen?',
+ 'delete_confirmation_title' => 'Klaar',
+ 'delete_confirmation_message' => 'Het backup bestand is verwijderd.',
+ 'delete_error_title' => 'Fout',
+ 'delete_error_message' => 'Het backup bestand is NIET verwijderd.',
+ 'delete_cancel_title' => 'Alles veilig',
+ 'delete_cancel_message' => 'Het backup bestand is NIET verwijderd.',
+ 'create_confirmation_title' => 'Backup voltooid',
+ 'create_confirmation_message' => 'De pagina wordt opnieuw geladen in 3 seconden.',
+ 'create_error_title' => 'Backup fout',
+ 'create_error_message' => 'Het backup bestand kon NIET worden gemaakt.',
+ 'create_warning_title' => 'Onbekende fout',
+ 'create_warning_message' => 'Het kan zijn dat je backup niet gemaakt is. Controleer de log bestanden voor meer informatie.',
+ 'location' => 'Locatie',
+ 'no_disks_configured' => 'Geen backup locaties geconfigureerd in config/wbackup.php',
+ 'backup_doesnt_exist' => 'Het backup bestand bestaat niet.',
'only_local_downloads_supported' => 'Enkel downloads van het lokale bestandssysteem worden ondersteund.',
];
diff --git a/lang/nl/blocks.php b/lang/nl/blocks.php
index 23de15e5a..6ffe45ac9 100644
--- a/lang/nl/blocks.php
+++ b/lang/nl/blocks.php
@@ -12,19 +12,19 @@
*/
return [
- 'chatbox' => 'Chatbox',
- 'click' => 'Klik',
- 'to-enable-editor' => 'om editor in te schakelen',
- 'featured-by' => 'Gekenmerkt door',
- 'featured-torrents' => 'Aanbevolen Torrents',
+ 'chatbox' => 'Chatbox',
+ 'click' => 'Klik',
+ 'to-enable-editor' => 'om editor in te schakelen',
+ 'featured-by' => 'Gekenmerkt door',
+ 'featured-torrents' => 'Aanbevolen Torrents',
'featured-torrents-intro' => 'Haal ze terwijl je kunt!',
- 'featured-until' => 'Dit wordt gekenmerkt door torrent tot',
- 'top-torrents' => 'Top Torrents',
- 'latest-posts' => 'Laatste berichten',
- 'latest-topics' => 'Laatste onderwerpen',
- 'active-in-last' => 'Actief in de laatste',
- 'users-online' => 'Gebruikers online',
- 'check-news' => 'Nieuws (dagelijks controleren)',
- 'new-news' => 'Nieuw nieuws',
- 'new-torrents' => 'Nieuwe torrents',
+ 'featured-until' => 'Dit wordt gekenmerkt door torrent tot',
+ 'top-torrents' => 'Top Torrents',
+ 'latest-posts' => 'Laatste berichten',
+ 'latest-topics' => 'Laatste onderwerpen',
+ 'active-in-last' => 'Actief in de laatste',
+ 'users-online' => 'Gebruikers online',
+ 'check-news' => 'Nieuws (dagelijks controleren)',
+ 'new-news' => 'Nieuw nieuws',
+ 'new-torrents' => 'Nieuwe torrents',
];
diff --git a/lang/nl/bon.php b/lang/nl/bon.php
index ec29b8d9f..ecab380ce 100644
--- a/lang/nl/bon.php
+++ b/lang/nl/bon.php
@@ -12,44 +12,44 @@
*/
return [
- 'activated' => 'geactiveerde',
- 'active' => 'Geactiveerd!',
- 'amount' => 'Bedrag',
- 'bon' => 'BON',
- 'bonus' => 'Bonus',
- 'date' => 'Datum',
- 'earning' => 'verdienen',
- 'earning-rate' => 'Met dit tarief verdien je het volgende per tijdframe ..',
- 'earnings' => 'verdiensten',
- 'exchange' => 'Uitwisseling',
- 'exchange-warning' => 'De uitwisselingen zijn definitief. Controleer uw keuzes voordat u een ruil doet.',
- 'extended-stats' => 'Uitgebreide statistieken',
- 'gift' => 'Gift',
- 'gift-bonus' => 'Gift-bonuspunten',
- 'gift-to' => 'Giftbonuspunten voor',
- 'gifts' => 'Geschenken',
- 'item' => 'Item',
- 'no-refund' => 'GEEN GELD TERUG!',
- 'per-day' => 'Punten per dag',
- 'per-hour' => 'Punten per uur',
- 'per-minute' => 'Punten per minuut',
- 'per-month' => 'Punten per maand',
- 'per-second' => 'Punten per seconde',
- 'per-week' => 'Punten per week',
- 'per-year' => 'Punten per jaar',
- 'points' => 'punten',
- 'receiver' => 'Ontvanger',
- 'review-seeds' => 'Bekijk alle geplaatste torrents',
- 'send-gift' => 'Stuur cadeau',
- 'sender' => 'Afzender',
- 'store' => 'Op te slaan',
- 'tips' => 'Tips',
- 'total' => 'totale winst',
- 'total-gifts' => 'In Total BON Gifts',
- 'total-tips' => 'In Total BON Tips',
+ 'activated' => 'geactiveerde',
+ 'active' => 'Geactiveerd!',
+ 'amount' => 'Bedrag',
+ 'bon' => 'BON',
+ 'bonus' => 'Bonus',
+ 'date' => 'Datum',
+ 'earning' => 'verdienen',
+ 'earning-rate' => 'Met dit tarief verdien je het volgende per tijdframe ..',
+ 'earnings' => 'verdiensten',
+ 'exchange' => 'Uitwisseling',
+ 'exchange-warning' => 'De uitwisselingen zijn definitief. Controleer uw keuzes voordat u een ruil doet.',
+ 'extended-stats' => 'Uitgebreide statistieken',
+ 'gift' => 'Gift',
+ 'gift-bonus' => 'Gift-bonuspunten',
+ 'gift-to' => 'Giftbonuspunten voor',
+ 'gifts' => 'Geschenken',
+ 'item' => 'Item',
+ 'no-refund' => 'GEEN GELD TERUG!',
+ 'per-day' => 'Punten per dag',
+ 'per-hour' => 'Punten per uur',
+ 'per-minute' => 'Punten per minuut',
+ 'per-month' => 'Punten per maand',
+ 'per-second' => 'Punten per seconde',
+ 'per-week' => 'Punten per week',
+ 'per-year' => 'Punten per jaar',
+ 'points' => 'punten',
+ 'receiver' => 'Ontvanger',
+ 'review-seeds' => 'Bekijk alle geplaatste torrents',
+ 'send-gift' => 'Stuur cadeau',
+ 'sender' => 'Afzender',
+ 'store' => 'Op te slaan',
+ 'tips' => 'Tips',
+ 'total' => 'totale winst',
+ 'total-gifts' => 'In Total BON Gifts',
+ 'total-tips' => 'In Total BON Tips',
'you-have-received-gifts' => 'Je hebt ontvangen',
- 'you-have-sent-gifts' => 'U hebt verzonden',
- 'you-have-received-tips' => 'Je hebt ontvangen',
- 'you-have-sent-tips' => 'U hebt verzonden',
- 'your-points' => 'Jouw punten',
+ 'you-have-sent-gifts' => 'U hebt verzonden',
+ 'you-have-received-tips' => 'Je hebt ontvangen',
+ 'you-have-sent-tips' => 'U hebt verzonden',
+ 'your-points' => 'Jouw punten',
];
diff --git a/lang/nl/bot.php b/lang/nl/bot.php
index d144eaf01..252761adc 100644
--- a/lang/nl/bot.php
+++ b/lang/nl/bot.php
@@ -12,15 +12,15 @@
*/
return [
- 'about' => 'Wat betreft',
- 'bot' => 'Bot',
- 'bots' => 'bots',
- 'color' => 'Kleur',
- 'command' => 'Commando',
- 'edit-bot' => 'Bewerk Bot',
+ 'about' => 'Wat betreft',
+ 'bot' => 'Bot',
+ 'bots' => 'bots',
+ 'color' => 'Kleur',
+ 'command' => 'Commando',
+ 'edit-bot' => 'Bewerk Bot',
'emoji-code' => 'Emoji-code',
- 'help' => 'Helpen',
- 'icon' => 'Icoon',
- 'info' => 'info',
- 'name' => 'Naam',
+ 'help' => 'Helpen',
+ 'icon' => 'Icoon',
+ 'info' => 'info',
+ 'name' => 'Naam',
];
diff --git a/lang/nl/bug.php b/lang/nl/bug.php
index 0066af30a..e6da80f30 100644
--- a/lang/nl/bug.php
+++ b/lang/nl/bug.php
@@ -12,15 +12,15 @@
*/
return [
- 'bug-report' => 'Bug report',
+ 'bug-report' => 'Bug report',
'bug-report-description' => 'Meld een sitebug',
- 'enter-description' => 'Beschrijf het probleem zo goed mogelijk',
- 'enter-email' => 'Vul alstublieft uw e-mailadres in',
- 'enter-title' => 'Kies alstublieft een juiste titel',
- 'enter-username' => 'Vul alstublieft uw gebruikersnaam in',
- 'high' => 'hoog',
- 'low' => 'Laag',
- 'priority' => 'Prioriteit',
- 'priority-description' => 'Kies alleen erg hoog als de bug echt een probleem is bij het gebruik van de site.',
- 'very-high' => 'Heel hoog',
+ 'enter-description' => 'Beschrijf het probleem zo goed mogelijk',
+ 'enter-email' => 'Vul alstublieft uw e-mailadres in',
+ 'enter-title' => 'Kies alstublieft een juiste titel',
+ 'enter-username' => 'Vul alstublieft uw gebruikersnaam in',
+ 'high' => 'hoog',
+ 'low' => 'Laag',
+ 'priority' => 'Prioriteit',
+ 'priority-description' => 'Kies alleen erg hoog als de bug echt een probleem is bij het gebruik van de site.',
+ 'very-high' => 'Heel hoog',
];
diff --git a/lang/nl/common.php b/lang/nl/common.php
index 36f993791..a26ee9ec4 100644
--- a/lang/nl/common.php
+++ b/lang/nl/common.php
@@ -12,179 +12,179 @@
*/
return [
- 'a-an-art' => '',
- 'about' => 'Over ons',
- 'account' => 'Account',
- 'achievement-title' => 'Geweldig',
+ 'a-an-art' => '',
+ 'about' => 'Over ons',
+ 'account' => 'Account',
+ 'achievement-title' => 'Geweldig',
'achievement-unlocked' => 'Je hebt de prestatie ": naam" ontgrendeld',
- 'active' => 'Actief',
- 'active-warning' => 'Actieve waarschuwing',
- 'add' => 'Toevoegen',
- 'added' => 'Toegevoegd',
- 'amount' => 'Bedrag',
- 'anonymous' => 'Anoniem',
- 'author' => 'Schrijver',
- 'balance' => 'Balans',
- 'blacklist' => 'Zwarte lijst van klanten',
- 'buffer' => 'Buffer',
- 'bug' => 'Rapporteer een fout',
- 'but' => 'Maar',
- 'cancel' => 'annuleren',
- 'category' => 'Categorie',
- 'categories' => 'Categorieën',
- 'close' => 'Dichtbij',
- 'comment' => 'Commentaar',
- 'comments' => 'Comments',
- 'community' => 'Gemeenschap',
- 'contact' => 'Contact',
- 'contact-desc' => 'Deze contactaanvraag wordt naar de eigenaar gestuurd en neemt zo snel mogelijk contact met u op',
- 'contact-header' => 'Hallo',
- 'create' => 'creëren',
- 'created_at' => 'Gemaakt bij',
- 'day' => 'Dag',
- 'delete' => 'Verwijder',
- 'delete-your-comment' => 'Verwijder je reactie',
- 'description' => 'Omschrijving',
- 'direction' => 'Richting',
- 'disable' => 'onbruikbaar maken',
- 'doubleup_activated' => 'Wereldwijde dubbele upload-modus geactiveerd',
- 'download' => 'Download',
- 'edit' => 'Bewerk',
- 'edit-your-comment' => 'Bewerk je reactie',
- 'email' => 'E-mail',
- 'email-blacklist' => 'Email Blacklist',
- 'email-whitelist' => 'Email Whitelist',
+ 'active' => 'Actief',
+ 'active-warning' => 'Actieve waarschuwing',
+ 'add' => 'Toevoegen',
+ 'added' => 'Toegevoegd',
+ 'amount' => 'Bedrag',
+ 'anonymous' => 'Anoniem',
+ 'author' => 'Schrijver',
+ 'balance' => 'Balans',
+ 'blacklist' => 'Zwarte lijst van klanten',
+ 'buffer' => 'Buffer',
+ 'bug' => 'Rapporteer een fout',
+ 'but' => 'Maar',
+ 'cancel' => 'annuleren',
+ 'category' => 'Categorie',
+ 'categories' => 'Categorieën',
+ 'close' => 'Dichtbij',
+ 'comment' => 'Commentaar',
+ 'comments' => 'Comments',
+ 'community' => 'Gemeenschap',
+ 'contact' => 'Contact',
+ 'contact-desc' => 'Deze contactaanvraag wordt naar de eigenaar gestuurd en neemt zo snel mogelijk contact met u op',
+ 'contact-header' => 'Hallo',
+ 'create' => 'creëren',
+ 'created_at' => 'Gemaakt bij',
+ 'day' => 'Dag',
+ 'delete' => 'Verwijder',
+ 'delete-your-comment' => 'Verwijder je reactie',
+ 'description' => 'Omschrijving',
+ 'direction' => 'Richting',
+ 'disable' => 'onbruikbaar maken',
+ 'doubleup_activated' => 'Wereldwijde dubbele upload-modus geactiveerd',
+ 'download' => 'Download',
+ 'edit' => 'Bewerk',
+ 'edit-your-comment' => 'Bewerk je reactie',
+ 'email' => 'E-mail',
+ 'email-blacklist' => 'Email Blacklist',
+ 'email-whitelist' => 'Email Whitelist',
'email-list-notactive' => 'Email Whitelist / Blacklist-systeem is niet geactiveerd',
- 'enable' => 'in staat stellen',
- 'enter' => 'invoeren',
- 'error' => 'Fout',
- 'everyday' => 'Elke dag',
- 'expired' => 'Verlopen',
- 'extra' => 'Extra',
- 'extra-stats' => 'Extra-Stats',
- 'faq' => 'FAQ',
- 'files' => 'bestanden',
- 'fl_token' => 'Freeleech-token',
- 'fl_tokens' => 'Freel-Toewijzing Tokens',
- 'for' => 'voor',
- 'forum' => 'Forum',
- 'free' => 'Gratis',
- 'freeleech_activated' => 'Wereldwijde Freeleech-modus geactiveerd',
- 'global' => 'Globaal',
- 'group' => 'Groep',
- 'groups' => 'groepen',
- 'hidden' => 'Verborgen',
- 'high-speeds' => 'Hoge snelheden',
- 'home' => 'Huis',
- 'hot' => 'Hot!',
- 'hour' => 'Uur',
- 'huge' => 'Reusachtig',
- 'info' => 'info',
- 'internal' => 'intern',
- 'ip' => 'IK P',
- 'is-allowed' => 'is toegestaan',
- 'large' => 'Groot',
- 'latest' => 'Laatste',
- 'latest-posts' => 'Laatste berichten',
- 'latest-topics' => 'Laatste onderwerpen',
- 'legal' => 'wettelijk',
- 'legend' => 'Legende',
- 'lists' => 'lijsten',
- 'lock-account' => 'Account vergrendelen',
- 'logout' => 'Uitloggen',
- 'members' => 'leden',
- 'message' => 'Bericht',
- 'minute' => 'Minuut',
- 'moderated-by' => 'Gemodereerd door',
- 'moderation' => 'Met mate',
- 'moderation-approve' => 'Goedkeuren',
- 'moderation-postpone' => 'uitstellen',
- 'moderation-reject' => 'afwijzen',
- 'month' => 'Maand',
- 'months' => 'Maanden',
- 'my' => 'Mijn',
- 'name' => 'Naam',
- 'navigation' => 'Navigatie',
- 'new' => 'Nieuwe!',
- 'new-adj' => 'Nieuwe',
- 'news' => 'Nieuws',
- 'next' => 'volgende',
- 'no' => 'Nee',
- 'no-comments' => 'Nog geen reacties',
- 'no-result' => 'Er is geen resultaat in de database voor query',
- 'notifications' => 'meldingen',
- 'older-than' => 'Ouder dan',
- 'oldest' => 'Oudste',
- 'openreg_activated' => 'Open registratie geactiveerd',
- 'order-by' => 'Bestellen door',
- 'other' => 'anders',
- 'pages' => 'Pages',
- 'password' => 'Wachtwoord',
- 'patron' => 'Word beschermheer',
- 'pending-torrents' => 'In afwachting van torrents',
- 'personal' => 'persoonlijk',
- 'plural-suffix' => 's',
- 'port' => 'Haven',
- 'position' => 'Positie',
- 'posts' => 'berichten',
- 'powered-by' => 'Mogelijk gemaakt door UNIT3D',
- 'preview' => 'Voorbeeld',
- 'previous' => 'voorgaand',
- 'progress' => 'Vooruitgang',
- 'publish' => 'Publiceren',
- 'quantity' => 'Aantal stuks',
- 'quick-search' => 'Snelzoeken',
- 'ratio' => 'Verhouding',
- 'reason' => 'Reden',
- 'remove' => 'Verwijderen',
- 'report' => 'Verslag doen van',
- 'resend' => 'Opnieuw versturen',
- 'reporter' => 'Verslaggever',
- 'required' => 'Verplicht',
- 'results' => 'resultaten',
- 'rss-system' => 'RSS-systeem',
- 'rules' => 'Reglement',
- 'save' => 'Opslaan',
- 'search' => 'Zoeken',
- 'search-results' => 'Zoekresultaten',
- 'search-results-desc' => 'Zie hieronder uw resultaten',
- 'second' => 'Tweede',
- 'select' => 'kiezen',
- 'sort' => 'Soort',
- 'special' => 'speciaal',
- 'staff' => 'Personeel',
- 'staff-tools' => 'Hulpmiddelen voor personeel',
- 'stats' => 'Stats',
- 'status' => 'staat',
- 'sticked' => 'Sticked',
- 'submit' => 'voorleggen',
- 'subscriptions' => 'abonnementen',
- 'teams' => 'Teams',
- 'terms' => 'Gebruiksvoorwaarden',
- 'times' => 'Times',
- 'title' => 'Titel',
- 'top-bountied' => 'Top Bountied',
- 'topics' => 'Onderwerpen',
- 'tracker-codes' => 'Trackercodes',
- 'type' => 'Type',
- 'type-verb' => 'Type',
- 'types' => 'Types',
- 'genre' => 'Genre',
- 'genres' => 'Genres',
- 'action' => 'Actie',
- 'actions' => 'acties',
- 'unknown' => 'Onbekend',
+ 'enable' => 'in staat stellen',
+ 'enter' => 'invoeren',
+ 'error' => 'Fout',
+ 'everyday' => 'Elke dag',
+ 'expired' => 'Verlopen',
+ 'extra' => 'Extra',
+ 'extra-stats' => 'Extra-Stats',
+ 'faq' => 'FAQ',
+ 'files' => 'bestanden',
+ 'fl_token' => 'Freeleech-token',
+ 'fl_tokens' => 'Freel-Toewijzing Tokens',
+ 'for' => 'voor',
+ 'forum' => 'Forum',
+ 'free' => 'Gratis',
+ 'freeleech_activated' => 'Wereldwijde Freeleech-modus geactiveerd',
+ 'global' => 'Globaal',
+ 'group' => 'Groep',
+ 'groups' => 'groepen',
+ 'hidden' => 'Verborgen',
+ 'high-speeds' => 'Hoge snelheden',
+ 'home' => 'Huis',
+ 'hot' => 'Hot!',
+ 'hour' => 'Uur',
+ 'huge' => 'Reusachtig',
+ 'info' => 'info',
+ 'internal' => 'intern',
+ 'ip' => 'IK P',
+ 'is-allowed' => 'is toegestaan',
+ 'large' => 'Groot',
+ 'latest' => 'Laatste',
+ 'latest-posts' => 'Laatste berichten',
+ 'latest-topics' => 'Laatste onderwerpen',
+ 'legal' => 'wettelijk',
+ 'legend' => 'Legende',
+ 'lists' => 'lijsten',
+ 'lock-account' => 'Account vergrendelen',
+ 'logout' => 'Uitloggen',
+ 'members' => 'leden',
+ 'message' => 'Bericht',
+ 'minute' => 'Minuut',
+ 'moderated-by' => 'Gemodereerd door',
+ 'moderation' => 'Met mate',
+ 'moderation-approve' => 'Goedkeuren',
+ 'moderation-postpone' => 'uitstellen',
+ 'moderation-reject' => 'afwijzen',
+ 'month' => 'Maand',
+ 'months' => 'Maanden',
+ 'my' => 'Mijn',
+ 'name' => 'Naam',
+ 'navigation' => 'Navigatie',
+ 'new' => 'Nieuwe!',
+ 'new-adj' => 'Nieuwe',
+ 'news' => 'Nieuws',
+ 'next' => 'volgende',
+ 'no' => 'Nee',
+ 'no-comments' => 'Nog geen reacties',
+ 'no-result' => 'Er is geen resultaat in de database voor query',
+ 'notifications' => 'meldingen',
+ 'older-than' => 'Ouder dan',
+ 'oldest' => 'Oudste',
+ 'openreg_activated' => 'Open registratie geactiveerd',
+ 'order-by' => 'Bestellen door',
+ 'other' => 'anders',
+ 'pages' => 'Pages',
+ 'password' => 'Wachtwoord',
+ 'patron' => 'Word beschermheer',
+ 'pending-torrents' => 'In afwachting van torrents',
+ 'personal' => 'persoonlijk',
+ 'plural-suffix' => 's',
+ 'port' => 'Haven',
+ 'position' => 'Positie',
+ 'posts' => 'berichten',
+ 'powered-by' => 'Mogelijk gemaakt door UNIT3D',
+ 'preview' => 'Voorbeeld',
+ 'previous' => 'voorgaand',
+ 'progress' => 'Vooruitgang',
+ 'publish' => 'Publiceren',
+ 'quantity' => 'Aantal stuks',
+ 'quick-search' => 'Snelzoeken',
+ 'ratio' => 'Verhouding',
+ 'reason' => 'Reden',
+ 'remove' => 'Verwijderen',
+ 'report' => 'Verslag doen van',
+ 'resend' => 'Opnieuw versturen',
+ 'reporter' => 'Verslaggever',
+ 'required' => 'Verplicht',
+ 'results' => 'resultaten',
+ 'rss-system' => 'RSS-systeem',
+ 'rules' => 'Reglement',
+ 'save' => 'Opslaan',
+ 'search' => 'Zoeken',
+ 'search-results' => 'Zoekresultaten',
+ 'search-results-desc' => 'Zie hieronder uw resultaten',
+ 'second' => 'Tweede',
+ 'select' => 'kiezen',
+ 'sort' => 'Soort',
+ 'special' => 'speciaal',
+ 'staff' => 'Personeel',
+ 'staff-tools' => 'Hulpmiddelen voor personeel',
+ 'stats' => 'Stats',
+ 'status' => 'staat',
+ 'sticked' => 'Sticked',
+ 'submit' => 'voorleggen',
+ 'subscriptions' => 'abonnementen',
+ 'teams' => 'Teams',
+ 'terms' => 'Gebruiksvoorwaarden',
+ 'times' => 'Times',
+ 'title' => 'Titel',
+ 'top-bountied' => 'Top Bountied',
+ 'topics' => 'Onderwerpen',
+ 'tracker-codes' => 'Trackercodes',
+ 'type' => 'Type',
+ 'type-verb' => 'Type',
+ 'types' => 'Types',
+ 'genre' => 'Genre',
+ 'genres' => 'Genres',
+ 'action' => 'Actie',
+ 'actions' => 'acties',
+ 'unknown' => 'Onbekend',
'unlocked-achievement' => 'Je ontgrendeld: prestatie-prestatie',
- 'upload' => 'Uploaden',
- 'upload-guide' => 'Upload gids',
- 'user' => 'Gebruiker',
- 'username' => 'Gebruikersnaam',
- 'users' => 'gebruikers',
- 'view' => 'Uitzicht',
- 'view-all' => 'Bekijk alles',
- 'warnings' => 'waarschuwingen',
- 'year' => 'Jaar',
- 'yes' => 'Ja',
- 'your' => 'Jouw',
- 'your-comment' => 'Jouw commentaar',
+ 'upload' => 'Uploaden',
+ 'upload-guide' => 'Upload gids',
+ 'user' => 'Gebruiker',
+ 'username' => 'Gebruikersnaam',
+ 'users' => 'gebruikers',
+ 'view' => 'Uitzicht',
+ 'view-all' => 'Bekijk alles',
+ 'warnings' => 'waarschuwingen',
+ 'year' => 'Jaar',
+ 'yes' => 'Ja',
+ 'your' => 'Jouw',
+ 'your-comment' => 'Jouw commentaar',
];
diff --git a/lang/nl/email.php b/lang/nl/email.php
index 2dea408aa..54ad36e52 100644
--- a/lang/nl/email.php
+++ b/lang/nl/email.php
@@ -12,46 +12,46 @@
*/
return [
- 'activate-account' => 'Activeer account',
- 'ban-reason' => 'Reden',
- 'banned-footer' => 'Dat is wat je krijgt als je de regels niet volgt',
- 'banned-header' => 'Je bent verbannen',
- 'bug-description' => 'Probleem',
- 'bug-footer' => 'Fix That Shit',
- 'bug-header' => 'Nieuw bugrapport van',
- 'bug-priority' => 'Prioriteit',
- 'bug-title' => 'Bugtitel',
- 'contact-header' => 'Nieuwe contactmail van',
- 'contact-message' => 'Bericht',
- 'contact-name' => 'Naam',
+ 'activate-account' => 'Activeer account',
+ 'ban-reason' => 'Reden',
+ 'banned-footer' => 'Dat is wat je krijgt als je de regels niet volgt',
+ 'banned-header' => 'Je bent verbannen',
+ 'bug-description' => 'Probleem',
+ 'bug-footer' => 'Fix That Shit',
+ 'bug-header' => 'Nieuw bugrapport van',
+ 'bug-priority' => 'Prioriteit',
+ 'bug-title' => 'Bugtitel',
+ 'contact-header' => 'Nieuwe contactmail van',
+ 'contact-message' => 'Bericht',
+ 'contact-name' => 'Naam',
'fail-login-greeting' => 'Aanmelding account mislukt!',
- 'fail-login-line1' => 'Er is een mislukte aanmelding voor uw account gedetecteerd.',
- 'fail-login-line2' => 'Dit verzoek is oorspronkelijk uitgevoerd op: ip (: host)',
- 'fail-login-subject' => 'Mislukte aanmeldingsmelding',
- 'footer-link' => 'Als u problemen ondervindt bij het klikken op de knop: actionText, kopieert en plakt u de onderstaande URL in uw webbrowser:',
- 'invite-header' => 'Uitnodiging voor',
- 'invite-invited' => 'Je bent uitgenodigd voor',
- 'invite-message' => 'Bericht',
- 'invite-signup' => 'Meld je nu aan',
- 'newreply-header' => 'Er is nieuw antwoord in uw onderwerp',
- 'newreply-message' => 'Bericht',
- 'newreply-replied' => 'Heeft geantwoord op uw onderwerp',
- 'newreply-view' => 'Bekijk het nu',
- 'no-email-found' => 'We konden deze e-mail niet vinden in ons systeem!',
- 'register-code' => 'Klik op de onderstaande knop om de activering van uw account te voltooien',
- 'register-footer' => 'Als de bovenstaande knop niet werkt, kopieert en plakt u de URL in de adresbalk van uw browser',
- 'register-header' => 'Hoi! Bedankt voor het aanmelden',
- 'report-comment' => 'Commentaar',
- 'report-email' => 'E-mail',
- 'report-header' => 'Hallo beheerder, Er is een link gerapporteerd',
- 'report-link' => 'Link',
- 'report-link-hash' => 'Werkelijke link',
- 'thanks' => 'Bedankt voor het gebruiken',
- 'unban-footer' => 'Welkom terug!',
- 'unban-header' => 'Je bent niet geband',
- 'unban-reason' => 'Reden',
- 'username-reminder' => 'Je hebt ons onlangs een verzoek gestuurd om je gebruikersnaam in onze app. jouw gebruikersnaam is',
- 'username-sent' => 'Uw gebruikersnaam is verzonden naar uw e-mailadres!',
- 'disabled-header' => 'Uw account is uitgeschakeld',
- 'pruned-header' => 'Je account is gesnoeid',
+ 'fail-login-line1' => 'Er is een mislukte aanmelding voor uw account gedetecteerd.',
+ 'fail-login-line2' => 'Dit verzoek is oorspronkelijk uitgevoerd op: ip (: host)',
+ 'fail-login-subject' => 'Mislukte aanmeldingsmelding',
+ 'footer-link' => 'Als u problemen ondervindt bij het klikken op de knop: actionText, kopieert en plakt u de onderstaande URL in uw webbrowser:',
+ 'invite-header' => 'Uitnodiging voor',
+ 'invite-invited' => 'Je bent uitgenodigd voor',
+ 'invite-message' => 'Bericht',
+ 'invite-signup' => 'Meld je nu aan',
+ 'newreply-header' => 'Er is nieuw antwoord in uw onderwerp',
+ 'newreply-message' => 'Bericht',
+ 'newreply-replied' => 'Heeft geantwoord op uw onderwerp',
+ 'newreply-view' => 'Bekijk het nu',
+ 'no-email-found' => 'We konden deze e-mail niet vinden in ons systeem!',
+ 'register-code' => 'Klik op de onderstaande knop om de activering van uw account te voltooien',
+ 'register-footer' => 'Als de bovenstaande knop niet werkt, kopieert en plakt u de URL in de adresbalk van uw browser',
+ 'register-header' => 'Hoi! Bedankt voor het aanmelden',
+ 'report-comment' => 'Commentaar',
+ 'report-email' => 'E-mail',
+ 'report-header' => 'Hallo beheerder, Er is een link gerapporteerd',
+ 'report-link' => 'Link',
+ 'report-link-hash' => 'Werkelijke link',
+ 'thanks' => 'Bedankt voor het gebruiken',
+ 'unban-footer' => 'Welkom terug!',
+ 'unban-header' => 'Je bent niet geband',
+ 'unban-reason' => 'Reden',
+ 'username-reminder' => 'Je hebt ons onlangs een verzoek gestuurd om je gebruikersnaam in onze app. jouw gebruikersnaam is',
+ 'username-sent' => 'Uw gebruikersnaam is verzonden naar uw e-mailadres!',
+ 'disabled-header' => 'Uw account is uitgeschakeld',
+ 'pruned-header' => 'Je account is gesnoeid',
];
diff --git a/lang/nl/forum.php b/lang/nl/forum.php
index 8bc509f17..80a93f040 100644
--- a/lang/nl/forum.php
+++ b/lang/nl/forum.php
@@ -12,63 +12,63 @@
*/
return [
- 'action' => 'Actie',
- 'activity' => 'Activiteit',
- 'approved' => 'aangenomen',
- 'author' => 'Schrijver',
- 'bug' => 'kever',
- 'category-quick-search' => 'Onderwerpnaam snel zoeken (binnen categorie)',
- 'close-topic' => 'Onderwerp vergrendelen',
- 'closed' => 'Gesloten',
- 'create-new-topic' => 'Maak nieuw onderwerp',
- 'created' => 'gemaakt',
- 'current' => 'Stroom',
- 'delete-topic' => 'Dit onderwerp verwijderen',
- 'denied' => 'Denied',
- 'dislike-post' => 'Houd niet van deze post',
- 'display-forum' => 'Toon onderwerpen in',
- 'edit-post' => 'Bericht bewerken',
- 'edit-topic' => 'Onderwerp bewerken',
- 'forum' => 'Forum',
- 'forums' => 'Forums',
- 'implemented' => 'Geïmplementeerd',
- 'in' => 'In',
- 'invalid' => 'Ongeldig',
- 'label' => 'Label',
- 'label-system' => 'Label systeem',
- 'last-message' => 'Laatste bericht',
- 'last-post-info' => 'Last Post Info',
- 'latest' => 'Laatste',
- 'like-post' => 'Like deze post',
- 'meta-category' => 'Lijst met forums in de categorie',
- 'moderation' => 'Met mate',
- 'name' => 'Naam',
- 'not-connected' => 'Je moet verbonden zijn',
- 'not-subscribed' => 'Niet geabonneerd',
- 'open' => 'Open',
- 'open-topic' => 'Open dit onderwerp',
- 'permalink' => 'permalink',
- 'pin' => 'Pin',
- 'post' => 'Post',
- 'post-quick-search' => 'Snel zoeken op post body',
- 'posts' => 'berichten',
- 'quote' => 'Citaat',
- 'read-topic' => 'Lees het onderwerp',
- 'replies' => 'Antwoorden',
- 'send-new-topic' => 'Bewaar dit onderwerp',
- 'solved' => 'opgelost',
- 'state' => 'Staat',
- 'stats' => 'Stats',
- 'subscribed' => 'geabonneerd',
+ 'action' => 'Actie',
+ 'activity' => 'Activiteit',
+ 'approved' => 'aangenomen',
+ 'author' => 'Schrijver',
+ 'bug' => 'kever',
+ 'category-quick-search' => 'Onderwerpnaam snel zoeken (binnen categorie)',
+ 'close-topic' => 'Onderwerp vergrendelen',
+ 'closed' => 'Gesloten',
+ 'create-new-topic' => 'Maak nieuw onderwerp',
+ 'created' => 'gemaakt',
+ 'current' => 'Stroom',
+ 'delete-topic' => 'Dit onderwerp verwijderen',
+ 'denied' => 'Denied',
+ 'dislike-post' => 'Houd niet van deze post',
+ 'display-forum' => 'Toon onderwerpen in',
+ 'edit-post' => 'Bericht bewerken',
+ 'edit-topic' => 'Onderwerp bewerken',
+ 'forum' => 'Forum',
+ 'forums' => 'Forums',
+ 'implemented' => 'Geïmplementeerd',
+ 'in' => 'In',
+ 'invalid' => 'Ongeldig',
+ 'label' => 'Label',
+ 'label-system' => 'Label systeem',
+ 'last-message' => 'Laatste bericht',
+ 'last-post-info' => 'Last Post Info',
+ 'latest' => 'Laatste',
+ 'like-post' => 'Like deze post',
+ 'meta-category' => 'Lijst met forums in de categorie',
+ 'moderation' => 'Met mate',
+ 'name' => 'Naam',
+ 'not-connected' => 'Je moet verbonden zijn',
+ 'not-subscribed' => 'Niet geabonneerd',
+ 'open' => 'Open',
+ 'open-topic' => 'Open dit onderwerp',
+ 'permalink' => 'permalink',
+ 'pin' => 'Pin',
+ 'post' => 'Post',
+ 'post-quick-search' => 'Snel zoeken op post body',
+ 'posts' => 'berichten',
+ 'quote' => 'Citaat',
+ 'read-topic' => 'Lees het onderwerp',
+ 'replies' => 'Antwoorden',
+ 'send-new-topic' => 'Bewaar dit onderwerp',
+ 'solved' => 'opgelost',
+ 'state' => 'Staat',
+ 'stats' => 'Stats',
+ 'subscribed' => 'geabonneerd',
'subscription-quick-search' => 'Onderwerpnaam snel zoeken (binnen abonnementen)',
- 'suggestion' => 'Suggestie',
- 'topic' => 'Onderwerp',
- 'topic-closed' => 'Dit onderwerp is gesloten',
- 'topic-name' => 'Onderwerp naam',
- 'topic-quick-search' => 'Onderwerp naam snel zoeken',
- 'topic-title' => 'Titel van dit onderwerp',
- 'topics' => 'Onderwerpen',
- 'unpin' => 'losmaken',
- 'view-all' => 'Bekijk alle onderwerpen',
- 'views' => 'Keer bekeken',
+ 'suggestion' => 'Suggestie',
+ 'topic' => 'Onderwerp',
+ 'topic-closed' => 'Dit onderwerp is gesloten',
+ 'topic-name' => 'Onderwerp naam',
+ 'topic-quick-search' => 'Onderwerp naam snel zoeken',
+ 'topic-title' => 'Titel van dit onderwerp',
+ 'topics' => 'Onderwerpen',
+ 'unpin' => 'losmaken',
+ 'view-all' => 'Bekijk alle onderwerpen',
+ 'views' => 'Keer bekeken',
];
diff --git a/lang/nl/graveyard.php b/lang/nl/graveyard.php
index 1a2019589..5f3efa047 100644
--- a/lang/nl/graveyard.php
+++ b/lang/nl/graveyard.php
@@ -12,15 +12,15 @@
*/
return [
- 'dead' => 'Dood',
- 'graveyard' => 'Begraafplaats',
- 'guidelines' => 'richtlijnen',
+ 'dead' => 'Dood',
+ 'graveyard' => 'Begraafplaats',
+ 'guidelines' => 'richtlijnen',
'guidelines-content' => '1) Je kunt je eigen uploads niet herleven.
2) Herleef niet iets dat je ook niet kunt plegen.',
- 'howto' => 'Hier is de regel',
- 'howto-desc1' => 'U moet zaaien : naam gedurende 30 dagen voor een succesvolle herbehandeling. In dat geval wanneer uw huidige zaaitijd van',
- 'howto-desc2' => 'Je zult worden beloond',
- 'howto-hits' => 'Hits',
- 'pending' => 'In afwachting',
- 'resurrect' => 'herleven',
- 'reward' => 'Freeleech-tokens',
+ 'howto' => 'Hier is de regel',
+ 'howto-desc1' => 'U moet zaaien : naam gedurende 30 dagen voor een succesvolle herbehandeling. In dat geval wanneer uw huidige zaaitijd van',
+ 'howto-desc2' => 'Je zult worden beloond',
+ 'howto-hits' => 'Hits',
+ 'pending' => 'In afwachting',
+ 'resurrect' => 'herleven',
+ 'reward' => 'Freeleech-tokens',
];
diff --git a/lang/nl/notification.php b/lang/nl/notification.php
index e490ebcd8..3b6dee1c6 100644
--- a/lang/nl/notification.php
+++ b/lang/nl/notification.php
@@ -12,14 +12,14 @@
*/
return [
- 'date' => 'Datum',
- 'delete' => 'Verwijder',
- 'delete-all' => 'Verwijder alle meldingen',
- 'mark-all-read' => 'Markeer alles als gelezen',
- 'mark-read' => 'Markeer als gelezen',
- 'message' => 'Bericht',
+ 'date' => 'Datum',
+ 'delete' => 'Verwijder',
+ 'delete-all' => 'Verwijder alle meldingen',
+ 'mark-all-read' => 'Markeer alles als gelezen',
+ 'mark-read' => 'Markeer als gelezen',
+ 'message' => 'Bericht',
'no-notifications' => 'Er zijn geen meldingen gevonden',
- 'notifications' => 'meldingen',
- 'read' => 'Lezen',
- 'title' => 'Titel',
+ 'notifications' => 'meldingen',
+ 'read' => 'Lezen',
+ 'title' => 'Titel',
];
diff --git a/lang/nl/page.php b/lang/nl/page.php
index b23f3d2e1..c59b35944 100644
--- a/lang/nl/page.php
+++ b/lang/nl/page.php
@@ -12,28 +12,28 @@
*/
return [
- 'aboutus-advantage' => 'Het voordeel',
- 'aboutus-advantage1' => 'We hebben ervaren leden en medewerkers die goed thuis zijn in de wereld van HD video / audio en technische ondersteuning.',
- 'aboutus-advantage2' => 'Samen met onze uitgebreide passie voor films en tv-shows, bieden we ook een van de beste selecties van iets dat de meeste niet - FANRES! EEN GROTE DANK VOOR onze contentaanbrengers.',
- 'aboutus-advantage3' => 'Hoewel we donaties accepteren om de site up-and-running te houden, zullen er geen pestende PM s of banners op de site zijn. Geen smeken van ons.',
- 'aboutus-advantage4' => 'Onze gemeenschap is ongeëvenaard voor zijn jonge leeftijd. Tussen onze medewerkers en gebruikersbasis waren altijd hier om te helpen. We zijn gepassioneerd om ervoor te zorgen dat uw ervaring met: de titel is ronduit geweldig.',
- 'aboutus-advantage5' => 'Onze service wordt dagelijks door veel mensen over de hele wereld gebruikt. We hebben bewezen dat we om de functionaliteit en veiligheid van onze codebasis geven en deze kan vertrouwd en vertrouwd worden. Onze ontwikkelaars werken dagelijks om een echte nex-gen codebase te bieden.',
- 'aboutus-header' => 'Hallo daar',
- 'aboutus-rules' => 'Wat we van je nodig hebben',
- 'aboutus-rules1' => 'Een actief lid van de gemeenschap zijn! Dit betekent om productief mee te doen aan gesprekken, goedgekeurde inhoud toe te voegen en andere gebruikers te helpen als dat mogelijk is.',
- 'aboutus-rules2' => 'Om de regels volledig te lezen en ze te respecteren!',
- 'aboutus-rules3' => 'Suggesties doen! We streven ernaar om te maken: titel beter elke dag. We zeggen niet dat elke suggestie zal worden gebruikt, maar het doet nooit pijn om nieuwe ideeën te zien.',
- 'aboutus-welcome' => 'Laten we praten over',
- 'aboutus-welcome-desc' => ': titel is een in de gemeenschap gebouwde Movie / TV / FANRES-database. Alle gegevens zijn sinds 2017 toegevoegd door onze geweldige community.: Titels die sterk gericht zijn op HD-inhoud, een proactieve gebruikersbasis, een geweldige / veilige codebase en een behulpzaam en vriendelijk personeelsteam.',
- 'blacklist-browsers' => 'browsers',
- 'blacklist-btclient' => 'BitTorrent Client',
- 'blacklist-clients' => 'cliënten',
- 'blacklist-desc' => 'De volgende browsers en Bittorrent-clients worden op de zwarte lijst geplaatst / verboden voor: Annoucing To: title',
- 'blacklist-webbrowser' => 'Webbrowser',
+ 'aboutus-advantage' => 'Het voordeel',
+ 'aboutus-advantage1' => 'We hebben ervaren leden en medewerkers die goed thuis zijn in de wereld van HD video / audio en technische ondersteuning.',
+ 'aboutus-advantage2' => 'Samen met onze uitgebreide passie voor films en tv-shows, bieden we ook een van de beste selecties van iets dat de meeste niet - FANRES! EEN GROTE DANK VOOR onze contentaanbrengers.',
+ 'aboutus-advantage3' => 'Hoewel we donaties accepteren om de site up-and-running te houden, zullen er geen pestende PM s of banners op de site zijn. Geen smeken van ons.',
+ 'aboutus-advantage4' => 'Onze gemeenschap is ongeëvenaard voor zijn jonge leeftijd. Tussen onze medewerkers en gebruikersbasis waren altijd hier om te helpen. We zijn gepassioneerd om ervoor te zorgen dat uw ervaring met: de titel is ronduit geweldig.',
+ 'aboutus-advantage5' => 'Onze service wordt dagelijks door veel mensen over de hele wereld gebruikt. We hebben bewezen dat we om de functionaliteit en veiligheid van onze codebasis geven en deze kan vertrouwd en vertrouwd worden. Onze ontwikkelaars werken dagelijks om een echte nex-gen codebase te bieden.',
+ 'aboutus-header' => 'Hallo daar',
+ 'aboutus-rules' => 'Wat we van je nodig hebben',
+ 'aboutus-rules1' => 'Een actief lid van de gemeenschap zijn! Dit betekent om productief mee te doen aan gesprekken, goedgekeurde inhoud toe te voegen en andere gebruikers te helpen als dat mogelijk is.',
+ 'aboutus-rules2' => 'Om de regels volledig te lezen en ze te respecteren!',
+ 'aboutus-rules3' => 'Suggesties doen! We streven ernaar om te maken: titel beter elke dag. We zeggen niet dat elke suggestie zal worden gebruikt, maar het doet nooit pijn om nieuwe ideeën te zien.',
+ 'aboutus-welcome' => 'Laten we praten over',
+ 'aboutus-welcome-desc' => ': titel is een in de gemeenschap gebouwde Movie / TV / FANRES-database. Alle gegevens zijn sinds 2017 toegevoegd door onze geweldige community.: Titels die sterk gericht zijn op HD-inhoud, een proactieve gebruikersbasis, een geweldige / veilige codebase en een behulpzaam en vriendelijk personeelsteam.',
+ 'blacklist-browsers' => 'browsers',
+ 'blacklist-btclient' => 'BitTorrent Client',
+ 'blacklist-clients' => 'cliënten',
+ 'blacklist-desc' => 'De volgende browsers en Bittorrent-clients worden op de zwarte lijst geplaatst / verboden voor: Annoucing To: title',
+ 'blacklist-webbrowser' => 'Webbrowser',
'blacklist-emaildomain' => 'Geblokkeerd domein',
- 'email-blacklist-desc' => 'De volgende e-maildomeinen worden geblokkeerd voor gebruik. U kunt zich niet registreren of een uitnodiging sturen voor het volgende.',
- 'email-whitelist-desc' => 'De volgende e-maildomeinen zijn de enige e-maildomeinen die mogen worden gebruikt. U mag zich alleen registreren of een uitnodiging sturen met behulp van het volgende.',
- 'staff-group' => 'Groep',
- 'staff-title' => 'Titel',
+ 'email-blacklist-desc' => 'De volgende e-maildomeinen worden geblokkeerd voor gebruik. U kunt zich niet registreren of een uitnodiging sturen voor het volgende.',
+ 'email-whitelist-desc' => 'De volgende e-maildomeinen zijn de enige e-maildomeinen die mogen worden gebruikt. U mag zich alleen registreren of een uitnodiging sturen met behulp van het volgende.',
+ 'staff-group' => 'Groep',
+ 'staff-title' => 'Titel',
'whitelist-emaildomain' => 'Vertrouwd domein',
];
diff --git a/lang/nl/pagination.php b/lang/nl/pagination.php
index 65c0562bc..1fb6815b4 100644
--- a/lang/nl/pagination.php
+++ b/lang/nl/pagination.php
@@ -24,5 +24,5 @@ return [
*/
'previous' => '« Vorige',
- 'next' => 'Volgende »',
+ 'next' => 'Volgende »',
];
diff --git a/lang/nl/passwords.php b/lang/nl/passwords.php
index 17bf52180..432e3924e 100644
--- a/lang/nl/passwords.php
+++ b/lang/nl/passwords.php
@@ -24,8 +24,8 @@ return [
*/
'password' => 'Wachtwoord moet minimaal zes tekens lang zijn en de wachtwoorden moeten overeenkomen.',
- 'reset' => 'Het wachtwoord van uw account is gewijzigd.',
- 'sent' => 'We hebben een e-mail verstuurd met instructies om een nieuw wachtwoord in te stellen.',
- 'token' => 'Dit wachtwoordhersteltoken is niet geldig.',
- 'user' => 'Geen gebruiker bekend met het e-mailadres.',
+ 'reset' => 'Het wachtwoord van uw account is gewijzigd.',
+ 'sent' => 'We hebben een e-mail verstuurd met instructies om een nieuw wachtwoord in te stellen.',
+ 'token' => 'Dit wachtwoordhersteltoken is niet geldig.',
+ 'user' => 'Geen gebruiker bekend met het e-mailadres.',
];
diff --git a/lang/nl/pm.php b/lang/nl/pm.php
index 4446e842f..ec8370aec 100644
--- a/lang/nl/pm.php
+++ b/lang/nl/pm.php
@@ -12,29 +12,29 @@
*/
return [
- 'create' => 'creëren',
- 'delete' => 'Verwijder',
+ 'create' => 'creëren',
+ 'delete' => 'Verwijder',
'enter-subject' => 'Voer onderwerp in',
- 'from' => 'Van',
- 'inbox' => 'Postvak IN',
+ 'from' => 'Van',
+ 'inbox' => 'Postvak IN',
'mark-all-read' => 'Markeer alle berichten als gelezen',
- 'message' => 'Bericht',
- 'messages' => 'berichten',
- 'new' => 'Nieuw bericht',
- 'outbox' => 'Outbox',
- 'private' => 'Privaat',
- 'read' => 'Lezen',
- 'received-at' => 'Ontvangen om',
- 'refresh' => 'verversen',
- 'reply' => 'Antwoord',
- 'search' => 'Zoeken op onderwerp',
- 'select' => 'Selecteer een gebruiker',
- 'send' => 'Verstuur PM',
- 'send-to' => 'Stuur PM naar',
- 'sent' => 'Verzonden',
- 'sent-at' => 'Verzonden bij',
- 'subject' => 'Onderwerpen',
- 'to' => 'Naar',
- 'unread' => 'Ongelezen',
- 'empty-inbox' => 'Lege brievenbus',
+ 'message' => 'Bericht',
+ 'messages' => 'berichten',
+ 'new' => 'Nieuw bericht',
+ 'outbox' => 'Outbox',
+ 'private' => 'Privaat',
+ 'read' => 'Lezen',
+ 'received-at' => 'Ontvangen om',
+ 'refresh' => 'verversen',
+ 'reply' => 'Antwoord',
+ 'search' => 'Zoeken op onderwerp',
+ 'select' => 'Selecteer een gebruiker',
+ 'send' => 'Verstuur PM',
+ 'send-to' => 'Stuur PM naar',
+ 'sent' => 'Verzonden',
+ 'sent-at' => 'Verzonden bij',
+ 'subject' => 'Onderwerpen',
+ 'to' => 'Naar',
+ 'unread' => 'Ongelezen',
+ 'empty-inbox' => 'Lege brievenbus',
];
diff --git a/lang/nl/poll.php b/lang/nl/poll.php
index f489398bc..6faddf62c 100644
--- a/lang/nl/poll.php
+++ b/lang/nl/poll.php
@@ -12,18 +12,18 @@
*/
return [
- 'add-option' => 'Optie toevoegen',
- 'create-poll' => 'Maak enquête',
- 'current' => 'Huidige peiling (en)',
- 'delete-option' => 'Wis optie',
+ 'add-option' => 'Optie toevoegen',
+ 'create-poll' => 'Maak enquête',
+ 'current' => 'Huidige peiling (en)',
+ 'delete-option' => 'Wis optie',
'multiple-choice' => 'Dit is een meerkeuze poll. Selecteer zoveel antwoorden als je wilt.',
- 'option' => 'Keuze',
- 'poll' => 'poll',
- 'polls' => 'Polls',
- 'results' => 'Resultaten enquêteren',
- 'title' => 'Titel',
- 'total' => 'Totaal aantal stemmen ooit',
- 'vote' => 'Stemmen',
- 'vote-now' => 'Laat je stem nu horen!',
- 'votes' => 'stemmen',
+ 'option' => 'Keuze',
+ 'poll' => 'poll',
+ 'polls' => 'Polls',
+ 'results' => 'Resultaten enquêteren',
+ 'title' => 'Titel',
+ 'total' => 'Totaal aantal stemmen ooit',
+ 'vote' => 'Stemmen',
+ 'vote-now' => 'Laat je stem nu horen!',
+ 'votes' => 'stemmen',
];
diff --git a/lang/nl/request.php b/lang/nl/request.php
index a3429cb54..ffefe9eae 100644
--- a/lang/nl/request.php
+++ b/lang/nl/request.php
@@ -12,67 +12,67 @@
*/
return [
- 'add-request' => 'Verzoek toevoegen',
- 'age' => 'Leeftijd',
- 'all-requests' => 'Alle verzoeken',
- 'approve' => 'Goedkeuren',
- 'bounty' => 'gave',
- 'bounty-claimed' => 'Bounty beweerde',
- 'bounty-unclaimed' => 'Bounty niet opgeëist',
- 'category' => 'Categorie',
- 'claim' => 'vordering',
- 'claim-anon-choose' => 'Kies alstublieft verstandig',
- 'claim-as-anon' => 'Zou je dit op een anonieme manier willen claimen',
- 'claim-now' => 'Claim nu',
- 'claimed' => 'beweerde',
- 'current' => 'Stroom',
- 'delete' => 'Verwijder dit verzoek',
+ 'add-request' => 'Verzoek toevoegen',
+ 'age' => 'Leeftijd',
+ 'all-requests' => 'Alle verzoeken',
+ 'approve' => 'Goedkeuren',
+ 'bounty' => 'gave',
+ 'bounty-claimed' => 'Bounty beweerde',
+ 'bounty-unclaimed' => 'Bounty niet opgeëist',
+ 'category' => 'Categorie',
+ 'claim' => 'vordering',
+ 'claim-anon-choose' => 'Kies alstublieft verstandig',
+ 'claim-as-anon' => 'Zou je dit op een anonieme manier willen claimen',
+ 'claim-now' => 'Claim nu',
+ 'claimed' => 'beweerde',
+ 'current' => 'Stroom',
+ 'delete' => 'Verwijder dit verzoek',
'delete-confirmation' => 'Weet je zeker dat je deze aanvraag wilt verwijderen?',
- 'delete-filled' => 'Dit verzoek kan alleen worden verwijderd als het niet is ingevuld',
- 'description' => 'Omschrijving',
- 'dont-have-bps' => 'Je hebt niet genoeg bonus',
- 'edit-request' => 'Verzoek bewerken',
- 'enter-bp' => 'Voer bonuspunten in (minimaal 100)',
- 'enter-hash' => 'Voer de Info Hash van de geüploade Torrent in',
- 'fill' => 'Vullen',
- 'fill-request' => 'Vul dit verzoek in',
- 'filled' => 'gevulde',
- 'filled-by' => 'Gevuld door',
- 'for' => 'voor',
- 'fulfill' => 'vervullen',
- 'last-vote' => 'Laatste stem',
- 'my-requests' => 'Mijn aanvragen',
- 'no' => 'Nee,',
- 'no-imdb-id' => 'Alle aanvragen moeten een IMDB-nummer bevatten',
- 'no-privileges' => 'Fout: uw verzoekrechten zijn uitgeschakeld',
- 'no-privileges-desc' => 'Als u denkt dat dit niet klopt, neemt u contact op met Staff',
- 'no-refunds' => 'BON-uitwisselingen over creëren, vullen en premies zijn definitief!
GEEN GELD TERUG!',
- 'pending' => 'In afwachting',
- 'reason' => 'Reden',
- 'reject' => 'afwijzen',
- 'report' => 'Rapportaanvraag',
- 'request' => 'Verzoek',
- 'request-details' => 'Vraag details aan',
- 'requested-by' => 'Aangevraagd door',
- 'requests' => 'verzoeken',
- 'required' => 'Verplicht',
- 'reset' => 'Reset',
- 'reset-confirmation' => 'Weet je zeker dat je dit verzoek wilt resetten?',
- 'reset-request' => 'Reset dit verzoek',
- 'reward' => 'Beloning',
- 'reward-desc' => 'Hoeveel bonuspunt zou u willen belonen? Minimaal 100 BP',
- 'reward-from' => 'Van',
- 'title' => 'Titel',
- 'torrent-hash' => 'Torrent Hash',
- 'total-bounty' => 'Totale premie',
- 'type' => 'Type',
- 'unclaim' => 'Open dit verzoek',
- 'unfilled' => 'ongevuld',
- 'view-filled' => 'Bekijk gevuld',
- 'view-unfilled' => 'Bekijk ongevuld',
- 'vote' => 'Stemmen',
- 'vote-that' => 'Stem op dit verzoek',
- 'voters' => 'kiezers',
- 'votes' => 'stemmen',
- 'yes' => 'Ja',
+ 'delete-filled' => 'Dit verzoek kan alleen worden verwijderd als het niet is ingevuld',
+ 'description' => 'Omschrijving',
+ 'dont-have-bps' => 'Je hebt niet genoeg bonus',
+ 'edit-request' => 'Verzoek bewerken',
+ 'enter-bp' => 'Voer bonuspunten in (minimaal 100)',
+ 'enter-hash' => 'Voer de Info Hash van de geüploade Torrent in',
+ 'fill' => 'Vullen',
+ 'fill-request' => 'Vul dit verzoek in',
+ 'filled' => 'gevulde',
+ 'filled-by' => 'Gevuld door',
+ 'for' => 'voor',
+ 'fulfill' => 'vervullen',
+ 'last-vote' => 'Laatste stem',
+ 'my-requests' => 'Mijn aanvragen',
+ 'no' => 'Nee,',
+ 'no-imdb-id' => 'Alle aanvragen moeten een IMDB-nummer bevatten',
+ 'no-privileges' => 'Fout: uw verzoekrechten zijn uitgeschakeld',
+ 'no-privileges-desc' => 'Als u denkt dat dit niet klopt, neemt u contact op met Staff',
+ 'no-refunds' => 'BON-uitwisselingen over creëren, vullen en premies zijn definitief!
GEEN GELD TERUG!',
+ 'pending' => 'In afwachting',
+ 'reason' => 'Reden',
+ 'reject' => 'afwijzen',
+ 'report' => 'Rapportaanvraag',
+ 'request' => 'Verzoek',
+ 'request-details' => 'Vraag details aan',
+ 'requested-by' => 'Aangevraagd door',
+ 'requests' => 'verzoeken',
+ 'required' => 'Verplicht',
+ 'reset' => 'Reset',
+ 'reset-confirmation' => 'Weet je zeker dat je dit verzoek wilt resetten?',
+ 'reset-request' => 'Reset dit verzoek',
+ 'reward' => 'Beloning',
+ 'reward-desc' => 'Hoeveel bonuspunt zou u willen belonen? Minimaal 100 BP',
+ 'reward-from' => 'Van',
+ 'title' => 'Titel',
+ 'torrent-hash' => 'Torrent Hash',
+ 'total-bounty' => 'Totale premie',
+ 'type' => 'Type',
+ 'unclaim' => 'Open dit verzoek',
+ 'unfilled' => 'ongevuld',
+ 'view-filled' => 'Bekijk gevuld',
+ 'view-unfilled' => 'Bekijk ongevuld',
+ 'vote' => 'Stemmen',
+ 'vote-that' => 'Stem op dit verzoek',
+ 'voters' => 'kiezers',
+ 'votes' => 'stemmen',
+ 'yes' => 'Ja',
];
diff --git a/lang/nl/rss.php b/lang/nl/rss.php
index bbefdf87e..e4e34c50e 100644
--- a/lang/nl/rss.php
+++ b/lang/nl/rss.php
@@ -12,19 +12,19 @@
*/
return [
- 'create' => 'creëren',
+ 'create' => 'creëren',
'create-private-feed' => 'Maak een privé RSS-feed',
- 'create-public-feed' => 'Maak openbare RSS-feed',
- 'delete' => 'Verwijder',
- 'edit' => 'Bewerk',
- 'edit-private-feed' => 'Bewerk privé RSS-feed',
- 'edit-public-feed' => 'Bewerk openbare RSS-feed',
- 'feed' => 'Voeden',
- 'feeds' => 'feeds',
- 'name' => 'Naam',
- 'public' => 'Openbaar',
- 'private' => 'Privaat',
- 'rss' => 'RSS',
- 'rss-feed' => 'RSS-feed',
- 'type' => 'Type',
+ 'create-public-feed' => 'Maak openbare RSS-feed',
+ 'delete' => 'Verwijder',
+ 'edit' => 'Bewerk',
+ 'edit-private-feed' => 'Bewerk privé RSS-feed',
+ 'edit-public-feed' => 'Bewerk openbare RSS-feed',
+ 'feed' => 'Voeden',
+ 'feeds' => 'feeds',
+ 'name' => 'Naam',
+ 'public' => 'Openbaar',
+ 'private' => 'Privaat',
+ 'rss' => 'RSS',
+ 'rss-feed' => 'RSS-feed',
+ 'type' => 'Type',
];
diff --git a/lang/nl/staff.php b/lang/nl/staff.php
index 380cacc81..f9e6823e1 100644
--- a/lang/nl/staff.php
+++ b/lang/nl/staff.php
@@ -12,48 +12,48 @@
*/
return [
- 'audit-log' => 'Activiteiten logboek',
- 'articles' => 'artikelen',
- 'applications' => 'toepassingen',
- 'bans-log' => 'Bans Log',
- 'blocks' => 'Blocks',
- 'bot' => 'Bot',
- 'bots' => 'bots',
- 'chat' => 'babbelen',
- 'config-manager' => 'Config Manager',
- 'dashboard' => 'Dashboard',
- 'failed-login-log' => 'Mislukt Inloggen Log',
- 'flush-ghost-peers' => 'Flush Ghost Peers',
- 'forums' => 'Forums',
- 'frontend' => 'Voorkant',
- 'general-tools' => 'Algemene hulpmiddelen',
- 'groups' => 'groepen',
- 'invites-log' => 'Uitnodigt logboek',
- 'laravel-log' => 'Laravel Log',
- 'links' => 'Links',
- 'logs' => 'logs',
- 'mass-pm' => 'Massa PM',
- 'mass-validate-users' => 'Mass valideer gebruikers',
- 'moderation' => 'Met mate',
- 'pages' => 'Pages',
- 'please-moderate' => 'Gelieve deze Torrent te modereren!',
- 'polls' => 'Polls',
- 'reports-log' => 'Rapporten log',
- 'rss' => 'RSS',
- 'staff-dashboard' => 'Personeelsdashboard',
- 'torrent-categories' => 'Torrent-categorieën',
- 'torrent-moderation' => 'Torrent Moderatie',
- 'torrent-tools' => 'Torrent Tools',
- 'torrent-types' => 'Torrent-typen',
- 'torrents' => 'torrents',
- 'user-gifting' => 'Gebruiker Gifting',
- 'user-notes' => 'Gebruikersnotities Log',
- 'user-search' => 'Gebruikers zoeken',
- 'user-tools' => 'Gebruikersinstellingen',
- 'warnings-log' => 'Waarschuwingen Log',
- 'you-have' => 'Jij hebt',
+ 'audit-log' => 'Activiteiten logboek',
+ 'articles' => 'artikelen',
+ 'applications' => 'toepassingen',
+ 'bans-log' => 'Bans Log',
+ 'blocks' => 'Blocks',
+ 'bot' => 'Bot',
+ 'bots' => 'bots',
+ 'chat' => 'babbelen',
+ 'config-manager' => 'Config Manager',
+ 'dashboard' => 'Dashboard',
+ 'failed-login-log' => 'Mislukt Inloggen Log',
+ 'flush-ghost-peers' => 'Flush Ghost Peers',
+ 'forums' => 'Forums',
+ 'frontend' => 'Voorkant',
+ 'general-tools' => 'Algemene hulpmiddelen',
+ 'groups' => 'groepen',
+ 'invites-log' => 'Uitnodigt logboek',
+ 'laravel-log' => 'Laravel Log',
+ 'links' => 'Links',
+ 'logs' => 'logs',
+ 'mass-pm' => 'Massa PM',
+ 'mass-validate-users' => 'Mass valideer gebruikers',
+ 'moderation' => 'Met mate',
+ 'pages' => 'Pages',
+ 'please-moderate' => 'Gelieve deze Torrent te modereren!',
+ 'polls' => 'Polls',
+ 'reports-log' => 'Rapporten log',
+ 'rss' => 'RSS',
+ 'staff-dashboard' => 'Personeelsdashboard',
+ 'torrent-categories' => 'Torrent-categorieën',
+ 'torrent-moderation' => 'Torrent Moderatie',
+ 'torrent-tools' => 'Torrent Tools',
+ 'torrent-types' => 'Torrent-typen',
+ 'torrents' => 'torrents',
+ 'user-gifting' => 'Gebruiker Gifting',
+ 'user-notes' => 'Gebruikersnotities Log',
+ 'user-search' => 'Gebruikers zoeken',
+ 'user-tools' => 'Gebruikersinstellingen',
+ 'warnings-log' => 'Waarschuwingen Log',
+ 'you-have' => 'Jij hebt',
'possible-leech-cheaters' => 'Mogelijke valsspelers',
- 'chat-tools' => 'Chat-hulpmiddelen',
- 'flush-chat' => 'Chatbox spoelen',
- 'seedboxes' => 'Geregistreerde zaaddozen',
+ 'chat-tools' => 'Chat-hulpmiddelen',
+ 'flush-chat' => 'Chatbox spoelen',
+ 'seedboxes' => 'Geregistreerde zaaddozen',
];
diff --git a/lang/nl/stat.php b/lang/nl/stat.php
index a09b8b1fa..88f7a0697 100644
--- a/lang/nl/stat.php
+++ b/lang/nl/stat.php
@@ -12,40 +12,40 @@
*/
return [
- 'by-count' => 'Door graaf',
- 'by-data' => 'Door gegevens',
- 'by-volume' => 'Op volume',
- 'group' => 'Groep',
- 'groups' => 'groepen',
- 'nerd-stats' => 'Nerd-statistieken',
- 'nerd-stats-desc' => 'We houden allemaal van statistieken. Hier zijn een paar die we belangrijk vinden',
- 'registration-date' => 'Registratie datum',
- 'request-fulfilled' => 'Verzoek vervuld',
- 'request-not-fulfilled' => 'Verzoek niet vervuld',
+ 'by-count' => 'Door graaf',
+ 'by-data' => 'Door gegevens',
+ 'by-volume' => 'Op volume',
+ 'group' => 'Groep',
+ 'groups' => 'groepen',
+ 'nerd-stats' => 'Nerd-statistieken',
+ 'nerd-stats-desc' => 'We houden allemaal van statistieken. Hier zijn een paar die we belangrijk vinden',
+ 'registration-date' => 'Registratie datum',
+ 'request-fulfilled' => 'Verzoek vervuld',
+ 'request-not-fulfilled' => 'Verzoek niet vervuld',
'request-pending-aproval' => 'Verzoek in afwachting van een test',
- 'select-category' => 'Selecteer een categorie hieronder',
- 'site-stats' => 'Sitestatistieken',
- 'stats' => 'Stats',
- 'stats-format' => 'Alle statistieken weergegeven in Top 100-formaat',
- 'top-bankers' => 'Top bankiers',
- 'top-bountied' => 'Top Bountied',
- 'top-completed' => 'Top voltooid',
- 'top-dead' => 'Top doden',
- 'top-downloaded' => 'Top gedownloade Torrents',
- 'top-downloaders' => 'Top downloaders',
- 'top-dying' => 'Top Dying',
- 'top-leeched' => 'Top Leeched',
- 'top-leechers' => 'Top Leechers',
- 'top-seeded' => 'Top gezaaid',
- 'top-seeding' => 'Top zaaien',
- 'top-seeders' => 'Topzaaimachines',
- 'top-seedsize' => 'Top Seedsize',
- 'top-seedtime' => 'Top zaadtijd',
- 'top-uploaders' => 'Top uploaders',
- 'total-download' => 'Totale download',
- 'total-torrents' => 'Total Torrents',
- 'total-traffic' => 'Totaal verkeer',
- 'total-upload' => 'Totale upload',
- 'users-in-group' => 'Gebruikers in groep',
- 'users-per-group' => 'Gebruikers per groep',
+ 'select-category' => 'Selecteer een categorie hieronder',
+ 'site-stats' => 'Sitestatistieken',
+ 'stats' => 'Stats',
+ 'stats-format' => 'Alle statistieken weergegeven in Top 100-formaat',
+ 'top-bankers' => 'Top bankiers',
+ 'top-bountied' => 'Top Bountied',
+ 'top-completed' => 'Top voltooid',
+ 'top-dead' => 'Top doden',
+ 'top-downloaded' => 'Top gedownloade Torrents',
+ 'top-downloaders' => 'Top downloaders',
+ 'top-dying' => 'Top Dying',
+ 'top-leeched' => 'Top Leeched',
+ 'top-leechers' => 'Top Leechers',
+ 'top-seeded' => 'Top gezaaid',
+ 'top-seeding' => 'Top zaaien',
+ 'top-seeders' => 'Topzaaimachines',
+ 'top-seedsize' => 'Top Seedsize',
+ 'top-seedtime' => 'Top zaadtijd',
+ 'top-uploaders' => 'Top uploaders',
+ 'total-download' => 'Totale download',
+ 'total-torrents' => 'Total Torrents',
+ 'total-traffic' => 'Totaal verkeer',
+ 'total-upload' => 'Totale upload',
+ 'users-in-group' => 'Gebruikers in groep',
+ 'users-per-group' => 'Gebruikers per groep',
];
diff --git a/lang/nl/torrent.php b/lang/nl/torrent.php
index edb85aa75..f45150a8f 100644
--- a/lang/nl/torrent.php
+++ b/lang/nl/torrent.php
@@ -12,197 +12,197 @@
*/
return [
- 'activity' => 'Activiteit',
- 'age' => 'Leeftijd',
- 'agent' => 'Middel',
- 'alive' => 'levend',
- 'announce-url' => 'Kondig URL aan',
- 'announce-url-desc' => 'Gebruik alstublieft de aankondigings-URL hierboven bij het maken van een nieuwe torrent. Als je je torrent wilt gebruiken zonder deze van de site te downloaden, moet je de private flag en source to: source instellen',
- 'announce-url-desc-url' => 'Problemen hebben? Zie onze gids HIER',
- 'announce-url-desc2' => 'TMDB en IMDB zijn vereist voor alle uploads! Het wordt gebruikt om Posters / Backdrops en ExtraInfo te grijpen',
- 'approved' => 'aangenomen',
- 'audio' => 'audio',
- 'bon-tipped' => 'BON getipt',
- 'bookmark' => 'Bladwijzer',
- 'bookmarks' => 'bladwijzers',
- 'bump' => 'Buil',
- 'cant-upload' => 'Fout: uw uploadrechten zijn uitgeschakeld',
- 'cant-upload-desc' => 'Als u denkt dat dit fout is, neem dan contact op met het personeel',
- 'cards' => 'Kaarten',
- 'cards-view' => 'Torrent-kaarten bekijken',
- 'categories' => 'Categorieën',
- 'category' => 'Categorie',
- 'client' => 'Cliënt',
- 'commited' => 'toegewijd',
- 'completed' => 'Voltooid',
- 'completed_at' => 'Voltooid op',
- 'completed-not-seeding' => 'Je hebt deze download voltooid, maar je kunt hem niet langer inzaaien',
- 'created_at' => 'Gemaakt bij',
- 'credited' => 'gecrediteerd',
- 'current' => 'Stroom',
- 'current-filters' => 'Huidige filters',
- 'currently-leeching' => 'Momenteel Leeching',
- 'currently-seeding' => 'Momenteel zaaien',
- 'dead-torrent' => 'Dode Torrent',
- 'dead-torrents' => 'Dead Torrents',
- 'delete-bookmark' => 'Verwijder deze bladwijzer',
- 'description' => 'Omschrijving',
- 'discounts' => 'Kortingen',
- 'double-upload' => 'Dubbele upload',
- 'download-all' => 'Download alles',
- 'download-check' => 'Controle downloaden',
- 'downloaded' => 'gedownloade',
- 'dying-torrent' => 'Stervende Torrent',
- 'dying-torrents' => 'Stervende Torrents',
- 'encode-settings' => 'Encode-instellingen',
- 'estimated-ratio' => 'Geschatte ratio na download',
- 'failed' => 'mislukt',
- 'feature' => 'Voorzien zijn van',
- 'featured' => 'Uitgelicht',
- 'featured-desc' => 'Aanbevolen torrents zijn 100% gratis en Dubbele upload!',
- 'featured-until' => 'Dit is een aanbevolen Torrent tot',
- 'file' => 'het dossier',
- 'filters' => 'filters',
- 'fl-tokens-left' => 'Jij hebt : tokens verlaten',
- 'freeleech' => 'Freeleech',
- 'freeleech-token' => 'Freeleech-token',
- 'general' => 'Algemeen',
- 'genre' => 'Genre',
- 'global-double-upload' => 'Wereldwijde dubbele upload',
- 'global-freeleech' => 'Wereldwijde freeleech',
- 'grant' => 'Verlenen',
- 'greater-than' => 'Groter dan',
- 'grouping' => 'Groepering',
- 'groupings' => 'groeperingen',
- 'grouping-categories' => 'Categorieën groeperen',
+ 'activity' => 'Activiteit',
+ 'age' => 'Leeftijd',
+ 'agent' => 'Middel',
+ 'alive' => 'levend',
+ 'announce-url' => 'Kondig URL aan',
+ 'announce-url-desc' => 'Gebruik alstublieft de aankondigings-URL hierboven bij het maken van een nieuwe torrent. Als je je torrent wilt gebruiken zonder deze van de site te downloaden, moet je de private flag en source to: source instellen',
+ 'announce-url-desc-url' => 'Problemen hebben? Zie onze gids HIER',
+ 'announce-url-desc2' => 'TMDB en IMDB zijn vereist voor alle uploads! Het wordt gebruikt om Posters / Backdrops en ExtraInfo te grijpen',
+ 'approved' => 'aangenomen',
+ 'audio' => 'audio',
+ 'bon-tipped' => 'BON getipt',
+ 'bookmark' => 'Bladwijzer',
+ 'bookmarks' => 'bladwijzers',
+ 'bump' => 'Buil',
+ 'cant-upload' => 'Fout: uw uploadrechten zijn uitgeschakeld',
+ 'cant-upload-desc' => 'Als u denkt dat dit fout is, neem dan contact op met het personeel',
+ 'cards' => 'Kaarten',
+ 'cards-view' => 'Torrent-kaarten bekijken',
+ 'categories' => 'Categorieën',
+ 'category' => 'Categorie',
+ 'client' => 'Cliënt',
+ 'commited' => 'toegewijd',
+ 'completed' => 'Voltooid',
+ 'completed_at' => 'Voltooid op',
+ 'completed-not-seeding' => 'Je hebt deze download voltooid, maar je kunt hem niet langer inzaaien',
+ 'created_at' => 'Gemaakt bij',
+ 'credited' => 'gecrediteerd',
+ 'current' => 'Stroom',
+ 'current-filters' => 'Huidige filters',
+ 'currently-leeching' => 'Momenteel Leeching',
+ 'currently-seeding' => 'Momenteel zaaien',
+ 'dead-torrent' => 'Dode Torrent',
+ 'dead-torrents' => 'Dead Torrents',
+ 'delete-bookmark' => 'Verwijder deze bladwijzer',
+ 'description' => 'Omschrijving',
+ 'discounts' => 'Kortingen',
+ 'double-upload' => 'Dubbele upload',
+ 'download-all' => 'Download alles',
+ 'download-check' => 'Controle downloaden',
+ 'downloaded' => 'gedownloade',
+ 'dying-torrent' => 'Stervende Torrent',
+ 'dying-torrents' => 'Stervende Torrents',
+ 'encode-settings' => 'Encode-instellingen',
+ 'estimated-ratio' => 'Geschatte ratio na download',
+ 'failed' => 'mislukt',
+ 'feature' => 'Voorzien zijn van',
+ 'featured' => 'Uitgelicht',
+ 'featured-desc' => 'Aanbevolen torrents zijn 100% gratis en Dubbele upload!',
+ 'featured-until' => 'Dit is een aanbevolen Torrent tot',
+ 'file' => 'het dossier',
+ 'filters' => 'filters',
+ 'fl-tokens-left' => 'Jij hebt : tokens verlaten',
+ 'freeleech' => 'Freeleech',
+ 'freeleech-token' => 'Freeleech-token',
+ 'general' => 'Algemeen',
+ 'genre' => 'Genre',
+ 'global-double-upload' => 'Wereldwijde dubbele upload',
+ 'global-freeleech' => 'Wereldwijde freeleech',
+ 'grant' => 'Verlenen',
+ 'greater-than' => 'Groter dan',
+ 'grouping' => 'Groepering',
+ 'groupings' => 'groeperingen',
+ 'grouping-categories' => 'Categorieën groeperen',
'grouping-categories-desc' => 'Welke categorie zou je willen groeperen?',
- 'grouping-results' => 'Resultaten groeperen',
- 'groupings-view' => 'Groupings View',
- 'have-completed' => 'Voltooid',
- 'have-downloaded' => 'gedownloade',
- 'have-not-completed' => 'Niet voltooid',
- 'have-not-downloaded' => 'Niet gedownload',
- 'health' => 'Gezondheid',
- 'history' => 'Geschiedenis',
- 'hitrun' => 'H & R?',
- 'hit-and-runs' => 'Hit and Run telt',
- 'immune' => 'Immune?',
- 'info' => 'info',
- 'internal' => 'intern',
- 'internal-release' => 'Interne release',
- 'last-seed-activity' => 'Laatste zaadactiviteit',
- 'last-seeder' => 'U bent de laatste overgebleven zaaimachine! (is minimaal 3 keer gedownload)',
- 'last-update' => 'Laatste update',
- 'leave-tip' => 'Verlaat tip',
- 'leecher' => 'leecher',
- 'leechers' => 'leechers',
- 'leeching' => 'Leeching',
- 'left' => 'Links',
- 'legendary-seeder' => 'Legendarische zaaimachine',
- 'legendary-torrent' => 'Legendarische torrent',
- 'list' => 'Lijst',
- 'me' => 'Me',
- 'media-info' => 'Media informatie',
- 'media-info-parser' => 'MediaInfo Parser',
- 'media-info-paste' => 'Plak hier MediaInfo-dump',
- 'meta-desc' => 'Downloaden: naam op maximale snelheid',
- 'moderation' => 'Met mate',
- 'movies' => 'Films',
- 'mvp' => 'MVP',
- 'my-active-torrents' => 'Mijn actieve torrents',
- 'name' => 'Naam',
- 'no-bookmarks' => 'Er zijn geen bladwijzers gevonden.',
- 'no-discounts' => 'Momenteel geen kortingen',
- 'no-meta' => 'Geen metadata gevonden',
- 'no-privileges' => 'Je kunt dit bestand niet downloaden - kijk hieronder voor meer info',
- 'no-privileges-desc' => 'Los de hierboven mislukte resultaten op om de downloadknop weer te geven',
- 'not-completed' => 'Begonnen met downloaden maar nog nooit voltooid',
- 'not-downloaded' => 'Niet gedownload',
- 'old-torrent' => 'Oude torrent',
- 'optional' => 'facultatief',
- 'original-output' => 'Toon / Verberg originele uitvoer',
- 'participant' => 'Deelnemer',
- 'passed' => 'Geslaagd',
- 'peers' => 'peers',
- 'pending' => 'In afwachting',
- 'personal-freeleech' => 'Persoonlijke Freeleech',
- 'poster' => 'Poster',
- 'poster-view' => 'Posterweergave',
- 'posters' => 'Posters',
- 'prewarn' => 'Waarschuwde?',
- 'progress' => 'Vooruitgang',
- 'quick-comment' => 'Snelle reactie',
- 'quick-tip' => 'Snelle tipbedragen',
- 'rated' => 'Beoordeeld',
- 'rating' => 'Beoordeling',
- 'ready' => 'Dit bestand is klaar om te downloaden',
- 'rejected' => 'Verworpen',
- 'released' => 'Vrijgelaten',
- 'remaining' => 'resterende',
- 'request-reseed' => 'Verzoek Reseed',
- 'requires-reseed' => 'Vereist Reseed',
- 'resurrections' => 'Resurrections',
- 'revoke' => 'Intrekken',
- 'rss' => 'RSS',
- 'runtime' => 'runtime',
- 'satisfied_in' => 'Tevreden in',
- 'say-thanks' => 'Vergeet niet om zo lang mogelijk dank en zaad te zeggen',
- 'sd-content' => 'SD-inhoud',
- 'search' => 'Zoeken',
- 'seed-time' => 'Zaad tijd',
- 'seeder' => 'Zaaimachine',
- 'seeders' => 'zaaimachines',
- 'seeding' => 'zaaien',
- 'seedsize' => 'Seedsize',
- 'seedtime' => 'Zaaitijd',
- 'short-completed' => 'C',
- 'short-leechs' => 'L',
- 'short-seeds' => 'S',
- 'show-files' => 'Laat bestanden zien',
- 'similar' => 'Vergelijkbare Torrents',
- 'size' => 'Grootte',
- 'special' => 'speciaal',
- 'special-freeleech' => 'Speciale Freeleech',
- 'started' => 'Begonnen',
- 'status' => 'staat',
- 'statistics' => 'Statistieken',
- 'stats' => 'Stats',
- 'sticky' => 'Kleverig',
- 'stream-optimized' => 'Stream geoptimaliseerd',
- 'subtitle' => 'subtitel',
- 'team-player' => 'Team speler',
- 'thank' => 'bedanken',
- 'thanked' => 'bedankte',
- 'thanks' => 'Bedankt',
- 'thanks-given' => 'Bedankt gegeven',
- 'times' => 'Times',
- 'tip-jar' => 'Fooienpot',
- 'title' => 'Titel',
- 'titles' => 'titels',
- 'top-completed' => 'Top voltooid',
- 'top-dead' => 'Top dood',
- 'top-dying' => 'Top sterven',
- 'top-leeched' => 'Top leeched',
- 'top-seeded' => 'Top gezaaid',
- 'torrent' => 'stortvloed',
- 'torrent-request' => 'Torrent-aanvraag',
- 'torrent-tips' => 'In totaal : de totale BON is getipt voor de uploader, waarvan : de gebruiker is van jou',
- 'torrent-tips-desc' => 'Dit wordt afgetrokken van uw beschikbare bonuspunten',
- 'torrents' => 'torrents',
- 'trailer' => 'Bekijk trailer',
- 'type' => 'Type',
- 'types' => 'Types',
- 'unbookmark' => 'Unbookmark',
- 'unsatisfieds' => 'Unsatisfieds',
- 'unsticky' => 'unsticky',
- 'updated' => 'bijgewerkt',
- 'updated_at' => 'Bijgewerkt om',
- 'uploaded' => 'geüpload',
- 'uploaded-by' => 'Geupload door',
- 'uploader' => 'Uploader',
- 'use-fl-token' => 'Gebruik een Freeleech-token',
- 'video' => 'Video',
- 'view-more' => 'Bekijk meer',
- 'view-trailer' => 'Bekijk trailer',
- 'votes' => 'stemmen',
+ 'grouping-results' => 'Resultaten groeperen',
+ 'groupings-view' => 'Groupings View',
+ 'have-completed' => 'Voltooid',
+ 'have-downloaded' => 'gedownloade',
+ 'have-not-completed' => 'Niet voltooid',
+ 'have-not-downloaded' => 'Niet gedownload',
+ 'health' => 'Gezondheid',
+ 'history' => 'Geschiedenis',
+ 'hitrun' => 'H & R?',
+ 'hit-and-runs' => 'Hit and Run telt',
+ 'immune' => 'Immune?',
+ 'info' => 'info',
+ 'internal' => 'intern',
+ 'internal-release' => 'Interne release',
+ 'last-seed-activity' => 'Laatste zaadactiviteit',
+ 'last-seeder' => 'U bent de laatste overgebleven zaaimachine! (is minimaal 3 keer gedownload)',
+ 'last-update' => 'Laatste update',
+ 'leave-tip' => 'Verlaat tip',
+ 'leecher' => 'leecher',
+ 'leechers' => 'leechers',
+ 'leeching' => 'Leeching',
+ 'left' => 'Links',
+ 'legendary-seeder' => 'Legendarische zaaimachine',
+ 'legendary-torrent' => 'Legendarische torrent',
+ 'list' => 'Lijst',
+ 'me' => 'Me',
+ 'media-info' => 'Media informatie',
+ 'media-info-parser' => 'MediaInfo Parser',
+ 'media-info-paste' => 'Plak hier MediaInfo-dump',
+ 'meta-desc' => 'Downloaden: naam op maximale snelheid',
+ 'moderation' => 'Met mate',
+ 'movies' => 'Films',
+ 'mvp' => 'MVP',
+ 'my-active-torrents' => 'Mijn actieve torrents',
+ 'name' => 'Naam',
+ 'no-bookmarks' => 'Er zijn geen bladwijzers gevonden.',
+ 'no-discounts' => 'Momenteel geen kortingen',
+ 'no-meta' => 'Geen metadata gevonden',
+ 'no-privileges' => 'Je kunt dit bestand niet downloaden - kijk hieronder voor meer info',
+ 'no-privileges-desc' => 'Los de hierboven mislukte resultaten op om de downloadknop weer te geven',
+ 'not-completed' => 'Begonnen met downloaden maar nog nooit voltooid',
+ 'not-downloaded' => 'Niet gedownload',
+ 'old-torrent' => 'Oude torrent',
+ 'optional' => 'facultatief',
+ 'original-output' => 'Toon / Verberg originele uitvoer',
+ 'participant' => 'Deelnemer',
+ 'passed' => 'Geslaagd',
+ 'peers' => 'peers',
+ 'pending' => 'In afwachting',
+ 'personal-freeleech' => 'Persoonlijke Freeleech',
+ 'poster' => 'Poster',
+ 'poster-view' => 'Posterweergave',
+ 'posters' => 'Posters',
+ 'prewarn' => 'Waarschuwde?',
+ 'progress' => 'Vooruitgang',
+ 'quick-comment' => 'Snelle reactie',
+ 'quick-tip' => 'Snelle tipbedragen',
+ 'rated' => 'Beoordeeld',
+ 'rating' => 'Beoordeling',
+ 'ready' => 'Dit bestand is klaar om te downloaden',
+ 'rejected' => 'Verworpen',
+ 'released' => 'Vrijgelaten',
+ 'remaining' => 'resterende',
+ 'request-reseed' => 'Verzoek Reseed',
+ 'requires-reseed' => 'Vereist Reseed',
+ 'resurrections' => 'Resurrections',
+ 'revoke' => 'Intrekken',
+ 'rss' => 'RSS',
+ 'runtime' => 'runtime',
+ 'satisfied_in' => 'Tevreden in',
+ 'say-thanks' => 'Vergeet niet om zo lang mogelijk dank en zaad te zeggen',
+ 'sd-content' => 'SD-inhoud',
+ 'search' => 'Zoeken',
+ 'seed-time' => 'Zaad tijd',
+ 'seeder' => 'Zaaimachine',
+ 'seeders' => 'zaaimachines',
+ 'seeding' => 'zaaien',
+ 'seedsize' => 'Seedsize',
+ 'seedtime' => 'Zaaitijd',
+ 'short-completed' => 'C',
+ 'short-leechs' => 'L',
+ 'short-seeds' => 'S',
+ 'show-files' => 'Laat bestanden zien',
+ 'similar' => 'Vergelijkbare Torrents',
+ 'size' => 'Grootte',
+ 'special' => 'speciaal',
+ 'special-freeleech' => 'Speciale Freeleech',
+ 'started' => 'Begonnen',
+ 'status' => 'staat',
+ 'statistics' => 'Statistieken',
+ 'stats' => 'Stats',
+ 'sticky' => 'Kleverig',
+ 'stream-optimized' => 'Stream geoptimaliseerd',
+ 'subtitle' => 'subtitel',
+ 'team-player' => 'Team speler',
+ 'thank' => 'bedanken',
+ 'thanked' => 'bedankte',
+ 'thanks' => 'Bedankt',
+ 'thanks-given' => 'Bedankt gegeven',
+ 'times' => 'Times',
+ 'tip-jar' => 'Fooienpot',
+ 'title' => 'Titel',
+ 'titles' => 'titels',
+ 'top-completed' => 'Top voltooid',
+ 'top-dead' => 'Top dood',
+ 'top-dying' => 'Top sterven',
+ 'top-leeched' => 'Top leeched',
+ 'top-seeded' => 'Top gezaaid',
+ 'torrent' => 'stortvloed',
+ 'torrent-request' => 'Torrent-aanvraag',
+ 'torrent-tips' => 'In totaal : de totale BON is getipt voor de uploader, waarvan : de gebruiker is van jou',
+ 'torrent-tips-desc' => 'Dit wordt afgetrokken van uw beschikbare bonuspunten',
+ 'torrents' => 'torrents',
+ 'trailer' => 'Bekijk trailer',
+ 'type' => 'Type',
+ 'types' => 'Types',
+ 'unbookmark' => 'Unbookmark',
+ 'unsatisfieds' => 'Unsatisfieds',
+ 'unsticky' => 'unsticky',
+ 'updated' => 'bijgewerkt',
+ 'updated_at' => 'Bijgewerkt om',
+ 'uploaded' => 'geüpload',
+ 'uploaded-by' => 'Geupload door',
+ 'uploader' => 'Uploader',
+ 'use-fl-token' => 'Gebruik een Freeleech-token',
+ 'video' => 'Video',
+ 'view-more' => 'Bekijk meer',
+ 'view-trailer' => 'Bekijk trailer',
+ 'votes' => 'stemmen',
];
diff --git a/lang/nl/user.php b/lang/nl/user.php
index 826f43e19..624e401d3 100644
--- a/lang/nl/user.php
+++ b/lang/nl/user.php
@@ -12,316 +12,316 @@
*/
return [
- 'about' => 'Wat betreft',
- 'about-me' => 'Over mij',
- 'accepted-at' => 'Geaccepteerd om',
- 'accepted-by' => 'Geaccepteerd door',
- 'account-notification' => 'Instellingen voor accountmeldingen',
- 'account-notification-follow' => 'Ontvang een melding wanneer een gebruiker uw account volgt',
- 'account-notification-unfollow' => 'Ontvang een melding wanneer een gebruiker uw account niet langer volgt',
- 'account-notification-help' => 'Bepaal welke meldingen over uw account worden verzonden. Deze instellingen worden overschreven als u geen groepen toestaat om meldingen over uw account te verzenden of als u Meldingen uitschakelt',
- 'account-settings' => 'Account instellingen',
- 'achievement-privacy' => 'Prestatie-instellingen',
- 'achievement-privacy-list' => 'Sta gebruikers toe om een lijst met uw prestaties te bekijken',
- 'achievement-help' => 'Beheer het delen van specifieke prestatiegerelateerde informatie met groepen die toegang hebben tot uw profiel. Deze instellingen worden opgeheven als u geen groepen toegang geeft tot uw prestaties of als u privé gaat',
- 'achievements' => 'Prestaties',
- 'active' => 'Actief',
- 'active-table' => 'Mijn actieve tabel',
- 'active-torrents' => 'Actieve torrents',
- 'active-warning' => 'Actieve waarschuwing',
- 'active-warnings' => 'Actieve waarschuwingen',
- 'add-seedbox' => 'Seedbox toevoegen',
- 'all-torrents' => 'Alle Torrents',
- 'article-comments' => 'Artikel opmerkingen gemaakt',
- 'avatar' => 'avatar',
- 'avg-seedtime' => 'Gemiddelde zaaitijd',
- 'badges' => 'badges',
- 'ban' => 'Verban gebruiker',
- 'ban-log' => 'Ban Log',
- 'become-hidden' => 'Verstop je',
- 'become-visible' => 'Zichtbaar worden',
- 'bon' => 'BON',
- 'bon-notification' => 'BON-meldingsinstellingen',
- 'bon-notification-gift' => 'Ontvang een melding wanneer een gebruiker je bon cadeau doet',
- 'bon-notification-help' => 'Bepaal welke meldingen worden verzonden over BON-transacties. Deze instellingen worden opgeheven als u geen groepen toestaat om meldingen over BON te verzenden of als u Meldingen uitschakelt',
- 'bookmarks' => 'bladwijzers',
- 'bounty-given' => 'Bounty Given',
- 'bounty-received' => 'Bounty ontvangen',
- 'can-chat' => 'Kan chatten',
- 'can-comment' => 'Kan reageren',
- 'can-download' => 'Kan downloaden',
- 'can-invite' => 'Kan uitnodigen',
- 'can-request' => 'Kan aanvragen',
- 'can-upload' => 'Kan uploaden',
- 'certified-banker' => 'Gecertificeerde bankier',
- 'certified-banker-desc' => 'Heeft 50.000 of meer BON In Bank',
- 'certified-downloader' => 'Gecertificeerde Downloader',
- 'certified-downloader-desc' => '100 of meer Torrents gedownload!',
- 'certified-seeder' => 'Gecertificeerde zaaimachine',
- 'certified-seeder-desc' => '150 of meer Torrents zaaien!',
- 'change-email' => 'E-mail wijzigen',
- 'change-email-help' => 'U moet uw account opnieuw bevestigen nadat u uw e-mailadres hebt gewijzigd',
- 'change-password' => 'Wachtwoord wijzigen',
- 'change-password-help' => 'U moet opnieuw inloggen nadat u uw wachtwoord hebt gewijzigd',
- 'client-ip-address' => 'IP-adres van client',
- 'code' => 'Code',
- 'comments' => 'Comments',
- 'created-on' => 'Gemaakt op',
- 'credited-download' => 'Gecrediteerde download',
- 'credited-upload' => 'Gecrediteerde upload',
- 'current-password' => 'Huidig wachtwoord',
- 'custom-title' => 'Aangepaste titel',
- 'delete' => 'Verwijder gebruiker',
- 'disable-notifications' => 'Meldingen uitschakelen',
- 'disclaimer' => 'ontkenning',
- 'disclaimer-info' => 'We loggen standaard geen gebruikers-IP-adressen zoals de meeste trackers. Door hieronder uw seedbox-IP toe te voegen, wordt verwacht dat u weet dat uw IP-adressen hieronder zijn opgeslagen in onze database, tenzij u de records verwijdert.',
- 'disclaimer-info-bordered' => 'Seedbox IP s toegevoegd zullen dan een torrent-tag met hoge snelheid activeren op torrents die zijn gezaaid van IP s die hieronder worden vermeld',
- 'download-bon' => 'Downloaden verwijderd van BON Store',
- 'download-recorded' => 'Opgenomen download',
- 'download-true' => 'True Download',
- 'downloads' => 'downloads',
- 'edit' => 'bewerk gebruiker',
- 'edit-profile' => 'Bewerk profiel',
- 'enable-notifications' => 'Notificaties aanzetten',
- 'expired' => 'Verlopen',
- 'expires-on' => 'Verloopt op',
- 'extra' => 'Extra',
- 'filled-request' => 'Gevulde ledenaanvragen',
- 'follow' => 'Volgen',
- 'follower-privacy' => 'Follower-instellingen',
- 'follower-privacy-list' => 'Sta gebruikers toe om een lijst met uw volgers te bekijken',
- 'follower-help' => 'Beheer het delen van specifieke volgergerelateerde informatie met groepen die toegang hebben tot uw profiel. Deze instellingen worden overschreven als u geen groepen toegang geeft tot uw volgers of als u privé gaat',
- 'followers' => 'Volgers',
- 'following-notification' => 'Gevolgde gebruikersmeldingsinstellingen',
- 'following-notification-upload' => 'Ontvang een melding wanneer een gevolgde gebruiker een torrent uploadt',
- 'following-notification-help' => 'Bepaal welke meldingen worden verzonden met betrekking tot gevolgde acties op de gebruikerssite. Deze instellingen worden opgeheven als u geen groepen toestaat om meldingen over volgde gebruikers te verzenden of als u Meldingen uitschakelt',
- 'formats-are-supported' => ': formaten worden ondersteund',
- 'forum-notification' => 'Instellingen voor forummeldingen',
- 'forum-notification-topic' => 'Ontvang een melding wanneer een onderwerp dat u hebt gestart een nieuw bericht ontvangt',
- 'forum-notification-help' => 'Bepaal welke meldingen over forumactiviteiten worden verzonden. Deze instellingen worden overschreven als u geen groepen toestaat om meldingen over forumactiviteiten te verzenden of als u Meldingen uitschakelt',
- 'forum-privacy' => 'Forum-instellingen',
- 'forum-privacy-post' => 'Sta gebruikers toe om een lijst met forumberichten te bekijken die u hebt gepost',
- 'forum-privacy-topic' => 'Sta gebruikers toe om een lijst met forumonderwerpen te bekijken die u bent gestart',
- 'forum-help' => 'Beheer het delen van specifieke forumgerelateerde statistieken en informatie met groepen die toegang hebben tot uw profiel. Deze instellingen worden overschreven als u geen groepen toegang geeft tot uw fora-gerelateerde statistieken en informatie of als u privé gaat',
- 'forum-signature' => 'Handtekening van het forum',
- 'forums' => 'Forums',
- 'general' => 'Algemeen',
- 'general-settings' => 'Algemene instellingen',
- 'gift-given' => 'Geschonken geschenk',
- 'gift-received' => 'Geschenk ontvangen',
- 'go-public' => 'Ga openbaar',
- 'go-private' => 'Ga privé',
- 'history' => 'Geschiedenis',
- 'history-table' => 'Mijn geschiedenisstabel',
- 'hit-n-runs' => 'Hit and Runs',
- 'hit-n-runs-count' => 'Hit and Run Count (All Time)',
- 'hit-n-runs-history' => 'Torrent Hit and Runs History',
- 'image' => 'Beeld',
- 'important' => 'Belangrijk',
- 'important-info' => 'Belangrijke informatie',
- 'information' => 'Informatie',
- 'invite-friend' => 'Nodig je vriend uit (e-mail + bericht vereist)',
- 'invite-tree' => 'Boom uitnodigen',
- 'invites' => 'Uitnodigingen',
- 'invites-banned' => 'Fout: uw uitnodigingsrechten zijn uitgeschakeld',
- 'invites-banned-desc' => 'Als je voelt dat dit fout is, neem dan contact op met het personeel!',
- 'invites-count' => 'You Have: count Invite Tokens',
- 'invites-disabled' => 'Let op: uitnodigingen zijn uitgeschakeld vanwege open inschrijving!',
- 'invites-disabled-desc' => 'Kom snel terug!',
- 'invites-rules' => '- Nodig alleen mensen uit die u kent en vertrouwt.
- Je wordt persoonlijk verantwoordelijk gehouden voor diegene die je uitnodigt.
- Nodig jezelf niet uit, we controleren elke uitgenodigde gebruiker.
- Wissel of verkoop geen uitnodigingen.
- Als een persoon die je hebt uitgenodigd wordt betrapt op valsspelen, een handelsrekening of het verkopen / ruilen van uitnodigingen, wordt je gewaarschuwd.
',
- 'invites-send' => 'Nodigt Verzenden uit',
- 'last-login' => 'Laatste aanmelding',
- 'locked' => 'Op slot',
- 'locked-achievements' => 'Gesloten prestaties',
- 'member-since' => 'Lid sinds',
- 'members-desc' => 'Lijst van gebruikers geregistreerd op: titel bij alle groepen. Zoek nu een gebruiker.',
- 'mention-notification' => '@Melding Instellingen voor meldingen',
+ 'about' => 'Wat betreft',
+ 'about-me' => 'Over mij',
+ 'accepted-at' => 'Geaccepteerd om',
+ 'accepted-by' => 'Geaccepteerd door',
+ 'account-notification' => 'Instellingen voor accountmeldingen',
+ 'account-notification-follow' => 'Ontvang een melding wanneer een gebruiker uw account volgt',
+ 'account-notification-unfollow' => 'Ontvang een melding wanneer een gebruiker uw account niet langer volgt',
+ 'account-notification-help' => 'Bepaal welke meldingen over uw account worden verzonden. Deze instellingen worden overschreven als u geen groepen toestaat om meldingen over uw account te verzenden of als u Meldingen uitschakelt',
+ 'account-settings' => 'Account instellingen',
+ 'achievement-privacy' => 'Prestatie-instellingen',
+ 'achievement-privacy-list' => 'Sta gebruikers toe om een lijst met uw prestaties te bekijken',
+ 'achievement-help' => 'Beheer het delen van specifieke prestatiegerelateerde informatie met groepen die toegang hebben tot uw profiel. Deze instellingen worden opgeheven als u geen groepen toegang geeft tot uw prestaties of als u privé gaat',
+ 'achievements' => 'Prestaties',
+ 'active' => 'Actief',
+ 'active-table' => 'Mijn actieve tabel',
+ 'active-torrents' => 'Actieve torrents',
+ 'active-warning' => 'Actieve waarschuwing',
+ 'active-warnings' => 'Actieve waarschuwingen',
+ 'add-seedbox' => 'Seedbox toevoegen',
+ 'all-torrents' => 'Alle Torrents',
+ 'article-comments' => 'Artikel opmerkingen gemaakt',
+ 'avatar' => 'avatar',
+ 'avg-seedtime' => 'Gemiddelde zaaitijd',
+ 'badges' => 'badges',
+ 'ban' => 'Verban gebruiker',
+ 'ban-log' => 'Ban Log',
+ 'become-hidden' => 'Verstop je',
+ 'become-visible' => 'Zichtbaar worden',
+ 'bon' => 'BON',
+ 'bon-notification' => 'BON-meldingsinstellingen',
+ 'bon-notification-gift' => 'Ontvang een melding wanneer een gebruiker je bon cadeau doet',
+ 'bon-notification-help' => 'Bepaal welke meldingen worden verzonden over BON-transacties. Deze instellingen worden opgeheven als u geen groepen toestaat om meldingen over BON te verzenden of als u Meldingen uitschakelt',
+ 'bookmarks' => 'bladwijzers',
+ 'bounty-given' => 'Bounty Given',
+ 'bounty-received' => 'Bounty ontvangen',
+ 'can-chat' => 'Kan chatten',
+ 'can-comment' => 'Kan reageren',
+ 'can-download' => 'Kan downloaden',
+ 'can-invite' => 'Kan uitnodigen',
+ 'can-request' => 'Kan aanvragen',
+ 'can-upload' => 'Kan uploaden',
+ 'certified-banker' => 'Gecertificeerde bankier',
+ 'certified-banker-desc' => 'Heeft 50.000 of meer BON In Bank',
+ 'certified-downloader' => 'Gecertificeerde Downloader',
+ 'certified-downloader-desc' => '100 of meer Torrents gedownload!',
+ 'certified-seeder' => 'Gecertificeerde zaaimachine',
+ 'certified-seeder-desc' => '150 of meer Torrents zaaien!',
+ 'change-email' => 'E-mail wijzigen',
+ 'change-email-help' => 'U moet uw account opnieuw bevestigen nadat u uw e-mailadres hebt gewijzigd',
+ 'change-password' => 'Wachtwoord wijzigen',
+ 'change-password-help' => 'U moet opnieuw inloggen nadat u uw wachtwoord hebt gewijzigd',
+ 'client-ip-address' => 'IP-adres van client',
+ 'code' => 'Code',
+ 'comments' => 'Comments',
+ 'created-on' => 'Gemaakt op',
+ 'credited-download' => 'Gecrediteerde download',
+ 'credited-upload' => 'Gecrediteerde upload',
+ 'current-password' => 'Huidig wachtwoord',
+ 'custom-title' => 'Aangepaste titel',
+ 'delete' => 'Verwijder gebruiker',
+ 'disable-notifications' => 'Meldingen uitschakelen',
+ 'disclaimer' => 'ontkenning',
+ 'disclaimer-info' => 'We loggen standaard geen gebruikers-IP-adressen zoals de meeste trackers. Door hieronder uw seedbox-IP toe te voegen, wordt verwacht dat u weet dat uw IP-adressen hieronder zijn opgeslagen in onze database, tenzij u de records verwijdert.',
+ 'disclaimer-info-bordered' => 'Seedbox IP s toegevoegd zullen dan een torrent-tag met hoge snelheid activeren op torrents die zijn gezaaid van IP s die hieronder worden vermeld',
+ 'download-bon' => 'Downloaden verwijderd van BON Store',
+ 'download-recorded' => 'Opgenomen download',
+ 'download-true' => 'True Download',
+ 'downloads' => 'downloads',
+ 'edit' => 'bewerk gebruiker',
+ 'edit-profile' => 'Bewerk profiel',
+ 'enable-notifications' => 'Notificaties aanzetten',
+ 'expired' => 'Verlopen',
+ 'expires-on' => 'Verloopt op',
+ 'extra' => 'Extra',
+ 'filled-request' => 'Gevulde ledenaanvragen',
+ 'follow' => 'Volgen',
+ 'follower-privacy' => 'Follower-instellingen',
+ 'follower-privacy-list' => 'Sta gebruikers toe om een lijst met uw volgers te bekijken',
+ 'follower-help' => 'Beheer het delen van specifieke volgergerelateerde informatie met groepen die toegang hebben tot uw profiel. Deze instellingen worden overschreven als u geen groepen toegang geeft tot uw volgers of als u privé gaat',
+ 'followers' => 'Volgers',
+ 'following-notification' => 'Gevolgde gebruikersmeldingsinstellingen',
+ 'following-notification-upload' => 'Ontvang een melding wanneer een gevolgde gebruiker een torrent uploadt',
+ 'following-notification-help' => 'Bepaal welke meldingen worden verzonden met betrekking tot gevolgde acties op de gebruikerssite. Deze instellingen worden opgeheven als u geen groepen toestaat om meldingen over volgde gebruikers te verzenden of als u Meldingen uitschakelt',
+ 'formats-are-supported' => ': formaten worden ondersteund',
+ 'forum-notification' => 'Instellingen voor forummeldingen',
+ 'forum-notification-topic' => 'Ontvang een melding wanneer een onderwerp dat u hebt gestart een nieuw bericht ontvangt',
+ 'forum-notification-help' => 'Bepaal welke meldingen over forumactiviteiten worden verzonden. Deze instellingen worden overschreven als u geen groepen toestaat om meldingen over forumactiviteiten te verzenden of als u Meldingen uitschakelt',
+ 'forum-privacy' => 'Forum-instellingen',
+ 'forum-privacy-post' => 'Sta gebruikers toe om een lijst met forumberichten te bekijken die u hebt gepost',
+ 'forum-privacy-topic' => 'Sta gebruikers toe om een lijst met forumonderwerpen te bekijken die u bent gestart',
+ 'forum-help' => 'Beheer het delen van specifieke forumgerelateerde statistieken en informatie met groepen die toegang hebben tot uw profiel. Deze instellingen worden overschreven als u geen groepen toegang geeft tot uw fora-gerelateerde statistieken en informatie of als u privé gaat',
+ 'forum-signature' => 'Handtekening van het forum',
+ 'forums' => 'Forums',
+ 'general' => 'Algemeen',
+ 'general-settings' => 'Algemene instellingen',
+ 'gift-given' => 'Geschonken geschenk',
+ 'gift-received' => 'Geschenk ontvangen',
+ 'go-public' => 'Ga openbaar',
+ 'go-private' => 'Ga privé',
+ 'history' => 'Geschiedenis',
+ 'history-table' => 'Mijn geschiedenisstabel',
+ 'hit-n-runs' => 'Hit and Runs',
+ 'hit-n-runs-count' => 'Hit and Run Count (All Time)',
+ 'hit-n-runs-history' => 'Torrent Hit and Runs History',
+ 'image' => 'Beeld',
+ 'important' => 'Belangrijk',
+ 'important-info' => 'Belangrijke informatie',
+ 'information' => 'Informatie',
+ 'invite-friend' => 'Nodig je vriend uit (e-mail + bericht vereist)',
+ 'invite-tree' => 'Boom uitnodigen',
+ 'invites' => 'Uitnodigingen',
+ 'invites-banned' => 'Fout: uw uitnodigingsrechten zijn uitgeschakeld',
+ 'invites-banned-desc' => 'Als je voelt dat dit fout is, neem dan contact op met het personeel!',
+ 'invites-count' => 'You Have: count Invite Tokens',
+ 'invites-disabled' => 'Let op: uitnodigingen zijn uitgeschakeld vanwege open inschrijving!',
+ 'invites-disabled-desc' => 'Kom snel terug!',
+ 'invites-rules' => '- Nodig alleen mensen uit die u kent en vertrouwt.
- Je wordt persoonlijk verantwoordelijk gehouden voor diegene die je uitnodigt.
- Nodig jezelf niet uit, we controleren elke uitgenodigde gebruiker.
- Wissel of verkoop geen uitnodigingen.
- Als een persoon die je hebt uitgenodigd wordt betrapt op valsspelen, een handelsrekening of het verkopen / ruilen van uitnodigingen, wordt je gewaarschuwd.
',
+ 'invites-send' => 'Nodigt Verzenden uit',
+ 'last-login' => 'Laatste aanmelding',
+ 'locked' => 'Op slot',
+ 'locked-achievements' => 'Gesloten prestaties',
+ 'member-since' => 'Lid sinds',
+ 'members-desc' => 'Lijst van gebruikers geregistreerd op: titel bij alle groepen. Zoek nu een gebruiker.',
+ 'mention-notification' => '@Melding Instellingen voor meldingen',
'mention-notification-article-comment' => 'Ontvang een melding wanneer u bent @vermeld in een artikelcommentaar',
'mention-notification-torrent-comment' => 'Ontvang een melding wanneer je @vermeld wordt in een torrentcommentaar',
'mention-notification-request-comment' => 'Ontvang een melding wanneer u @vermeld in een reactie op een verzoek',
- 'mention-notification-forum-post' => 'Ontvang een melding wanneer u @vermeld in een forumpost bent',
- 'mention-notification-help' => 'Bepaal welke meldingen worden verzonden wanneer een gebruiker @ u een melding geeft. Deze instellingen worden overschreven als u geen groepen toestaat om meldingen te verzenden als een gebruiker @ u een melding geeft of als u Meldingen uitschakelt',
- 'moderated-by' => 'Gemodereerd door: mod op',
- 'my-bonus-points' => 'Mijn bonuspunten',
- 'my-bookmarks' => 'mijn bladwijzers',
- 'my-fl-tokens' => 'Mijn FL-tokens',
- 'my-general-settings' => 'Mijn algemene instellingen',
- 'my-notification' => 'Mijn kennisgeving',
- 'my-notification-settings' => 'Mijn meldingsinstellingen',
- 'my-privacy' => 'Mijn privacy',
- 'my-privacy-settings' => 'Mijn privacy-instellingen',
- 'my-profile' => 'Mijn profiel',
- 'my-requested' => 'Mijn gevraagd',
- 'my-security' => 'Mijn beveiliging',
- 'my-security-settings' => 'Mijn beveiligingsinstellingen',
- 'my-seedboxes' => 'Mijn seedboxes',
- 'my-settings' => 'Mijn instellingen',
- 'my-wishlist' => 'mijn wenslijst',
- 'no-logs' => 'Het zijn geen uitnodigingslogs in de database voor deze gebruiker!',
- 'no-seedboxes' => 'Geen seedboxes 😔',
- 'not-authorized' => 'U bent niet gemachtigd om deze pagina te bekijken. Dit lid geeft er de voorkeur aan verborgen te zijn als een ninja!',
- 'note' => 'Notitie',
- 'notification' => 'Kennisgeving',
- 'notification-settings' => 'Notificatie instellingen',
- 'notification-from-account' => 'Accountmeldingen ontvangen van',
- 'notification-from-account-help' => 'U ontvangt alleen accountmeldingen van het systeem, het personeel en de volgende groepen. Deze instellingen worden overschreven als u Meldingen uitschakelt',
- 'notification-from-bon' => 'BON-meldingen ontvangen van',
- 'notification-from-bon-help' => 'U ontvangt alleen BON-meldingen van het systeem, het personeel en de volgende groepen. Deze instellingen worden overschreven als u Meldingen uitschakelt',
- 'notification-from-following' => 'Volgde gebruikersmeldingen ontvangen van',
- 'notification-from-following-help' => 'U ontvangt alleen meldingen van volgde gebruikers van de volgende groepen. Deze instellingen worden overschreven als u Meldingen uitschakelt',
- 'notification-from-forum' => 'Ontvang forummeldingen van',
- 'notification-from-forum-help' => 'Je ontvangt alleen forummeldingen van het systeem, het personeel en de volgende groepen. Deze instellingen worden overschreven als u Meldingen uitschakelt',
- 'notification-from-subscription' => 'Abonnementsmeldingen ontvangen van',
- 'notification-from-subscription-help' => 'Je ontvangt alleen forummeldingen van het systeem, het personeel en de volgende groepen. Deze instellingen worden overschreven als u Meldingen uitschakelt',
- 'notification-from-torrent' => 'Ontvang Torrent-meldingen van',
- 'notification-from-torrent-help' => 'Je ontvangt alleen torrent-meldingen van het systeem, het personeel en de volgende groepen. Deze instellingen worden overschreven als u Meldingen uitschakelt',
- 'notification-from-mention' => 'Ontvang @ Mention-meldingen van',
- 'notification-from-mention-help' => 'Je ontvangt alleen @mention-meldingen van het systeem, het personeel en de volgende groepen. Deze instellingen worden overschreven als u Meldingen uitschakelt',
- 'notification-from-request' => 'Meldingsverzoeken ontvangen van',
- 'notification-from-request-help' => 'U ontvangt alleen verzoeken om kennisgevingen van het systeem, het personeel en de volgende groepen. Deze instellingen worden overschreven als u Meldingen uitschakelt',
- 'notifications' => 'meldingen',
- 'offline' => 'Gebruiker is offline!',
- 'online' => 'Gebruiker is online!',
- 'options' => 'opties',
- 'other-help' => 'Beheer het delen van andere statistieken en informatie met groepen die toegang hebben tot uw profiel. Deze instellingen worden overschreven als u geen groepen toegang geeft tot uw andere statistieken en informatie of als u privé gaat',
- 'other-privacy' => 'Andere instellingen',
- 'other-privacy-online' => 'Sta gebruikers toe u in het online gebruikersblok te zien',
- 'passkey' => 'PID',
- 'passkey-warning' => 'PID is als uw wachtwoord, u moet het veilig bewaren!',
- 'pending-achievements' => 'In afwachting van prestaties',
- 'per-torrent' => 'Per Torrent',
- 'posts' => 'berichten',
- 'posts-posted' => 'Forum berichten geplaatst',
- 'privacy' => 'Privacy',
- 'privacy-settings' => 'Privacy instellingen',
- 'private-info' => 'Privé-info',
- 'private-forum-profile' => 'Let op: dit ledenonderwerp en berichtgeschiedenis zijn ingesteld op PRIVATE!',
- 'private-profile' => 'Let op: dit profiel is ingesteld op PRIVATE!',
- 'profile' => 'Profiel',
- 'profile-desc' => 'Gebruiker: gebruikersprofiel geregistreerd op: titel',
- 'profile-privacy' => 'Profielinstellingen',
- 'profile-privacy-torrent-count' => 'Deel uw totale aantal downloads, uploads, zaden en bloedzuigers',
- 'profile-privacy-torrent-ratio' => 'Deel uw totale upload- / downloadgegevens samen met de opgenomen verhouding',
- 'profile-privacy-torrent-seed' => 'Deel uw totale zaaitijd en gemiddelde',
- 'profile-privacy-title' => 'Deel uw persoonlijke titelinformatie',
- 'profile-privacy-about' => 'Deel uw persoonlijke informatie over mij',
- 'profile-privacy-bon-extra' => 'Deel uw BON-statistieken',
- 'profile-privacy-comment-extra' => 'Deel uw commentaarstatistieken',
- 'profile-privacy-forum-extra' => 'Deel uw forumstatistieken',
- 'profile-privacy-request-extra' => 'Deel uw aanvraagstatistieken',
- 'profile-privacy-torrent-extra' => 'Deel je torrent-statistieken',
- 'profile-privacy-badge' => 'Deel uw verdiende badges',
- 'profile-privacy-achievement' => 'Deel je recente prestaties',
- 'profile-privacy-follower' => 'Deel je recente volgers',
- 'profile-privacy-warning' => 'Deel uw H & R-waarschuwingen',
- 'profile-privacy-help' => 'Bepaal welke statistieken en stukjes informatie op je profiel verschijnen. Deze instellingen worden opgeheven als u geen groepen toegang geeft tot uw profiel of als u privé gaat',
- 'public-info' => 'Publieke info',
- 'recent-achievements' => 'Recente prestaties',
- 'recent-followers' => 'Recente volgers',
- 'registration-date' => 'Registratie datum',
- 'report' => 'Verslag doen van',
- 'request-help' => 'Beheer het delen van specifieke verzoekgerelateerde statistieken en informatie met groepen die toegang hebben tot uw profiel. Deze instellingen worden opgeheven als u geen groepen toegang geeft tot uw aangevraagde gerelateerde statistieken en informatie of als u privé gaat',
- 'request' => 'Verzoek',
- 'requested' => 'Aangevraagd',
- 'requests' => 'verzoeken',
- 'request-comments' => 'Vraag commentaar aan Made',
- 'request-notification' => 'Meldingsinstellingen aanvragen',
- 'request-notification-bounty' => 'Ontvang een melding wanneer een aangevraagde torrent een nieuwe bounty krijgt',
- 'request-notification-comment' => 'Ontvang een melding wanneer een aangevraagde torrent een nieuwe reactie krijgt',
- 'request-notification-fill' => 'Ontvang een melding wanneer een gevraagde torrent wordt gevuld',
- 'request-notification-fill-approve' => 'Een melding ontvangen wanneer een aangevraagde torrent-opvulling wordt goedgekeurd',
- 'request-notification-fill-reject' => 'Een melding ontvangen wanneer een opgevraagde torrent-opvulling wordt geweigerd',
- 'request-notification-claim' => 'Ontvang een melding wanneer een aangevraagde torrent wordt geclaimd',
- 'request-notification-unclaim' => 'Ontvang een melding wanneer een aangevraagde torrent niet wordt geclaimd',
- 'request-notification-help' => 'Bepaal welke meldingen worden verzonden met betrekking tot aanvraagactiviteiten. Deze instellingen worden opgeheven als u geen groepen toestaat om meldingen over aanvraagactiviteiten te verzenden of als u Meldingen uitschakelt',
- 'request-privacy' => 'Verzoek instellingen',
- 'request-privacy-requested' => 'Sta gebruikers toe om een lijst met verzoeken te bekijken die u hebt gemaakt',
- 'reset-passkey' => 'Reset pass key (PID)',
- 'reset-passkey-help' => 'Je moet al je actieve torrents opnieuw downloaden / opnieuw uploaden, na het opnieuw instellen van de PID',
- 'reset-rss' => 'Reset RSS-sleutel (RID)',
- 'reset-rss-help' => 'Je zult al je actieve RSS-feeds opnieuw moeten laden, nadat je de RID hebt gereset',
- 'resurrections' => 'Resurrections',
- 'search' => 'Snel zoeken op gebruikersnaam',
- 'security' => 'Veiligheid',
- 'security-settings' => 'Veiligheidsinstellingen',
- 'seedboxes' => 'seedboxes',
- 'seeds' => 'zaden',
- 'send-invite' => 'Uitnodiging sturen',
- 'sender' => 'Afzender',
- 'settings' => 'instellingen',
- 'show-passkey' => 'Toon PID',
- 'staff-noted' => 'Personeel genoteerde account',
- 'statistics' => 'Statistieken',
- 'subscription-notification' => 'Abonnementsmeldingsinstellingen',
- 'subscription-notification-forum' => 'Ontvang een melding wanneer een geabonneerd forum een nieuw onderwerp krijgt',
- 'subscription-notification-topic' => 'Ontvang een melding wanneer een geabonneerd onderwerp een nieuw bericht ontvangt',
- 'subscription-notification-help' => 'Bepaal welke meldingen over uw abonnementen worden verzonden. Deze instellingen worden overschreven als u geen groepen toestaat om meldingen over uw abonnementen te verzenden of als u Meldingen uitschakelt',
- 'thanks-given' => 'Bedankt gegeven',
- 'thanks-received' => 'Bedankt ontvangen',
- 'tips-given' => 'Tips gegeven',
- 'tips-received' => 'Tips ontvangen',
- 'title' => 'Titel',
- 'top-bankers' => 'Top bankiers',
- 'top-downloaders-data' => 'Topdownloaders (gegevens)',
- 'top-leechers' => 'Top Leechers',
- 'top-leechers-count' => 'Top Leechers (Count)',
- 'top-seeders' => 'Topzaaimachines',
- 'top-seeders-count' => 'Topzaaimachines (aantal)',
- 'top-seeding-size' => 'Top zaaien (grootte)',
- 'top-seedtime' => 'Top zaadtijd',
- 'top-uploaders-data' => 'Top-uploaders (gegevens)',
- 'top-uploaders-count' => 'Top-uploaders (aantal)',
- 'topics' => 'Onderwerpen',
- 'topics-started' => 'Forumonderwerpen gestart',
- 'torrent-comments' => 'Torrent-opmerkingen gemaakt',
- 'torrent-help' => 'Beheer het delen van specifieke torrent-gerelateerde statistieken en informatie met groepen die toegang hebben tot uw profiel. Deze instellingen worden overschreven als je geen groepen toegang geeft tot je torrent-gerelateerde statistieken en informatie of als je privé gaat',
- 'torrent-notification' => 'Torrent-notificatie-instellingen',
- 'torrent-notification-comment' => 'Ontvang een melding wanneer een geüploade torrent een nieuwe reactie krijgt',
- 'torrent-notification-thank' => 'Ontvang een melding wanneer een geüploade torrent een nieuw bedankje krijgt',
- 'torrent-notification-tip' => 'Ontvang een melding wanneer een geüploade torrent een nieuwe tip krijgt',
- 'torrent-notification-help' => 'Bepaal welke meldingen worden verzonden over torrent-activiteiten. Deze instellingen worden opgeheven als u geen groepen toestaat om meldingen over torrent-activiteiten te verzenden of als u Meldingen uitschakelt',
- 'torrent-privacy' => 'Torrent-instellingen',
- 'torrent-privacy-download' => 'Sta gebruikers toe om een lijst met torrents te bekijken die je hebt gedownload',
- 'torrent-privacy-upload' => 'Sta gebruikers toe om een lijst met torrents te bekijken die je hebt geüpload',
- 'torrent-privacy-peer' => 'Sta gebruikers toe u te zien in de torrent-peerhistoriekabel',
- 'torrents' => 'torrents',
- 'torrents-history' => 'Torrents geschiedenis',
- 'total-download' => 'Totale download',
- 'total-downloads' => 'Totaal aantal downloads',
- 'total-leeching' => 'Total Leeching',
- 'total-seeding' => 'Total Seeding',
- 'total-seedtime' => 'Totale zaaitijd',
- 'total-upload' => 'Totale upload',
- 'total-uploads' => 'Totaal aantal uploads',
- 'unban' => 'Unban-gebruiker',
- 'unfollow' => 'Volg niet',
- 'unlocked' => 'Unlocked',
- 'unlocked-achievements' => 'Ontgrendeld prestaties',
- 'unsatisfieds' => 'Unsatisfieds',
- 'upload-bon' => 'Upload toegevoegd vanuit BON Store',
- 'upload-recorded' => 'Opgenomen upload',
- 'upload-true' => 'True Upload',
- 'uploads' => 'upload',
- 'uploads-table' => 'Uploadtabel',
- 'user' => 'Gebruiker',
- 'user-id' => 'gebruikersnaam',
- 'username-seedbox' => 'Gebruikersnaam Seedbox',
- 'visible-to-achievement' => 'Prestaties zichtbaar voor',
- 'visible-to-achievement-help' => 'Je prestaties zijn alleen zichtbaar voor personeel en de volgende groepen. Deze instellingen worden overschreven als u privé gaat',
- 'visible-to-follower' => 'Volgers zichtbaar voor',
- 'visible-to-follower-help' => 'Je volgers zijn alleen zichtbaar voor personeel en de volgende groepen. Deze instellingen worden overschreven als u privé gaat',
- 'visible-to-forum' => 'Foruminformatie zichtbaar voor',
- 'visible-to-forum-help' => 'Uw foruminformatie is alleen zichtbaar voor personeel en de volgende groepen. Deze instellingen worden overschreven als u privé gaat',
- 'visible-to-other' => 'Andere zichtbaar voor',
- 'visible-to-other-help' => 'Andere informatie over uw account is alleen zichtbaar voor medewerkers en de volgende groepen. Deze instellingen worden opgeheven als u privé gaat of als u verborgen gaat',
- 'visible-to-profile' => 'Profiel zichtbaar voor',
- 'visible-to-profile-help' => 'Je profiel is alleen zichtbaar voor medewerkers en de volgende groepen. Deze instellingen worden overschreven als u privé gaat',
- 'visible-to-request' => 'Vraag informatie aan',
- 'visible-to-request-help' => 'Uw verzoekgegevens zijn alleen zichtbaar voor personeel en de volgende groepen. Deze instellingen worden overschreven als u privé gaat',
- 'visible-to-torrent' => 'Torrent-informatie zichtbaar voor',
- 'visible-to-torrent-help' => 'Je torrent-informatie is alleen zichtbaar voor medewerkers en de volgende groepen. Deze instellingen worden opgeheven als u privé gaat of als u verborgen gaat',
- 'warned-on' => 'Er wordt gewaarschuwd',
- 'warning' => 'Waarschuwing',
- 'warning-log' => 'Waarschuwingslogboek',
- 'wishlist' => 'verlanglijst',
+ 'mention-notification-forum-post' => 'Ontvang een melding wanneer u @vermeld in een forumpost bent',
+ 'mention-notification-help' => 'Bepaal welke meldingen worden verzonden wanneer een gebruiker @ u een melding geeft. Deze instellingen worden overschreven als u geen groepen toestaat om meldingen te verzenden als een gebruiker @ u een melding geeft of als u Meldingen uitschakelt',
+ 'moderated-by' => 'Gemodereerd door: mod op',
+ 'my-bonus-points' => 'Mijn bonuspunten',
+ 'my-bookmarks' => 'mijn bladwijzers',
+ 'my-fl-tokens' => 'Mijn FL-tokens',
+ 'my-general-settings' => 'Mijn algemene instellingen',
+ 'my-notification' => 'Mijn kennisgeving',
+ 'my-notification-settings' => 'Mijn meldingsinstellingen',
+ 'my-privacy' => 'Mijn privacy',
+ 'my-privacy-settings' => 'Mijn privacy-instellingen',
+ 'my-profile' => 'Mijn profiel',
+ 'my-requested' => 'Mijn gevraagd',
+ 'my-security' => 'Mijn beveiliging',
+ 'my-security-settings' => 'Mijn beveiligingsinstellingen',
+ 'my-seedboxes' => 'Mijn seedboxes',
+ 'my-settings' => 'Mijn instellingen',
+ 'my-wishlist' => 'mijn wenslijst',
+ 'no-logs' => 'Het zijn geen uitnodigingslogs in de database voor deze gebruiker!',
+ 'no-seedboxes' => 'Geen seedboxes 😔',
+ 'not-authorized' => 'U bent niet gemachtigd om deze pagina te bekijken. Dit lid geeft er de voorkeur aan verborgen te zijn als een ninja!',
+ 'note' => 'Notitie',
+ 'notification' => 'Kennisgeving',
+ 'notification-settings' => 'Notificatie instellingen',
+ 'notification-from-account' => 'Accountmeldingen ontvangen van',
+ 'notification-from-account-help' => 'U ontvangt alleen accountmeldingen van het systeem, het personeel en de volgende groepen. Deze instellingen worden overschreven als u Meldingen uitschakelt',
+ 'notification-from-bon' => 'BON-meldingen ontvangen van',
+ 'notification-from-bon-help' => 'U ontvangt alleen BON-meldingen van het systeem, het personeel en de volgende groepen. Deze instellingen worden overschreven als u Meldingen uitschakelt',
+ 'notification-from-following' => 'Volgde gebruikersmeldingen ontvangen van',
+ 'notification-from-following-help' => 'U ontvangt alleen meldingen van volgde gebruikers van de volgende groepen. Deze instellingen worden overschreven als u Meldingen uitschakelt',
+ 'notification-from-forum' => 'Ontvang forummeldingen van',
+ 'notification-from-forum-help' => 'Je ontvangt alleen forummeldingen van het systeem, het personeel en de volgende groepen. Deze instellingen worden overschreven als u Meldingen uitschakelt',
+ 'notification-from-subscription' => 'Abonnementsmeldingen ontvangen van',
+ 'notification-from-subscription-help' => 'Je ontvangt alleen forummeldingen van het systeem, het personeel en de volgende groepen. Deze instellingen worden overschreven als u Meldingen uitschakelt',
+ 'notification-from-torrent' => 'Ontvang Torrent-meldingen van',
+ 'notification-from-torrent-help' => 'Je ontvangt alleen torrent-meldingen van het systeem, het personeel en de volgende groepen. Deze instellingen worden overschreven als u Meldingen uitschakelt',
+ 'notification-from-mention' => 'Ontvang @ Mention-meldingen van',
+ 'notification-from-mention-help' => 'Je ontvangt alleen @mention-meldingen van het systeem, het personeel en de volgende groepen. Deze instellingen worden overschreven als u Meldingen uitschakelt',
+ 'notification-from-request' => 'Meldingsverzoeken ontvangen van',
+ 'notification-from-request-help' => 'U ontvangt alleen verzoeken om kennisgevingen van het systeem, het personeel en de volgende groepen. Deze instellingen worden overschreven als u Meldingen uitschakelt',
+ 'notifications' => 'meldingen',
+ 'offline' => 'Gebruiker is offline!',
+ 'online' => 'Gebruiker is online!',
+ 'options' => 'opties',
+ 'other-help' => 'Beheer het delen van andere statistieken en informatie met groepen die toegang hebben tot uw profiel. Deze instellingen worden overschreven als u geen groepen toegang geeft tot uw andere statistieken en informatie of als u privé gaat',
+ 'other-privacy' => 'Andere instellingen',
+ 'other-privacy-online' => 'Sta gebruikers toe u in het online gebruikersblok te zien',
+ 'passkey' => 'PID',
+ 'passkey-warning' => 'PID is als uw wachtwoord, u moet het veilig bewaren!',
+ 'pending-achievements' => 'In afwachting van prestaties',
+ 'per-torrent' => 'Per Torrent',
+ 'posts' => 'berichten',
+ 'posts-posted' => 'Forum berichten geplaatst',
+ 'privacy' => 'Privacy',
+ 'privacy-settings' => 'Privacy instellingen',
+ 'private-info' => 'Privé-info',
+ 'private-forum-profile' => 'Let op: dit ledenonderwerp en berichtgeschiedenis zijn ingesteld op PRIVATE!',
+ 'private-profile' => 'Let op: dit profiel is ingesteld op PRIVATE!',
+ 'profile' => 'Profiel',
+ 'profile-desc' => 'Gebruiker: gebruikersprofiel geregistreerd op: titel',
+ 'profile-privacy' => 'Profielinstellingen',
+ 'profile-privacy-torrent-count' => 'Deel uw totale aantal downloads, uploads, zaden en bloedzuigers',
+ 'profile-privacy-torrent-ratio' => 'Deel uw totale upload- / downloadgegevens samen met de opgenomen verhouding',
+ 'profile-privacy-torrent-seed' => 'Deel uw totale zaaitijd en gemiddelde',
+ 'profile-privacy-title' => 'Deel uw persoonlijke titelinformatie',
+ 'profile-privacy-about' => 'Deel uw persoonlijke informatie over mij',
+ 'profile-privacy-bon-extra' => 'Deel uw BON-statistieken',
+ 'profile-privacy-comment-extra' => 'Deel uw commentaarstatistieken',
+ 'profile-privacy-forum-extra' => 'Deel uw forumstatistieken',
+ 'profile-privacy-request-extra' => 'Deel uw aanvraagstatistieken',
+ 'profile-privacy-torrent-extra' => 'Deel je torrent-statistieken',
+ 'profile-privacy-badge' => 'Deel uw verdiende badges',
+ 'profile-privacy-achievement' => 'Deel je recente prestaties',
+ 'profile-privacy-follower' => 'Deel je recente volgers',
+ 'profile-privacy-warning' => 'Deel uw H & R-waarschuwingen',
+ 'profile-privacy-help' => 'Bepaal welke statistieken en stukjes informatie op je profiel verschijnen. Deze instellingen worden opgeheven als u geen groepen toegang geeft tot uw profiel of als u privé gaat',
+ 'public-info' => 'Publieke info',
+ 'recent-achievements' => 'Recente prestaties',
+ 'recent-followers' => 'Recente volgers',
+ 'registration-date' => 'Registratie datum',
+ 'report' => 'Verslag doen van',
+ 'request-help' => 'Beheer het delen van specifieke verzoekgerelateerde statistieken en informatie met groepen die toegang hebben tot uw profiel. Deze instellingen worden opgeheven als u geen groepen toegang geeft tot uw aangevraagde gerelateerde statistieken en informatie of als u privé gaat',
+ 'request' => 'Verzoek',
+ 'requested' => 'Aangevraagd',
+ 'requests' => 'verzoeken',
+ 'request-comments' => 'Vraag commentaar aan Made',
+ 'request-notification' => 'Meldingsinstellingen aanvragen',
+ 'request-notification-bounty' => 'Ontvang een melding wanneer een aangevraagde torrent een nieuwe bounty krijgt',
+ 'request-notification-comment' => 'Ontvang een melding wanneer een aangevraagde torrent een nieuwe reactie krijgt',
+ 'request-notification-fill' => 'Ontvang een melding wanneer een gevraagde torrent wordt gevuld',
+ 'request-notification-fill-approve' => 'Een melding ontvangen wanneer een aangevraagde torrent-opvulling wordt goedgekeurd',
+ 'request-notification-fill-reject' => 'Een melding ontvangen wanneer een opgevraagde torrent-opvulling wordt geweigerd',
+ 'request-notification-claim' => 'Ontvang een melding wanneer een aangevraagde torrent wordt geclaimd',
+ 'request-notification-unclaim' => 'Ontvang een melding wanneer een aangevraagde torrent niet wordt geclaimd',
+ 'request-notification-help' => 'Bepaal welke meldingen worden verzonden met betrekking tot aanvraagactiviteiten. Deze instellingen worden opgeheven als u geen groepen toestaat om meldingen over aanvraagactiviteiten te verzenden of als u Meldingen uitschakelt',
+ 'request-privacy' => 'Verzoek instellingen',
+ 'request-privacy-requested' => 'Sta gebruikers toe om een lijst met verzoeken te bekijken die u hebt gemaakt',
+ 'reset-passkey' => 'Reset pass key (PID)',
+ 'reset-passkey-help' => 'Je moet al je actieve torrents opnieuw downloaden / opnieuw uploaden, na het opnieuw instellen van de PID',
+ 'reset-rss' => 'Reset RSS-sleutel (RID)',
+ 'reset-rss-help' => 'Je zult al je actieve RSS-feeds opnieuw moeten laden, nadat je de RID hebt gereset',
+ 'resurrections' => 'Resurrections',
+ 'search' => 'Snel zoeken op gebruikersnaam',
+ 'security' => 'Veiligheid',
+ 'security-settings' => 'Veiligheidsinstellingen',
+ 'seedboxes' => 'seedboxes',
+ 'seeds' => 'zaden',
+ 'send-invite' => 'Uitnodiging sturen',
+ 'sender' => 'Afzender',
+ 'settings' => 'instellingen',
+ 'show-passkey' => 'Toon PID',
+ 'staff-noted' => 'Personeel genoteerde account',
+ 'statistics' => 'Statistieken',
+ 'subscription-notification' => 'Abonnementsmeldingsinstellingen',
+ 'subscription-notification-forum' => 'Ontvang een melding wanneer een geabonneerd forum een nieuw onderwerp krijgt',
+ 'subscription-notification-topic' => 'Ontvang een melding wanneer een geabonneerd onderwerp een nieuw bericht ontvangt',
+ 'subscription-notification-help' => 'Bepaal welke meldingen over uw abonnementen worden verzonden. Deze instellingen worden overschreven als u geen groepen toestaat om meldingen over uw abonnementen te verzenden of als u Meldingen uitschakelt',
+ 'thanks-given' => 'Bedankt gegeven',
+ 'thanks-received' => 'Bedankt ontvangen',
+ 'tips-given' => 'Tips gegeven',
+ 'tips-received' => 'Tips ontvangen',
+ 'title' => 'Titel',
+ 'top-bankers' => 'Top bankiers',
+ 'top-downloaders-data' => 'Topdownloaders (gegevens)',
+ 'top-leechers' => 'Top Leechers',
+ 'top-leechers-count' => 'Top Leechers (Count)',
+ 'top-seeders' => 'Topzaaimachines',
+ 'top-seeders-count' => 'Topzaaimachines (aantal)',
+ 'top-seeding-size' => 'Top zaaien (grootte)',
+ 'top-seedtime' => 'Top zaadtijd',
+ 'top-uploaders-data' => 'Top-uploaders (gegevens)',
+ 'top-uploaders-count' => 'Top-uploaders (aantal)',
+ 'topics' => 'Onderwerpen',
+ 'topics-started' => 'Forumonderwerpen gestart',
+ 'torrent-comments' => 'Torrent-opmerkingen gemaakt',
+ 'torrent-help' => 'Beheer het delen van specifieke torrent-gerelateerde statistieken en informatie met groepen die toegang hebben tot uw profiel. Deze instellingen worden overschreven als je geen groepen toegang geeft tot je torrent-gerelateerde statistieken en informatie of als je privé gaat',
+ 'torrent-notification' => 'Torrent-notificatie-instellingen',
+ 'torrent-notification-comment' => 'Ontvang een melding wanneer een geüploade torrent een nieuwe reactie krijgt',
+ 'torrent-notification-thank' => 'Ontvang een melding wanneer een geüploade torrent een nieuw bedankje krijgt',
+ 'torrent-notification-tip' => 'Ontvang een melding wanneer een geüploade torrent een nieuwe tip krijgt',
+ 'torrent-notification-help' => 'Bepaal welke meldingen worden verzonden over torrent-activiteiten. Deze instellingen worden opgeheven als u geen groepen toestaat om meldingen over torrent-activiteiten te verzenden of als u Meldingen uitschakelt',
+ 'torrent-privacy' => 'Torrent-instellingen',
+ 'torrent-privacy-download' => 'Sta gebruikers toe om een lijst met torrents te bekijken die je hebt gedownload',
+ 'torrent-privacy-upload' => 'Sta gebruikers toe om een lijst met torrents te bekijken die je hebt geüpload',
+ 'torrent-privacy-peer' => 'Sta gebruikers toe u te zien in de torrent-peerhistoriekabel',
+ 'torrents' => 'torrents',
+ 'torrents-history' => 'Torrents geschiedenis',
+ 'total-download' => 'Totale download',
+ 'total-downloads' => 'Totaal aantal downloads',
+ 'total-leeching' => 'Total Leeching',
+ 'total-seeding' => 'Total Seeding',
+ 'total-seedtime' => 'Totale zaaitijd',
+ 'total-upload' => 'Totale upload',
+ 'total-uploads' => 'Totaal aantal uploads',
+ 'unban' => 'Unban-gebruiker',
+ 'unfollow' => 'Volg niet',
+ 'unlocked' => 'Unlocked',
+ 'unlocked-achievements' => 'Ontgrendeld prestaties',
+ 'unsatisfieds' => 'Unsatisfieds',
+ 'upload-bon' => 'Upload toegevoegd vanuit BON Store',
+ 'upload-recorded' => 'Opgenomen upload',
+ 'upload-true' => 'True Upload',
+ 'uploads' => 'upload',
+ 'uploads-table' => 'Uploadtabel',
+ 'user' => 'Gebruiker',
+ 'user-id' => 'gebruikersnaam',
+ 'username-seedbox' => 'Gebruikersnaam Seedbox',
+ 'visible-to-achievement' => 'Prestaties zichtbaar voor',
+ 'visible-to-achievement-help' => 'Je prestaties zijn alleen zichtbaar voor personeel en de volgende groepen. Deze instellingen worden overschreven als u privé gaat',
+ 'visible-to-follower' => 'Volgers zichtbaar voor',
+ 'visible-to-follower-help' => 'Je volgers zijn alleen zichtbaar voor personeel en de volgende groepen. Deze instellingen worden overschreven als u privé gaat',
+ 'visible-to-forum' => 'Foruminformatie zichtbaar voor',
+ 'visible-to-forum-help' => 'Uw foruminformatie is alleen zichtbaar voor personeel en de volgende groepen. Deze instellingen worden overschreven als u privé gaat',
+ 'visible-to-other' => 'Andere zichtbaar voor',
+ 'visible-to-other-help' => 'Andere informatie over uw account is alleen zichtbaar voor medewerkers en de volgende groepen. Deze instellingen worden opgeheven als u privé gaat of als u verborgen gaat',
+ 'visible-to-profile' => 'Profiel zichtbaar voor',
+ 'visible-to-profile-help' => 'Je profiel is alleen zichtbaar voor medewerkers en de volgende groepen. Deze instellingen worden overschreven als u privé gaat',
+ 'visible-to-request' => 'Vraag informatie aan',
+ 'visible-to-request-help' => 'Uw verzoekgegevens zijn alleen zichtbaar voor personeel en de volgende groepen. Deze instellingen worden overschreven als u privé gaat',
+ 'visible-to-torrent' => 'Torrent-informatie zichtbaar voor',
+ 'visible-to-torrent-help' => 'Je torrent-informatie is alleen zichtbaar voor medewerkers en de volgende groepen. Deze instellingen worden opgeheven als u privé gaat of als u verborgen gaat',
+ 'warned-on' => 'Er wordt gewaarschuwd',
+ 'warning' => 'Waarschuwing',
+ 'warning-log' => 'Waarschuwingslogboek',
+ 'wishlist' => 'verlanglijst',
];
diff --git a/lang/nl/validation.php b/lang/nl/validation.php
index ebcd302a4..0f082f66e 100644
--- a/lang/nl/validation.php
+++ b/lang/nl/validation.php
@@ -23,108 +23,108 @@ return [
|
*/
- 'accepted' => ':attribute moet geaccepteerd zijn.',
- 'active_url' => ':attribute is geen geldige URL.',
- 'after' => ':attribute moet een datum na :date zijn.',
- 'after_or_equal' => ':attribute moet een datum na of gelijk aan :date zijn.',
- 'alpha' => ':attribute mag alleen letters bevatten.',
- 'alpha_dash' => ':attribute mag alleen letters, nummers, underscores (_) en streepjes (-) bevatten.',
- 'alpha_num' => ':attribute mag alleen letters en nummers bevatten.',
- 'array' => ':attribute moet geselecteerde elementen bevatten.',
- 'before' => ':attribute moet een datum voor :date zijn.',
- 'before_or_equal' => ':attribute moet een datum voor of gelijk aan :date zijn.',
- 'between' => [
+ 'accepted' => ':attribute moet geaccepteerd zijn.',
+ 'active_url' => ':attribute is geen geldige URL.',
+ 'after' => ':attribute moet een datum na :date zijn.',
+ 'after_or_equal' => ':attribute moet een datum na of gelijk aan :date zijn.',
+ 'alpha' => ':attribute mag alleen letters bevatten.',
+ 'alpha_dash' => ':attribute mag alleen letters, nummers, underscores (_) en streepjes (-) bevatten.',
+ 'alpha_num' => ':attribute mag alleen letters en nummers bevatten.',
+ 'array' => ':attribute moet geselecteerde elementen bevatten.',
+ 'before' => ':attribute moet een datum voor :date zijn.',
+ 'before_or_equal' => ':attribute moet een datum voor of gelijk aan :date zijn.',
+ 'between' => [
'numeric' => ':attribute moet tussen :min en :max zijn.',
- 'file' => ':attribute moet tussen :min en :max kilobytes zijn.',
- 'string' => ':attribute moet tussen :min en :max karakters zijn.',
- 'array' => ':attribute moet tussen :min en :max items bevatten.',
+ 'file' => ':attribute moet tussen :min en :max kilobytes zijn.',
+ 'string' => ':attribute moet tussen :min en :max karakters zijn.',
+ 'array' => ':attribute moet tussen :min en :max items bevatten.',
],
- 'boolean' => ':attribute moet ja of nee zijn.',
- 'confirmed' => ':attribute bevestiging komt niet overeen.',
- 'date' => ':attribute moet een datum bevatten.',
- 'date_equals' => ':attribute moet een datum gelijk aan :date zijn.',
- 'date_format' => ':attribute moet een geldig datum formaat bevatten.',
- 'different' => ':attribute en :other moeten verschillend zijn.',
- 'digits' => ':attribute moet bestaan uit :digits cijfers.',
- 'digits_between' => ':attribute moet bestaan uit minimaal :min en maximaal :max cijfers.',
- 'dimensions' => ':attribute heeft geen geldige afmetingen voor afbeeldingen.',
- 'distinct' => ':attribute heeft een dubbele waarde.',
- 'email' => ':attribute is geen geldig e-mailadres.',
- 'exists' => ':attribute bestaat niet.',
- 'file' => ':attribute moet een bestand zijn.',
- 'filled' => ':attribute is verplicht.',
- 'gt' => [
+ 'boolean' => ':attribute moet ja of nee zijn.',
+ 'confirmed' => ':attribute bevestiging komt niet overeen.',
+ 'date' => ':attribute moet een datum bevatten.',
+ 'date_equals' => ':attribute moet een datum gelijk aan :date zijn.',
+ 'date_format' => ':attribute moet een geldig datum formaat bevatten.',
+ 'different' => ':attribute en :other moeten verschillend zijn.',
+ 'digits' => ':attribute moet bestaan uit :digits cijfers.',
+ 'digits_between' => ':attribute moet bestaan uit minimaal :min en maximaal :max cijfers.',
+ 'dimensions' => ':attribute heeft geen geldige afmetingen voor afbeeldingen.',
+ 'distinct' => ':attribute heeft een dubbele waarde.',
+ 'email' => ':attribute is geen geldig e-mailadres.',
+ 'exists' => ':attribute bestaat niet.',
+ 'file' => ':attribute moet een bestand zijn.',
+ 'filled' => ':attribute is verplicht.',
+ 'gt' => [
'numeric' => 'De :attribute moet groter zijn dan :value.',
- 'file' => 'De :attribute moet groter zijn dan :value kilobytes.',
- 'string' => 'De :attribute moet meer dan :value tekens bevatten.',
- 'array' => 'De :attribute moet meer dan :value waardes bevatten.',
+ 'file' => 'De :attribute moet groter zijn dan :value kilobytes.',
+ 'string' => 'De :attribute moet meer dan :value tekens bevatten.',
+ 'array' => 'De :attribute moet meer dan :value waardes bevatten.',
],
- 'gte' => [
+ 'gte' => [
'numeric' => 'De :attribute moet groter of gelijk zijn aan :value.',
- 'file' => 'De :attribute moet groter of gelijk zijn aan :value kilobytes.',
- 'string' => 'De :attribute moet minimaal :value tekens bevatten.',
- 'array' => 'De :attribute moet :value waardes of meer bevatten.',
+ 'file' => 'De :attribute moet groter of gelijk zijn aan :value kilobytes.',
+ 'string' => 'De :attribute moet minimaal :value tekens bevatten.',
+ 'array' => 'De :attribute moet :value waardes of meer bevatten.',
],
- 'image' => ':attribute moet een afbeelding zijn.',
- 'in' => ':attribute is ongeldig.',
- 'in_array' => ':attribute bestaat niet in :other.',
- 'integer' => ':attribute moet een getal zijn.',
- 'ip' => ':attribute moet een geldig IP-adres zijn.',
- 'ipv4' => ':attribute moet een geldig IPv4-adres zijn.',
- 'ipv6' => ':attribute moet een geldig IPv6-adres zijn.',
- 'json' => ':attribute moet een geldige JSON-string zijn.',
- 'lt' => [
+ 'image' => ':attribute moet een afbeelding zijn.',
+ 'in' => ':attribute is ongeldig.',
+ 'in_array' => ':attribute bestaat niet in :other.',
+ 'integer' => ':attribute moet een getal zijn.',
+ 'ip' => ':attribute moet een geldig IP-adres zijn.',
+ 'ipv4' => ':attribute moet een geldig IPv4-adres zijn.',
+ 'ipv6' => ':attribute moet een geldig IPv6-adres zijn.',
+ 'json' => ':attribute moet een geldige JSON-string zijn.',
+ 'lt' => [
'numeric' => 'De :attribute moet kleiner zijn dan :value.',
- 'file' => 'De :attribute moet kleiner zijn dan :value kilobytes.',
- 'string' => 'De :attribute moet minder dan :value tekens bevatten.',
- 'array' => 'De :attribute moet minder dan :value waardes bevatten.',
+ 'file' => 'De :attribute moet kleiner zijn dan :value kilobytes.',
+ 'string' => 'De :attribute moet minder dan :value tekens bevatten.',
+ 'array' => 'De :attribute moet minder dan :value waardes bevatten.',
],
- 'lte' => [
+ 'lte' => [
'numeric' => 'De :attribute moet kleiner of gelijk zijn aan :value.',
- 'file' => 'De :attribute moet kleiner of gelijk zijn aan :value kilobytes.',
- 'string' => 'De :attribute moet maximaal :value tekens bevatten.',
- 'array' => 'De :attribute moet :value waardes of minder bevatten.',
+ 'file' => 'De :attribute moet kleiner of gelijk zijn aan :value kilobytes.',
+ 'string' => 'De :attribute moet maximaal :value tekens bevatten.',
+ 'array' => 'De :attribute moet :value waardes of minder bevatten.',
],
- 'max' => [
+ 'max' => [
'numeric' => ':attribute mag niet hoger dan :max zijn.',
- 'file' => ':attribute mag niet meer dan :max kilobytes zijn.',
- 'string' => ':attribute mag niet uit meer dan :max tekens bestaan.',
- 'array' => ':attribute mag niet meer dan :max items bevatten.',
+ 'file' => ':attribute mag niet meer dan :max kilobytes zijn.',
+ 'string' => ':attribute mag niet uit meer dan :max tekens bestaan.',
+ 'array' => ':attribute mag niet meer dan :max items bevatten.',
],
- 'mimes' => ':attribute moet een bestand zijn van het bestandstype :values.',
- 'mimetypes' => ':attribute moet een bestand zijn van het bestandstype :values.',
- 'min' => [
+ 'mimes' => ':attribute moet een bestand zijn van het bestandstype :values.',
+ 'mimetypes' => ':attribute moet een bestand zijn van het bestandstype :values.',
+ 'min' => [
'numeric' => ':attribute moet minimaal :min zijn.',
- 'file' => ':attribute moet minimaal :min kilobytes zijn.',
- 'string' => ':attribute moet minimaal :min tekens zijn.',
- 'array' => ':attribute moet minimaal :min items bevatten.',
+ 'file' => ':attribute moet minimaal :min kilobytes zijn.',
+ 'string' => ':attribute moet minimaal :min tekens zijn.',
+ 'array' => ':attribute moet minimaal :min items bevatten.',
],
- 'not_in' => 'Het formaat van :attribute is ongeldig.',
- 'not_regex' => 'De :attribute formaat is ongeldig.',
- 'numeric' => ':attribute moet een nummer zijn.',
- 'present' => ':attribute moet bestaan.',
- 'regex' => ':attribute formaat is ongeldig.',
- 'required' => ':attribute is verplicht.',
- 'required_if' => ':attribute is verplicht indien :other gelijk is aan :value.',
- 'required_unless' => ':attribute is verplicht tenzij :other gelijk is aan :values.',
- 'required_with' => ':attribute is verplicht i.c.m. :values',
- 'required_with_all' => ':attribute is verplicht i.c.m. :values',
- 'required_without' => ':attribute is verplicht als :values niet ingevuld is.',
+ 'not_in' => 'Het formaat van :attribute is ongeldig.',
+ 'not_regex' => 'De :attribute formaat is ongeldig.',
+ 'numeric' => ':attribute moet een nummer zijn.',
+ 'present' => ':attribute moet bestaan.',
+ 'regex' => ':attribute formaat is ongeldig.',
+ 'required' => ':attribute is verplicht.',
+ 'required_if' => ':attribute is verplicht indien :other gelijk is aan :value.',
+ 'required_unless' => ':attribute is verplicht tenzij :other gelijk is aan :values.',
+ 'required_with' => ':attribute is verplicht i.c.m. :values',
+ 'required_with_all' => ':attribute is verplicht i.c.m. :values',
+ 'required_without' => ':attribute is verplicht als :values niet ingevuld is.',
'required_without_all' => ':attribute is verplicht als :values niet ingevuld zijn.',
- 'same' => ':attribute en :other moeten overeenkomen.',
- 'size' => [
+ 'same' => ':attribute en :other moeten overeenkomen.',
+ 'size' => [
'numeric' => ':attribute moet :size zijn.',
- 'file' => ':attribute moet :size kilobyte zijn.',
- 'string' => ':attribute moet :size tekens zijn.',
- 'array' => ':attribute moet :size items bevatten.',
+ 'file' => ':attribute moet :size kilobyte zijn.',
+ 'string' => ':attribute moet :size tekens zijn.',
+ 'array' => ':attribute moet :size items bevatten.',
],
- 'starts_with' => ':attribute moet starten met een van de volgende: :values',
- 'string' => ':attribute moet een tekst zijn.',
- 'timezone' => ':attribute moet een geldige tijdzone zijn.',
- 'unique' => ':attribute is al in gebruik.',
- 'uploaded' => 'Het uploaden van :attribute is mislukt.',
- 'url' => ':attribute moet een geldig URL zijn.',
- 'uuid' => ':attribute moet een geldig UUID zijn.',
+ 'starts_with' => ':attribute moet starten met een van de volgende: :values',
+ 'string' => ':attribute moet een tekst zijn.',
+ 'timezone' => ':attribute moet een geldige tijdzone zijn.',
+ 'unique' => ':attribute is al in gebruik.',
+ 'uploaded' => 'Het uploaden van :attribute is mislukt.',
+ 'url' => ':attribute moet een geldig URL zijn.',
+ 'uuid' => ':attribute moet een geldig UUID zijn.',
/*
|--------------------------------------------------------------------------
@@ -155,36 +155,36 @@ return [
*/
'attributes' => [
- 'address' => 'adres',
- 'age' => 'leeftijd',
- 'available' => 'beschikbaar',
- 'city' => 'stad',
- 'content' => 'inhoud',
- 'country' => 'land',
- 'date' => 'datum',
- 'day' => 'dag',
- 'description' => 'omschrijving',
- 'email' => 'e-mailadres',
- 'excerpt' => 'uittreksel',
- 'first_name' => 'voornaam',
- 'gender' => 'geslacht',
- 'hour' => 'uur',
- 'last_name' => 'achternaam',
- 'message' => 'boodschap',
- 'minute' => 'minuut',
- 'mobile' => 'mobiel',
- 'month' => 'maand',
- 'name' => 'naam',
- 'password' => 'wachtwoord',
+ 'address' => 'adres',
+ 'age' => 'leeftijd',
+ 'available' => 'beschikbaar',
+ 'city' => 'stad',
+ 'content' => 'inhoud',
+ 'country' => 'land',
+ 'date' => 'datum',
+ 'day' => 'dag',
+ 'description' => 'omschrijving',
+ 'email' => 'e-mailadres',
+ 'excerpt' => 'uittreksel',
+ 'first_name' => 'voornaam',
+ 'gender' => 'geslacht',
+ 'hour' => 'uur',
+ 'last_name' => 'achternaam',
+ 'message' => 'boodschap',
+ 'minute' => 'minuut',
+ 'mobile' => 'mobiel',
+ 'month' => 'maand',
+ 'name' => 'naam',
+ 'password' => 'wachtwoord',
'password_confirmation' => 'wachtwoordbevestiging',
- 'phone' => 'telefoonnummer',
- 'second' => 'seconde',
- 'sex' => 'geslacht',
- 'size' => 'grootte',
- 'subject' => 'onderwerp',
- 'time' => 'tijd',
- 'title' => 'titel',
- 'username' => 'gebruikersnaam',
- 'year' => 'jaar',
+ 'phone' => 'telefoonnummer',
+ 'second' => 'seconde',
+ 'sex' => 'geslacht',
+ 'size' => 'grootte',
+ 'subject' => 'onderwerp',
+ 'time' => 'tijd',
+ 'title' => 'titel',
+ 'username' => 'gebruikersnaam',
+ 'year' => 'jaar',
],
];
diff --git a/lang/no/articles.php b/lang/no/articles.php
index e66b004bd..fc26150ba 100644
--- a/lang/no/articles.php
+++ b/lang/no/articles.php
@@ -12,8 +12,8 @@
*/
return [
- 'articles' => 'Artikler',
+ 'articles' => 'Artikler',
'meta-articles' => 'Artikler og nyheter om trackeren og samfunnet',
- 'published-at' => 'Publisert',
- 'read-more' => 'Les mer',
+ 'published-at' => 'Publisert',
+ 'read-more' => 'Les mer',
];
diff --git a/lang/no/auth.php b/lang/no/auth.php
index 5c08f06ec..7d7261aaf 100644
--- a/lang/no/auth.php
+++ b/lang/no/auth.php
@@ -22,51 +22,51 @@ return [
| these language lines according to your application's requirements.
|
*/
- 'activation-error' => 'Bannlyst, ugyldig token, eller konto allerede bekreftet!',
- 'activation-success' => 'Konto bekreftet! Du kan nå logge inn!',
- 'add-image' => 'Legg til bildelenke',
- 'add-profile' => 'Legg til profillenke',
- 'allow-invite-appl' => 'Registrering er stengt! Du må bli invitert for å registrere deg! Men du kan søke om medlemskap. Du blir sendt til søknadssiden.',
- 'allow-invite' => 'Registrering er stengt! Du må bli invitert for å registrere deg! Du blir videresendt til innloggingssiden!',
- 'are-you' => 'Er du:',
- 'application' => 'Søknad',
- 'appl-closed' => 'Søknader er stengt',
- 'appl-intro' => 'er en lukket side. Du må ha en invitasjonslenke for å registrere deg. Om du ikke har en slik lenke, så kan du søke om medlemskap.',
- 'appl-reason' => 'Hvor hørte du om ":sitename", og hvorfor vil du bli medlem?',
- 'application-submitted' => 'Din søknad er blitt sendt og du får snart svar på e-post!',
- 'banned' => 'Denne kontoen er bannlyst!',
- 'check-later' => 'Sjekk igjen senere!',
- 'delete-image' => 'Slett siste bildelenke',
- 'delete-profile' => 'Slett siste profillenke',
- 'email' => 'E-post',
- 'failed' => 'Brukernavn og/eller passord er feil.',
- 'invalid-key' => 'Feil eller for gammel invitasjon!',
- 'login' => 'Logg inn',
- 'login-now-on' => 'Logger nå på',
- 'logout' => 'Logg ut',
- 'lost-password' => 'Glemt passord?',
- 'lost-username' => 'Glemt brukernavn?',
- 'need-invite' => 'Åpen registrering er deaktivert og du må ha en invitasjon for å få tilgang!',
- 'newbie' => 'Nybegynner',
- 'not-a-member' => 'Ikke medlem? Registrer deg på under 30 sekunder.',
- 'not-activated' => 'Denne kontoen er enda ikke blitt aktivert og er enda i godkjenningsgruppen. Vennligst sjekk e-posten din for aktiveringslenken. Om du ikke mottok aktiveringskoden, vennligst klikk "glemt passord" og fullfør stegene der.',
- 'password' => 'Passord',
- 'proof-image' => 'Bekreftelsesbilde URL',
- 'proof-image-title' => 'Lenker til profilskjermbilder',
- 'proof-profile' => 'Profillenke URL',
- 'proof-profile-title' => 'Lenker til dine profiler',
- 'proof-min' => '(Minimum 2, Anbefalt 3)',
- 'recover-my-password' => 'Tilbakestill mitt passord',
- 'register-thanks' => 'Takk for at du ble med! Vennligst sjekk din e-post for å bekrefte din konto',
- 'remember-me' => 'Husk meg',
- 'require-rules' => 'Vennligst les og aksepter våre regler med å skrolle til bunnen av denne siden.',
- 'signup' => 'Registrer',
- 'throttle' => 'For mange forsøk. Prøv igjen om :seconds sekunder.',
- 'unlock' => 'Lås opp',
- 'user-icon' => 'Brukerikon',
- 'username' => 'Brukernavn',
- 'veteran' => 'Erfaring med private trackere',
- 'welcome' => 'Velkommen tilbake!',
- 'welcome-restore' => 'Velkommen tilbake! Kontoen er ikke lenger deaktivert!',
+ 'activation-error' => 'Bannlyst, ugyldig token, eller konto allerede bekreftet!',
+ 'activation-success' => 'Konto bekreftet! Du kan nå logge inn!',
+ 'add-image' => 'Legg til bildelenke',
+ 'add-profile' => 'Legg til profillenke',
+ 'allow-invite-appl' => 'Registrering er stengt! Du må bli invitert for å registrere deg! Men du kan søke om medlemskap. Du blir sendt til søknadssiden.',
+ 'allow-invite' => 'Registrering er stengt! Du må bli invitert for å registrere deg! Du blir videresendt til innloggingssiden!',
+ 'are-you' => 'Er du:',
+ 'application' => 'Søknad',
+ 'appl-closed' => 'Søknader er stengt',
+ 'appl-intro' => 'er en lukket side. Du må ha en invitasjonslenke for å registrere deg. Om du ikke har en slik lenke, så kan du søke om medlemskap.',
+ 'appl-reason' => 'Hvor hørte du om ":sitename", og hvorfor vil du bli medlem?',
+ 'application-submitted' => 'Din søknad er blitt sendt og du får snart svar på e-post!',
+ 'banned' => 'Denne kontoen er bannlyst!',
+ 'check-later' => 'Sjekk igjen senere!',
+ 'delete-image' => 'Slett siste bildelenke',
+ 'delete-profile' => 'Slett siste profillenke',
+ 'email' => 'E-post',
+ 'failed' => 'Brukernavn og/eller passord er feil.',
+ 'invalid-key' => 'Feil eller for gammel invitasjon!',
+ 'login' => 'Logg inn',
+ 'login-now-on' => 'Logger nå på',
+ 'logout' => 'Logg ut',
+ 'lost-password' => 'Glemt passord?',
+ 'lost-username' => 'Glemt brukernavn?',
+ 'need-invite' => 'Åpen registrering er deaktivert og du må ha en invitasjon for å få tilgang!',
+ 'newbie' => 'Nybegynner',
+ 'not-a-member' => 'Ikke medlem? Registrer deg på under 30 sekunder.',
+ 'not-activated' => 'Denne kontoen er enda ikke blitt aktivert og er enda i godkjenningsgruppen. Vennligst sjekk e-posten din for aktiveringslenken. Om du ikke mottok aktiveringskoden, vennligst klikk "glemt passord" og fullfør stegene der.',
+ 'password' => 'Passord',
+ 'proof-image' => 'Bekreftelsesbilde URL',
+ 'proof-image-title' => 'Lenker til profilskjermbilder',
+ 'proof-profile' => 'Profillenke URL',
+ 'proof-profile-title' => 'Lenker til dine profiler',
+ 'proof-min' => '(Minimum 2, Anbefalt 3)',
+ 'recover-my-password' => 'Tilbakestill mitt passord',
+ 'register-thanks' => 'Takk for at du ble med! Vennligst sjekk din e-post for å bekrefte din konto',
+ 'remember-me' => 'Husk meg',
+ 'require-rules' => 'Vennligst les og aksepter våre regler med å skrolle til bunnen av denne siden.',
+ 'signup' => 'Registrer',
+ 'throttle' => 'For mange forsøk. Prøv igjen om :seconds sekunder.',
+ 'unlock' => 'Lås opp',
+ 'user-icon' => 'Brukerikon',
+ 'username' => 'Brukernavn',
+ 'veteran' => 'Erfaring med private trackere',
+ 'welcome' => 'Velkommen tilbake!',
+ 'welcome-restore' => 'Velkommen tilbake! Kontoen er ikke lenger deaktivert!',
];
diff --git a/lang/no/backup.php b/lang/no/backup.php
index b9a2c2694..c243f50c3 100644
--- a/lang/no/backup.php
+++ b/lang/no/backup.php
@@ -12,32 +12,32 @@
*/
return [
- 'actions' => 'Handlinger',
- 'backup' => 'Sikkerhetskopi',
- 'backup_doesnt_exist' => 'Sikkerhetskopi finnes ikke.',
- 'create_a_new_backup' => 'Opprett fullstendig sikkerhetskopi',
- 'create_a_new_files_backup' => 'Opprett sikkerhetskopiering for fil',
- 'create_a_new_db_backup' => 'Opprett sikkerhetskopi for database',
- 'create_confirmation_message' => 'Laster inn siden på nytt om 3 sekunder.',
- 'create_confirmation_title' => 'Sikkerhetskopiering fullført',
- 'create_error_message' => 'Sikkerhetsfilen kunne IKKE opprettes.',
- 'create_error_title' => 'Sikkerhetskopieringfeil',
- 'create_warning_message' => 'Sikkerhetskopien din kan IKKE være opprettet. Vennligst sjekk loggfiler for detaljer.',
- 'create_warning_title' => 'Ukjent feil',
- 'date' => 'Dato',
- 'delete' => 'Slett',
- 'delete_cancel_message' => 'Sikkerhetskopifilen er IKKE slettet.',
- 'delete_cancel_title' => 'Det er greit',
- 'delete_confirm' => 'Er du sikker på at du vil slette denne sikkerhetskopien?',
- 'delete_confirmation_message' => 'Sikkerhetskopifilen ble slettet.',
- 'delete_confirmation_title' => 'Ferdig',
- 'delete_error_message' => 'Sikkerhetskopifilen er IKKE slettet.',
- 'delete_error_title' => 'Feil',
- 'download' => 'Nedlasting',
- 'existing_backups' => 'Eksisterende sikkerhetskopier',
- 'file_size' => 'Filstørrelse',
- 'location' => 'Plassering',
- 'manager' => 'Leder',
- 'no_disks_configured' => 'Ingen sikkerhetskopidisker konfigurert i config / backup.php',
+ 'actions' => 'Handlinger',
+ 'backup' => 'Sikkerhetskopi',
+ 'backup_doesnt_exist' => 'Sikkerhetskopi finnes ikke.',
+ 'create_a_new_backup' => 'Opprett fullstendig sikkerhetskopi',
+ 'create_a_new_files_backup' => 'Opprett sikkerhetskopiering for fil',
+ 'create_a_new_db_backup' => 'Opprett sikkerhetskopi for database',
+ 'create_confirmation_message' => 'Laster inn siden på nytt om 3 sekunder.',
+ 'create_confirmation_title' => 'Sikkerhetskopiering fullført',
+ 'create_error_message' => 'Sikkerhetsfilen kunne IKKE opprettes.',
+ 'create_error_title' => 'Sikkerhetskopieringfeil',
+ 'create_warning_message' => 'Sikkerhetskopien din kan IKKE være opprettet. Vennligst sjekk loggfiler for detaljer.',
+ 'create_warning_title' => 'Ukjent feil',
+ 'date' => 'Dato',
+ 'delete' => 'Slett',
+ 'delete_cancel_message' => 'Sikkerhetskopifilen er IKKE slettet.',
+ 'delete_cancel_title' => 'Det er greit',
+ 'delete_confirm' => 'Er du sikker på at du vil slette denne sikkerhetskopien?',
+ 'delete_confirmation_message' => 'Sikkerhetskopifilen ble slettet.',
+ 'delete_confirmation_title' => 'Ferdig',
+ 'delete_error_message' => 'Sikkerhetskopifilen er IKKE slettet.',
+ 'delete_error_title' => 'Feil',
+ 'download' => 'Nedlasting',
+ 'existing_backups' => 'Eksisterende sikkerhetskopier',
+ 'file_size' => 'Filstørrelse',
+ 'location' => 'Plassering',
+ 'manager' => 'Leder',
+ 'no_disks_configured' => 'Ingen sikkerhetskopidisker konfigurert i config / backup.php',
'only_local_downloads_supported' => 'Bare nedlastinger fra det lokale filsystemet støttes.',
];
diff --git a/lang/no/blocks.php b/lang/no/blocks.php
index fd0da5ad6..3cad85f6b 100644
--- a/lang/no/blocks.php
+++ b/lang/no/blocks.php
@@ -12,19 +12,19 @@
*/
return [
- 'chatbox' => 'Chatteboks',
- 'click' => 'Klikk',
- 'to-enable-editor' => 'for å aktivere editoren',
- 'featured-by' => 'Utvalgt av',
- 'featured-torrents' => 'Utvalgte torrenter',
+ 'chatbox' => 'Chatteboks',
+ 'click' => 'Klikk',
+ 'to-enable-editor' => 'for å aktivere editoren',
+ 'featured-by' => 'Utvalgt av',
+ 'featured-torrents' => 'Utvalgte torrenter',
'featured-torrents-intro' => 'Skaff de mens du kan!',
- 'featured-until' => 'Dette er en utvalgt torrent til',
- 'top-torrents' => 'Topp torrenter',
- 'latest-posts' => 'Siste innlegg',
- 'latest-topics' => 'Siste emner',
- 'active-in-last' => 'Aktiv i siste',
- 'users-online' => 'Brukere pålogget',
- 'check-news' => 'Nyheter (sjekk daglig)',
- 'new-news' => 'Nye nyheter',
- 'new-torrents' => 'Nye torrenter',
+ 'featured-until' => 'Dette er en utvalgt torrent til',
+ 'top-torrents' => 'Topp torrenter',
+ 'latest-posts' => 'Siste innlegg',
+ 'latest-topics' => 'Siste emner',
+ 'active-in-last' => 'Aktiv i siste',
+ 'users-online' => 'Brukere pålogget',
+ 'check-news' => 'Nyheter (sjekk daglig)',
+ 'new-news' => 'Nye nyheter',
+ 'new-torrents' => 'Nye torrenter',
];
diff --git a/lang/no/bon.php b/lang/no/bon.php
index 9033755a8..8e2f75bd6 100644
--- a/lang/no/bon.php
+++ b/lang/no/bon.php
@@ -12,44 +12,44 @@
*/
return [
- 'activated' => 'Aktivert',
- 'active' => 'Aktivert!',
- 'amount' => 'Beløp',
- 'bon' => 'BON',
- 'bonus' => 'Bonus',
- 'date' => 'Dato',
- 'earning' => 'Du tjener',
- 'earning-rate' => 'Med denne inntektssatsen vil du tjene følgende per tidsramme:',
- 'earnings' => 'Inntjening',
- 'exchange' => 'Utveksling',
- 'exchange-warning' => 'Utvekslinger er endelig, vennligst dobbeltsjekk dine valg før du gjør en utveksling.',
- 'extended-stats' => 'Utvidede statistikker',
- 'gift' => 'Gave',
- 'gift-bonus' => 'Gi vekk bonuspoeng',
- 'gift-to' => 'Gi vekk bonuspoeng til',
- 'gifts' => 'Gaver',
- 'item' => 'Vare',
- 'no-refund' => 'INGEN REFUSJON!',
- 'per-day' => 'poeng per dag',
- 'per-hour' => 'poeng per time',
- 'per-minute' => 'poeng per minutt',
- 'per-month' => 'poeng per måned',
- 'per-second' => 'poeng per sekund',
- 'per-week' => 'poeng per uke',
- 'per-year' => 'poeng per år',
- 'points' => 'Poeng',
- 'receiver' => 'Mottaker',
- 'review-seeds' => 'Sjekk alle seedede torrents',
- 'send-gift' => 'Send gave',
- 'sender' => 'Avsender',
- 'store' => 'Butikk',
- 'tips' => 'Tips',
- 'total' => 'Totale inntekter',
- 'total-gifts' => 'totalt i BON-gaver',
- 'total-tips' => 'totalt i BON-tips',
+ 'activated' => 'Aktivert',
+ 'active' => 'Aktivert!',
+ 'amount' => 'Beløp',
+ 'bon' => 'BON',
+ 'bonus' => 'Bonus',
+ 'date' => 'Dato',
+ 'earning' => 'Du tjener',
+ 'earning-rate' => 'Med denne inntektssatsen vil du tjene følgende per tidsramme:',
+ 'earnings' => 'Inntjening',
+ 'exchange' => 'Utveksling',
+ 'exchange-warning' => 'Utvekslinger er endelig, vennligst dobbeltsjekk dine valg før du gjør en utveksling.',
+ 'extended-stats' => 'Utvidede statistikker',
+ 'gift' => 'Gave',
+ 'gift-bonus' => 'Gi vekk bonuspoeng',
+ 'gift-to' => 'Gi vekk bonuspoeng til',
+ 'gifts' => 'Gaver',
+ 'item' => 'Vare',
+ 'no-refund' => 'INGEN REFUSJON!',
+ 'per-day' => 'poeng per dag',
+ 'per-hour' => 'poeng per time',
+ 'per-minute' => 'poeng per minutt',
+ 'per-month' => 'poeng per måned',
+ 'per-second' => 'poeng per sekund',
+ 'per-week' => 'poeng per uke',
+ 'per-year' => 'poeng per år',
+ 'points' => 'Poeng',
+ 'receiver' => 'Mottaker',
+ 'review-seeds' => 'Sjekk alle seedede torrents',
+ 'send-gift' => 'Send gave',
+ 'sender' => 'Avsender',
+ 'store' => 'Butikk',
+ 'tips' => 'Tips',
+ 'total' => 'Totale inntekter',
+ 'total-gifts' => 'totalt i BON-gaver',
+ 'total-tips' => 'totalt i BON-tips',
'you-have-received-gifts' => 'Du har mottatt',
- 'you-have-sent-gifts' => 'Du har sendt',
- 'you-have-received-tips' => 'Du har mottatt',
- 'you-have-sent-tips' => 'Du har sendt',
- 'your-points' => 'Dine poeng',
+ 'you-have-sent-gifts' => 'Du har sendt',
+ 'you-have-received-tips' => 'Du har mottatt',
+ 'you-have-sent-tips' => 'Du har sendt',
+ 'your-points' => 'Dine poeng',
];
diff --git a/lang/no/bot.php b/lang/no/bot.php
index 25fb39398..487cb70c6 100644
--- a/lang/no/bot.php
+++ b/lang/no/bot.php
@@ -12,15 +12,15 @@
*/
return [
- 'about' => 'Om',
- 'bot' => 'Bot',
- 'bots' => 'Bots',
- 'color' => 'Farge',
- 'command' => 'Kommando',
- 'edit-bot' => 'Rediger bot',
+ 'about' => 'Om',
+ 'bot' => 'Bot',
+ 'bots' => 'Bots',
+ 'color' => 'Farge',
+ 'command' => 'Kommando',
+ 'edit-bot' => 'Rediger bot',
'emoji-code' => 'Emoji-kode',
- 'help' => 'Hjelp',
- 'icon' => 'Ikon',
- 'info' => 'Informasjon',
- 'name' => 'Navn',
+ 'help' => 'Hjelp',
+ 'icon' => 'Ikon',
+ 'info' => 'Informasjon',
+ 'name' => 'Navn',
];
diff --git a/lang/no/bug.php b/lang/no/bug.php
index 096aaac05..e680ea91b 100644
--- a/lang/no/bug.php
+++ b/lang/no/bug.php
@@ -12,15 +12,15 @@
*/
return [
- 'bug-report' => 'Feilrapport',
+ 'bug-report' => 'Feilrapport',
'bug-report-description' => 'Rapporter en nettsidefeil',
- 'enter-description' => 'Beskriv problemet så godt som mulig',
- 'enter-email' => 'Vennligst skriv inn din e-post',
- 'enter-title' => 'Vennligst velg en passende tittel',
- 'enter-username' => 'Vennligst skriv inn brukernavnet ditt',
- 'high' => 'Høy',
- 'low' => 'Lav',
- 'priority' => 'Prioritet',
- 'priority-description' => 'Velg bare veldig høy hvis feilen virkelig er et problem for å bruke nettstedet.',
- 'very-high' => 'Veldig høy',
+ 'enter-description' => 'Beskriv problemet så godt som mulig',
+ 'enter-email' => 'Vennligst skriv inn din e-post',
+ 'enter-title' => 'Vennligst velg en passende tittel',
+ 'enter-username' => 'Vennligst skriv inn brukernavnet ditt',
+ 'high' => 'Høy',
+ 'low' => 'Lav',
+ 'priority' => 'Prioritet',
+ 'priority-description' => 'Velg bare veldig høy hvis feilen virkelig er et problem for å bruke nettstedet.',
+ 'very-high' => 'Veldig høy',
];
diff --git a/lang/no/common.php b/lang/no/common.php
index a69eb94f9..a6ce5d056 100644
--- a/lang/no/common.php
+++ b/lang/no/common.php
@@ -12,220 +12,220 @@
*/
return [
- 'a-an-art' => '',
- 'abbrev-days' => 'D ',
- 'abbrev-hours' => 't ',
- 'abbrev-minutes' => 'm ',
- 'abbrev-months' => 'M ',
- 'abbrev-seconds' => 's',
- 'abbrev-weeks' => 'U ',
- 'abbrev-years' => 'Å ',
- 'about' => 'Om oss',
- 'account' => 'Konto',
- 'achievement-title' => 'Rått',
+ 'a-an-art' => '',
+ 'abbrev-days' => 'D ',
+ 'abbrev-hours' => 't ',
+ 'abbrev-minutes' => 'm ',
+ 'abbrev-months' => 'M ',
+ 'abbrev-seconds' => 's',
+ 'abbrev-weeks' => 'U ',
+ 'abbrev-years' => 'Å ',
+ 'about' => 'Om oss',
+ 'account' => 'Konto',
+ 'achievement-title' => 'Rått',
'achievement-unlocked' => 'Du låste opp