mirror of
https://github.com/HDInnovations/UNIT3D-Community-Edition.git
synced 2026-04-24 03:59:08 -05:00
remove: sd content and stream optimized flags
SD content is represented by the resolutions table now instead of this flag. Most people prefer web-dls over stream-optimized encodes these days.
This commit is contained in:
@@ -70,8 +70,6 @@ readonly class TorrentSearchFiltersDTO
|
||||
private bool $doubleup = false,
|
||||
private bool $featured = false,
|
||||
private bool $refundable = false,
|
||||
private bool $stream = false,
|
||||
private bool $sd = false,
|
||||
private bool $highspeed = false,
|
||||
private bool $internal = false,
|
||||
private bool $trumpable = false,
|
||||
@@ -353,8 +351,6 @@ readonly class TorrentSearchFiltersDTO
|
||||
)
|
||||
->when($this->featured, fn ($query) => $query->has('featured'))
|
||||
->when($this->refundable, fn ($query) => $query->where('refundable', '=', true))
|
||||
->when($this->stream, fn ($query) => $query->where('stream', '=', 1))
|
||||
->when($this->sd, fn ($query) => $query->where('sd', '=', 1))
|
||||
->when($this->highspeed, fn ($query) => $query->where('highspeed', '=', 1))
|
||||
->when($this->userBookmarked, fn ($query) => $query->whereRelation('bookmarks', 'user_id', '=', $this->user->id))
|
||||
->when($this->userWished, fn ($query) => $query->whereIn('tmdb', Wish::select('tmdb')->where('user_id', '=', $this->user->id)))
|
||||
@@ -583,14 +579,6 @@ readonly class TorrentSearchFiltersDTO
|
||||
$filters[] = 'refundable = true';
|
||||
}
|
||||
|
||||
if ($this->stream) {
|
||||
$filters[] = 'stream = true';
|
||||
}
|
||||
|
||||
if ($this->sd) {
|
||||
$filters[] = 'sd = true';
|
||||
}
|
||||
|
||||
if ($this->highspeed) {
|
||||
$filters[] = 'highspeed = true';
|
||||
}
|
||||
|
||||
@@ -166,8 +166,6 @@ class TorrentController extends BaseController
|
||||
$torrent->season_number = $request->input('season_number');
|
||||
$torrent->episode_number = $request->input('episode_number');
|
||||
$torrent->anon = $request->input('anonymous');
|
||||
$torrent->stream = $request->input('stream');
|
||||
$torrent->sd = $request->input('sd');
|
||||
$torrent->personal_release = $request->input('personal_release') ?? false;
|
||||
|
||||
/** @phpstan-ignore property.notFound (Larastan doesn't yet support loadExists()) */
|
||||
@@ -287,12 +285,6 @@ class TorrentController extends BaseController
|
||||
'anon' => [
|
||||
'required',
|
||||
],
|
||||
'stream' => [
|
||||
'required',
|
||||
],
|
||||
'sd' => [
|
||||
'required',
|
||||
],
|
||||
'personal_release' => [
|
||||
'nullable',
|
||||
],
|
||||
@@ -567,8 +559,6 @@ class TorrentController extends BaseController
|
||||
doubleup: $request->filled('doubleup'),
|
||||
refundable: $request->filled('refundable'),
|
||||
featured: $request->filled('featured'),
|
||||
stream: $request->filled('stream'),
|
||||
sd: $request->filled('sd'),
|
||||
highspeed: $request->filled('highspeed'),
|
||||
internal: $request->filled('internal'),
|
||||
personalRelease: $request->filled('personalRelease'),
|
||||
|
||||
@@ -98,9 +98,7 @@ class RssController extends Controller
|
||||
'freeleech',
|
||||
'doubleupload',
|
||||
'featured',
|
||||
'stream',
|
||||
'highspeed',
|
||||
'sd',
|
||||
'internal',
|
||||
'personalrelease',
|
||||
'bookmark',
|
||||
@@ -170,8 +168,6 @@ class RssController extends Controller
|
||||
free: $search->freeleech === null ? [] : [25, 50, 75, 100],
|
||||
doubleup: (bool) ($search->doubleupload ?? false),
|
||||
featured: (bool) ($search->featured ?? false),
|
||||
stream: (bool) ($search->stream ?? false),
|
||||
sd: (bool) ($search->sd ?? false),
|
||||
highspeed: (bool) ($search->highspeed ?? false),
|
||||
userBookmarked: (bool) ($search->bookmark ?? false),
|
||||
internal: (bool) ($search->internal ?? false),
|
||||
@@ -271,9 +267,7 @@ class RssController extends Controller
|
||||
'freeleech',
|
||||
'doubleupload',
|
||||
'featured',
|
||||
'stream',
|
||||
'highspeed',
|
||||
'sd',
|
||||
'internal',
|
||||
'personalrelease',
|
||||
'bookmark',
|
||||
|
||||
@@ -169,12 +169,10 @@ class PersonCredit extends Component
|
||||
'season_number',
|
||||
'episode_number',
|
||||
'tmdb',
|
||||
'stream',
|
||||
'free',
|
||||
'doubleup',
|
||||
'highspeed',
|
||||
'sticky',
|
||||
'sd',
|
||||
'internal',
|
||||
'created_at',
|
||||
'bumped_at',
|
||||
|
||||
@@ -131,12 +131,6 @@ class SimilarTorrent extends Component
|
||||
#[Url(history: true)]
|
||||
public bool $refundable = false;
|
||||
|
||||
#[Url(history: true)]
|
||||
public bool $stream = false;
|
||||
|
||||
#[Url(history: true)]
|
||||
public bool $sd = false;
|
||||
|
||||
#[Url(history: true)]
|
||||
public bool $highspeed = false;
|
||||
|
||||
@@ -310,8 +304,6 @@ class SimilarTorrent extends Component
|
||||
internal: $this->internal,
|
||||
personalRelease: $this->personalRelease,
|
||||
trumpable: $this->trumpable,
|
||||
stream: $this->stream,
|
||||
sd: $this->sd,
|
||||
highspeed: $this->highspeed,
|
||||
userBookmarked: $this->bookmarked,
|
||||
userWished: $this->wished,
|
||||
|
||||
@@ -17,6 +17,7 @@ declare(strict_types=1);
|
||||
namespace App\Http\Livewire\Stats;
|
||||
|
||||
use App\Models\Category;
|
||||
use App\Models\Resolution;
|
||||
use App\Models\Torrent;
|
||||
use Livewire\Attributes\Computed;
|
||||
use Livewire\Attributes\Lazy;
|
||||
@@ -31,10 +32,13 @@ class TorrentStats extends Component
|
||||
return Torrent::query()->count();
|
||||
}
|
||||
|
||||
/**
|
||||
* @return \Illuminate\Database\Eloquent\Collection<int, Resolution>
|
||||
*/
|
||||
#[Computed(cache: true, seconds: 10 * 60)]
|
||||
final public function sdCount(): int
|
||||
final public function resolutions(): \Illuminate\Database\Eloquent\Collection
|
||||
{
|
||||
return Torrent::query()->where('sd', '=', 1)->count();
|
||||
return Resolution::query()->withCount('torrents')->orderBy('position')->get();
|
||||
}
|
||||
|
||||
/**
|
||||
@@ -67,8 +71,7 @@ class TorrentStats extends Component
|
||||
return view('livewire.stats.torrent-stats', [
|
||||
'num_torrent' => $this->totalCount,
|
||||
'categories' => $this->categories,
|
||||
'num_hd' => $this->totalCount - $this->sdCount,
|
||||
'num_sd' => $this->sdCount,
|
||||
'resolutions' => $this->resolutions,
|
||||
'torrent_size' => $this->sizeSum,
|
||||
]);
|
||||
}
|
||||
|
||||
@@ -170,12 +170,6 @@ class TorrentSearch extends Component
|
||||
#[Url(history: true)]
|
||||
public bool $refundable = false;
|
||||
|
||||
#[Url(history: true)]
|
||||
public bool $stream = false;
|
||||
|
||||
#[Url(history: true)]
|
||||
public bool $sd = false;
|
||||
|
||||
#[Url(history: true)]
|
||||
public bool $highspeed = false;
|
||||
|
||||
@@ -378,8 +372,6 @@ class TorrentSearch extends Component
|
||||
doubleup: $this->doubleup,
|
||||
featured: $this->featured,
|
||||
refundable: $this->refundable,
|
||||
stream: $this->stream,
|
||||
sd: $this->sd,
|
||||
highspeed: $this->highspeed,
|
||||
internal: $this->internal,
|
||||
trumpable: $this->trumpable,
|
||||
@@ -600,12 +592,10 @@ class TorrentSearch extends Component
|
||||
'season_number',
|
||||
'episode_number',
|
||||
'tmdb',
|
||||
'stream',
|
||||
'free',
|
||||
'doubleup',
|
||||
'highspeed',
|
||||
'sticky',
|
||||
'sd',
|
||||
'internal',
|
||||
'created_at',
|
||||
'bumped_at',
|
||||
|
||||
@@ -123,18 +123,10 @@ class StoreRssRequest extends FormRequest
|
||||
'sometimes',
|
||||
'boolean',
|
||||
],
|
||||
'stream' => [
|
||||
'sometimes',
|
||||
'boolean',
|
||||
],
|
||||
'highspeed' => [
|
||||
'sometimes',
|
||||
'boolean',
|
||||
],
|
||||
'sd' => [
|
||||
'sometimes',
|
||||
'boolean',
|
||||
],
|
||||
'internal' => [
|
||||
'sometimes',
|
||||
'boolean',
|
||||
|
||||
@@ -123,18 +123,10 @@ class UpdateRssRequest extends FormRequest
|
||||
'sometimes',
|
||||
'boolean',
|
||||
],
|
||||
'stream' => [
|
||||
'sometimes',
|
||||
'boolean',
|
||||
],
|
||||
'highspeed' => [
|
||||
'sometimes',
|
||||
'boolean',
|
||||
],
|
||||
'sd' => [
|
||||
'sometimes',
|
||||
'boolean',
|
||||
],
|
||||
'internal' => [
|
||||
'sometimes',
|
||||
'boolean',
|
||||
|
||||
@@ -209,14 +209,6 @@ class StoreTorrentRequest extends FormRequest
|
||||
'required',
|
||||
'boolean',
|
||||
],
|
||||
'stream' => [
|
||||
'required',
|
||||
'boolean',
|
||||
],
|
||||
'sd' => [
|
||||
'required',
|
||||
'boolean',
|
||||
],
|
||||
'personal_release' => [
|
||||
'required',
|
||||
'boolean',
|
||||
|
||||
@@ -128,14 +128,6 @@ class UpdateTorrentRequest extends FormRequest
|
||||
'boolean',
|
||||
Rule::when(Torrent::withoutGlobalScope(ApprovedScope::class)->find($request->route('id'))->user_id !== $request->user()->id && !$request->user()->group->is_modo, 'exclude'),
|
||||
],
|
||||
'stream' => [
|
||||
'required',
|
||||
'boolean',
|
||||
],
|
||||
'sd' => [
|
||||
'required',
|
||||
'boolean',
|
||||
],
|
||||
'personal_release' => [
|
||||
'required',
|
||||
'boolean',
|
||||
|
||||
@@ -133,9 +133,7 @@ class Rss extends Model
|
||||
'freeleech' => null,
|
||||
'doubleupload' => null,
|
||||
'featured' => null,
|
||||
'stream' => null,
|
||||
'highspeed' => null,
|
||||
'sd' => null,
|
||||
'internal' => null,
|
||||
'personalrelease' => null,
|
||||
'bookmark' => null,
|
||||
|
||||
@@ -55,7 +55,6 @@ use Laravel\Scout\Searchable;
|
||||
* @property int $igdb
|
||||
* @property int|null $season_number
|
||||
* @property int|null $episode_number
|
||||
* @property int $stream
|
||||
* @property int $free
|
||||
* @property bool $doubleup
|
||||
* @property bool $refundable
|
||||
@@ -65,7 +64,6 @@ use Laravel\Scout\Searchable;
|
||||
* @property int|null $moderated_by
|
||||
* @property bool $anon
|
||||
* @property bool $sticky
|
||||
* @property int $sd
|
||||
* @property int $internal
|
||||
* @property \Illuminate\Support\Carbon|null $created_at
|
||||
* @property \Illuminate\Support\Carbon|null $updated_at
|
||||
@@ -168,7 +166,6 @@ class Torrent extends Model
|
||||
torrents.igdb,
|
||||
torrents.season_number,
|
||||
torrents.episode_number,
|
||||
torrents.stream,
|
||||
torrents.free,
|
||||
torrents.doubleup,
|
||||
torrents.refundable,
|
||||
@@ -176,7 +173,6 @@ class Torrent extends Model
|
||||
torrents.status,
|
||||
torrents.anon,
|
||||
torrents.sticky,
|
||||
torrents.sd,
|
||||
torrents.internal,
|
||||
UNIX_TIMESTAMP(torrents.deleted_at) AS deleted_at,
|
||||
torrents.distributor_id,
|
||||
@@ -846,7 +842,6 @@ class Torrent extends Model
|
||||
'igdb',
|
||||
'season_number',
|
||||
'episode_number',
|
||||
'stream',
|
||||
'free',
|
||||
'doubleup',
|
||||
'refundable',
|
||||
@@ -855,7 +850,6 @@ class Torrent extends Model
|
||||
'status',
|
||||
'anon',
|
||||
'sticky',
|
||||
'sd',
|
||||
'internal',
|
||||
'deleted_at',
|
||||
'distributor_id',
|
||||
@@ -918,7 +912,6 @@ class Torrent extends Model
|
||||
'igdb' => $torrent->igdb,
|
||||
'season_number' => $torrent->season_number,
|
||||
'episode_number' => $torrent->episode_number,
|
||||
'stream' => (bool) $torrent->stream,
|
||||
'free' => $torrent->free,
|
||||
'doubleup' => (bool) $torrent->doubleup,
|
||||
'refundable' => (bool) $torrent->refundable,
|
||||
@@ -927,7 +920,6 @@ class Torrent extends Model
|
||||
'status' => $torrent->status->value,
|
||||
'anon' => (bool) $torrent->anon,
|
||||
'sticky' => (int) $torrent->sticky,
|
||||
'sd' => (bool) $torrent->sd,
|
||||
'internal' => (bool) $torrent->internal,
|
||||
'deleted_at' => $torrent->deleted_at?->timestamp,
|
||||
'distributor_id' => $torrent->distributor_id,
|
||||
|
||||
@@ -165,7 +165,6 @@ return [
|
||||
'igdb',
|
||||
'season_number',
|
||||
'episode_number',
|
||||
'stream',
|
||||
'free',
|
||||
'doubleup',
|
||||
'refundable',
|
||||
@@ -174,7 +173,6 @@ return [
|
||||
'status',
|
||||
'anon',
|
||||
'sticky',
|
||||
'sd',
|
||||
'internal',
|
||||
'deleted_at',
|
||||
'personal_release',
|
||||
|
||||
@@ -61,7 +61,6 @@ class TorrentFactory extends Factory
|
||||
'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(),
|
||||
@@ -70,7 +69,6 @@ class TorrentFactory extends Factory
|
||||
'moderated_by' => 1,
|
||||
'anon' => $this->faker->boolean(),
|
||||
'sticky' => $this->faker->boolean(),
|
||||
'sd' => $this->faker->boolean(),
|
||||
'internal' => $this->faker->boolean(),
|
||||
];
|
||||
}
|
||||
|
||||
@@ -0,0 +1,34 @@
|
||||
<?php
|
||||
|
||||
declare(strict_types=1);
|
||||
|
||||
/**
|
||||
* NOTICE OF LICENSE.
|
||||
*
|
||||
* UNIT3D Community Edition is open-sourced software licensed under the GNU Affero General Public License v3.0
|
||||
* The details is bundled with this project in the file LICENSE.txt.
|
||||
*
|
||||
* @project UNIT3D Community Edition
|
||||
*
|
||||
* @author Roardom <roardom@protonmail.com>
|
||||
* @license https://www.gnu.org/licenses/agpl-3.0.en.html/ GNU Affero General Public License v3.0
|
||||
*/
|
||||
|
||||
use Illuminate\Database\Migrations\Migration;
|
||||
use Illuminate\Database\Schema\Blueprint;
|
||||
use Illuminate\Support\Facades\Schema;
|
||||
|
||||
return new class () extends Migration {
|
||||
/**
|
||||
* Run the migrations.
|
||||
*/
|
||||
public function up(): void
|
||||
{
|
||||
Schema::table('torrents', function (Blueprint $table): void {
|
||||
$table->dropColumn([
|
||||
'sd',
|
||||
'stream',
|
||||
]);
|
||||
});
|
||||
}
|
||||
};
|
||||
@@ -80,8 +80,6 @@ Parameters:
|
||||
| `mal` | int | MAL ID
|
||||
| `igdb` | int | IGDB ID (Games only)
|
||||
| `anonymous` | bool | Should the uploader's username be hidden?
|
||||
| `stream` | bool | Is the torrent's content stream-optimized?
|
||||
| `sd` | bool | Is the torrent's content standard definition?
|
||||
| `personal_release` | bool | Is the torrent's content created by the uploader?
|
||||
| `internal`* | bool | Is the torrent an internal release?
|
||||
| `refundable`* | bool | Is the torrent refundable?
|
||||
@@ -147,8 +145,6 @@ Optional Parameters:
|
||||
| `doubleup` | bool | Filter by if the torrent offers double upload
|
||||
| `featured` | bool | Filter by if the torrent is featured on the front page
|
||||
| `refundable` | bool | Filter by if the torrent is refundable
|
||||
| `stream` | bool | Filter by if the torrent's content is stream-optimized
|
||||
| `sd` | bool | Filter by if the torrent's content is standard definition
|
||||
| `highspeed` | bool | Filter by if the torrent has seeders whose IP address has been registered as a seedbox
|
||||
| `internal` | bool | Filter by if the torrent is an internal release
|
||||
| `personalRelease` | bool | Filter by if the torrent's content is created by the uploader
|
||||
|
||||
@@ -149,7 +149,6 @@ return [
|
||||
'runtime' => 'وقت التشغيل',
|
||||
'satisfied_in' => 'راضي في',
|
||||
'say-thanks' => 'يرجى تذكر أن أقول <b>شكرا</b> <b>والبذور</b> لأطول فترة ممكنة',
|
||||
'sd-content' => 'محتوى SD',
|
||||
'search' => 'بحث',
|
||||
'seed-time' => 'وقت البذور',
|
||||
'seeder' => 'بزار',
|
||||
@@ -170,7 +169,6 @@ return [
|
||||
'statistics' => 'الإحصاء',
|
||||
'stats' => 'احصائيات',
|
||||
'sticky' => 'لزج',
|
||||
'stream-optimized' => 'تيار الأمثل',
|
||||
'subtitle' => 'عنوان فرعي',
|
||||
'team-player' => 'لاعب فريق',
|
||||
'thank' => 'شكر',
|
||||
|
||||
@@ -149,7 +149,6 @@ return [
|
||||
'runtime' => 'Runtime',
|
||||
'satisfied_in' => 'İçəridə məmnunuq',
|
||||
'say-thanks' => 'Xahiş edirik <b>şükür</b> və <b>toxumu</b> demək mümkün <b>olduğunca</b> uzun müddətə xatırlayın',
|
||||
'sd-content' => 'SD məzmunu',
|
||||
'search' => 'Axtarış',
|
||||
'seed-time' => 'Toxum zamanı',
|
||||
'seeder' => 'Seeder',
|
||||
@@ -170,7 +169,6 @@ return [
|
||||
'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',
|
||||
|
||||
@@ -149,7 +149,6 @@ return [
|
||||
'runtime' => 'час выканання',
|
||||
'satisfied_in' => 'задаволены у',
|
||||
'say-thanks' => 'Калі ласка , ня забудзьцеся сказаць <b>дзякуй</b> і <b>насення</b> да таго часу , як вы можаце',
|
||||
'sd-content' => 'ўтрыманне SD',
|
||||
'search' => 'пошук',
|
||||
'seed-time' => 'час Seed',
|
||||
'seeder' => 'сеялка',
|
||||
@@ -170,7 +169,6 @@ return [
|
||||
'statistics' => 'статыстыка',
|
||||
'stats' => 'статыстыка',
|
||||
'sticky' => 'ліпкі',
|
||||
'stream-optimized' => 'паток аптымізаваны',
|
||||
'subtitle' => 'падзагаловак',
|
||||
'team-player' => 'камандны гулец',
|
||||
'thank' => 'дзякуй',
|
||||
|
||||
@@ -149,7 +149,6 @@ return [
|
||||
'runtime' => 'Времетраене',
|
||||
'satisfied_in' => 'Доволен',
|
||||
'say-thanks' => 'Моля, не забравяйте да кажете <b>благодарности</b> и <b>семена</b> за толкова дълго, колкото можете',
|
||||
'sd-content' => 'SD съдържание',
|
||||
'search' => 'Търсене',
|
||||
'seed-time' => 'Време на семена',
|
||||
'seeder' => 'редосеялка',
|
||||
@@ -170,7 +169,6 @@ return [
|
||||
'statistics' => 'Статистика',
|
||||
'stats' => 'Статистика',
|
||||
'sticky' => 'лепкав',
|
||||
'stream-optimized' => 'Потокът е оптимизиран',
|
||||
'subtitle' => 'подзаглавие',
|
||||
'team-player' => 'Отборен играч',
|
||||
'thank' => 'благодаря',
|
||||
|
||||
@@ -149,7 +149,6 @@ return [
|
||||
'runtime' => 'রানটাইম',
|
||||
'satisfied_in' => 'সন্তুষ্ট',
|
||||
'say-thanks' => '<b>ধন্যবাদ</b> যতক্ষণ সম্ভব আপনি <b>ধন্যবাদ</b> এবং <b>বীজ</b> বলতে মনে রাখবেন',
|
||||
'sd-content' => 'এসডি কন্টেন্ট',
|
||||
'search' => 'অনুসন্ধান',
|
||||
'seed-time' => 'বীজ সময়',
|
||||
'seeder' => 'বীজবিক্রেতা',
|
||||
@@ -170,7 +169,6 @@ return [
|
||||
'statistics' => 'পরিসংখ্যান',
|
||||
'stats' => 'পরিসংখ্যান',
|
||||
'sticky' => 'আঠাল',
|
||||
'stream-optimized' => 'স্ট্রিম অপ্টিমাইজ করা',
|
||||
'subtitle' => 'বাড়তি নাম',
|
||||
'team-player' => 'টিম প্লেয়ার',
|
||||
'thank' => 'ধন্যবাদ',
|
||||
|
||||
@@ -149,7 +149,6 @@ return [
|
||||
'runtime' => 'Runtime',
|
||||
'satisfied_in' => 'Zadovoljan',
|
||||
'say-thanks' => 'Ne zaboravite da kažete <b>hvala</b> i <b>sjeme</b> koliko god možete',
|
||||
'sd-content' => 'SD sadržaj',
|
||||
'search' => 'Search',
|
||||
'seed-time' => 'Vrijeme sjemena',
|
||||
'seeder' => 'Seeder',
|
||||
@@ -170,7 +169,6 @@ return [
|
||||
'statistics' => 'Statistika',
|
||||
'stats' => 'Stats',
|
||||
'sticky' => 'Sticky',
|
||||
'stream-optimized' => 'Stream optimiziran',
|
||||
'subtitle' => 'Subtitle',
|
||||
'team-player' => 'Timski igrač',
|
||||
'thank' => 'Hvala',
|
||||
|
||||
@@ -149,7 +149,6 @@ return [
|
||||
'runtime' => 'Temps d execució',
|
||||
'satisfied_in' => 'Satisfet',
|
||||
'say-thanks' => 'Recordeu-vos de dir <b>gràcies</b> i <b>llavor</b> durant tot el temps possible',
|
||||
'sd-content' => 'Contingut SD',
|
||||
'search' => 'Cerca',
|
||||
'seed-time' => 'Temps de llavor',
|
||||
'seeder' => 'Sembradora',
|
||||
@@ -170,7 +169,6 @@ return [
|
||||
'statistics' => 'Estadístiques',
|
||||
'stats' => 'Estadístiques',
|
||||
'sticky' => 'Sticky',
|
||||
'stream-optimized' => 'Stream optimitzat',
|
||||
'subtitle' => 'Subtítol',
|
||||
'team-player' => 'Jugador d equip',
|
||||
'thank' => 'Gràcies',
|
||||
|
||||
@@ -149,7 +149,6 @@ return [
|
||||
'runtime' => 'Delka',
|
||||
'satisfied_in' => 'Spokojeni',
|
||||
'say-thanks' => 'Prosím, nezapomeňte <b>poděkovat</b> a <b>semeno</b> tak dlouho, jak můžete',
|
||||
'sd-content' => 'Obsah SD',
|
||||
'search' => 'Vyhledávání',
|
||||
'seed-time' => 'Doba seedu',
|
||||
'seeder' => 'Seeder',
|
||||
@@ -170,7 +169,6 @@ return [
|
||||
'statistics' => 'Statistika',
|
||||
'stats' => 'Statistiky',
|
||||
'sticky' => 'Připnutý',
|
||||
'stream-optimized' => 'Optimalizováno pro Stream',
|
||||
'subtitle' => 'Podtitul',
|
||||
'team-player' => 'Týmový hráč',
|
||||
'thank' => 'Poděkovat',
|
||||
|
||||
@@ -149,7 +149,6 @@ return [
|
||||
'runtime' => 'Runtime',
|
||||
'satisfied_in' => 'Bodlon yn',
|
||||
'say-thanks' => 'Cofiwch ddweud <b>diolch</b> a <b>hadau</b> am <b>gyn</b> hired â phosibl',
|
||||
'sd-content' => 'Cynnwys SD',
|
||||
'search' => 'Chwilio',
|
||||
'seed-time' => 'Amser hadau',
|
||||
'seeder' => 'Seeder',
|
||||
@@ -170,7 +169,6 @@ return [
|
||||
'statistics' => 'Ystadegau',
|
||||
'stats' => 'Ystadegau',
|
||||
'sticky' => 'Gludiog',
|
||||
'stream-optimized' => 'Ffrydio wedi i optimeiddio',
|
||||
'subtitle' => 'Is-deitl',
|
||||
'team-player' => 'Chwaraewr tim',
|
||||
'thank' => 'Diolch',
|
||||
|
||||
@@ -165,7 +165,6 @@ return [
|
||||
'runtime' => 'Varighed',
|
||||
'satisfied_in' => 'Tilfreds med',
|
||||
'say-thanks' => 'Husk at sige <b>tak</b> og <b>seed</b> så længe du kan',
|
||||
'sd-content' => 'SD-indhold',
|
||||
'search' => 'Søg',
|
||||
'search-by-name' => 'Søg via navn',
|
||||
'season-number' => 'Sæsonnummer',
|
||||
@@ -190,7 +189,6 @@ return [
|
||||
'statistics' => 'Statistik',
|
||||
'stats' => 'Stats',
|
||||
'sticky' => 'Gør Sticky',
|
||||
'stream-optimized' => 'Stream optimeret',
|
||||
'subtitle' => 'Undertekst',
|
||||
'subtitle-included' => 'Denne torrent indeholder allerede følgende undertekster muxed med:',
|
||||
'team-player' => 'Holdspiller',
|
||||
|
||||
@@ -170,7 +170,6 @@ return [
|
||||
'runtime' => 'Laufzeit',
|
||||
'satisfied_in' => 'Zufrieden in',
|
||||
'say-thanks' => 'Bitte denke daran <b>Danke</b> zu sagen und so lange wie möglich zu <b>Seeden</b>',
|
||||
'sd-content' => 'SD Content',
|
||||
'search' => 'Suche',
|
||||
'search-by-name' => 'Suche nach Name',
|
||||
'season-number' => 'Staffel Nummer',
|
||||
@@ -196,7 +195,6 @@ return [
|
||||
'statistics' => 'Statistiken',
|
||||
'stats' => 'Statistiken',
|
||||
'sticky' => 'Angepinnt',
|
||||
'stream-optimized' => 'Stream optimiert',
|
||||
'subtitle' => 'Untertitel',
|
||||
'subtitle-included' => 'Dieser Torrent enthält bereits die folgenden eingemuxten Untertitel:',
|
||||
'team-player' => 'Teamspieler',
|
||||
|
||||
@@ -168,7 +168,6 @@ return [
|
||||
'runtime' => 'Χρόνος εκτέλεσης',
|
||||
'satisfied_in' => 'Ικανοποιημένος σε',
|
||||
'say-thanks' => 'Θυμηθείτε να πείτε <b>ευχαριστώ</b> στον Uploader και <b> να διαμοιράζετε </b> για όσο διάστημα μπορείτε',
|
||||
'sd-content' => 'Περιεχόμενο SD',
|
||||
'search' => 'Αναζήτηση',
|
||||
'season-number' => 'Αριθμός σαιζόν',
|
||||
'seed-time' => 'Χρόνος διαμοιρασμού',
|
||||
@@ -193,7 +192,6 @@ return [
|
||||
'statistics' => 'Statistics',
|
||||
'stats' => 'Στατιστικά στοιχεία',
|
||||
'sticky' => 'Κολλημένο',
|
||||
'stream-optimized' => 'Η ροή βελτιστοποιήθηκε',
|
||||
'subtitle' => 'Υπότιτλος',
|
||||
'team-player' => 'Ομαδικός παίχτης',
|
||||
'thank' => 'Ευχαριστώ',
|
||||
|
||||
@@ -178,7 +178,6 @@ return [
|
||||
'runtime' => 'Runtime',
|
||||
'satisfied_in' => 'Satisfied in',
|
||||
'say-thanks' => 'Please remember to say <b>thanks</b> and <b>seed</b> for as long as you can',
|
||||
'sd-content' => 'SD Content',
|
||||
'search' => 'Search',
|
||||
'search-by-name' => 'Search By Name',
|
||||
'season-number' => 'Season Number',
|
||||
@@ -205,7 +204,6 @@ return [
|
||||
'statistics' => 'Statistics',
|
||||
'stats' => 'Stats',
|
||||
'sticky' => 'Sticky',
|
||||
'stream-optimized' => 'Stream Optimized',
|
||||
'subtitle' => 'Subtitle',
|
||||
'subtitle-included' => 'This torrent already includes the following subtitles muxed in:',
|
||||
'team-player' => 'Team Player',
|
||||
|
||||
@@ -178,7 +178,6 @@ return [
|
||||
'runtime' => 'Tiempo de ejecución',
|
||||
'satisfied_in' => 'Satisfecho en',
|
||||
'say-thanks' => 'Por favor, recuerden decir <b>gracias</b> y <b>compartir</b> todo el tiempo que puedan',
|
||||
'sd-content' => 'Contenido SD',
|
||||
'search' => 'Buscar',
|
||||
'search-by-name' => 'Buscar por nombre',
|
||||
'season-number' => 'Número de temporada',
|
||||
@@ -205,7 +204,6 @@ return [
|
||||
'statistics' => 'Estadística',
|
||||
'stats' => 'Estadísticas',
|
||||
'sticky' => 'Fijado',
|
||||
'stream-optimized' => 'Optimizado para Streaming',
|
||||
'subtitle' => 'Subtítulo',
|
||||
'subtitle-included' => 'Este torrent ya incluye los siguientes subtítulos mezclados:',
|
||||
'team-player' => 'Jugador en equipo',
|
||||
|
||||
@@ -149,7 +149,6 @@ return [
|
||||
'runtime' => 'Kestus',
|
||||
'satisfied_in' => 'Rahul on',
|
||||
'say-thanks' => 'Palun ärge unustage öelda <b>tänu</b> ja <b>seemet</b> nii kaua kui võimalik',
|
||||
'sd-content' => 'SD-sisu',
|
||||
'search' => 'Otsing',
|
||||
'seed-time' => 'Seemnete aeg',
|
||||
'seeder' => 'Külvik',
|
||||
@@ -170,7 +169,6 @@ return [
|
||||
'statistics' => 'Statistika',
|
||||
'stats' => 'Statistika',
|
||||
'sticky' => 'Kleepuv',
|
||||
'stream-optimized' => 'Stream on optimeeritud',
|
||||
'subtitle' => 'Subtiitrid',
|
||||
'team-player' => 'Meeskonnamängija',
|
||||
'thank' => 'Tänan',
|
||||
|
||||
@@ -149,7 +149,6 @@ return [
|
||||
'runtime' => 'Runtime',
|
||||
'satisfied_in' => 'Pozik nago',
|
||||
'say-thanks' => 'Gogoratu <b>eskerrak</b> eta <b>hazia</b> ahalik eta gehien esateko',
|
||||
'sd-content' => 'SD edukia',
|
||||
'search' => 'Search',
|
||||
'seed-time' => 'Seed denbora',
|
||||
'seeder' => 'seeder',
|
||||
@@ -170,7 +169,6 @@ return [
|
||||
'statistics' => 'Estatistikak',
|
||||
'stats' => 'estatistikak',
|
||||
'sticky' => 'Itsaskor',
|
||||
'stream-optimized' => 'Stream optimizatua',
|
||||
'subtitle' => 'azpititulua',
|
||||
'team-player' => 'Taldeko jokalaria',
|
||||
'thank' => 'Eskerrik',
|
||||
|
||||
@@ -149,7 +149,6 @@ return [
|
||||
'runtime' => 'زمان اجرا',
|
||||
'satisfied_in' => 'راضی است',
|
||||
'say-thanks' => 'لطفا به یاد داشته باشید تا زمانی که می توانید بگویید، <b>به لطف خدا</b> و <b>بذر</b> می گویند',
|
||||
'sd-content' => 'محتویات SD',
|
||||
'search' => 'جستجو کردن',
|
||||
'seed-time' => 'زمان بذر',
|
||||
'seeder' => 'بذر',
|
||||
@@ -170,7 +169,6 @@ return [
|
||||
'statistics' => 'آمار',
|
||||
'stats' => 'آمار',
|
||||
'sticky' => 'چسبنده',
|
||||
'stream-optimized' => 'جریان بهینه سازی شده',
|
||||
'subtitle' => 'عنوان فرعی',
|
||||
'team-player' => 'بازیکن تیم',
|
||||
'thank' => 'ممنون',
|
||||
|
||||
@@ -149,7 +149,6 @@ return [
|
||||
'runtime' => 'runtime',
|
||||
'satisfied_in' => 'Tyytyväinen',
|
||||
'say-thanks' => 'Muista sanoa <b>kiitos</b> ja <b>siemenet</b> niin kauan kuin voit',
|
||||
'sd-content' => 'SD-sisältö',
|
||||
'search' => 'Hae',
|
||||
'seed-time' => 'Seed-aika',
|
||||
'seeder' => 'seeder',
|
||||
@@ -170,7 +169,6 @@ return [
|
||||
'statistics' => 'tilasto',
|
||||
'stats' => 'tilastot',
|
||||
'sticky' => 'Sticky',
|
||||
'stream-optimized' => 'Stream optimoitu',
|
||||
'subtitle' => 'alaotsikko',
|
||||
'team-player' => 'Joukkuepelaaja',
|
||||
'thank' => 'Kiittää',
|
||||
|
||||
@@ -159,7 +159,6 @@ return [
|
||||
'runtime' => 'Durée',
|
||||
'satisfied_in' => 'Complété dans',
|
||||
'say-thanks' => 'Pensez à dire <b>Merci</b> et <b>restez en seed</b> aussi longtemps que vous pouvez',
|
||||
'sd-content' => 'Contenu Basse Définition',
|
||||
'search' => 'Recherche',
|
||||
'seed-time' => 'Temps en seed',
|
||||
'seeder' => 'Seedeur',
|
||||
@@ -182,7 +181,6 @@ return [
|
||||
'statistics' => 'Statistiques',
|
||||
'stats' => 'Stats',
|
||||
'sticky' => 'Sticky',
|
||||
'stream-optimized' => 'Optimisé pour du Stream',
|
||||
'subtitle' => 'Sous-titrage',
|
||||
'team-player' => 'Team Player',
|
||||
'thank' => 'Merci',
|
||||
|
||||
@@ -149,7 +149,6 @@ return [
|
||||
'runtime' => 'Runtime',
|
||||
'satisfied_in' => 'Satisfeito',
|
||||
'say-thanks' => 'Non esqueza dicir <b>grazas</b> e <b>sementes</b> durante o tempo que poida',
|
||||
'sd-content' => 'Contido SD',
|
||||
'search' => 'Buscar',
|
||||
'seed-time' => 'Tempo de semente',
|
||||
'seeder' => 'Sementeira',
|
||||
@@ -170,7 +169,6 @@ return [
|
||||
'statistics' => 'Estatísticas',
|
||||
'stats' => 'Estatísticas',
|
||||
'sticky' => 'Pegajoso',
|
||||
'stream-optimized' => 'Fluxo optimizado',
|
||||
'subtitle' => 'Subtítulo',
|
||||
'team-player' => 'Xogador de equipo',
|
||||
'thank' => 'Grazas',
|
||||
|
||||
@@ -149,7 +149,6 @@ return [
|
||||
'runtime' => 'क्रम',
|
||||
'satisfied_in' => 'में संतुष्ट',
|
||||
'say-thanks' => 'कृपया जब तक आप कर सकते हैं तब तक <b>धन्यवाद</b> और <b>बीज</b> कहने <b>के</b> लिए याद रखें',
|
||||
'sd-content' => 'एसडी सामग्री',
|
||||
'search' => 'खोज',
|
||||
'seed-time' => 'बीज समय',
|
||||
'seeder' => 'बोने की मशीन',
|
||||
@@ -170,7 +169,6 @@ return [
|
||||
'statistics' => 'आंकड़े',
|
||||
'stats' => 'आँकड़े',
|
||||
'sticky' => 'चिपचिपा',
|
||||
'stream-optimized' => 'स्ट्रीम अनुकूलित',
|
||||
'subtitle' => 'उपशीर्षक',
|
||||
'team-player' => 'टीम के खिलाड़ी',
|
||||
'thank' => 'धन्यवाद',
|
||||
|
||||
@@ -149,7 +149,6 @@ return [
|
||||
'runtime' => 'dužina trajanja',
|
||||
'satisfied_in' => 'Zadovoljan',
|
||||
'say-thanks' => 'Ne zaboravite reći <b>hvala</b> i <b>sjeme</b> koliko god možete',
|
||||
'sd-content' => 'Sadržaj SD-a',
|
||||
'search' => 'traži',
|
||||
'seed-time' => 'Vrijeme sjemena',
|
||||
'seeder' => 'Sejačica',
|
||||
@@ -170,7 +169,6 @@ return [
|
||||
'statistics' => 'statistika',
|
||||
'stats' => 'Statistike',
|
||||
'sticky' => 'Ljepljiv',
|
||||
'stream-optimized' => 'Stream optimiziran',
|
||||
'subtitle' => 'Titl',
|
||||
'team-player' => 'Timski igrač',
|
||||
'thank' => 'Zahvaliti',
|
||||
|
||||
@@ -149,7 +149,6 @@ return [
|
||||
'runtime' => 'Runtime',
|
||||
'satisfied_in' => 'Elégedett',
|
||||
'say-thanks' => 'Kérjük, ne felejtse el mondani <b>köszönetét</b> és <b>magját</b> , ameddig csak lehet',
|
||||
'sd-content' => 'SD tartalom',
|
||||
'search' => 'Keresés',
|
||||
'seed-time' => 'Vetőmagidő',
|
||||
'seeder' => 'Vetőgép',
|
||||
@@ -170,7 +169,6 @@ return [
|
||||
'statistics' => 'Statisztika',
|
||||
'stats' => 'statisztikák',
|
||||
'sticky' => 'Ragadós',
|
||||
'stream-optimized' => 'A patak optimalizált',
|
||||
'subtitle' => 'Felirat',
|
||||
'team-player' => 'Csapatjátékos',
|
||||
'thank' => 'Köszönet',
|
||||
|
||||
@@ -149,7 +149,6 @@ return [
|
||||
'runtime' => 'Runtime',
|
||||
'satisfied_in' => 'Puas masuk',
|
||||
'say-thanks' => 'Harap ingat untuk mengucapkan <b>terima kasih</b> dan <b>benih</b> selama Anda bisa',
|
||||
'sd-content' => 'Konten SD',
|
||||
'search' => 'Pencarian',
|
||||
'seed-time' => 'Waktu benih',
|
||||
'seeder' => 'Alat penyemai benih',
|
||||
@@ -170,7 +169,6 @@ return [
|
||||
'statistics' => 'Statistik',
|
||||
'stats' => 'Statistik',
|
||||
'sticky' => 'Lengket',
|
||||
'stream-optimized' => 'Aliran dioptimalkan',
|
||||
'subtitle' => 'Subtitle',
|
||||
'team-player' => 'Pemain tim',
|
||||
'thank' => 'Terima kasih',
|
||||
|
||||
@@ -149,7 +149,6 @@ return [
|
||||
'runtime' => 'Runtime',
|
||||
'satisfied_in' => 'Ánægður í',
|
||||
'say-thanks' => 'Vinsamlegast mundu að segja <b>takk</b> og <b>fræ</b> eins lengi og þú getur',
|
||||
'sd-content' => 'SD efni',
|
||||
'search' => 'Leita',
|
||||
'seed-time' => 'Seed tími',
|
||||
'seeder' => 'Seeder',
|
||||
@@ -170,7 +169,6 @@ return [
|
||||
'statistics' => 'Tölfræði',
|
||||
'stats' => 'Tölfræði',
|
||||
'sticky' => 'Sticky',
|
||||
'stream-optimized' => 'Stream bjartsýni',
|
||||
'subtitle' => 'Texti',
|
||||
'team-player' => 'Liðsmaður',
|
||||
'thank' => 'Þakka þér fyrir',
|
||||
|
||||
@@ -152,7 +152,6 @@ return [
|
||||
'runtime' => 'Runtime',
|
||||
'satisfied_in' => 'Soddisfatto in',
|
||||
'say-thanks' => 'Per favore, ricordati di <b>ringraziare</b> e <b>di condividere</b> per tutto il tempo che puoi',
|
||||
'sd-content' => 'Contenuto SD',
|
||||
'search' => 'Ricerca',
|
||||
'seed-time' => 'Tempo di seed',
|
||||
'seeder' => 'Seminatore',
|
||||
@@ -173,7 +172,6 @@ return [
|
||||
'statistics' => 'statistica',
|
||||
'stats' => 'Statistiche',
|
||||
'sticky' => 'Appiccicoso',
|
||||
'stream-optimized' => 'Stream ottimizzato',
|
||||
'subtitle' => 'Sottotitolo',
|
||||
'team-player' => 'Giocatore di squadra',
|
||||
'thank' => 'grazie',
|
||||
|
||||
@@ -149,7 +149,6 @@ return [
|
||||
'runtime' => 'ランタイム',
|
||||
'satisfied_in' => 'に満足',
|
||||
'say-thanks' => 'できる限り<b>感謝</b>と<b>種</b>を言うことを忘れない<b>で</b>ください',
|
||||
'sd-content' => 'SDコンテンツ',
|
||||
'search' => 'サーチ',
|
||||
'seed-time' => 'シードタイム',
|
||||
'seeder' => 'シーダー',
|
||||
@@ -170,7 +169,6 @@ return [
|
||||
'statistics' => '統計',
|
||||
'stats' => '統計',
|
||||
'sticky' => 'スティッキー',
|
||||
'stream-optimized' => 'ストリーム最適化',
|
||||
'subtitle' => '字幕',
|
||||
'team-player' => 'チームプレイヤー',
|
||||
'thank' => '感謝',
|
||||
|
||||
@@ -149,7 +149,6 @@ return [
|
||||
'runtime' => 'Runtime',
|
||||
'satisfied_in' => 'კმაყოფილი',
|
||||
'say-thanks' => 'გთხოვთ გახსოვდეთ ვთქვა <b>მადლობა</b> და <b>თესლი</b> რადგან თქვენ შეგიძლიათ',
|
||||
'sd-content' => 'SD ფაილი',
|
||||
'search' => 'ძიება',
|
||||
'seed-time' => 'დათესილი დრო',
|
||||
'seeder' => 'სელექციონერი',
|
||||
@@ -170,7 +169,6 @@ return [
|
||||
'statistics' => 'სტატისტიკა',
|
||||
'stats' => 'სტატისტიკა',
|
||||
'sticky' => 'წებოვანი',
|
||||
'stream-optimized' => 'ნაკადის ოპტიმიზაცია',
|
||||
'subtitle' => 'სუბტიტრი',
|
||||
'team-player' => 'Გუნდური მოთამაშე',
|
||||
'thank' => 'მადლობა',
|
||||
|
||||
@@ -149,7 +149,6 @@ return [
|
||||
'runtime' => 'Runtime',
|
||||
'satisfied_in' => 'Қанағаттанған',
|
||||
'say-thanks' => 'Ұзақ уақыт бойы сіздерге <b>рахмет</b> және <b>тұқым</b> айтуға ұмытпаңыз',
|
||||
'sd-content' => 'SD мазмұны',
|
||||
'search' => 'Іздеу',
|
||||
'seed-time' => 'Тұқымдық уақыт',
|
||||
'seeder' => 'Дәнді дақыл',
|
||||
@@ -170,7 +169,6 @@ return [
|
||||
'statistics' => 'Статистика',
|
||||
'stats' => 'Статистика',
|
||||
'sticky' => 'Жабысқақ',
|
||||
'stream-optimized' => 'Ағын оңтайландырылды',
|
||||
'subtitle' => 'Субтитр',
|
||||
'team-player' => 'Топ ойыншысы',
|
||||
'thank' => 'Рахмет',
|
||||
|
||||
@@ -149,7 +149,6 @@ return [
|
||||
'runtime' => 'ពេលរត់',
|
||||
'satisfied_in' => 'ពេញចិត្ត',
|
||||
'say-thanks' => 'សូមកុំភ្លេចនិយាយ <b>អរគុណ</b> និង <b>គ្រាប់ពូជ</b> ឱ្យបានយូរតាមតែអាចធ្វើទៅបាន',
|
||||
'sd-content' => 'មាតិកា SD',
|
||||
'search' => 'ស្វែងរក',
|
||||
'seed-time' => 'ពេលវេលាពូជ',
|
||||
'seeder' => 'អ្នករៀបចំពូជ',
|
||||
@@ -170,7 +169,6 @@ return [
|
||||
'statistics' => 'ស្ថិតិ',
|
||||
'stats' => 'ស្ថិតិ',
|
||||
'sticky' => 'ស្អិត',
|
||||
'stream-optimized' => 'ការស្ទ្រីមប្រសើរ',
|
||||
'subtitle' => 'ចំណងជើងរង',
|
||||
'team-player' => 'អ្នកលេងក្រុម',
|
||||
'thank' => 'អរគុណ',
|
||||
|
||||
@@ -149,7 +149,6 @@ return [
|
||||
'runtime' => 'ಚಾಲನಾಸಮಯ',
|
||||
'satisfied_in' => 'ಸಂತಸಗೊಂಡಿದೆ',
|
||||
'say-thanks' => 'ದಯವಿಟ್ಟು ಸಾಧ್ಯವಾದಷ್ಟು ಕಾಲ <b>ಧನ್ಯವಾದಗಳು</b> ಮತ್ತು <b>ಬೀಜವನ್ನು</b> ಹೇಳಲು ಮರೆಯದಿರಿ',
|
||||
'sd-content' => 'ಎಸ್ಡಿ ವಿಷಯ',
|
||||
'search' => 'ಹುಡುಕಿ',
|
||||
'seed-time' => 'ಬೀಜ ಸಮಯ',
|
||||
'seeder' => 'ಸೀಡರ್',
|
||||
@@ -170,7 +169,6 @@ return [
|
||||
'statistics' => 'ಅಂಕಿಅಂಶ',
|
||||
'stats' => 'ಅಂಕಿಅಂಶಗಳು',
|
||||
'sticky' => 'ಸ್ಟಿಕಿ',
|
||||
'stream-optimized' => 'ಸ್ಟ್ರೀಮ್ ಹೊಂದುವಂತೆ',
|
||||
'subtitle' => 'ಉಪಶೀರ್ಷಿಕೆ',
|
||||
'team-player' => 'ತಂಡದ ಆಟಗಾರ',
|
||||
'thank' => 'ಧನ್ಯವಾದಗಳು',
|
||||
|
||||
@@ -149,7 +149,6 @@ return [
|
||||
'runtime' => '실행 시간',
|
||||
'satisfied_in' => '만족',
|
||||
'say-thanks' => '당신이 할 수있는 한 <b>감사</b> 와 <b>씨를</b> 말한다.',
|
||||
'sd-content' => 'SD 콘텐츠',
|
||||
'search' => '찾기',
|
||||
'seed-time' => '시딩 시간',
|
||||
'seeder' => '시더',
|
||||
@@ -170,7 +169,6 @@ return [
|
||||
'statistics' => '통계',
|
||||
'stats' => '통계',
|
||||
'sticky' => '고정',
|
||||
'stream-optimized' => '스트림 최적화 됨',
|
||||
'subtitle' => '자막',
|
||||
'team-player' => '팀 플레이어',
|
||||
'thank' => '감사',
|
||||
|
||||
@@ -149,7 +149,6 @@ return [
|
||||
'runtime' => 'Trukmė',
|
||||
'satisfied_in' => 'Patenkintas',
|
||||
'say-thanks' => 'Nepamirškite pasakyti <b>padėkos</b> ir <b>sėklos</b> tiek, kiek galite',
|
||||
'sd-content' => 'SD turinys',
|
||||
'search' => 'Paieška',
|
||||
'seed-time' => 'Sėklos laikas',
|
||||
'seeder' => 'Sėjamoji',
|
||||
@@ -170,7 +169,6 @@ return [
|
||||
'statistics' => 'Statistika',
|
||||
'stats' => 'Statistika',
|
||||
'sticky' => 'Lipnus',
|
||||
'stream-optimized' => 'Srautas optimizuotas',
|
||||
'subtitle' => 'Subtitrai',
|
||||
'team-player' => 'Komandos žaidėjas',
|
||||
'thank' => 'Ačiū',
|
||||
|
||||
@@ -149,7 +149,6 @@ return [
|
||||
'runtime' => 'Runtime',
|
||||
'satisfied_in' => 'Apmierināts',
|
||||
'say-thanks' => 'Lūdzu, atcerieties pateikt <b>pateicību</b> un <b>sēklas</b> tik ilgi, cik vien iespējams',
|
||||
'sd-content' => 'SD saturs',
|
||||
'search' => 'Meklēt',
|
||||
'seed-time' => 'Sēklu laiks',
|
||||
'seeder' => 'Sējmašīna',
|
||||
@@ -170,7 +169,6 @@ return [
|
||||
'statistics' => 'Statistika',
|
||||
'stats' => 'Statistika',
|
||||
'sticky' => 'Sticky',
|
||||
'stream-optimized' => 'Plūsma optimizēta',
|
||||
'subtitle' => 'Apakšvirsraksts',
|
||||
'team-player' => 'Komandas spēlētājs',
|
||||
'thank' => 'Paldies',
|
||||
|
||||
@@ -149,7 +149,6 @@ return [
|
||||
'runtime' => 'Траење',
|
||||
'satisfied_in' => 'Задоволен во',
|
||||
'say-thanks' => 'Ве молиме запомнете да се <b>заблагодарите</b> и да <b>седете</b> колку што е можно подолго',
|
||||
'sd-content' => 'SD содржина',
|
||||
'search' => 'Барај',
|
||||
'seed-time' => 'Време на семето',
|
||||
'seeder' => 'Seeder',
|
||||
@@ -170,7 +169,6 @@ return [
|
||||
'statistics' => 'Статистика',
|
||||
'stats' => 'Статистика',
|
||||
'sticky' => 'Леплива',
|
||||
'stream-optimized' => 'Тек оптимизиран',
|
||||
'subtitle' => 'Превод',
|
||||
'team-player' => 'Тимски играч',
|
||||
'thank' => 'Благодарам',
|
||||
|
||||
@@ -149,7 +149,6 @@ return [
|
||||
'runtime' => 'Ажиллах цаг',
|
||||
'satisfied_in' => 'Сэтгэл хангалуун байна',
|
||||
'say-thanks' => '<b>Талархал</b> хэлж, та нар аль болох удаан <b>үрийн</b> анхаарна уу',
|
||||
'sd-content' => 'SD агуулга',
|
||||
'search' => 'Хайлт',
|
||||
'seed-time' => 'Үрийн хугацаа',
|
||||
'seeder' => 'Суулчид',
|
||||
@@ -170,7 +169,6 @@ return [
|
||||
'statistics' => 'Статистик тоо',
|
||||
'stats' => 'Статус',
|
||||
'sticky' => 'Наалттай',
|
||||
'stream-optimized' => 'Дамжуулалт оновчтой болсон',
|
||||
'subtitle' => 'Дэд гарчиг',
|
||||
'team-player' => 'Багийн тоглогч',
|
||||
'thank' => 'Баярлалаа',
|
||||
|
||||
@@ -149,7 +149,6 @@ return [
|
||||
'runtime' => 'Runtime',
|
||||
'satisfied_in' => 'Puas dalam',
|
||||
'say-thanks' => 'Sila ingat <b>terima kasih</b> dan <b>benih</b> selama yang anda boleh',
|
||||
'sd-content' => 'Kandungan SD',
|
||||
'search' => 'Carian',
|
||||
'seed-time' => 'Masa benih',
|
||||
'seeder' => 'Seeder',
|
||||
@@ -170,7 +169,6 @@ return [
|
||||
'statistics' => 'Statistik',
|
||||
'stats' => 'Statistik',
|
||||
'sticky' => 'Melekit',
|
||||
'stream-optimized' => 'Aliran dioptimumkan',
|
||||
'subtitle' => 'Sarikata',
|
||||
'team-player' => 'Pemain pasukan',
|
||||
'thank' => 'Terima kasih',
|
||||
|
||||
@@ -149,7 +149,6 @@ return [
|
||||
'runtime' => 'Runtime',
|
||||
'satisfied_in' => 'मा सन्तुष्ट भयो',
|
||||
'say-thanks' => 'कृपया लामो समयसम्मको लागि <b>धन्यवाद</b> र <b>बीउ</b> भन्नुहोस् सम्झनुहोस्',
|
||||
'sd-content' => 'SD सामग्री',
|
||||
'search' => 'खोज्नुहोस्',
|
||||
'seed-time' => 'बीज समय',
|
||||
'seeder' => 'सीडर',
|
||||
@@ -170,7 +169,6 @@ return [
|
||||
'statistics' => 'तथ्याङ्कहरू',
|
||||
'stats' => 'आँकडा',
|
||||
'sticky' => 'स्टिकी',
|
||||
'stream-optimized' => 'अनुकूलित स्ट्रीम',
|
||||
'subtitle' => 'उपशीर्षक',
|
||||
'team-player' => 'टोली खेलाडी',
|
||||
'thank' => 'धन्यवाद',
|
||||
|
||||
@@ -149,7 +149,6 @@ return [
|
||||
'runtime' => 'runtime',
|
||||
'satisfied_in' => 'Tevreden in',
|
||||
'say-thanks' => 'Vergeet niet om zo lang mogelijk <b>dank</b> en <b>zaad</b> te zeggen',
|
||||
'sd-content' => 'SD-inhoud',
|
||||
'search' => 'Zoeken',
|
||||
'seed-time' => 'Zaad tijd',
|
||||
'seeder' => 'Zaaimachine',
|
||||
@@ -170,7 +169,6 @@ return [
|
||||
'statistics' => 'Statistieken',
|
||||
'stats' => 'Stats',
|
||||
'sticky' => 'Kleverig',
|
||||
'stream-optimized' => 'Stream geoptimaliseerd',
|
||||
'subtitle' => 'subtitel',
|
||||
'team-player' => 'Team speler',
|
||||
'thank' => 'bedanken',
|
||||
|
||||
@@ -170,7 +170,6 @@ return [
|
||||
'runtime' => 'Kjøretid',
|
||||
'satisfied_in' => 'Fornøyd i',
|
||||
'say-thanks' => 'Husk å si <b>takk</b> og <b>seed</b> så lenge du kan',
|
||||
'sd-content' => 'SD-innhold',
|
||||
'search' => 'Søk',
|
||||
'search-by-name' => 'Søk etter navn',
|
||||
'season-number' => 'Sesong Nummer',
|
||||
@@ -196,7 +195,6 @@ return [
|
||||
'statistics' => 'Statistikk',
|
||||
'stats' => 'Statistikk',
|
||||
'sticky' => 'Klistret',
|
||||
'stream-optimized' => 'Strøm optimalisert',
|
||||
'subtitle' => 'Undertekst',
|
||||
'subtitle-included' => 'Denne torrenten har allerede undertekster muxed inn:',
|
||||
'team-player' => 'Lagspiller',
|
||||
|
||||
@@ -149,7 +149,6 @@ return [
|
||||
'runtime' => 'Runtime',
|
||||
'satisfied_in' => 'Zadowolony',
|
||||
'say-thanks' => 'Pamiętaj, aby powiedzieć <b>dziękuję</b> i <b>nasienie</b> tak długo, jak możesz',
|
||||
'sd-content' => 'Zawartość SD',
|
||||
'search' => 'Szukaj',
|
||||
'seed-time' => 'Czas siewu',
|
||||
'seeder' => 'Siewnik',
|
||||
@@ -170,7 +169,6 @@ return [
|
||||
'statistics' => 'Statystyka',
|
||||
'stats' => 'Statystyki',
|
||||
'sticky' => 'Lepki',
|
||||
'stream-optimized' => 'Strumień zoptymalizowany',
|
||||
'subtitle' => 'Podtytuł',
|
||||
'team-player' => 'Gracz zespołowy',
|
||||
'thank' => 'Podziękować',
|
||||
|
||||
@@ -149,7 +149,6 @@ return [
|
||||
'runtime' => 'Tempo de execução',
|
||||
'satisfied_in' => 'Satisfeito em',
|
||||
'say-thanks' => 'Por favor, lembre-se de dizer <b>obrigado</b> e <b>semente</b> pelo maior tempo possível',
|
||||
'sd-content' => 'Conteúdo SD',
|
||||
'search' => 'Procurar',
|
||||
'seed-time' => 'Tempo de semente',
|
||||
'seeder' => 'Semeadora',
|
||||
@@ -170,7 +169,6 @@ return [
|
||||
'statistics' => 'Estatisticas',
|
||||
'stats' => 'Estatísticas',
|
||||
'sticky' => 'Pegajoso',
|
||||
'stream-optimized' => 'Fluxo otimizado',
|
||||
'subtitle' => 'Subtítulo',
|
||||
'team-player' => 'Jogador da equipe',
|
||||
'thank' => 'Obrigado',
|
||||
|
||||
@@ -149,7 +149,6 @@ return [
|
||||
'runtime' => 'Runtime',
|
||||
'satisfied_in' => 'Satisfăcut în',
|
||||
'say-thanks' => 'Vă rugăm să vă amintiți să vă <b>mulțumiți</b> și să <b>săturați</b> cât puteți de mult',
|
||||
'sd-content' => 'Conținut SD',
|
||||
'search' => 'Căutare',
|
||||
'seed-time' => 'Timpul de însămânțare',
|
||||
'seeder' => 'Semănătoare',
|
||||
@@ -170,7 +169,6 @@ return [
|
||||
'statistics' => 'Statistici',
|
||||
'stats' => 'Statistici',
|
||||
'sticky' => 'Lipicios',
|
||||
'stream-optimized' => 'Stream optimizat',
|
||||
'subtitle' => 'Subtitlu',
|
||||
'team-player' => 'Jucător în echipă',
|
||||
'thank' => 'mulțumire',
|
||||
|
||||
@@ -149,7 +149,6 @@ return [
|
||||
'runtime' => 'время выполнения',
|
||||
'satisfied_in' => 'Удовлетворены в',
|
||||
'say-thanks' => 'Пожалуйста, не забудьте сказать <b>спасибо</b> и <b>посеять</b> так долго, как вы можете',
|
||||
'sd-content' => 'SD-контент',
|
||||
'search' => 'Поиск',
|
||||
'seed-time' => 'Время посева',
|
||||
'seeder' => 'сеялка',
|
||||
@@ -170,7 +169,6 @@ return [
|
||||
'statistics' => 'Статистика',
|
||||
'stats' => 'Статистика',
|
||||
'sticky' => 'липкий',
|
||||
'stream-optimized' => 'Поток оптимизирован',
|
||||
'subtitle' => 'подзаголовок',
|
||||
'team-player' => 'Командный игрок',
|
||||
'thank' => 'Поблагодарить',
|
||||
|
||||
@@ -149,7 +149,6 @@ return [
|
||||
'runtime' => 'රාමුව',
|
||||
'satisfied_in' => 'තෘප්තිමත්',
|
||||
'say-thanks' => 'කරුණාකර ඔබට හැකි තාක් දුරට <b>ස්තුති</b> හා <b>බීජ</b> කියන්නට මතක තබා ගන්න',
|
||||
'sd-content' => 'SD අන්තර්ගතය',
|
||||
'search' => 'සෙවීම',
|
||||
'seed-time' => 'බීජ කාලය',
|
||||
'seeder' => 'සීඩී',
|
||||
@@ -170,7 +169,6 @@ return [
|
||||
'statistics' => 'සංඛ්යාලේඛන',
|
||||
'stats' => 'සංඛ්යාලේඛන',
|
||||
'sticky' => 'ඇලෙනසුළුයි',
|
||||
'stream-optimized' => 'ප්රවාහය ප්රශස්තකරණය',
|
||||
'subtitle' => 'උපසිරැසි',
|
||||
'team-player' => 'කණ්ඩායම් ක්රීඩකයා',
|
||||
'thank' => 'ස්තූතියි',
|
||||
|
||||
@@ -149,7 +149,6 @@ return [
|
||||
'runtime' => 'Runtime',
|
||||
'satisfied_in' => 'Spokojný v',
|
||||
'say-thanks' => 'Pamätajte, prosím, <b>ďakujem</b> a <b>semeno</b> tak dlho, ako môžete',
|
||||
'sd-content' => 'Obsah SD',
|
||||
'search' => 'Vyhľadávanie',
|
||||
'seed-time' => 'Doba osievania',
|
||||
'seeder' => 'rozsievač',
|
||||
@@ -170,7 +169,6 @@ return [
|
||||
'statistics' => 'štatistika',
|
||||
'stats' => 'štatistiky',
|
||||
'sticky' => 'lepkavý',
|
||||
'stream-optimized' => 'Stream je optimalizovaný',
|
||||
'subtitle' => 'podtitul',
|
||||
'team-player' => 'Tímový hráč',
|
||||
'thank' => 'Poďakovať',
|
||||
|
||||
@@ -149,7 +149,6 @@ return [
|
||||
'runtime' => 'Runtime',
|
||||
'satisfied_in' => 'Zadovoljni',
|
||||
'say-thanks' => 'Ne pozabite reči <b>hvala</b> in <b>seme</b> toliko časa, kot lahko',
|
||||
'sd-content' => 'Vsebina SD',
|
||||
'search' => 'Iskanje',
|
||||
'seed-time' => 'Čas sejanja',
|
||||
'seeder' => 'Seeder',
|
||||
@@ -170,7 +169,6 @@ return [
|
||||
'statistics' => 'Statistika',
|
||||
'stats' => 'Statistika',
|
||||
'sticky' => 'Lepljivo',
|
||||
'stream-optimized' => 'Stream optimiziran',
|
||||
'subtitle' => 'Podnaslov',
|
||||
'team-player' => 'Timski igralec',
|
||||
'thank' => 'Hvala',
|
||||
|
||||
@@ -149,7 +149,6 @@ return [
|
||||
'runtime' => 'Runtime',
|
||||
'satisfied_in' => 'Të kënaqur',
|
||||
'say-thanks' => 'Ju lutemi mbani mend të thoni <b>falënderimet</b> dhe <b>farat</b> për aq kohë sa të mundeni',
|
||||
'sd-content' => 'Përmbajtje SD',
|
||||
'search' => 'kërkim',
|
||||
'seed-time' => 'Ora e farës',
|
||||
'seeder' => 'mbjellës',
|
||||
@@ -170,7 +169,6 @@ return [
|
||||
'statistics' => 'të dhëna statistikore',
|
||||
'stats' => 'Stats',
|
||||
'sticky' => 'ngjitës',
|
||||
'stream-optimized' => 'Rrjedha e optimizuar',
|
||||
'subtitle' => 'nëntitull',
|
||||
'team-player' => 'Lojtar i ekipit',
|
||||
'thank' => 'Falenderim',
|
||||
|
||||
@@ -149,7 +149,6 @@ return [
|
||||
'runtime' => 'Рунтиме',
|
||||
'satisfied_in' => 'Задовољан',
|
||||
'say-thanks' => 'Не заборавите да кажете <b>хвала</b> и <b>сјеме</b> колико год можете',
|
||||
'sd-content' => 'СД садржај',
|
||||
'search' => 'Претрага',
|
||||
'seed-time' => 'Сеед тиме',
|
||||
'seeder' => 'Сеедер',
|
||||
@@ -170,7 +169,6 @@ return [
|
||||
'statistics' => 'Статистика',
|
||||
'stats' => 'Статс',
|
||||
'sticky' => 'Стицки',
|
||||
'stream-optimized' => 'Стреам оптимизиран',
|
||||
'subtitle' => 'Субтитле',
|
||||
'team-player' => 'Тимски играч',
|
||||
'thank' => 'Захвалити',
|
||||
|
||||
@@ -149,7 +149,6 @@ return [
|
||||
'runtime' => 'Aktiv tid',
|
||||
'satisfied_in' => 'Nöjd i',
|
||||
'say-thanks' => 'Kom ihåg att säga <b>tack</b> och <b>seeda/b> så länge du kan',
|
||||
'sd-content' => 'SD-innehåll',
|
||||
'search' => 'Sök',
|
||||
'seed-time' => 'Seedtid',
|
||||
'seeder' => 'Seeder',
|
||||
@@ -170,7 +169,6 @@ return [
|
||||
'statistics' => 'Statistik',
|
||||
'stats' => 'stats',
|
||||
'sticky' => 'Sticky',
|
||||
'stream-optimized' => 'Streaming optimerad',
|
||||
'subtitle' => 'Textning',
|
||||
'team-player' => 'Lagspelare',
|
||||
'thank' => 'Tacka',
|
||||
|
||||
@@ -149,7 +149,6 @@ return [
|
||||
'runtime' => 'Runtime',
|
||||
'satisfied_in' => 'Imetimizwa',
|
||||
'say-thanks' => 'Tafadhali kumbuka kusema <b>shukrani</b> na <b>mbegu</b> kwa muda mrefu iwezekanavyo',
|
||||
'sd-content' => 'Maudhui ya SD',
|
||||
'search' => 'Tafuta',
|
||||
'seed-time' => 'Wakati wa mbegu',
|
||||
'seeder' => 'Seeder',
|
||||
@@ -170,7 +169,6 @@ return [
|
||||
'statistics' => 'Takwimu',
|
||||
'stats' => 'Takwimu',
|
||||
'sticky' => 'Fimbo',
|
||||
'stream-optimized' => 'Mkondo umeboreshwa',
|
||||
'subtitle' => 'Mada',
|
||||
'team-player' => 'Mchezaji wa timu',
|
||||
'thank' => 'Asante',
|
||||
|
||||
@@ -149,7 +149,6 @@ return [
|
||||
'runtime' => 'Радио',
|
||||
'satisfied_in' => 'Қаноатмандӣ',
|
||||
'say-thanks' => 'Лутфан, ёд гиред, ки <b>тӯҳфа</b> ва <b>тухмро</b> то даме ки шумо метавонед',
|
||||
'sd-content' => 'Муҳтавои SD',
|
||||
'search' => 'Ҷустуҷӯ',
|
||||
'seed-time' => 'Вақт насл',
|
||||
'seeder' => 'Афсона',
|
||||
@@ -170,7 +169,6 @@ return [
|
||||
'statistics' => 'Омор',
|
||||
'stats' => 'Stats',
|
||||
'sticky' => 'Шохиси',
|
||||
'stream-optimized' => 'Сатҳи optimized',
|
||||
'subtitle' => 'Subtitle',
|
||||
'team-player' => 'Плеери даста',
|
||||
'thank' => 'Ташаккур',
|
||||
|
||||
@@ -149,7 +149,6 @@ return [
|
||||
'runtime' => 'Runtime',
|
||||
'satisfied_in' => 'พึงพอใจ',
|
||||
'say-thanks' => 'โปรดจำไว้ว่า <b>ต้องขอบคุณ</b> และ <b>หว่านเมล็ด</b> ให้นานที่สุดเท่าที่จะทำได้',
|
||||
'sd-content' => 'เนื้อหา SD',
|
||||
'search' => 'ค้นหา',
|
||||
'seed-time' => 'เวลาเมล็ด',
|
||||
'seeder' => 'Seeder',
|
||||
@@ -170,7 +169,6 @@ return [
|
||||
'statistics' => 'สถิติ',
|
||||
'stats' => 'สถิติ',
|
||||
'sticky' => 'เหนียว',
|
||||
'stream-optimized' => 'สตรีมที่ดีที่สุด',
|
||||
'subtitle' => 'หัวเรื่องย่อย',
|
||||
'team-player' => 'ทีมผู้เล่น',
|
||||
'thank' => 'ขอบคุณ',
|
||||
|
||||
@@ -149,7 +149,6 @@ return [
|
||||
'runtime' => 'Runtime',
|
||||
'satisfied_in' => 'Nasiyahan sa',
|
||||
'say-thanks' => 'Mangyaring tandaan na sabihin <b>salamat</b> at <b>binhi</b> hangga t maaari',
|
||||
'sd-content' => 'Nilalaman ng SD',
|
||||
'search' => 'Paghahanap',
|
||||
'seed-time' => 'Panahon ng binhi',
|
||||
'seeder' => 'Seeder',
|
||||
@@ -170,7 +169,6 @@ return [
|
||||
'statistics' => 'Istatistika',
|
||||
'stats' => 'Stats',
|
||||
'sticky' => 'Malagkit',
|
||||
'stream-optimized' => 'Na-optimize ang stream',
|
||||
'subtitle' => 'Subtitle',
|
||||
'team-player' => 'Manlalaro ng koponan',
|
||||
'thank' => 'Salamat',
|
||||
|
||||
@@ -149,7 +149,6 @@ return [
|
||||
'runtime' => 'Süre',
|
||||
'satisfied_in' => 'Memnun',
|
||||
'say-thanks' => 'Lütfen <b>teşekkür</b> etmeyi ve <b>ekmeyi</b> olabildiğince uzun süre eklemeyi unutmayın',
|
||||
'sd-content' => 'SD içeriği',
|
||||
'search' => 'Arama',
|
||||
'seed-time' => 'Tohum zamanı',
|
||||
'seeder' => 'mibzer',
|
||||
@@ -170,7 +169,6 @@ return [
|
||||
'statistics' => 'istatistik',
|
||||
'stats' => 'İstatistikleri',
|
||||
'sticky' => 'Yapışkan',
|
||||
'stream-optimized' => 'Akış optimize',
|
||||
'subtitle' => 'Alt yazı',
|
||||
'team-player' => 'Takım oyuncusu',
|
||||
'thank' => 'Teşekkür',
|
||||
|
||||
@@ -174,7 +174,6 @@ return [
|
||||
'runtime' => 'Тривалість',
|
||||
'satisfied_in' => 'Задоволений',
|
||||
'say-thanks' => 'Будь ласка, пам\'ятайте, казати <b>дякую</b> і <b>сідувати</b> до тих пір, поки ви можете',
|
||||
'sd-content' => 'SD',
|
||||
'search' => 'Пошук',
|
||||
'search-by-name' => 'Пошук по назві',
|
||||
'season-number' => 'Номер сезону',
|
||||
@@ -200,7 +199,6 @@ return [
|
||||
'statistics' => 'Статистика',
|
||||
'stats' => 'Статистика',
|
||||
'sticky' => 'Закріплено',
|
||||
'stream-optimized' => 'Потокова оптимізація',
|
||||
'subtitle' => 'Підзаголовок',
|
||||
'subtitle-included' => 'Цей торрент вже містить наступні субтитри:',
|
||||
'team-player' => 'Командний гравець',
|
||||
|
||||
@@ -149,7 +149,6 @@ return [
|
||||
'runtime' => 'Runtime',
|
||||
'satisfied_in' => 'میں مطمئن ہوں',
|
||||
'say-thanks' => 'براہ کرم یاد رکھیں کہ جب تک آپ کر سکتے ہیں، <b>شکریہ</b> اور <b>بیج</b> <b>کا</b> کہنا ہے',
|
||||
'sd-content' => 'SD مواد',
|
||||
'search' => 'تلاش کریں',
|
||||
'seed-time' => 'بیج کا وقت',
|
||||
'seeder' => 'سیڈر',
|
||||
@@ -170,7 +169,6 @@ return [
|
||||
'statistics' => 'اعداد و شمار',
|
||||
'stats' => 'اعداد و شمار',
|
||||
'sticky' => 'چسپاں',
|
||||
'stream-optimized' => 'سٹریم کو بہتر بنایا',
|
||||
'subtitle' => 'ذیلی عنوان',
|
||||
'team-player' => 'ٹیم کے کھلاڑی',
|
||||
'thank' => 'شکریہ',
|
||||
|
||||
@@ -149,7 +149,6 @@ return [
|
||||
'runtime' => 'Runtime',
|
||||
'satisfied_in' => 'Muvaffaqiyatli',
|
||||
'say-thanks' => 'Iltimos, iloji boricha ko p <b>rahmat</b> va <b>urug </b> aytishni unutmang',
|
||||
'sd-content' => 'SD mazmuni',
|
||||
'search' => 'Qidirmoq',
|
||||
'seed-time' => 'Urug vaqt',
|
||||
'seeder' => 'Seeder',
|
||||
@@ -170,7 +169,6 @@ return [
|
||||
'statistics' => 'Statistika',
|
||||
'stats' => 'Statistikalar',
|
||||
'sticky' => 'Muhim',
|
||||
'stream-optimized' => 'Translatsiya optimallashtirildi',
|
||||
'subtitle' => 'Subtitr',
|
||||
'team-player' => 'Jamoa o yinchi',
|
||||
'thank' => 'Shukur',
|
||||
|
||||
@@ -149,7 +149,6 @@ return [
|
||||
'runtime' => 'Thời gian chạy',
|
||||
'satisfied_in' => 'Hài lòng trong',
|
||||
'say-thanks' => 'Hãy nhớ nói <b>lời cảm ơn</b> và <b>hạt giống</b> miễn là bạn có thể',
|
||||
'sd-content' => 'Nội dung SD',
|
||||
'search' => 'Tìm kiếm',
|
||||
'seed-time' => 'Thời gian hạt giống',
|
||||
'seeder' => 'Máy gieo hạt',
|
||||
@@ -170,7 +169,6 @@ return [
|
||||
'statistics' => 'Số liệu thống kê',
|
||||
'stats' => 'Số liệu thống kê',
|
||||
'sticky' => 'Dính',
|
||||
'stream-optimized' => 'Luồng được tối ưu hóa',
|
||||
'subtitle' => 'Phụ đề',
|
||||
'team-player' => 'Đội chơi',
|
||||
'thank' => 'Cảm tạ',
|
||||
|
||||
@@ -176,7 +176,6 @@ return [
|
||||
'runtime' => '片长',
|
||||
'satisfied_in' => '达标于',
|
||||
'say-thanks' => '别忘记说<b>谢谢</b> 及 <b>保种</b>',
|
||||
'sd-content' => 'SD 内容',
|
||||
'search' => '搜索',
|
||||
'search-by-name' => '按名称搜索',
|
||||
'season-number' => '季号',
|
||||
@@ -202,7 +201,6 @@ return [
|
||||
'statistics' => '统计',
|
||||
'stats' => '统计数据',
|
||||
'sticky' => '置顶',
|
||||
'stream-optimized' => '串流优化',
|
||||
'subtitle' => '字幕',
|
||||
'subtitle-included' => '这个种子已经包括了以下混合的字幕:',
|
||||
'team-player' => '组队',
|
||||
|
||||
@@ -176,7 +176,6 @@ return [
|
||||
'runtime' => '片長',
|
||||
'satisfied_in' => '達標於',
|
||||
'say-thanks' => '別忘記說<b>謝謝</b> 及 <b>保種</b>',
|
||||
'sd-content' => 'SD 內容',
|
||||
'search' => '搜尋',
|
||||
'search-by-name' => '以名稱搜尋',
|
||||
'season-number' => '季別',
|
||||
@@ -202,7 +201,6 @@ return [
|
||||
'statistics' => '統計',
|
||||
'stats' => '統計數據',
|
||||
'sticky' => '釘記',
|
||||
'stream-optimized' => '串流優化',
|
||||
'subtitle' => '字幕',
|
||||
'subtitle-included' => '這個種子已經包含下列字幕:',
|
||||
'team-player' => 'Team player',
|
||||
|
||||
@@ -70,10 +70,6 @@
|
||||
color: var(--torrent-row-personal-fg);
|
||||
}
|
||||
|
||||
.torrent-icons__stream-optimized {
|
||||
color: var(--torrent-row-stream-optimized-fg);
|
||||
}
|
||||
|
||||
.torrent-icons__featured {
|
||||
color: var(--torrent-row-featured-fg);
|
||||
}
|
||||
@@ -94,10 +90,6 @@
|
||||
color: var(--torrent-row-highspeed-fg);
|
||||
}
|
||||
|
||||
.torrent-icons__sd {
|
||||
color: var(--torrent-row-sd-fg);
|
||||
}
|
||||
|
||||
.torrent-icons__bumped {
|
||||
color: var(--torrent-row-bumped-fg);
|
||||
}
|
||||
|
||||
@@ -337,13 +337,11 @@
|
||||
--torrent-row-comments-fg: #ddd;
|
||||
--torrent-row-internal-fg: #ddd;
|
||||
--torrent-row-personal-fg: #ddd;
|
||||
--torrent-row-stream-optimized-fg: #ddd;
|
||||
--torrent-row-featured-fg: #ddd;
|
||||
--torrent-row-freeleech-fg: #ddd;
|
||||
--torrent-row-double-upload-fg: #ddd;
|
||||
--torrent-row-sticky-fg: #ddd;
|
||||
--torrent-row-highspeed-fg: #ddd;
|
||||
--torrent-row-sd-fg: #ddd;
|
||||
--torrent-row-bumped-fg: #ddd;
|
||||
|
||||
--torrent-tag-fg: #eee;
|
||||
|
||||
@@ -21,7 +21,7 @@ For example dark blue,
|
||||
--color-A200: #448AFF; A200
|
||||
--color-A400: #2979FF; A400
|
||||
--color-purple: #2962FF; A700
|
||||
|
||||
|
||||
--color-dark-blue: #181818;
|
||||
--color-dark-red: #181818;
|
||||
|
||||
@@ -45,13 +45,11 @@ For example dark blue,
|
||||
--torrent-row-comments-fg: #3fb618;
|
||||
--torrent-row-internal-fg: #baaf92;
|
||||
--torrent-row-personal-fg: #865be9;
|
||||
--torrent-row-stream-optimized-fg: var(--color-light-red);
|
||||
--torrent-row-featured-fg: var(--color-400);
|
||||
--torrent-row-freeleech-fg: #ffb800;
|
||||
--torrent-row-double-upload-fg: #3fb618;
|
||||
--torrent-row-sticky-fg: var(--text-color);
|
||||
--torrent-row-highspeed-fg: var(--color-light-red);
|
||||
--torrent-row-sd-fg: var(--color-400);
|
||||
--torrent-row-bumped-fg: #ffb800;
|
||||
}
|
||||
|
||||
|
||||
@@ -377,13 +377,11 @@
|
||||
--torrent-row-comments-fg: #669966;
|
||||
--torrent-row-internal-fg: #baaf92;
|
||||
--torrent-row-personal-fg: #865be9;
|
||||
--torrent-row-stream-optimized-fg: #996666;
|
||||
--torrent-row-featured-fg: #997799;
|
||||
--torrent-row-freeleech-fg: #ffb800;
|
||||
--torrent-row-double-upload-fg: #619061;
|
||||
--torrent-row-sticky-fg: #cccccc;
|
||||
--torrent-row-highspeed-fg: #996666;
|
||||
--torrent-row-sd-fg: #997766;
|
||||
--torrent-row-bumped-fg: #f98a1e;
|
||||
|
||||
--torrent-tag-fg: #eee;
|
||||
|
||||
@@ -349,13 +349,11 @@
|
||||
--torrent-row-comments-fg: #3fb618;
|
||||
--torrent-row-internal-fg: #baaf94;
|
||||
--torrent-row-personal-fg: #865be9;
|
||||
--torrent-row-stream-optimized-fg: #ff0039;
|
||||
--torrent-row-featured-fg: #f92672;
|
||||
--torrent-row-freeleech-fg: #ffb800;
|
||||
--torrent-row-double-upload-fg: #4cb828;
|
||||
--torrent-row-sticky-fg: #111111;
|
||||
--torrent-row-highspeed-fg: #ff0039;
|
||||
--torrent-row-sd-fg: #ff7518;
|
||||
--torrent-row-bumped-fg: #f9ba13;
|
||||
|
||||
--torrent-tag-fg: #111;
|
||||
|
||||
@@ -348,13 +348,11 @@
|
||||
--torrent-row-comments-fg: #3fb618;
|
||||
--torrent-row-internal-fg: #baaf94;
|
||||
--torrent-row-personal-fg: #865be9;
|
||||
--torrent-row-stream-optimized-fg: #ff0039;
|
||||
--torrent-row-featured-fg: #f92672;
|
||||
--torrent-row-freeleech-fg: #ffb800;
|
||||
--torrent-row-double-upload-fg: #4cb828;
|
||||
--torrent-row-sticky-fg: #444;
|
||||
--torrent-row-highspeed-fg: #ff0039;
|
||||
--torrent-row-sd-fg: #ff7518;
|
||||
--torrent-row-bumped-fg: #f9ba13;
|
||||
|
||||
--torrent-tag-fg: #eee;
|
||||
|
||||
@@ -349,13 +349,11 @@
|
||||
--torrent-row-comments-fg: #3fb618;
|
||||
--torrent-row-internal-fg: #baaf94;
|
||||
--torrent-row-personal-fg: #865be9;
|
||||
--torrent-row-stream-optimized-fg: #ff0039;
|
||||
--torrent-row-featured-fg: #f92672;
|
||||
--torrent-row-freeleech-fg: #ffb800;
|
||||
--torrent-row-double-upload-fg: #4cb828;
|
||||
--torrent-row-sticky-fg: #111111;
|
||||
--torrent-row-highspeed-fg: #ff0039;
|
||||
--torrent-row-sd-fg: #ff7518;
|
||||
--torrent-row-bumped-fg: #f9ba13;
|
||||
|
||||
--torrent-tag-fg: #eee;
|
||||
|
||||
@@ -348,13 +348,11 @@
|
||||
--torrent-row-comments-fg: #3fb618;
|
||||
--torrent-row-internal-fg: #baaf94;
|
||||
--torrent-row-personal-fg: #865be9;
|
||||
--torrent-row-stream-optimized-fg: #ff0039;
|
||||
--torrent-row-featured-fg: #f92672;
|
||||
--torrent-row-freeleech-fg: #ffb800;
|
||||
--torrent-row-double-upload-fg: #4cb828;
|
||||
--torrent-row-sticky-fg: #111111;
|
||||
--torrent-row-highspeed-fg: #ff0039;
|
||||
--torrent-row-sd-fg: #ff7518;
|
||||
--torrent-row-bumped-fg: #f9ba13;
|
||||
|
||||
--torrent-tag-fg: #111;
|
||||
|
||||
@@ -350,13 +350,11 @@
|
||||
--torrent-row-comments-fg: #3fb618;
|
||||
--torrent-row-internal-fg: #baaf94;
|
||||
--torrent-row-personal-fg: #865be9;
|
||||
--torrent-row-stream-optimized-fg: #ff0039;
|
||||
--torrent-row-featured-fg: #f92672;
|
||||
--torrent-row-freeleech-fg: #ffb800;
|
||||
--torrent-row-double-upload-fg: #4cb828;
|
||||
--torrent-row-sticky-fg: #111111;
|
||||
--torrent-row-highspeed-fg: #ff0039;
|
||||
--torrent-row-sd-fg: #ff7518;
|
||||
--torrent-row-bumped-fg: #f9ba13;
|
||||
|
||||
--torrent-tag-fg: #eee;
|
||||
|
||||
@@ -364,13 +364,11 @@
|
||||
--torrent-row-comments-fg: #a3be8c;
|
||||
--torrent-row-internal-fg: #baaf94;
|
||||
--torrent-row-personal-fg: #b48ead;
|
||||
--torrent-row-stream-optimized-fg: #bf616a;
|
||||
--torrent-row-featured-fg: #bf616a;
|
||||
--torrent-row-freeleech-fg: #ebcb8b;
|
||||
--torrent-row-double-upload-fg: #a3be8c;
|
||||
--torrent-row-sticky-fg: #111111;
|
||||
--torrent-row-highspeed-fg: #bf616a;
|
||||
--torrent-row-sd-fg: #d08770;
|
||||
--torrent-row-bumped-fg: #d08770;
|
||||
|
||||
--torrent-tag-fg: #d8dee9;
|
||||
|
||||
@@ -368,13 +368,11 @@
|
||||
--torrent-row-comments-fg: #669966;
|
||||
--torrent-row-internal-fg: #baaf92;
|
||||
--torrent-row-personal-fg: #865be9;
|
||||
--torrent-row-stream-optimized-fg: #996666;
|
||||
--torrent-row-featured-fg: #997799;
|
||||
--torrent-row-freeleech-fg: #ffb800;
|
||||
--torrent-row-double-upload-fg: #619061;
|
||||
--torrent-row-sticky-fg: #cccccc;
|
||||
--torrent-row-highspeed-fg: #996666;
|
||||
--torrent-row-sd-fg: #997766;
|
||||
--torrent-row-bumped-fg: #f98a1e;
|
||||
|
||||
--torrent-tag-fg: #eee;
|
||||
|
||||
@@ -284,21 +284,6 @@
|
||||
<fieldset class="form__fieldset">
|
||||
<legend class="form__legend">{{ __('torrent.special') }}</legend>
|
||||
<div class="form__fieldset-checkbox-container">
|
||||
<p class="form__group">
|
||||
<label class="form__label">
|
||||
<input
|
||||
id="stream"
|
||||
class="form__checkbox"
|
||||
name="stream"
|
||||
type="checkbox"
|
||||
value="1"
|
||||
/>
|
||||
<span
|
||||
class="{{ config('other.font-awesome') }} fa-play text-red"
|
||||
></span>
|
||||
{{ __('torrent.stream-optimized') }}
|
||||
</label>
|
||||
</p>
|
||||
<p class="form__group">
|
||||
<label class="form__label">
|
||||
<input
|
||||
@@ -314,21 +299,6 @@
|
||||
{{ __('common.high-speeds') }}
|
||||
</label>
|
||||
</p>
|
||||
<p class="form__group">
|
||||
<label class="form__label">
|
||||
<input
|
||||
id="sd"
|
||||
class="form__checkbox"
|
||||
name="sd"
|
||||
type="checkbox"
|
||||
value="1"
|
||||
/>
|
||||
<span
|
||||
class="{{ config('other.font-awesome') }} fa-ticket text-orange"
|
||||
></span>
|
||||
{{ __('torrent.sd-content') }}
|
||||
</label>
|
||||
</p>
|
||||
<p class="form__group">
|
||||
<label class="form__label">
|
||||
<input
|
||||
|
||||
@@ -311,22 +311,6 @@
|
||||
<fieldset class="form__fieldset">
|
||||
<legend class="form__legend">{{ __('torrent.special') }}</legend>
|
||||
<div class="form__fieldset-checkbox-container">
|
||||
<p class="form__group">
|
||||
<label class="form__label">
|
||||
<input
|
||||
id="stream"
|
||||
class="form__checkbox"
|
||||
name="stream"
|
||||
type="checkbox"
|
||||
value="1"
|
||||
@checked($rss->object_torrent->stream)
|
||||
/>
|
||||
<span
|
||||
class="{{ config('other.font-awesome') }} fa-play text-red"
|
||||
></span>
|
||||
{{ __('torrent.stream-optimized') }}
|
||||
</label>
|
||||
</p>
|
||||
<p class="form__group">
|
||||
<label class="form__label">
|
||||
<input
|
||||
@@ -343,22 +327,6 @@
|
||||
{{ __('common.high-speeds') }}
|
||||
</label>
|
||||
</p>
|
||||
<p class="form__group">
|
||||
<label class="form__label">
|
||||
<input
|
||||
id="sd"
|
||||
class="form__checkbox"
|
||||
name="sd"
|
||||
type="checkbox"
|
||||
value="1"
|
||||
@checked($rss->object_torrent->sd)
|
||||
/>
|
||||
<span
|
||||
class="{{ config('other.font-awesome') }} fa-ticket text-orange"
|
||||
></span>
|
||||
{{ __('torrent.sd-content') }}
|
||||
</label>
|
||||
</p>
|
||||
<p class="form__group">
|
||||
<label class="form__label">
|
||||
<input
|
||||
|
||||
@@ -104,7 +104,7 @@
|
||||
@endif
|
||||
</td>
|
||||
<td>
|
||||
@if ($rss->object_torrent?->stream || $rss->object_torrent?->highspeed || $rss->object_torrent?->sd || $rss->object_torrent?->internal || $rss->object_torrent->personalrelease || $rss->object_torrent?->bookmark)
|
||||
@if ($rss->object_torrent?->highspeed || $rss->object_torrent?->internal || $rss->object_torrent->personalrelease || $rss->object_torrent?->bookmark)
|
||||
<i
|
||||
class="{{ config('other.font-awesome') }} fa-check text-green"
|
||||
></i>
|
||||
|
||||
@@ -61,13 +61,6 @@
|
||||
></i>
|
||||
@endif
|
||||
|
||||
@if ($torrent->stream)
|
||||
<i
|
||||
class="{{ config('other.font-awesome') }} fa-play torrent-icons__stream-optimized"
|
||||
title="{{ __('torrent.stream-optimized') }}"
|
||||
></i>
|
||||
@endif
|
||||
|
||||
@php
|
||||
$alwaysFreeleech = $personalFreeleech || $torrent->freeleech_tokens_exists || auth()->user()->group->is_freeleech || auth()->user()->is_donor || config('other.freeleech')
|
||||
@endphp
|
||||
@@ -167,13 +160,6 @@
|
||||
></i>
|
||||
@endif
|
||||
|
||||
@if ($torrent->sd)
|
||||
<i
|
||||
class="{{ config('other.font-awesome') }} fa-standard-definition torrent-icons__sd"
|
||||
title="{{ __('torrent.sd-content') }}"
|
||||
></i>
|
||||
@endif
|
||||
|
||||
@if ($torrent->bumped_at?->notEqualTo($torrent->created_at) && $torrent->bumped_at?->isBefore(now()->addDay(2)))
|
||||
<i
|
||||
class="{{ config('other.font-awesome') }} fa-level-up-alt torrent-icons__bumped"
|
||||
|
||||
@@ -392,28 +392,6 @@
|
||||
Trumpable
|
||||
</label>
|
||||
</p>
|
||||
<p class="form__group">
|
||||
<label class="form__label">
|
||||
<input
|
||||
class="form__checkbox"
|
||||
type="checkbox"
|
||||
value="1"
|
||||
wire:model.live="stream"
|
||||
/>
|
||||
{{ __('torrent.stream-optimized') }}
|
||||
</label>
|
||||
</p>
|
||||
<p class="form__group">
|
||||
<label class="form__label">
|
||||
<input
|
||||
class="form__checkbox"
|
||||
type="checkbox"
|
||||
value="1"
|
||||
wire:model.live="sd"
|
||||
/>
|
||||
{{ __('torrent.sd-content') }}
|
||||
</label>
|
||||
</p>
|
||||
<p class="form__group">
|
||||
<label class="form__label">
|
||||
<input
|
||||
|
||||
@@ -7,15 +7,16 @@
|
||||
<dd>{{ $category->torrents_count }}</dd>
|
||||
</div>
|
||||
@endforeach
|
||||
|
||||
<div class="key-value__group">
|
||||
<dt>HD</dt>
|
||||
<dd>{{ $num_hd }}</dd>
|
||||
</div>
|
||||
<div class="key-value__group">
|
||||
<dt>SD</dt>
|
||||
<dd>{{ $num_sd }}</dd>
|
||||
</div>
|
||||
</dl>
|
||||
<dl class="key-value">
|
||||
@foreach ($resolutions as $resolution)
|
||||
<div class="key-value__group">
|
||||
<dt>{{ $resolution->name }} {{ __('common.resolution') }}</dt>
|
||||
<dd>{{ $resolution->torrents_count }}</dd>
|
||||
</div>
|
||||
@endforeach
|
||||
</dl>
|
||||
<dl class="key-value">
|
||||
<div class="key-value__group">
|
||||
<dt>{{ __('stat.total-torrents') }}</dt>
|
||||
<dd>{{ $num_torrent }}</dd>
|
||||
|
||||
@@ -570,28 +570,6 @@
|
||||
Trumpable
|
||||
</label>
|
||||
</p>
|
||||
<p class="form__group">
|
||||
<label class="form__label">
|
||||
<input
|
||||
class="form__checkbox"
|
||||
type="checkbox"
|
||||
value="1"
|
||||
wire:model.live="stream"
|
||||
/>
|
||||
{{ __('torrent.stream-optimized') }}
|
||||
</label>
|
||||
</p>
|
||||
<p class="form__group">
|
||||
<label class="form__label">
|
||||
<input
|
||||
class="form__checkbox"
|
||||
type="checkbox"
|
||||
value="1"
|
||||
wire:model.live="sd"
|
||||
/>
|
||||
{{ __('torrent.sd-content') }}
|
||||
</label>
|
||||
</p>
|
||||
<p class="form__group">
|
||||
<label class="form__label">
|
||||
<input
|
||||
|
||||
@@ -265,21 +265,6 @@
|
||||
<fieldset class="form__fieldset">
|
||||
<legend class="form__legend">{{ __('torrent.special') }}</legend>
|
||||
<div class="form__fieldset-checkbox-container">
|
||||
<p class="form__group">
|
||||
<label class="form__label">
|
||||
<input
|
||||
id="stream"
|
||||
class="form__checkbox"
|
||||
name="stream"
|
||||
type="checkbox"
|
||||
value="1"
|
||||
/>
|
||||
<span
|
||||
class="{{ config('other.font-awesome') }} fa-play text-red"
|
||||
></span>
|
||||
{{ __('torrent.stream-optimized') }}
|
||||
</label>
|
||||
</p>
|
||||
<p class="form__group">
|
||||
<label class="form__label">
|
||||
<input
|
||||
@@ -295,21 +280,6 @@
|
||||
{{ __('common.high-speeds') }}
|
||||
</label>
|
||||
</p>
|
||||
<p class="form__group">
|
||||
<label class="form__label">
|
||||
<input
|
||||
id="sd"
|
||||
class="form__checkbox"
|
||||
name="sd"
|
||||
type="checkbox"
|
||||
value="1"
|
||||
/>
|
||||
<span
|
||||
class="{{ config('other.font-awesome') }} fa-ticket text-orange"
|
||||
></span>
|
||||
{{ __('torrent.sd-content') }}
|
||||
</label>
|
||||
</p>
|
||||
<p class="form__group">
|
||||
<label class="form__label">
|
||||
<input
|
||||
|
||||
@@ -296,22 +296,6 @@
|
||||
<fieldset class="form__fieldset">
|
||||
<legend class="form__legend">{{ __('torrent.special') }}</legend>
|
||||
<div class="form__fieldset-checkbox-container">
|
||||
<p class="form__group">
|
||||
<label class="form__label">
|
||||
<input
|
||||
id="stream"
|
||||
class="form__checkbox"
|
||||
name="stream"
|
||||
type="checkbox"
|
||||
value="1"
|
||||
@checked($rss->object_torrent->stream)
|
||||
/>
|
||||
<span
|
||||
class="{{ config('other.font-awesome') }} fa-play text-red"
|
||||
></span>
|
||||
{{ __('torrent.stream-optimized') }}
|
||||
</label>
|
||||
</p>
|
||||
<p class="form__group">
|
||||
<label class="form__label">
|
||||
<input
|
||||
@@ -328,22 +312,6 @@
|
||||
{{ __('common.high-speeds') }}
|
||||
</label>
|
||||
</p>
|
||||
<p class="form__group">
|
||||
<label class="form__label">
|
||||
<input
|
||||
id="sd"
|
||||
class="form__checkbox"
|
||||
name="sd"
|
||||
type="checkbox"
|
||||
value="1"
|
||||
@checked($rss->object_torrent->sd)
|
||||
/>
|
||||
<span
|
||||
class="{{ config('other.font-awesome') }} fa-ticket text-orange"
|
||||
></span>
|
||||
{{ __('torrent.sd-content') }}
|
||||
</label>
|
||||
</p>
|
||||
<p class="form__group">
|
||||
<label class="form__label">
|
||||
<input
|
||||
|
||||
@@ -118,7 +118,7 @@
|
||||
@endif
|
||||
</td>
|
||||
<td>
|
||||
@if ($rss->object_torrent?->stream || $rss->object_torrent?->highspeed || $rss->object_torrent?->sd || $rss->object_torrent?->internal || $rss->object_torrent?->personalrelease || $rss->object_torrent?->bookmark)
|
||||
@if ($rss->object_torrent?->highspeed || $rss->object_torrent?->internal || $rss->object_torrent?->personalrelease || $rss->object_torrent?->bookmark)
|
||||
<i
|
||||
class="{{ config('other.font-awesome') }} fa-check text-green"
|
||||
></i>
|
||||
@@ -240,7 +240,7 @@
|
||||
@endif
|
||||
</td>
|
||||
<td>
|
||||
@if ($rss->object_torrent?->stream || $rss->object_torrent?->highspeed || $rss->object_torrent?->sd || $rss->object_torrent?->internal || $rss->object_torrent?->personalrelease || $rss->object_torrent?->bookmark)
|
||||
@if ($rss->object_torrent?->highspeed || $rss->object_torrent?->internal || $rss->object_torrent?->personalrelease || $rss->object_torrent?->bookmark)
|
||||
<i
|
||||
class="{{ config('other.font-awesome') }} fa-check text-green"
|
||||
></i>
|
||||
|
||||
@@ -428,38 +428,6 @@
|
||||
/>
|
||||
<label class="form__label" for="anon">{{ __('common.anonymous') }}?</label>
|
||||
</p>
|
||||
<p
|
||||
class="form__group"
|
||||
x-show="cats[cat].type === 'movie' || cats[cat].type === 'tv'"
|
||||
>
|
||||
<input type="hidden" name="stream" value="0" />
|
||||
<input
|
||||
type="checkbox"
|
||||
class="form__checkbox"
|
||||
id="stream"
|
||||
name="stream"
|
||||
x-bind:value="cats[cat].type === 'movie' || cats[cat].type === 'tv' ? '1' : '0'"
|
||||
@checked(old('stream'))
|
||||
/>
|
||||
<label class="form__label" for="stream">
|
||||
{{ __('torrent.stream-optimized') }}?
|
||||
</label>
|
||||
</p>
|
||||
<p
|
||||
class="form__group"
|
||||
x-show="cats[cat].type === 'movie' || cats[cat].type === 'tv'"
|
||||
>
|
||||
<input type="hidden" name="sd" value="0" />
|
||||
<input
|
||||
type="checkbox"
|
||||
class="form__checkbox"
|
||||
id="sd"
|
||||
name="sd"
|
||||
x-bind:value="cats[cat].type === 'movie' || cats[cat].type === 'tv' ? '1' : '0'"
|
||||
@checked(old('sd'))
|
||||
/>
|
||||
<label class="form__label" for="sd">{{ __('torrent.sd-content') }}?</label>
|
||||
</p>
|
||||
@if (auth()->user()->group->is_modo ||auth()->user()->internals()->exists())
|
||||
<p class="form__group">
|
||||
<input type="hidden" name="internal" value="0" />
|
||||
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user