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' => '', - 'closeHtml' => '
', + 'openHtml' => '', + 'closeHtml' => '
', ], '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 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 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ürtoxumu 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ürtoxumu 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' => '