Files
moovie-downloader/src/components/monitors.js
2025-09-29 23:10:33 +04:00

33 lines
621 B
JavaScript
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
export const movieMonitor = [
{
id: "movieAndCollection",
name: "Все части"
},
{
id: "movieOnly",
name: "Только этот фильм"
}
]
export const tvMonitor = [
{
id: "all",
name: "Все серии"
},
{
id: "future",
name: "Новые серии"
},
{
id: "firstSeason",
name: "Первый сезон"
},
{
id: "lastSeason",
name: "Последний сезон"
},
{
id: "latestSeason",
name: "Последние сезоны"
},
]