mirror of
https://github.com/VueTorrent/VueTorrent.git
synced 2024-11-24 18:36:14 +03:00
chore: update translations (#1681)
Some checks failed
Build project and release / Run Release Please action (push) Has been cancelled
Build project and release / Build VueTorrent (push) Has been cancelled
CodeQL / Analyze (javascript-typescript) (push) Has been cancelled
Build project and release / Push to nightly branch (push) Has been cancelled
Build project and release / Upload release to GitHub (push) Has been cancelled
Build project and release / Push to latest branch (push) Has been cancelled
Some checks failed
Build project and release / Run Release Please action (push) Has been cancelled
Build project and release / Build VueTorrent (push) Has been cancelled
CodeQL / Analyze (javascript-typescript) (push) Has been cancelled
Build project and release / Push to nightly branch (push) Has been cancelled
Build project and release / Upload release to GitHub (push) Has been cancelled
Build project and release / Push to latest branch (push) Has been cancelled
This commit is contained in:
parent
4ddf5f3469
commit
8af4d3099c
5 changed files with 15 additions and 4 deletions
|
@ -15,7 +15,6 @@ services:
|
|||
ports:
|
||||
- '8080:8080'
|
||||
restart: unless-stopped
|
||||
|
||||
# Backend is optional, see the repo for more information
|
||||
# backend:
|
||||
# image: ghcr.io/vuetorrent/vuetorrent-backend:latest
|
||||
|
|
|
@ -110,7 +110,13 @@ function closeInstallDialog() {
|
|||
</v-dialog>
|
||||
</v-card-title>
|
||||
<v-card-text>
|
||||
<v-data-table :mobile="null" :headers="headers" items-per-page="-1" :items="searchEngineStore.searchPlugins" :sort-by="[{ key: 'fullName', order: 'asc' }]" :loading="loading">
|
||||
<v-data-table
|
||||
:mobile="null"
|
||||
:headers="headers"
|
||||
items-per-page="-1"
|
||||
:items="searchEngineStore.searchPlugins"
|
||||
:sort-by="[{ key: 'fullName', order: 'asc' }]"
|
||||
:loading="loading">
|
||||
<template v-slot:[`item.enabled`]="{ item }">
|
||||
<v-checkbox-btn :model-value="item.enabled" @click="onTogglePlugin(item)" />
|
||||
</template>
|
||||
|
|
|
@ -292,6 +292,7 @@
|
|||
"col_origin_name": "Исходное имя",
|
||||
"col_result_name": "Итоговое имя",
|
||||
"duplicated": "Повторяющееся имя файла",
|
||||
"flags": "Флаги",
|
||||
"fold": "Свернуть",
|
||||
"not_changed": "Имя файла не изменено",
|
||||
"notForFolder": "Переименование папок не поддерживается",
|
||||
|
|
|
@ -106,7 +106,7 @@ onUnmounted(() => {
|
|||
<div class="d-flex flex-row align-center justify-center">
|
||||
<v-checkbox v-model="rssStore.filters.unread" :label="$t('rssArticles.filters.unread')" hide-details />
|
||||
<v-spacer />
|
||||
<div :class="{'d-flex button-group': true, 'flex-column': $vuetify.display.mobile}">
|
||||
<div :class="{ 'd-flex button-group': true, 'flex-column': $vuetify.display.mobile }">
|
||||
<v-btn :disabled="rssStore.unreadArticles.length === 0" :text="$t('rssArticles.markAllAsRead')" color="primary" @click="rssStore.markAllAsRead()" />
|
||||
<v-btn :disabled="rssStore.feeds.length === 0" :text="$t('rssArticles.refreshAllFeeds')" color="primary" @click="rssStore.refreshAllFeeds()" />
|
||||
</div>
|
||||
|
|
|
@ -232,7 +232,12 @@ onBeforeUnmount(() => {
|
|||
<v-divider class="my-3" />
|
||||
|
||||
<v-list-item class="text-select">
|
||||
<v-data-table :mobile="null" :headers="headers" :items="filteredResults" :footer-props="{ itemsPerPageOptions: [10, 25, 50, 100, -1] }" :items-per-page.sync="selectedTab.itemsPerPage">
|
||||
<v-data-table
|
||||
:mobile="null"
|
||||
:headers="headers"
|
||||
:items="filteredResults"
|
||||
:footer-props="{ itemsPerPageOptions: [10, 25, 50, 100, -1] }"
|
||||
:items-per-page.sync="selectedTab.itemsPerPage">
|
||||
<template v-slot:top>
|
||||
<v-row>
|
||||
<v-col cols="12">
|
||||
|
|
Loading…
Reference in a new issue