mirror of
https://github.com/blakeblackshear/frigate.git
synced 2026-02-23 09:46:15 -05:00
Compare commits
23 Commits
multi-gena
...
v0.17.0-rc
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
f0d69f7856 | ||
|
|
5b16978430 | ||
|
|
b6142e3017 | ||
|
|
e1a6f69c4e | ||
|
|
d940ff3341 | ||
|
|
1f14f1cda0 | ||
|
|
806c5892b6 | ||
|
|
8bc82060f1 | ||
|
|
3cc8311b48 | ||
|
|
71139ef842 | ||
|
|
f4f32a3f59 | ||
|
|
29a4076589 | ||
|
|
d4d4164f99 | ||
|
|
5cc81bc7a1 | ||
|
|
1856e62ad0 | ||
|
|
252f1a6eb9 | ||
|
|
ad076aefff | ||
|
|
8a95cd2472 | ||
|
|
3aeeb09834 | ||
|
|
8c98b4c9d0 | ||
|
|
a2d6e04f45 | ||
|
|
7c11747ab3 | ||
|
|
5f2536dcd8 |
@@ -689,3 +689,42 @@ docker run \
|
||||
```
|
||||
|
||||
Log into QNAP, open Container Station. Frigate docker container should be listed under 'Overview' and running. Visit Frigate Web UI by clicking Frigate docker, and then clicking the URL shown at the top of the detail page.
|
||||
|
||||
## macOS - Apple Silicon
|
||||
|
||||
:::warning
|
||||
|
||||
macOS uses port 5000 for its Airplay Receiver service. If you want to expose port 5000 in Frigate for local app and API access the port will need to be mapped to another port on the host e.g. 5001
|
||||
|
||||
Failure to remap port 5000 on the host will result in the WebUI and all API endpoints on port 5000 being unreachable, even if port 5000 is exposed correctly in Docker.
|
||||
|
||||
:::
|
||||
|
||||
Docker containers on macOS can be orchestrated by either [Docker Desktop](https://docs.docker.com/desktop/setup/install/mac-install/) or [OrbStack](https://orbstack.dev) (native swift app). The difference in inference speeds is negligable, however CPU, power consumption and container start times will be lower on OrbStack because it is a native Swift application.
|
||||
|
||||
To allow Frigate to use the Apple Silicon Neural Engine / Processing Unit (NPU) the host must be running [Apple Silicon Detector](../configuration/object_detectors.md#apple-silicon-detector) on the host (outside Docker)
|
||||
|
||||
#### Docker Compose example
|
||||
```yaml
|
||||
services:
|
||||
frigate:
|
||||
container_name: frigate
|
||||
image: ghcr.io/blakeblackshear/frigate:stable-arm64
|
||||
restart: unless-stopped
|
||||
shm_size: "512mb" # update for your cameras based on calculation above
|
||||
volumes:
|
||||
- /etc/localtime:/etc/localtime:ro
|
||||
- /path/to/your/config:/config
|
||||
- /path/to/your/recordings:/recordings
|
||||
ports:
|
||||
- "8971:8971"
|
||||
# If exposing on macOS map to a diffent host port like 5001 or any orher port with no conflicts
|
||||
# - "5001:5000" # Internal unauthenticated access. Expose carefully.
|
||||
- "8554:8554" # RTSP feeds
|
||||
extra_hosts:
|
||||
# This is very important
|
||||
# It allows frigate access to the NPU on Apple Silicon via Apple Silicon Detector
|
||||
- "host.docker.internal:host-gateway" # Required to talk to the NPU detector
|
||||
environment:
|
||||
- FRIGATE_RTSP_PASSWORD: "password"
|
||||
```
|
||||
@@ -6,7 +6,8 @@
|
||||
"title": "Frigate s'està reiniciant",
|
||||
"content": "Aquesta pàgina es tornarà a carregar d'aquí a {{countdown}} segons.",
|
||||
"button": "Forçar la recàrrega ara"
|
||||
}
|
||||
},
|
||||
"description": "Això aturarà breument Frigate mentre es reinicia."
|
||||
},
|
||||
"explore": {
|
||||
"plus": {
|
||||
|
||||
@@ -114,6 +114,11 @@
|
||||
},
|
||||
"error": {
|
||||
"mustBeFinished": "El dibuix del polígon s'ha d'acabar abans de desar."
|
||||
},
|
||||
"type": {
|
||||
"zone": "zona",
|
||||
"motion_mask": "màscara de moviment",
|
||||
"object_mask": "màscara d'objecte"
|
||||
}
|
||||
},
|
||||
"zoneName": {
|
||||
|
||||
@@ -6,7 +6,8 @@
|
||||
"title": "Frigate genstarter",
|
||||
"button": "Gennemtving genindlæsning nu",
|
||||
"content": "Denne side genindlæses om {{countdown}} sekunder."
|
||||
}
|
||||
},
|
||||
"description": "Dette vil kortvarigt stoppe Frigate under genstart."
|
||||
},
|
||||
"explore": {
|
||||
"plus": {
|
||||
@@ -17,7 +18,9 @@
|
||||
"review": {
|
||||
"question": {
|
||||
"label": "Bekræft denne etiket til Frigate Plus",
|
||||
"ask_a": "Er dette objekt et <code>{{label}}</code>?"
|
||||
"ask_a": "Er dette objekt et <code>{{label}}</code>?",
|
||||
"ask_an": "Er dette objekt en <code>{{label}}</code>?",
|
||||
"ask_full": "Er dette objekt en <code>{{untranslatedLabel}}</code> ({{translatedLabel}})?"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
{
|
||||
"filter": "Filter",
|
||||
"filter": "Filtrer",
|
||||
"classes": {
|
||||
"label": "Klasser",
|
||||
"all": {
|
||||
|
||||
@@ -27,5 +27,6 @@
|
||||
"markTheseItemsAsReviewed": "Marker disse som gennemset",
|
||||
"detail": {
|
||||
"aria": "Skift til detaljevisning"
|
||||
}
|
||||
},
|
||||
"timeline.aria": "Vælg tidslinje"
|
||||
}
|
||||
|
||||
@@ -17,10 +17,15 @@
|
||||
"context": "Udforsk kan bruges, når genindekseringen af de sporede objektindlejringer er fuldført.",
|
||||
"finishingShortly": "Afsluttes om lidt",
|
||||
"step": {
|
||||
"thumbnailsEmbedded": "Miniaturer indlejret: "
|
||||
"thumbnailsEmbedded": "Miniaturer indlejret: ",
|
||||
"descriptionsEmbedded": "Beskrivelser indlejrede: ",
|
||||
"trackedObjectsProcessed": "Sporede objekter behandlede: "
|
||||
}
|
||||
},
|
||||
"title": "Udforsk er ikke tilgængelig"
|
||||
"title": "Udforsk er ikke tilgængelig",
|
||||
"downloadingModels": {
|
||||
"context": "Frigate henter de nødvendige indlejringsmodeller for at understøtte semantiske søgninger. Dette kan tage flere minutter, afhængig af hastigheden på din netværksforbindelse."
|
||||
}
|
||||
},
|
||||
"exploreMore": "Udforsk flere {{label}}-objekter",
|
||||
"details": {
|
||||
|
||||
@@ -3,7 +3,8 @@
|
||||
"description": {
|
||||
"addFace": "Tilføj en ny samling til ansigtsbiblioteket ved at uploade dit første billede.",
|
||||
"placeholder": "Angiv et navn for bibliotek",
|
||||
"invalidName": "Ugyldigt navn. Navne må kun indeholde bogstaver, tal, mellemrum, apostroffer, understregninger og bindestreger."
|
||||
"invalidName": "Ugyldigt navn. Navne må kun indeholde bogstaver, tal, mellemrum, apostroffer, understregninger og bindestreger.",
|
||||
"nameCannotContainHash": "Navet kan ikke indeholde #."
|
||||
},
|
||||
"details": {
|
||||
"person": "Person",
|
||||
@@ -17,6 +18,76 @@
|
||||
"desc": "Upload et billede for at scanne efter ansigter og inkludere det for {{pageToggle}}"
|
||||
},
|
||||
"train": {
|
||||
"titleShort": "Nyeste"
|
||||
}
|
||||
"titleShort": "Nyeste",
|
||||
"title": "Seneste genkendelser",
|
||||
"aria": "Vælg seneste genkendelser",
|
||||
"empty": "Der er ingen nylige ansigtsgenkendelser"
|
||||
},
|
||||
"createFaceLibrary": {
|
||||
"new": "Nyt ansigt",
|
||||
"nextSteps": "<ul> <li>Brug fanen <strong>Seneste genkendelser</strong> til at udvælge og træne på billeder for hver registreret person.</li> <li>Fokusér på billeder taget lige forfra for de bedste resultater; undgå træningsbilleder, hvor ansigter er fotograferet fra siden eller i vinkel.</li> </ul>"
|
||||
},
|
||||
"steps": {
|
||||
"faceName": "Skriv ansigt navn",
|
||||
"uploadFace": "Upload ansigt billede",
|
||||
"nextSteps": "Næste skridt",
|
||||
"description": {
|
||||
"uploadFace": "Upload et billede af {{name}}, hvor ansigtet er set forfra. Billedet behøver ikke kun at vise ansigtet og skal ikke beskæres."
|
||||
}
|
||||
},
|
||||
"button": {
|
||||
"deleteFace": "Slet ansigt",
|
||||
"deleteFaceAttempts": "Slet ansigter",
|
||||
"addFace": "Tilføj ansigt",
|
||||
"renameFace": "Omdøb ansigt",
|
||||
"uploadImage": "Upload billede",
|
||||
"reprocessFace": "Genbehandl ansigt"
|
||||
},
|
||||
"trainFace": "Lær ansigt",
|
||||
"renameFace": {
|
||||
"title": "Omdøb ansigt",
|
||||
"desc": "Indtast et nyt navn til {{name}}"
|
||||
},
|
||||
"toast": {
|
||||
"success": {
|
||||
"deletedFace_one": "{{count}} ansigt blev slettet",
|
||||
"deletedFace_other": "{{count}} ansigter blev slettet",
|
||||
"deletedName_one": "{{count}} ansigt slettet",
|
||||
"deletedName_other": "{{count}} ansigter slettet",
|
||||
"uploadedImage": "Billedet blev uploadet.",
|
||||
"addFaceLibrary": "{{name}} er blevet tilføjet til ansigtsbiblioteket!",
|
||||
"renamedFace": "Ansigtet er blevet omdøbt til {{name}}",
|
||||
"trainedFace": "Ansigtet er blevet trænet.",
|
||||
"updatedFaceScore": "Ansigtets score er blevet opdateret til {{score}} ({{name}})."
|
||||
},
|
||||
"error": {
|
||||
"uploadingImageFailed": "Kunne ikke uploade billedet: {{errorMessage}}",
|
||||
"addFaceLibraryFailed": "Kunne ikke angive navn på ansigtet: {{errorMessage}}",
|
||||
"deleteFaceFailed": "Kunne ikke slette: {{errorMessage}}",
|
||||
"deleteNameFailed": "Kunne ikke slette navnet: {{errorMessage}}",
|
||||
"renameFaceFailed": "Kunne ikke omdøbe ansigtet: {{errorMessage}}",
|
||||
"trainFailed": "Kunne ikke træne: {{errorMessage}}",
|
||||
"updateFaceScoreFailed": "Kunne ikke opdatere ansigtets score: {{errorMessage}}"
|
||||
}
|
||||
},
|
||||
"deleteFaceAttempts": {
|
||||
"desc_one": "Er du sikker på, at du vil slette {{count}} ansigt? Denne handling kan ikke fortrydes.",
|
||||
"desc_other": "Er du sikker på, at du vil slette {{count}} ansigter? Denne handling kan ikke fortrydes.",
|
||||
"title": "Slet ansigter"
|
||||
},
|
||||
"collections": "Samlinger",
|
||||
"deleteFaceLibrary": {
|
||||
"title": "Slet navn",
|
||||
"desc": "Er du sikker på, at du vil slette samlingen {{name}}? Dette vil permanent slette alle tilknyttede ansigter."
|
||||
},
|
||||
"imageEntry": {
|
||||
"maxSize": "Maks. størrelse: {{size}} MB",
|
||||
"validation": {
|
||||
"selectImage": "Vælg venligst en billedfil."
|
||||
},
|
||||
"dropActive": "Slip billedet her…",
|
||||
"dropInstructions": "Træk og slip eller indsæt et billede her – eller klik for at vælge"
|
||||
},
|
||||
"nofaces": "Ingen tilgængelige ansigter",
|
||||
"trainFaceAs": "Træn ansigt som:"
|
||||
}
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
{
|
||||
"filter": "Filter",
|
||||
"filter": "Filtrer",
|
||||
"export": "Eksporter",
|
||||
"calendar": "Kalender",
|
||||
"filters": "Filtere",
|
||||
|
||||
@@ -9,5 +9,11 @@
|
||||
"filterActive": "Filtre aktiv",
|
||||
"clear": "Ryd søgning"
|
||||
},
|
||||
"trackedObjectId": "Sporet genstands-ID"
|
||||
"trackedObjectId": "Sporet genstands-ID",
|
||||
"filter": {
|
||||
"label": {
|
||||
"cameras": "Kameraer",
|
||||
"zones": "Områder"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -9,6 +9,11 @@
|
||||
"enrichments": "Indstillinger for berigelser - Frigate",
|
||||
"masksAndZones": "Maske- og zoneeditor - Frigate",
|
||||
"motionTuner": "Bevægelsesjustering - Frigate",
|
||||
"general": "Brugergrænsefladeindstillinger - Frigate"
|
||||
"general": "Brugergrænsefladeindstillinger - Frigate",
|
||||
"frigatePlus": "Frigate+ Indstillinger - Frigate",
|
||||
"notifications": "Notifikations indstillinger - Frigate"
|
||||
},
|
||||
"menu": {
|
||||
"ui": "Brugergrænseflade"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -6,7 +6,8 @@
|
||||
"content": "Diese Seite wird in {{countdown}} Sekunde(n) aktualisiert.",
|
||||
"button": "Neuladen erzwingen"
|
||||
},
|
||||
"button": "Neustarten"
|
||||
"button": "Neustarten",
|
||||
"description": "Dies wird Frigate kurz stoppen, während es neu startet."
|
||||
},
|
||||
"explore": {
|
||||
"plus": {
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
{
|
||||
"description": {
|
||||
"placeholder": "Gib einen Name für diese Kollektion ein",
|
||||
"addFace": "Füge der Gesichtsbibliothek eine neue Sammlung hinzu, indem du ein Bild hochlädst.",
|
||||
"addFace": "Füge der Gesichtsbibliothek eine neue Sammlung hinzu, indem du ein erstes Bild hochlädst.",
|
||||
"invalidName": "Ungültiger Name. Namen dürfen nur Buchstaben, Zahlen, Leerzeichen, Apostrophe, Unterstriche und Bindestriche enthalten.",
|
||||
"nameCannotContainHash": "Der Name darf keine # enthalten."
|
||||
},
|
||||
|
||||
@@ -49,12 +49,12 @@
|
||||
"desc": "Standardmäßig werden die letzten Warnmeldungen auf dem Live-Dashboard als kurze Videoschleifen abgespielt. Deaktiviere diese Option, um nur ein statisches Bild der letzten Warnungen auf diesem Gerät/Browser anzuzeigen."
|
||||
},
|
||||
"automaticLiveView": {
|
||||
"desc": "Zeigt automatisch das Live-Bild einer Kamera an, wenn eine Aktivität erkannt wird. Ist diese Option deaktiviert, werden Kamerabilder im Live-Dashboard nur einmal pro Minute aktualisiert.",
|
||||
"desc": "Automatisch zur Live-Ansicht einer Kamera wechseln, wenn eine Aktivität erkannt wird. Wenn diese Option deaktiviert ist, werden statische Kamerabilder auf dem Live-Dashboard nur einmal pro Minute aktualisiert.",
|
||||
"label": "Automatische Live Ansicht"
|
||||
},
|
||||
"displayCameraNames": {
|
||||
"label": "Immer Namen der Kamera anzeigen",
|
||||
"desc": "Kamerabezeichnung immer im einem Chip im Live-View-Dashboard für mehrere Kameras anzeigen."
|
||||
"desc": "Zeige immer die Kameranamen in einem Chip im Dashboard der Mehrkamera-Live-Ansicht an."
|
||||
},
|
||||
"liveFallbackTimeout": {
|
||||
"label": "Live Player Ausfallzeitlimit",
|
||||
@@ -276,6 +276,11 @@
|
||||
},
|
||||
"error": {
|
||||
"mustBeFinished": "Polygonzeichnung muss vor dem Speichern abgeschlossen sein."
|
||||
},
|
||||
"type": {
|
||||
"zone": "Zone",
|
||||
"motion_mask": "Bewegungsmaske",
|
||||
"object_mask": "Objektmaske"
|
||||
}
|
||||
},
|
||||
"speed": {
|
||||
@@ -1210,7 +1215,7 @@
|
||||
"restreamingWarning": "Die Reduzierung der Verbindungen zur Kamera für den Aufzeichnungsstream kann zu einer geringfügigen Erhöhung der CPU-Auslastung führen.",
|
||||
"brands": {
|
||||
"reolink-rtsp": "Reolink RTSP wird nicht empfohlen. Aktivieren Sie HTTP in den Firmware-Einstellungen der Kamera und starten Sie den Assistenten neu.",
|
||||
"reolink-http": "Für Reolink-HTTP-Streams sollten sie FFmpeg verwenden, um eine bessere Kompatibilität zu gewährleisten. Aktivieren Sie für diesen Stream die Option „Stream-Kompatibilitätsmodus verwenden“."
|
||||
"reolink-http": "Reolink-HTTP-Streams sollten für eine bessere Kompatibilität FFmpeg verwenden. Aktivieren Sie für diesen Stream die Option „Stream-Kompatibilitätsmodus verwenden“."
|
||||
},
|
||||
"dahua": {
|
||||
"substreamWarning": "Substream 1 ist auf eine niedrige Auflösung festgelegt. Viele Kameras von Dahua / Amcrest / EmpireTech unterstützen zusätzliche Substreams, die in den Kameraeinstellungen aktiviert werden müssen. Es wird empfohlen, diese Streams zu überprüfen und zu nutzen, sofern sie verfügbar sind."
|
||||
|
||||
@@ -153,7 +153,8 @@
|
||||
"bg": "Български (Búlgaro)",
|
||||
"gl": "Galego (Gallego)",
|
||||
"id": "Bahasa Indonesia (Indonesio)",
|
||||
"ur": "اردو (Urdu)"
|
||||
"ur": "اردو (Urdu)",
|
||||
"hr": "Hrvatski (Croata)"
|
||||
},
|
||||
"appearance": "Apariencia",
|
||||
"darkMode": {
|
||||
|
||||
@@ -6,7 +6,8 @@
|
||||
"content": "Esta página se recargará en {{countdown}} segundos."
|
||||
},
|
||||
"title": "¿Estás seguro de que quieres reiniciar Frigate?",
|
||||
"button": "Reiniciar"
|
||||
"button": "Reiniciar",
|
||||
"description": "Esto detendrá brevemente Frigate mientras se reinicia."
|
||||
},
|
||||
"explore": {
|
||||
"plus": {
|
||||
|
||||
@@ -129,13 +129,13 @@
|
||||
"classes": {
|
||||
"label": "Clases",
|
||||
"all": {
|
||||
"title": "Todas las Clases"
|
||||
"title": "Todas las clases"
|
||||
},
|
||||
"count_one": "{{count}} Clase",
|
||||
"count_other": "{{count}} Clases"
|
||||
},
|
||||
"attributes": {
|
||||
"label": "Atributos de Clasificación",
|
||||
"label": "Atributos de clasificación",
|
||||
"all": "Todos los Atributos"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -2,7 +2,8 @@
|
||||
"description": {
|
||||
"addFace": "Agregar una nueva colección a la Biblioteca de Rostros subiendo tu primera imagen.",
|
||||
"placeholder": "Introduce un nombre para esta colección",
|
||||
"invalidName": "Nombre incorrecto. Los nombres solo pueden incluir letras, números, espacios, apóstrofes, guiones bajos, y guiones."
|
||||
"invalidName": "Nombre incorrecto. Los nombres solo pueden incluir letras, números, espacios, apóstrofes, guiones bajos, y guiones.",
|
||||
"nameCannotContainHash": "El nombre no puede contener #."
|
||||
},
|
||||
"details": {
|
||||
"person": "Persona",
|
||||
|
||||
@@ -276,7 +276,12 @@
|
||||
"reset": {
|
||||
"label": "Borrar todos los puntos"
|
||||
},
|
||||
"removeLastPoint": "Eliminar el último punto"
|
||||
"removeLastPoint": "Eliminar el último punto",
|
||||
"type": {
|
||||
"zone": "zona",
|
||||
"motion_mask": "máscara de movimiento",
|
||||
"object_mask": "máscara de objeto"
|
||||
}
|
||||
},
|
||||
"speed": {
|
||||
"error": {
|
||||
@@ -548,7 +553,7 @@
|
||||
"hide": "Ocultar contraseña",
|
||||
"requirements": {
|
||||
"title": "Requisitos de contraseña:",
|
||||
"length": "Al menos 8 caracteres",
|
||||
"length": "Al menos 12 caracteres",
|
||||
"uppercase": "Al menos una mayúscula",
|
||||
"digit": "Al menos un número",
|
||||
"special": "Al menos un caracter especial (!@#$%^&*(),.?\":{}|<>)"
|
||||
|
||||
@@ -192,7 +192,7 @@
|
||||
"classification_speed": "Velocidad de clasificación de {{name}}",
|
||||
"classification_events_per_second": "Clasificacion de eventos por segundo de {{name}}"
|
||||
},
|
||||
"title": "Enriquicimientos",
|
||||
"title": "Enriquecimientos",
|
||||
"averageInf": "Tiempo promedio de inferencia"
|
||||
},
|
||||
"stats": {
|
||||
|
||||
@@ -6,7 +6,8 @@
|
||||
"title": "Frigate käivitub uuesti",
|
||||
"content": "See leht laaditakse uuesti {{countdown}} sekundi pärast.",
|
||||
"button": "Laadi uuesti kohe"
|
||||
}
|
||||
},
|
||||
"description": "Järgnevaga Frigate uuesti käivitamise ajaks lõpetab korraks töö."
|
||||
},
|
||||
"search": {
|
||||
"saveSearch": {
|
||||
|
||||
@@ -6,7 +6,8 @@
|
||||
"content": "Cette page sera rechargée dans {{countdown}} secondes.",
|
||||
"button": "Forcer l'actualisation maintenant"
|
||||
},
|
||||
"button": "Redémarrer"
|
||||
"button": "Redémarrer",
|
||||
"description": "Frigate s'arrêtera momentanément pour redémarrer."
|
||||
},
|
||||
"explore": {
|
||||
"plus": {
|
||||
|
||||
@@ -366,6 +366,11 @@
|
||||
"snapPoints": {
|
||||
"true": "Points d'accrochage",
|
||||
"false": "Ne pas réunir les points"
|
||||
},
|
||||
"type": {
|
||||
"zone": "zone",
|
||||
"motion_mask": "masque de mouvement",
|
||||
"object_mask": "masque d'objet"
|
||||
}
|
||||
},
|
||||
"loiteringTime": {
|
||||
|
||||
@@ -75,7 +75,8 @@
|
||||
"formattedTimestampMonthDay": "MMM d",
|
||||
"inProgress": "Folyamatban",
|
||||
"invalidStartTime": "Érvénytelen kezdeti idő",
|
||||
"never": "Soha"
|
||||
"never": "Soha",
|
||||
"invalidEndTime": "Érvénytelen befejezési idő"
|
||||
},
|
||||
"menu": {
|
||||
"darkMode": {
|
||||
@@ -106,7 +107,7 @@
|
||||
"logout": "Kijelentkezés",
|
||||
"title": "Felhasználó",
|
||||
"account": "Fiók",
|
||||
"current": "Jelenlegi Felhazsnáló: {{user}}",
|
||||
"current": "Jelenlegi Felhasználó: {{user}}",
|
||||
"anonymous": "anoním",
|
||||
"setPassword": "Jelszó Beállítása"
|
||||
},
|
||||
@@ -153,7 +154,8 @@
|
||||
"bg": "Български (Bolgár)",
|
||||
"gl": "Galego (Galíciai)",
|
||||
"id": "Bahasa Indonesia (Indonéz)",
|
||||
"ur": "اردو (Urdu)"
|
||||
"ur": "اردو (Urdu)",
|
||||
"hr": "Horvát"
|
||||
},
|
||||
"uiPlayground": "UI játszótér",
|
||||
"faceLibrary": "Arc Könyvtár",
|
||||
@@ -175,7 +177,8 @@
|
||||
"system": "Rendszer",
|
||||
"configuration": "Konfiguráció",
|
||||
"systemLogs": "Rendszer naplók",
|
||||
"settings": "Beállítások"
|
||||
"settings": "Beállítások",
|
||||
"classification": "Osztályozás"
|
||||
},
|
||||
"role": {
|
||||
"viewer": "Néző",
|
||||
@@ -215,7 +218,7 @@
|
||||
}
|
||||
}
|
||||
},
|
||||
"selectItem": "KIválasztani {{item}}-et",
|
||||
"selectItem": "Kiválasztani {{item}}-et",
|
||||
"unit": {
|
||||
"speed": {
|
||||
"mph": "mph",
|
||||
@@ -269,14 +272,29 @@
|
||||
"unselect": "Kijelölés megszüntetése",
|
||||
"export": "Exportálás",
|
||||
"deleteNow": "Törlés Most",
|
||||
"next": "Következő"
|
||||
"next": "Következő",
|
||||
"continue": "Tovább"
|
||||
},
|
||||
"label": {
|
||||
"back": "Vissza",
|
||||
"all": "Mind"
|
||||
"all": "Mind",
|
||||
"hide": "Elrejt {{item}}",
|
||||
"show": "Mutat {{item}}",
|
||||
"ID": "ID",
|
||||
"none": "Nincs",
|
||||
"other": "Egyéb"
|
||||
},
|
||||
"readTheDocumentation": "Olvassa el a dokumentációt",
|
||||
"information": {
|
||||
"pixels": "{{area}}px"
|
||||
},
|
||||
"list": {
|
||||
"two": "{{0}} és {{1}}",
|
||||
"many": "{{items}}, és {{last}}",
|
||||
"separatorWithSpace": ", "
|
||||
},
|
||||
"field": {
|
||||
"optional": "Opcionális",
|
||||
"internalID": "A belső ID, amelyet a Frigate használ a konfigurációban és az adatbázisban"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -6,7 +6,8 @@
|
||||
"title": "A Frigate újraindul",
|
||||
"content": "Az oldal újratölt {{countdown}} másodperc múlva.",
|
||||
"button": "Erőltetett újraindítás azonnal"
|
||||
}
|
||||
},
|
||||
"description": "Ez rövid időre leállítja a Frigate programot, amíg újraindul."
|
||||
},
|
||||
"explore": {
|
||||
"plus": {
|
||||
@@ -57,7 +58,8 @@
|
||||
"failed": "Nem sikerült elkezdeni az exportálást: {{error}}",
|
||||
"endTimeMustAfterStartTime": "A végső időpontnak a kezdeti időpont után kell következnie",
|
||||
"noVaildTimeSelected": "Nincs érvényes idő intervallum kiválasztva"
|
||||
}
|
||||
},
|
||||
"view": "Megtekint"
|
||||
},
|
||||
"fromTimeline": {
|
||||
"saveExport": "Exportálás mentése",
|
||||
|
||||
@@ -13,8 +13,8 @@
|
||||
"toast": {
|
||||
"success": {
|
||||
"deletedImage": "Törölt képek",
|
||||
"deletedModel_one": "Sikeresen törölt {{count}} modellt",
|
||||
"deletedModel_other": "",
|
||||
"deletedModel_one": "Sikeresen törölve {{count}} modell",
|
||||
"deletedModel_other": "Sikeresen törölve {{count}} modell",
|
||||
"categorizedImage": "A kép sikeresen osztályozva",
|
||||
"deletedCategory": "Osztály törlése",
|
||||
"trainedModel": "Sikeresen betanított modell.",
|
||||
@@ -24,7 +24,13 @@
|
||||
},
|
||||
"error": {
|
||||
"deleteImageFailed": "Törlés sikertelen: {{errorMessage}}",
|
||||
"deleteCategoryFailed": "Nem sikerült törölni az osztályt: {{errorMessage}}"
|
||||
"deleteCategoryFailed": "Nem sikerült törölni az osztályt: {{errorMessage}}",
|
||||
"deleteModelFailed": "Modell törlése nem sikerült: {{errorMessage}}",
|
||||
"categorizeFailed": "A kép kategorizálása sikertelen: {{errorMessage}}",
|
||||
"trainingFailed": "A modell képzése sikertelen volt. A részletek a Frigate naplóiban találhatók.",
|
||||
"trainingFailedToStart": "A modell képzésének elindítása sikertelen: {{errorMessage}}",
|
||||
"updateModelFailed": "A modell frissítése sikertelen: {{errorMessage}}",
|
||||
"renameCategoryFailed": "Az osztály átnevezése sikertelen: {{errorMessage}}"
|
||||
}
|
||||
},
|
||||
"details": {
|
||||
@@ -54,5 +60,16 @@
|
||||
},
|
||||
"train": {
|
||||
"titleShort": "Friss"
|
||||
},
|
||||
"deleteCategory": {
|
||||
"title": "Osztály törlése",
|
||||
"desc": "Biztosan törölni szeretné a {{name}} osztályt? Ezzel véglegesen törli az összes kapcsolódó képet, és a modell újratanítására lesz szükség.",
|
||||
"minClassesTitle": "Osztály törlése nem lehetséges"
|
||||
},
|
||||
"deleteModel": {
|
||||
"title": "Osztályozási modell törlése",
|
||||
"single": "Biztosan törölni szeretné a(z) {{name}}-t? Ezzel véglegesen törli az összes kapcsolódó adatot, beleértve a képeket és a tanítási adatokat is. Ez a művelet visszafordíthatatlan.",
|
||||
"desc_one": "Biztosan törölni szeretné a(z) {{count}} modellt? Ezzel véglegesen törli az összes kapcsolódó adatot, beleértve a képeket és a tanítási adatokat is. Ez a művelet visszafordíthatatlan.",
|
||||
"desc_other": "Biztosan törölni szeretné a(z) {{count}} modelleket? Ezzel véglegesen törli az összes kapcsolódó adatot, beleértve a képeket és a tanítási adatokat is. Ez a művelet visszafordíthatatlan."
|
||||
}
|
||||
}
|
||||
|
||||
@@ -54,5 +54,12 @@
|
||||
"alwaysExpandActive": {
|
||||
"title": "Mindig kibontja az aktív részt"
|
||||
}
|
||||
}
|
||||
},
|
||||
"objectTrack": {
|
||||
"trackedPoint": "Nyomon követett pont",
|
||||
"clickToSeek": "Kattintson, az időponthoz ugráshoz"
|
||||
},
|
||||
"select_all": "Összes",
|
||||
"needsReview": "Felülvizsgálatra szorul",
|
||||
"securityConcern": "Biztonsági aggályok"
|
||||
}
|
||||
|
||||
@@ -235,10 +235,19 @@
|
||||
"header": {
|
||||
"zones": "Zónák",
|
||||
"ratio": "Arány",
|
||||
"area": "Terület"
|
||||
}
|
||||
"area": "Terület",
|
||||
"score": "Pontszám"
|
||||
},
|
||||
"visible": "{{label}} észlelve",
|
||||
"entered_zone": "{{label}} belépett {{zones}}",
|
||||
"gone": "{{label}} maradt"
|
||||
},
|
||||
"title": "Követési adatok",
|
||||
"noImageFound": "Nem található kép ehhez az időbélyeghez."
|
||||
"noImageFound": "Nem található kép ehhez az időbélyeghez.",
|
||||
"createObjectMask": "Objektum maszk létrehozása",
|
||||
"scrollViewTips": "Kattintson ide, hogy megtekintse az objektum életciklusának fontosabb pillanatait.",
|
||||
"autoTrackingTips": "Az automatikus követésű kamerák esetében a keret pozíciói pontatlanok lesznek.",
|
||||
"count": "{{first}} a {{second}} közül",
|
||||
"trackedPoint": "Nyomon követett pont"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -47,7 +47,8 @@
|
||||
"description": {
|
||||
"placeholder": "Adj nevet ennek a gyűjteménynek",
|
||||
"invalidName": "Nem megfelelő név. A nevek csak betűket, számokat, szóközöket, aposztrófokat, alulhúzásokat és kötőjeleket tartalmazhatnak.",
|
||||
"addFace": "Adj hozzá egy új gyűjteményt az Arcképtárhoz az első képed feltöltésével."
|
||||
"addFace": "Adj hozzá egy új gyűjteményt az Arcképtárhoz az első képed feltöltésével.",
|
||||
"nameCannotContainHash": "A név nem tartalmazhat # karaktert."
|
||||
},
|
||||
"selectFace": "Arc kiválasztása",
|
||||
"deleteFaceLibrary": {
|
||||
@@ -71,7 +72,7 @@
|
||||
"deletedName_one": "{{count}} arc sikeresen törölve.",
|
||||
"deletedName_other": "{{count}} arc sikeresen törölve.",
|
||||
"renamedFace": "Arc sikeresen átnvezezve {{name}}-ra/-re",
|
||||
"updatedFaceScore": "Arc pontszáma sikeresen frissítve.",
|
||||
"updatedFaceScore": "Arc pontszáma sikeresen frissítve a következőhöz {{name}} ({{score}}).",
|
||||
"trainedFace": "Arc sikeresen betanítva.",
|
||||
"deletedFace_one": "{{count}} arc sikeresen törölve.",
|
||||
"deletedFace_other": "{{count}} arc sikeresen törölve."
|
||||
|
||||
@@ -50,6 +50,12 @@
|
||||
"playAlertVideos": {
|
||||
"label": "Riasztási Videók Lejátszása",
|
||||
"desc": "Alapértelmezetten az Élő irányítópulton a legutóbbi riasztások kis, ismétlődő videóként jelennek meg. Kapcsolja ki ezt az opciót, ha csak állóképet szeretne megjeleníteni a legutóbbi riasztásokról ezen az eszközön/böngészőben."
|
||||
},
|
||||
"displayCameraNames": {
|
||||
"label": "Mindig mutatja a kamera nevét"
|
||||
},
|
||||
"liveFallbackTimeout": {
|
||||
"desc": "Ha a kamera kiváló minőségű élő közvetítése nem elérhető, ennyi másodperc elteltével váltson alacsony sávszélességű módra. Alapértelmezett: 3."
|
||||
}
|
||||
},
|
||||
"title": "Alapbeállítások",
|
||||
@@ -806,7 +812,7 @@
|
||||
"updateCameras": "Kamerák frissítve a szerepkörhöz: {{role}}",
|
||||
"deleteRole": "Szerepkör sikeresen törölve: {{role}}",
|
||||
"userRolesUpdated_one": "{{count}} felhasználó, akit ehhez a szerepkörhöz rendeltünk, frissült „néző”-re, amely hozzáféréssel rendelkezik az összes kamerához.",
|
||||
"userRolesUpdated_other": ""
|
||||
"userRolesUpdated_other": "{{count}} felhasználó, akit ehhez a szerepkörhöz rendeltünk, frissült „néző”-re, amely hozzáféréssel rendelkezik az összes kamerához."
|
||||
},
|
||||
"error": {
|
||||
"createRoleFailed": "Nem sikerült létrehozni a szerepkört: {{errorMessage}}",
|
||||
|
||||
@@ -66,7 +66,7 @@
|
||||
"type": {
|
||||
"label": "Típus",
|
||||
"timestamp": "Időbélyeg",
|
||||
"tag": "Cédula",
|
||||
"tag": "Címke",
|
||||
"message": "Üzenet"
|
||||
},
|
||||
"toast": {
|
||||
|
||||
@@ -6,7 +6,8 @@
|
||||
"title": "Sedang Merestart Frigate",
|
||||
"content": "Halaman ini akan memulai ulang dalam {{countdown}} detik.",
|
||||
"button": "Muat Ulang Sekarang"
|
||||
}
|
||||
},
|
||||
"description": "Layanan Frigate akan terhenti sejenak saat proses restart."
|
||||
},
|
||||
"explore": {
|
||||
"plus": {
|
||||
|
||||
@@ -1,12 +1,14 @@
|
||||
{
|
||||
"documentTitle": "Klasifikasi Model - Frigate",
|
||||
"details": {
|
||||
"scoreInfo": "Skor tersebut mewakili rata-rata kepercayaan klasifikasi di seluruh deteksi objek ini."
|
||||
"scoreInfo": "Skor tersebut mewakili rata-rata kepercayaan klasifikasi di seluruh deteksi objek ini.",
|
||||
"none": "Tidak ada",
|
||||
"unknown": "Tidak diketahui"
|
||||
},
|
||||
"button": {
|
||||
"deleteClassificationAttempts": "Hapus Gambar Klasifikasi",
|
||||
"renameCategory": "Ubah Nama Kelas",
|
||||
"deleteCategory": "Hapus Kelas",
|
||||
"renameCategory": "Ganti Nama Class",
|
||||
"deleteCategory": "Hapus Class",
|
||||
"deleteImages": "Hapus Gambar",
|
||||
"trainModel": "Latih Model",
|
||||
"addClassification": "Tambah Klasifikasi",
|
||||
@@ -14,14 +16,14 @@
|
||||
"editModel": "Ubah Model"
|
||||
},
|
||||
"tooltip": {
|
||||
"trainingInProgress": "Model dalam training",
|
||||
"noNewImages": "Tidak ada gambar untuk dilatih. Klasifikasikan gambar terlebih dahulu di dataset.",
|
||||
"trainingInProgress": "Model sedang training",
|
||||
"noNewImages": "Tidak ada gambar baru untuk training. Klasifikasi lebih banyak gambar di dataset terlebih dahulu.",
|
||||
"noChanges": "Tidak ada perubahan dataset sejak latihan terakhir.",
|
||||
"modelNotReady": "Model tidak siap untuk dilatih"
|
||||
},
|
||||
"toast": {
|
||||
"success": {
|
||||
"deletedCategory": "Kelas dihapus",
|
||||
"deletedCategory": "Class Dihapus",
|
||||
"deletedImage": "Image dihapus",
|
||||
"deletedModel_other": "Berhasil menghapus {{count}} model",
|
||||
"categorizedImage": "Berhasil Mengklasifikasikan Gambar",
|
||||
@@ -31,17 +33,61 @@
|
||||
"renamedCategory": "Berhasil mengganti nama class ke {{name}}"
|
||||
},
|
||||
"error": {
|
||||
"updateModelFailed": "Gagal melakukan perubahan pada model: {{errorMessage}}",
|
||||
"updateModelFailed": "Gagal update model: {{errorMessage}}",
|
||||
"renameCategoryFailed": "Gagal merubah penamaan kelas: {{errorMessage}}",
|
||||
"deleteImageFailed": "Gagal menghapus: {{errorMessage}}",
|
||||
"deleteCategoryFailed": "Gagal menghapus kelas: {{errorMessage}}"
|
||||
"deleteCategoryFailed": "Gagal menghapus kelas: {{errorMessage}}",
|
||||
"deleteModelFailed": "Gagal menghapus model: {{errorMessage}}",
|
||||
"categorizeFailed": "Gagal mengkategorikan gambar: {{errorMessage}}",
|
||||
"trainingFailed": "Gagal melakukan training model. Cek log Frigate untuk rinciannya.",
|
||||
"trainingFailedToStart": "Gagal memulai training model: {{errorMessage}}"
|
||||
}
|
||||
},
|
||||
"deleteCategory": {
|
||||
"title": "Kelas dihapus",
|
||||
"minClassesTitle": "Dilarang menghapus Kelas"
|
||||
"minClassesTitle": "Dilarang menghapus Kelas",
|
||||
"desc": "Apakah Anda yakin ingin menghapus class {{name}}? Ini akan menghapus semua gambar terkait secara permanen dan memerlukan re-training model.",
|
||||
"minClassesDesc": "Model klasifikasi harus memiliki setidaknya 2 class. Tambahkan class lain sebelum menghapus yang ini."
|
||||
},
|
||||
"train": {
|
||||
"titleShort": "Terkini"
|
||||
},
|
||||
"wizard": {
|
||||
"title": "Buat Klasifikasi Baru",
|
||||
"steps": {
|
||||
"nameAndDefine": "Nama & Definisi",
|
||||
"stateArea": "Pilih Area",
|
||||
"chooseExamples": "Pilih Contoh"
|
||||
},
|
||||
"step1": {
|
||||
"description": "State model memantau area kamera yang tetap untuk setiap perubahan (contoh: pintu terbuka/tertutup). Object model menambahkan klasifikasi pada objek yang terdeteksi (contoh: hewan tertentu, kurir, dll.).",
|
||||
"name": "Nama",
|
||||
"namePlaceholder": "Masukkan nama model...",
|
||||
"type": "Tipe",
|
||||
"typeState": "Status",
|
||||
"typeObject": "Objek",
|
||||
"objectLabel": "Label Objek",
|
||||
"objectLabelPlaceholder": "Pilih tipe objek...",
|
||||
"classificationType": "Pilih Klasifikasi",
|
||||
"classificationTypeTip": "Pelajari tentang tipe klasifikasi",
|
||||
"classificationTypeDesc": "Sub Label menambahkan teks tambahan pada label objek (contoh: 'Orang: UPS'). Atribut adalah metadata yang dapat dicari dan disimpan secara terpisah di dalam metadata objek.",
|
||||
"classificationSubLabel": "Sub Label",
|
||||
"classificationAttribute": "Atribut",
|
||||
"classes": "Class",
|
||||
"classesTip": "Pelajari tentang class",
|
||||
"classesStateDesc": "Tentukan berbagai status (state) pada area kamera Anda. Contoh: 'terbuka' dan 'tertutup' untuk pintu garasi.",
|
||||
"classesObjectDesc": "Tentukan kategori berbeda untuk mengklasifikasikan objek yang terdeteksi. Contoh: 'kurir', 'penghuni', 'orang_asing' untuk klasifikasi orang.",
|
||||
"classPlaceholder": "Masukkan nama class...",
|
||||
"errors": {
|
||||
"nameRequired": "Nama model wajib diisi",
|
||||
"nameLength": "Nama model maksimal 64 karakter",
|
||||
"nameOnlyNumbers": "Nama model tidak boleh hanya berisi angka",
|
||||
"classRequired": "Setidaknya harus ada 1 class yang diisi",
|
||||
"classesUnique": "Nama class harus unik",
|
||||
"stateRequiresTwoClasses": "State model memerlukan minimal 2 class",
|
||||
"objectLabelRequired": "Silakan pilih label objek",
|
||||
"objectTypeRequired": "Silakan pilih tipe klasifikasi"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -208,7 +208,8 @@
|
||||
"bg": "Български (Bulgaro)",
|
||||
"gl": "Galego (Galiziano)",
|
||||
"id": "Bahasa Indonesia (Indonesiano)",
|
||||
"ur": "اردو (Urdu)"
|
||||
"ur": "اردو (Urdu)",
|
||||
"hr": "Hrvatski (Croato)"
|
||||
},
|
||||
"darkMode": {
|
||||
"label": "Modalità scura",
|
||||
|
||||
@@ -6,7 +6,8 @@
|
||||
"title": "Frigate si sta riavviando",
|
||||
"content": "Questa pagina si ricaricherà in {{countdown}} secondi.",
|
||||
"button": "Forza ricarica ora"
|
||||
}
|
||||
},
|
||||
"description": "Questo fermerà brevemente Frigate mentre si riavvia."
|
||||
},
|
||||
"explore": {
|
||||
"plus": {
|
||||
@@ -84,7 +85,7 @@
|
||||
"label": "Mostra statistiche di trasmissione",
|
||||
"desc": "Abilita questa opzione per visualizzare le statistiche della trasmissione come sovrapposizione sul flusso della telecamera."
|
||||
},
|
||||
"debugView": "Visualizzazione debug",
|
||||
"debugView": "Vista correzioni",
|
||||
"restreaming": {
|
||||
"disabled": "La ritrasmissione non è abilitata per questa telecamera.",
|
||||
"desc": {
|
||||
|
||||
@@ -3,7 +3,8 @@
|
||||
"description": {
|
||||
"addFace": "Aggiungi una nuova raccolta alla Libreria dei Volti caricando la tua prima immagine.",
|
||||
"placeholder": "Inserisci un nome per questa raccolta",
|
||||
"invalidName": "Nome non valido. I nomi possono contenere solo lettere, numeri, spazi, apostrofi, caratteri di sottolineatura e trattini."
|
||||
"invalidName": "Nome non valido. I nomi possono contenere solo lettere, numeri, spazi, apostrofi, caratteri di sottolineatura e trattini.",
|
||||
"nameCannotContainHash": "Il nome non può contenere #."
|
||||
},
|
||||
"details": {
|
||||
"confidence": "Fiducia",
|
||||
|
||||
@@ -10,7 +10,7 @@
|
||||
"general": "Impostazioni interfaccia - Frigate",
|
||||
"frigatePlus": "Impostazioni Frigate+ - Frigate",
|
||||
"notifications": "Impostazioni di notifiche - Frigate",
|
||||
"enrichments": "Impostazioni Componenti Aggiuntivi - Frigate",
|
||||
"enrichments": "Impostazioni di miglioramento - Frigate",
|
||||
"cameraManagement": "Gestisci telecamere - Frigate",
|
||||
"cameraReview": "Impostazioni revisione telecamera - Frigate"
|
||||
},
|
||||
@@ -87,9 +87,9 @@
|
||||
"desc": "Mostra un riquadro della regione di interesse inviata al rilevatore di oggetti"
|
||||
},
|
||||
"noObjects": "Nessun oggetto",
|
||||
"title": "Debug",
|
||||
"desc": "La vista di debug mostra in tempo reale gli oggetti tracciati e le relative statistiche. L'elenco degli oggetti mostra un riepilogo in differita degli oggetti rilevati.",
|
||||
"debugging": "Debugging",
|
||||
"title": "Correzioni",
|
||||
"desc": "La vista di correzione mostra una vista in tempo reale degli oggetti tracciati e delle relative statistiche. L'elenco degli oggetti mostra un riepilogo ritardato degli oggetti rilevati.",
|
||||
"debugging": "Correzioni",
|
||||
"objectList": "Elenco degli oggetti",
|
||||
"mask": {
|
||||
"desc": "Mostra i poligoni della maschera di movimento",
|
||||
@@ -181,6 +181,11 @@
|
||||
},
|
||||
"error": {
|
||||
"mustBeFinished": "Prima di salvare, è necessario terminare il disegno del poligono."
|
||||
},
|
||||
"type": {
|
||||
"zone": "zona",
|
||||
"motion_mask": "maschera di movimento",
|
||||
"object_mask": "maschera di oggetto"
|
||||
}
|
||||
},
|
||||
"inertia": {
|
||||
@@ -377,14 +382,14 @@
|
||||
"classification": "Classificazione",
|
||||
"cameras": "Impostazioni telecamera",
|
||||
"masksAndZones": "Maschere / Zone",
|
||||
"debug": "Debug",
|
||||
"debug": "Correzioni",
|
||||
"users": "Utenti",
|
||||
"frigateplus": "Frigate+",
|
||||
"enrichments": "Componenti Aggiuntivi",
|
||||
"enrichments": "Miglioramenti",
|
||||
"triggers": "Inneschi",
|
||||
"roles": "Ruoli",
|
||||
"cameraManagement": "Gestione",
|
||||
"cameraReview": "Revisione"
|
||||
"cameraReview": "Rivedi"
|
||||
},
|
||||
"users": {
|
||||
"dialog": {
|
||||
@@ -432,7 +437,7 @@
|
||||
"hide": "Nascondi password",
|
||||
"requirements": {
|
||||
"title": "Requisiti password:",
|
||||
"length": "Almeno 8 caratteri",
|
||||
"length": "Almeno 12 caratteri",
|
||||
"uppercase": "Almeno una lettera maiuscola",
|
||||
"digit": "Almeno una cifra",
|
||||
"special": "Almeno un carattere speciale (!@#$%^&*(),.?\":{}|<>)"
|
||||
@@ -510,7 +515,7 @@
|
||||
},
|
||||
"playAlertVideos": {
|
||||
"label": "Riproduci video di avvisi",
|
||||
"desc": "Per impostazione predefinita, gli avvisi recenti nella dashboard Live vengono riprodotti come piccoli video in loop. Disabilita questa opzione per mostrare solo un'immagine statica degli avvisi recenti su questo dispositivo/browser."
|
||||
"desc": "Per impostazione predefinita, gli avvisi recenti nella schermata dal vivo vengono riprodotti come brevi video in ciclo. Disattiva questa opzione per visualizzare solo un'immagine statica degli avvisi recenti su questo dispositivo/browser."
|
||||
},
|
||||
"title": "Schermata dal vivo",
|
||||
"displayCameraNames": {
|
||||
@@ -534,7 +539,7 @@
|
||||
"clearAll": "Cancella tutte le impostazioni di trasmissione"
|
||||
},
|
||||
"recordingsViewer": {
|
||||
"title": "Visualizzatore di registrazioni",
|
||||
"title": "Visualizzatore registrazioni",
|
||||
"defaultPlaybackRate": {
|
||||
"label": "Velocità di riproduzione predefinita",
|
||||
"desc": "Velocità di riproduzione predefinita per la riproduzione delle registrazioni."
|
||||
@@ -640,7 +645,7 @@
|
||||
"title": "Regolatore di rilevamento del movimento",
|
||||
"contourArea": {
|
||||
"title": "Area di contorno",
|
||||
"desc": "Il valore dell'area di contorno viene utilizzato per decidere quali gruppi di pixel modificati possono essere considerati movimento. <em>Predefinito: 10</em>"
|
||||
"desc": "Il valore dell'area del contorno viene utilizzato per decidere quali gruppi di pixel modificati sono considerati movimento. <em>Predefinito: 10</em>"
|
||||
},
|
||||
"Threshold": {
|
||||
"title": "Soglia",
|
||||
@@ -708,10 +713,10 @@
|
||||
},
|
||||
"enrichments": {
|
||||
"toast": {
|
||||
"success": "Le impostazioni dei componenti aggiuntivi sono state salvate. Riavvia Frigate per applicare le modifiche.",
|
||||
"success": "Le impostazioni di miglioramento sono state salvate. Riavvia Frigate per applicare le modifiche.",
|
||||
"error": "Impossibile salvare le modifiche alla configurazione: {{errorMessage}}"
|
||||
},
|
||||
"title": "Impostazioni Componenti Aggiuntivi",
|
||||
"title": "Impostazioni di miglioramento",
|
||||
"semanticSearch": {
|
||||
"reindexNow": {
|
||||
"desc": "La reindicizzazione rigenererà gli incorporamenti per tutti gli oggetti tracciati. Questo processo viene eseguito in sottofondo e potrebbe impegnare al massimo la CPU e richiedere un tempo considerevole, a seconda del numero di oggetti tracciati.",
|
||||
@@ -765,8 +770,8 @@
|
||||
"title": "Riconoscimento targhe",
|
||||
"readTheDocumentation": "Leggi la documentazione"
|
||||
},
|
||||
"unsavedChanges": "Modifiche alle impostazioni dei Componenti aggiuntivi non salvate",
|
||||
"restart_required": "Riavvio richiesto (impostazioni dei componenti aggiuntivi modificate)"
|
||||
"unsavedChanges": "Modifiche alle impostazioni di miglioramento non salvate",
|
||||
"restart_required": "Riavvio richiesto (impostazioni di miglioramento modificate)"
|
||||
},
|
||||
"triggers": {
|
||||
"documentTitle": "Inneschi",
|
||||
@@ -1278,7 +1283,7 @@
|
||||
"backToSettings": "Torna alle impostazioni della telecamera",
|
||||
"streams": {
|
||||
"title": "Abilita/Disabilita telecamere",
|
||||
"desc": "Disattiva temporaneamente una telecamera fino al riavvio di Frigate. La disattivazione completa di una telecamera interrompe l'elaborazione dei flussi di questa telecamera da parte di Frigate. Rilevamento, registrazione e debug non saranno disponibili.<br /> <em>Nota: questa operazione non disattiva le ritrasmissioni di go2rtc.</em>"
|
||||
"desc": "Disattiva temporaneamente una telecamera fino al riavvio di Frigate. La disattivazione completa di una telecamera interrompe l'elaborazione dei flussi di questa telecamera da parte di Frigate. Rilevamento, registrazione e correzioni non saranno disponibili.<br /> <em>Nota: questa operazione non disattiva le ritrasmissioni di go2rtc.</em>"
|
||||
},
|
||||
"cameraConfig": {
|
||||
"add": "Aggiungi telecamera",
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
{
|
||||
"documentTitle": {
|
||||
"cameras": "Statistiche telecamere - Frigate",
|
||||
"enrichments": "Statistiche Componenti Aggiuntivi - Frigate",
|
||||
"enrichments": "Statistiche di miglioramento - Frigate",
|
||||
"storage": "Statistiche archiviazione - Frigate",
|
||||
"general": "Statistiche generali - Frigate",
|
||||
"logs": {
|
||||
@@ -117,7 +117,7 @@
|
||||
"classification_speed": "Velocità di classificazione {{name}}",
|
||||
"classification_events_per_second": "Eventi di classificazione {{name}} al secondo"
|
||||
},
|
||||
"title": "Componenti Aggiuntivi",
|
||||
"title": "Miglioramenti",
|
||||
"infPerSecond": "Inferenze al secondo",
|
||||
"averageInf": "Tempo medio di inferenza"
|
||||
},
|
||||
|
||||
@@ -97,7 +97,8 @@
|
||||
"show": "{{item}} を表示",
|
||||
"ID": "ID",
|
||||
"none": "なし",
|
||||
"all": "すべて"
|
||||
"all": "すべて",
|
||||
"other": "その他"
|
||||
},
|
||||
"button": {
|
||||
"apply": "適用",
|
||||
|
||||
@@ -6,7 +6,8 @@
|
||||
"content": "このページは {{countdown}} 秒後に再読み込みされます。",
|
||||
"button": "今すぐ強制再読み込み"
|
||||
},
|
||||
"button": "再起動"
|
||||
"button": "再起動",
|
||||
"description": "再起動の間、Frigateが一時的に停止します。"
|
||||
},
|
||||
"explore": {
|
||||
"plus": {
|
||||
|
||||
@@ -288,6 +288,11 @@
|
||||
},
|
||||
"error": {
|
||||
"mustBeFinished": "保存する前に多角形の作図を完了してください。"
|
||||
},
|
||||
"type": {
|
||||
"zone": "ゾーン",
|
||||
"motion_mask": "モーションマスク",
|
||||
"object_mask": "オブジェクトマスク"
|
||||
}
|
||||
}
|
||||
},
|
||||
@@ -532,7 +537,7 @@
|
||||
"hide": "パスワードを非表示",
|
||||
"requirements": {
|
||||
"title": "パスワード要件:",
|
||||
"length": "8 文字以上",
|
||||
"length": "12文字以上",
|
||||
"uppercase": "大文字を 1 文字以上含める",
|
||||
"digit": "数字を 1 文字以上含める",
|
||||
"special": "少なくとも 1 つの特殊文字(!@#$%^&*(),.?”:{}|<>)が必要です"
|
||||
@@ -1185,11 +1190,11 @@
|
||||
"title": "カメラレビュー設定",
|
||||
"object_descriptions": {
|
||||
"title": "生成AIによるオブジェクト説明",
|
||||
"desc": "このカメラに対する生成AIのオブジェクト説明を一時的に有効/無効にします。無効にすると、このカメラの追跡オブジェクトについてAI生成の説明は要求されません。"
|
||||
"desc": "Frigateが再起動するまで、このカメラの生成AIによる物体説明を一時的に有効/無効にします。無効にすると、このカメラで追跡された物体に対してAI生成の説明は生成されません。"
|
||||
},
|
||||
"review_descriptions": {
|
||||
"title": "生成AIによるレビュー説明",
|
||||
"desc": "このカメラに対する生成AIのレビュー説明を一時的に有効/無効にします。無効にすると、このカメラのレビュー項目についてAI生成の説明は要求されません。"
|
||||
"desc": "Frigateが再起動するまで、このカメラの生成AIによるレビュー説明を一時的に有効/無効にします。無効にすると、このカメラのレビュー項目に対してAI生成の説明は生成されません。"
|
||||
},
|
||||
"review": {
|
||||
"title": "レビュー",
|
||||
|
||||
@@ -91,7 +91,8 @@
|
||||
"recording": "録画",
|
||||
"review_segment": "レビューセグメント",
|
||||
"audio_detector": "音声検知",
|
||||
"go2rtc": "go2rtc"
|
||||
"go2rtc": "go2rtc",
|
||||
"embeddings": "ベクトル埋め込み"
|
||||
}
|
||||
}
|
||||
},
|
||||
|
||||
1
web/public/locales/ka/audio.json
Normal file
1
web/public/locales/ka/audio.json
Normal file
@@ -0,0 +1 @@
|
||||
{}
|
||||
1
web/public/locales/ka/common.json
Normal file
1
web/public/locales/ka/common.json
Normal file
@@ -0,0 +1 @@
|
||||
{}
|
||||
1
web/public/locales/ka/components/auth.json
Normal file
1
web/public/locales/ka/components/auth.json
Normal file
@@ -0,0 +1 @@
|
||||
{}
|
||||
1
web/public/locales/ka/components/camera.json
Normal file
1
web/public/locales/ka/components/camera.json
Normal file
@@ -0,0 +1 @@
|
||||
{}
|
||||
1
web/public/locales/ka/components/dialog.json
Normal file
1
web/public/locales/ka/components/dialog.json
Normal file
@@ -0,0 +1 @@
|
||||
{}
|
||||
1
web/public/locales/ka/components/filter.json
Normal file
1
web/public/locales/ka/components/filter.json
Normal file
@@ -0,0 +1 @@
|
||||
{}
|
||||
1
web/public/locales/ka/components/icons.json
Normal file
1
web/public/locales/ka/components/icons.json
Normal file
@@ -0,0 +1 @@
|
||||
{}
|
||||
1
web/public/locales/ka/components/input.json
Normal file
1
web/public/locales/ka/components/input.json
Normal file
@@ -0,0 +1 @@
|
||||
{}
|
||||
1
web/public/locales/ka/components/player.json
Normal file
1
web/public/locales/ka/components/player.json
Normal file
@@ -0,0 +1 @@
|
||||
{}
|
||||
1
web/public/locales/ka/objects.json
Normal file
1
web/public/locales/ka/objects.json
Normal file
@@ -0,0 +1 @@
|
||||
{}
|
||||
1
web/public/locales/ka/views/classificationModel.json
Normal file
1
web/public/locales/ka/views/classificationModel.json
Normal file
@@ -0,0 +1 @@
|
||||
{}
|
||||
1
web/public/locales/ka/views/configEditor.json
Normal file
1
web/public/locales/ka/views/configEditor.json
Normal file
@@ -0,0 +1 @@
|
||||
{}
|
||||
1
web/public/locales/ka/views/events.json
Normal file
1
web/public/locales/ka/views/events.json
Normal file
@@ -0,0 +1 @@
|
||||
{}
|
||||
1
web/public/locales/ka/views/explore.json
Normal file
1
web/public/locales/ka/views/explore.json
Normal file
@@ -0,0 +1 @@
|
||||
{}
|
||||
1
web/public/locales/ka/views/exports.json
Normal file
1
web/public/locales/ka/views/exports.json
Normal file
@@ -0,0 +1 @@
|
||||
{}
|
||||
1
web/public/locales/ka/views/faceLibrary.json
Normal file
1
web/public/locales/ka/views/faceLibrary.json
Normal file
@@ -0,0 +1 @@
|
||||
{}
|
||||
1
web/public/locales/ka/views/live.json
Normal file
1
web/public/locales/ka/views/live.json
Normal file
@@ -0,0 +1 @@
|
||||
{}
|
||||
1
web/public/locales/ka/views/recording.json
Normal file
1
web/public/locales/ka/views/recording.json
Normal file
@@ -0,0 +1 @@
|
||||
{}
|
||||
1
web/public/locales/ka/views/search.json
Normal file
1
web/public/locales/ka/views/search.json
Normal file
@@ -0,0 +1 @@
|
||||
{}
|
||||
1
web/public/locales/ka/views/settings.json
Normal file
1
web/public/locales/ka/views/settings.json
Normal file
@@ -0,0 +1 @@
|
||||
{}
|
||||
1
web/public/locales/ka/views/system.json
Normal file
1
web/public/locales/ka/views/system.json
Normal file
@@ -0,0 +1 @@
|
||||
{}
|
||||
@@ -81,7 +81,8 @@
|
||||
"untilForRestart": "Līdz Frigate pārstartējas.",
|
||||
"untilRestart": "Līdz pārstartēšanai",
|
||||
"ago": "{{timeAgo}} pirms",
|
||||
"justNow": "Nupat"
|
||||
"justNow": "Nupat",
|
||||
"never": "Nekad"
|
||||
},
|
||||
"unit": {
|
||||
"speed": {
|
||||
@@ -107,7 +108,8 @@
|
||||
"show": "Rādīt {{item}}",
|
||||
"ID": "ID",
|
||||
"none": "Nav",
|
||||
"all": "Viss"
|
||||
"all": "Viss",
|
||||
"other": "Cits"
|
||||
},
|
||||
"list": {
|
||||
"two": "{{0}} un {{1}}",
|
||||
|
||||
@@ -10,7 +10,8 @@
|
||||
"embeddingsReindexing": {
|
||||
"context": "Meklēšana būs pieejama pēc tam, kad būs pabeigta izsekoto objektu atkārtota indeksēšana.",
|
||||
"startingUp": "Notiek palaišana…",
|
||||
"estimatedTime": "Paredzamais atlikušais laiks:"
|
||||
"estimatedTime": "Paredzamais atlikušais laiks:",
|
||||
"finishingShortly": "Drīz pabeigs"
|
||||
}
|
||||
},
|
||||
"itemMenu": {
|
||||
|
||||
@@ -2,7 +2,8 @@
|
||||
"description": {
|
||||
"addFace": "Pievienojiet savai seju bibliotēkai jaunu kolekciju, augšupielādējot savu pirmo attēlu.",
|
||||
"placeholder": "Ievadi kolekcijas nosaukumu",
|
||||
"invalidName": "Nederīgs nosaukums. Nosaukumi drīkst saturēt tikai burtus, ciparus, atstarpes, apostrofus, pasvītras un defises."
|
||||
"invalidName": "Nederīgs nosaukums. Nosaukumi drīkst saturēt tikai burtus, ciparus, atstarpes, apostrofus, pasvītras un defises.",
|
||||
"nameCannotContainHash": "Vārds nedrīkst saturēt #."
|
||||
},
|
||||
"details": {
|
||||
"timestamp": "Laika zīmogs",
|
||||
|
||||
@@ -22,7 +22,161 @@
|
||||
"nameLength": "Kameras nosaukums nedrīkst būt garāks par 64 simboliem",
|
||||
"invalidCharacters": "Kameras nosaukumā ir neatļauti simboli",
|
||||
"nameExists": "Kameras nosaukums jau pastāv"
|
||||
},
|
||||
"onvifPort": "ONVIF Ports",
|
||||
"port": "Ports"
|
||||
},
|
||||
"title": "Pievienot Kameru",
|
||||
"testResultLabels": {
|
||||
"audio": "Audio",
|
||||
"video": "Video",
|
||||
"resolution": "Izšķirtspēja",
|
||||
"fps": "FSP"
|
||||
},
|
||||
"save": {
|
||||
"failure": "Kļūda saglabājot {{cameraName}}."
|
||||
},
|
||||
"steps": {
|
||||
"nameAndConnection": "Vārds un savienojums"
|
||||
},
|
||||
"step2": {
|
||||
"retry": "Atkārtot",
|
||||
"connected": "Savienots"
|
||||
},
|
||||
"step3": {
|
||||
"quality": "Kvalitāte",
|
||||
"resolution": "Izšķirtspēja",
|
||||
"selectQuality": "Izvēlies kvalitāti",
|
||||
"roleLabels": {
|
||||
"audio": "Audio"
|
||||
},
|
||||
"testStream": "Pārbaudīt Savienojumu",
|
||||
"connected": "Savienots",
|
||||
"notConnected": "Nav Savienots",
|
||||
"testFailedTitle": "Tests Neizdevās"
|
||||
},
|
||||
"step4": {
|
||||
"connectStream": "Savienot",
|
||||
"connectingStream": "Savienojas",
|
||||
"failed": "Neizdevās",
|
||||
"roles": "Lomas",
|
||||
"error": "Kļūda"
|
||||
}
|
||||
},
|
||||
"menu": {
|
||||
"users": "Lietotāji",
|
||||
"roles": "Lomas",
|
||||
"frigateplus": "Frigate+",
|
||||
"notifications": "Paziņojumi",
|
||||
"triggers": "Trigeri"
|
||||
},
|
||||
"cameraSetting": {
|
||||
"camera": "Kamera"
|
||||
},
|
||||
"dialog": {
|
||||
"unsavedChanges": {
|
||||
"title": "Tev ir nesaglabātas izmaiņas.",
|
||||
"desc": "Vai vēlies saglabāt izmaiņas pirms turpini?"
|
||||
}
|
||||
},
|
||||
"general": {
|
||||
"liveDashboard": {
|
||||
"displayCameraNames": {
|
||||
"label": "Vienmēr rādīt kameras nosaukumus"
|
||||
}
|
||||
},
|
||||
"calendar": {
|
||||
"title": "Kalendārs",
|
||||
"firstWeekday": {
|
||||
"label": "Nedēļas pirmā diena",
|
||||
"sunday": "Svētdiena",
|
||||
"monday": "Pirmdiena"
|
||||
}
|
||||
}
|
||||
},
|
||||
"enrichments": {
|
||||
"semanticSearch": {
|
||||
"reindexNow": {
|
||||
"confirmButton": "Pārindeksēt",
|
||||
"label": "Pārindeksēt tagad",
|
||||
"confirmTitle": "Apstiprināt Pārindeksāciju",
|
||||
"alreadyInProgress": "Pārindeksācija jau notiek."
|
||||
},
|
||||
"modelSize": {
|
||||
"small": {
|
||||
"title": "mazs"
|
||||
},
|
||||
"large": {
|
||||
"title": "liels"
|
||||
},
|
||||
"label": "Modeļa izmērs"
|
||||
}
|
||||
},
|
||||
"birdClassification": {
|
||||
"title": "Putnu klasifikācija"
|
||||
},
|
||||
"faceRecognition": {
|
||||
"title": "Sejas Atpazīšana",
|
||||
"modelSize": {
|
||||
"label": "Modeļa izmērs",
|
||||
"small": {
|
||||
"title": "mazs"
|
||||
},
|
||||
"large": {
|
||||
"title": "liels"
|
||||
}
|
||||
}
|
||||
},
|
||||
"licensePlateRecognition": {
|
||||
"title": "Auto numura zīmes atpazīšana"
|
||||
},
|
||||
"toast": {
|
||||
"error": "Neizdevās saglabāt konfigurācijas izmaiņas: {{errorMessage}}"
|
||||
}
|
||||
},
|
||||
"cameraManagement": {
|
||||
"addCamera": "Pievienot Jaunu Kameru",
|
||||
"selectCamera": "Izvēlēties Kameru",
|
||||
"cameraConfig": {
|
||||
"add": "Pievienot Kameru",
|
||||
"edit": "Labot Kameru",
|
||||
"name": "Kameras Vārds"
|
||||
}
|
||||
},
|
||||
"triggers": {
|
||||
"wizard": {
|
||||
"steps": {
|
||||
"nameAndType": "Vārds un Tips"
|
||||
}
|
||||
},
|
||||
"dialog": {
|
||||
"form": {
|
||||
"name": {
|
||||
"title": "Vārds"
|
||||
}
|
||||
}
|
||||
},
|
||||
"table": {
|
||||
"edit": "Labot",
|
||||
"name": "Vārds",
|
||||
"type": "Tips",
|
||||
"content": "Saturs"
|
||||
}
|
||||
},
|
||||
"frigatePlus": {
|
||||
"modelInfo": {
|
||||
"cameras": "Kameras"
|
||||
},
|
||||
"snapshotConfig": {
|
||||
"table": {
|
||||
"camera": "Kamera"
|
||||
}
|
||||
}
|
||||
},
|
||||
"notification": {
|
||||
"title": "Paziņojumi",
|
||||
"cameras": {
|
||||
"title": "Kameras"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -25,5 +25,6 @@
|
||||
"object_description": "Objekta apraksts",
|
||||
"object_description_events_per_second": "Objekta apraksts"
|
||||
}
|
||||
}
|
||||
},
|
||||
"title": "Sistēma"
|
||||
}
|
||||
|
||||
@@ -277,6 +277,11 @@
|
||||
},
|
||||
"error": {
|
||||
"mustBeFinished": "Tegningen av polygonet må fullføres før lagring."
|
||||
},
|
||||
"type": {
|
||||
"zone": "sone",
|
||||
"motion_mask": "bevegelsesmaske",
|
||||
"object_mask": "objektmaske"
|
||||
}
|
||||
},
|
||||
"inertia": {
|
||||
|
||||
@@ -59,7 +59,7 @@
|
||||
"second_other": "{{time}} seconden",
|
||||
"formattedTimestampHourMinute": {
|
||||
"24hour": "HH:mm",
|
||||
"12hour": "HH:mm"
|
||||
"12hour": "h:mm aaa"
|
||||
},
|
||||
"formattedTimestampMonthDayYearHourMinute": {
|
||||
"12hour": "d MMM yyyy, HH:mm",
|
||||
@@ -71,7 +71,7 @@
|
||||
"24hour": "dd-MM-yy-HH-mm-ss"
|
||||
},
|
||||
"formattedTimestampHourMinuteSecond": {
|
||||
"12hour": "HH:mm:ss",
|
||||
"12hour": "h:mm:ss aaa",
|
||||
"24hour": "HH:mm:ss"
|
||||
},
|
||||
"formattedTimestampMonthDayHourMinute": {
|
||||
@@ -202,7 +202,8 @@
|
||||
"bg": "Български (Bulgaars)",
|
||||
"gl": "Galego (Galicisch)",
|
||||
"id": "Bahasa Indonesia (Indonesisch)",
|
||||
"ur": "اردو (Urdu)"
|
||||
"ur": "اردو (Urdu)",
|
||||
"hr": "Hrvatski (Kroatisch)"
|
||||
},
|
||||
"darkMode": {
|
||||
"label": "Donkere modus",
|
||||
|
||||
@@ -6,7 +6,8 @@
|
||||
"title": "Frigate wordt opnieuw gestart",
|
||||
"button": "Forceer herladen nu",
|
||||
"content": "Deze pagina zal herladen in {{countdown}} seconden."
|
||||
}
|
||||
},
|
||||
"description": "Dit zal Frigate kort stoppen terwijl het opnieuw opstart."
|
||||
},
|
||||
"explore": {
|
||||
"plus": {
|
||||
|
||||
@@ -14,7 +14,8 @@
|
||||
"description": {
|
||||
"placeholder": "Voer een naam in voor deze verzameling",
|
||||
"addFace": "Voeg een nieuwe collectie toe aan de gezichtenbibliotheek door je eerste afbeelding te uploaden.",
|
||||
"invalidName": "Ongeldige naam. Namen mogen alleen letters, cijfers, spaties, apostroffen, underscores en koppeltekens bevatten."
|
||||
"invalidName": "Ongeldige naam. Namen mogen alleen letters, cijfers, spaties, apostroffen, underscores en koppeltekens bevatten.",
|
||||
"nameCannotContainHash": "De naam mag geen # bevatten."
|
||||
},
|
||||
"train": {
|
||||
"title": "Recente herkenningen",
|
||||
|
||||
@@ -287,6 +287,11 @@
|
||||
},
|
||||
"reset": {
|
||||
"label": "Alle punten wissen"
|
||||
},
|
||||
"type": {
|
||||
"zone": "zone",
|
||||
"motion_mask": "bewegingsmasker",
|
||||
"object_mask": "objectmasker"
|
||||
}
|
||||
},
|
||||
"speed": {
|
||||
@@ -546,7 +551,7 @@
|
||||
"hide": "Wachtwoord verbergen",
|
||||
"requirements": {
|
||||
"title": "Wachtwoordvereisten:",
|
||||
"length": "Minimaal 8 tekens",
|
||||
"length": "Minimaal 12 tekens",
|
||||
"uppercase": "Minimaal één hoofdletter",
|
||||
"digit": "Minimaal één cijfer",
|
||||
"special": "Minimaal één speciaal teken (!@#$%^&*(),.?\":{}|<>)"
|
||||
|
||||
@@ -446,8 +446,8 @@
|
||||
"outside": "Na zewnątrz",
|
||||
"chird": "Child",
|
||||
"change_ringing": "Zmienny dzwonek",
|
||||
"shofar": "Shofar",
|
||||
"trickle": "Trickle",
|
||||
"shofar": "Szofar",
|
||||
"trickle": "Spływanie",
|
||||
"gush": "Wylew",
|
||||
"fill": "Napełnianie",
|
||||
"sonar": "Sonar",
|
||||
|
||||
@@ -6,7 +6,8 @@
|
||||
"title": "Frigate uruchamia się ponownie",
|
||||
"content": "Strona odświeży się za {{countdown}} sekund.",
|
||||
"button": "Wymuś odświeżenie"
|
||||
}
|
||||
},
|
||||
"description": "Spowoduje to chwilowe zatrzymanie Frigate i ponowne uruchomienie."
|
||||
},
|
||||
"explore": {
|
||||
"plus": {
|
||||
|
||||
@@ -278,6 +278,11 @@
|
||||
},
|
||||
"error": {
|
||||
"mustBeFinished": "Rysowanie wielokąta musi być zakończone przed zapisaniem."
|
||||
},
|
||||
"type": {
|
||||
"object_mask": "maska obiektowa",
|
||||
"motion_mask": "maska ruchu",
|
||||
"zone": "strefa"
|
||||
}
|
||||
},
|
||||
"speed": {
|
||||
@@ -787,9 +792,9 @@
|
||||
"createRole": "Utworzono rolę {{role}}",
|
||||
"updateCameras": "Zaktualizowano kamery dla roli {{role}}",
|
||||
"deleteRole": "Rola {{role}} została usunięta",
|
||||
"userRolesUpdated_one": "{{count}} użytkowników przypisanych do tej roli zostało zaktualizowanych do roli 'viewer', która ma dostęp do wszystkich kamer.",
|
||||
"userRolesUpdated_few": "",
|
||||
"userRolesUpdated_many": ""
|
||||
"userRolesUpdated_one": "{{count}} użytkownik przypisany do tej roli został zaktualizowany do roli 'viewer', która ma dostęp do wszystkich kamer.",
|
||||
"userRolesUpdated_few": "{{count}} użytkowników przypisanych do tej roli zostało zaktualizowanych do roli 'viewer', która ma dostęp do wszystkich kamer.",
|
||||
"userRolesUpdated_many": "{{count}} użytkowników przypisanych do tej roli zostało zaktualizowanych do roli 'viewer', która ma dostęp do wszystkich kamer."
|
||||
},
|
||||
"error": {
|
||||
"createRoleFailed": "Nie udało się utworzyć roli: {{errorMessage}}",
|
||||
|
||||
@@ -6,7 +6,8 @@
|
||||
"title": "Frigate repornește",
|
||||
"content": "Această pagină se va reâncărca automat în {{countdown}} secunde.",
|
||||
"button": "Forțează acum reîncărcarea"
|
||||
}
|
||||
},
|
||||
"description": "Acest lucru va opri temporar Frigate în timpul repornirii."
|
||||
},
|
||||
"explore": {
|
||||
"plus": {
|
||||
|
||||
@@ -382,6 +382,11 @@
|
||||
},
|
||||
"error": {
|
||||
"mustBeFinished": "Desenul poligonului trebuie finalizat înainte de salvare."
|
||||
},
|
||||
"type": {
|
||||
"zone": "zonă",
|
||||
"motion_mask": "mască de mișcare",
|
||||
"object_mask": "mască de obiect"
|
||||
}
|
||||
},
|
||||
"distance": {
|
||||
|
||||
@@ -231,7 +231,7 @@
|
||||
"music_of_asia": "Ázijská hudba",
|
||||
"carnatic_music": "Karnatická hudba",
|
||||
"music_of_bollywood": "Hudba z Bollywoodu",
|
||||
"ska": "SKA",
|
||||
"ska": "Ska",
|
||||
"traditional_music": "Tradičná hudba",
|
||||
"independent_music": "Nezávislá hudba",
|
||||
"song": "Pieseň",
|
||||
|
||||
@@ -81,7 +81,8 @@
|
||||
},
|
||||
"inProgress": "Spracováva sa",
|
||||
"invalidStartTime": "Neplatný čas štartu",
|
||||
"invalidEndTime": "Neplatný čas ukončenia"
|
||||
"invalidEndTime": "Neplatný čas ukončenia",
|
||||
"never": "Nikdy"
|
||||
},
|
||||
"selectItem": "Vyberte {{item}}",
|
||||
"unit": {
|
||||
@@ -98,8 +99,8 @@
|
||||
"mbps": "MB/s",
|
||||
"gbps": "GB/s",
|
||||
"kbph": "kb/hour",
|
||||
"mbph": "MB/hour",
|
||||
"gbph": "GB/hour"
|
||||
"mbph": "MB/hodinu",
|
||||
"gbph": "GB/hodinu"
|
||||
}
|
||||
},
|
||||
"readTheDocumentation": "Prečítajte si dokumentáciu",
|
||||
@@ -109,7 +110,8 @@
|
||||
"show": "Zobraziť {{item}}",
|
||||
"ID": "ID",
|
||||
"none": "None",
|
||||
"all": "Všetko"
|
||||
"all": "Všetko",
|
||||
"other": "Iné"
|
||||
},
|
||||
"button": {
|
||||
"apply": "Použiť",
|
||||
@@ -199,7 +201,8 @@
|
||||
"ur": "اردو (Urdu)",
|
||||
"withSystem": {
|
||||
"label": "Použiť systémové nastavenia pre jazyk"
|
||||
}
|
||||
},
|
||||
"hr": "Hrvatski (Croatian)"
|
||||
},
|
||||
"restart": "Reštartovať Frigate",
|
||||
"live": {
|
||||
|
||||
@@ -128,9 +128,13 @@
|
||||
"loadFailed": "Nepodarilo sa načítať rozpoznané evidenčné čísla vozidiel.",
|
||||
"loading": "Načítavajú sa rozpoznané evidenčné čísla…",
|
||||
"placeholder": "Zadajte text pre vyhľadávanie evidenčných čísel…",
|
||||
"noLicensePlatesFound": "Neboli nájdené SPZ.",
|
||||
"noLicensePlatesFound": "Neboli nájdené evidenčné čísla vozidiel.",
|
||||
"selectPlatesFromList": "Vyberte jeden alebo viacero tanierov zo zoznamu.",
|
||||
"selectAll": "Vybrať všetko",
|
||||
"clearAll": "Vymazať všetko"
|
||||
},
|
||||
"attributes": {
|
||||
"label": "Klasifikačné Atribúty",
|
||||
"all": "Všetky Atribúty"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -102,7 +102,7 @@
|
||||
"waste_bin": "Odpadkový kôš",
|
||||
"on_demand": "Na požiadanie",
|
||||
"face": "Tvár",
|
||||
"license_plate": "ŠPZ",
|
||||
"license_plate": "Evidenčné Číslo Vozidla",
|
||||
"package": "Balíček",
|
||||
"bbq_grill": "Gril",
|
||||
"amazon": "Amazon",
|
||||
|
||||
@@ -1,55 +1,59 @@
|
||||
{
|
||||
"documentTitle": "Klasifikačné modely",
|
||||
"documentTitle": "Klasifikačné modely - Frigate",
|
||||
"button": {
|
||||
"deleteClassificationAttempts": "Odstrániť obrázky klasifikácie",
|
||||
"renameCategory": "Premenovať triedu",
|
||||
"deleteCategory": "Odstrániť triedu",
|
||||
"deleteImages": "Odstrániť obrázky",
|
||||
"trainModel": "Model vlaku",
|
||||
"addClassification": "Pridať klasifikáciu",
|
||||
"deleteModels": "Odstrániť modely",
|
||||
"editModel": "Editovať model"
|
||||
"deleteClassificationAttempts": "Odstrániť Obrázky Klasifikácie",
|
||||
"renameCategory": "Premenovať Triedu",
|
||||
"deleteCategory": "Odstrániť Triedu",
|
||||
"deleteImages": "Odstrániť Obrázky",
|
||||
"trainModel": "Trénovať Model",
|
||||
"addClassification": "Pridať Klasifikáciu",
|
||||
"deleteModels": "Odstrániť Modely",
|
||||
"editModel": "Upraviť Model"
|
||||
},
|
||||
"toast": {
|
||||
"success": {
|
||||
"deletedCategory": "Vymazaná trieda",
|
||||
"deletedImage": "Vymazané obrázky",
|
||||
"deletedCategory": "Vymazaná Trieda",
|
||||
"deletedImage": "Vymazané Obrázky",
|
||||
"categorizedImage": "Obrázok bol úspešne klasifikovaný",
|
||||
"trainedModel": "Úspešne vyškolený model.",
|
||||
"trainingModel": "Úspešne spustený modelový tréning.",
|
||||
"deletedModel_one": "Úspešne zmazané {{count}} model (y)",
|
||||
"deletedModel_few": "",
|
||||
"deletedModel_other": "",
|
||||
"trainingModel": "Úspešne spustené trénovanie modelu.",
|
||||
"deletedModel_one": "Úspešne zmazaný {{count}} model",
|
||||
"deletedModel_few": "Úspešne zmazané {{count}} modely",
|
||||
"deletedModel_other": "Úspešne zmazaných {{count}} modelov",
|
||||
"updatedModel": "Úspešne zmenená konfigurácia modelu",
|
||||
"renamedCategory": "Úspešne premenovaná trieda na"
|
||||
"renamedCategory": "Úspešne premenovaná trieda na {{name}}"
|
||||
},
|
||||
"error": {
|
||||
"deleteImageFailed": "Nepodarilo sa odstrániť: {{errorMessage}}",
|
||||
"deleteCategoryFailed": "Nepodarilo sa odstrániť triedu: {{errorMessage}}",
|
||||
"categorizeFailed": "Nepodarilo sa kategorizovať obrázok: {{errorMessage}}",
|
||||
"trainingFailed": "Nepodarilo sa spustiť trénovanie modelu: {{errorMessage}}",
|
||||
"trainingFailed": "Trénovanie modelu zlyhalo. Skontroluj záznamy Frigate pre viac podrobností.",
|
||||
"deleteModelFailed": "Nepodarilo sa odstrániť model: {{errorMessage}}",
|
||||
"trainingFailedToStart": "Neuspešny štart trenovania modelu:",
|
||||
"updateModelFailed": "Chyba pri úprave modelu:",
|
||||
"renameCategoryFailed": "Chyba pri premenovani triedy:"
|
||||
"trainingFailedToStart": "Neuspešné spustenie trénovania modelu: {{errorMessage}}",
|
||||
"updateModelFailed": "Chyba pri aktualizácii modelu: {{errorMessage}}",
|
||||
"renameCategoryFailed": "Chyba pri premenovaní triedy: {{errorMessage}}"
|
||||
}
|
||||
},
|
||||
"deleteCategory": {
|
||||
"title": "Odstrániť triedu",
|
||||
"title": "Odstrániť Triedu",
|
||||
"desc": "Naozaj chcete odstrániť triedu {{name}}? Týmto sa natrvalo odstránia všetky súvisiace obrázky a bude potrebné pretrénovať model.",
|
||||
"minClassesTitle": "Nemožete zmazať triedu",
|
||||
"minClassesDesc": "Klasifikačný model musí mať aspoň 2 triedy. Pred odstránením tejto triedy pridajte ďalšiu triedu."
|
||||
},
|
||||
"deleteDatasetImages": {
|
||||
"title": "Odstrániť obrázky množiny údajov",
|
||||
"desc": "Naozaj chcete odstrániť {{count}} obrázkov z {{dataset}}? Túto akciu nie je možné vrátiť späť a bude si vyžadovať pretrénovanie modelu."
|
||||
"desc_one": "Naozaj chcete odstrániť {{count}} obrázok z {{dataset}}? Túto akciu nie je možné vrátiť späť a bude si vyžadovať pretrénovanie modelu.",
|
||||
"desc_few": "Naozaj chcete odstrániť {{count}} obrázky z {{dataset}}? Túto akciu nie je možné vrátiť späť a bude si vyžadovať pretrénovanie modelu.",
|
||||
"desc_other": "Naozaj chcete odstrániť {{count}} obrázkov z {{dataset}}? Túto akciu nie je možné vrátiť späť a bude si vyžadovať pretrénovanie modelu."
|
||||
},
|
||||
"deleteTrainImages": {
|
||||
"title": "Odstrániť obrázky vlakov",
|
||||
"desc": "Naozaj chcete odstrániť {{count}} obrázkov? Túto akciu nie je možné vrátiť späť."
|
||||
"title": "Odstrániť Trénovacie Obrázky",
|
||||
"desc_one": "Naozaj chcete odstrániť {{count}} obrázok? Túto akciu nie je možné vrátiť späť.",
|
||||
"desc_few": "Naozaj chcete odstrániť {{count}} obrázky? Túto akciu nie je možné vrátiť späť.",
|
||||
"desc_other": "Naozaj chcete odstrániť {{count}} obrázkov? Túto akciu nie je možné vrátiť späť."
|
||||
},
|
||||
"renameCategory": {
|
||||
"title": "Premenovať triedu",
|
||||
"title": "Premenovať Triedu",
|
||||
"desc": "Zadajte nový názov pre {{name}}. Budete musieť model pretrénovať, aby sa zmena názvu prejavila."
|
||||
},
|
||||
"description": {
|
||||
@@ -112,7 +116,8 @@
|
||||
"classesUnique": "Názvy tried musia byť jedinečné",
|
||||
"stateRequiresTwoClasses": "Modely štátov vyžadujú aspoň 2 triedy",
|
||||
"objectLabelRequired": "Vyberte označenie objektu",
|
||||
"objectTypeRequired": "Vyberte typ klasifikácie"
|
||||
"objectTypeRequired": "Vyberte typ klasifikácie",
|
||||
"noneNotAllowed": "Trieda 'none' nie je povolená"
|
||||
},
|
||||
"states": "Štátov"
|
||||
},
|
||||
@@ -151,32 +156,37 @@
|
||||
"allImagesRequired_other": "Uveďte všetky obrázky. {{count}} obrázkov zostávajú.",
|
||||
"modelCreated": "Model vytvorený úspešne. Použite aktuálne klasifikácie na pridanie obrázkov pre chýbajúce stavy a nasledne dajte trénovať model.",
|
||||
"missingStatesWarning": {
|
||||
"title": "Chýbajúce príklady stavov"
|
||||
"title": "Chýbajúce príklady stavov",
|
||||
"description": "Odporúča sa vybrať príklady pre všetky stavy pre dosiahnutie najlepších výsledkov. Môžeš pokračovať bez zvolenia všetkých stavov, ale model nebude natrénovaný pokiaľ všetky stavy nemajú obrázky. Po pokračovaní použi náhľad Nedávne Klasifikácie na klasifikovanie obrázkov pre chýbajúce stavy, potom natrénuj model."
|
||||
}
|
||||
}
|
||||
},
|
||||
"deleteModel": {
|
||||
"title": "Odstrániť klasifikačný model",
|
||||
"single": "Ste si istí, že chcete odstrániť {{name}}? To bude trvalo odstrániť všetky súvisiace údaje vrátane obrázkov a vzdelávacích údajov. Táto akcia nemôže byť neporušená.",
|
||||
"desc": "Ste si istí, že chcete odstrániť {{count}} model (y)? To bude trvalo odstrániť všetky súvisiace údaje vrátane obrázkov a vzdelávacích údajov. Táto akcia nemôže byť neporušená."
|
||||
"desc_one": "Ste si istí, že chcete odstrániť {{count}} model? To bude trvalo odstrániť všetky súvisiace údaje vrátane obrázkov a trénovacích údajov. Táto akcia nemôže byť neporušená.",
|
||||
"desc_few": "Ste si istí, že chcete odstrániť {{count}} modely? To bude trvalo odstrániť všetky súvisiace údaje vrátane obrázkov a trénovacích údajov. Táto akcia nemôže byť neporušená.",
|
||||
"desc_other": "Ste si istí, že chcete odstrániť {{count}} modelov? To bude trvalo odstrániť všetky súvisiace údaje vrátane obrázkov a trénovacích údajov. Táto akcia nemôže byť neporušená."
|
||||
},
|
||||
"menu": {
|
||||
"objects": "Objekty",
|
||||
"states": "Štátov"
|
||||
},
|
||||
"details": {
|
||||
"scoreInfo": "Skóre predstavuje priemernú istotu klasifikácie naprieč detekciami tohoto objektu."
|
||||
"scoreInfo": "Skóre predstavuje priemernú istotu klasifikácie naprieč všetkými detekciami tohoto objektu.",
|
||||
"none": "Žiadny",
|
||||
"unknown": "Neznámy"
|
||||
},
|
||||
"tooltip": {
|
||||
"trainingInProgress": "Model sa aktuálne trénuje",
|
||||
"noNewImages": "Žiadne nové obrázky na trénovanie. Najskor klasifikuj nové obrazky do datasetu.",
|
||||
"noNewImages": "Žiadne nové obrázky na trénovanie. Najskôr klasifikuj nové obrazky do datasetu.",
|
||||
"noChanges": "Žiadne zmeny v datasete od posledného tréningu.",
|
||||
"modelNotReady": "Model nie je pripravený na trénovanie."
|
||||
"modelNotReady": "Model nie je pripravený na trénovanie"
|
||||
},
|
||||
"edit": {
|
||||
"title": "Nastavenie modelu",
|
||||
"descriptionState": "Upravte triedy pre tento model klasifikácie. Zmeny budú vyžadovať pretrénovanie modelu.",
|
||||
"descriptionObject": "Upravte typ objektu a typ klasifikácie pre tento model klasifikácie.",
|
||||
"title": "Nastavenie Klasifikácie Modelu",
|
||||
"descriptionState": "Upravte triedy pre tento model stavovej klasifikácie. Zmeny budú vyžadovať pretrénovanie modelu.",
|
||||
"descriptionObject": "Upravte typ objektu a typ klasifikácie pre tento objektový model klasifikácie.",
|
||||
"stateClassesInfo": "Poznámka: Zmena tried stavov vyžaduje pretrénovanie modelu s aktualizovanými triedami."
|
||||
}
|
||||
}
|
||||
|
||||
@@ -283,7 +283,7 @@
|
||||
"millisecondsToOffset": "Milisekundy na posunutie detekcie anotácií. <em>Predvolené: 0</em>",
|
||||
"tips": "TIP: Predstavte si klip udalosti, v ktorom osoba kráča zľava doprava. Ak je ohraničujúci rámček časovej osi udalosti stále naľavo od osoby, hodnota by sa mala znížiť. Podobne, ak osoba kráča zľava doprava a ohraničujúci rámček je stále pred ňou, hodnota by sa mala zvýšiť.",
|
||||
"toast": {
|
||||
"success": "Odsadenie anotácie pre {{camera}} bolo uložené do konfiguračného súboru. Reštartujte Frigate, aby sa zmeny prejavili."
|
||||
"success": "Odsadenie anotácie pre {{camera}} bolo uložené do konfiguračného súboru."
|
||||
}
|
||||
}
|
||||
},
|
||||
|
||||
@@ -11,7 +11,7 @@
|
||||
"face": "Detail tváre",
|
||||
"faceDesc": "Podrobnosti o sledovanom objekte, ktorý vytvoril túto tvár",
|
||||
"timestamp": "Časová pečiatka",
|
||||
"unknown": "Neznáme"
|
||||
"unknown": "Neznámy"
|
||||
},
|
||||
"documentTitle": "Knižnica tvárí",
|
||||
"uploadFaceImage": {
|
||||
|
||||
@@ -146,7 +146,7 @@
|
||||
}
|
||||
},
|
||||
"licensePlateRecognition": {
|
||||
"title": "Rozpoznávanie ŠPZ",
|
||||
"title": "Rozpoznávanie Evidenčných Čísel Vozidiel",
|
||||
"desc": "Frigate dokáže rozpoznávať evidenčné čísla vozidiel a automaticky pridávať detekované znaky do poľa recognized_license_plate alebo známy názov ako podradený štítok k objektom typu car. Bežným prípadom použitia môže byť čítanie evidenčných čísel áut vchádzajúcich na príjazdovú cestu alebo áut prechádzajúcich po ulici."
|
||||
},
|
||||
"restart_required": "Vyžaduje sa reštart (zmenené nastavenia obohatenia)",
|
||||
@@ -300,7 +300,7 @@
|
||||
"name": {
|
||||
"title": "Meno",
|
||||
"inputPlaceHolder": "Zadajte meno…",
|
||||
"tips": "Názov musí mať aspoň 2 znaky, musí mať aspoň jedno písmeno a nesmie byť názvom kamery alebo inej zóny."
|
||||
"tips": "Názov musí mať aspoň 2 znaky, musí mať aspoň jedno písmeno a nesmie byť názvom kamery alebo inej zóny v tejto kamere."
|
||||
},
|
||||
"inertia": {
|
||||
"title": "Zotrvačnosť",
|
||||
@@ -334,7 +334,7 @@
|
||||
}
|
||||
},
|
||||
"toast": {
|
||||
"success": "Zóna {{zoneName}} bola uložená. Reštartujte Frigate pre aplikovanie zmien."
|
||||
"success": "Zóna {{zoneName}} bola uložená."
|
||||
},
|
||||
"add": "Pridať zónu",
|
||||
"edit": "Upraviť zónu",
|
||||
@@ -364,8 +364,8 @@
|
||||
},
|
||||
"toast": {
|
||||
"success": {
|
||||
"title": "{{polygonName}} bol uložený. Reštartujte Frigate pre aplikovanie zmien.",
|
||||
"noName": "Maska Detekcia pohybu bola uložená. Reštartujte Frigate pre aplikovanie zmien."
|
||||
"title": "{{polygonName}} bol uložený.",
|
||||
"noName": "Maska detekcie pohybu bola uložená."
|
||||
}
|
||||
}
|
||||
},
|
||||
@@ -390,8 +390,8 @@
|
||||
},
|
||||
"toast": {
|
||||
"success": {
|
||||
"title": "{{polygonName}} bol uložený. Reštartujte Frigate pre aplikovanie zmien.",
|
||||
"noName": "Maska Objektu bola uložená. Reštartujte Frigate pre aplikovanie zmien."
|
||||
"title": "{{polygonName}} bol uložený.",
|
||||
"noName": "Maska Objektu bola uložená."
|
||||
}
|
||||
}
|
||||
},
|
||||
@@ -797,11 +797,11 @@
|
||||
"title": "Nastavenie recenzie kamery",
|
||||
"object_descriptions": {
|
||||
"title": "Generatívne popisy objektov umelej inteligencie",
|
||||
"desc": "Dočasne umožňujú/disable Generovať opisy objektu AI pre tento fotoaparát. Keď je zakázané, AI vygenerované popisy nebudú požiadané o sledovanie objektov na tomto fotoaparáte."
|
||||
"desc": "Dočasne povoľ/zakáž AI vygenerované popisy objektov pre túto kameru pokiaľ nebude Frigate reštartovaná. Keď je zakázané, AI vygenerované popisy nebudú žiadané pre sledované objekty na tejto kamere."
|
||||
},
|
||||
"review_descriptions": {
|
||||
"title": "Popisy generatívnej umelej inteligencie",
|
||||
"desc": "Dočasne povoliť/disable Genive AI opisy pre tento fotoaparát. Keď je zakázané, AI vygenerované popisy nebudú požiadané o preskúmanie položiek na tomto fotoaparáte."
|
||||
"desc": "Dočasne povoľ/zakáž AI vygenerované popisy revízií pre túto kameru pokiaľ nebude Frigate reštartovaná. Keď je zakázané, AI vygenerované popisy nebudú žiadané pre sledované objekty na tejto kamere."
|
||||
},
|
||||
"review": {
|
||||
"title": "Recenzia",
|
||||
@@ -837,7 +837,7 @@
|
||||
"desc": "Spravovať používateľské účty tejto inštancie Frigate."
|
||||
},
|
||||
"addUser": "Pridať používateľa",
|
||||
"updatePassword": "Aktualizovať heslo",
|
||||
"updatePassword": "Obnoviť Heslo",
|
||||
"toast": {
|
||||
"success": {
|
||||
"createUser": "Užívateľ {{user}} úspešne vytvorený",
|
||||
@@ -858,7 +858,7 @@
|
||||
"role": "Rola",
|
||||
"noUsers": "Nenašli sa žiadni používatelia.",
|
||||
"changeRole": "Zmeniť rolu používateľa",
|
||||
"password": "Heslo",
|
||||
"password": "Resetovať Heslo",
|
||||
"deleteUser": "Odstrániť používateľa"
|
||||
},
|
||||
"dialog": {
|
||||
@@ -947,9 +947,9 @@
|
||||
"createRole": "Rola {{role}} bola úspešne vytvorená",
|
||||
"updateCameras": "Kamery aktualizované pre rolu {{role}}",
|
||||
"deleteRole": "Rola {{role}} bola úspešne odstránená",
|
||||
"userRolesUpdated_one": "",
|
||||
"userRolesUpdated_few": "",
|
||||
"userRolesUpdated_other": "{{count}} užívatelia priradené tejto úlohe boli aktualizované pre \"viewer\", ktorý má prístup ku všetkým kamerám."
|
||||
"userRolesUpdated_one": "{{count}} užívateľ priradený tejto úlohe bol aktualizovaný na \"viewer\", ktorý má prístup ku všetkým kamerám.",
|
||||
"userRolesUpdated_few": "{{count}} užívatelia priradení tejto úlohe boli aktualizovaní na \"viewer\", ktorý má prístup ku všetkým kamerám.",
|
||||
"userRolesUpdated_other": "{{count}} užívatelia priradení tejto úlohe boli aktualizovaní na \"viewer\", ktorý má prístup ku všetkým kamerám."
|
||||
},
|
||||
"error": {
|
||||
"createRoleFailed": "Nepodarilo sa vytvoriť rolu: {{errorMessage}}",
|
||||
|
||||
@@ -86,7 +86,13 @@
|
||||
"otherProcesses": {
|
||||
"title": "Iné procesy",
|
||||
"processCpuUsage": "Proces využitia CPU",
|
||||
"processMemoryUsage": "Procesné využitie pamäte"
|
||||
"processMemoryUsage": "Procesné využitie pamäte",
|
||||
"series": {
|
||||
"go2rtc": "go2rtc",
|
||||
"recording": "nahrávka",
|
||||
"review_segment": "skontrolovať segment",
|
||||
"audio_detector": "zvukový detektor"
|
||||
}
|
||||
}
|
||||
},
|
||||
"storage": {
|
||||
@@ -147,7 +153,7 @@
|
||||
"overallFramesPerSecond": "celkový počet snímok za sekundu",
|
||||
"overallDetectionsPerSecond": "celkový počet detekcií za sekundu",
|
||||
"overallSkippedDetectionsPerSecond": "celkový počet vynechaných detekcií za sekundu",
|
||||
"cameraFramesPerSecond": "{{camName}}snimky za sekundu",
|
||||
"cameraFramesPerSecond": "{{camName}} snímky za sekundu",
|
||||
"cameraDetectionsPerSecond": "{{camName}}detekcie za sekundu",
|
||||
"cameraSkippedDetectionsPerSecond": "{{camName}} vynechaných detekcií za sekundu"
|
||||
},
|
||||
@@ -178,11 +184,11 @@
|
||||
"image_embedding": "Vkladanie obrázkov",
|
||||
"text_embedding": "Vkladanie textu",
|
||||
"face_recognition": "Rozpoznávanie tváre",
|
||||
"plate_recognition": "Rozpoznávanie ŠPZ",
|
||||
"plate_recognition": "Rozpoznávanie EČV",
|
||||
"image_embedding_speed": "Rýchlosť vkladania obrázkov",
|
||||
"face_embedding_speed": "Rýchlosť vkladania tváre",
|
||||
"face_recognition_speed": "Rýchlosť rozpoznávania tváre",
|
||||
"plate_recognition_speed": "Rýchlosť rozpoznávania ŠPZ",
|
||||
"plate_recognition_speed": "Rýchlosť rozpoznávania EČV",
|
||||
"text_embedding_speed": "Rýchlosť vkladania textu",
|
||||
"yolov9_plate_detection_speed": "YOLOv9 rýchlosť detekcie ŠPZ",
|
||||
"yolov9_plate_detection": "YOLOv9 Detekcia ŠPZ",
|
||||
@@ -191,7 +197,10 @@
|
||||
"review_description_events_per_second": "Popis",
|
||||
"object_description": "Popis objektu",
|
||||
"object_description_speed": "Popis objektu Rýchlosť",
|
||||
"object_description_events_per_second": "Popis objektu"
|
||||
"object_description_events_per_second": "Popis objektu",
|
||||
"classification": "{{name}} Klasifikácia",
|
||||
"classification_speed": "{{name}} Rýchlosť Klasifikácie",
|
||||
"classification_events_per_second": "{{name}} Klasifikácia Udalosti Za Sekundu"
|
||||
},
|
||||
"averageInf": "Priemerný čas inferencie"
|
||||
}
|
||||
|
||||
@@ -6,7 +6,7 @@
|
||||
"notifications": "Nastavitve obvestil - Frigate",
|
||||
"masksAndZones": "Urejevalnik mask in območij - Frigate",
|
||||
"object": "Odpravljanje napak - Frigate",
|
||||
"general": "Splošne nastavitve - Frigate",
|
||||
"general": "Nastavitve UI - Frigate",
|
||||
"frigatePlus": "Frigate+ Nastavitve - Frigate",
|
||||
"enrichments": "Nastavitve Obogatitev - Frigate",
|
||||
"motionTuner": "Nastavitev gibanja - Frigate",
|
||||
@@ -59,7 +59,7 @@
|
||||
"noCamera": "Brez Kamere"
|
||||
},
|
||||
"general": {
|
||||
"title": "Splošne Nastavitve",
|
||||
"title": "Nastavitve Uporabniškega Vmesnika",
|
||||
"liveDashboard": {
|
||||
"title": "Nadzorna plošča (v živo)",
|
||||
"automaticLiveView": {
|
||||
@@ -71,7 +71,12 @@
|
||||
"desc": "Privzeto se nedavna opozorila na nadzorni plošči predvajajo kot kratki ponavljajoči videoposnetki . To možnost onemogočite, če želite, da se v tej napravi/brskalniku prikaže samo statična slika nedavnih opozoril."
|
||||
},
|
||||
"displayCameraNames": {
|
||||
"label": "Vedno prikaži imena kamer"
|
||||
"label": "Vedno prikaži imena kamer",
|
||||
"desc": "Imena kamer vedno prikaži kot žeton v večkamernem nadzornem pogledu v živo."
|
||||
},
|
||||
"liveFallbackTimeout": {
|
||||
"label": "Časovna omejitev povratka (fallback) v live playerju",
|
||||
"desc": "Ko je visokokakovostni tok v živo kamere nedosegljiv, preklopi na način z nizko pasovno širino po toliko sekundah. Privzeto: 3."
|
||||
}
|
||||
},
|
||||
"storedLayouts": {
|
||||
@@ -112,7 +117,7 @@
|
||||
}
|
||||
},
|
||||
"enrichments": {
|
||||
"title": "Nastavitve Obogatitev",
|
||||
"title": "Nastavitve Obogatitve",
|
||||
"unsavedChanges": "Neshranjene Spremembe Nastavitev Obogatitev",
|
||||
"birdClassification": {
|
||||
"title": "Klasifikacija ptic",
|
||||
@@ -218,7 +223,8 @@
|
||||
"steps": {
|
||||
"nameAndConnection": "Ime & Zbirka",
|
||||
"streamConfiguration": "Konfiguracija pretoka",
|
||||
"validationAndTesting": "Uverjanje in testiranje"
|
||||
"validationAndTesting": "Uverjanje in testiranje",
|
||||
"probeOrSnapshot": "Preverba ali posnetek"
|
||||
},
|
||||
"save": {
|
||||
"success": "Kamera {{cameraName}} je bila uspešno shranjena.",
|
||||
@@ -269,8 +275,19 @@
|
||||
"customUrlRtspRequired": "URL-ji po meri se morajo začeti z \"rtsp://\". Za ne-RTSP pretoke kamer je potrebna ročna nastavitev.",
|
||||
"brands": {
|
||||
"reolink-rtsp": "RTSP za Reolink ni priporočen. \nV nastavitvah kamere omogočite HTTP in znova zaženite čarovnika."
|
||||
}
|
||||
}
|
||||
},
|
||||
"brandOrCustomUrlRequired": "Izberi znamko kamere z gostiteljem/IP-naslovom ali izberi 'Drugo' z lastnim URL-jem",
|
||||
"nameRequired": "Potrebno je ime kamere"
|
||||
},
|
||||
"connectionSettings": "Nastavitve povezave",
|
||||
"detectionMethod": "Način zaznavanja pretoka",
|
||||
"onvifPort": "ONVIF Vrata",
|
||||
"probeMode": "Preverba kamere",
|
||||
"manualMode": "Ročni izbor",
|
||||
"detectionMethodDescription": "Preveri kamero prek ONVIF (če je podprto), da najde URL-je tokov kamere, ali ročno izberi znamko kamere za uporabo vnaprej določenih URL-jev. Za vnos poljubnega RTSP URL-ja izberi ročni način in izberi »Drugo«.",
|
||||
"onvifPortDescription": "Za kamere ki podpirajo ONVIF, je to ponavadi 80 ali 8080.",
|
||||
"useDigestAuth": "Uporabi digest avtentikacijo",
|
||||
"useDigestAuthDescription": "Uporabi HTTP digest autentikacijo za ONVIF. Nekatere kamere lahko zahtevajo poseben uporabniški uporabnik/geslo samo za ONVIF, namesto standardnega administratorskega računa."
|
||||
},
|
||||
"step2": {
|
||||
"streamUrlPlaceholder": "rtsp://uporabniskoime:geslo@gostitelj:vrata/pot",
|
||||
@@ -303,6 +320,39 @@
|
||||
"featuresPopover": {
|
||||
"title": "Značilnosti pretoka",
|
||||
"description": "Uporabi ponovno pretakanje go2rtc, da zmanjšaš število povezav s kamero."
|
||||
},
|
||||
"description": "Preveri kamero za razpoložljive video tokove ali ročno nastavi konfiguracijo glede na izbrani način detekcije.",
|
||||
"streamDetails": "Podrobnosti toka",
|
||||
"probing": "Preveri kamere...",
|
||||
"retry": "Ponovno poskusi",
|
||||
"testing": {
|
||||
"probingMetadata": "Preverjanje metapodatkov kamere…",
|
||||
"fetchingSnapshot": "Pridobivanje posnetka kamere…"
|
||||
},
|
||||
"probeFailed": "Ni uspelo preveriti kamere: {{error}}",
|
||||
"probingDevice": "Preverjam napravo…",
|
||||
"probeSuccessful": "Preverjanje uspešno",
|
||||
"probeError": "Napaka pri preverjanju",
|
||||
"probeNoSuccess": "Preverjanje neuspešno",
|
||||
"deviceInfo": "Podatki naprave",
|
||||
"manufacturer": "Proizvajalec",
|
||||
"model": "Model",
|
||||
"firmware": "Firmware",
|
||||
"profiles": "Profili",
|
||||
"ptzSupport": "PTZ Podpora",
|
||||
"autotrackingSupport": "Podpora za samodejno sledenje",
|
||||
"presets": "Prednastavitve",
|
||||
"rtspCandidates": "RTSP Kandidati",
|
||||
"rtspCandidatesDescription": "Naslednji RTSP URL-ji so bili zaznani med preverjanjem kamere. Preizkusi povezavo, da si ogledaš metapodatke toka.",
|
||||
"noRtspCandidates": "Med preverjanjem kamere niso bili najdeni nobeni RTSP URL-ji. Vaše poverilnice so morda napačne, kamera morda ne podpira ONVIF ali pa metoda, ki se uporablja za pridobivanje RTSP URL-jev, ni podprta. Vrnite se nazaj in ročno vnesite RTSP URL.",
|
||||
"candidateStreamTitle": "Kandidat{{number}}",
|
||||
"useCandidate": "Uporabi",
|
||||
"uriCopy": "Kopiraj",
|
||||
"uriCopied": "URI kopiran v odložišče",
|
||||
"testConnection": "Preveri Povezavo",
|
||||
"toggleUriView": "Klikni za preklop na celoten prikaz URI-ja",
|
||||
"errors": {
|
||||
"hostRequired": "Zahtevan je gostitelj / IP-naslov"
|
||||
}
|
||||
},
|
||||
"step3": {
|
||||
@@ -334,7 +384,62 @@
|
||||
"videoCodecGood": "Video kodek je {{codec}}.",
|
||||
"audioCodecGood": "Audio kodek je {{codec}}.",
|
||||
"resolutionHigh": "Resolucija {{resolution}} lahko povzroči povečano porabo virov."
|
||||
},
|
||||
"streamsTitle": "Toki Kamer",
|
||||
"addStream": "Dodaj Pretok",
|
||||
"addAnotherStream": "Dodaj še en pretok",
|
||||
"streamUrl": "URL Pretoka",
|
||||
"streamUrlPlaceholder": "rtsp://uporabnik:geslo@gostitelj:vrata/pot",
|
||||
"selectStream": "Izberi Pretok",
|
||||
"searchCandidates": "Išči kandidate...",
|
||||
"noStreamFound": "Noben pretok ni bil najden",
|
||||
"url": "URL",
|
||||
"resolution": "Resolucija",
|
||||
"selectResolution": "Izberi resolucijo",
|
||||
"quality": "Kvaliteta",
|
||||
"selectQuality": "Izberi kvaliteto",
|
||||
"roleLabels": {
|
||||
"detect": "Zaznavanje predmetov",
|
||||
"record": "Snemanje",
|
||||
"audio": "Zvok"
|
||||
},
|
||||
"testStream": "Preveri Povezave",
|
||||
"testSuccess": "Test pretoka uspešen!",
|
||||
"testFailed": "Test pretoka neuspešen",
|
||||
"testFailedTitle": "Test neuspešen",
|
||||
"connected": "Povezan",
|
||||
"notConnected": "Ni povezave",
|
||||
"featuresTitle": "Zmožnosti",
|
||||
"go2rtc": "Zmanjšaj število povezav na kamero",
|
||||
"detectRoleWarning": "Vsaj en tok mora imeti vlogo »detect«, da lahko nadaljuješ.",
|
||||
"rolesPopover": {
|
||||
"title": "Vloge pretokov",
|
||||
"detect": "Glavni pretok za zaznavanje predmetov.",
|
||||
"record": "Shranjuje segmente video vira glede na nastavitve konfiguracije.",
|
||||
"audio": "Tok za detekcijo na osnovi zvoka."
|
||||
},
|
||||
"featuresPopover": {
|
||||
"title": "Zmožnosti Toka",
|
||||
"description": "Uporabi go2rtc restreaming, da zmanjšaš število povezav do kamere."
|
||||
}
|
||||
},
|
||||
"step4": {
|
||||
"connectStream": "Poveži",
|
||||
"connectingStream": "Povezovanje",
|
||||
"disconnectStream": "Prekini povezavo",
|
||||
"estimatedBandwidth": "Ocenjena pasovna širina",
|
||||
"roles": "Vloge",
|
||||
"connectAllStreams": "Poveži Vse Pretoke",
|
||||
"reconnectionSuccess": "Ponovna Povezava Uspešna.",
|
||||
"reconnectionPartial": "Nekateri pretoki se niso ponovno povezali.",
|
||||
"streamUnavailable": "Predogled pretoka ni na voljo",
|
||||
"reload": "Ponovno naloži",
|
||||
"connecting": "Povezovanje...",
|
||||
"streamTitle": "Pretok {{number}}",
|
||||
"valid": "Veljaven",
|
||||
"failed": "Spodletel",
|
||||
"notTested": "Ni testirano",
|
||||
"description": "Končna validacija in analiza pred shranjevanjem nove kamere. Pred shranjevanjem povežite vsak tok."
|
||||
}
|
||||
},
|
||||
"roles": {
|
||||
@@ -368,7 +473,7 @@
|
||||
"description": "Konfigurirajte mejno vrednost in dejanja za ta sprožilec."
|
||||
},
|
||||
"step2": {
|
||||
"description": "Konfigurirajte vsebino sprožilca, da se bo akcija izvedla."
|
||||
"description": "Nastavi vsebino, ki bo sprožila to dejanje."
|
||||
},
|
||||
"step1": {
|
||||
"description": "Konfigurirajte osnovne nastavitve sprožilca."
|
||||
@@ -407,5 +512,10 @@
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"debug": {
|
||||
"zones": {
|
||||
"title": "Cone"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -6,7 +6,8 @@
|
||||
"content": "Sidan uppdateras om {{countdown}} sekunder.",
|
||||
"button": "Tvinga omladdning nu"
|
||||
},
|
||||
"title": "Är du säker på att du vill starta om Frigate?"
|
||||
"title": "Är du säker på att du vill starta om Frigate?",
|
||||
"description": "Detta kommer att stoppa Frigate kort medan det startar om."
|
||||
},
|
||||
"explore": {
|
||||
"plus": {
|
||||
|
||||
@@ -14,5 +14,5 @@
|
||||
"configEditor": "Ändra konfiguration",
|
||||
"confirm": "Avsluta utan att spara?",
|
||||
"safeConfigEditor": "Konfigurationsredigeraren (felsäkert läge)",
|
||||
"safeModeDescription": "Fregate är i felsäkert läge på grund av ett konfigurationsvalideringsfel."
|
||||
"safeModeDescription": "Frigate är i felsäkert läge på grund av ett konfigurationsvalideringsfel."
|
||||
}
|
||||
|
||||
@@ -293,6 +293,11 @@
|
||||
},
|
||||
"error": {
|
||||
"mustBeFinished": "Polygonritningen måste vara klar innan du sparar."
|
||||
},
|
||||
"type": {
|
||||
"zone": "zon",
|
||||
"motion_mask": "rörelsemask",
|
||||
"object_mask": "objektmask"
|
||||
}
|
||||
}
|
||||
},
|
||||
|
||||
@@ -53,7 +53,8 @@
|
||||
"content": "หน้านี้จะถูกโหลดในอีก {{countdown}} วินาที."
|
||||
},
|
||||
"title": "คุณแน่ใจหรือว่าต้องการรีสตาร์ท Frigate?",
|
||||
"button": "รีสตาร์ท"
|
||||
"button": "รีสตาร์ท",
|
||||
"description": "Frigate จะหยุดทำงานชั่วขณะในระหว่างรีสตาร์ท"
|
||||
},
|
||||
"explore": {
|
||||
"plus": {
|
||||
|
||||
@@ -50,7 +50,8 @@
|
||||
"short": "หมวดหมู่"
|
||||
},
|
||||
"count_other": "{{count}} หมวดหมู่",
|
||||
"count_one": "{{count}} หมวดหมู่"
|
||||
"count_one": "{{count}} หมวดหมู่",
|
||||
"label": "ป้าย"
|
||||
},
|
||||
"cameras": {
|
||||
"all": {
|
||||
@@ -84,6 +85,10 @@
|
||||
}
|
||||
},
|
||||
"classes": {
|
||||
"label": "หมวดหมู่"
|
||||
"label": "หมวดหมู่",
|
||||
"all": {
|
||||
"title": "คลาสทั้งหมด"
|
||||
},
|
||||
"count_one": "{{count}} คลาส"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1,7 +1,8 @@
|
||||
{
|
||||
"documentTitle": "โมเดลการจำแนกประเภท- Frigate",
|
||||
"details": {
|
||||
"scoreInfo": "คะแนน (Score) คือค่าเฉลี่ยของความมั่นใจในการจำแนกประเภท (Classification Confidence) จากการตรวจจับวัตถุชิ้นนี้ในทุกๆ ครั้ง"
|
||||
"scoreInfo": "คะแนน (Score) คือค่าเฉลี่ยของความมั่นใจในการจำแนกประเภท (Classification Confidence) จากการตรวจจับวัตถุชิ้นนี้ในทุกๆ ครั้ง",
|
||||
"none": "ไม่มี"
|
||||
},
|
||||
"description": {
|
||||
"invalidName": "ชื่อไม่ถูกต้อง ชื่อสามารถประกอบได้ด้วยตัวอักษร, ตัวเลข, ช่องว่าง, เครื่องหมาย ( ' , _ , - ) เท่านั้น"
|
||||
|
||||
@@ -12,5 +12,6 @@
|
||||
},
|
||||
"saveAndRestart": "บันทึก และ รีสตาร์ท",
|
||||
"documentTitle": "ตัวแก้ไขการกำหนดค่า - Frigate",
|
||||
"configEditor": "ตัวแก้ไขการกำหนดค่า"
|
||||
"configEditor": "ตัวแก้ไขการกำหนดค่า",
|
||||
"safeConfigEditor": "ตัวแก้ไขการกำหนดค่า (โหมดปลอดภัย)"
|
||||
}
|
||||
|
||||
@@ -28,5 +28,8 @@
|
||||
}
|
||||
}
|
||||
},
|
||||
"trackedObjectsCount_other": "{{count}} วัตถุที่เจอ "
|
||||
"trackedObjectsCount_other": "{{count}} วัตถุที่เจอ ",
|
||||
"details": {
|
||||
"timestamp": "เวลา"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -2,7 +2,8 @@
|
||||
"details": {
|
||||
"person": "คน",
|
||||
"subLabelScore": "คะแนน Sub Label",
|
||||
"unknown": "ไม่รู้"
|
||||
"unknown": "ไม่รู้",
|
||||
"timestamp": "เวลา"
|
||||
},
|
||||
"steps": {
|
||||
"faceName": "ใส่ชื่อหน้า",
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
{
|
||||
"search": "ค้นหา",
|
||||
"button": {
|
||||
"save": "บันทึกค้นหา",
|
||||
"save": "บันทึกการค้นหา",
|
||||
"delete": "ลบการบันทึกค้นหา",
|
||||
"clear": "ล้างการค้นหา",
|
||||
"filterInformation": "ข้อมูลตัวกรอง",
|
||||
|
||||
@@ -105,7 +105,11 @@
|
||||
"masksAndZones": "ตัวแก้ไขแมสและโซน - Frigate",
|
||||
"general": "การตั้งค่าทั่วไป - Frigate",
|
||||
"frigatePlus": "การตั้งค่า Frigate+ - Frigate",
|
||||
"notifications": "การตั้งค่าการแจ้งเตือน - Frigate"
|
||||
"notifications": "การตั้งค่าการแจ้งเตือน - Frigate",
|
||||
"cameraManagement": "จัดการกล้อง - Frigate",
|
||||
"enrichments": "การตั้งค่าของเพิ่มเติม - Frigate",
|
||||
"motionTuner": "ปรับแต่งการเคลื่อนไหว - Frigate",
|
||||
"object": "ดีบั๊ก - Frigate"
|
||||
},
|
||||
"menu": {
|
||||
"notifications": "การแจ้งเตือน",
|
||||
|
||||
@@ -59,6 +59,12 @@
|
||||
"documentTitle": {
|
||||
"cameras": "ข้อมูลกล้อง - Frigate",
|
||||
"storage": "สถิติคลังข้อมูล - Frigate",
|
||||
"general": "สถิติทั่วไป - Frigate"
|
||||
"general": "สถิติทั่วไป - Frigate",
|
||||
"enrichments": "สถิติเพิ่มเติม - Frigate",
|
||||
"logs": {
|
||||
"frigate": "Frigate Logs - Frigate",
|
||||
"go2rtc": "Logs ของ Go2RTC - Frigate",
|
||||
"nginx": "Logs ของ Nginx - Frigate"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user