diff --git a/frigate/config/config.py b/frigate/config/config.py
index 6342c13bf..e6575e3c1 100644
--- a/frigate/config/config.py
+++ b/frigate/config/config.py
@@ -735,6 +735,7 @@ class FrigateConfig(FrigateBaseModel):
def load(cls, **kwargs):
"""Loads the Frigate config file, runs migrations, and creates the config object."""
config_path = find_config_file()
+ logger.info(f"Using configuration file: {config_path}")
# No configuration file found, create one.
new_config = False
diff --git a/frigate/util/config.py b/frigate/util/config.py
index c3d796397..73d6443af 100644
--- a/frigate/util/config.py
+++ b/frigate/util/config.py
@@ -19,9 +19,16 @@ DEFAULT_CONFIG_FILE = os.path.join(CONFIG_DIR, "config.yml")
def find_config_file() -> str:
config_path = os.environ.get("CONFIG_FILE", DEFAULT_CONFIG_FILE)
+
+ if os.environ.get("CONFIG_FILE"):
+ logger.info(f"CONFIG_FILE environment variable is set to: {config_path}")
+ else:
+ logger.info(f"CONFIG_FILE environment variable not set, using default: {config_path}")
if not os.path.isfile(config_path):
+ original_path = config_path
config_path = config_path.replace("yml", "yaml")
+ logger.info(f"Config file '{original_path}' not found, trying '{config_path}' instead")
return config_path
diff --git a/web/public/locales/ar/views/events.json b/web/public/locales/ar/views/events.json
index 41312c914..72c18f872 100644
--- a/web/public/locales/ar/views/events.json
+++ b/web/public/locales/ar/views/events.json
@@ -18,8 +18,8 @@
"aria": "اختر الأحداث",
"noFoundForTimePeriod": "لم يتم العثور على أي أحداث لهذه الفترة الزمنية."
},
- "documentTitle": "مراجعة - Frigate",
+ "documentTitle": "مراجعة - DIENST",
"recordings": {
- "documentTitle": "التسجيلات - Frigate"
+ "documentTitle": "التسجيلات - DIENST"
}
}
diff --git a/web/public/locales/ar/views/faceLibrary.json b/web/public/locales/ar/views/faceLibrary.json
index c6c2c394e..5bfb85ea0 100644
--- a/web/public/locales/ar/views/faceLibrary.json
+++ b/web/public/locales/ar/views/faceLibrary.json
@@ -13,7 +13,7 @@
"face": "تفاصيل الوجه",
"faceDesc": "تفاصيل الكائن المتتبع الذي أنشأ هذا الوجه"
},
- "documentTitle": "مكتبة الوجوه - Frigate",
+ "documentTitle": "مكتبة الوجوه - DIENST",
"uploadFaceImage": {
"title": "رفع صورة الوجه",
"desc": "قم بتحميل صورة لمسح الوجوه وإدراجها في {{pageToggle}}"
diff --git a/web/public/locales/ar/views/settings.json b/web/public/locales/ar/views/settings.json
index 6a4065819..e9465a966 100644
--- a/web/public/locales/ar/views/settings.json
+++ b/web/public/locales/ar/views/settings.json
@@ -4,11 +4,11 @@
"default": "الإعدادات - فرايجيت",
"authentication": "إعدادات المصادقة - فرايجيت",
"enrichments": "إحصاء الاعدادات",
- "masksAndZones": "القناع ومحرر المنطقة - Frigate",
+ "masksAndZones": "القناع ومحرر المنطقة - DIENST",
"motionTuner": "مضبط الحركة - Firgate",
- "object": "تصحيح الأخطاء - Frigate",
- "general": "الإعدادات العامة - Frigate",
- "notifications": "إعدادات الإشعارات - Frigate"
+ "object": "تصحيح الأخطاء - DIENST",
+ "general": "الإعدادات العامة - DIENST",
+ "notifications": "إعدادات الإشعارات - DIENST"
},
"menu": {
"ui": "واجهة المستخدم",
diff --git a/web/public/locales/ar/views/system.json b/web/public/locales/ar/views/system.json
index e68d544e4..7d97dd7dc 100644
--- a/web/public/locales/ar/views/system.json
+++ b/web/public/locales/ar/views/system.json
@@ -5,9 +5,9 @@
"general": "إحصاءات عامة - فرايجيت",
"enrichments": "إحصاء العمليات",
"logs": {
- "frigate": "سجلات Frigate - Frigate",
+ "frigate": "سجلات Frigate - DIENST",
"go2rtc": "Go2RTC سجلات - Frigate",
- "nginx": "سجلات إنجنإكس - Frigate"
+ "nginx": "سجلات إنجنإكس - DIENST"
}
},
"metrics": "مقاييس النظام",
diff --git a/web/public/locales/bg/views/exports.json b/web/public/locales/bg/views/exports.json
index ae366d5d2..15c810ef2 100644
--- a/web/public/locales/bg/views/exports.json
+++ b/web/public/locales/bg/views/exports.json
@@ -1,4 +1,4 @@
{
- "documentTitle": "Експорт - Frigate",
+ "documentTitle": "Експорт - DIENST",
"search": "Търси"
}
diff --git a/web/public/locales/bg/views/live.json b/web/public/locales/bg/views/live.json
index 01b3a5c34..1add5ca76 100644
--- a/web/public/locales/bg/views/live.json
+++ b/web/public/locales/bg/views/live.json
@@ -64,6 +64,6 @@
"cameraSettings": {
"cameraEnabled": "Камерата е включена"
},
- "documentTitle": "Наживо - Frigate",
+ "documentTitle": "Наживо - DIENST",
"documentTitle.withCamera": "{{camera}} - На живо - Фригейт"
}
diff --git a/web/public/locales/ca/common.json b/web/public/locales/ca/common.json
index 03d217ae0..0a88bcb3a 100644
--- a/web/public/locales/ca/common.json
+++ b/web/public/locales/ca/common.json
@@ -279,11 +279,11 @@
},
"accessDenied": {
"desc": "No teniu permís per veure aquesta pàgina.",
- "documentTitle": "Accés Denegat - Frigate",
+ "documentTitle": "Accés Denegat - DIENST",
"title": "Accés Denegat"
},
"notFound": {
- "documentTitle": "No s'ha trobat - Frigate",
+ "documentTitle": "No s'ha trobat - DIENST",
"title": "404",
"desc": "Pàgina no trobada"
},
diff --git a/web/public/locales/ca/views/classificationModel.json b/web/public/locales/ca/views/classificationModel.json
index 568a38dbb..39938a69b 100644
--- a/web/public/locales/ca/views/classificationModel.json
+++ b/web/public/locales/ca/views/classificationModel.json
@@ -1,5 +1,5 @@
{
- "documentTitle": "Models de classificació - Frigate",
+ "documentTitle": "Models de classificació - DIENST",
"button": {
"deleteClassificationAttempts": "Suprimeix les imatges de classificació",
"renameCategory": "Reanomena la classe",
diff --git a/web/public/locales/ca/views/configEditor.json b/web/public/locales/ca/views/configEditor.json
index bd3149a3f..b38bad825 100644
--- a/web/public/locales/ca/views/configEditor.json
+++ b/web/public/locales/ca/views/configEditor.json
@@ -1,5 +1,5 @@
{
- "documentTitle": "Editor de Configuració - Frigate",
+ "documentTitle": "Editor de Configuració - DIENST",
"configEditor": "Editor de configuració",
"copyConfig": "Copiar configuració",
"saveAndRestart": "Desa i reinicia",
diff --git a/web/public/locales/ca/views/events.json b/web/public/locales/ca/views/events.json
index 960d6a209..6cc4e9d16 100644
--- a/web/public/locales/ca/views/events.json
+++ b/web/public/locales/ca/views/events.json
@@ -19,9 +19,9 @@
"aria": "Seleccionar esdeveniments",
"noFoundForTimePeriod": "No s'han trobat esdeveniments per aquest període de temps."
},
- "documentTitle": "Revisió - Frigate",
+ "documentTitle": "Revisió - DIENST",
"recordings": {
- "documentTitle": "Enregistraments - Frigate"
+ "documentTitle": "Enregistraments - DIENST"
},
"calendarFilter": {
"last24Hours": "Últimes 24 hores"
diff --git a/web/public/locales/ca/views/explore.json b/web/public/locales/ca/views/explore.json
index dec29735a..bb1e53120 100644
--- a/web/public/locales/ca/views/explore.json
+++ b/web/public/locales/ca/views/explore.json
@@ -27,7 +27,7 @@
},
"title": "Explorar no està disponible"
},
- "documentTitle": "Explora - Frigate",
+ "documentTitle": "Explora - DIENST",
"generativeAI": "IA Generativa",
"objectLifecycle": {
"createObjectMask": "Crear màscara per a l'objecte",
diff --git a/web/public/locales/ca/views/exports.json b/web/public/locales/ca/views/exports.json
index dec2726ff..6024ffb00 100644
--- a/web/public/locales/ca/views/exports.json
+++ b/web/public/locales/ca/views/exports.json
@@ -1,5 +1,5 @@
{
- "documentTitle": "Exportar - Frigate",
+ "documentTitle": "Exportar - DIENST",
"search": "Buscar",
"noExports": "No s'han trobat exportacions",
"deleteExport": "Suprimeix l'exportació",
diff --git a/web/public/locales/ca/views/faceLibrary.json b/web/public/locales/ca/views/faceLibrary.json
index d2a5fcf34..75811c621 100644
--- a/web/public/locales/ca/views/faceLibrary.json
+++ b/web/public/locales/ca/views/faceLibrary.json
@@ -21,7 +21,7 @@
"placeholder": "Introduïu un nom per a aquesta col·lecció",
"invalidName": "Nom no vàlid. Els noms només poden incloure lletres, números, espais, apòstrofs, guions baixos i guions."
},
- "documentTitle": "Biblioteca de rostres - Frigate",
+ "documentTitle": "Biblioteca de rostres - DIENST",
"uploadFaceImage": {
"title": "Puja una imatge del rostre",
"desc": "Carregar una imatge per escanejar els rostres i incloure per a {{pageToggle}}"
diff --git a/web/public/locales/ca/views/live.json b/web/public/locales/ca/views/live.json
index d9245fe7c..3a1b5f019 100644
--- a/web/public/locales/ca/views/live.json
+++ b/web/public/locales/ca/views/live.json
@@ -42,8 +42,8 @@
}
}
},
- "documentTitle": "Directe - Frigate",
- "documentTitle.withCamera": "{{camera}} - Directe - Frigate",
+ "documentTitle": "Directe - DIENST",
+ "documentTitle.withCamera": "{{camera}} - Directe - DIENST",
"lowBandwidthMode": "Mode de baix ample de banda",
"twoWayTalk": {
"enable": "Activa la comunicació bidireccional",
diff --git a/web/public/locales/ca/views/settings.json b/web/public/locales/ca/views/settings.json
index 1fcd97460..7840f71e5 100644
--- a/web/public/locales/ca/views/settings.json
+++ b/web/public/locales/ca/views/settings.json
@@ -1,17 +1,17 @@
{
"documentTitle": {
- "enrichments": "Parmàmetres complementaris - Frigate",
- "motionTuner": "Ajust de moviment - Frigate",
- "object": "Depurar - Frigate",
- "default": "Paràmetres - Frigate",
- "authentication": "Configuració d'autenticació - Frigate",
- "camera": "Paràmetres de càmera - Frigate",
- "masksAndZones": "Editor de màscares i zones - Frigate",
+ "enrichments": "Parmàmetres complementaris - DIENST",
+ "motionTuner": "Ajust de moviment - DIENST",
+ "object": "Depurar - DIENST",
+ "default": "Paràmetres - DIENST",
+ "authentication": "Configuració d'autenticació - DIENST",
+ "camera": "Paràmetres de càmera - DIENST",
+ "masksAndZones": "Editor de màscares i zones - DIENST",
"general": "Configuració de la interfície d'usuari - Fragata",
- "frigatePlus": "Paràmetres de Frigate+ - Frigate",
- "notifications": "Paràmetres de notificació - Frigate",
- "cameraManagement": "Gestionar càmeres - Frigate",
- "cameraReview": "Configuració Revisió de Càmeres - Frigate"
+ "frigatePlus": "Paràmetres de Frigate+ - DIENST",
+ "notifications": "Paràmetres de notificació - DIENST",
+ "cameraManagement": "Gestionar càmeres - DIENST",
+ "cameraReview": "Configuració Revisió de Càmeres - DIENST"
},
"menu": {
"ui": "Interfície d'usuari",
@@ -186,7 +186,7 @@
"desc": "Estableix el temps mínim, en segons, que l'objecte ha d'estar dins la zona perquè s'activi. Per defecte: 0"
},
"allObjects": "Tots els objectes",
- "documentTitle": "Edita zona - Frigate",
+ "documentTitle": "Edita zona - DIENST",
"speedThreshold": {
"title": "Llindar de velocitat ({{unit}})",
"toast": {
@@ -225,7 +225,7 @@
"label": "Màscara de moviment",
"add": "Nova màscara de moviment",
"edit": "Edita la màscara de moviment",
- "documentTitle": "Editar la màscara de moviment - Frigate",
+ "documentTitle": "Editar la màscara de moviment - DIENST",
"clickDrawPolygon": "Fes click per a dibuixar un polígon a la imatge.",
"toast": {
"success": {
@@ -235,7 +235,7 @@
}
},
"objectMasks": {
- "documentTitle": "Editar la màscara d'objecte - Frigate",
+ "documentTitle": "Editar la màscara d'objecte - DIENST",
"label": "Màscares d'objecte",
"edit": "Editar la màscara d'objecte",
"point_one": "{{count}} punt",
diff --git a/web/public/locales/ca/views/system.json b/web/public/locales/ca/views/system.json
index f610e6a2a..660e51194 100644
--- a/web/public/locales/ca/views/system.json
+++ b/web/public/locales/ca/views/system.json
@@ -1,14 +1,14 @@
{
"documentTitle": {
- "cameras": "Estadístiques de càmera - Frigate",
- "storage": "Estadístiques d'emmagatzematge - Frigate",
- "general": "Estadístiques generals - Frigate",
+ "cameras": "Estadístiques de càmera - DIENST",
+ "storage": "Estadístiques d'emmagatzematge - DIENST",
+ "general": "Estadístiques generals - DIENST",
"logs": {
- "frigate": "Registres de Frigate - Frigate",
- "go2rtc": "Registres de Go2RTC - Frigate",
- "nginx": "Registres de Nginix - Frigate"
+ "frigate": "Registres de Frigate - DIENST",
+ "go2rtc": "Registres de Go2RTC - DIENST",
+ "nginx": "Registres de Nginix - DIENST"
},
- "enrichments": "Estadístiques complementàries - Frigate"
+ "enrichments": "Estadístiques complementàries - DIENST"
},
"title": "Sistema",
"metrics": "Mètriques del sistema",
diff --git a/web/public/locales/cs/common.json b/web/public/locales/cs/common.json
index 856c88a63..96ce49bc2 100644
--- a/web/public/locales/cs/common.json
+++ b/web/public/locales/cs/common.json
@@ -245,13 +245,13 @@
"more": "Více stran"
},
"accessDenied": {
- "documentTitle": "Přístup odepřen - Frigate",
+ "documentTitle": "Přístup odepřen - DIENST",
"title": "Přístup odepřen",
"desc": "Nemáte oprávnění zobrazit tuto stránku."
},
"notFound": {
"desc": "Stránka nenalezena",
- "documentTitle": "Nenalezeno - Frigate",
+ "documentTitle": "Nenalezeno - DIENST",
"title": "404"
},
"toast": {
diff --git a/web/public/locales/cs/views/configEditor.json b/web/public/locales/cs/views/configEditor.json
index 19982f20c..9f0663d18 100644
--- a/web/public/locales/cs/views/configEditor.json
+++ b/web/public/locales/cs/views/configEditor.json
@@ -1,5 +1,5 @@
{
- "documentTitle": "Editor konfigurace - Frigate",
+ "documentTitle": "Editor konfigurace - DIENST",
"configEditor": "Editor konfigurace",
"copyConfig": "Kopírovat konfiguraci",
"saveAndRestart": "Uložit a restartovat",
diff --git a/web/public/locales/cs/views/events.json b/web/public/locales/cs/views/events.json
index 6757c2191..5a7ecb492 100644
--- a/web/public/locales/cs/views/events.json
+++ b/web/public/locales/cs/views/events.json
@@ -18,7 +18,7 @@
"aria": "Zvolit události",
"noFoundForTimePeriod": "Pro toto období nebyly nalezeny žádné události."
},
- "documentTitle": "Revize - Frigate",
+ "documentTitle": "Revize - DIENST",
"camera": "Kamera",
"calendarFilter": {
"last24Hours": "Posledních 24 hodin"
@@ -30,7 +30,7 @@
"button": "Nové položky na kontrolu"
},
"recordings": {
- "documentTitle": "Záznamy - Frigate"
+ "documentTitle": "Záznamy - DIENST"
},
"detected": "Detekováno",
"selected_one": "{{count}} vybráno",
diff --git a/web/public/locales/cs/views/exports.json b/web/public/locales/cs/views/exports.json
index 5fb25d638..62424b5e8 100644
--- a/web/public/locales/cs/views/exports.json
+++ b/web/public/locales/cs/views/exports.json
@@ -1,6 +1,6 @@
{
"search": "Hledat",
- "documentTitle": "Exportovat - Frigate",
+ "documentTitle": "Exportovat - DIENST",
"noExports": "Žádné exporty nenalezeny",
"deleteExport": "Smazat export",
"deleteExport.desc": "Opravdu chcete smazat {{exportName}}?",
diff --git a/web/public/locales/cs/views/faceLibrary.json b/web/public/locales/cs/views/faceLibrary.json
index 73b4c562a..80b20f312 100644
--- a/web/public/locales/cs/views/faceLibrary.json
+++ b/web/public/locales/cs/views/faceLibrary.json
@@ -45,7 +45,7 @@
"placeholder": "Zadejte název pro tuto kolekci",
"invalidName": "Neplatný název. Názvy mohou obsahovat pouze písmena, čísla, mezery, apostrofy, podtržítka a pomlčky."
},
- "documentTitle": "Knihovna obličejů - Frigate",
+ "documentTitle": "Knihovna obličejů - DIENST",
"uploadFaceImage": {
"title": "Nahrát obrázek obličeje",
"desc": "Nahrajte obrázek pro skenování tváří a zahrňte jej pro {{pageToggle}}"
diff --git a/web/public/locales/cs/views/live.json b/web/public/locales/cs/views/live.json
index f8e77f659..d28085392 100644
--- a/web/public/locales/cs/views/live.json
+++ b/web/public/locales/cs/views/live.json
@@ -1,5 +1,5 @@
{
- "documentTitle": "Živě - Frigate",
+ "documentTitle": "Živě - DIENST",
"documentTitle.withCamera": "{{camera}}-Živě-Frigate",
"lowBandwidthMode": "Režim nízké šířky pásma",
"twoWayTalk": {
diff --git a/web/public/locales/cs/views/settings.json b/web/public/locales/cs/views/settings.json
index 1a7365028..6ffc9299c 100644
--- a/web/public/locales/cs/views/settings.json
+++ b/web/public/locales/cs/views/settings.json
@@ -1,18 +1,18 @@
{
"documentTitle": {
- "default": "Nastavení - Frigate",
- "authentication": "Nastavení ověřování - Frigate",
- "camera": "Nastavení kamery - Frigate",
- "classification": "Nastavení klasifikace - Frigate",
- "notifications": "Nastavení notifikací - Frigate",
- "masksAndZones": "Editor masky a zón - Frigate",
- "motionTuner": "Ladění detekce pohybu - Frigate",
- "object": "Ladění - Frigate",
+ "default": "Nastavení - DIENST",
+ "authentication": "Nastavení ověřování - DIENST",
+ "camera": "Nastavení kamery - DIENST",
+ "classification": "Nastavení klasifikace - DIENST",
+ "notifications": "Nastavení notifikací - DIENST",
+ "masksAndZones": "Editor masky a zón - DIENST",
+ "motionTuner": "Ladění detekce pohybu - DIENST",
+ "object": "Ladění - DIENST",
"general": "Nastavení rozhraní- Frigate",
- "frigatePlus": "Frigate+ nastavení - Frigate",
- "enrichments": "Nastavení obohacení - Frigate",
- "cameraManagement": "Správa kamer - Frigate",
- "cameraReview": "Nastavení kontroly kamery - Frigate"
+ "frigatePlus": "Frigate+ nastavení - DIENST",
+ "enrichments": "Nastavení obohacení - DIENST",
+ "cameraManagement": "Správa kamer - DIENST",
+ "cameraReview": "Nastavení kontroly kamery - DIENST"
},
"frigatePlus": {
"toast": {
@@ -169,7 +169,7 @@
},
"add": "Přidat Zónu",
"edit": "Upravit Zónu",
- "documentTitle": "Upravit Zónu - Frigate",
+ "documentTitle": "Upravit Zónu - DIENST",
"clickDrawPolygon": "Klikněte pro kreslení polygonu na obrázku.",
"point_one": "{{count}} bod",
"point_few": "{{count}} body",
@@ -185,7 +185,7 @@
"title": "Maska detekce pohybu pokrývá {{polygonArea}}% záběru kamery. Příliš velké masky detekce pohybu nejsou doporučovány.",
"tips": "Masky detekce pohybu nebrání detekci objektů. Místo toho byste měli použít požadovanou zónu."
},
- "documentTitle": "Editovat Masku Detekce pohybu - Frigate",
+ "documentTitle": "Editovat Masku Detekce pohybu - DIENST",
"desc": {
"title": "Masky detekce pohybu slouží k zabránění nežádoucím typům pohybu ve spuštění detekce. Příliš rozsáhlé maskování však může ztížit sledování objektů.",
"documentation": "Dokumentace"
@@ -268,7 +268,7 @@
},
"objectMasks": {
"label": "Masky Objektu",
- "documentTitle": "Upravit Masku Objektu - Frigate",
+ "documentTitle": "Upravit Masku Objektu - DIENST",
"desc": {
"documentation": "Dokumentace",
"title": "Masky filtrování objektů slouží k odfiltrování falešných detekcí daného typu objektu na základě jeho umístění."
diff --git a/web/public/locales/cs/views/system.json b/web/public/locales/cs/views/system.json
index f920a2159..51f9377ca 100644
--- a/web/public/locales/cs/views/system.json
+++ b/web/public/locales/cs/views/system.json
@@ -148,14 +148,14 @@
},
"lastRefreshed": "Poslední aktualizace: ",
"documentTitle": {
- "cameras": "Statistiky kamer – Frigate",
- "storage": "Statistiky uložiště - Frigate",
- "general": "Obecné statistiky - Frigate",
- "enrichments": "Statistiky obohacení - Frigate",
+ "cameras": "Statistiky kamer - DIENST",
+ "storage": "Statistiky uložiště - DIENST",
+ "general": "Obecné statistiky - DIENST",
+ "enrichments": "Statistiky obohacení - DIENST",
"logs": {
- "frigate": "Protokoly Frigate - Frigate",
- "go2rtc": "Protokoly Go2RTC - Frigate",
- "nginx": "Protokoly Nginx - Frigate"
+ "frigate": "Protokoly Frigate - DIENST",
+ "go2rtc": "Protokoly Go2RTC - DIENST",
+ "nginx": "Protokoly Nginx - DIENST"
}
},
"title": "Systém",
diff --git a/web/public/locales/da/common.json b/web/public/locales/da/common.json
index dbf6ff2d3..82720cc98 100644
--- a/web/public/locales/da/common.json
+++ b/web/public/locales/da/common.json
@@ -245,12 +245,12 @@
"more": "Flere sider"
},
"accessDenied": {
- "documentTitle": "Adgang forbudt - Frigate",
+ "documentTitle": "Adgang forbudt - DIENST",
"title": "Adgang forbudt",
"desc": "Du har ikke tiiladelse til at se denne side."
},
"notFound": {
- "documentTitle": "Ikke fundet - Frigate",
+ "documentTitle": "Ikke fundet - DIENST",
"title": "404",
"desc": "Side ikke fundet"
},
diff --git a/web/public/locales/da/views/configEditor.json b/web/public/locales/da/views/configEditor.json
index ba1d6a715..32e259101 100644
--- a/web/public/locales/da/views/configEditor.json
+++ b/web/public/locales/da/views/configEditor.json
@@ -1,5 +1,5 @@
{
- "documentTitle": "Konfigurationsstyring - Frigate",
+ "documentTitle": "Konfigurationsstyring - DIENST",
"copyConfig": "Kopiér konfiguration",
"saveAndRestart": "Gem & Genstart",
"saveOnly": "Kun gem",
diff --git a/web/public/locales/da/views/explore.json b/web/public/locales/da/views/explore.json
index afe962aea..f831ccaf3 100644
--- a/web/public/locales/da/views/explore.json
+++ b/web/public/locales/da/views/explore.json
@@ -1,5 +1,5 @@
{
- "documentTitle": "Udforsk - Frigate",
+ "documentTitle": "Udforsk - DIENST",
"generativeAI": "Generativ AI",
"type": {
"details": "detaljer",
diff --git a/web/public/locales/da/views/exports.json b/web/public/locales/da/views/exports.json
index 8c5f119c4..8c1f6113a 100644
--- a/web/public/locales/da/views/exports.json
+++ b/web/public/locales/da/views/exports.json
@@ -1,5 +1,5 @@
{
- "documentTitle": "Eksporter - Frigate",
+ "documentTitle": "Eksporter - DIENST",
"search": "Søg",
"deleteExport.desc": "Er du sikker på at du vil slette {{exportName}}?",
"editExport": {
diff --git a/web/public/locales/da/views/faceLibrary.json b/web/public/locales/da/views/faceLibrary.json
index f309e6fa0..94857dc77 100644
--- a/web/public/locales/da/views/faceLibrary.json
+++ b/web/public/locales/da/views/faceLibrary.json
@@ -11,7 +11,7 @@
"unknown": "Ukendt",
"scoreInfo": "Scoren er et vægtet gennemsnit af alle ansigtsscorer, vægtet efter ansigtets størrelse på hvert billede."
},
- "documentTitle": "Ansigtsbibliotek - Frigate",
+ "documentTitle": "Ansigtsbibliotek - DIENST",
"uploadFaceImage": {
"title": "Upload ansigtsbillede",
"desc": "Upload et billede for at scanne efter ansigter og inkludere det for {{pageToggle}}"
diff --git a/web/public/locales/da/views/live.json b/web/public/locales/da/views/live.json
index 254539b38..e902240d9 100644
--- a/web/public/locales/da/views/live.json
+++ b/web/public/locales/da/views/live.json
@@ -1,6 +1,6 @@
{
- "documentTitle": "Live - Frigate",
- "documentTitle.withCamera": "{{camera}} - Live - Frigate",
+ "documentTitle": "Live - DIENST",
+ "documentTitle.withCamera": "{{camera}} - Live - DIENST",
"twoWayTalk": {
"enable": "Aktivér tovejskommunikation",
"disable": "Deaktiver tovejskommunikation"
diff --git a/web/public/locales/da/views/settings.json b/web/public/locales/da/views/settings.json
index 61fce336f..c45a8a7ef 100644
--- a/web/public/locales/da/views/settings.json
+++ b/web/public/locales/da/views/settings.json
@@ -1,14 +1,14 @@
{
"documentTitle": {
- "default": "Indstillinger - Frigate",
- "authentication": "Bruger Indstillinger - Frigate",
- "camera": "Kamera indstillinger - Frigate",
- "object": "Debug - Frigate",
- "cameraManagement": "Administrér kameraer - Frigate",
- "cameraReview": "Indstillinger for kameragennemgang - Frigate",
- "enrichments": "Indstillinger for berigelser - Frigate",
- "masksAndZones": "Maske- og zoneeditor - Frigate",
- "motionTuner": "Bevægelsesjustering - Frigate",
- "general": "Brugergrænsefladeindstillinger - Frigate"
+ "default": "Indstillinger - DIENST",
+ "authentication": "Bruger Indstillinger - DIENST",
+ "camera": "Kamera indstillinger - DIENST",
+ "object": "Debug - DIENST",
+ "cameraManagement": "Administrér kameraer - DIENST",
+ "cameraReview": "Indstillinger for kameragennemgang - DIENST",
+ "enrichments": "Indstillinger for berigelser - DIENST",
+ "masksAndZones": "Maske- og zoneeditor - DIENST",
+ "motionTuner": "Bevægelsesjustering - DIENST",
+ "general": "Brugergrænsefladeindstillinger - DIENST"
}
}
diff --git a/web/public/locales/da/views/system.json b/web/public/locales/da/views/system.json
index 31d7ac946..e9f7f4775 100644
--- a/web/public/locales/da/views/system.json
+++ b/web/public/locales/da/views/system.json
@@ -1,14 +1,14 @@
{
"documentTitle": {
- "cameras": "Kamera Statistik - Frigate",
- "storage": "Lagrings Statistik - Frigate",
+ "cameras": "Kamera Statistik - DIENST",
+ "storage": "Lagrings Statistik - DIENST",
"logs": {
- "frigate": "Frigate Logs - Frigate",
- "go2rtc": "Go2RTC Logs - Frigate",
- "nginx": "Nginx Logs - Frigate"
+ "frigate": "Frigate Logs - DIENST",
+ "go2rtc": "Go2RTC Logs - DIENST",
+ "nginx": "Nginx Logs - DIENST"
},
- "general": "Generelle statistikker - Frigate",
- "enrichments": "Beredningsstatistikker - Frigate"
+ "general": "Generelle statistikker - DIENST",
+ "enrichments": "Beredningsstatistikker - DIENST"
},
"title": "System",
"logs": {
diff --git a/web/public/locales/de/common.json b/web/public/locales/de/common.json
index 16af90fdf..a2ca284f8 100644
--- a/web/public/locales/de/common.json
+++ b/web/public/locales/de/common.json
@@ -283,13 +283,13 @@
"notFound": {
"title": "404",
"desc": "Seite nicht gefunden",
- "documentTitle": "Nicht gefunden - Frigate"
+ "documentTitle": "Nicht gefunden - DIENST"
},
"selectItem": "Wähle {{item}}",
"readTheDocumentation": "Dokumentation lesen",
"accessDenied": {
"desc": "Du hast keine Berechtigung diese Seite anzuzeigen.",
- "documentTitle": "Zugang verweigert - Frigate",
+ "documentTitle": "Zugang verweigert - DIENST",
"title": "Zugang verweigert"
},
"information": {
diff --git a/web/public/locales/de/views/events.json b/web/public/locales/de/views/events.json
index 1b031af7b..298625171 100644
--- a/web/public/locales/de/views/events.json
+++ b/web/public/locales/de/views/events.json
@@ -17,9 +17,9 @@
"noFoundForTimePeriod": "Keine Ereignisse für diesen Zeitraum gefunden.",
"aria": "Wähle Ereignisse aus"
},
- "documentTitle": "Überprüfung - Frigate",
+ "documentTitle": "Überprüfung - DIENST",
"recordings": {
- "documentTitle": "Aufnahmen - Frigate"
+ "documentTitle": "Aufnahmen - DIENST"
},
"calendarFilter": {
"last24Hours": "Letzte 24 Stunden"
diff --git a/web/public/locales/de/views/explore.json b/web/public/locales/de/views/explore.json
index 1068bfd7f..e0016e04b 100644
--- a/web/public/locales/de/views/explore.json
+++ b/web/public/locales/de/views/explore.json
@@ -74,7 +74,7 @@
"label": "Ergebnis"
}
},
- "documentTitle": "Erkunde - Frigate",
+ "documentTitle": "Erkunde - DIENST",
"generativeAI": "Generative KI",
"exploreIsUnavailable": {
"title": "Erkunden ist nicht Verfügbar",
diff --git a/web/public/locales/de/views/exports.json b/web/public/locales/de/views/exports.json
index c3bae1239..5d5e66142 100644
--- a/web/public/locales/de/views/exports.json
+++ b/web/public/locales/de/views/exports.json
@@ -5,7 +5,7 @@
"desc": "Gib einen neuen Namen für diesen Export an.",
"saveExport": "Export speichern"
},
- "documentTitle": "Exportieren - Frigate",
+ "documentTitle": "Exportieren - DIENST",
"deleteExport.desc": "Soll {{exportName}} wirklich gelöscht werden?",
"search": "Suche",
"noExports": "Keine Exporte gefunden",
diff --git a/web/public/locales/de/views/faceLibrary.json b/web/public/locales/de/views/faceLibrary.json
index bdbd44825..06359ca81 100644
--- a/web/public/locales/de/views/faceLibrary.json
+++ b/web/public/locales/de/views/faceLibrary.json
@@ -24,7 +24,7 @@
"desc": "Erstelle eine neue Kollektion",
"nextSteps": "Um eine solide Grundlage zu bilden:
Benutze den \"Aktuelle Erkennungen\" Tab, um Bilder für jede erkannte Person auszuwählen und zu trainieren. Konzentriere dich für gute Ergebnisse auf Frontalfotos; vermeide Bilder zu Trainingszwecken, bei denen Gesichter aus einem Winkel erfasst wurden."
},
- "documentTitle": "Gesichtsbibliothek - Frigate",
+ "documentTitle": "Gesichtsbibliothek - DIENST",
"selectItem": "Wähle {{item}}",
"selectFace": "Wähle Gesicht",
"imageEntry": {
diff --git a/web/public/locales/de/views/live.json b/web/public/locales/de/views/live.json
index e0bf9955e..16e6939c7 100644
--- a/web/public/locales/de/views/live.json
+++ b/web/public/locales/de/views/live.json
@@ -51,8 +51,8 @@
}
}
},
- "documentTitle": "Live - Frigate",
- "documentTitle.withCamera": "{{camera}} - Live - Frigate",
+ "documentTitle": "Live - DIENST",
+ "documentTitle.withCamera": "{{camera}} - Live - DIENST",
"muteCameras": {
"disable": "Stumm aller Kameras aufheben",
"enable": "Alle Kameras auf stumm"
diff --git a/web/public/locales/de/views/settings.json b/web/public/locales/de/views/settings.json
index b43173fcf..59cd63b82 100644
--- a/web/public/locales/de/views/settings.json
+++ b/web/public/locales/de/views/settings.json
@@ -1,18 +1,18 @@
{
"documentTitle": {
- "default": "Einstellungen - Frigate",
- "authentication": "Authentifizierungseinstellungen – Frigate",
- "camera": "Kameraeinstellungen - Frigate",
- "masksAndZones": "Masken- und Zoneneditor – Frigate",
- "object": "Debug - Frigate",
- "general": "UI-Einstellungen – Frigate",
- "frigatePlus": "Frigate+ Einstellungen – Frigate",
- "classification": "Klassifizierungseinstellungen – Frigate",
- "motionTuner": "Bewegungserkennungs-Optimierer – Frigate",
+ "default": "Einstellungen - DIENST",
+ "authentication": "Authentifizierungseinstellungen - DIENST",
+ "camera": "Kameraeinstellungen - DIENST",
+ "masksAndZones": "Masken- und Zoneneditor - DIENST",
+ "object": "Debug - DIENST",
+ "general": "UI-Einstellungen - DIENST",
+ "frigatePlus": "Frigate+ Einstellungen - DIENST",
+ "classification": "Klassifizierungseinstellungen - DIENST",
+ "motionTuner": "Bewegungserkennungs-Optimierer - DIENST",
"notifications": "Benachrichtigungseinstellungen",
- "enrichments": "Erweiterte Statistiken - Frigate",
- "cameraManagement": "Kameras verwalten - Frigate",
- "cameraReview": "Kameraeinstellungen prüfen - Frigate"
+ "enrichments": "Erweiterte Statistiken - DIENST",
+ "cameraManagement": "Kameras verwalten - DIENST",
+ "cameraReview": "Kameraeinstellungen prüfen - DIENST"
},
"menu": {
"ui": "Benutzeroberfläche",
@@ -315,7 +315,7 @@
"lineCDistance": "Spur C Distanz ({{unit}})"
},
"label": "Zonen",
- "documentTitle": "Zone bearbeiten - Frigate",
+ "documentTitle": "Zone bearbeiten - DIENST",
"add": "Zone hinzufügen",
"name": {
"title": "Name",
@@ -353,7 +353,7 @@
"documentation": "Dokumentation",
"title": "Bewegungsmasken werden verwendet, um zu verhindern, dass unerwünschte Bewegungsarten eine Erkennung auslösen. Zu starkes Maskieren erschwert das Nachverfolgen von Objekten."
},
- "documentTitle": "Bewegungsmaske bearbeiten – Frigate",
+ "documentTitle": "Bewegungsmaske bearbeiten - DIENST",
"context": {
"documentation": "Lies die Dokumentation",
"title": "Bewegungsmasken werden verwendet, um unerwünschte Bewegungen (z. B. Baumäste, Kamerazeitstempel) daran zu hindern, eine Erkennung auszulösen. Bewegungsmasken sollten sehr sparsam eingesetzt werden – zu starkes Maskieren erschwert das Nachverfolgen von Objekten."
@@ -379,7 +379,7 @@
"restart_required": "Neustart erforderlich (Maske/Zone hat sich geändert)",
"objectMasks": {
"label": "Objektmasken",
- "documentTitle": "Objektmaske bearbeiten – Frigate",
+ "documentTitle": "Objektmaske bearbeiten - DIENST",
"toast": {
"success": {
"noName": "Objektmaske wurde gespeichert.",
diff --git a/web/public/locales/de/views/system.json b/web/public/locales/de/views/system.json
index bd948a037..502abf675 100644
--- a/web/public/locales/de/views/system.json
+++ b/web/public/locales/de/views/system.json
@@ -54,15 +54,15 @@
}
},
"documentTitle": {
- "cameras": "Kamerastatistiken – Frigate",
- "storage": "Speicherstatistiken - Frigate",
- "general": "Allgemeine Statistiken - Frigate",
+ "cameras": "Kamerastatistiken - DIENST",
+ "storage": "Speicherstatistiken - DIENST",
+ "general": "Allgemeine Statistiken - DIENST",
"logs": {
- "frigate": "Frigate Protokolle – Frigate",
- "go2rtc": "Go2RTC Protokolle - Frigate",
- "nginx": "Nginx Protokolle - Frigate"
+ "frigate": "Frigate Protokolle - DIENST",
+ "go2rtc": "Go2RTC Protokolle - DIENST",
+ "nginx": "Nginx Protokolle - DIENST"
},
- "enrichments": "Erweiterte Statistiken - Frigate"
+ "enrichments": "Erweiterte Statistiken - DIENST"
},
"title": "System",
"logs": {
diff --git a/web/public/locales/el/views/configEditor.json b/web/public/locales/el/views/configEditor.json
index 79917bf96..971a9907b 100644
--- a/web/public/locales/el/views/configEditor.json
+++ b/web/public/locales/el/views/configEditor.json
@@ -1,5 +1,5 @@
{
- "documentTitle": "Επεξεργαστής ρυθμίσεων - Frigate",
+ "documentTitle": "Επεξεργαστής ρυθμίσεων - DIENST",
"configEditor": "Επεξεργαστής Ρυθμίσεων",
"saveAndRestart": "Αποθήκευση και επανεκκίνηση",
"safeConfigEditor": "Επεξεργαστής ρυθμίσεων (Ασφαλής Λειτουργία)",
diff --git a/web/public/locales/el/views/events.json b/web/public/locales/el/views/events.json
index e2e21a05c..ffffb94c7 100644
--- a/web/public/locales/el/views/events.json
+++ b/web/public/locales/el/views/events.json
@@ -21,9 +21,9 @@
"selected_other": "{{count}} επελεγμένα",
"camera": "Κάμερα",
"detected": "ανιχνέυτηκε",
- "documentTitle": "Προεσκόπιση - Frigate",
+ "documentTitle": "Προεσκόπιση - DIENST",
"recordings": {
- "documentTitle": "Καταγραφές - Frigate"
+ "documentTitle": "Καταγραφές - DIENST"
},
"calendarFilter": {
"last24Hours": "Τελευταίες 24 Ώρες"
diff --git a/web/public/locales/el/views/explore.json b/web/public/locales/el/views/explore.json
index 12390dcb9..0b82e213d 100644
--- a/web/public/locales/el/views/explore.json
+++ b/web/public/locales/el/views/explore.json
@@ -1,5 +1,5 @@
{
- "documentTitle": "Εξερευνήστε - Frigate",
+ "documentTitle": "Εξερευνήστε - DIENST",
"generativeAI": "Παραγωγική τεχνητή νοημοσύνη",
"exploreMore": "Εξερευνήστε περισσότερα αντικείμενα {{label}}",
"exploreIsUnavailable": {
diff --git a/web/public/locales/el/views/exports.json b/web/public/locales/el/views/exports.json
index 8aff54238..a4e6a39f6 100644
--- a/web/public/locales/el/views/exports.json
+++ b/web/public/locales/el/views/exports.json
@@ -1,5 +1,5 @@
{
- "documentTitle": "Εξαγωγή - Frigate",
+ "documentTitle": "Εξαγωγή - DIENST",
"search": "Αναζήτηση",
"deleteExport": "Διαγραφή εξαγωγής",
"noExports": "Δεν βρέθηκαν εξαγωγές",
diff --git a/web/public/locales/el/views/faceLibrary.json b/web/public/locales/el/views/faceLibrary.json
index f41e89c96..bb42a227b 100644
--- a/web/public/locales/el/views/faceLibrary.json
+++ b/web/public/locales/el/views/faceLibrary.json
@@ -25,7 +25,7 @@
"deletedName_other": "{{count}} πρόσωπα διεγράφη επιτυχημένα."
}
},
- "documentTitle": "Βιβλιοθήκη προσώπων - Frigate",
+ "documentTitle": "Βιβλιοθήκη προσώπων - DIENST",
"uploadFaceImage": {
"title": "Μεταφόρτωση Εικόνας Προσώπου"
},
diff --git a/web/public/locales/el/views/live.json b/web/public/locales/el/views/live.json
index b2427114e..722bb2c91 100644
--- a/web/public/locales/el/views/live.json
+++ b/web/public/locales/el/views/live.json
@@ -1,10 +1,10 @@
{
- "documentTitle": "Ζωντανά - Frigate",
+ "documentTitle": "Ζωντανά - DIENST",
"twoWayTalk": {
"enable": "Ενεργοποίηση αμφίδρομης επικοινωνίας",
"disable": "Απενεργοποίηση αμφίδρομης επικοινωνίας"
},
- "documentTitle.withCamera": "{{camera}} - Ζωντανή μετάδοση - Frigate",
+ "documentTitle.withCamera": "{{camera}} - Ζωντανή μετάδοση - DIENST",
"lowBandwidthMode": "Λειτουργία χαμηλής ευρυζωνικότητας",
"cameraAudio": {
"enable": "Ενεργοποίηση ήχου Κάμερας",
diff --git a/web/public/locales/el/views/settings.json b/web/public/locales/el/views/settings.json
index 909bc57e6..071e5d10f 100644
--- a/web/public/locales/el/views/settings.json
+++ b/web/public/locales/el/views/settings.json
@@ -1,14 +1,14 @@
{
"documentTitle": {
- "default": "Ρυθμίσεις - Frigate",
- "authentication": "Ρυθμίσεις ελέγχου ταυτοποίησης - Frigate",
- "camera": "Ρυθμίσεις Κάμερας - Frigate",
- "enrichments": "Ρυθμίσεις εμπλουτισμού - Frigate",
- "masksAndZones": "Ρυθμίσεις Μασκών και Ζωνών - Frigate",
- "motionTuner": "Ρύθμιση Κίνησης - Frigate",
- "object": "Επίλυση σφαλμάτων - Frigate",
- "general": "Γενικές ρυθμίσεις - Frigate",
- "frigatePlus": "Ρυθμίσεις Frigate+ - Frigate",
+ "default": "Ρυθμίσεις - DIENST",
+ "authentication": "Ρυθμίσεις ελέγχου ταυτοποίησης - DIENST",
+ "camera": "Ρυθμίσεις Κάμερας - DIENST",
+ "enrichments": "Ρυθμίσεις εμπλουτισμού - DIENST",
+ "masksAndZones": "Ρυθμίσεις Μασκών και Ζωνών - DIENST",
+ "motionTuner": "Ρύθμιση Κίνησης - DIENST",
+ "object": "Επίλυση σφαλμάτων - DIENST",
+ "general": "Γενικές ρυθμίσεις - DIENST",
+ "frigatePlus": "Ρυθμίσεις Frigate+ - DIENST",
"notifications": "Ρυθμίσεις Ειδοποιήσεων"
},
"masksAndZones": {
diff --git a/web/public/locales/el/views/system.json b/web/public/locales/el/views/system.json
index 0ec8ff587..3212764b7 100644
--- a/web/public/locales/el/views/system.json
+++ b/web/public/locales/el/views/system.json
@@ -1,13 +1,13 @@
{
"documentTitle": {
- "cameras": "Στατιστικά Καμερών - Frigate",
- "storage": "Στατιστικά αποθήκευσης - Frigate",
- "general": "Γενικά στατιστικά - Frigate",
- "enrichments": "Στατιστικά Εμπλουτισμού - Frigate",
+ "cameras": "Στατιστικά Καμερών - DIENST",
+ "storage": "Στατιστικά αποθήκευσης - DIENST",
+ "general": "Γενικά στατιστικά - DIENST",
+ "enrichments": "Στατιστικά Εμπλουτισμού - DIENST",
"logs": {
- "frigate": "Frigate αρχέιο καταγραφών - Frigate",
- "go2rtc": "Αρχείο καταγραφής Go2RTC - Frigate",
- "nginx": "Αρχείο καταγραφών Nginx - Frigate"
+ "frigate": "Frigate αρχέιο καταγραφών - DIENST",
+ "go2rtc": "Αρχείο καταγραφής Go2RTC - DIENST",
+ "nginx": "Αρχείο καταγραφών Nginx - DIENST"
}
},
"title": "Σύστημα",
diff --git a/web/public/locales/en/common.json b/web/public/locales/en/common.json
index f66254211..d6fc46bc6 100644
--- a/web/public/locales/en/common.json
+++ b/web/public/locales/en/common.json
@@ -280,12 +280,12 @@
"more": "More pages"
},
"accessDenied": {
- "documentTitle": "Access Denied - Dienst",
+ "documentTitle": "Access Denied - DIENST",
"title": "Access Denied",
"desc": "You don't have permission to view this page."
},
"notFound": {
- "documentTitle": "Not Found - Dienst",
+ "documentTitle": "Not Found - DIENST",
"title": "404",
"desc": "Page not found"
},
diff --git a/web/public/locales/en/views/classificationModel.json b/web/public/locales/en/views/classificationModel.json
index 919ee50aa..b38377910 100644
--- a/web/public/locales/en/views/classificationModel.json
+++ b/web/public/locales/en/views/classificationModel.json
@@ -1,5 +1,5 @@
{
- "documentTitle": "Classification Models - Dienst",
+ "documentTitle": "Classification Models - DIENST",
"details": {
"scoreInfo": "Score represents the average classification confidence across all detections of this object.",
"none": "None",
diff --git a/web/public/locales/en/views/configEditor.json b/web/public/locales/en/views/configEditor.json
index 7a4690117..4db5d370f 100644
--- a/web/public/locales/en/views/configEditor.json
+++ b/web/public/locales/en/views/configEditor.json
@@ -1,5 +1,5 @@
{
- "documentTitle": "Config Editor - Dienst",
+ "documentTitle": "Config Editor - DIENST",
"configEditor": "Config Editor",
"safeConfigEditor": "Config Editor (Safe Mode)",
"safeModeDescription": "Frigate is in safe mode due to a config validation error.",
diff --git a/web/public/locales/en/views/events.json b/web/public/locales/en/views/events.json
index 2c8329ad8..5c38675ac 100644
--- a/web/public/locales/en/views/events.json
+++ b/web/public/locales/en/views/events.json
@@ -37,9 +37,9 @@
"trackedPoint": "Tracked point",
"clickToSeek": "Click to seek to this time"
},
- "documentTitle": "Review - Dienst",
+ "documentTitle": "Review - DIENST",
"recordings": {
- "documentTitle": "Recordings - Dienst"
+ "documentTitle": "Recordings - DIENST"
},
"calendarFilter": {
"last24Hours": "Last 24 Hours"
diff --git a/web/public/locales/en/views/explore.json b/web/public/locales/en/views/explore.json
index d167fbdd2..3c7537a9f 100644
--- a/web/public/locales/en/views/explore.json
+++ b/web/public/locales/en/views/explore.json
@@ -1,5 +1,5 @@
{
- "documentTitle": "Explore - Dienst",
+ "documentTitle": "Explore - DIENST",
"generativeAI": "Generative AI",
"exploreMore": "Explore more {{label}} objects",
"exploreIsUnavailable": {
diff --git a/web/public/locales/en/views/exports.json b/web/public/locales/en/views/exports.json
index 2da571448..cdf269909 100644
--- a/web/public/locales/en/views/exports.json
+++ b/web/public/locales/en/views/exports.json
@@ -1,5 +1,5 @@
{
- "documentTitle": "Export - Dienst",
+ "documentTitle": "Export - DIENST",
"search": "Search",
"noExports": "No exports found",
"deleteExport": "Delete Export",
diff --git a/web/public/locales/en/views/faceLibrary.json b/web/public/locales/en/views/faceLibrary.json
index 91a6e764d..784c3d03d 100644
--- a/web/public/locales/en/views/faceLibrary.json
+++ b/web/public/locales/en/views/faceLibrary.json
@@ -9,7 +9,7 @@
"unknown": "Unknown",
"scoreInfo": "Score is a weighted average of all face scores, weighted by the size of the face in each image."
},
- "documentTitle": "Face Library - Dienst",
+ "documentTitle": "Face Library - DIENST",
"uploadFaceImage": {
"title": "Upload Face Image",
"desc": "Upload an image to scan for faces and include for {{pageToggle}}"
diff --git a/web/public/locales/en/views/live.json b/web/public/locales/en/views/live.json
index 149d5a708..b570bc61f 100644
--- a/web/public/locales/en/views/live.json
+++ b/web/public/locales/en/views/live.json
@@ -1,6 +1,6 @@
{
- "documentTitle": "Live - Dienst",
- "documentTitle.withCamera": "{{camera}} - Live - Dienst",
+ "documentTitle": "Live - DIENST",
+ "documentTitle.withCamera": "{{camera}} - Live - DIENST",
"lowBandwidthMode": "Low-bandwidth Mode",
"twoWayTalk": {
"enable": "Enable Two Way Talk",
diff --git a/web/public/locales/en/views/settings.json b/web/public/locales/en/views/settings.json
index a52c96f21..1654a92f8 100644
--- a/web/public/locales/en/views/settings.json
+++ b/web/public/locales/en/views/settings.json
@@ -1,16 +1,16 @@
{
"documentTitle": {
- "default": "Settings - Dienst",
- "authentication": "Authentication Settings - Dienst",
- "cameraManagement": "Manage Cameras - Dienst",
- "cameraReview": "Camera Review Settings - Dienst",
- "enrichments": "Enrichments Settings - Dienst",
- "masksAndZones": "Mask and Zone Editor - Dienst",
- "motionTuner": "Motion Tuner - Dienst",
- "object": "Debug - Dienst",
- "general": "UI Settings - Dienst",
- "frigatePlus": "Frigate+ Settings - Dienst",
- "notifications": "Notification Settings - Dienst"
+ "default": "Settings - DIENST",
+ "authentication": "Authentication Settings - DIENST",
+ "cameraManagement": "Manage Cameras - DIENST",
+ "cameraReview": "Camera Review Settings - DIENST",
+ "enrichments": "Enrichments Settings - DIENST",
+ "masksAndZones": "Mask and Zone Editor - DIENST",
+ "motionTuner": "Motion Tuner - DIENST",
+ "object": "Debug - DIENST",
+ "general": "UI Settings - DIENST",
+ "frigatePlus": "Frigate+ Settings - DIENST",
+ "notifications": "Notification Settings - DIENST"
},
"menu": {
"ui": "UI",
@@ -488,7 +488,7 @@
},
"zones": {
"label": "Zones",
- "documentTitle": "Edit Zone - Dienst",
+ "documentTitle": "Edit Zone - DIENST",
"desc": {
"title": "Zones allow you to define a specific area of the frame so you can determine whether or not an object is within a particular area.",
"documentation": "Documentation"
@@ -540,7 +540,7 @@
},
"motionMasks": {
"label": "Motion Mask",
- "documentTitle": "Edit Motion Mask - Dienst",
+ "documentTitle": "Edit Motion Mask - DIENST",
"desc": {
"title": "Motion masks are used to prevent unwanted types of motion from triggering detection. Over masking will make it more difficult for objects to be tracked.",
"documentation": "Documentation"
@@ -566,7 +566,7 @@
},
"objectMasks": {
"label": "Object Masks",
- "documentTitle": "Edit Object Mask - Dienst",
+ "documentTitle": "Edit Object Mask - DIENST",
"desc": {
"title": "Object filter masks are used to filter out false positives for a given object type based on location.",
"documentation": "Documentation"
diff --git a/web/public/locales/en/views/system.json b/web/public/locales/en/views/system.json
index c848d0269..a9196a272 100644
--- a/web/public/locales/en/views/system.json
+++ b/web/public/locales/en/views/system.json
@@ -1,13 +1,13 @@
{
"documentTitle": {
- "cameras": "Cameras Stats - Dienst",
- "storage": "Storage Stats - Dienst",
- "general": "General Stats - Dienst",
- "enrichments": "Enrichments Stats - Dienst",
+ "cameras": "Cameras Stats - DIENST",
+ "storage": "Storage Stats - DIENST",
+ "general": "General Stats - DIENST",
+ "enrichments": "Enrichments Stats - DIENST",
"logs": {
- "frigate": "Frigate Logs - Dienst",
- "go2rtc": "Go2RTC Logs - Dienst",
- "nginx": "Nginx Logs - Dienst"
+ "frigate": "Frigate Logs - DIENST",
+ "go2rtc": "Go2RTC Logs - DIENST",
+ "nginx": "Nginx Logs - DIENST"
}
},
"title": "System",
diff --git a/web/public/locales/es/common.json b/web/public/locales/es/common.json
index 9f35ee958..128266640 100644
--- a/web/public/locales/es/common.json
+++ b/web/public/locales/es/common.json
@@ -270,12 +270,12 @@
"more": "Más páginas"
},
"accessDenied": {
- "documentTitle": "Acceso denegado - Frigate",
+ "documentTitle": "Acceso denegado - DIENST",
"desc": "No tienes permiso para ver esta página.",
"title": "Acceso denegado"
},
"notFound": {
- "documentTitle": "No se ha encontrado - Frigate",
+ "documentTitle": "No se ha encontrado - DIENST",
"title": "404",
"desc": "Página no encontrada"
},
diff --git a/web/public/locales/es/views/configEditor.json b/web/public/locales/es/views/configEditor.json
index 3b9f2779e..21afe8c1b 100644
--- a/web/public/locales/es/views/configEditor.json
+++ b/web/public/locales/es/views/configEditor.json
@@ -11,7 +11,7 @@
"savingError": "Error al guardar la configuración"
}
},
- "documentTitle": "Editor de Configuración - Frigate",
+ "documentTitle": "Editor de Configuración - DIENST",
"confirm": "¿Salir sin guardar?",
"safeConfigEditor": "Editor de Configuración (Modo Seguro)",
"safeModeDescription": "Frigate esta en modo seguro debido a un error en la configuración."
diff --git a/web/public/locales/es/views/events.json b/web/public/locales/es/views/events.json
index b2b4001ba..b0448f1eb 100644
--- a/web/public/locales/es/views/events.json
+++ b/web/public/locales/es/views/events.json
@@ -18,7 +18,7 @@
"aria": "Seleccionar eventos",
"noFoundForTimePeriod": "No se encontraron eventos para este período de tiempo."
},
- "documentTitle": "Revisión - Frigate",
+ "documentTitle": "Revisión - DIENST",
"markAsReviewed": "Marcar como revisado",
"newReviewItems": {
"label": "Ver nuevos elementos de revisión",
@@ -26,7 +26,7 @@
},
"camera": "Cámara",
"recordings": {
- "documentTitle": "Grabaciones - Frigate"
+ "documentTitle": "Grabaciones - DIENST"
},
"calendarFilter": {
"last24Hours": "Últimas 24 horas"
diff --git a/web/public/locales/es/views/explore.json b/web/public/locales/es/views/explore.json
index 7fcd50fb0..3fb06ebc3 100644
--- a/web/public/locales/es/views/explore.json
+++ b/web/public/locales/es/views/explore.json
@@ -104,7 +104,7 @@
"label": "Puntuación"
}
},
- "documentTitle": "Explorar - Frigate",
+ "documentTitle": "Explorar - DIENST",
"trackedObjectDetails": "Detalles del objeto rastreado",
"type": {
"snapshot": "captura instantánea",
diff --git a/web/public/locales/es/views/exports.json b/web/public/locales/es/views/exports.json
index 9de2fa330..8277dd570 100644
--- a/web/public/locales/es/views/exports.json
+++ b/web/public/locales/es/views/exports.json
@@ -1,6 +1,6 @@
{
"search": "Búsqueda",
- "documentTitle": "Exportar - Frigate",
+ "documentTitle": "Exportar - DIENST",
"noExports": "No se encontraron exportaciones",
"deleteExport": "Eliminar exportación",
"editExport": {
diff --git a/web/public/locales/es/views/faceLibrary.json b/web/public/locales/es/views/faceLibrary.json
index 25fa983e7..e6dd956e9 100644
--- a/web/public/locales/es/views/faceLibrary.json
+++ b/web/public/locales/es/views/faceLibrary.json
@@ -14,7 +14,7 @@
"scoreInfo": "La puntuación de etiqueta secundaria es la puntuación ponderada de todas las confidencias de rostros reconocidos, por lo que puede diferir de la puntuación mostrada en la instantánea.",
"unknown": "Desconocido"
},
- "documentTitle": "Biblioteca de Rostros - Frigate",
+ "documentTitle": "Biblioteca de Rostros - DIENST",
"uploadFaceImage": {
"title": "Subir imagen del rostro",
"desc": "Sube una imagen para escanear rostros e incluirla en {{pageToggle}}"
diff --git a/web/public/locales/es/views/live.json b/web/public/locales/es/views/live.json
index 3d8c0b0be..42cd150f4 100644
--- a/web/public/locales/es/views/live.json
+++ b/web/public/locales/es/views/live.json
@@ -1,6 +1,6 @@
{
- "documentTitle": "Directo - Frigate",
- "documentTitle.withCamera": "{{camera}} - Directo - Frigate",
+ "documentTitle": "Directo - DIENST",
+ "documentTitle.withCamera": "{{camera}} - Directo - DIENST",
"twoWayTalk": {
"enable": "Habilitar conversación bidireccional",
"disable": "Deshabilitar conversación bidireccional"
diff --git a/web/public/locales/es/views/settings.json b/web/public/locales/es/views/settings.json
index 7fe10b3ff..acff8195b 100644
--- a/web/public/locales/es/views/settings.json
+++ b/web/public/locales/es/views/settings.json
@@ -1,18 +1,18 @@
{
"documentTitle": {
- "masksAndZones": "Editor de máscaras y zonas - Frigate",
- "object": "Depurar - Frigate",
- "default": "Configuración - Frigate",
- "authentication": "Configuración de autenticación - Frigate",
- "camera": "Configuración de cámara - Frigate",
- "motionTuner": "Ajuste de movimiento - Frigate",
- "classification": "Configuración de clasificación - Frigate",
- "general": "Configuración de Interfaz de Usuario - Frigate",
- "frigatePlus": "Configuración de Frigate+ - Frigate",
- "notifications": "Configuración de Notificaciones - Frigate",
- "enrichments": "Configuración de Análisis Avanzado - Frigate",
- "cameraManagement": "Administrar Cámaras - Frigate",
- "cameraReview": "Revisar Configuración de Cámaras - Frigate"
+ "masksAndZones": "Editor de máscaras y zonas - DIENST",
+ "object": "Depurar - DIENST",
+ "default": "Configuración - DIENST",
+ "authentication": "Configuración de autenticación - DIENST",
+ "camera": "Configuración de cámara - DIENST",
+ "motionTuner": "Ajuste de movimiento - DIENST",
+ "classification": "Configuración de clasificación - DIENST",
+ "general": "Configuración de Interfaz de Usuario - DIENST",
+ "frigatePlus": "Configuración de Frigate+ - DIENST",
+ "notifications": "Configuración de Notificaciones - DIENST",
+ "enrichments": "Configuración de Análisis Avanzado - DIENST",
+ "cameraManagement": "Administrar Cámaras - DIENST",
+ "cameraReview": "Revisar Configuración de Cámaras - DIENST"
},
"menu": {
"cameras": "Configuración de Cámara",
@@ -300,7 +300,7 @@
"inputPlaceHolder": "Introduce un nombre…",
"tips": "El nombre debe tener al menos 2 caracteres y no debe ser el nombre de una cámara ni de otra zona."
},
- "documentTitle": "Editar Zona - Frigate",
+ "documentTitle": "Editar Zona - DIENST",
"clickDrawPolygon": "Haz clic para dibujar un polígono en la imagen.",
"speedEstimation": {
"desc": "Habilitar la estimación de velocidad para objetos en esta zona. La zona debe tener exactamente 4 puntos.",
@@ -364,14 +364,14 @@
"title": "{{polygonName}} ha sido guardado. Reinicia Frigate para aplicar los cambios."
}
},
- "documentTitle": "Editar Máscara de Movimiento - Frigate",
+ "documentTitle": "Editar Máscara de Movimiento - DIENST",
"point_one": "{{count}} punto",
"point_many": "{{count}} puntos",
"point_other": "{{count}} puntos"
},
"objectMasks": {
"label": "Máscaras de Objetos",
- "documentTitle": "Editar Máscara de Objetos - Frigate",
+ "documentTitle": "Editar Máscara de Objetos - DIENST",
"desc": {
"documentation": "Documentación",
"title": "Las máscaras de filtro de objetos se utilizan para descartar falsos positivos de un tipo de objeto específico según su ubicación."
diff --git a/web/public/locales/es/views/system.json b/web/public/locales/es/views/system.json
index e54a7802b..85b5b7ef5 100644
--- a/web/public/locales/es/views/system.json
+++ b/web/public/locales/es/views/system.json
@@ -1,14 +1,14 @@
{
"documentTitle": {
- "storage": "Estadísticas de almacenamiento - Frigate",
- "general": "Estadísticas generales - Frigate",
+ "storage": "Estadísticas de almacenamiento - DIENST",
+ "general": "Estadísticas generales - DIENST",
"logs": {
- "frigate": "Registros de Frigate - Frigate",
- "go2rtc": "Registros de Go2RTC - Frigate",
- "nginx": "Registros de Nginx - Frigate"
+ "frigate": "Registros de Frigate - DIENST",
+ "go2rtc": "Registros de Go2RTC - DIENST",
+ "nginx": "Registros de Nginx - DIENST"
},
- "cameras": "Estadísticas de cámaras - Frigate",
- "enrichments": "Estadísticas de Enriquecimientos - Frigate"
+ "cameras": "Estadísticas de cámaras - DIENST",
+ "enrichments": "Estadísticas de Enriquecimientos - DIENST"
},
"logs": {
"copy": {
diff --git a/web/public/locales/et/views/settings.json b/web/public/locales/et/views/settings.json
index 71d987d58..0e5832e13 100644
--- a/web/public/locales/et/views/settings.json
+++ b/web/public/locales/et/views/settings.json
@@ -85,12 +85,12 @@
}
},
"documentTitle": {
- "default": "Seadistused - Frigate",
- "authentication": "Autentimise seadistused - Frigate",
- "cameraReview": "Kaamerate kordusvaatuste seadistused - Frigate",
- "general": "Kasutajaliidese seadistused - Frigate",
- "frigatePlus": "Frigate+ seadistused - Frigate",
- "notifications": "Teavituste seadistused - Frigate"
+ "default": "Seadistused - DIENST",
+ "authentication": "Autentimise seadistused - DIENST",
+ "cameraReview": "Kaamerate kordusvaatuste seadistused - DIENST",
+ "general": "Kasutajaliidese seadistused - DIENST",
+ "frigatePlus": "Frigate+ seadistused - DIENST",
+ "notifications": "Teavituste seadistused - DIENST"
},
"general": {
"title": "Kasutajaliidese seadistused",
diff --git a/web/public/locales/et/views/system.json b/web/public/locales/et/views/system.json
index 2a258b6e6..e57d7bdf6 100644
--- a/web/public/locales/et/views/system.json
+++ b/web/public/locales/et/views/system.json
@@ -1,5 +1,5 @@
{
"documentTitle": {
- "general": "Üldine statistika - Frigate"
+ "general": "Üldine statistika - DIENST"
}
}
diff --git a/web/public/locales/fi/common.json b/web/public/locales/fi/common.json
index 5cebc8939..b18fc1b29 100644
--- a/web/public/locales/fi/common.json
+++ b/web/public/locales/fi/common.json
@@ -57,7 +57,7 @@
"label": "sivutus"
},
"accessDenied": {
- "documentTitle": "Pääsy kielletty - Frigate",
+ "documentTitle": "Pääsy kielletty - DIENST",
"title": "Pääsy kielletty",
"desc": "Sinulla ei ole oikeuksia tarkastella tätä sivua."
},
@@ -68,7 +68,7 @@
"title": "Rooli"
},
"notFound": {
- "documentTitle": "Ei löytynyt - Frigate",
+ "documentTitle": "Ei löytynyt - DIENST",
"title": "404",
"desc": "Sivua ei löytynyt"
},
diff --git a/web/public/locales/fi/views/events.json b/web/public/locales/fi/views/events.json
index 57eb44a80..cb4ce0e29 100644
--- a/web/public/locales/fi/views/events.json
+++ b/web/public/locales/fi/views/events.json
@@ -18,12 +18,12 @@
"aria": "Valitse tapahtumat",
"noFoundForTimePeriod": "Tapahtumia ei löydetty tältä ajanjaksolta."
},
- "documentTitle": "Tarkastelu - Frigate",
+ "documentTitle": "Tarkastelu - DIENST",
"detected": "havaittu",
"selected_one": "{{count}} valittu",
"selected_other": "{{count}} valittu",
"recordings": {
- "documentTitle": "Tallenteet - Frigate"
+ "documentTitle": "Tallenteet - DIENST"
},
"calendarFilter": {
"last24Hours": "Viimeiset 24 tuntia"
diff --git a/web/public/locales/fi/views/faceLibrary.json b/web/public/locales/fi/views/faceLibrary.json
index dc69f3694..3d9dcd4bd 100644
--- a/web/public/locales/fi/views/faceLibrary.json
+++ b/web/public/locales/fi/views/faceLibrary.json
@@ -17,7 +17,7 @@
"face": "Kasvojen yksityiskohdat",
"scoreInfo": "Alatunnisteen pistemäärä on kaikkien tunnistettujen kasvojen varmuustasojen painotettu keskiarvo, joten se voi poiketa tilannekuvassa näkyvästä pistemäärästä."
},
- "documentTitle": "Kasvokirjasto - Frigate",
+ "documentTitle": "Kasvokirjasto - DIENST",
"deleteFaceAttempts": {
"desc_one": "Oletko varma, että haluat poistaa {{count}} kasvon? Tätä toimintoa ei voi perua.",
"desc_other": "Oletko varma, että haluat poistaa {{count}} kasvoa? Tätä toimintoa ei voi perua.",
diff --git a/web/public/locales/fi/views/live.json b/web/public/locales/fi/views/live.json
index d38703565..d9f05d8f7 100644
--- a/web/public/locales/fi/views/live.json
+++ b/web/public/locales/fi/views/live.json
@@ -1,6 +1,6 @@
{
- "documentTitle": "Suora - Frigate",
- "documentTitle.withCamera": "{{camera}} - Suora - Frigate",
+ "documentTitle": "Suora - DIENST",
+ "documentTitle.withCamera": "{{camera}} - Suora - DIENST",
"lowBandwidthMode": "Pienen kaistanleveyden tila",
"twoWayTalk": {
"enable": "Ota käyttöön kaksisuuntainen puhe",
diff --git a/web/public/locales/fi/views/settings.json b/web/public/locales/fi/views/settings.json
index cda27193f..d9aabc10b 100644
--- a/web/public/locales/fi/views/settings.json
+++ b/web/public/locales/fi/views/settings.json
@@ -1,16 +1,16 @@
{
"documentTitle": {
- "camera": "Kamera-asetukset - Frigate",
- "classification": "Klassifiointiasetukset - Frigate",
- "masksAndZones": "Peite ja vyöhykemuokkain - Frigate",
- "motionTuner": "Liikesäädin - Frigate",
- "default": "Asetukset - Frigate",
- "general": "Yleiset asetukset - Frigate",
- "frigatePlus": "Frigate+ asetukset - Frigate",
- "object": "Virheenjäljitys - Frigate",
- "authentication": "Autentikointiuasetukset - Frigate",
- "notifications": "Ilmoitusasetukset - Frigate",
- "enrichments": "Laajennusasetukset – Frigate"
+ "camera": "Kamera-asetukset - DIENST",
+ "classification": "Klassifiointiasetukset - DIENST",
+ "masksAndZones": "Peite ja vyöhykemuokkain - DIENST",
+ "motionTuner": "Liikesäädin - DIENST",
+ "default": "Asetukset - DIENST",
+ "general": "Yleiset asetukset - DIENST",
+ "frigatePlus": "Frigate+ asetukset - DIENST",
+ "object": "Virheenjäljitys - DIENST",
+ "authentication": "Autentikointiuasetukset - DIENST",
+ "notifications": "Ilmoitusasetukset - DIENST",
+ "enrichments": "Laajennusasetukset - DIENST"
},
"menu": {
"ui": "Käyttöliittymä",
@@ -237,7 +237,7 @@
},
"zones": {
"label": "Vyöhykkeet",
- "documentTitle": "Muokkaa vyöhykkeitä - Frigate",
+ "documentTitle": "Muokkaa vyöhykkeitä - DIENST",
"edit": "Myokkaa vyöhykettä",
"inertia": {
"title": "Inertia",
@@ -301,7 +301,7 @@
"documentation": "Lue dokumentaatio",
"title": "Liikepeittoja käytetään estämään ei-toivottujen liiketyyppien (esimerkiksi puiden oksat, kameroiden aikaleimat) aiheuttamat tunnistukset. Liikepeittoja tulisi käyttää hyvin säästeliäästi, sillä liiallinen maskaus vaikeuttaa kohteiden seurantaa."
},
- "documentTitle": "Muokkaa liikepeittoa - Frigate",
+ "documentTitle": "Muokkaa liikepeittoa - DIENST",
"desc": {
"title": "Liikepeittoa käytetään estämään ei-toivottujen liiketyyppien aiheuttamat tunnistukset. Liiallinen peittäminen vaikeuttaa kohteiden seurantaa.",
"documentation": "Dokumentaatio"
@@ -336,7 +336,7 @@
"noName": "Kohdepeitto on tallennettu. Käynnistä Frigatti uudelleen muutosten käyttöönottamiseksi."
}
},
- "documentTitle": "Muokkaa kohdepeittoa - Frigate",
+ "documentTitle": "Muokkaa kohdepeittoa - DIENST",
"desc": {
"title": "Objektisuodatinpeittoja käytetään suodattamaan pois väärät positiiviset tulokset tietylle kohdetyypille sijainnin perusteella.",
"documentation": "Dokumentaatio"
diff --git a/web/public/locales/fi/views/system.json b/web/public/locales/fi/views/system.json
index 04952692e..28b8dc45c 100644
--- a/web/public/locales/fi/views/system.json
+++ b/web/public/locales/fi/views/system.json
@@ -23,14 +23,14 @@
}
},
"documentTitle": {
- "cameras": "Kameroiden tilastot - Frigate",
+ "cameras": "Kameroiden tilastot - DIENST",
"storage": "Tallenteiden tilastot - Fgirage",
- "general": "Yleiset tilastot - Frigate",
- "enrichments": "Rikastetut tilastot - Frigate",
+ "general": "Yleiset tilastot - DIENST",
+ "enrichments": "Rikastetut tilastot - DIENST",
"logs": {
- "frigate": "Frigaten lokit - Frigate",
- "go2rtc": "Go2RTC lokit - Frigate",
- "nginx": "Nginx lokit - Frigate"
+ "frigate": "Frigaten lokit - DIENST",
+ "go2rtc": "Go2RTC lokit - DIENST",
+ "nginx": "Nginx lokit - DIENST"
}
},
"title": "Järjestelmä",
diff --git a/web/public/locales/fr/common.json b/web/public/locales/fr/common.json
index a1132a01e..05286a0cc 100644
--- a/web/public/locales/fr/common.json
+++ b/web/public/locales/fr/common.json
@@ -263,14 +263,14 @@
},
"notFound": {
"title": "404",
- "documentTitle": "Non trouvé - Frigate",
+ "documentTitle": "Non trouvé - DIENST",
"desc": "Page non trouvée"
},
"selectItem": "Sélectionner {{item}}",
"readTheDocumentation": "Lire la documentation",
"accessDenied": {
"title": "Accès refusé",
- "documentTitle": "Accès refusé - Frigate",
+ "documentTitle": "Accès refusé - DIENST",
"desc": "Vous n'avez pas l'autorisation de consulter cette page."
},
"label": {
diff --git a/web/public/locales/fr/views/classificationModel.json b/web/public/locales/fr/views/classificationModel.json
index c18944fb9..e340f9d4e 100644
--- a/web/public/locales/fr/views/classificationModel.json
+++ b/web/public/locales/fr/views/classificationModel.json
@@ -1,5 +1,5 @@
{
- "documentTitle": "Modèles de classification - Frigate",
+ "documentTitle": "Modèles de classification - DIENST",
"button": {
"deleteClassificationAttempts": "Supprimer les images de classification",
"renameCategory": "Renommer la classe",
diff --git a/web/public/locales/fr/views/configEditor.json b/web/public/locales/fr/views/configEditor.json
index 0ab9b2c40..7d26f498d 100644
--- a/web/public/locales/fr/views/configEditor.json
+++ b/web/public/locales/fr/views/configEditor.json
@@ -1,6 +1,6 @@
{
"configEditor": "Éditeur de configuration",
- "documentTitle": "Éditeur de configuration - Frigate",
+ "documentTitle": "Éditeur de configuration - DIENST",
"copyConfig": "Copier la configuration",
"saveOnly": "Enregistrer uniquement",
"saveAndRestart": "Enregistrer et redémarrer",
diff --git a/web/public/locales/fr/views/events.json b/web/public/locales/fr/views/events.json
index 833dc4b2a..07f330e0e 100644
--- a/web/public/locales/fr/views/events.json
+++ b/web/public/locales/fr/views/events.json
@@ -17,9 +17,9 @@
"aria": "Sélectionner les événements",
"noFoundForTimePeriod": "Aucun événement n'a été trouvé pour cette plage de temps."
},
- "documentTitle": "Activités - Frigate",
+ "documentTitle": "Activités - DIENST",
"recordings": {
- "documentTitle": "Enregistrements - Frigate"
+ "documentTitle": "Enregistrements - DIENST"
},
"calendarFilter": {
"last24Hours": "Dernières 24 heures"
diff --git a/web/public/locales/fr/views/explore.json b/web/public/locales/fr/views/explore.json
index 542999b3a..cc917921c 100644
--- a/web/public/locales/fr/views/explore.json
+++ b/web/public/locales/fr/views/explore.json
@@ -1,6 +1,6 @@
{
"generativeAI": "IA générative",
- "documentTitle": "Explorer - Frigate",
+ "documentTitle": "Explorer - DIENST",
"exploreIsUnavailable": {
"title": "L'exploration est indisponible",
"embeddingsReindexing": {
diff --git a/web/public/locales/fr/views/exports.json b/web/public/locales/fr/views/exports.json
index 3b698d003..408777959 100644
--- a/web/public/locales/fr/views/exports.json
+++ b/web/public/locales/fr/views/exports.json
@@ -1,5 +1,5 @@
{
- "documentTitle": "Exports - Frigate",
+ "documentTitle": "Exports - DIENST",
"search": "Rechercher",
"noExports": "Aucune exportation trouvée",
"deleteExport": "Supprimer l'exportation",
diff --git a/web/public/locales/fr/views/faceLibrary.json b/web/public/locales/fr/views/faceLibrary.json
index 7d65a5e91..39aaef7ad 100644
--- a/web/public/locales/fr/views/faceLibrary.json
+++ b/web/public/locales/fr/views/faceLibrary.json
@@ -14,7 +14,7 @@
"scoreInfo": "Le score du sous-libellé correspond au score pondéré de tous les scores de confiance des visages reconnus. Il est donc possible qu'il ne corresponde pas au score affiché sur l'instantané.",
"unknown": "Inconnu"
},
- "documentTitle": "Bibliothèque de visages - Frigate",
+ "documentTitle": "Bibliothèque de visages - DIENST",
"uploadFaceImage": {
"title": "Téléverser l'image du visage",
"desc": "Téléversez une image pour rechercher des visages et l'inclure dans {{pageToggle}}."
diff --git a/web/public/locales/fr/views/live.json b/web/public/locales/fr/views/live.json
index e3edc5a0f..a5b48f54d 100644
--- a/web/public/locales/fr/views/live.json
+++ b/web/public/locales/fr/views/live.json
@@ -1,7 +1,7 @@
{
- "documentTitle": "Direct - Frigate",
+ "documentTitle": "Direct - DIENST",
"lowBandwidthMode": "Mode bande passante faible",
- "documentTitle.withCamera": "{{camera}} - Direct - Frigate",
+ "documentTitle.withCamera": "{{camera}} - Direct - DIENST",
"twoWayTalk": {
"disable": "Désactiver la conversation bidirectionnelle",
"enable": "Activer la conversation bidirectionnelle"
diff --git a/web/public/locales/fr/views/settings.json b/web/public/locales/fr/views/settings.json
index cae223813..d9cf90835 100644
--- a/web/public/locales/fr/views/settings.json
+++ b/web/public/locales/fr/views/settings.json
@@ -1,18 +1,18 @@
{
"documentTitle": {
- "default": "Paramètres - Frigate",
- "authentication": "Paramètres d'authentification - Frigate",
- "camera": "Paramètres des caméras - Frigate",
- "classification": "Paramètres de classification - Frigate",
- "motionTuner": "Réglage de la détection de mouvement - Frigate",
- "general": "Paramètres de l'interface utilisateur - Frigate",
- "masksAndZones": "Éditeur de masques et de zones - Frigate",
- "object": "Débogage - Frigate",
- "frigatePlus": "Paramètres Frigate+ - Frigate",
- "notifications": "Paramètres de notification - Frigate",
- "enrichments": "Paramètres d'enrichissements - Frigate",
- "cameraManagement": "Gestion des caméras - Frigate",
- "cameraReview": "Paramètres des activités caméra - Frigate"
+ "default": "Paramètres - DIENST",
+ "authentication": "Paramètres d'authentification - DIENST",
+ "camera": "Paramètres des caméras - DIENST",
+ "classification": "Paramètres de classification - DIENST",
+ "motionTuner": "Réglage de la détection de mouvement - DIENST",
+ "general": "Paramètres de l'interface utilisateur - DIENST",
+ "masksAndZones": "Éditeur de masques et de zones - DIENST",
+ "object": "Débogage - DIENST",
+ "frigatePlus": "Paramètres Frigate+ - DIENST",
+ "notifications": "Paramètres de notification - DIENST",
+ "enrichments": "Paramètres d'enrichissements - DIENST",
+ "cameraManagement": "Gestion des caméras - DIENST",
+ "cameraReview": "Paramètres des activités caméra - DIENST"
},
"menu": {
"ui": "Interface utilisateur",
@@ -385,7 +385,7 @@
}
},
"zones": {
- "documentTitle": "Modifier la zone - Frigate",
+ "documentTitle": "Modifier la zone - DIENST",
"desc": {
"title": "Les zones vous permettent de définir une zone spécifique de l'image afin de déterminer si un objet s'y trouve.",
"documentation": "Documentation"
@@ -440,7 +440,7 @@
},
"motionMasks": {
"label": "Masque de mouvement",
- "documentTitle": "Modifier le masque de mouvement - Frigate",
+ "documentTitle": "Modifier le masque de mouvement - DIENST",
"context": {
"documentation": "Lire la documentation",
"title": "Les masques de mouvement servent à empêcher les mouvements indésirables de déclencher la détection (par exemple : branches d'arbres, horodatage des caméras). Ils doivent être utilisés avec parcimonie, car un surmasquage complique le suivi des objets."
@@ -490,7 +490,7 @@
"point_many": "{{count}} points",
"point_other": "{{count}} points",
"add": "Ajouter un masque d'objet",
- "documentTitle": "Modifier le masque d'objet - Frigate",
+ "documentTitle": "Modifier le masque d'objet - DIENST",
"context": "Les masques de filtrage d'objets sont utilisés pour filtrer les faux positifs pour un type d'objet donné en fonction de l'emplacement."
},
"filter": {
diff --git a/web/public/locales/fr/views/system.json b/web/public/locales/fr/views/system.json
index 53f12b003..a4c0a8bb2 100644
--- a/web/public/locales/fr/views/system.json
+++ b/web/public/locales/fr/views/system.json
@@ -1,13 +1,13 @@
{
"documentTitle": {
- "storage": "Statistiques de stockage - Frigate",
- "cameras": "Statistiques des caméras - Frigate",
- "general": "Statistiques générales - Frigate",
- "enrichments": "Statistiques d'enrichissements - Frigate",
+ "storage": "Statistiques de stockage - DIENST",
+ "cameras": "Statistiques des caméras - DIENST",
+ "general": "Statistiques générales - DIENST",
+ "enrichments": "Statistiques d'enrichissements - DIENST",
"logs": {
- "frigate": "Journaux de Frigate - Frigate",
- "nginx": "Journaux Nginx - Frigate",
- "go2rtc": "Journaux Go2RTC - Frigate"
+ "frigate": "Journaux de Frigate - DIENST",
+ "nginx": "Journaux Nginx - DIENST",
+ "go2rtc": "Journaux Go2RTC - DIENST"
}
},
"title": "Système",
diff --git a/web/public/locales/gl/views/configEditor.json b/web/public/locales/gl/views/configEditor.json
index 0d84b1a16..2cdcfd097 100644
--- a/web/public/locales/gl/views/configEditor.json
+++ b/web/public/locales/gl/views/configEditor.json
@@ -1,5 +1,5 @@
{
- "documentTitle": "Editor de configuración - Frigate",
+ "documentTitle": "Editor de configuración - DIENST",
"configEditor": "Editor de Preferencias",
"saveOnly": "Só gardar",
"toast": {
diff --git a/web/public/locales/gl/views/explore.json b/web/public/locales/gl/views/explore.json
index 6d381d8b9..9c0d2137c 100644
--- a/web/public/locales/gl/views/explore.json
+++ b/web/public/locales/gl/views/explore.json
@@ -1,5 +1,5 @@
{
- "documentTitle": "Explorar - Frigate",
+ "documentTitle": "Explorar - DIENST",
"generativeAI": "IA xenerativa",
"exploreMore": "Explorar máis obxectos {{label}}",
"exploreIsUnavailable": {
diff --git a/web/public/locales/gl/views/exports.json b/web/public/locales/gl/views/exports.json
index 0b996665b..ee8671664 100644
--- a/web/public/locales/gl/views/exports.json
+++ b/web/public/locales/gl/views/exports.json
@@ -1,5 +1,5 @@
{
- "documentTitle": "Exportar - Frigate",
+ "documentTitle": "Exportar - DIENST",
"search": "Pesquisar",
"deleteExport.desc": "Seguro que queres borrar {{exportName}}?",
"editExport": {
diff --git a/web/public/locales/gl/views/live.json b/web/public/locales/gl/views/live.json
index 4ae0e6a0d..3c296ae8f 100644
--- a/web/public/locales/gl/views/live.json
+++ b/web/public/locales/gl/views/live.json
@@ -1,6 +1,6 @@
{
- "documentTitle": "Directo - Frigate",
- "documentTitle.withCamera": "{{camera}} - Directo - Frigate",
+ "documentTitle": "Directo - DIENST",
+ "documentTitle.withCamera": "{{camera}} - Directo - DIENST",
"twoWayTalk": {
"disable": "Deshabilita a Conversa de dous sentidos",
"enable": "Habilitar a Conversa de dous sentidos"
diff --git a/web/public/locales/gl/views/settings.json b/web/public/locales/gl/views/settings.json
index 6a68c2c05..cc3afbba7 100644
--- a/web/public/locales/gl/views/settings.json
+++ b/web/public/locales/gl/views/settings.json
@@ -1,11 +1,11 @@
{
"documentTitle": {
- "default": "Preferencias - Frigate",
- "authentication": "Configuracións de Autenticación - Frigate",
- "camera": "Configuracións da Cámara - Frigate",
- "general": "Configuracións xerais - Frigate",
- "notifications": "Configuración de Notificacións - Frigate",
- "enrichments": "Configuración complementarias - Frigate",
- "masksAndZones": "Editor de máscaras e zonas - Frigate"
+ "default": "Preferencias - DIENST",
+ "authentication": "Configuracións de Autenticación - DIENST",
+ "camera": "Configuracións da Cámara - DIENST",
+ "general": "Configuracións xerais - DIENST",
+ "notifications": "Configuración de Notificacións - DIENST",
+ "enrichments": "Configuración complementarias - DIENST",
+ "masksAndZones": "Editor de máscaras e zonas - DIENST"
}
}
diff --git a/web/public/locales/gl/views/system.json b/web/public/locales/gl/views/system.json
index 55c595b9b..d15ead60b 100644
--- a/web/public/locales/gl/views/system.json
+++ b/web/public/locales/gl/views/system.json
@@ -1,11 +1,11 @@
{
"documentTitle": {
- "cameras": "Estatísticas de cámaras - Frigate",
- "storage": "Estatísticas de Almacenamento - Frigate",
- "general": "Estatísticas Xerais - Frigate",
- "enrichments": "Estatísticas complementarias - Frigate",
+ "cameras": "Estatísticas de cámaras - DIENST",
+ "storage": "Estatísticas de Almacenamento - DIENST",
+ "general": "Estatísticas Xerais - DIENST",
+ "enrichments": "Estatísticas complementarias - DIENST",
"logs": {
- "frigate": "Rexistros de Frigate - Frigate"
+ "frigate": "Rexistros de Frigate - DIENST"
}
},
"title": "Sistema",
diff --git a/web/public/locales/he/common.json b/web/public/locales/he/common.json
index 813d44e51..ad1107121 100644
--- a/web/public/locales/he/common.json
+++ b/web/public/locales/he/common.json
@@ -262,10 +262,10 @@
"accessDenied": {
"title": "הגישה נדחתה",
"desc": "אין לך הרשאה לצפות בדף הזה.",
- "documentTitle": "גישה נדחתה - Frigate"
+ "documentTitle": "גישה נדחתה - DIENST"
},
"notFound": {
- "documentTitle": "לא נמצא - Frigate",
+ "documentTitle": "לא נמצא - DIENST",
"title": "404",
"desc": "דף לא נמצא"
},
diff --git a/web/public/locales/he/components/dialog.json b/web/public/locales/he/components/dialog.json
index 472d3d541..dc4f9545c 100644
--- a/web/public/locales/he/components/dialog.json
+++ b/web/public/locales/he/components/dialog.json
@@ -1,7 +1,7 @@
{
"restart": {
"title": "האם אתה בטוח שברצונך להפעיל מחדש את Frigate?",
- "button": "הפעלה מחדש - Frigate",
+ "button": "הפעלה מחדש - DIENST",
"restarting": {
"title": "Frigate מופעל מחדש כעת",
"content": "דף זה ייטען מחדש בעוד {{countdown}} שניות.",
diff --git a/web/public/locales/he/views/configEditor.json b/web/public/locales/he/views/configEditor.json
index 535619a34..6462d0c03 100644
--- a/web/public/locales/he/views/configEditor.json
+++ b/web/public/locales/he/views/configEditor.json
@@ -1,5 +1,5 @@
{
- "documentTitle": "עורך הגדרות - Frigate",
+ "documentTitle": "עורך הגדרות - DIENST",
"configEditor": "עורך תצורה",
"copyConfig": "העתקת הגדרות",
"saveAndRestart": "שמירה והפעלה מחדש",
diff --git a/web/public/locales/he/views/events.json b/web/public/locales/he/views/events.json
index fbccbeeb2..56649d1e8 100644
--- a/web/public/locales/he/views/events.json
+++ b/web/public/locales/he/views/events.json
@@ -18,9 +18,9 @@
"aria": "בחירת אירועים",
"noFoundForTimePeriod": "לא נמצאו אירועים עבור תקופת זמן זו."
},
- "documentTitle": "סקירה - Frigate",
+ "documentTitle": "סקירה - DIENST",
"recordings": {
- "documentTitle": "הקלטות - Frigate"
+ "documentTitle": "הקלטות - DIENST"
},
"calendarFilter": {
"last24Hours": "24 שעות אחרונות"
diff --git a/web/public/locales/he/views/exports.json b/web/public/locales/he/views/exports.json
index 93e26a7b8..804cd56c0 100644
--- a/web/public/locales/he/views/exports.json
+++ b/web/public/locales/he/views/exports.json
@@ -5,7 +5,7 @@
"renameExportFailed": "שינוי שם הייצוא נכשל: {{errorMessage}}"
}
},
- "documentTitle": "ייצוא - Frigate",
+ "documentTitle": "ייצוא - DIENST",
"noExports": "לא נמצא יצוא",
"deleteExport": "מחיקת ייצוא",
"deleteExport.desc": "האם אתה בטוח שברצונך למחוק את {{exportName}}?",
diff --git a/web/public/locales/he/views/faceLibrary.json b/web/public/locales/he/views/faceLibrary.json
index 96b248100..81c719e41 100644
--- a/web/public/locales/he/views/faceLibrary.json
+++ b/web/public/locales/he/views/faceLibrary.json
@@ -43,7 +43,7 @@
"unknown": "לא ידוע",
"scoreInfo": "ציון תווית המשנה הוא הציון המשוקלל עבור כל זיהוי הפנים המזוהים, כך שהוא עשוי להיות שונה מהציון המוצג בתמונה."
},
- "documentTitle": "ספריית זיהו פנים - Frigate",
+ "documentTitle": "ספריית זיהו פנים - DIENST",
"uploadFaceImage": {
"title": "העלאת תמונת פנים",
"desc": "העלה תמונה לסריקה לאיתור פנים והכללה {{pageToggle}}"
diff --git a/web/public/locales/he/views/live.json b/web/public/locales/he/views/live.json
index 7b7c53569..c36aa8298 100644
--- a/web/public/locales/he/views/live.json
+++ b/web/public/locales/he/views/live.json
@@ -19,7 +19,7 @@
"ended": "הקלטה ידנית לפי דרישה הסתיימה.",
"failedToEnd": "סיום ההקלטה הידנית לפי דרישה נכשל."
},
- "documentTitle": "שידור חי - Frigate",
+ "documentTitle": "שידור חי - DIENST",
"documentTitle.withCamera": "{{camera}} - שידור חי- Frigate",
"lowBandwidthMode": "מצב רוחב פס נמוך",
"twoWayTalk": {
diff --git a/web/public/locales/he/views/settings.json b/web/public/locales/he/views/settings.json
index e0737aa6e..549a28f97 100644
--- a/web/public/locales/he/views/settings.json
+++ b/web/public/locales/he/views/settings.json
@@ -100,7 +100,7 @@
"objectMaskLabel": "מיסוך אובייקט {{number}} ({{label}})",
"zones": {
"label": "אזורים.",
- "documentTitle": "עריכת אזור - Frigate",
+ "documentTitle": "עריכת אזור - DIENST",
"desc": {
"title": "אזורים מאפשרים לך להגדיר אזור ספציפי בפריים, כך שתוכל לקבוע האם אובייקט נמצא בתוך אזור מסוים או לא.",
"documentation": "תיעוד"
@@ -157,7 +157,7 @@
"point_two": "נקודות {{count}}",
"point_other": "נקודות {{count}}",
"label": "מיסוך תנועה.",
- "documentTitle": "עריכת מיסוך תנועה - Frigate",
+ "documentTitle": "עריכת מיסוך תנועה - DIENST",
"desc": {
"documentation": "תיעוד",
"title": "מיסוך תנועה משמש כדי למנוע זיהוי של תנועה לא רצויה. מיסוך יתר יקשה על מעקב אחר אובייקטים."
@@ -186,7 +186,7 @@
"point_two": "נקודות {{count}}",
"point_other": "נקודות {{count}}",
"label": "מיסוך אובייקט",
- "documentTitle": "עריכת מיסוך אובייקט - Frigate",
+ "documentTitle": "עריכת מיסוך אובייקט - DIENST",
"desc": {
"title": "מיסוך סינון אובייקטים משמש לסינון תוצאות חיוביות שגויות עבור סוג אובייקט נתון בהתבסס על מיקום.",
"documentation": "תיעוד"
@@ -259,18 +259,18 @@
}
},
"documentTitle": {
- "camera": "הגדרת מצלמה - Frigate",
- "enrichments": "הגדרות העשרה - Frigate",
- "masksAndZones": "עריכת מיסוך אזור - Frigate",
- "motionTuner": "כיול תנועה - Frigate",
- "object": "ניפוי שגיאות - Frigate",
- "frigatePlus": "הגדרות +Frigate - Frigate",
- "notifications": "הגדרת התראות - Frigate",
- "authentication": "הגדרות אימות - Frigate",
- "default": "הגדרות - Frigate",
- "general": "הגדרות כלליות - Frigate",
- "cameraManagement": "ניהול מצלמות - Frigate",
- "cameraReview": "הגדרות סקירת מצלמה - Frigate"
+ "camera": "הגדרת מצלמה - DIENST",
+ "enrichments": "הגדרות העשרה - DIENST",
+ "masksAndZones": "עריכת מיסוך אזור - DIENST",
+ "motionTuner": "כיול תנועה - DIENST",
+ "object": "ניפוי שגיאות - DIENST",
+ "frigatePlus": "הגדרות +Frigate - DIENST",
+ "notifications": "הגדרת התראות - DIENST",
+ "authentication": "הגדרות אימות - DIENST",
+ "default": "הגדרות - DIENST",
+ "general": "הגדרות כלליות - DIENST",
+ "cameraManagement": "ניהול מצלמות - DIENST",
+ "cameraReview": "הגדרות סקירת מצלמה - DIENST"
},
"menu": {
"ui": "UI - ממשק משתמש",
diff --git a/web/public/locales/he/views/system.json b/web/public/locales/he/views/system.json
index d30f9437e..27fd368df 100644
--- a/web/public/locales/he/views/system.json
+++ b/web/public/locales/he/views/system.json
@@ -10,14 +10,14 @@
"detectIsVerySlow": "{{detect}} איטי מאוד ({{speed}} אלפיות שנייה)"
},
"documentTitle": {
- "cameras": "מצב מצלמות - Frigate",
- "storage": "מצב אחסון - Frigate",
- "general": "סטטיסטיקה כללית - Frigate",
- "enrichments": "סטטיסטיקת העשרה - Frigate",
+ "cameras": "מצב מצלמות - DIENST",
+ "storage": "מצב אחסון - DIENST",
+ "general": "סטטיסטיקה כללית - DIENST",
+ "enrichments": "סטטיסטיקת העשרה - DIENST",
"logs": {
- "frigate": "לוגים - Frigate",
- "go2rtc": "לוגים - Go2RTC - Frigate",
- "nginx": "לוגים - Nginx - Frigate"
+ "frigate": "לוגים - DIENST",
+ "go2rtc": "לוגים - Go2RTC - DIENST",
+ "nginx": "לוגים - Nginx - DIENST"
}
},
"title": "מערכת",
diff --git a/web/public/locales/hi/views/configEditor.json b/web/public/locales/hi/views/configEditor.json
index 784f8ec46..a31e441aa 100644
--- a/web/public/locales/hi/views/configEditor.json
+++ b/web/public/locales/hi/views/configEditor.json
@@ -11,5 +11,5 @@
"copyToClipboard": "विन्यास क्लिपबोर्ड पर कॉपी कर लिया गया है।"
}
},
- "documentTitle": "विन्यास संपादक - Frigate"
+ "documentTitle": "विन्यास संपादक - DIENST"
}
diff --git a/web/public/locales/hr/views/configEditor.json b/web/public/locales/hr/views/configEditor.json
index 6443eaa83..5d47c4e10 100644
--- a/web/public/locales/hr/views/configEditor.json
+++ b/web/public/locales/hr/views/configEditor.json
@@ -1,3 +1,3 @@
{
- "documentTitle": "Uređivač konfiguracije - Frigate"
+ "documentTitle": "Uređivač konfiguracije - DIENST"
}
diff --git a/web/public/locales/hr/views/explore.json b/web/public/locales/hr/views/explore.json
index c4f84e742..6aa451d77 100644
--- a/web/public/locales/hr/views/explore.json
+++ b/web/public/locales/hr/views/explore.json
@@ -1,3 +1,3 @@
{
- "documentTitle": "Istražite - Frigate"
+ "documentTitle": "Istražite - DIENST"
}
diff --git a/web/public/locales/hr/views/exports.json b/web/public/locales/hr/views/exports.json
index 529e7c42e..aa74e30e5 100644
--- a/web/public/locales/hr/views/exports.json
+++ b/web/public/locales/hr/views/exports.json
@@ -1,4 +1,4 @@
{
- "documentTitle": "Izvoz - Frigate",
+ "documentTitle": "Izvoz - DIENST",
"search": "Pretraga"
}
diff --git a/web/public/locales/hr/views/live.json b/web/public/locales/hr/views/live.json
index 93f59972a..94d7d6ea6 100644
--- a/web/public/locales/hr/views/live.json
+++ b/web/public/locales/hr/views/live.json
@@ -1,3 +1,3 @@
{
- "documentTitle": "Uživo - Frigate"
+ "documentTitle": "Uživo - DIENST"
}
diff --git a/web/public/locales/hr/views/settings.json b/web/public/locales/hr/views/settings.json
index c2153a609..1e8309ee5 100644
--- a/web/public/locales/hr/views/settings.json
+++ b/web/public/locales/hr/views/settings.json
@@ -1,5 +1,5 @@
{
"documentTitle": {
- "default": "Postavke - Frigate"
+ "default": "Postavke - DIENST"
}
}
diff --git a/web/public/locales/hr/views/system.json b/web/public/locales/hr/views/system.json
index 076c823a0..f287dd328 100644
--- a/web/public/locales/hr/views/system.json
+++ b/web/public/locales/hr/views/system.json
@@ -1,5 +1,5 @@
{
"documentTitle": {
- "cameras": "Statistika kamera - Frigate"
+ "cameras": "Statistika kamera - DIENST"
}
}
diff --git a/web/public/locales/hu/common.json b/web/public/locales/hu/common.json
index 99e0450c2..b65a49615 100644
--- a/web/public/locales/hu/common.json
+++ b/web/public/locales/hu/common.json
@@ -193,14 +193,14 @@
"label": "lapozás"
},
"accessDenied": {
- "documentTitle": "Belépés Megtagadva - Frigate",
+ "documentTitle": "Belépés Megtagadva - DIENST",
"title": "Belépés Megtagadva",
"desc": "Nincs jogolultsága ehhez az oldalhoz."
},
"notFound": {
"title": "404",
"desc": "Oldal nem található",
- "documentTitle": "Nem található - Frigate"
+ "documentTitle": "Nem található - DIENST"
},
"toast": {
"copyUrlToClipboard": "URL kimásolva a vágólapra.",
diff --git a/web/public/locales/hu/views/configEditor.json b/web/public/locales/hu/views/configEditor.json
index 69fa822e9..7ccf09c00 100644
--- a/web/public/locales/hu/views/configEditor.json
+++ b/web/public/locales/hu/views/configEditor.json
@@ -1,5 +1,5 @@
{
- "documentTitle": "Konfiguráció Szerkesztő - Frigate",
+ "documentTitle": "Konfiguráció Szerkesztő - DIENST",
"configEditor": "Konfiguráció szerkesztő",
"copyConfig": "Konfiguráció másolása",
"saveAndRestart": "Mentés és Újraindítás",
diff --git a/web/public/locales/hu/views/events.json b/web/public/locales/hu/views/events.json
index abea6b464..5c4b9a7a5 100644
--- a/web/public/locales/hu/views/events.json
+++ b/web/public/locales/hu/views/events.json
@@ -27,9 +27,9 @@
},
"camera": "Kamera",
"timeline.aria": "Válassza ki az idővonalat",
- "documentTitle": "Áttekintés - Frigate",
+ "documentTitle": "Áttekintés - DIENST",
"recordings": {
- "documentTitle": "Felvételek - Frigate"
+ "documentTitle": "Felvételek - DIENST"
},
"markTheseItemsAsReviewed": "Ezen elemek megjelölése áttekintettként",
"markAsReviewed": "Megjelölés Áttekintettként",
diff --git a/web/public/locales/hu/views/explore.json b/web/public/locales/hu/views/explore.json
index cf811cdef..d8dff8524 100644
--- a/web/public/locales/hu/views/explore.json
+++ b/web/public/locales/hu/views/explore.json
@@ -1,5 +1,5 @@
{
- "documentTitle": "Tallózás - Frigate",
+ "documentTitle": "Tallózás - DIENST",
"itemMenu": {
"downloadVideo": {
"label": "Video letöltése",
diff --git a/web/public/locales/hu/views/exports.json b/web/public/locales/hu/views/exports.json
index ab07aba94..453c96b11 100644
--- a/web/public/locales/hu/views/exports.json
+++ b/web/public/locales/hu/views/exports.json
@@ -1,5 +1,5 @@
{
- "documentTitle": "Exportálás - Frigate",
+ "documentTitle": "Exportálás - DIENST",
"search": "Keresés",
"noExports": "Export nem található",
"deleteExport.desc": "Biztos, hogy törölni akarja {{exportName}}-t?",
diff --git a/web/public/locales/hu/views/faceLibrary.json b/web/public/locales/hu/views/faceLibrary.json
index 4f9331f87..ceba2601e 100644
--- a/web/public/locales/hu/views/faceLibrary.json
+++ b/web/public/locales/hu/views/faceLibrary.json
@@ -88,7 +88,7 @@
},
"readTheDocs": "Olvassa el a dokumentációt",
"nofaces": "Nincs elérhető arc",
- "documentTitle": "Arc könyvtár - Frigate",
+ "documentTitle": "Arc könyvtár - DIENST",
"train": {
"title": "Tanít",
"empty": "Nincs friss arcfelismerés",
diff --git a/web/public/locales/hu/views/live.json b/web/public/locales/hu/views/live.json
index b7a5ff967..bd43dfe96 100644
--- a/web/public/locales/hu/views/live.json
+++ b/web/public/locales/hu/views/live.json
@@ -3,9 +3,9 @@
"enable": "Kétirányú kommunikáció engedélyezése",
"disable": "Kétirányú kommunikáció tiltása"
},
- "documentTitle": "Élő - Frigate",
+ "documentTitle": "Élő - DIENST",
"lowBandwidthMode": "Alacsony felbontású mód",
- "documentTitle.withCamera": "{{camera}} - Élő - Frigate",
+ "documentTitle.withCamera": "{{camera}} - Élő - DIENST",
"cameraAudio": {
"disable": "Kamera hangjának kikapcsolása",
"enable": "Kamera hangjának bekapcsolása"
diff --git a/web/public/locales/hu/views/settings.json b/web/public/locales/hu/views/settings.json
index c36e9a53f..7bd1704a7 100644
--- a/web/public/locales/hu/views/settings.json
+++ b/web/public/locales/hu/views/settings.json
@@ -1,18 +1,18 @@
{
"documentTitle": {
- "default": "Beállítások - Frigate",
- "authentication": "Hitelesítési beállítások - Frigate",
- "camera": "Kamera beállítások - Frigate",
- "classification": "Osztályozási beállítások - Frigate",
- "masksAndZones": "Maszk és zónaszerkesztő - Frigate",
- "object": "Hibakeresés - Frigate",
- "general": "Áltlános Beállítások - Frigate",
- "frigatePlus": "Frigate+ beállítások - Frigate",
- "notifications": "Értesítések beállítása - Frigate",
- "motionTuner": "Mozgás Hangoló - Frigate",
- "enrichments": "Kiegészítés Beállítások - Frigate",
- "cameraManagement": "Kamerák kezelése - Frigate",
- "cameraReview": "Kamera beállítások áttekintése – Frigate"
+ "default": "Beállítások - DIENST",
+ "authentication": "Hitelesítési beállítások - DIENST",
+ "camera": "Kamera beállítások - DIENST",
+ "classification": "Osztályozási beállítások - DIENST",
+ "masksAndZones": "Maszk és zónaszerkesztő - DIENST",
+ "object": "Hibakeresés - DIENST",
+ "general": "Áltlános Beállítások - DIENST",
+ "frigatePlus": "Frigate+ beállítások - DIENST",
+ "notifications": "Értesítések beállítása - DIENST",
+ "motionTuner": "Mozgás Hangoló - DIENST",
+ "enrichments": "Kiegészítés Beállítások - DIENST",
+ "cameraManagement": "Kamerák kezelése - DIENST",
+ "cameraReview": "Kamera beállítások áttekintése - DIENST"
},
"menu": {
"ui": "UI",
@@ -357,7 +357,7 @@
},
"edit": "Zóne Módosítása",
"label": "Zónák",
- "documentTitle": "Zóna Módosítása - Frigate",
+ "documentTitle": "Zóna Módosítása - DIENST",
"name": {
"title": "Név",
"tips": "A névnek legalább 2 karakterből kell állnia és nem a kamera neve vagy egy másik zónáé.",
@@ -411,7 +411,7 @@
"documentation": "Dokumentáció",
"title": "Az objektumszűrő maszkokat arra használják, hogy hely alapján kiszűrjék a téves egyezéseket adott objektumtípus esetén."
},
- "documentTitle": "Tárgymaszk módosítása - Frigate",
+ "documentTitle": "Tárgymaszk módosítása - DIENST",
"objects": {
"title": "Tárgyak",
"allObjectTypes": "Minden tárgytípus",
@@ -493,7 +493,7 @@
"title": "A mozgásmaszk a kamera képkockájának {{polygonArea}}%-át fedi le. Nagy mozgásmaszkok használata nem ajánlott.",
"tips": "A mozgásmaszkok nem akadályozzák meg az objektumok észlelését. Ehelyett ajánlott kötelező zónát használni."
},
- "documentTitle": "Mozgási Maszk Módosítása - Frigate",
+ "documentTitle": "Mozgási Maszk Módosítása - DIENST",
"add": "Új Mozgási Maszk",
"point_one": "{{count}} pont",
"point_other": "{{count}} pont",
diff --git a/web/public/locales/hu/views/system.json b/web/public/locales/hu/views/system.json
index fffa798a3..9093c22b9 100644
--- a/web/public/locales/hu/views/system.json
+++ b/web/public/locales/hu/views/system.json
@@ -1,14 +1,14 @@
{
"documentTitle": {
- "cameras": "Kamera statisztikák - Frigate",
- "storage": "Tárhely statisztikák - Frigate",
- "general": "Általános Statisztikák - Frigate",
+ "cameras": "Kamera statisztikák - DIENST",
+ "storage": "Tárhely statisztikák - DIENST",
+ "general": "Általános Statisztikák - DIENST",
"logs": {
- "frigate": "Frigate naplók - Frigate",
- "go2rtc": "Go2RTC naplók - Frigate",
- "nginx": "Nginx naplók - Frigate"
+ "frigate": "Frigate naplók - DIENST",
+ "go2rtc": "Go2RTC naplók - DIENST",
+ "nginx": "Nginx naplók - DIENST"
},
- "enrichments": "Kiegészítés statisztikák - Frigate"
+ "enrichments": "Kiegészítés statisztikák - DIENST"
},
"cameras": {
"label": {
diff --git a/web/public/locales/id/views/configEditor.json b/web/public/locales/id/views/configEditor.json
index a4d7baeaa..93aba0797 100644
--- a/web/public/locales/id/views/configEditor.json
+++ b/web/public/locales/id/views/configEditor.json
@@ -1,5 +1,5 @@
{
- "documentTitle": "Editor Konfigurasi - Frigate",
+ "documentTitle": "Editor Konfigurasi - DIENST",
"configEditor": "Editor Konfigurasi",
"copyConfig": "Salin Konfigurasi",
"saveAndRestart": "Simpan dan Mulai ulang",
diff --git a/web/public/locales/id/views/events.json b/web/public/locales/id/views/events.json
index 94ee3d47d..7fa8d8d96 100644
--- a/web/public/locales/id/views/events.json
+++ b/web/public/locales/id/views/events.json
@@ -37,9 +37,9 @@
"trackedPoint": "Titik terlacak",
"clickToSeek": "Klik untuk mencari waktu ini"
},
- "documentTitle": "Tinjauan - Frigate",
+ "documentTitle": "Tinjauan - DIENST",
"recordings": {
- "documentTitle": "Rekaman - Frigate"
+ "documentTitle": "Rekaman - DIENST"
},
"calendarFilter": {
"last24Hours": "24 Jam Terakhir"
diff --git a/web/public/locales/id/views/explore.json b/web/public/locales/id/views/explore.json
index de062e132..c37c023e5 100644
--- a/web/public/locales/id/views/explore.json
+++ b/web/public/locales/id/views/explore.json
@@ -1,5 +1,5 @@
{
- "documentTitle": "Jelajahi - Frigate",
+ "documentTitle": "Jelajahi - DIENST",
"generativeAI": "AI Generatif",
"exploreIsUnavailable": {
"title": "Penelusuran tidak tersedia",
diff --git a/web/public/locales/id/views/exports.json b/web/public/locales/id/views/exports.json
index 043c313de..a78025180 100644
--- a/web/public/locales/id/views/exports.json
+++ b/web/public/locales/id/views/exports.json
@@ -1,5 +1,5 @@
{
- "documentTitle": "Expor - Frigate",
+ "documentTitle": "Expor - DIENST",
"search": "Cari",
"noExports": "Ekspor tidak ditemukan",
"deleteExport": "Hapus Ekspor",
diff --git a/web/public/locales/id/views/faceLibrary.json b/web/public/locales/id/views/faceLibrary.json
index bde637fa0..592de0526 100644
--- a/web/public/locales/id/views/faceLibrary.json
+++ b/web/public/locales/id/views/faceLibrary.json
@@ -13,7 +13,7 @@
"unknown": "Tidak diketahui",
"faceDesc": "Detail objek terlacak yang menghasilkan wajah ini"
},
- "documentTitle": "Perpustakaan Wajah - Frigate",
+ "documentTitle": "Perpustakaan Wajah - DIENST",
"collections": "Koleksi",
"createFaceLibrary": {
"desc": "Buat koleksi baru",
diff --git a/web/public/locales/id/views/live.json b/web/public/locales/id/views/live.json
index 97a733541..ae1c5037d 100644
--- a/web/public/locales/id/views/live.json
+++ b/web/public/locales/id/views/live.json
@@ -1,6 +1,6 @@
{
- "documentTitle.withCamera": "{{camera}} - Langsung - Frigate",
- "documentTitle": "Langsung - Frigate",
+ "documentTitle.withCamera": "{{camera}} - Langsung - DIENST",
+ "documentTitle": "Langsung - DIENST",
"lowBandwidthMode": "Mode Bandwith-Rendah",
"twoWayTalk": {
"enable": "Nyalakan Komunikasi dua arah",
diff --git a/web/public/locales/id/views/settings.json b/web/public/locales/id/views/settings.json
index 8d1b4dec8..821895bb1 100644
--- a/web/public/locales/id/views/settings.json
+++ b/web/public/locales/id/views/settings.json
@@ -1,15 +1,15 @@
{
"documentTitle": {
- "default": "Pengaturan - Frigate",
- "camera": "Pengaturan Kamera - Frigate",
- "classification": "Pengaturan Klasifikasi - Frigate",
- "authentication": "Pengaturan Autentikasi - Frigate",
- "masksAndZones": "Editor Mask dan Zona - Frigate",
- "motionTuner": "Penyetel Gerakan - Frigate",
+ "default": "Pengaturan - DIENST",
+ "camera": "Pengaturan Kamera - DIENST",
+ "classification": "Pengaturan Klasifikasi - DIENST",
+ "authentication": "Pengaturan Autentikasi - DIENST",
+ "masksAndZones": "Editor Mask dan Zona - DIENST",
+ "motionTuner": "Penyetel Gerakan - DIENST",
"general": "Frigate - Pengaturan Umum",
- "object": "Debug - Frigate",
+ "object": "Debug - DIENST",
"enrichments": "Frigate - Pengaturan Pengayaan",
- "cameraManagement": "Pengaturan Kamera - Frigate"
+ "cameraManagement": "Pengaturan Kamera - DIENST"
},
"menu": {
"cameraManagement": "Pengaturan",
diff --git a/web/public/locales/id/views/system.json b/web/public/locales/id/views/system.json
index 183e7ca34..37295a01c 100644
--- a/web/public/locales/id/views/system.json
+++ b/web/public/locales/id/views/system.json
@@ -1,13 +1,13 @@
{
"documentTitle": {
- "cameras": "Status kamera - Frigate",
- "storage": "Status Penyimpanan - Frigate",
- "general": "Status umum - Frigate",
- "enrichments": "Statistik Enrichment - Frigate",
+ "cameras": "Status kamera - DIENST",
+ "storage": "Status Penyimpanan - DIENST",
+ "general": "Status umum - DIENST",
+ "enrichments": "Statistik Enrichment - DIENST",
"logs": {
- "frigate": "Log Frigate - Frigate",
- "go2rtc": "Log Go2RTC - Frigate",
- "nginx": "Log NGINX - Frigate"
+ "frigate": "Log Frigate - DIENST",
+ "go2rtc": "Log Go2RTC - DIENST",
+ "nginx": "Log NGINX - DIENST"
}
},
"title": "Sistem",
diff --git a/web/public/locales/it/common.json b/web/public/locales/it/common.json
index 7fc7fc2bf..a50dcb2f8 100644
--- a/web/public/locales/it/common.json
+++ b/web/public/locales/it/common.json
@@ -279,12 +279,12 @@
},
"accessDenied": {
"desc": "Non hai i permessi per visualizzare questa pagina.",
- "documentTitle": "Accesso vietato - Frigate",
+ "documentTitle": "Accesso vietato - DIENST",
"title": "Accesso vietato"
},
"notFound": {
"desc": "Pagina non trovata",
- "documentTitle": "Non trovato - Frigate",
+ "documentTitle": "Non trovato - DIENST",
"title": "404"
},
"toast": {
diff --git a/web/public/locales/it/views/configEditor.json b/web/public/locales/it/views/configEditor.json
index f53aaed58..04831b0c6 100644
--- a/web/public/locales/it/views/configEditor.json
+++ b/web/public/locales/it/views/configEditor.json
@@ -1,6 +1,6 @@
{
"configEditor": "Editor di configurazione",
- "documentTitle": "Editor di configurazione - Frigate",
+ "documentTitle": "Editor di configurazione - DIENST",
"copyConfig": "Copia configurazione",
"saveAndRestart": "Salva e riavvia",
"saveOnly": "Salva soltanto",
diff --git a/web/public/locales/it/views/events.json b/web/public/locales/it/views/events.json
index d5e861ccf..48ba711ef 100644
--- a/web/public/locales/it/views/events.json
+++ b/web/public/locales/it/views/events.json
@@ -16,7 +16,7 @@
},
"markTheseItemsAsReviewed": "Segna questi elementi come visti",
"markAsReviewed": "Segna come visto",
- "documentTitle": "Rivedi - Frigate",
+ "documentTitle": "Rivedi - DIENST",
"allCameras": "Tutte le camere",
"timeline": "Cronologia",
"timeline.aria": "Seleziona la cronologia",
@@ -26,7 +26,7 @@
"noFoundForTimePeriod": "Nessun evento trovato per questo intervallo."
},
"recordings": {
- "documentTitle": "Registrazioni - Frigate"
+ "documentTitle": "Registrazioni - DIENST"
},
"calendarFilter": {
"last24Hours": "Ultime 24 ore"
diff --git a/web/public/locales/it/views/explore.json b/web/public/locales/it/views/explore.json
index 9277ee993..792c2be4a 100644
--- a/web/public/locales/it/views/explore.json
+++ b/web/public/locales/it/views/explore.json
@@ -1,6 +1,6 @@
{
"generativeAI": "IA Generativa",
- "documentTitle": "Esplora - Frigate",
+ "documentTitle": "Esplora - DIENST",
"exploreIsUnavailable": {
"title": "Esplora non è disponibile",
"embeddingsReindexing": {
diff --git a/web/public/locales/it/views/exports.json b/web/public/locales/it/views/exports.json
index 186647521..12f738cba 100644
--- a/web/public/locales/it/views/exports.json
+++ b/web/public/locales/it/views/exports.json
@@ -1,5 +1,5 @@
{
- "documentTitle": "Esporta - Frigate",
+ "documentTitle": "Esporta - DIENST",
"search": "Cerca",
"noExports": "Nessuna esportazione trovata",
"deleteExport": "Elimina esportazione",
diff --git a/web/public/locales/it/views/faceLibrary.json b/web/public/locales/it/views/faceLibrary.json
index ad47e7bc0..9d9129d1a 100644
--- a/web/public/locales/it/views/faceLibrary.json
+++ b/web/public/locales/it/views/faceLibrary.json
@@ -69,7 +69,7 @@
},
"readTheDocs": "Leggi la documentazione",
"selectFace": "Seleziona volto",
- "documentTitle": "Libreria dei Volti - Frigate",
+ "documentTitle": "Libreria dei Volti - DIENST",
"uploadFaceImage": {
"desc": "Carica un'immagine per scansionare i volti e includerla in {{pageToggle}}",
"title": "Carica l'immagine del volto"
diff --git a/web/public/locales/it/views/live.json b/web/public/locales/it/views/live.json
index c32113e66..83afa2cd4 100644
--- a/web/public/locales/it/views/live.json
+++ b/web/public/locales/it/views/live.json
@@ -1,6 +1,6 @@
{
- "documentTitle": "Dal vivo - Frigate",
- "documentTitle.withCamera": "{{camera}} - Dal vivo - Frigate",
+ "documentTitle": "Dal vivo - DIENST",
+ "documentTitle.withCamera": "{{camera}} - Dal vivo - DIENST",
"lowBandwidthMode": "Modalità a bassa larghezza di banda",
"twoWayTalk": {
"enable": "Abilita audio bidirezionale",
diff --git a/web/public/locales/it/views/settings.json b/web/public/locales/it/views/settings.json
index afaf31078..b89e67f9c 100644
--- a/web/public/locales/it/views/settings.json
+++ b/web/public/locales/it/views/settings.json
@@ -1,18 +1,18 @@
{
"documentTitle": {
- "authentication": "Impostazioni di autenticazione - Frigate",
- "default": "Impostazioni - Frigate",
- "classification": "Impostazioni di classificazione - Frigate",
- "camera": "Impostazioni telecamera - Frigate",
- "masksAndZones": "Editor di maschere e zone - Frigate",
- "motionTuner": "Regolatore di movimento - Frigate",
- "object": "Correzioni - Frigate",
- "general": "Impostazioni interfaccia - Frigate",
- "frigatePlus": "Impostazioni Frigate+ - Frigate",
- "notifications": "Impostazioni di notifiche - Frigate",
- "enrichments": "Impostazioni di miglioramento - Frigate",
- "cameraManagement": "Gestisci telecamere - Frigate",
- "cameraReview": "Impostazioni revisione telecamera - Frigate"
+ "authentication": "Impostazioni di autenticazione - DIENST",
+ "default": "Impostazioni - DIENST",
+ "classification": "Impostazioni di classificazione - DIENST",
+ "camera": "Impostazioni telecamera - DIENST",
+ "masksAndZones": "Editor di maschere e zone - DIENST",
+ "motionTuner": "Regolatore di movimento - DIENST",
+ "object": "Correzioni - DIENST",
+ "general": "Impostazioni interfaccia - DIENST",
+ "frigatePlus": "Impostazioni Frigate+ - DIENST",
+ "notifications": "Impostazioni di notifiche - DIENST",
+ "enrichments": "Impostazioni di miglioramento - DIENST",
+ "cameraManagement": "Gestisci telecamere - DIENST",
+ "cameraReview": "Impostazioni revisione telecamera - DIENST"
},
"frigatePlus": {
"snapshotConfig": {
@@ -139,7 +139,7 @@
"point_one": "{{count}} punto",
"point_many": "{{count}} punti",
"point_other": "{{count}} punti",
- "documentTitle": "Modifica maschera movimento - Frigate",
+ "documentTitle": "Modifica maschera movimento - DIENST",
"add": "Nuova maschera di movimento",
"toast": {
"success": {
@@ -246,7 +246,7 @@
"point_many": "{{count}} punti",
"point_other": "{{count}} punti",
"label": "Zone",
- "documentTitle": "Modifica zona - Frigate",
+ "documentTitle": "Modifica zona - DIENST",
"inertia": {
"title": "Inerzia",
"desc": "Specifica quanti fotogrammi deve avere un oggetto in una zona prima di essere considerato nella zona. Predefinito: 3"
@@ -288,7 +288,7 @@
}
},
"label": "Maschere di oggetti",
- "documentTitle": "Modifica maschera oggetti - Frigate"
+ "documentTitle": "Modifica maschera oggetti - DIENST"
},
"restart_required": "Riavvio richiesto (maschere/zone modificate)",
"motionMaskLabel": "Maschera di movimento {{number}}",
diff --git a/web/public/locales/it/views/system.json b/web/public/locales/it/views/system.json
index b031828e1..5a57c36ed 100644
--- a/web/public/locales/it/views/system.json
+++ b/web/public/locales/it/views/system.json
@@ -1,13 +1,13 @@
{
"documentTitle": {
- "cameras": "Statistiche telecamere - Frigate",
- "enrichments": "Statistiche di miglioramento - Frigate",
- "storage": "Statistiche archiviazione - Frigate",
- "general": "Statistiche generali - Frigate",
+ "cameras": "Statistiche telecamere - DIENST",
+ "enrichments": "Statistiche di miglioramento - DIENST",
+ "storage": "Statistiche archiviazione - DIENST",
+ "general": "Statistiche generali - DIENST",
"logs": {
- "frigate": "Registri Frigate - Frigate",
- "go2rtc": "Registri Go2RTC - Frigate",
- "nginx": "Registri Nginx - Frigate"
+ "frigate": "Registri Frigate - DIENST",
+ "go2rtc": "Registri Go2RTC - DIENST",
+ "nginx": "Registri Nginx - DIENST"
}
},
"logs": {
diff --git a/web/public/locales/ja/common.json b/web/public/locales/ja/common.json
index ba84f3e2f..25c103feb 100644
--- a/web/public/locales/ja/common.json
+++ b/web/public/locales/ja/common.json
@@ -255,12 +255,12 @@
"more": "さらにページ"
},
"accessDenied": {
- "documentTitle": "アクセス拒否 - Frigate",
+ "documentTitle": "アクセス拒否 - DIENST",
"title": "アクセス拒否",
"desc": "このページを表示する権限がありません。"
},
"notFound": {
- "documentTitle": "ページが見つかりません - Frigate",
+ "documentTitle": "ページが見つかりません - DIENST",
"title": "404",
"desc": "ページが見つかりません"
},
diff --git a/web/public/locales/ja/views/configEditor.json b/web/public/locales/ja/views/configEditor.json
index 704c83d0a..c011b1b0e 100644
--- a/web/public/locales/ja/views/configEditor.json
+++ b/web/public/locales/ja/views/configEditor.json
@@ -4,7 +4,7 @@
"saveAndRestart": "保存後再起動",
"saveOnly": "保存",
"confirm": "保存せずに終了しますか?",
- "documentTitle": "設定エディタ - Frigate",
+ "documentTitle": "設定エディタ - DIENST",
"safeConfigEditor": "設定エディタ (セーフモード)",
"safeModeDescription": "Frigate は config の検証エラーによるセーフモードです.",
"toast": {
diff --git a/web/public/locales/ja/views/events.json b/web/public/locales/ja/views/events.json
index b19ad9553..ebb62824b 100644
--- a/web/public/locales/ja/views/events.json
+++ b/web/public/locales/ja/views/events.json
@@ -19,9 +19,9 @@
"aria": "イベントを選択",
"noFoundForTimePeriod": "この期間のイベントは見つかりません。"
},
- "documentTitle": "レビュー - Frigate",
+ "documentTitle": "レビュー - DIENST",
"recordings": {
- "documentTitle": "録画 - Frigate"
+ "documentTitle": "録画 - DIENST"
},
"calendarFilter": {
"last24Hours": "直近24時間"
diff --git a/web/public/locales/ja/views/explore.json b/web/public/locales/ja/views/explore.json
index 3e782f926..b45753bbf 100644
--- a/web/public/locales/ja/views/explore.json
+++ b/web/public/locales/ja/views/explore.json
@@ -1,6 +1,6 @@
{
"generativeAI": "生成AI",
- "documentTitle": "探索 - Frigate",
+ "documentTitle": "探索 - DIENST",
"details": {
"timestamp": "タイムスタンプ",
"item": {
diff --git a/web/public/locales/ja/views/exports.json b/web/public/locales/ja/views/exports.json
index b5107f475..82a9dcf58 100644
--- a/web/public/locales/ja/views/exports.json
+++ b/web/public/locales/ja/views/exports.json
@@ -1,5 +1,5 @@
{
- "documentTitle": "書き出し - Frigate",
+ "documentTitle": "書き出し - DIENST",
"noExports": "書き出しは見つかりません",
"search": "検索",
"deleteExport": "書き出しを削除",
diff --git a/web/public/locales/ja/views/faceLibrary.json b/web/public/locales/ja/views/faceLibrary.json
index f82b4e764..320c43817 100644
--- a/web/public/locales/ja/views/faceLibrary.json
+++ b/web/public/locales/ja/views/faceLibrary.json
@@ -13,7 +13,7 @@
"scoreInfo": "サブラベルスコアは、認識された顔の信頼度の加重スコアです。スナップショットに表示されるスコアとは異なる場合があります。",
"faceDesc": "この顔を生成した追跡オブジェクトの詳細"
},
- "documentTitle": "顔データベース - Frigate",
+ "documentTitle": "顔データベース - DIENST",
"uploadFaceImage": {
"title": "顔画像をアップロード",
"desc": "顔を検出するために画像をアップロードし、{{pageToggle}} に追加します"
diff --git a/web/public/locales/ja/views/live.json b/web/public/locales/ja/views/live.json
index cfcd5739d..e6bb70005 100644
--- a/web/public/locales/ja/views/live.json
+++ b/web/public/locales/ja/views/live.json
@@ -1,6 +1,6 @@
{
- "documentTitle": "ライブ - Frigate",
- "documentTitle.withCamera": "{{camera}} - ライブ - Frigate",
+ "documentTitle": "ライブ - DIENST",
+ "documentTitle.withCamera": "{{camera}} - ライブ - DIENST",
"lowBandwidthMode": "低帯域モード",
"twoWayTalk": {
"enable": "双方向通話を有効化",
diff --git a/web/public/locales/ja/views/settings.json b/web/public/locales/ja/views/settings.json
index 000aac898..615fd6026 100644
--- a/web/public/locales/ja/views/settings.json
+++ b/web/public/locales/ja/views/settings.json
@@ -1,17 +1,17 @@
{
"documentTitle": {
- "authentication": "認証設定 - Frigate",
- "camera": "カメラ設定 - Frigate",
- "default": "設定 - Frigate",
- "enrichments": "高度解析設定 - Frigate",
- "masksAndZones": "マスク/ゾーンエディタ - Frigate",
- "motionTuner": "モーションチューナー - Frigate",
- "object": "デバッグ - Frigate",
- "general": "一般設定 - Frigate",
- "frigatePlus": "Frigate+ 設定 - Frigate",
- "notifications": "通知設定 - Frigate",
- "cameraManagement": "カメラ設定 - Frigate",
- "cameraReview": "カメラレビュー設定 - Frigate"
+ "authentication": "認証設定 - DIENST",
+ "camera": "カメラ設定 - DIENST",
+ "default": "設定 - DIENST",
+ "enrichments": "高度解析設定 - DIENST",
+ "masksAndZones": "マスク/ゾーンエディタ - DIENST",
+ "motionTuner": "モーションチューナー - DIENST",
+ "object": "デバッグ - DIENST",
+ "general": "一般設定 - DIENST",
+ "frigatePlus": "Frigate+ 設定 - DIENST",
+ "notifications": "通知設定 - DIENST",
+ "cameraManagement": "カメラ設定 - DIENST",
+ "cameraReview": "カメラレビュー設定 - DIENST"
},
"menu": {
"ui": "UI",
@@ -284,7 +284,7 @@
},
"zones": {
"label": "ゾーン",
- "documentTitle": "ゾーンを編集 - Frigate",
+ "documentTitle": "ゾーンを編集 - DIENST",
"desc": {
"title": "ゾーンを使うと、フレーム内の特定領域を定義し、オブジェクトがその領域内にいるかどうかを判断できます。",
"documentation": "ドキュメント"
@@ -335,7 +335,7 @@
},
"motionMasks": {
"label": "モーションマスク",
- "documentTitle": "モーションマスクを編集 - Frigate",
+ "documentTitle": "モーションマスクを編集 - DIENST",
"desc": {
"title": "モーションマスクは、望ましくない種類の動きで検出がトリガーされるのを防ぎます。過度なマスクはオブジェクト追跡を困難にします。",
"documentation": "ドキュメント"
@@ -360,7 +360,7 @@
},
"objectMasks": {
"label": "オブジェクトマスク",
- "documentTitle": "オブジェクトマスクを編集 - Frigate",
+ "documentTitle": "オブジェクトマスクを編集 - DIENST",
"desc": {
"title": "オブジェクトフィルタマスクは、位置に基づいて特定のオブジェクトタイプの誤検出を除外するために使用します。",
"documentation": "ドキュメント"
diff --git a/web/public/locales/ja/views/system.json b/web/public/locales/ja/views/system.json
index da57fa7c3..d50c399db 100644
--- a/web/public/locales/ja/views/system.json
+++ b/web/public/locales/ja/views/system.json
@@ -1,13 +1,13 @@
{
"documentTitle": {
- "cameras": "カメラ統計 - Frigate",
- "general": "一般統計 - Frigate",
- "storage": "ストレージ統計 - Frigate",
- "enrichments": "高度解析統計 - Frigate",
+ "cameras": "カメラ統計 - DIENST",
+ "general": "一般統計 - DIENST",
+ "storage": "ストレージ統計 - DIENST",
+ "enrichments": "高度解析統計 - DIENST",
"logs": {
- "frigate": "Frigate ログ - Frigate",
- "go2rtc": "Go2RTC ログ - Frigate",
- "nginx": "Nginx ログ - Frigate"
+ "frigate": "Frigate ログ - DIENST",
+ "go2rtc": "Go2RTC ログ - DIENST",
+ "nginx": "Nginx ログ - DIENST"
}
},
"title": "システム",
diff --git a/web/public/locales/ko/common.json b/web/public/locales/ko/common.json
index e5c8ef9a9..16950421a 100644
--- a/web/public/locales/ko/common.json
+++ b/web/public/locales/ko/common.json
@@ -71,12 +71,12 @@
},
"notFound": {
"title": "404",
- "documentTitle": "찾을 수 없음 - Frigate",
+ "documentTitle": "찾을 수 없음 - DIENST",
"desc": "페이지 찾을 수 없음"
},
"accessDenied": {
"title": "접근 거부",
- "documentTitle": "접근 거부 - Frigate",
+ "documentTitle": "접근 거부 - DIENST",
"desc": "이 페이지 접근 권한이 없습니다."
},
"menu": {
diff --git a/web/public/locales/ko/views/configEditor.json b/web/public/locales/ko/views/configEditor.json
index bb8a84c2a..48ff13277 100644
--- a/web/public/locales/ko/views/configEditor.json
+++ b/web/public/locales/ko/views/configEditor.json
@@ -1,5 +1,5 @@
{
- "documentTitle": "설정 편집기 - Frigate",
+ "documentTitle": "설정 편집기 - DIENST",
"configEditor": "설정 편집기",
"safeConfigEditor": "설정 편집기 (안전 모드)",
"safeModeDescription": "설정 오류로 인해 Frigate가 안전 모드로 전환되었습니다.",
diff --git a/web/public/locales/ko/views/events.json b/web/public/locales/ko/views/events.json
index 971494a81..da6e73644 100644
--- a/web/public/locales/ko/views/events.json
+++ b/web/public/locales/ko/views/events.json
@@ -29,9 +29,9 @@
"trackedPoint": "추적 포인트",
"clickToSeek": "이 시점으로 이동"
},
- "documentTitle": "다시 보기 - Frigate",
+ "documentTitle": "다시 보기 - DIENST",
"recordings": {
- "documentTitle": "녹화 - Frigate"
+ "documentTitle": "녹화 - DIENST"
},
"calendarFilter": {
"last24Hours": "최근 24시간"
diff --git a/web/public/locales/ko/views/explore.json b/web/public/locales/ko/views/explore.json
index 231eade30..fe7718708 100644
--- a/web/public/locales/ko/views/explore.json
+++ b/web/public/locales/ko/views/explore.json
@@ -1,5 +1,5 @@
{
- "documentTitle": "탐색 - Frigate",
+ "documentTitle": "탐색 - DIENST",
"generativeAI": "생성형 AI",
"exploreMore": "{{label}} 더 많은 감지 대상 탐색하기",
"exploreIsUnavailable": {
diff --git a/web/public/locales/ko/views/exports.json b/web/public/locales/ko/views/exports.json
index f4c902602..de63fae9c 100644
--- a/web/public/locales/ko/views/exports.json
+++ b/web/public/locales/ko/views/exports.json
@@ -1,5 +1,5 @@
{
- "documentTitle": "내보내기 - Frigate",
+ "documentTitle": "내보내기 - DIENST",
"search": "검색",
"noExports": "내보내기가 없습니다",
"deleteExport": "내보내기 삭제",
diff --git a/web/public/locales/ko/views/faceLibrary.json b/web/public/locales/ko/views/faceLibrary.json
index e1204d852..f923bd44a 100644
--- a/web/public/locales/ko/views/faceLibrary.json
+++ b/web/public/locales/ko/views/faceLibrary.json
@@ -12,7 +12,7 @@
"unknown": "알 수 없음"
},
"selectItem": "{{item}} 선택",
- "documentTitle": "얼굴 라이브러리 - Frigate",
+ "documentTitle": "얼굴 라이브러리 - DIENST",
"uploadFaceImage": {
"title": "얼굴 사진 올리기"
},
diff --git a/web/public/locales/ko/views/live.json b/web/public/locales/ko/views/live.json
index bfc44d18f..567e24865 100644
--- a/web/public/locales/ko/views/live.json
+++ b/web/public/locales/ko/views/live.json
@@ -1,6 +1,6 @@
{
- "documentTitle": "실시간 보기 - Frigate",
- "documentTitle.withCamera": "{{camera}} - 실시간 보기 - Frigate",
+ "documentTitle": "실시간 보기 - DIENST",
+ "documentTitle.withCamera": "{{camera}} - 실시간 보기 - DIENST",
"lowBandwidthMode": "저대역폭 모드",
"twoWayTalk": {
"enable": "양방향 말하기 활성화",
diff --git a/web/public/locales/ko/views/settings.json b/web/public/locales/ko/views/settings.json
index a5b1d5580..a475461e1 100644
--- a/web/public/locales/ko/views/settings.json
+++ b/web/public/locales/ko/views/settings.json
@@ -22,18 +22,18 @@
}
},
"documentTitle": {
- "default": "설정 - Frigate",
- "authentication": "인증 설정 - Frigate",
- "camera": "카메라 설정 - Frigate",
- "enrichments": "고급 설정 - Frigate",
- "masksAndZones": "마스크와 구역 편집기 - Frigate",
- "motionTuner": "움직임 감지 조정 - Frigate",
- "object": "디버그 - Frigate",
- "general": "일반 설정 - Frigate",
- "frigatePlus": "Frigate+ 설정 - Frigate",
- "notifications": "알림 설정 - Frigate",
- "cameraManagement": "카메라 관리 - Frigate",
- "cameraReview": "카메라 다시보기 설정 - Frigate"
+ "default": "설정 - DIENST",
+ "authentication": "인증 설정 - DIENST",
+ "camera": "카메라 설정 - DIENST",
+ "enrichments": "고급 설정 - DIENST",
+ "masksAndZones": "마스크와 구역 편집기 - DIENST",
+ "motionTuner": "움직임 감지 조정 - DIENST",
+ "object": "디버그 - DIENST",
+ "general": "일반 설정 - DIENST",
+ "frigatePlus": "Frigate+ 설정 - DIENST",
+ "notifications": "알림 설정 - DIENST",
+ "cameraManagement": "카메라 관리 - DIENST",
+ "cameraReview": "카메라 다시보기 설정 - DIENST"
},
"users": {
"table": {
diff --git a/web/public/locales/ko/views/system.json b/web/public/locales/ko/views/system.json
index 4ed89d1ce..3bac1c7fc 100644
--- a/web/public/locales/ko/views/system.json
+++ b/web/public/locales/ko/views/system.json
@@ -1,13 +1,13 @@
{
"documentTitle": {
- "cameras": "카메라 통계 - Frigate",
- "storage": "저장소 통계 - Frigate",
- "general": "기본 통계 - Frigate",
- "enrichments": "고급 통계 - Frigate",
+ "cameras": "카메라 통계 - DIENST",
+ "storage": "저장소 통계 - DIENST",
+ "general": "기본 통계 - DIENST",
+ "enrichments": "고급 통계 - DIENST",
"logs": {
"frigate": "Frigate 로그 -Frigate",
- "go2rtc": "Go2RTC 로그 - Frigate",
- "nginx": "Nginx 로그 - Frigate"
+ "go2rtc": "Go2RTC 로그 - DIENST",
+ "nginx": "Nginx 로그 - DIENST"
}
},
"title": "시스템",
diff --git a/web/public/locales/lt/common.json b/web/public/locales/lt/common.json
index 0930c68da..4212a9250 100644
--- a/web/public/locales/lt/common.json
+++ b/web/public/locales/lt/common.json
@@ -268,12 +268,12 @@
"more": "Daugiau puslapių"
},
"accessDenied": {
- "documentTitle": "Priegai Nesuteikta - Frigate",
+ "documentTitle": "Priegai Nesuteikta - DIENST",
"title": "Prieiga Nesuteikta",
"desc": "Jūs neturite leidimo žiūrėti šį puslapį."
},
"notFound": {
- "documentTitle": "Nerasta - Frigate",
+ "documentTitle": "Nerasta - DIENST",
"title": "404",
"desc": "Puslapis nerastas"
},
diff --git a/web/public/locales/lt/views/configEditor.json b/web/public/locales/lt/views/configEditor.json
index e9c67dcff..cd8c0bb69 100644
--- a/web/public/locales/lt/views/configEditor.json
+++ b/web/public/locales/lt/views/configEditor.json
@@ -1,5 +1,5 @@
{
- "documentTitle": "Konfiguracijos redaktorius - Frigate",
+ "documentTitle": "Konfiguracijos redaktorius - DIENST",
"configEditor": "Konfiguracijos Redaktorius",
"copyConfig": "Kopijuoti Konfiguraciją",
"saveAndRestart": "Išsaugoti ir Perkrauti",
diff --git a/web/public/locales/lt/views/events.json b/web/public/locales/lt/views/events.json
index bd4ab2895..41abe095c 100644
--- a/web/public/locales/lt/views/events.json
+++ b/web/public/locales/lt/views/events.json
@@ -24,9 +24,9 @@
"detection": "Nėra aptikimų peržiūrai",
"motion": "Duomenų apie judesius nėra"
},
- "documentTitle": "Peržiūros - Frigate",
+ "documentTitle": "Peržiūros - DIENST",
"recordings": {
- "documentTitle": "Įrašai - Frigate"
+ "documentTitle": "Įrašai - DIENST"
},
"markAsReviewed": "Pažymėti kaip peržiūrėtą",
"markTheseItemsAsReviewed": "Pažymėti šiuos įrašus kaip peržiūrėtus",
diff --git a/web/public/locales/lt/views/explore.json b/web/public/locales/lt/views/explore.json
index 0186e7365..f1d38ea1c 100644
--- a/web/public/locales/lt/views/explore.json
+++ b/web/public/locales/lt/views/explore.json
@@ -1,5 +1,5 @@
{
- "documentTitle": "Tyrinėti - Frigate",
+ "documentTitle": "Tyrinėti - DIENST",
"generativeAI": "Generatyvinis DI",
"exploreMore": "Apžvelgti daugiau {{label}} objektų",
"exploreIsUnavailable": {
diff --git a/web/public/locales/lt/views/exports.json b/web/public/locales/lt/views/exports.json
index c8b257a54..254bc9a99 100644
--- a/web/public/locales/lt/views/exports.json
+++ b/web/public/locales/lt/views/exports.json
@@ -1,6 +1,6 @@
{
"search": "Paieška",
- "documentTitle": "Eksportuoti - Frigate",
+ "documentTitle": "Eksportuoti - DIENST",
"noExports": "Eksportuotų įrašų nerasta",
"deleteExport": "Ištrinti Eksportuotą Įrašą",
"deleteExport.desc": "Esate įsitikinę, kad norite ištrinti {{exportName}}?",
diff --git a/web/public/locales/lt/views/faceLibrary.json b/web/public/locales/lt/views/faceLibrary.json
index 721e119ce..33f5b2ea7 100644
--- a/web/public/locales/lt/views/faceLibrary.json
+++ b/web/public/locales/lt/views/faceLibrary.json
@@ -54,7 +54,7 @@
"desc": "Esate įsitikinę, kad norite ištrinti kolenkciją vardu {{name}}? Visi susiję veidai bus ištrinti negražinamai.",
"title": "Ištrinti Vardą"
},
- "documentTitle": "Veidų Katalogas - Frigate",
+ "documentTitle": "Veidų Katalogas - DIENST",
"uploadFaceImage": {
"title": "Įkelti Veido Nuotrauką",
"desc": "Įkelti nuotrauką veidų skanavimui ir įtraukti {{pageToggle}}"
diff --git a/web/public/locales/lt/views/live.json b/web/public/locales/lt/views/live.json
index 06f1577f5..bbc55ab35 100644
--- a/web/public/locales/lt/views/live.json
+++ b/web/public/locales/lt/views/live.json
@@ -1,6 +1,6 @@
{
- "documentTitle": "Gyvai - Frigate",
- "documentTitle.withCamera": "{{camera}} - Tiesiogiai - Frigate",
+ "documentTitle": "Gyvai - DIENST",
+ "documentTitle.withCamera": "{{camera}} - Tiesiogiai - DIENST",
"lowBandwidthMode": "Mažo-pralaidumo Rėžimas",
"cameraAudio": {
"enable": "Įgalinti Kamerų Garsą",
diff --git a/web/public/locales/lt/views/settings.json b/web/public/locales/lt/views/settings.json
index 4fcd9cb8f..b27acfcd6 100644
--- a/web/public/locales/lt/views/settings.json
+++ b/web/public/locales/lt/views/settings.json
@@ -1,17 +1,17 @@
{
"documentTitle": {
- "default": "Nustatymai - Frigate",
- "authentication": "Autentifikavimo Nustatymai - Frigate",
- "camera": "Kameros Nustatymai - Frigate",
- "object": "Debug - Frigate",
- "general": "Bendrieji Nustatymai - Frigate",
- "frigatePlus": "Frigate+ Nustatymai - Frigate",
- "notifications": "Pranešimų Nustatymai - Frigate",
- "motionTuner": "Judesio Derinimas - Frigate",
- "enrichments": "Patobulinimų Nustatymai - Frigate",
- "masksAndZones": "Maskavimo ir Zonų redaktorius - Frigate",
- "cameraManagement": "Valdyti Kameras - Frigate",
- "cameraReview": "Kameros Peržiūros Nustatymai - Frigate"
+ "default": "Nustatymai - DIENST",
+ "authentication": "Autentifikavimo Nustatymai - DIENST",
+ "camera": "Kameros Nustatymai - DIENST",
+ "object": "Debug - DIENST",
+ "general": "Bendrieji Nustatymai - DIENST",
+ "frigatePlus": "Frigate+ Nustatymai - DIENST",
+ "notifications": "Pranešimų Nustatymai - DIENST",
+ "motionTuner": "Judesio Derinimas - DIENST",
+ "enrichments": "Patobulinimų Nustatymai - DIENST",
+ "masksAndZones": "Maskavimo ir Zonų redaktorius - DIENST",
+ "cameraManagement": "Valdyti Kameras - DIENST",
+ "cameraReview": "Kameros Peržiūros Nustatymai - DIENST"
},
"menu": {
"ui": "UI",
@@ -223,7 +223,7 @@
"point_few": "{{count}} taškai",
"point_other": "{{count}} taškų",
"label": "Zonos",
- "documentTitle": "Redaguoti Zonas - Frigate",
+ "documentTitle": "Redaguoti Zonas - DIENST",
"desc": {
"title": "Zonos leidžia apibrėžti specifinį kadro plotą tam, kad galėtumėte įvardinti ar objektas yra tam tikrame plote.",
"documentation": "Dokumentacija"
@@ -287,7 +287,7 @@
"title": "Judesio maskuoti dengia {{polygonArea}}% kameros ploto. Didelės judesio maskuotės nerekomenduojamos."
},
"label": "Judesio Maskuotė",
- "documentTitle": "Redaguoti Judesio Maskuotę - Frigate",
+ "documentTitle": "Redaguoti Judesio Maskuotę - DIENST",
"add": "Nauja Judesio Maskuotė",
"edit": "Redaguoti Judesio Maskuotę",
"clickDrawPolygon": "Spragtelti kad piešti poligoną ant atvaizdo.",
@@ -303,7 +303,7 @@
"point_few": "{{count}} taškai",
"point_other": "{{count}} taškų",
"label": "Objekto Maskuotė",
- "documentTitle": "Redaguoti Objekto Maskuotę - Frigate",
+ "documentTitle": "Redaguoti Objekto Maskuotę - DIENST",
"desc": {
"title": "Objektų filtravimo maskuotės naudojamos išfiltruoti klaidingus teigiamus rezultatus pagal vietą parinktam objekto tipui.",
"documentation": "Dokumentacija"
diff --git a/web/public/locales/lt/views/system.json b/web/public/locales/lt/views/system.json
index 8918ad32d..8fb63cb4d 100644
--- a/web/public/locales/lt/views/system.json
+++ b/web/public/locales/lt/views/system.json
@@ -1,14 +1,14 @@
{
"documentTitle": {
- "cameras": "Kamerų Statistika - Frigate",
- "storage": "Saugyklos Statistika - Frigate",
+ "cameras": "Kamerų Statistika - DIENST",
+ "storage": "Saugyklos Statistika - DIENST",
"logs": {
- "frigate": "Frigate Žurnalas - Frigate",
- "go2rtc": "Go2RTC Žurnalas - Frigate",
- "nginx": "Nginx Žurnalas - Frigate"
+ "frigate": "Frigate Žurnalas - DIENST",
+ "go2rtc": "Go2RTC Žurnalas - DIENST",
+ "nginx": "Nginx Žurnalas - DIENST"
},
- "general": "Bendroji Statistika - Frigate",
- "enrichments": "Pagerinimų Statistika - Frigate"
+ "general": "Bendroji Statistika - DIENST",
+ "enrichments": "Pagerinimų Statistika - DIENST"
},
"title": "Sistema",
"metrics": "Sistemos metrikos",
diff --git a/web/public/locales/nb-NO/views/classificationModel.json b/web/public/locales/nb-NO/views/classificationModel.json
index 186312293..1c709afa4 100644
--- a/web/public/locales/nb-NO/views/classificationModel.json
+++ b/web/public/locales/nb-NO/views/classificationModel.json
@@ -1,5 +1,5 @@
{
- "documentTitle": "Klassifiseringsmodeller - Frigate",
+ "documentTitle": "Klassifiseringsmodeller - DIENST",
"button": {
"deleteClassificationAttempts": "Slett klassifiseringsbilder",
"renameCategory": "Omdøp klasse",
diff --git a/web/public/locales/nb-NO/views/configEditor.json b/web/public/locales/nb-NO/views/configEditor.json
index c0c9253fa..c2e1c7572 100644
--- a/web/public/locales/nb-NO/views/configEditor.json
+++ b/web/public/locales/nb-NO/views/configEditor.json
@@ -1,5 +1,5 @@
{
- "documentTitle": "Konfigurasjonsredigering - Frigate",
+ "documentTitle": "Konfigurasjonsredigering - DIENST",
"toast": {
"error": {
"savingError": "Feil ved lagring av konfigurasjon"
diff --git a/web/public/locales/nb-NO/views/events.json b/web/public/locales/nb-NO/views/events.json
index 8c54ca7a2..3f49ca7ae 100644
--- a/web/public/locales/nb-NO/views/events.json
+++ b/web/public/locales/nb-NO/views/events.json
@@ -23,9 +23,9 @@
},
"allCameras": "Alle kameraer",
"timeline.aria": "Velg tidslinje",
- "documentTitle": "Inspeksjon - Frigate",
+ "documentTitle": "Inspeksjon - DIENST",
"recordings": {
- "documentTitle": "Opptak - Frigate"
+ "documentTitle": "Opptak - DIENST"
},
"calendarFilter": {
"last24Hours": "Siste 24 timer"
diff --git a/web/public/locales/nb-NO/views/explore.json b/web/public/locales/nb-NO/views/explore.json
index c6a8e4e73..786d3797e 100644
--- a/web/public/locales/nb-NO/views/explore.json
+++ b/web/public/locales/nb-NO/views/explore.json
@@ -1,5 +1,5 @@
{
- "documentTitle": "Utforsk - Frigate",
+ "documentTitle": "Utforsk - DIENST",
"generativeAI": "Generativ AI",
"exploreIsUnavailable": {
"title": "Utforsk er utilgjengelig",
diff --git a/web/public/locales/nb-NO/views/exports.json b/web/public/locales/nb-NO/views/exports.json
index 4ced2fcdc..b0a75248c 100644
--- a/web/public/locales/nb-NO/views/exports.json
+++ b/web/public/locales/nb-NO/views/exports.json
@@ -1,5 +1,5 @@
{
- "documentTitle": "Eksport - Frigate",
+ "documentTitle": "Eksport - DIENST",
"search": "Søk",
"noExports": "Ingen eksporter funnet",
"deleteExport": "Slett eksport",
diff --git a/web/public/locales/nb-NO/views/live.json b/web/public/locales/nb-NO/views/live.json
index e23fa9baa..f0dc15a45 100644
--- a/web/public/locales/nb-NO/views/live.json
+++ b/web/public/locales/nb-NO/views/live.json
@@ -1,7 +1,7 @@
{
- "documentTitle": "Direkte - Frigate",
+ "documentTitle": "Direkte - DIENST",
"lowBandwidthMode": "Lav båndbreddemodus",
- "documentTitle.withCamera": "{{camera}} - Direkte - Frigate",
+ "documentTitle.withCamera": "{{camera}} - Direkte - DIENST",
"ptz": {
"move": {
"clickMove": {
diff --git a/web/public/locales/nb-NO/views/settings.json b/web/public/locales/nb-NO/views/settings.json
index f2563ccc2..9b9ba2ca4 100644
--- a/web/public/locales/nb-NO/views/settings.json
+++ b/web/public/locales/nb-NO/views/settings.json
@@ -1,18 +1,18 @@
{
"documentTitle": {
- "default": "Innstillinger - Frigate",
- "authentication": "Autentiseringsinnstillinger - Frigate",
- "camera": "Kamerainnstillinger - Frigate",
- "masksAndZones": "Maske- og soneeditor - Frigate",
- "motionTuner": "Bevegelsesjustering - Frigate",
- "object": "Test og feilsøk - Frigate",
- "general": "Innstillinger for brukergrensesnitt - Frigate",
- "classification": "Klassifiseringsinnstillinger - Frigate",
- "frigatePlus": "Frigate+ innstillinger - Frigate",
- "notifications": "Innstillinger for meldingsvarsler - Frigate",
- "enrichments": "Innstillinger for utvidelser - Frigate",
- "cameraManagement": "Administrer kameraer - Frigate",
- "cameraReview": "Innstillinger for kamerainspeksjon - Frigate"
+ "default": "Innstillinger - DIENST",
+ "authentication": "Autentiseringsinnstillinger - DIENST",
+ "camera": "Kamerainnstillinger - DIENST",
+ "masksAndZones": "Maske- og soneeditor - DIENST",
+ "motionTuner": "Bevegelsesjustering - DIENST",
+ "object": "Test og feilsøk - DIENST",
+ "general": "Innstillinger for brukergrensesnitt - DIENST",
+ "classification": "Klassifiseringsinnstillinger - DIENST",
+ "frigatePlus": "Frigate+ innstillinger - DIENST",
+ "notifications": "Innstillinger for meldingsvarsler - DIENST",
+ "enrichments": "Innstillinger for utvidelser - DIENST",
+ "cameraManagement": "Administrer kameraer - DIENST",
+ "cameraReview": "Innstillinger for kamerainspeksjon - DIENST"
},
"menu": {
"classification": "Klassifisering",
@@ -297,7 +297,7 @@
},
"zones": {
"label": "Soner",
- "documentTitle": "Rediger sone - Frigate",
+ "documentTitle": "Rediger sone - DIENST",
"edit": "Rediger sone",
"point_one": "{{count}} punkt",
"point_other": "{{count}} punkter",
@@ -355,7 +355,7 @@
"title": "Bevegelsesmasker brukes til å hindre uønsket type bevegelse fra å utløse deteksjon. For mye maskering kan gjøre det vanskeligere å spore objekter."
},
"add": "Ny bevegelsesmaske",
- "documentTitle": "Rediger bevegelsesmaske - Frigate",
+ "documentTitle": "Rediger bevegelsesmaske - DIENST",
"edit": "Rediger bevegelsesmaske",
"context": {
"title": "Bevegelsesmasker brukes til å hindre uønsket type bevegelse fra å utløse deteksjon (eksempel: tregrener, kameratidsstempler). Bevegelsesmasker bør brukes svært sparsomt. For mye maskering vil gjøre det vanskeligere å spore objekter.",
@@ -381,7 +381,7 @@
"point_one": "{{count}} punkt",
"point_other": "{{count}} punkter",
"label": "Objektmasker",
- "documentTitle": "Rediger objektmaske - Frigate",
+ "documentTitle": "Rediger objektmaske - DIENST",
"desc": {
"title": "Objektfiltermasker brukes for å filtrere ut falske positiver for en gitt objekttype basert på plassering.",
"documentation": "Dokumentasjon"
diff --git a/web/public/locales/nb-NO/views/system.json b/web/public/locales/nb-NO/views/system.json
index 8aaca628a..4206b360c 100644
--- a/web/public/locales/nb-NO/views/system.json
+++ b/web/public/locales/nb-NO/views/system.json
@@ -1,14 +1,14 @@
{
"documentTitle": {
- "cameras": "Kamerastatistikk - Frigate",
- "storage": "Lagringsstatistikk - Frigate",
+ "cameras": "Kamerastatistikk - DIENST",
+ "storage": "Lagringsstatistikk - DIENST",
"logs": {
- "frigate": "Frigate-logger - Frigate",
- "go2rtc": "Go2RTC-logger - Frigate",
- "nginx": "Nginx-logger - Frigate"
+ "frigate": "Frigate-logger - DIENST",
+ "go2rtc": "Go2RTC-logger - DIENST",
+ "nginx": "Nginx-logger - DIENST"
},
- "general": "Generell statistikk - Frigate",
- "enrichments": "Statistikk for utvidelser - Frigate"
+ "general": "Generell statistikk - DIENST",
+ "enrichments": "Statistikk for utvidelser - DIENST"
},
"logs": {
"copy": {
diff --git a/web/public/locales/nl/common.json b/web/public/locales/nl/common.json
index 17d91279c..a1bb8dacc 100644
--- a/web/public/locales/nl/common.json
+++ b/web/public/locales/nl/common.json
@@ -281,14 +281,14 @@
}
},
"accessDenied": {
- "documentTitle": "Toegang geweigerd - Frigate",
+ "documentTitle": "Toegang geweigerd - DIENST",
"desc": "Je hebt geen toestemming om deze pagina te bekijken.",
"title": "Toegang geweigerd"
},
"notFound": {
"desc": "Pagina niet gevonden",
"title": "404",
- "documentTitle": "Niet gevonden - Frigate"
+ "documentTitle": "Niet gevonden - DIENST"
},
"selectItem": "Selecteer {{item}}",
"readTheDocumentation": "Lees de documentatie",
diff --git a/web/public/locales/nl/views/classificationModel.json b/web/public/locales/nl/views/classificationModel.json
index 5674ca30c..cd34a4a76 100644
--- a/web/public/locales/nl/views/classificationModel.json
+++ b/web/public/locales/nl/views/classificationModel.json
@@ -1,5 +1,5 @@
{
- "documentTitle": "Classificatiemodellen - Frigate",
+ "documentTitle": "Classificatiemodellen - DIENST",
"button": {
"deleteClassificationAttempts": "Classificatieafbeeldingen verwijderen",
"renameCategory": "Klasse hernoemen",
diff --git a/web/public/locales/nl/views/configEditor.json b/web/public/locales/nl/views/configEditor.json
index 50a146cb6..242136d55 100644
--- a/web/public/locales/nl/views/configEditor.json
+++ b/web/public/locales/nl/views/configEditor.json
@@ -1,5 +1,5 @@
{
- "documentTitle": "Configuratie-bewerken - Frigate",
+ "documentTitle": "Configuratie-bewerken - DIENST",
"copyConfig": "Configuratie kopiëren",
"saveAndRestart": "Opslaan en opnieuw opstarten",
"toast": {
diff --git a/web/public/locales/nl/views/events.json b/web/public/locales/nl/views/events.json
index 308637378..75e567f79 100644
--- a/web/public/locales/nl/views/events.json
+++ b/web/public/locales/nl/views/events.json
@@ -1,5 +1,5 @@
{
- "documentTitle": "Beoordelen - Frigate",
+ "documentTitle": "Beoordelen - DIENST",
"camera": "Camera",
"newReviewItems": {
"button": "Nieuwe items om te beoordelen",
@@ -7,7 +7,7 @@
},
"timeline.aria": "Selecteer tijdlijn",
"recordings": {
- "documentTitle": "Opnamen - Frigate"
+ "documentTitle": "Opnamen - DIENST"
},
"timeline": "Tijdlijn",
"empty": {
diff --git a/web/public/locales/nl/views/explore.json b/web/public/locales/nl/views/explore.json
index b67bea20c..d2755a1c6 100644
--- a/web/public/locales/nl/views/explore.json
+++ b/web/public/locales/nl/views/explore.json
@@ -86,7 +86,7 @@
"count": "{{first}} van {{second}}",
"trackedPoint": "Volgpunt"
},
- "documentTitle": "Verken - Frigate",
+ "documentTitle": "Verken - DIENST",
"details": {
"item": {
"button": {
diff --git a/web/public/locales/nl/views/exports.json b/web/public/locales/nl/views/exports.json
index b4223a612..bb9664592 100644
--- a/web/public/locales/nl/views/exports.json
+++ b/web/public/locales/nl/views/exports.json
@@ -1,5 +1,5 @@
{
- "documentTitle": "Exporteren - Frigate",
+ "documentTitle": "Exporteren - DIENST",
"search": "Zoek",
"toast": {
"error": {
diff --git a/web/public/locales/nl/views/faceLibrary.json b/web/public/locales/nl/views/faceLibrary.json
index 88ce52e0f..c67c01957 100644
--- a/web/public/locales/nl/views/faceLibrary.json
+++ b/web/public/locales/nl/views/faceLibrary.json
@@ -10,7 +10,7 @@
"subLabelScore": "Score voor sublabel",
"unknown": "Onbekend"
},
- "documentTitle": "Gezichtsbibliotheek - Frigate",
+ "documentTitle": "Gezichtsbibliotheek - DIENST",
"description": {
"placeholder": "Voer een naam in voor deze verzameling",
"addFace": "Voeg een nieuwe collectie toe aan de gezichtenbibliotheek door je eerste afbeelding te uploaden.",
diff --git a/web/public/locales/nl/views/live.json b/web/public/locales/nl/views/live.json
index e6dd73bea..3276395e9 100644
--- a/web/public/locales/nl/views/live.json
+++ b/web/public/locales/nl/views/live.json
@@ -97,8 +97,8 @@
},
"notifications": "Meldingen",
"audio": "Geluid",
- "documentTitle": "Live - Frigate",
- "documentTitle.withCamera": "{{camera}} - Live - Frigate",
+ "documentTitle": "Live - DIENST",
+ "documentTitle.withCamera": "{{camera}} - Live - DIENST",
"autotracking": {
"enable": "Automatisch volgen inschakelen",
"disable": "Automatisch volgen uitschakelen"
diff --git a/web/public/locales/nl/views/settings.json b/web/public/locales/nl/views/settings.json
index fdc439b46..04e5de9ed 100644
--- a/web/public/locales/nl/views/settings.json
+++ b/web/public/locales/nl/views/settings.json
@@ -1,18 +1,18 @@
{
"documentTitle": {
- "default": "Instellingen - Frigate",
- "camera": "Camera-instellingen - Frigate",
- "authentication": "Authenticatie-instellingen - Frigate",
- "motionTuner": "Motion Tuner - Frigate",
- "classification": "Classificatie-instellingen - Frigate",
- "masksAndZones": "Masker- en zone-editor - Frigate",
+ "default": "Instellingen - DIENST",
+ "camera": "Camera-instellingen - DIENST",
+ "authentication": "Authenticatie-instellingen - DIENST",
+ "motionTuner": "Motion Tuner - DIENST",
+ "classification": "Classificatie-instellingen - DIENST",
+ "masksAndZones": "Masker- en zone-editor - DIENST",
"object": "Foutopsporing Frigate",
- "general": "Gebruikersinterface-instellingen - Frigate",
- "frigatePlus": "Frigate+ Instellingen - Frigate",
- "notifications": "Meldingsinstellingen - Frigate",
- "enrichments": "Verrijkingsinstellingen - Frigate",
- "cameraManagement": "Camera's beheren - Frigate",
- "cameraReview": "Camera Review Instellingen - Frigate"
+ "general": "Gebruikersinterface-instellingen - DIENST",
+ "frigatePlus": "Frigate+ Instellingen - DIENST",
+ "notifications": "Meldingsinstellingen - DIENST",
+ "enrichments": "Verrijkingsinstellingen - DIENST",
+ "cameraManagement": "Camera's beheren - DIENST",
+ "cameraReview": "Camera Review Instellingen - DIENST"
},
"menu": {
"ui": "Gebruikersinterface",
@@ -296,7 +296,7 @@
}
},
"zones": {
- "documentTitle": "Bewerkingszone - Frigate",
+ "documentTitle": "Bewerkingszone - DIENST",
"desc": {
"title": "Zones stellen je in staat om een specifiek gedeelte van het beeld te definiëren, zodat je kunt bepalen of een object zich binnen dat gebied bevindt of niet.",
"documentation": "Documentatie"
@@ -350,7 +350,7 @@
},
"motionMasks": {
"label": "Bewegingsmasker",
- "documentTitle": "Bewerken Bewegingsmasker - Frigate",
+ "documentTitle": "Bewerken Bewegingsmasker - DIENST",
"desc": {
"documentation": "Documentatie",
"title": "Bewegingsmaskers worden gebruikt om te voorkomen dat ongewenste vormen van beweging een detectie activeren. Te veel maskeren maakt het moeilijker om objecten te volgen."
@@ -378,7 +378,7 @@
},
"objectMasks": {
"label": "Objectmaskers",
- "documentTitle": "Objectmasker bewerken - Frigate",
+ "documentTitle": "Objectmasker bewerken - DIENST",
"desc": {
"title": "Objectfiltermaskers worden gebruikt om valse positieven uit te filteren voor een bepaald objecttype op basis van locatie.",
"documentation": "Documentatie"
diff --git a/web/public/locales/nl/views/system.json b/web/public/locales/nl/views/system.json
index 94797952c..914e36bc0 100644
--- a/web/public/locales/nl/views/system.json
+++ b/web/public/locales/nl/views/system.json
@@ -1,14 +1,14 @@
{
"documentTitle": {
- "general": "Algemene Statistieken - Frigate",
+ "general": "Algemene Statistieken - DIENST",
"logs": {
- "nginx": "Nginx Logboeken - Frigate",
- "go2rtc": "Go2RTC Logboeken - Frigate",
- "frigate": "Frigate Logboek - Frigate"
+ "nginx": "Nginx Logboeken - DIENST",
+ "go2rtc": "Go2RTC Logboeken - DIENST",
+ "frigate": "Frigate Logboek - DIENST"
},
- "storage": "Opslag Statistieken - Frigate",
- "cameras": "Camera Statistieken - Frigate",
- "enrichments": "Verrijkings Statistieken - Frigate"
+ "storage": "Opslag Statistieken - DIENST",
+ "cameras": "Camera Statistieken - DIENST",
+ "enrichments": "Verrijkings Statistieken - DIENST"
},
"title": "Systeem",
"metrics": "Systeemstatistieken",
diff --git a/web/public/locales/pl/common.json b/web/public/locales/pl/common.json
index 0c68e1813..8504b5d75 100644
--- a/web/public/locales/pl/common.json
+++ b/web/public/locales/pl/common.json
@@ -280,12 +280,12 @@
"accessDenied": {
"title": "Dostęp Zabroniony",
"desc": "Nie masz uprawnień do wyświetlenia tej strony.",
- "documentTitle": "Dostęp Zabroniony - Frigate"
+ "documentTitle": "Dostęp Zabroniony - DIENST"
},
"notFound": {
"title": "404",
"desc": "Strona nie znaleziona",
- "documentTitle": "Nie Znaleziono - Frigate"
+ "documentTitle": "Nie Znaleziono - DIENST"
},
"selectItem": "Wybierz {{item}}",
"toast": {
diff --git a/web/public/locales/pl/views/classificationModel.json b/web/public/locales/pl/views/classificationModel.json
index 0b63b917d..aba85358c 100644
--- a/web/public/locales/pl/views/classificationModel.json
+++ b/web/public/locales/pl/views/classificationModel.json
@@ -1,5 +1,5 @@
{
- "documentTitle": "Modele klasyfikacji - Frigate",
+ "documentTitle": "Modele klasyfikacji - DIENST",
"button": {
"deleteClassificationAttempts": "Usuń obrazy klasyfikacyjne",
"renameCategory": "Zmień nazwę klasy",
diff --git a/web/public/locales/pl/views/configEditor.json b/web/public/locales/pl/views/configEditor.json
index a8c374044..4022d5ea6 100644
--- a/web/public/locales/pl/views/configEditor.json
+++ b/web/public/locales/pl/views/configEditor.json
@@ -1,5 +1,5 @@
{
- "documentTitle": "Edytor konfiguracji - Frigate",
+ "documentTitle": "Edytor konfiguracji - DIENST",
"configEditor": "Edytor konfiguracji",
"copyConfig": "Skopiuj konfigurację",
"toast": {
diff --git a/web/public/locales/pl/views/events.json b/web/public/locales/pl/views/events.json
index cc7b258c6..8a614caa3 100644
--- a/web/public/locales/pl/views/events.json
+++ b/web/public/locales/pl/views/events.json
@@ -19,9 +19,9 @@
"aria": "Wybierz zdarzenia",
"noFoundForTimePeriod": "Brak zdarzeń w tym okresie czasu."
},
- "documentTitle": "Przegląd - Frigate",
+ "documentTitle": "Przegląd - DIENST",
"recordings": {
- "documentTitle": "Nagrania - Frigate"
+ "documentTitle": "Nagrania - DIENST"
},
"markAsReviewed": "Oznacz jako przejrzane",
"markTheseItemsAsReviewed": "Oznacz te elementy jako przejrzane",
diff --git a/web/public/locales/pl/views/explore.json b/web/public/locales/pl/views/explore.json
index 5132a2a63..4d2486d98 100644
--- a/web/public/locales/pl/views/explore.json
+++ b/web/public/locales/pl/views/explore.json
@@ -1,6 +1,6 @@
{
"generativeAI": "Generatywna SI",
- "documentTitle": "Eksploruj - Frigate",
+ "documentTitle": "Eksploruj - DIENST",
"details": {
"timestamp": "Znacznik czasu",
"item": {
diff --git a/web/public/locales/pl/views/exports.json b/web/public/locales/pl/views/exports.json
index b0d41bbc3..206201857 100644
--- a/web/public/locales/pl/views/exports.json
+++ b/web/public/locales/pl/views/exports.json
@@ -1,6 +1,6 @@
{
"search": "Szukaj",
- "documentTitle": "Eksportuj - Frigate",
+ "documentTitle": "Eksportuj - DIENST",
"noExports": "Nie znaleziono eksportów",
"deleteExport": "Usuń eksport",
"deleteExport.desc": "Czy na pewno chcesz usunąć {{exportName}}?",
diff --git a/web/public/locales/pl/views/faceLibrary.json b/web/public/locales/pl/views/faceLibrary.json
index 5edfcba70..b384a0e96 100644
--- a/web/public/locales/pl/views/faceLibrary.json
+++ b/web/public/locales/pl/views/faceLibrary.json
@@ -15,7 +15,7 @@
"scoreInfo": "Ocena podetykiety to ważona ocena uwzględniająca wszystkie rozpoznane twarze i ich poziom rozpoznania , dlatego może się różnić od oceny pokazanej na stopklatce.",
"unknown": "Nieznany"
},
- "documentTitle": "Biblioteka twarzy - Frigate",
+ "documentTitle": "Biblioteka twarzy - DIENST",
"uploadFaceImage": {
"title": "Wgraj zdjęcie twarzy",
"desc": "Wgraj obraz do skanowania twarzy i dołącz do {{pageToggle}}"
diff --git a/web/public/locales/pl/views/live.json b/web/public/locales/pl/views/live.json
index 417354f63..f78a4b435 100644
--- a/web/public/locales/pl/views/live.json
+++ b/web/public/locales/pl/views/live.json
@@ -1,6 +1,6 @@
{
- "documentTitle": "Na żywo - Frigate",
- "documentTitle.withCamera": "{{camera}}- Na żywo - Frigate",
+ "documentTitle": "Na żywo - DIENST",
+ "documentTitle.withCamera": "{{camera}}- Na żywo - DIENST",
"lowBandwidthMode": "Tryb niskiej przepustowości",
"twoWayTalk": {
"enable": "Włącz komunikację dwukierunkową",
diff --git a/web/public/locales/pl/views/settings.json b/web/public/locales/pl/views/settings.json
index 956eb5f02..6e27de7e6 100644
--- a/web/public/locales/pl/views/settings.json
+++ b/web/public/locales/pl/views/settings.json
@@ -84,19 +84,19 @@
}
},
"documentTitle": {
- "default": "Ustawienia - Frigate",
- "camera": "Ustawienia Kamery - Frigate",
- "masksAndZones": "Edytor Masek i Stref - Frigate",
- "frigatePlus": "Ustawienia Frigate+ - Frigate",
- "classification": "Ustawienia Klasyfikacji - Frigate",
- "general": "Ustawienia Interfejsu - Frigate",
- "authentication": "Ustawienia Uwierzytelniania - Frigate",
- "motionTuner": "Konfigurator Ruchu - Frigate",
- "object": "Debug - Frigate",
- "notifications": "Ustawienia powiadomień - Frigate",
- "enrichments": "Ustawienia wzbogacania - Frigate",
- "cameraManagement": "Zarządzanie kamerami – Frigate",
- "cameraReview": "Ustawienia przeglądu kamer - Frigate"
+ "default": "Ustawienia - DIENST",
+ "camera": "Ustawienia Kamery - DIENST",
+ "masksAndZones": "Edytor Masek i Stref - DIENST",
+ "frigatePlus": "Ustawienia Frigate+ - DIENST",
+ "classification": "Ustawienia Klasyfikacji - DIENST",
+ "general": "Ustawienia Interfejsu - DIENST",
+ "authentication": "Ustawienia Uwierzytelniania - DIENST",
+ "motionTuner": "Konfigurator Ruchu - DIENST",
+ "object": "Debug - DIENST",
+ "notifications": "Ustawienia powiadomień - DIENST",
+ "enrichments": "Ustawienia wzbogacania - DIENST",
+ "cameraManagement": "Zarządzanie kamerami - DIENST",
+ "cameraReview": "Ustawienia przeglądu kamer - DIENST"
},
"classification": {
"title": "Ustawienia Klasyfikacji",
@@ -287,7 +287,7 @@
},
"zones": {
"label": "Strefy",
- "documentTitle": "Edytuj Strefę - Frigate",
+ "documentTitle": "Edytuj Strefę - DIENST",
"desc": {
"title": "Strefy pozwalają na zdefiniowanie konkretnych obszarów kadru, dzięki czemu można sprawdzić, czy obiekt znajduje się w danym obszarze.",
"documentation": "Dokumentacja"
@@ -348,7 +348,7 @@
"point_few": "{{count}} punkty",
"point_many": "{{count}} punktów",
"clickDrawPolygon": "Kliknij aby narysować wielokąt na obrazie.",
- "documentTitle": "Edytuj maskę ruchu - Frigate",
+ "documentTitle": "Edytuj maskę ruchu - DIENST",
"add": "Nowa Maska Ruchu",
"polygonAreaTooLarge": {
"tips": "Maski ruchu nie zapobiegają wykrywaniu obiektów. Powinieneś użyć wymaganej strefy zamiast tego.",
@@ -384,7 +384,7 @@
"point_few": "{{count}} punkty",
"point_many": "{{count}} punktów",
"label": "Maski Obiektów",
- "documentTitle": "Edytuj Maskę Obiektu - Frigate",
+ "documentTitle": "Edytuj Maskę Obiektu - DIENST",
"desc": {
"title": "Maski filtrujące obiekty są używane do filtrowania fałszywych detekcji dla danego typu obiektu na podstawie lokalizacji.",
"documentation": "Dokumentacja"
diff --git a/web/public/locales/pl/views/system.json b/web/public/locales/pl/views/system.json
index ba82ea97d..f4872778c 100644
--- a/web/public/locales/pl/views/system.json
+++ b/web/public/locales/pl/views/system.json
@@ -1,13 +1,13 @@
{
"documentTitle": {
- "cameras": "Statystyki kamer - Frigate",
- "storage": "Statystyki Magazynowania - Frigate",
- "general": "Statystyki Ogólne - Frigate",
- "enrichments": "Statystyki Wzbogacania - Frigate",
+ "cameras": "Statystyki kamer - DIENST",
+ "storage": "Statystyki Magazynowania - DIENST",
+ "general": "Statystyki Ogólne - DIENST",
+ "enrichments": "Statystyki Wzbogacania - DIENST",
"logs": {
- "frigate": "Logi Frigate - Frigate",
- "go2rtc": "Logi Go2RTC - Frigate",
- "nginx": "Logi Nginx - Frigate"
+ "frigate": "Logi Frigate - DIENST",
+ "go2rtc": "Logi Go2RTC - DIENST",
+ "nginx": "Logi Nginx - DIENST"
}
},
"general": {
diff --git a/web/public/locales/pt-BR/common.json b/web/public/locales/pt-BR/common.json
index e1ab1e525..fa70a64b0 100644
--- a/web/public/locales/pt-BR/common.json
+++ b/web/public/locales/pt-BR/common.json
@@ -269,12 +269,12 @@
"more": "Mais páginas"
},
"accessDenied": {
- "documentTitle": "Acesso Negado - Frigate",
+ "documentTitle": "Acesso Negado - DIENST",
"title": "Acesso Negado",
"desc": "Você não possui permissão para visualizar essa página."
},
"notFound": {
- "documentTitle": "Não Encontrado - Frigate",
+ "documentTitle": "Não Encontrado - DIENST",
"title": "404",
"desc": "Página não encontrada"
},
diff --git a/web/public/locales/pt-BR/views/configEditor.json b/web/public/locales/pt-BR/views/configEditor.json
index 46c4808cb..491539e55 100644
--- a/web/public/locales/pt-BR/views/configEditor.json
+++ b/web/public/locales/pt-BR/views/configEditor.json
@@ -1,5 +1,5 @@
{
- "documentTitle": "Editor de Configuração - Frigate",
+ "documentTitle": "Editor de Configuração - DIENST",
"configEditor": "Editor de configuração",
"copyConfig": "Copiar Configuração",
"saveAndRestart": "Salvar & Reiniciar",
diff --git a/web/public/locales/pt-BR/views/events.json b/web/public/locales/pt-BR/views/events.json
index 37785ab13..b1a5c7648 100644
--- a/web/public/locales/pt-BR/views/events.json
+++ b/web/public/locales/pt-BR/views/events.json
@@ -19,7 +19,7 @@
"noFoundForTimePeriod": "Nenhum evento encontrado neste período."
},
"recordings": {
- "documentTitle": "Gravações - Frigate"
+ "documentTitle": "Gravações - DIENST"
},
"calendarFilter": {
"last24Hours": "Últimas 24 horas"
@@ -30,7 +30,7 @@
"label": "Ver novos itens para revisão"
},
"selected_one": "{{count}} selecionado(s)",
- "documentTitle": "Revisar - Frigate",
+ "documentTitle": "Revisar - DIENST",
"markAsReviewed": "Marcar como Revisado",
"selected_other": "{{count}} selecionado(s)",
"camera": "Câmera",
diff --git a/web/public/locales/pt-BR/views/explore.json b/web/public/locales/pt-BR/views/explore.json
index bb3e6fdab..afb4f6e87 100644
--- a/web/public/locales/pt-BR/views/explore.json
+++ b/web/public/locales/pt-BR/views/explore.json
@@ -1,5 +1,5 @@
{
- "documentTitle": "Explorar - Frigate",
+ "documentTitle": "Explorar - DIENST",
"generativeAI": "IA Generativa",
"exploreMore": "Explorar mais objetos {{label}}",
"exploreIsUnavailable": {
diff --git a/web/public/locales/pt-BR/views/exports.json b/web/public/locales/pt-BR/views/exports.json
index 12a6dce45..29d378e01 100644
--- a/web/public/locales/pt-BR/views/exports.json
+++ b/web/public/locales/pt-BR/views/exports.json
@@ -1,5 +1,5 @@
{
- "documentTitle": "Exportar - Frigate",
+ "documentTitle": "Exportar - DIENST",
"search": "Buscar",
"noExports": "Nenhuma exportação encontrada",
"deleteExport": "Deletar Exportação",
diff --git a/web/public/locales/pt-BR/views/faceLibrary.json b/web/public/locales/pt-BR/views/faceLibrary.json
index ee3ccde38..13ef8ed81 100644
--- a/web/public/locales/pt-BR/views/faceLibrary.json
+++ b/web/public/locales/pt-BR/views/faceLibrary.json
@@ -61,7 +61,7 @@
"addFace": "Adicione uma nova coleção à Biblioteca Facial subindo a sua primeira imagem.",
"invalidName": "Nome inválido. Nomes podem incluir apenas letras, números, espaços, apóstrofos, sublinhados e hífenes."
},
- "documentTitle": "Biblioteca de rostos - Frigate",
+ "documentTitle": "Biblioteca de rostos - DIENST",
"uploadFaceImage": {
"title": "Carregar imagem facial",
"desc": "Envie uma imagem para escanear por faces e incluir em {{pageToggle}}"
diff --git a/web/public/locales/pt-BR/views/live.json b/web/public/locales/pt-BR/views/live.json
index 8fb79a81a..8aae897c3 100644
--- a/web/public/locales/pt-BR/views/live.json
+++ b/web/public/locales/pt-BR/views/live.json
@@ -1,6 +1,6 @@
{
- "documentTitle": "Ao Vivo - Frigate",
- "documentTitle.withCamera": "{{camera}} - Ao vivo - Frigate",
+ "documentTitle": "Ao Vivo - DIENST",
+ "documentTitle.withCamera": "{{camera}} - Ao vivo - DIENST",
"lowBandwidthMode": "Modo de baixa largura de banda",
"twoWayTalk": {
"enable": "Habilitar Fala em Dois Sentidos",
diff --git a/web/public/locales/pt-BR/views/settings.json b/web/public/locales/pt-BR/views/settings.json
index 541fd8bf4..23e86d895 100644
--- a/web/public/locales/pt-BR/views/settings.json
+++ b/web/public/locales/pt-BR/views/settings.json
@@ -1,17 +1,17 @@
{
"documentTitle": {
- "default": "Configurações - Frigate",
- "authentication": "Configurações de Autenticação - Frigate",
- "camera": "Configurações de Câmera - Frigate",
- "enrichments": "Configurações de Enriquecimento - Frigate",
- "masksAndZones": "Editor de Máscara e Zona - Frigate",
- "motionTuner": "Ajuste de Movimento - Frigate",
- "object": "Debug - Frigate",
- "general": "Configurações de Interface de Usuário - Frigate",
+ "default": "Configurações - DIENST",
+ "authentication": "Configurações de Autenticação - DIENST",
+ "camera": "Configurações de Câmera - DIENST",
+ "enrichments": "Configurações de Enriquecimento - DIENST",
+ "masksAndZones": "Editor de Máscara e Zona - DIENST",
+ "motionTuner": "Ajuste de Movimento - DIENST",
+ "object": "Debug - DIENST",
+ "general": "Configurações de Interface de Usuário - DIENST",
"frigatePlus": "Frigate+ Configurações- Frigate",
- "notifications": "Configurações de notificação - Frigate",
- "cameraManagement": "Gerenciar Câmeras - Frigate",
- "cameraReview": "Configurações de Revisão de Câmera - Frigate"
+ "notifications": "Configurações de notificação - DIENST",
+ "cameraManagement": "Gerenciar Câmeras - DIENST",
+ "cameraReview": "Configurações de Revisão de Câmera - DIENST"
},
"menu": {
"ui": "UI",
@@ -289,7 +289,7 @@
},
"zones": {
"label": "Zonas",
- "documentTitle": "Editar Zona - Frigate",
+ "documentTitle": "Editar Zona - DIENST",
"desc": {
"title": "Zonas permitem que você defina uma área específica do quadro para que você possa determinar se um objeto está ou não em uma área em particular.",
"documentation": "Documentação"
@@ -354,7 +354,7 @@
}
},
"label": "Máscaras de Objeto",
- "documentTitle": "Editar Máscara de Objeto - Frigate",
+ "documentTitle": "Editar Máscara de Objeto - DIENST",
"desc": {
"title": "Máscaras de filtro de objetos são usadas para filtrar falsos positivos para um determinado tipo de objeto baseado na localização.",
"documentation": "Documentação"
@@ -369,7 +369,7 @@
},
"motionMasks": {
"label": "Máscara de Movimento",
- "documentTitle": "Editar Máscara de Movimento - Frigate",
+ "documentTitle": "Editar Máscara de Movimento - DIENST",
"desc": {
"title": "Máscaras de movimento são usadas para prevenir tipos de movimento de ativarem uma detecção. Excesso de mascaramento tornará mais difícil que objetos sejam rastreados.",
"documentation": "Documentação"
diff --git a/web/public/locales/pt-BR/views/system.json b/web/public/locales/pt-BR/views/system.json
index 4875d8015..1edb4a4d0 100644
--- a/web/public/locales/pt-BR/views/system.json
+++ b/web/public/locales/pt-BR/views/system.json
@@ -1,13 +1,13 @@
{
"documentTitle": {
- "cameras": "Estatísticas das Câmeras - Frigate",
- "storage": "Status de Armazenamento - Frigate",
- "general": "Estatísticas Gerais - Frigate",
- "enrichments": "Estatísticas de Enriquecimento - Frigate",
+ "cameras": "Estatísticas das Câmeras - DIENST",
+ "storage": "Status de Armazenamento - DIENST",
+ "general": "Estatísticas Gerais - DIENST",
+ "enrichments": "Estatísticas de Enriquecimento - DIENST",
"logs": {
- "frigate": "Registros Frigate - Frigate",
- "go2rtc": "Registros GoRTC - Frigate",
- "nginx": "Registros Nginx - Frigate"
+ "frigate": "Registros Frigate - DIENST",
+ "go2rtc": "Registros GoRTC - DIENST",
+ "nginx": "Registros Nginx - DIENST"
}
},
"title": "Sistema",
diff --git a/web/public/locales/pt/views/events.json b/web/public/locales/pt/views/events.json
index bb9b2e0ff..41cf9ec71 100644
--- a/web/public/locales/pt/views/events.json
+++ b/web/public/locales/pt/views/events.json
@@ -18,7 +18,7 @@
},
"timeline.aria": "Selecione a linha do tempo",
"alerts": "Alertas",
- "documentTitle": "Análise - Frigate",
+ "documentTitle": "Análise - DIENST",
"recordings": {
"documentTitle": "Frigate - Gravações"
},
diff --git a/web/public/locales/pt/views/exports.json b/web/public/locales/pt/views/exports.json
index f1c441a2e..e50199d6a 100644
--- a/web/public/locales/pt/views/exports.json
+++ b/web/public/locales/pt/views/exports.json
@@ -1,5 +1,5 @@
{
- "documentTitle": "Exportar - Frigate",
+ "documentTitle": "Exportar - DIENST",
"search": "Pesquisar",
"noExports": "Nenhuma exportação encontrada",
"deleteExport": "Excluir exportação",
diff --git a/web/public/locales/pt/views/faceLibrary.json b/web/public/locales/pt/views/faceLibrary.json
index 057e01569..b498d7191 100644
--- a/web/public/locales/pt/views/faceLibrary.json
+++ b/web/public/locales/pt/views/faceLibrary.json
@@ -14,7 +14,7 @@
"subLabelScore": "Pontuação da Subetiqueta",
"unknown": "Desconhecido"
},
- "documentTitle": "Biblioteca de rostos - Frigate",
+ "documentTitle": "Biblioteca de rostos - DIENST",
"uploadFaceImage": {
"title": "Carregar imagem do rosto",
"desc": "Carregue uma imagem para procurar rostos e incluir em {{pageToggle}}"
diff --git a/web/public/locales/pt/views/live.json b/web/public/locales/pt/views/live.json
index 770028a85..1f28c88c6 100644
--- a/web/public/locales/pt/views/live.json
+++ b/web/public/locales/pt/views/live.json
@@ -1,6 +1,6 @@
{
- "documentTitle": "Ao vivo - Frigate",
- "documentTitle.withCamera": "{{camera}} - Ao vivo - Frigate",
+ "documentTitle": "Ao vivo - DIENST",
+ "documentTitle.withCamera": "{{camera}} - Ao vivo - DIENST",
"twoWayTalk": {
"disable": "Desativar conversa bidirecional",
"enable": "Habilitar conversa bidirecional"
diff --git a/web/public/locales/pt/views/settings.json b/web/public/locales/pt/views/settings.json
index 1bab92d78..e55b6a502 100644
--- a/web/public/locales/pt/views/settings.json
+++ b/web/public/locales/pt/views/settings.json
@@ -1,18 +1,18 @@
{
"documentTitle": {
- "camera": "Configurações da câmera - Frigate",
- "classification": "Configurações de classificação - Frigate",
- "masksAndZones": "Editor de máscara e zona - Frigate",
- "motionTuner": "Ajuste de movimento - Frigate",
- "object": "Depuração - Frigate",
- "authentication": "Configurações de autenticação - Frigate",
- "general": "Configurações gerais - Frigate",
- "frigatePlus": "Configurações do Frigate+ - Frigate",
- "default": "Configurações - Frigate",
- "notifications": "Configuração de Notificações - Frigate",
- "enrichments": "Configurações Avançadas - Frigate",
- "cameraManagement": "Gerir Câmaras - Frigate",
- "cameraReview": "Configurações de Revisão de Câmara - Frigate"
+ "camera": "Configurações da câmera - DIENST",
+ "classification": "Configurações de classificação - DIENST",
+ "masksAndZones": "Editor de máscara e zona - DIENST",
+ "motionTuner": "Ajuste de movimento - DIENST",
+ "object": "Depuração - DIENST",
+ "authentication": "Configurações de autenticação - DIENST",
+ "general": "Configurações gerais - DIENST",
+ "frigatePlus": "Configurações do Frigate+ - DIENST",
+ "default": "Configurações - DIENST",
+ "notifications": "Configuração de Notificações - DIENST",
+ "enrichments": "Configurações Avançadas - DIENST",
+ "cameraManagement": "Gerir Câmaras - DIENST",
+ "cameraReview": "Configurações de Revisão de Câmara - DIENST"
},
"menu": {
"ui": "UI",
@@ -278,12 +278,12 @@
}
},
"edit": "Editar Máscara de Movimento",
- "documentTitle": "Editar Máscara de Movimento - Frigate",
+ "documentTitle": "Editar Máscara de Movimento - DIENST",
"add": "Nova Máscara de Movimento"
},
"zones": {
"label": "Zonas",
- "documentTitle": "Editar Zona - Frigate",
+ "documentTitle": "Editar Zona - DIENST",
"desc": {
"documentation": "Documentação",
"title": "As zonas permitem definir uma área específica do quadro para que você possa determinar se um objeto está ou não dentro de uma área particular."
@@ -413,7 +413,7 @@
},
"add": "Adicionar filtro para objecto",
"edit": "Editar filtro de objecto",
- "documentTitle": "Editar filtro de movimento - Frigate",
+ "documentTitle": "Editar filtro de movimento - DIENST",
"toast": {
"success": {
"noName": "A máscara de objeto foi salva. Reinicie o Frigate para aplicar as alterações.",
diff --git a/web/public/locales/ro/common.json b/web/public/locales/ro/common.json
index 3707fc392..46fba19c7 100644
--- a/web/public/locales/ro/common.json
+++ b/web/public/locales/ro/common.json
@@ -281,10 +281,10 @@
"accessDenied": {
"title": "Acces refuzat",
"desc": "Nu ai permisiunea să vizualizezi această pagină.",
- "documentTitle": "Acces refuzat - Frigate"
+ "documentTitle": "Acces refuzat - DIENST"
},
"notFound": {
- "documentTitle": "Nu a fost găsit - Frigate",
+ "documentTitle": "Nu a fost găsit - DIENST",
"title": "404",
"desc": "Pagină negăsită"
},
diff --git a/web/public/locales/ro/views/classificationModel.json b/web/public/locales/ro/views/classificationModel.json
index 47b2c139e..d60955358 100644
--- a/web/public/locales/ro/views/classificationModel.json
+++ b/web/public/locales/ro/views/classificationModel.json
@@ -1,5 +1,5 @@
{
- "documentTitle": "Modele de clasificare - Frigate",
+ "documentTitle": "Modele de clasificare - DIENST",
"button": {
"deleteClassificationAttempts": "Șterge imaginile de clasificare",
"renameCategory": "Redenumește clasa",
diff --git a/web/public/locales/ro/views/configEditor.json b/web/public/locales/ro/views/configEditor.json
index 21f7d4769..23379c7a9 100644
--- a/web/public/locales/ro/views/configEditor.json
+++ b/web/public/locales/ro/views/configEditor.json
@@ -1,5 +1,5 @@
{
- "documentTitle": "Editor de configurație - Frigate",
+ "documentTitle": "Editor de configurație - DIENST",
"configEditor": "Editor de configurație",
"copyConfig": "Copiază setările",
"saveAndRestart": "Salvează și repornește",
diff --git a/web/public/locales/ro/views/events.json b/web/public/locales/ro/views/events.json
index 6a045d1f5..7e104c60e 100644
--- a/web/public/locales/ro/views/events.json
+++ b/web/public/locales/ro/views/events.json
@@ -17,7 +17,7 @@
"noFoundForTimePeriod": "Niciun eveniment gasit pentru acest interval de timp.",
"label": "Evenimente"
},
- "documentTitle": "Revizuieste - Frigate",
+ "documentTitle": "Revizuieste - DIENST",
"recordings": {
"documentTitle": "Inregistrari - frigate"
},
diff --git a/web/public/locales/ro/views/explore.json b/web/public/locales/ro/views/explore.json
index 08eb56561..ee4ea617c 100644
--- a/web/public/locales/ro/views/explore.json
+++ b/web/public/locales/ro/views/explore.json
@@ -1,5 +1,5 @@
{
- "documentTitle": "Căutare - Frigate",
+ "documentTitle": "Căutare - DIENST",
"generativeAI": "AI Generativ",
"exploreIsUnavailable": {
"title": "Explorarea este Indisponibila",
diff --git a/web/public/locales/ro/views/exports.json b/web/public/locales/ro/views/exports.json
index fa9077459..23591c3c8 100644
--- a/web/public/locales/ro/views/exports.json
+++ b/web/public/locales/ro/views/exports.json
@@ -1,6 +1,6 @@
{
"search": "Caută",
- "documentTitle": "Export - Frigate",
+ "documentTitle": "Export - DIENST",
"noExports": "Nu au fost gasite exporturi",
"deleteExport": "Șterge exportul",
"deleteExport.desc": "Ești sigur că vrei să ștergi {{exportName}}?",
diff --git a/web/public/locales/ro/views/faceLibrary.json b/web/public/locales/ro/views/faceLibrary.json
index 360143d5d..52264d9bc 100644
--- a/web/public/locales/ro/views/faceLibrary.json
+++ b/web/public/locales/ro/views/faceLibrary.json
@@ -24,7 +24,7 @@
"new": "Crează o față nouă"
},
"collections": "Colecții",
- "documentTitle": "Bibliotecă fețe - Frigate",
+ "documentTitle": "Bibliotecă fețe - DIENST",
"train": {
"empty": "Nu există încercări recente de recunoaștere facială",
"title": "Recunoașteri Recente",
diff --git a/web/public/locales/ro/views/live.json b/web/public/locales/ro/views/live.json
index 7ddaa53d8..efe8b6f1a 100644
--- a/web/public/locales/ro/views/live.json
+++ b/web/public/locales/ro/views/live.json
@@ -1,6 +1,6 @@
{
"documentTitle": "Frigate - Live",
- "documentTitle.withCamera": "{{camera}} - Frigate - Live",
+ "documentTitle.withCamera": "{{camera}} - DIENST - Live",
"lowBandwidthMode": "Mod Latime de Banda Limitata",
"twoWayTalk": {
"enable": "Activare dialog",
diff --git a/web/public/locales/ro/views/settings.json b/web/public/locales/ro/views/settings.json
index 81b7326c6..041b19c50 100644
--- a/web/public/locales/ro/views/settings.json
+++ b/web/public/locales/ro/views/settings.json
@@ -1,18 +1,18 @@
{
"documentTitle": {
- "authentication": "Setări de autentificare - Frigate",
- "camera": "Setări cameră - Frigate",
- "default": "Setări - Frigate",
- "classification": "Setări de clasificare - Frigate",
- "masksAndZones": "Editor Zonă si Mască - Frigate",
- "notifications": "Setări notificări - Frigate",
- "motionTuner": "Ajustare mișcare - Frigate",
- "object": "Depanare - Frigate",
- "general": "Setări interfață - Frigate",
- "frigatePlus": "Setări Frigate+ - Frigate",
- "enrichments": "Setări de Îmbogățiri - Frigate",
- "cameraManagement": "Gestionează Camerele - Frigate",
- "cameraReview": "Setări Revizuire Cameră - Frigate"
+ "authentication": "Setări de autentificare - DIENST",
+ "camera": "Setări cameră - DIENST",
+ "default": "Setări - DIENST",
+ "classification": "Setări de clasificare - DIENST",
+ "masksAndZones": "Editor Zonă si Mască - DIENST",
+ "notifications": "Setări notificări - DIENST",
+ "motionTuner": "Ajustare mișcare - DIENST",
+ "object": "Depanare - DIENST",
+ "general": "Setări interfață - DIENST",
+ "frigatePlus": "Setări Frigate+ - DIENST",
+ "enrichments": "Setări de Îmbogățiri - DIENST",
+ "cameraManagement": "Gestionează Camerele - DIENST",
+ "cameraReview": "Setări Revizuire Cameră - DIENST"
},
"menu": {
"ui": "Interfață utilizator",
@@ -274,7 +274,7 @@
"title": "Prag de viteză ({{unit}})",
"desc": "Specifică o viteză minimă pe care trebuie să o aibă obiectele pentru a fi considerate în această zonă."
},
- "documentTitle": "Editează zone - Frigate",
+ "documentTitle": "Editează zone - DIENST",
"clickDrawPolygon": "Apasă pentru a desena un poligon pe imagine.",
"toast": {
"success": "Zona ({{zoneName}}) a fost salvată."
@@ -292,7 +292,7 @@
"point_other": "{{count}} de puncte",
"clickDrawPolygon": "Fă clic pentru a desena un poligon pe imagine.",
"label": "Măști de mișcare",
- "documentTitle": "Editează masca de mișcare - Frigate",
+ "documentTitle": "Editează masca de mișcare - DIENST",
"desc": {
"documentation": "Documentație",
"title": "Măștile de mișcare sunt folosite pentru a preveni ca anumite tipuri de mișcare nedorită să declanșeze detecția. Mascare excesivă va îngreuna urmărirea obiectelor."
@@ -319,7 +319,7 @@
"point_one": "{{count}} punct",
"point_few": "{{count}} puncte",
"point_other": "{{count}} de puncte",
- "documentTitle": "Editează masca de obiecte - Frigate",
+ "documentTitle": "Editează masca de obiecte - DIENST",
"add": "Adaugă mască de obiecte",
"edit": "Editează masca de obiecte",
"desc": {
diff --git a/web/public/locales/ro/views/system.json b/web/public/locales/ro/views/system.json
index 2584d8581..cffe86624 100644
--- a/web/public/locales/ro/views/system.json
+++ b/web/public/locales/ro/views/system.json
@@ -1,14 +1,14 @@
{
"documentTitle": {
- "storage": "Statistici Stocare - Frigate",
- "cameras": "Statistici Camere - Frigate",
- "general": "Statistici Generale - Frigate",
+ "storage": "Statistici Stocare - DIENST",
+ "cameras": "Statistici Camere - DIENST",
+ "general": "Statistici Generale - DIENST",
"logs": {
- "go2rtc": "Jurnal Go2RTC - Frigate",
- "nginx": "Jurnal Nginx - Frigate",
- "frigate": "Jurnal Frigate - Frigate"
+ "go2rtc": "Jurnal Go2RTC - DIENST",
+ "nginx": "Jurnal Nginx - DIENST",
+ "frigate": "Jurnal Frigate - DIENST"
},
- "enrichments": "Statistici îmbogățiri - Frigate"
+ "enrichments": "Statistici îmbogățiri - DIENST"
},
"general": {
"hardwareInfo": {
diff --git a/web/public/locales/ru/common.json b/web/public/locales/ru/common.json
index 341cad236..a7b24cb85 100644
--- a/web/public/locales/ru/common.json
+++ b/web/public/locales/ru/common.json
@@ -271,12 +271,12 @@
},
"accessDenied": {
"desc": "У вас нет разрешения на просмотр этой страницы.",
- "documentTitle": "Доступ запрещён - Frigate",
+ "documentTitle": "Доступ запрещён - DIENST",
"title": "Доступ запрещён"
},
"notFound": {
"desc": "Страница не найдена",
- "documentTitle": "Не найдена - Frigate",
+ "documentTitle": "Не найдена - DIENST",
"title": "404"
},
"toast": {
diff --git a/web/public/locales/ru/views/configEditor.json b/web/public/locales/ru/views/configEditor.json
index 0dd775b24..c1375b0b0 100644
--- a/web/public/locales/ru/views/configEditor.json
+++ b/web/public/locales/ru/views/configEditor.json
@@ -3,7 +3,7 @@
"copyConfig": "Скопировать конфигурацию",
"saveAndRestart": "Сохранить и перезапустить",
"saveOnly": "Только сохранить",
- "documentTitle": "Редактор конфигурации - Frigate",
+ "documentTitle": "Редактор конфигурации - DIENST",
"toast": {
"success": {
"copyToClipboard": "Конфигурация скопирована в буфер обмена."
diff --git a/web/public/locales/ru/views/events.json b/web/public/locales/ru/views/events.json
index c54e54262..8b23b50aa 100644
--- a/web/public/locales/ru/views/events.json
+++ b/web/public/locales/ru/views/events.json
@@ -19,9 +19,9 @@
"aria": "Выбор событий",
"noFoundForTimePeriod": "Для этого периода времени не найдено ни одного события."
},
- "documentTitle": "Обзор событий - Frigate",
+ "documentTitle": "Обзор событий - DIENST",
"recordings": {
- "documentTitle": "Записи - Frigate"
+ "documentTitle": "Записи - DIENST"
},
"calendarFilter": {
"last24Hours": "Последние 24 часа"
diff --git a/web/public/locales/ru/views/explore.json b/web/public/locales/ru/views/explore.json
index 18c211a95..c3020276a 100644
--- a/web/public/locales/ru/views/explore.json
+++ b/web/public/locales/ru/views/explore.json
@@ -28,7 +28,7 @@
}
},
"generativeAI": "Генеративный ИИ",
- "documentTitle": "Поиск событий - Frigate",
+ "documentTitle": "Поиск событий - DIENST",
"details": {
"timestamp": "Метка времени",
"item": {
diff --git a/web/public/locales/ru/views/exports.json b/web/public/locales/ru/views/exports.json
index c14a578ca..712a9f829 100644
--- a/web/public/locales/ru/views/exports.json
+++ b/web/public/locales/ru/views/exports.json
@@ -1,5 +1,5 @@
{
- "documentTitle": "Экспорт - Frigate",
+ "documentTitle": "Экспорт - DIENST",
"search": "Поиск",
"noExports": "Не найдено файлов экспорта",
"deleteExport": "Удалить экспорт",
diff --git a/web/public/locales/ru/views/faceLibrary.json b/web/public/locales/ru/views/faceLibrary.json
index ee8d702fb..a2ad84ad8 100644
--- a/web/public/locales/ru/views/faceLibrary.json
+++ b/web/public/locales/ru/views/faceLibrary.json
@@ -9,7 +9,7 @@
"subLabelScore": "Оценка доп. метки",
"unknown": "Неизвестно"
},
- "documentTitle": "Библиотека лиц - Frigate",
+ "documentTitle": "Библиотека лиц - DIENST",
"description": {
"placeholder": "Введите название коллекции",
"addFace": "Добавьте новую коллекцию в библиотеку лиц, загрузив свое первое изображение.",
diff --git a/web/public/locales/ru/views/live.json b/web/public/locales/ru/views/live.json
index 8a189bf76..f43d82aeb 100644
--- a/web/public/locales/ru/views/live.json
+++ b/web/public/locales/ru/views/live.json
@@ -1,6 +1,6 @@
{
- "documentTitle": "Прямой эфир - Frigate",
- "documentTitle.withCamera": "{{camera}} - Прямой эфир - Frigate",
+ "documentTitle": "Прямой эфир - DIENST",
+ "documentTitle.withCamera": "{{camera}} - Прямой эфир - DIENST",
"lowBandwidthMode": "Экономичный режим",
"twoWayTalk": {
"enable": "Включить двустороннюю связь",
diff --git a/web/public/locales/ru/views/settings.json b/web/public/locales/ru/views/settings.json
index 7044dc7e8..8830b24b9 100644
--- a/web/public/locales/ru/views/settings.json
+++ b/web/public/locales/ru/views/settings.json
@@ -1,18 +1,18 @@
{
"documentTitle": {
- "default": "Настройки - Frigate",
- "camera": "Настройки камеры - Frigate",
- "masksAndZones": "Маски и Зоны - Frigate",
- "motionTuner": "Детекции движения - Frigate",
- "general": "Настройки интерфейса - Frigate",
- "frigatePlus": "Настройки Frigate+ - Frigate",
- "authentication": "Настройки аутентификации - Frigate",
- "classification": "Настройки распознавания - Frigate",
- "object": "Отладка - Frigate",
- "notifications": "Настройки уведомлений - Frigate",
- "enrichments": "Настройки обогащения - Frigate",
- "cameraManagement": "Управление камерами - Frigate",
- "cameraReview": "Настройки просмотра камеры - Frigate"
+ "default": "Настройки - DIENST",
+ "camera": "Настройки камеры - DIENST",
+ "masksAndZones": "Маски и Зоны - DIENST",
+ "motionTuner": "Детекции движения - DIENST",
+ "general": "Настройки интерфейса - DIENST",
+ "frigatePlus": "Настройки Frigate+ - DIENST",
+ "authentication": "Настройки аутентификации - DIENST",
+ "classification": "Настройки распознавания - DIENST",
+ "object": "Отладка - DIENST",
+ "notifications": "Настройки уведомлений - DIENST",
+ "enrichments": "Настройки обогащения - DIENST",
+ "cameraManagement": "Управление камерами - DIENST",
+ "cameraReview": "Настройки просмотра камеры - DIENST"
},
"menu": {
"cameras": "Настройки камеры",
@@ -400,7 +400,7 @@
"lineDDistance": "Длина линии D ({{unit}})"
},
"label": "Зоны",
- "documentTitle": "Редактирование зоны - Frigate",
+ "documentTitle": "Редактирование зоны - DIENST",
"desc": {
"title": "Зоны позволяют определить конкретную область кадра, чтобы можно было определить, находится ли объект в заданной области.",
"documentation": "Документация"
@@ -460,7 +460,7 @@
"point_few": "{{count}} точки",
"point_many": "{{count}} точек",
"label": "Маска движения",
- "documentTitle": "Редактирование маски движения - Frigate",
+ "documentTitle": "Редактирование маски движения - DIENST",
"toast": {
"success": {
"title": "{{polygonName}} сохранена. Перезапустите Frigate для применения изменений.",
@@ -536,7 +536,7 @@
"documentation": "Документация",
"title": "Маски фильтра объектов используются для исключения ложных срабатываний определённого типа объектов в зависимости от местоположения."
},
- "documentTitle": "Редактирование маски объектов - Frigate",
+ "documentTitle": "Редактирование маски объектов - DIENST",
"add": "Добавить маску объектов",
"clickDrawPolygon": "Кликните, чтобы нарисовать полигон на изображении.",
"edit": "Редактирование маски объектов",
diff --git a/web/public/locales/ru/views/system.json b/web/public/locales/ru/views/system.json
index ad2b914ac..7f12603ac 100644
--- a/web/public/locales/ru/views/system.json
+++ b/web/public/locales/ru/views/system.json
@@ -1,13 +1,13 @@
{
"documentTitle": {
- "cameras": "Статистика камер - Frigate",
- "storage": "Статистика хранилища - Frigate",
- "general": "Общая статистика - Frigate",
- "enrichments": "Статистика обогащений - Frigate",
+ "cameras": "Статистика камер - DIENST",
+ "storage": "Статистика хранилища - DIENST",
+ "general": "Общая статистика - DIENST",
+ "enrichments": "Статистика обогащений - DIENST",
"logs": {
- "frigate": "Логи Frigate - Frigate",
- "go2rtc": "Логи Go2RTC - Frigate",
- "nginx": "Логи Nginx - Frigate"
+ "frigate": "Логи Frigate - DIENST",
+ "go2rtc": "Логи Go2RTC - DIENST",
+ "nginx": "Логи Nginx - DIENST"
}
},
"title": "Система",
diff --git a/web/public/locales/sk/common.json b/web/public/locales/sk/common.json
index 199493fdd..7339e3f2a 100644
--- a/web/public/locales/sk/common.json
+++ b/web/public/locales/sk/common.json
@@ -280,12 +280,12 @@
"more": "Viac strán"
},
"accessDenied": {
- "documentTitle": "Prístup odmietnutý - Frigate",
+ "documentTitle": "Prístup odmietnutý - DIENST",
"title": "Prístup odmietnutý",
"desc": "Nemáte oprávnenie zobraziť túto stránku."
},
"notFound": {
- "documentTitle": "Nenájdené - Frigate",
+ "documentTitle": "Nenájdené - DIENST",
"title": "404",
"desc": "Stránka nenájdená"
},
diff --git a/web/public/locales/sk/views/configEditor.json b/web/public/locales/sk/views/configEditor.json
index c10f789a8..8fe61846d 100644
--- a/web/public/locales/sk/views/configEditor.json
+++ b/web/public/locales/sk/views/configEditor.json
@@ -1,5 +1,5 @@
{
- "documentTitle": "Editor nastavení - Frigate",
+ "documentTitle": "Editor nastavení - DIENST",
"configEditor": "Editor nastavení",
"copyConfig": "Kopírovať konfiguráciu",
"saveAndRestart": "Uložiť a reštartovať",
diff --git a/web/public/locales/sk/views/events.json b/web/public/locales/sk/views/events.json
index fe86d41d5..6c7481b7d 100644
--- a/web/public/locales/sk/views/events.json
+++ b/web/public/locales/sk/views/events.json
@@ -20,7 +20,7 @@
},
"documentTitle": "Recenzia - Frikgate",
"recordings": {
- "documentTitle": "Nahrávky - Frigate"
+ "documentTitle": "Nahrávky - DIENST"
},
"calendarFilter": {
"last24Hours": "Posledných 24 hodín"
diff --git a/web/public/locales/sk/views/explore.json b/web/public/locales/sk/views/explore.json
index 223eb80fd..b601524c1 100644
--- a/web/public/locales/sk/views/explore.json
+++ b/web/public/locales/sk/views/explore.json
@@ -1,5 +1,5 @@
{
- "documentTitle": "Preskúmať - Frigate",
+ "documentTitle": "Preskúmať - DIENST",
"generativeAI": "Generatívna AI",
"details": {
"timestamp": "Časová pečiatka",
diff --git a/web/public/locales/sk/views/exports.json b/web/public/locales/sk/views/exports.json
index d9df68500..49688c1d3 100644
--- a/web/public/locales/sk/views/exports.json
+++ b/web/public/locales/sk/views/exports.json
@@ -1,5 +1,5 @@
{
- "documentTitle": "Exportovať - Frigate",
+ "documentTitle": "Exportovať - DIENST",
"search": "Nájsť",
"noExports": "Nenašli sa žiadne exporty",
"deleteExport": "Vymazať export",
diff --git a/web/public/locales/sk/views/live.json b/web/public/locales/sk/views/live.json
index 546a6035e..732fcd2a4 100644
--- a/web/public/locales/sk/views/live.json
+++ b/web/public/locales/sk/views/live.json
@@ -1,6 +1,6 @@
{
- "documentTitle": "Naživo - Frigate",
- "documentTitle.withCamera": "{{camera}} - Naživo - Frigate",
+ "documentTitle": "Naživo - DIENST",
+ "documentTitle.withCamera": "{{camera}} - Naživo - DIENST",
"lowBandwidthMode": "Režim nízkej šírky pásma",
"twoWayTalk": {
"enable": "Povoliť obojsmernú komunikáciu",
diff --git a/web/public/locales/sk/views/settings.json b/web/public/locales/sk/views/settings.json
index 900236606..ba3288e6f 100644
--- a/web/public/locales/sk/views/settings.json
+++ b/web/public/locales/sk/views/settings.json
@@ -1,17 +1,17 @@
{
"documentTitle": {
- "default": "Nastavenia - Frigate",
+ "default": "Nastavenia - DIENST",
"authentication": "Nastavenie autentifikácie- Frigate",
"camera": "Nastavenia Kamier– Frigate",
- "enrichments": "Nastavenia obohatenia – Frigate",
- "masksAndZones": "Editor masky a zón - Frigate",
- "motionTuner": "Ladič detekcie pohybu - Frigate",
- "object": "Ladenie - Frigate",
- "general": "UI nastavenia – Frigate",
- "frigatePlus": "Nastavenia Frigate+ – Frigate",
- "notifications": "Nastavenia upozornení – Frigate",
- "cameraManagement": "Manažment kamier - Frigate",
- "cameraReview": "Nastavenie kamier - Frigate"
+ "enrichments": "Nastavenia obohatenia - DIENST",
+ "masksAndZones": "Editor masky a zón - DIENST",
+ "motionTuner": "Ladič detekcie pohybu - DIENST",
+ "object": "Ladenie - DIENST",
+ "general": "UI nastavenia - DIENST",
+ "frigatePlus": "Nastavenia Frigate+ - DIENST",
+ "notifications": "Nastavenia upozornení - DIENST",
+ "cameraManagement": "Manažment kamier - DIENST",
+ "cameraReview": "Nastavenie kamier - DIENST"
},
"menu": {
"ui": "Uživaťelské rozohranie",
@@ -291,7 +291,7 @@
},
"zones": {
"label": "Zóny",
- "documentTitle": "Upraviť Zónu - Frigate",
+ "documentTitle": "Upraviť Zónu - DIENST",
"desc": {
"title": "Zóny umožňujú definovať konkrétnu oblasť v zábere, vďaka čomu je možné určiť, či sa objekt nachádza v danej oblasti alebo nie.",
"documentation": "Dokumentácia"
@@ -344,7 +344,7 @@
},
"motionMasks": {
"label": "Maska Detekcia pohybu",
- "documentTitle": "Editovať Masku Detekcia pohybu - Frigate",
+ "documentTitle": "Editovať Masku Detekcia pohybu - DIENST",
"desc": {
"title": "Masky detekcie pohybu slúžia na zabránenie nežiaducim typom pohybu v spustení detekcie. Príliš rozsiahle maskovanie však môže sťažiť sledovanie objektov.",
"documentation": "Dokumentácia"
@@ -371,7 +371,7 @@
},
"objectMasks": {
"label": "Masky Objektu",
- "documentTitle": "Upraviť Masku Objektu - Frigate",
+ "documentTitle": "Upraviť Masku Objektu - DIENST",
"desc": {
"title": "Masky filtrovania objektov slúžia na odfiltrovanie falošných detekcií daného typu objektu na základe jeho umiestnenia.",
"documentation": "Dokumentácia"
diff --git a/web/public/locales/sk/views/system.json b/web/public/locales/sk/views/system.json
index 94afc9111..253645fbf 100644
--- a/web/public/locales/sk/views/system.json
+++ b/web/public/locales/sk/views/system.json
@@ -1,13 +1,13 @@
{
"documentTitle": {
- "cameras": "Štatistiky kamier - Frigate",
- "storage": "Štatistiky úložiska - Frigate",
- "general": "Všeobecné štatistiky - Frigate",
- "enrichments": "Štatistiky obohatenia - Frigate",
+ "cameras": "Štatistiky kamier - DIENST",
+ "storage": "Štatistiky úložiska - DIENST",
+ "general": "Všeobecné štatistiky - DIENST",
+ "enrichments": "Štatistiky obohatenia - DIENST",
"logs": {
- "frigate": "Protokoly Frigate - Frigate",
- "go2rtc": "Protokoly Go2RTC - Frigate",
- "nginx": "Protokoly Ngnix - Frigate"
+ "frigate": "Protokoly Frigate - DIENST",
+ "go2rtc": "Protokoly Go2RTC - DIENST",
+ "nginx": "Protokoly Ngnix - DIENST"
}
},
"title": "System",
diff --git a/web/public/locales/sl/common.json b/web/public/locales/sl/common.json
index 25bc0644e..68a3eef20 100644
--- a/web/public/locales/sl/common.json
+++ b/web/public/locales/sl/common.json
@@ -286,12 +286,12 @@
"desc": "Administratorji imajo poln dostop do vseh funkcij Frigate uporabniškega vmesnika. Gledalci so omejeni na gledanje kamer, zgodovine posnetkov in pregledovanje dogodkov."
},
"accessDenied": {
- "documentTitle": "Dostop zavrnjen - Frigate",
+ "documentTitle": "Dostop zavrnjen - DIENST",
"title": "Dostop Zavrnjen",
"desc": "Nimate pravic za ogled te strani."
},
"notFound": {
- "documentTitle": "Ni Najdeno - Frigate",
+ "documentTitle": "Ni Najdeno - DIENST",
"title": "404",
"desc": "Stran ni najdena"
},
diff --git a/web/public/locales/sl/views/configEditor.json b/web/public/locales/sl/views/configEditor.json
index 5c69cc1b4..193defa38 100644
--- a/web/public/locales/sl/views/configEditor.json
+++ b/web/public/locales/sl/views/configEditor.json
@@ -1,5 +1,5 @@
{
- "documentTitle": "Urejevalnik konfiguracij - Frigate",
+ "documentTitle": "Urejevalnik konfiguracij - DIENST",
"configEditor": "Urejevalnik konfiguracij",
"copyConfig": "Kopiraj konfiguracijo",
"saveAndRestart": "Shrani & ponovno zaženi",
diff --git a/web/public/locales/sl/views/events.json b/web/public/locales/sl/views/events.json
index a0570b959..ee8f2f9db 100644
--- a/web/public/locales/sl/views/events.json
+++ b/web/public/locales/sl/views/events.json
@@ -12,10 +12,10 @@
"detection": "Ni zaznanih elementov za pregled"
},
"recordings": {
- "documentTitle": "Posnetki - Frigate"
+ "documentTitle": "Posnetki - DIENST"
},
"camera": "Kamera",
- "documentTitle": "Pregled - Frigate",
+ "documentTitle": "Pregled - DIENST",
"alerts": "Opozorila",
"detections": "Zaznavanja",
"motion": {
diff --git a/web/public/locales/sl/views/explore.json b/web/public/locales/sl/views/explore.json
index 70fee301e..f8dac307f 100644
--- a/web/public/locales/sl/views/explore.json
+++ b/web/public/locales/sl/views/explore.json
@@ -27,7 +27,7 @@
"finishingShortly": "Kmalu končano"
}
},
- "documentTitle": "Razišči - Frigate",
+ "documentTitle": "Razišči - DIENST",
"generativeAI": "Generativna UI",
"exploreMore": "Razišči več {{label}} objektov",
"details": {
diff --git a/web/public/locales/sl/views/exports.json b/web/public/locales/sl/views/exports.json
index 59ca52181..2b86143ee 100644
--- a/web/public/locales/sl/views/exports.json
+++ b/web/public/locales/sl/views/exports.json
@@ -1,5 +1,5 @@
{
- "documentTitle": "Izvoz - Frigate",
+ "documentTitle": "Izvoz - DIENST",
"search": "Iskanje",
"noExports": "Izovzi niso najdeni",
"deleteExport": "Izbriši izvoz",
diff --git a/web/public/locales/sl/views/faceLibrary.json b/web/public/locales/sl/views/faceLibrary.json
index c41520fa5..10063876d 100644
--- a/web/public/locales/sl/views/faceLibrary.json
+++ b/web/public/locales/sl/views/faceLibrary.json
@@ -50,7 +50,7 @@
"updateFaceScoreFailed": "Posodobitev ocene obraza ni uspela: {{errorMessage}}"
}
},
- "documentTitle": "Knjižnica obrazov - Frigate",
+ "documentTitle": "Knjižnica obrazov - DIENST",
"collections": "Zbirke",
"createFaceLibrary": {
"title": "Ustvari Zbirko",
diff --git a/web/public/locales/sl/views/live.json b/web/public/locales/sl/views/live.json
index 5b5261828..39b515da3 100644
--- a/web/public/locales/sl/views/live.json
+++ b/web/public/locales/sl/views/live.json
@@ -1,6 +1,6 @@
{
- "documentTitle": "V živo - Frigate",
- "documentTitle.withCamera": "{{camera}} - v živo - Frigate",
+ "documentTitle": "V živo - DIENST",
+ "documentTitle.withCamera": "{{camera}} - v živo - DIENST",
"lowBandwidthMode": "Nizkopasovni način",
"twoWayTalk": {
"enable": "Omogoči dvosmerni pogovor",
diff --git a/web/public/locales/sl/views/settings.json b/web/public/locales/sl/views/settings.json
index d8eff4e12..597bc2611 100644
--- a/web/public/locales/sl/views/settings.json
+++ b/web/public/locales/sl/views/settings.json
@@ -1,17 +1,17 @@
{
"documentTitle": {
- "default": "Nastavitve - Frigate",
- "authentication": "Nastavitve preverjanja pristnosti - Frigate",
- "camera": "Nastavitve kamere - Frigate",
- "notifications": "Nastavitve obvestil - Frigate",
- "masksAndZones": "Urejevalnik mask in območij - Frigate",
- "object": "Odpravljanje napak - Frigate",
- "general": "Splošne Nastavitve - Frigate",
- "frigatePlus": "Frigate+ Nastavitve - Frigate",
- "enrichments": "Nastavitve Obogatitev - Frigate",
- "motionTuner": "Nastavitev gibanja - Frigate",
- "cameraManagement": "Upravljaj kamere - Frigate",
- "cameraReview": "Nastavitve pregleda kamer – Frigate"
+ "default": "Nastavitve - DIENST",
+ "authentication": "Nastavitve preverjanja pristnosti - DIENST",
+ "camera": "Nastavitve kamere - DIENST",
+ "notifications": "Nastavitve obvestil - DIENST",
+ "masksAndZones": "Urejevalnik mask in območij - DIENST",
+ "object": "Odpravljanje napak - DIENST",
+ "general": "Splošne Nastavitve - DIENST",
+ "frigatePlus": "Frigate+ Nastavitve - DIENST",
+ "enrichments": "Nastavitve Obogatitev - DIENST",
+ "motionTuner": "Nastavitev gibanja - DIENST",
+ "cameraManagement": "Upravljaj kamere - DIENST",
+ "cameraReview": "Nastavitve pregleda kamer - DIENST"
},
"menu": {
"ui": "Uporabniški vmesnik",
diff --git a/web/public/locales/sl/views/system.json b/web/public/locales/sl/views/system.json
index 6562321a2..73677976b 100644
--- a/web/public/locales/sl/views/system.json
+++ b/web/public/locales/sl/views/system.json
@@ -1,14 +1,14 @@
{
"documentTitle": {
- "cameras": "Statistika kamer - Frigate",
- "storage": "Statistika prostora - Frigate",
- "general": "Statistika - Frigate",
+ "cameras": "Statistika kamer - DIENST",
+ "storage": "Statistika prostora - DIENST",
+ "general": "Statistika - DIENST",
"logs": {
- "frigate": "Frigate dnevniki - Frigate",
- "go2rtc": "Go2RTC dnevniki - Frigate",
- "nginx": "Nginx dnevniki - Frigate"
+ "frigate": "Frigate dnevniki - DIENST",
+ "go2rtc": "Go2RTC dnevniki - DIENST",
+ "nginx": "Nginx dnevniki - DIENST"
},
- "enrichments": "Statistika Obogatitev - Frigate"
+ "enrichments": "Statistika Obogatitev - DIENST"
},
"logs": {
"download": {
diff --git a/web/public/locales/sr/views/configEditor.json b/web/public/locales/sr/views/configEditor.json
index a94a6e5bd..15fccab3d 100644
--- a/web/public/locales/sr/views/configEditor.json
+++ b/web/public/locales/sr/views/configEditor.json
@@ -1,5 +1,5 @@
{
- "documentTitle": "Editor Konfiguracije - Frigate",
+ "documentTitle": "Editor Konfiguracije - DIENST",
"configEditor": "Editor konfiguracije",
"copyConfig": "Kopiraj konfiguraciju",
"saveAndRestart": "Sačuvaj & Ponovo pokreni",
diff --git a/web/public/locales/sr/views/explore.json b/web/public/locales/sr/views/explore.json
index 66e8fbffe..7e6cc209d 100644
--- a/web/public/locales/sr/views/explore.json
+++ b/web/public/locales/sr/views/explore.json
@@ -1,5 +1,5 @@
{
- "documentTitle": "Istraži - Frigate",
+ "documentTitle": "Istraži - DIENST",
"generativeAI": "Generativni AI",
"exploreMore": "Istražite više {{label}} objekata",
"exploreIsUnavailable": {
diff --git a/web/public/locales/sr/views/exports.json b/web/public/locales/sr/views/exports.json
index ff71c75d5..2badc0c56 100644
--- a/web/public/locales/sr/views/exports.json
+++ b/web/public/locales/sr/views/exports.json
@@ -1,5 +1,5 @@
{
- "documentTitle": "Izvoz - Frigate",
+ "documentTitle": "Izvoz - DIENST",
"search": "Pretraga",
"noExports": "Nije pronađen nijedan izvoz",
"deleteExport": "Izbriši izvoz",
diff --git a/web/public/locales/sr/views/live.json b/web/public/locales/sr/views/live.json
index 1374fe163..2564941fb 100644
--- a/web/public/locales/sr/views/live.json
+++ b/web/public/locales/sr/views/live.json
@@ -1,6 +1,6 @@
{
- "documentTitle": "Uživo - Frigate",
- "documentTitle.withCamera": "{{camera}} - Uživo - Frigate",
+ "documentTitle": "Uživo - DIENST",
+ "documentTitle.withCamera": "{{camera}} - Uživo - DIENST",
"lowBandwidthMode": "Režim niskog propusnog opsega",
"twoWayTalk": {
"enable": "Omogući dvosmerni razgovor",
diff --git a/web/public/locales/sr/views/settings.json b/web/public/locales/sr/views/settings.json
index 2957af0f2..d479f670b 100644
--- a/web/public/locales/sr/views/settings.json
+++ b/web/public/locales/sr/views/settings.json
@@ -1,11 +1,11 @@
{
"documentTitle": {
- "default": "Podešavanja - Frigate",
+ "default": "Podešavanja - DIENST",
"authentication": "Podešavanja autentifikacije - Fregate",
- "camera": "Podešavanje kamera - Frigate",
- "enrichments": "Podešavanja obogaćivanja - Frigate",
- "masksAndZones": "Uređivač maski i zona - Frigate",
- "motionTuner": "Tjuner pokreta - Frigate",
- "general": "Generalna podešavanja - Frigate"
+ "camera": "Podešavanje kamera - DIENST",
+ "enrichments": "Podešavanja obogaćivanja - DIENST",
+ "masksAndZones": "Uređivač maski i zona - DIENST",
+ "motionTuner": "Tjuner pokreta - DIENST",
+ "general": "Generalna podešavanja - DIENST"
}
}
diff --git a/web/public/locales/sr/views/system.json b/web/public/locales/sr/views/system.json
index 5cd6faa23..1332eaf33 100644
--- a/web/public/locales/sr/views/system.json
+++ b/web/public/locales/sr/views/system.json
@@ -1,13 +1,13 @@
{
"documentTitle": {
- "cameras": "Statusi kamera - Frigate",
- "storage": "Statistika skladištenja - Frigate",
- "general": "Opšta statistika - Frigate",
- "enrichments": "Statistika obogaćivanja - Frigate",
+ "cameras": "Statusi kamera - DIENST",
+ "storage": "Statistika skladištenja - DIENST",
+ "general": "Opšta statistika - DIENST",
+ "enrichments": "Statistika obogaćivanja - DIENST",
"logs": {
- "frigate": "Frigate logovi - Frigate",
- "go2rtc": "Go2RTC dnevnici - Frigate",
- "nginx": "Nginx logovi - Frigate"
+ "frigate": "Frigate logovi - DIENST",
+ "go2rtc": "Go2RTC dnevnici - DIENST",
+ "nginx": "Nginx logovi - DIENST"
}
},
"title": "Sistem"
diff --git a/web/public/locales/sv/common.json b/web/public/locales/sv/common.json
index a1ad12bb0..8fbc1d29f 100644
--- a/web/public/locales/sv/common.json
+++ b/web/public/locales/sv/common.json
@@ -231,7 +231,7 @@
"accessDenied": {
"title": "Åtkomst Förbjuden",
"desc": "Du har inte rättigheter att visa den här sidan.",
- "documentTitle": "Åtkomst Förbjuden - Frigate"
+ "documentTitle": "Åtkomst Förbjuden - DIENST"
},
"role": {
"admin": "Admin",
@@ -240,7 +240,7 @@
"title": "Roll"
},
"notFound": {
- "documentTitle": "Hittades Inte - Frigate",
+ "documentTitle": "Hittades Inte - DIENST",
"desc": "Sidan hittades inte",
"title": "404"
},
diff --git a/web/public/locales/sv/views/classificationModel.json b/web/public/locales/sv/views/classificationModel.json
index 2b6c61d0f..4e3afc4ee 100644
--- a/web/public/locales/sv/views/classificationModel.json
+++ b/web/public/locales/sv/views/classificationModel.json
@@ -1,5 +1,5 @@
{
- "documentTitle": "Klassificeringsmodeller - Frigate",
+ "documentTitle": "Klassificeringsmodeller - DIENST",
"button": {
"deleteClassificationAttempts": "Ta bort klassificeringsbilder",
"renameCategory": "Byt namn på klass",
diff --git a/web/public/locales/sv/views/configEditor.json b/web/public/locales/sv/views/configEditor.json
index 7b96ff9fe..d08a98c1b 100644
--- a/web/public/locales/sv/views/configEditor.json
+++ b/web/public/locales/sv/views/configEditor.json
@@ -10,7 +10,7 @@
"savingError": "Problem att spara konfiguration"
}
},
- "documentTitle": "Ändra konfiguration - Frigate",
+ "documentTitle": "Ändra konfiguration - DIENST",
"configEditor": "Ändra konfiguration",
"confirm": "Avsluta utan att spara?",
"safeConfigEditor": "Konfigurationsredigeraren (felsäkert läge)",
diff --git a/web/public/locales/sv/views/events.json b/web/public/locales/sv/views/events.json
index f19596e7a..b567a8637 100644
--- a/web/public/locales/sv/views/events.json
+++ b/web/public/locales/sv/views/events.json
@@ -11,7 +11,7 @@
"detection": "Det finns inga detekteringar att granska",
"motion": "Ingen rörelsedata hittad"
},
- "documentTitle": "Granska - Frigate",
+ "documentTitle": "Granska - DIENST",
"timeline": "Tidslinje",
"events": {
"noFoundForTimePeriod": "Inga hädelser hittade för denna tidsperiod.",
@@ -19,7 +19,7 @@
"label": "Händelse"
},
"recordings": {
- "documentTitle": "Inspelningar - Frigate"
+ "documentTitle": "Inspelningar - DIENST"
},
"newReviewItems": {
"label": "Visa nya objekt att granska",
diff --git a/web/public/locales/sv/views/explore.json b/web/public/locales/sv/views/explore.json
index 62ea93338..185f3f57a 100644
--- a/web/public/locales/sv/views/explore.json
+++ b/web/public/locales/sv/views/explore.json
@@ -1,6 +1,6 @@
{
"generativeAI": "Generativ AI",
- "documentTitle": "Utforska - Frigate",
+ "documentTitle": "Utforska - DIENST",
"exploreIsUnavailable": {
"embeddingsReindexing": {
"startingUp": "Startar upp…",
diff --git a/web/public/locales/sv/views/exports.json b/web/public/locales/sv/views/exports.json
index da2bc1324..c9b3e4c5a 100644
--- a/web/public/locales/sv/views/exports.json
+++ b/web/public/locales/sv/views/exports.json
@@ -1,6 +1,6 @@
{
"search": "Sök",
- "documentTitle": "Export - Frigate",
+ "documentTitle": "Export - DIENST",
"noExports": "Inga exporter hittade",
"deleteExport": "Radera export",
"deleteExport.desc": "Är du säker att du vill radera {{exportName}}?",
diff --git a/web/public/locales/sv/views/faceLibrary.json b/web/public/locales/sv/views/faceLibrary.json
index 45a80bf50..0f5c617f1 100644
--- a/web/public/locales/sv/views/faceLibrary.json
+++ b/web/public/locales/sv/views/faceLibrary.json
@@ -14,7 +14,7 @@
"addFace": "Lägg till en ny samling i ansiktsbiblioteket genom att ladda upp din första bild.",
"invalidName": "Ogiltigt namn. Namn får endast innehålla bokstäver, siffror, mellanslag, apostrofer, understreck och bindestreck."
},
- "documentTitle": "Ansiktsbibliotek - Frigate",
+ "documentTitle": "Ansiktsbibliotek - DIENST",
"steps": {
"faceName": "Ange namn",
"uploadFace": "Ladda upp bild på ansikte",
diff --git a/web/public/locales/sv/views/live.json b/web/public/locales/sv/views/live.json
index b0873ae86..a3bfa4adb 100644
--- a/web/public/locales/sv/views/live.json
+++ b/web/public/locales/sv/views/live.json
@@ -1,6 +1,6 @@
{
- "documentTitle": "Live - Frigate",
- "documentTitle.withCamera": "{{camera}} - Live - Frigate",
+ "documentTitle": "Live - DIENST",
+ "documentTitle.withCamera": "{{camera}} - Live - DIENST",
"twoWayTalk": {
"enable": "Aktivera tvåvägssamtal",
"disable": "Avaktivera tvåvägssamtal"
diff --git a/web/public/locales/sv/views/settings.json b/web/public/locales/sv/views/settings.json
index 99f74a47d..9db022821 100644
--- a/web/public/locales/sv/views/settings.json
+++ b/web/public/locales/sv/views/settings.json
@@ -1,18 +1,18 @@
{
"documentTitle": {
- "camera": "Kamerainställningar - Frigate",
- "default": "Inställningar - Frigate",
- "general": "Användargränssnitt Inställningar - Frigate",
- "authentication": "Autentiseringsinställningar - Frigate",
- "classification": "Klassificeringsinställningar - Frigate",
- "masksAndZones": "Maskerings- och zonverktyg - Frigate",
- "enrichments": "Förbättringsinställningar - Frigate",
- "frigatePlus": "Frigate+ Inställningar - Frigate",
- "notifications": "Notifikations Inställningar - Frigate",
- "motionTuner": "Rörelse inställning - Frigate",
- "object": "Felsöka - Frigate",
- "cameraManagement": "Hantera kameror - Frigate",
- "cameraReview": "Kameragranskningsinställningar - Frigate"
+ "camera": "Kamerainställningar - DIENST",
+ "default": "Inställningar - DIENST",
+ "general": "Användargränssnitt Inställningar - DIENST",
+ "authentication": "Autentiseringsinställningar - DIENST",
+ "classification": "Klassificeringsinställningar - DIENST",
+ "masksAndZones": "Maskerings- och zonverktyg - DIENST",
+ "enrichments": "Förbättringsinställningar - DIENST",
+ "frigatePlus": "Frigate+ Inställningar - DIENST",
+ "notifications": "Notifikations Inställningar - DIENST",
+ "motionTuner": "Rörelse inställning - DIENST",
+ "object": "Felsöka - DIENST",
+ "cameraManagement": "Hantera kameror - DIENST",
+ "cameraReview": "Kameragranskningsinställningar - DIENST"
},
"general": {
"title": "UI inställningar",
@@ -298,7 +298,7 @@
},
"zones": {
"label": "Zoner",
- "documentTitle": "Redigera zon - Frigate",
+ "documentTitle": "Redigera zon - DIENST",
"desc": {
"documentation": "Dokumentation",
"title": "Zoner låter dig definiera ett specifikt område av bilden så att du kan avgöra om ett objekt befinner sig inom ett visst område eller inte."
@@ -350,7 +350,7 @@
},
"motionMasks": {
"label": "Rörelsemask",
- "documentTitle": "Redigera rörelsemask - Frigate",
+ "documentTitle": "Redigera rörelsemask - DIENST",
"desc": {
"title": "Rörelsemasker används för att förhindra att oönskade typer av rörelser utlöser detektering. Övermaskering gör det svårare att spåra objekt.",
"documentation": "Dokumentation"
@@ -376,7 +376,7 @@
},
"objectMasks": {
"label": "Objektmasker",
- "documentTitle": "Redigera objektmask - Frigate",
+ "documentTitle": "Redigera objektmask - DIENST",
"point_one": "{{count}} poäng",
"point_other": "{{count}} poäng",
"desc": {
diff --git a/web/public/locales/sv/views/system.json b/web/public/locales/sv/views/system.json
index 2056b38d9..9cf0e7e1d 100644
--- a/web/public/locales/sv/views/system.json
+++ b/web/public/locales/sv/views/system.json
@@ -1,14 +1,14 @@
{
"documentTitle": {
- "storage": "Lagringsstatistik - Frigate",
- "general": "Allmän statistik - Frigate",
- "cameras": "Kamerastatistik - Frigate",
+ "storage": "Lagringsstatistik - DIENST",
+ "general": "Allmän statistik - DIENST",
+ "cameras": "Kamerastatistik - DIENST",
"logs": {
- "frigate": "Frigate-loggar - Frigate",
- "go2rtc": "Go2RTC loggar - Frigate",
- "nginx": "Nginx loggar - Frigate"
+ "frigate": "Frigate-loggar - DIENST",
+ "go2rtc": "Go2RTC loggar - DIENST",
+ "nginx": "Nginx loggar - DIENST"
},
- "enrichments": "Förbättringsstatistik - Frigate"
+ "enrichments": "Förbättringsstatistik - DIENST"
},
"logs": {
"copy": {
diff --git a/web/public/locales/th/common.json b/web/public/locales/th/common.json
index b92078797..ba5342bbd 100644
--- a/web/public/locales/th/common.json
+++ b/web/public/locales/th/common.json
@@ -227,12 +227,12 @@
"label": "แบ่งหน้า"
},
"accessDenied": {
- "documentTitle": "ไม่สามารถเข้าถึงได้ - Frigate",
+ "documentTitle": "ไม่สามารถเข้าถึงได้ - DIENST",
"title": "ไม่สามารถเข้าถึงได้",
"desc": "คุณไม่มีสิทธิ์ในการเข้าถึงหน้านี้"
},
"notFound": {
- "documentTitle": "ไม่พบ - Frigate",
+ "documentTitle": "ไม่พบ - DIENST",
"desc": "ไม่พบหน้านี้",
"title": "๔๐๔"
},
diff --git a/web/public/locales/th/views/configEditor.json b/web/public/locales/th/views/configEditor.json
index d44ae391b..82b07b76e 100644
--- a/web/public/locales/th/views/configEditor.json
+++ b/web/public/locales/th/views/configEditor.json
@@ -11,6 +11,6 @@
}
},
"saveAndRestart": "บันทึก และ รีสตาร์ท",
- "documentTitle": "ตัวแก้ไขการกำหนดค่า - Frigate",
+ "documentTitle": "ตัวแก้ไขการกำหนดค่า - DIENST",
"configEditor": "ตัวแก้ไขการกำหนดค่า"
}
diff --git a/web/public/locales/th/views/events.json b/web/public/locales/th/views/events.json
index f303ea6b3..f015bc719 100644
--- a/web/public/locales/th/views/events.json
+++ b/web/public/locales/th/views/events.json
@@ -15,7 +15,7 @@
"noFoundForTimePeriod": "ไม่เจอกิจกรรมในช่วงเวลานี้"
},
"recordings": {
- "documentTitle": "การบันทึก - Frigate"
+ "documentTitle": "การบันทึก - DIENST"
},
"calendarFilter": {
"last24Hours": "24 ชั่วโมงล่าสุด"
@@ -34,5 +34,5 @@
"detections": "การตรวจจับ",
"selected_one": "เลือก {{count}} แล้ว",
"timeline.aria": "เลือกไทม์ไลน์",
- "documentTitle": "รีวิว - Frigate"
+ "documentTitle": "รีวิว - DIENST"
}
diff --git a/web/public/locales/th/views/explore.json b/web/public/locales/th/views/explore.json
index b74d29e78..5ae1f2e31 100644
--- a/web/public/locales/th/views/explore.json
+++ b/web/public/locales/th/views/explore.json
@@ -1,5 +1,5 @@
{
- "documentTitle": "สํารวจ - Frigate",
+ "documentTitle": "สํารวจ - DIENST",
"generativeAI": "AI",
"exploreMore": "สํารวจวัตถุ {{label}} เพิ่มเติม",
"exploreIsUnavailable": {
diff --git a/web/public/locales/th/views/exports.json b/web/public/locales/th/views/exports.json
index 698c6f82b..39c61ea3e 100644
--- a/web/public/locales/th/views/exports.json
+++ b/web/public/locales/th/views/exports.json
@@ -1,5 +1,5 @@
{
- "documentTitle": "ส่งออก - Frigate",
+ "documentTitle": "ส่งออก - DIENST",
"search": "ค้นหา",
"noExports": "ไม่เจอการส่งออก",
"deleteExport": "ลบส่งออก",
diff --git a/web/public/locales/th/views/live.json b/web/public/locales/th/views/live.json
index ccf620b84..a93900ba7 100644
--- a/web/public/locales/th/views/live.json
+++ b/web/public/locales/th/views/live.json
@@ -12,7 +12,7 @@
"tips.documentation": "อ่านเอกสาร "
}
},
- "documentTitle": "สด - Frigate",
+ "documentTitle": "สด - DIENST",
"lowBandwidthMode": "โหมดแบนด์วิดท์ต่ำ",
"twoWayTalk": {
"enable": "เปิดใช้งานการสนทนาสองทาง",
@@ -35,7 +35,7 @@
"all": "ทั้งหมด"
}
},
- "documentTitle.withCamera": "{{camera}} - สด - Frigate",
+ "documentTitle.withCamera": "{{camera}} - สด - DIENST",
"streamingSettings": "การตั้งค่าการสตรีม",
"camera": {
"disable": "ปิดกล้อง"
diff --git a/web/public/locales/th/views/settings.json b/web/public/locales/th/views/settings.json
index 421620708..f376d3410 100644
--- a/web/public/locales/th/views/settings.json
+++ b/web/public/locales/th/views/settings.json
@@ -98,14 +98,14 @@
}
},
"documentTitle": {
- "default": "ตั้งค่า - Frigate",
- "authentication": "การตั้งค่าการตรวจสอบสิทธิ์ - Frigate",
- "camera": "การตั้งค่ากล้อง - Frigate",
- "classification": "การตั้งค่าการจำแนกประเภท - Frigate",
- "masksAndZones": "ตัวแก้ไขแมสและโซน - Frigate",
- "general": "การตั้งค่าทั่วไป - Frigate",
- "frigatePlus": "การตั้งค่า Frigate+ - Frigate",
- "notifications": "การตั้งค่าการแจ้งเตือน - Frigate"
+ "default": "ตั้งค่า - DIENST",
+ "authentication": "การตั้งค่าการตรวจสอบสิทธิ์ - DIENST",
+ "camera": "การตั้งค่ากล้อง - DIENST",
+ "classification": "การตั้งค่าการจำแนกประเภท - DIENST",
+ "masksAndZones": "ตัวแก้ไขแมสและโซน - DIENST",
+ "general": "การตั้งค่าทั่วไป - DIENST",
+ "frigatePlus": "การตั้งค่า Frigate+ - DIENST",
+ "notifications": "การตั้งค่าการแจ้งเตือน - DIENST"
},
"menu": {
"notifications": "การแจ้งเตือน",
diff --git a/web/public/locales/tr/common.json b/web/public/locales/tr/common.json
index 6dd7d7907..10dad1e9a 100644
--- a/web/public/locales/tr/common.json
+++ b/web/public/locales/tr/common.json
@@ -235,7 +235,7 @@
"all": "Tümü"
},
"notFound": {
- "documentTitle": "Bulunamadı - Frigate",
+ "documentTitle": "Bulunamadı - DIENST",
"desc": "Sayfa bulunamadı",
"title": "404"
},
@@ -272,7 +272,7 @@
"accessDenied": {
"title": "Erişim Reddedildi",
"desc": "Bu sayfayı görüntüleme yetkiniz yok.",
- "documentTitle": "Erişim Reddedildi - Frigate"
+ "documentTitle": "Erişim Reddedildi - DIENST"
},
"toast": {
"copyUrlToClipboard": "URL panoya kopyalandı.",
diff --git a/web/public/locales/tr/views/classificationModel.json b/web/public/locales/tr/views/classificationModel.json
index 535e5b13b..2ad9ce7c8 100644
--- a/web/public/locales/tr/views/classificationModel.json
+++ b/web/public/locales/tr/views/classificationModel.json
@@ -1,5 +1,5 @@
{
- "documentTitle": "Sınıflandırma Modelleri - Frigate",
+ "documentTitle": "Sınıflandırma Modelleri - DIENST",
"details": {
"scoreInfo": "Skor, modelin nesneyi tespit ettiği tüm durumlar için ortalama güven düzeyini gösterir."
},
diff --git a/web/public/locales/tr/views/configEditor.json b/web/public/locales/tr/views/configEditor.json
index 32ffdb2cb..dc406b8d9 100644
--- a/web/public/locales/tr/views/configEditor.json
+++ b/web/public/locales/tr/views/configEditor.json
@@ -10,7 +10,7 @@
},
"copyConfig": "Yapılandırmayı Kopyala",
"configEditor": "Yapılandırma Düzenleyicisi",
- "documentTitle": "Yapılandırma Düzenleyicisi - Frigate",
+ "documentTitle": "Yapılandırma Düzenleyicisi - DIENST",
"saveAndRestart": "Kaydet & Yeniden Başlat",
"confirm": "Kaydetmeden çıkılsın mı?",
"safeConfigEditor": "Yapılandırma Düzenleyicisi (Güvenli Mod)",
diff --git a/web/public/locales/tr/views/events.json b/web/public/locales/tr/views/events.json
index e15c11b38..a39e755e5 100644
--- a/web/public/locales/tr/views/events.json
+++ b/web/public/locales/tr/views/events.json
@@ -14,7 +14,7 @@
"label": "Olaylar"
},
"recordings": {
- "documentTitle": "Kayıtlar - Frigate"
+ "documentTitle": "Kayıtlar - DIENST"
},
"calendarFilter": {
"last24Hours": "Son 24 Saat"
@@ -24,7 +24,7 @@
"button": "Yeni İncelenecek Öğeler Var",
"label": "Yeni inceleme öğelerini göster"
},
- "documentTitle": "İncele - Frigate",
+ "documentTitle": "İncele - DIENST",
"motion": {
"label": "Hareket",
"only": "Yalnızca hareket"
diff --git a/web/public/locales/tr/views/explore.json b/web/public/locales/tr/views/explore.json
index 6909c849a..9dec80a60 100644
--- a/web/public/locales/tr/views/explore.json
+++ b/web/public/locales/tr/views/explore.json
@@ -1,5 +1,5 @@
{
- "documentTitle": "Keşfet - Frigate",
+ "documentTitle": "Keşfet - DIENST",
"details": {
"timestamp": "Zaman Damgası",
"item": {
diff --git a/web/public/locales/tr/views/exports.json b/web/public/locales/tr/views/exports.json
index 0c8fec129..60dc8703c 100644
--- a/web/public/locales/tr/views/exports.json
+++ b/web/public/locales/tr/views/exports.json
@@ -1,6 +1,6 @@
{
"search": "Arama",
- "documentTitle": "Dışa Aktar - Frigate",
+ "documentTitle": "Dışa Aktar - DIENST",
"deleteExport": "Dışa Aktarımı Sil",
"deleteExport.desc": "{{exportName}} adlı dışa aktarımı silmek istediğinize emin misiniz?",
"editExport": {
diff --git a/web/public/locales/tr/views/faceLibrary.json b/web/public/locales/tr/views/faceLibrary.json
index 7f2a1ddb3..bc734d53f 100644
--- a/web/public/locales/tr/views/faceLibrary.json
+++ b/web/public/locales/tr/views/faceLibrary.json
@@ -15,7 +15,7 @@
"subLabelScore": "Alt Etiket Puanı",
"unknown": "Bilinmeyen"
},
- "documentTitle": "Yüz Kütüphanesi - Frigate",
+ "documentTitle": "Yüz Kütüphanesi - DIENST",
"uploadFaceImage": {
"title": "Yüz Resmi Yükle",
"desc": "Yüzleri taramak ve {{pageToggle}} için dahil etmek üzere bir resim yükleyin"
diff --git a/web/public/locales/tr/views/live.json b/web/public/locales/tr/views/live.json
index ad7a7e5b5..ac78c6351 100644
--- a/web/public/locales/tr/views/live.json
+++ b/web/public/locales/tr/views/live.json
@@ -1,6 +1,6 @@
{
- "documentTitle": "Canlı - Frigate",
- "documentTitle.withCamera": "{{camera}} - Canlı - Frigate",
+ "documentTitle": "Canlı - DIENST",
+ "documentTitle.withCamera": "{{camera}} - Canlı - DIENST",
"muteCameras": {
"disable": "Tüm Kameraların Sesini Aç",
"enable": "Tüm Kameraları Sustur"
diff --git a/web/public/locales/tr/views/settings.json b/web/public/locales/tr/views/settings.json
index 52ddc6060..d918c77bf 100644
--- a/web/public/locales/tr/views/settings.json
+++ b/web/public/locales/tr/views/settings.json
@@ -1,18 +1,18 @@
{
"documentTitle": {
- "default": "Ayarlar - Frigate",
- "classification": "Sınıflandırma Ayarları - Frigate",
- "camera": "Kamera Ayarları - Frigate",
- "masksAndZones": "Maske ve Alan Düzenleyici - Frigate",
- "authentication": "Kimlik Doğrulama Ayarları - Frigate",
- "motionTuner": "Hareket Algılama Ayarları - Frigate",
- "frigatePlus": "Frigate+ Ayarları - Frigate",
- "object": "Hata Ayıklama - Frigate",
- "general": "Kullanıcı Arayüzü Ayarları – Frigate",
- "notifications": "Bildirim Ayarları - Frigate",
- "enrichments": "Zenginleştirme Ayarları - Frigate",
- "cameraManagement": "Kameraları Yönet - Frigate",
- "cameraReview": "Kamera İnceleme Ayarları - Frigate"
+ "default": "Ayarlar - DIENST",
+ "classification": "Sınıflandırma Ayarları - DIENST",
+ "camera": "Kamera Ayarları - DIENST",
+ "masksAndZones": "Maske ve Alan Düzenleyici - DIENST",
+ "authentication": "Kimlik Doğrulama Ayarları - DIENST",
+ "motionTuner": "Hareket Algılama Ayarları - DIENST",
+ "frigatePlus": "Frigate+ Ayarları - DIENST",
+ "object": "Hata Ayıklama - DIENST",
+ "general": "Kullanıcı Arayüzü Ayarları - DIENST",
+ "notifications": "Bildirim Ayarları - DIENST",
+ "enrichments": "Zenginleştirme Ayarları - DIENST",
+ "cameraManagement": "Kameraları Yönet - DIENST",
+ "cameraReview": "Kamera İnceleme Ayarları - DIENST"
},
"menu": {
"masksAndZones": "Maskeler / Alanlar",
@@ -296,7 +296,7 @@
},
"zones": {
"label": "Alanlar",
- "documentTitle": "Alanı Düzenle - Frigate",
+ "documentTitle": "Alanı Düzenle - DIENST",
"desc": {
"documentation": "Dökümantasyon",
"title": "Alanlar, görüntüde belirli bir alanını tanımlamanıza olanak tanır. Böylece bir nesnenin belirli bir alanda olup olmadığını tespit edebilirsiniz."
@@ -373,7 +373,7 @@
},
"label": "Hareket Maskesi",
"edit": "Hareket Maskesini Düzenle",
- "documentTitle": "Hareket Maskesini Düzenle - Frigate"
+ "documentTitle": "Hareket Maskesini Düzenle - DIENST"
},
"objectMasks": {
"desc": {
@@ -396,7 +396,7 @@
"title": "{{polygonName}} kaydedildi."
}
},
- "documentTitle": "Nesne Maskesini Düzenle - Frigate",
+ "documentTitle": "Nesne Maskesini Düzenle - DIENST",
"label": "Nesne Maskeleri",
"clickDrawPolygon": "Görüntü üzerinde bir çokgen çizmek için tıklayın."
},
diff --git a/web/public/locales/tr/views/system.json b/web/public/locales/tr/views/system.json
index 2cc2ef041..b82cbcec6 100644
--- a/web/public/locales/tr/views/system.json
+++ b/web/public/locales/tr/views/system.json
@@ -1,14 +1,14 @@
{
"documentTitle": {
"logs": {
- "frigate": "Frigate Günlükleri - Frigate",
- "go2rtc": "Go2RTC Günlükleri - Frigate",
- "nginx": "Nginx Günlükleri - Frigate"
+ "frigate": "Frigate Günlükleri - DIENST",
+ "go2rtc": "Go2RTC Günlükleri - DIENST",
+ "nginx": "Nginx Günlükleri - DIENST"
},
- "general": "Genel İstatistikler - Frigate",
- "storage": "Depolama İstatistikleri - Frigate",
- "cameras": "Kamera İstatistikleri - Frigate",
- "enrichments": "Zenginleştirme İstatistikleri - Frigate"
+ "general": "Genel İstatistikler - DIENST",
+ "storage": "Depolama İstatistikleri - DIENST",
+ "cameras": "Kamera İstatistikleri - DIENST",
+ "enrichments": "Zenginleştirme İstatistikleri - DIENST"
},
"metrics": "Sistem metrikleri",
"general": {
diff --git a/web/public/locales/uk/common.json b/web/public/locales/uk/common.json
index b6692bad8..2dee59c0f 100644
--- a/web/public/locales/uk/common.json
+++ b/web/public/locales/uk/common.json
@@ -279,12 +279,12 @@
"label": "Пагінація"
},
"accessDenied": {
- "documentTitle": "Доступ заборонений - Frigate",
+ "documentTitle": "Доступ заборонений - DIENST",
"title": "Доступ заборонений",
"desc": "У вас немає дозволу на перегляд цієї сторінки."
},
"notFound": {
- "documentTitle": "Не знайдено - Frigate",
+ "documentTitle": "Не знайдено - DIENST",
"desc": "Сторінка не знайдена",
"title": "404"
},
diff --git a/web/public/locales/uk/views/classificationModel.json b/web/public/locales/uk/views/classificationModel.json
index b88ec48f7..37e69047e 100644
--- a/web/public/locales/uk/views/classificationModel.json
+++ b/web/public/locales/uk/views/classificationModel.json
@@ -1,5 +1,5 @@
{
- "documentTitle": "Моделі класифікації - Frigate",
+ "documentTitle": "Моделі класифікації - DIENST",
"button": {
"deleteClassificationAttempts": "Видалити зображення класифікації",
"renameCategory": "Перейменувати клас",
diff --git a/web/public/locales/uk/views/configEditor.json b/web/public/locales/uk/views/configEditor.json
index 0e3ef13cb..589a07ce2 100644
--- a/web/public/locales/uk/views/configEditor.json
+++ b/web/public/locales/uk/views/configEditor.json
@@ -8,7 +8,7 @@
"copyToClipboard": "Налаштування було скопійовано до буфера обміну даними."
}
},
- "documentTitle": "Редактор конфігурації - Frigate",
+ "documentTitle": "Редактор конфігурації - DIENST",
"copyConfig": "Скопіювати конфігурацію",
"saveOnly": "Тільки зберегти",
"configEditor": "Налаштування редактора",
diff --git a/web/public/locales/uk/views/events.json b/web/public/locales/uk/views/events.json
index 3cceebda5..14ee56957 100644
--- a/web/public/locales/uk/views/events.json
+++ b/web/public/locales/uk/views/events.json
@@ -21,9 +21,9 @@
"aria": "Выбрати події",
"noFoundForTimePeriod": "За цей період подій не знайдено."
},
- "documentTitle": "Перегляд подiя - Frigate",
+ "documentTitle": "Перегляд подiя - DIENST",
"recordings": {
- "documentTitle": "Записи - Frigate"
+ "documentTitle": "Записи - DIENST"
},
"calendarFilter": {
"last24Hours": "Останні 24 години"
diff --git a/web/public/locales/uk/views/explore.json b/web/public/locales/uk/views/explore.json
index db7715f51..2cff7b006 100644
--- a/web/public/locales/uk/views/explore.json
+++ b/web/public/locales/uk/views/explore.json
@@ -27,7 +27,7 @@
}
}
},
- "documentTitle": "Пошук подія - Frigate",
+ "documentTitle": "Пошук подія - DIENST",
"searchResult": {
"tooltip": "Збігається з {{type}} на рівні {{confidence}}%",
"deleteTrackedObject": {
diff --git a/web/public/locales/uk/views/exports.json b/web/public/locales/uk/views/exports.json
index 6b4108f4d..d0e1952bd 100644
--- a/web/public/locales/uk/views/exports.json
+++ b/web/public/locales/uk/views/exports.json
@@ -1,5 +1,5 @@
{
- "documentTitle": "Експорта - Frigate",
+ "documentTitle": "Експорта - DIENST",
"search": "Пошук",
"noExports": "Не знайдено експортованих файлів",
"deleteExport": "Видалити експортування",
diff --git a/web/public/locales/uk/views/faceLibrary.json b/web/public/locales/uk/views/faceLibrary.json
index 1170e3ee1..1960534c9 100644
--- a/web/public/locales/uk/views/faceLibrary.json
+++ b/web/public/locales/uk/views/faceLibrary.json
@@ -1,6 +1,6 @@
{
"selectItem": "Вибрати {{item}}",
- "documentTitle": "Бібліотека обличчя - Frigate",
+ "documentTitle": "Бібліотека обличчя - DIENST",
"readTheDocs": "Прочитати документацію",
"deleteFaceLibrary": {
"desc": "Ви впевнені, що хочете видалити колекцію {{name}}? Це назавжди видалить усі пов’язані з нею обличчя.",
diff --git a/web/public/locales/uk/views/live.json b/web/public/locales/uk/views/live.json
index 0b8b405b2..2da9a23cb 100644
--- a/web/public/locales/uk/views/live.json
+++ b/web/public/locales/uk/views/live.json
@@ -105,8 +105,8 @@
"label": "Редагувати групу камер"
}
},
- "documentTitle": "Пряма трансляція - Frigate",
- "documentTitle.withCamera": "{{camera}} - Пряма трансляція - Frigate",
+ "documentTitle": "Пряма трансляція - DIENST",
+ "documentTitle.withCamera": "{{camera}} - Пряма трансляція - DIENST",
"lowBandwidthMode": "Економічний режим",
"twoWayTalk": {
"enable": "Увімкнути двосторонню розмову",
diff --git a/web/public/locales/uk/views/settings.json b/web/public/locales/uk/views/settings.json
index 811444be3..5a50c0603 100644
--- a/web/public/locales/uk/views/settings.json
+++ b/web/public/locales/uk/views/settings.json
@@ -558,11 +558,11 @@
"classification": "Налаштування класифікації – Фрегат",
"masksAndZones": "Редактор масок та зон – Фрегат",
"motionTuner": "Тюнер руху - Фрегат",
- "general": "Основна Статус – Frigate",
- "frigatePlus": "Налаштування Frigate+ – Frigate",
- "enrichments": "Налаштуваннях збагачення – Frigate",
- "cameraManagement": "Керування камерами - Frigate",
- "cameraReview": "Налаштування перегляду камери - Frigate"
+ "general": "Основна Статус - DIENST",
+ "frigatePlus": "Налаштування Frigate+ - DIENST",
+ "enrichments": "Налаштуваннях збагачення - DIENST",
+ "cameraManagement": "Керування камерами - DIENST",
+ "cameraReview": "Налаштування перегляду камери - DIENST"
},
"menu": {
"ui": "Інтерфейс користувача",
diff --git a/web/public/locales/ur/views/configEditor.json b/web/public/locales/ur/views/configEditor.json
index e32955e7e..739ec2204 100644
--- a/web/public/locales/ur/views/configEditor.json
+++ b/web/public/locales/ur/views/configEditor.json
@@ -7,7 +7,7 @@
"copyToClipboard": "کنفیگ کلپ بورڈ پر کاپی ہو گیا۔"
}
},
- "documentTitle": "کنفیگریشن ایڈیٹر - Frigate",
+ "documentTitle": "کنفیگریشن ایڈیٹر - DIENST",
"configEditor": "کنفیگریشن ایڈیٹر",
"copyConfig": "کنفیگریشن نقل کریں",
"saveAndRestart": "محفوظ کریں اور دوبارہ شروع کریں",
diff --git a/web/public/locales/vi/views/configEditor.json b/web/public/locales/vi/views/configEditor.json
index a2ffce4a9..cf5363a39 100644
--- a/web/public/locales/vi/views/configEditor.json
+++ b/web/public/locales/vi/views/configEditor.json
@@ -12,7 +12,7 @@
}
},
"configEditor": "Trình chỉnh sửa cấu hình",
- "documentTitle": "Trình chỉnh sửa - Frigate",
+ "documentTitle": "Trình chỉnh sửa - DIENST",
"safeConfigEditor": "Chỉnh sửa cấu hình (Chế độ an toàn)",
"safeModeDescription": "Frigate đang ở chế độ an toàn do lỗi kiểm tra cấu hình."
}
diff --git a/web/public/locales/vi/views/events.json b/web/public/locales/vi/views/events.json
index 94b2bc710..dc67e2f2f 100644
--- a/web/public/locales/vi/views/events.json
+++ b/web/public/locales/vi/views/events.json
@@ -9,7 +9,7 @@
"allCameras": "Tất cả Camera",
"detected": "Đã phát hiện",
"recordings": {
- "documentTitle": "Bản ghi - Frigate"
+ "documentTitle": "Bản ghi - DIENST"
},
"events": {
"aria": "Chọn sự kiện",
@@ -25,7 +25,7 @@
"motion": "Không tìm thấy dữ liệu chuyển động"
},
"timeline": "Dòng thời gian",
- "documentTitle": "Xem lại - Frigate",
+ "documentTitle": "Xem lại - DIENST",
"calendarFilter": {
"last24Hours": "24 giờ qua"
},
diff --git a/web/public/locales/vi/views/explore.json b/web/public/locales/vi/views/explore.json
index 7110009ce..965edf086 100644
--- a/web/public/locales/vi/views/explore.json
+++ b/web/public/locales/vi/views/explore.json
@@ -230,7 +230,7 @@
"tracking_details": "chi tiết theo dõi"
},
"fetchingTrackedObjectsFailed": "Lỗi khi tìm nạp các đối tượng được theo dõi: {{errorMessage}}",
- "documentTitle": "Khám phá - Frigate",
+ "documentTitle": "Khám phá - DIENST",
"generativeAI": "AI Tạo sinh",
"trackedObjectsCount_other": "{{count}} đối tượng được theo dõi ",
"aiAnalysis": {
diff --git a/web/public/locales/vi/views/exports.json b/web/public/locales/vi/views/exports.json
index 95b3b87c6..ceccca8c2 100644
--- a/web/public/locales/vi/views/exports.json
+++ b/web/public/locales/vi/views/exports.json
@@ -1,6 +1,6 @@
{
"search": "Tìm kiếm",
- "documentTitle": "Xuất tệp - Frigate",
+ "documentTitle": "Xuất tệp - DIENST",
"noExports": "Không tìm thấy tệp xuất nào",
"deleteExport": "Xóa tệp xuất",
"deleteExport.desc": "Bạn có chắc chắn muốn xóa {{exportName}} không?",
diff --git a/web/public/locales/vi/views/faceLibrary.json b/web/public/locales/vi/views/faceLibrary.json
index cef8b9da7..314bf9e3f 100644
--- a/web/public/locales/vi/views/faceLibrary.json
+++ b/web/public/locales/vi/views/faceLibrary.json
@@ -88,7 +88,7 @@
},
"selectFace": "Chọn khuôn mặt",
"pixels": "{{area}}px",
- "documentTitle": "Thư viện Khuôn mặt - Frigate",
+ "documentTitle": "Thư viện Khuôn mặt - DIENST",
"uploadFaceImage": {
"title": "Tải lên hình ảnh khuôn mặt",
"desc": "Tải lên một hình ảnh để quét khuôn mặt và bao gồm cho {{pageToggle}}"
diff --git a/web/public/locales/vi/views/live.json b/web/public/locales/vi/views/live.json
index c238a34c6..d9d84bc96 100644
--- a/web/public/locales/vi/views/live.json
+++ b/web/public/locales/vi/views/live.json
@@ -1,6 +1,6 @@
{
- "documentTitle": "Trực tiếp - Frigate",
- "documentTitle.withCamera": "{{camera}} - Trực tiếp - Frigate",
+ "documentTitle": "Trực tiếp - DIENST",
+ "documentTitle.withCamera": "{{camera}} - Trực tiếp - DIENST",
"lowBandwidthMode": "Chế độ băng thông thấp",
"twoWayTalk": {
"enable": "Bật đàm thoại hai chiều",
diff --git a/web/public/locales/vi/views/settings.json b/web/public/locales/vi/views/settings.json
index 69b37b837..5b989e270 100644
--- a/web/public/locales/vi/views/settings.json
+++ b/web/public/locales/vi/views/settings.json
@@ -1,17 +1,17 @@
{
"documentTitle": {
- "default": "Cài đặt - Frigate",
- "authentication": "Cài đặt Xác thực - Frigate",
- "camera": "Cài đặt Camera - Frigate",
- "enrichments": "Cài đặt Làm giàu Dữ liệu - Frigate",
- "notifications": "Cài đặt Thông báo - Frigate",
- "masksAndZones": "Trình chỉnh sửa Mặt nạ và Vùng - Frigate",
- "object": "Gỡ lỗi - Frigate",
- "general": "Cài đặt giao diện – Frigate",
- "frigatePlus": "Cài đặt Frigate+ - Frigate",
- "motionTuner": "Bộ tinh chỉnh Chuyển động - Frigate",
- "cameraManagement": "Quản Lý Camera - Frigate",
- "cameraReview": "Cài Đặt Xem Lại Camera - Frigate"
+ "default": "Cài đặt - DIENST",
+ "authentication": "Cài đặt Xác thực - DIENST",
+ "camera": "Cài đặt Camera - DIENST",
+ "enrichments": "Cài đặt Làm giàu Dữ liệu - DIENST",
+ "notifications": "Cài đặt Thông báo - DIENST",
+ "masksAndZones": "Trình chỉnh sửa Mặt nạ và Vùng - DIENST",
+ "object": "Gỡ lỗi - DIENST",
+ "general": "Cài đặt giao diện - DIENST",
+ "frigatePlus": "Cài đặt Frigate+ - DIENST",
+ "motionTuner": "Bộ tinh chỉnh Chuyển động - DIENST",
+ "cameraManagement": "Quản Lý Camera - DIENST",
+ "cameraReview": "Cài Đặt Xem Lại Camera - DIENST"
},
"notification": {
"toast": {
@@ -244,7 +244,7 @@
"title": "Đối tượng",
"desc": "Loại đối tượng áp dụng cho mặt nạ đối tượng này."
},
- "documentTitle": "Chỉnh sửa Mặt nạ đối tượng - Frigate",
+ "documentTitle": "Chỉnh sửa Mặt nạ đối tượng - DIENST",
"desc": {
"title": "Mặt nạ lọc đối tượng được sử dụng để lọc ra các kết quả dương tính giả cho một loại đối tượng nhất định dựa trên vị trí.",
"documentation": "Tài liệu"
@@ -305,14 +305,14 @@
},
"edit": "Chỉnh sửa Vùng",
"label": "Vùng",
- "documentTitle": "Chỉnh sửa Vùng - Frigate",
+ "documentTitle": "Chỉnh sửa Vùng - DIENST",
"inertia": {
"title": "Quán tính",
"desc": "Chỉ định số khung hình mà một đối tượng phải ở trong một vùng trước khi được coi là ở trong vùng. Mặc định: 3"
}
},
"motionMasks": {
- "documentTitle": "Chỉnh sửa Mặt nạ chuyển động - Frigate",
+ "documentTitle": "Chỉnh sửa Mặt nạ chuyển động - DIENST",
"desc": {
"documentation": "Tài liệu",
"title": "Mặt nạ chuyển động được sử dụng để ngăn các loại chuyển động không mong muốn kích hoạt phát hiện. Việc che quá nhiều sẽ khiến việc theo dõi đối tượng trở nên khó khăn hơn."
diff --git a/web/public/locales/vi/views/system.json b/web/public/locales/vi/views/system.json
index bdaffe7b9..26ae48afa 100644
--- a/web/public/locales/vi/views/system.json
+++ b/web/public/locales/vi/views/system.json
@@ -1,14 +1,14 @@
{
"documentTitle": {
- "storage": "Thống kê lưu trữ - Frigate",
- "general": "Thống kê Chung - Frigate",
- "enrichments": "Thống kê Làm giàu Dữ liệu - Frigate",
+ "storage": "Thống kê lưu trữ - DIENST",
+ "general": "Thống kê Chung - DIENST",
+ "enrichments": "Thống kê Làm giàu Dữ liệu - DIENST",
"logs": {
- "frigate": "Nhật ký Frigate - Frigate",
- "go2rtc": "Nhật ký Go2RTC - Frigate",
- "nginx": "Nhật ký Nginx - Frigate"
+ "frigate": "Nhật ký Frigate - DIENST",
+ "go2rtc": "Nhật ký Go2RTC - DIENST",
+ "nginx": "Nhật ký Nginx - DIENST"
},
- "cameras": "Thống kê Camera - Frigate"
+ "cameras": "Thống kê Camera - DIENST"
},
"general": {
"hardwareInfo": {
diff --git a/web/public/locales/yue-Hant/common.json b/web/public/locales/yue-Hant/common.json
index a65550366..03aebf289 100644
--- a/web/public/locales/yue-Hant/common.json
+++ b/web/public/locales/yue-Hant/common.json
@@ -246,7 +246,7 @@
},
"accessDenied": {
"title": "拒絕存取",
- "documentTitle": "拒絕存取 - Frigate",
+ "documentTitle": "拒絕存取 - DIENST",
"desc": "你無權查看此頁面。"
},
"selectItem": "選擇 {{item}}",
@@ -261,7 +261,7 @@
"copyUrlToClipboard": "已複製 URL 到剪貼簿。"
},
"notFound": {
- "documentTitle": "找不到頁面 - Frigate",
+ "documentTitle": "找不到頁面 - DIENST",
"desc": "找不到頁面",
"title": "404"
},
diff --git a/web/public/locales/yue-Hant/views/configEditor.json b/web/public/locales/yue-Hant/views/configEditor.json
index 5bf9d8a2e..6c23b28d0 100644
--- a/web/public/locales/yue-Hant/views/configEditor.json
+++ b/web/public/locales/yue-Hant/views/configEditor.json
@@ -1,5 +1,5 @@
{
- "documentTitle": "設定編輯器 - Frigate",
+ "documentTitle": "設定編輯器 - DIENST",
"configEditor": "設定編輯器",
"copyConfig": "複製設定",
"saveAndRestart": "儲存並重新啟動",
diff --git a/web/public/locales/yue-Hant/views/events.json b/web/public/locales/yue-Hant/views/events.json
index b5e9dc84d..1c21682e7 100644
--- a/web/public/locales/yue-Hant/views/events.json
+++ b/web/public/locales/yue-Hant/views/events.json
@@ -13,7 +13,7 @@
"aria": "選擇事件"
},
"recordings": {
- "documentTitle": "錄影 - Frigate"
+ "documentTitle": "錄影 - DIENST"
},
"calendarFilter": {
"last24Hours": "過去24小時"
@@ -27,7 +27,7 @@
"selected_one": "已選擇 {{count}} 項",
"selected_other": "已選擇 {{count}} 項",
"allCameras": "所有鏡頭",
- "documentTitle": "審查 - Frigate",
+ "documentTitle": "審查 - DIENST",
"motion": {
"only": "只顯示移動",
"label": "移動"
diff --git a/web/public/locales/yue-Hant/views/explore.json b/web/public/locales/yue-Hant/views/explore.json
index e3a8c9409..c71f82fb5 100644
--- a/web/public/locales/yue-Hant/views/explore.json
+++ b/web/public/locales/yue-Hant/views/explore.json
@@ -1,5 +1,5 @@
{
- "documentTitle": "瀏覽 - Frigate",
+ "documentTitle": "瀏覽 - DIENST",
"generativeAI": "生成式人工智能",
"exploreIsUnavailable": {
"title": "無法使用瀏覽功能",
diff --git a/web/public/locales/yue-Hant/views/exports.json b/web/public/locales/yue-Hant/views/exports.json
index 48d839717..d9b7c8565 100644
--- a/web/public/locales/yue-Hant/views/exports.json
+++ b/web/public/locales/yue-Hant/views/exports.json
@@ -1,5 +1,5 @@
{
- "documentTitle": "匯出 - Frigate",
+ "documentTitle": "匯出 - DIENST",
"search": "搜尋",
"noExports": "未找到匯出項目",
"deleteExport": "刪除匯出",
diff --git a/web/public/locales/yue-Hant/views/faceLibrary.json b/web/public/locales/yue-Hant/views/faceLibrary.json
index 53525d914..53f23bbe1 100644
--- a/web/public/locales/yue-Hant/views/faceLibrary.json
+++ b/web/public/locales/yue-Hant/views/faceLibrary.json
@@ -15,7 +15,7 @@
"placeholder": "請輸入此集合的名稱",
"invalidName": "名稱無效。名稱只可以包含英文字母、數字、空格、撇號(')、底線(_)同連字號(-)。"
},
- "documentTitle": "人臉庫 - Frigate",
+ "documentTitle": "人臉庫 - DIENST",
"uploadFaceImage": {
"title": "上傳人臉圖片",
"desc": "上傳圖片以掃描人臉並納入 {{pageToggle}}"
diff --git a/web/public/locales/yue-Hant/views/live.json b/web/public/locales/yue-Hant/views/live.json
index bb3b440ee..e93c93bf5 100644
--- a/web/public/locales/yue-Hant/views/live.json
+++ b/web/public/locales/yue-Hant/views/live.json
@@ -1,5 +1,5 @@
{
- "documentTitle": "即時畫面 - Frigate",
+ "documentTitle": "即時畫面 - DIENST",
"cameraAudio": {
"disable": "停用鏡頭音訊",
"enable": "啟用鏡頭音訊"
@@ -52,7 +52,7 @@
"disable": "停用雙向通話"
},
"lowBandwidthMode": "低頻寬模式",
- "documentTitle.withCamera": "{{camera}} - 即時畫面 - Frigate",
+ "documentTitle.withCamera": "{{camera}} - 即時畫面 - DIENST",
"recording": {
"disable": "停用錄影",
"enable": "啟用錄影"
diff --git a/web/public/locales/yue-Hant/views/settings.json b/web/public/locales/yue-Hant/views/settings.json
index 34982abb4..645bc3537 100644
--- a/web/public/locales/yue-Hant/views/settings.json
+++ b/web/public/locales/yue-Hant/views/settings.json
@@ -1,18 +1,18 @@
{
"documentTitle": {
- "default": "設定 - Frigate",
- "authentication": "認證設定 - Frigate",
- "camera": "鏡頭設定 - Frigate",
- "classification": "進階功能設定 - Frigate",
- "masksAndZones": "遮罩與區域編輯器 - Frigate",
- "motionTuner": "移動調校器 - Frigate",
- "object": "除錯 - Frigate",
- "general": "一般設定 - Frigate",
- "frigatePlus": "Frigate+ 設定 - Frigate",
- "notifications": "通知設定 - Frigate",
- "enrichments": "進階功能設定 - Frigate",
- "cameraManagement": "管理鏡頭 - Frigate",
- "cameraReview": "鏡頭檢視設定 - Frigate"
+ "default": "設定 - DIENST",
+ "authentication": "認證設定 - DIENST",
+ "camera": "鏡頭設定 - DIENST",
+ "classification": "進階功能設定 - DIENST",
+ "masksAndZones": "遮罩與區域編輯器 - DIENST",
+ "motionTuner": "移動調校器 - DIENST",
+ "object": "除錯 - DIENST",
+ "general": "一般設定 - DIENST",
+ "frigatePlus": "Frigate+ 設定 - DIENST",
+ "notifications": "通知設定 - DIENST",
+ "enrichments": "進階功能設定 - DIENST",
+ "cameraManagement": "管理鏡頭 - DIENST",
+ "cameraReview": "鏡頭檢視設定 - DIENST"
},
"menu": {
"ui": "介面",
@@ -332,11 +332,11 @@
"title": "區域可讓你定義畫面中的特定範圍,以判斷物件是否進入該範圍。",
"documentation": "文件"
},
- "documentTitle": "編輯區域 - Frigate"
+ "documentTitle": "編輯區域 - DIENST"
},
"motionMasks": {
"label": "移動遮罩",
- "documentTitle": "編輯移動遮罩 - Frigate",
+ "documentTitle": "編輯移動遮罩 - DIENST",
"desc": {
"title": "移動遮罩可防止不需要的移動觸發偵測。遮罩過多會令物件追蹤變得困難。",
"documentation": "文件"
@@ -382,7 +382,7 @@
"noName": "物件遮罩已儲存。請重新啟動Frigate以套用更改。"
}
},
- "documentTitle": "編輯物件遮罩 - Frigate",
+ "documentTitle": "編輯物件遮罩 - DIENST",
"edit": "編輯物件遮罩"
},
"filter": {
diff --git a/web/public/locales/yue-Hant/views/system.json b/web/public/locales/yue-Hant/views/system.json
index 6b52401c8..943d902c1 100644
--- a/web/public/locales/yue-Hant/views/system.json
+++ b/web/public/locales/yue-Hant/views/system.json
@@ -1,13 +1,13 @@
{
"documentTitle": {
- "cameras": "鏡頭統計 - Frigate",
- "storage": "儲存裝置統計 - Frigate",
- "general": "一般統計 - Frigate",
- "enrichments": "進階功能統計 - Frigate",
+ "cameras": "鏡頭統計 - DIENST",
+ "storage": "儲存裝置統計 - DIENST",
+ "general": "一般統計 - DIENST",
+ "enrichments": "進階功能統計 - DIENST",
"logs": {
- "frigate": "Frigate 日誌 - Frigate",
- "nginx": "Nginx 日誌 - Frigate",
- "go2rtc": "Go2RTC 日誌 - Frigate"
+ "frigate": "Frigate 日誌 - DIENST",
+ "nginx": "Nginx 日誌 - DIENST",
+ "go2rtc": "Go2RTC 日誌 - DIENST"
}
},
"title": "系統",
diff --git a/web/public/locales/zh-CN/common.json b/web/public/locales/zh-CN/common.json
index b9bdbad33..cb4d190b3 100644
--- a/web/public/locales/zh-CN/common.json
+++ b/web/public/locales/zh-CN/common.json
@@ -274,12 +274,12 @@
"desc": "管理员可以完全访问Frigate界面上所有功能。成员则仅能查看摄像头、核查项和历史录像。"
},
"accessDenied": {
- "documentTitle": "没有权限 - Frigate",
+ "documentTitle": "没有权限 - DIENST",
"title": "没有权限",
"desc": "您没有权限查看此页面。"
},
"notFound": {
- "documentTitle": "没有找到页面 - Frigate",
+ "documentTitle": "没有找到页面 - DIENST",
"title": "404",
"desc": "页面未找到"
},
diff --git a/web/public/locales/zh-CN/views/classificationModel.json b/web/public/locales/zh-CN/views/classificationModel.json
index a3fa01a60..66848d562 100644
--- a/web/public/locales/zh-CN/views/classificationModel.json
+++ b/web/public/locales/zh-CN/views/classificationModel.json
@@ -1,5 +1,5 @@
{
- "documentTitle": "分类模型 - Frigate",
+ "documentTitle": "分类模型 - DIENST",
"button": {
"deleteClassificationAttempts": "删除分类图片",
"renameCategory": "重命名类别",
diff --git a/web/public/locales/zh-CN/views/configEditor.json b/web/public/locales/zh-CN/views/configEditor.json
index a4ca5c5b7..9f882a264 100644
--- a/web/public/locales/zh-CN/views/configEditor.json
+++ b/web/public/locales/zh-CN/views/configEditor.json
@@ -1,5 +1,5 @@
{
- "documentTitle": "配置编辑器 - Frigate",
+ "documentTitle": "配置编辑器 - DIENST",
"configEditor": "配置编辑器",
"copyConfig": "复制配置",
"saveAndRestart": "保存并重启",
diff --git a/web/public/locales/zh-CN/views/events.json b/web/public/locales/zh-CN/views/events.json
index ac795e2a9..114f1d3f5 100644
--- a/web/public/locales/zh-CN/views/events.json
+++ b/web/public/locales/zh-CN/views/events.json
@@ -18,9 +18,9 @@
"aria": "选择事件",
"noFoundForTimePeriod": "未找到该时间段的事件。"
},
- "documentTitle": "核查 - Frigate",
+ "documentTitle": "核查 - DIENST",
"recordings": {
- "documentTitle": "回放 - Frigate"
+ "documentTitle": "回放 - DIENST"
},
"calendarFilter": {
"last24Hours": "过去24小时"
diff --git a/web/public/locales/zh-CN/views/explore.json b/web/public/locales/zh-CN/views/explore.json
index e94442eaf..f197e69f0 100644
--- a/web/public/locales/zh-CN/views/explore.json
+++ b/web/public/locales/zh-CN/views/explore.json
@@ -1,5 +1,5 @@
{
- "documentTitle": "浏览 - Frigate",
+ "documentTitle": "浏览 - DIENST",
"generativeAI": "生成式 AI",
"exploreIsUnavailable": {
"title": "浏览功能不可用",
diff --git a/web/public/locales/zh-CN/views/exports.json b/web/public/locales/zh-CN/views/exports.json
index 3270dc4e5..bacafd547 100644
--- a/web/public/locales/zh-CN/views/exports.json
+++ b/web/public/locales/zh-CN/views/exports.json
@@ -1,5 +1,5 @@
{
- "documentTitle": "导出 - Frigate",
+ "documentTitle": "导出 - DIENST",
"search": "搜索",
"noExports": "没有找到导出的项目",
"deleteExport": "删除导出的项目",
diff --git a/web/public/locales/zh-CN/views/faceLibrary.json b/web/public/locales/zh-CN/views/faceLibrary.json
index b4bde067b..415ab44b2 100644
--- a/web/public/locales/zh-CN/views/faceLibrary.json
+++ b/web/public/locales/zh-CN/views/faceLibrary.json
@@ -14,7 +14,7 @@
"scoreInfo": "子标签分数是基于所有识别到的人脸置信度的加权评分,因此可能与快照中显示的分数有所不同。",
"unknown": "未知"
},
- "documentTitle": "人脸库 - Frigate",
+ "documentTitle": "人脸库 - DIENST",
"uploadFaceImage": {
"title": "上传人脸图片",
"desc": "上传图片以扫描人脸并包含在{{pageToggle}}中"
diff --git a/web/public/locales/zh-CN/views/live.json b/web/public/locales/zh-CN/views/live.json
index aeefa1826..92fa822af 100644
--- a/web/public/locales/zh-CN/views/live.json
+++ b/web/public/locales/zh-CN/views/live.json
@@ -1,6 +1,6 @@
{
- "documentTitle": "实时监控 - Frigate",
- "documentTitle.withCamera": "{{camera}} - 实时监控 - Frigate",
+ "documentTitle": "实时监控 - DIENST",
+ "documentTitle.withCamera": "{{camera}} - 实时监控 - DIENST",
"lowBandwidthMode": "低带宽模式",
"twoWayTalk": {
"enable": "开启实时对话",
diff --git a/web/public/locales/zh-CN/views/settings.json b/web/public/locales/zh-CN/views/settings.json
index 5a5130fa0..60ec3188f 100644
--- a/web/public/locales/zh-CN/views/settings.json
+++ b/web/public/locales/zh-CN/views/settings.json
@@ -1,18 +1,18 @@
{
"documentTitle": {
- "default": "设置 - Frigate",
- "authentication": "身份验证设置 - Frigate",
- "camera": "摄像头设置 - Frigate",
- "classification": "分类设置 - Frigate",
- "masksAndZones": "遮罩和区域编辑器 - Frigate",
- "motionTuner": "画面变动调整器 - Frigate",
- "object": "调试 - Frigate",
- "general": "页面设置 - Frigate",
- "frigatePlus": "Frigate+ 设置 - Frigate",
- "notifications": "通知设置 - Frigate",
- "enrichments": "增强功能设置 - Frigate",
- "cameraManagement": "管理摄像头 - Frigate",
- "cameraReview": "摄像头核查设置 - Frigate"
+ "default": "设置 - DIENST",
+ "authentication": "身份验证设置 - DIENST",
+ "camera": "摄像头设置 - DIENST",
+ "classification": "分类设置 - DIENST",
+ "masksAndZones": "遮罩和区域编辑器 - DIENST",
+ "motionTuner": "画面变动调整器 - DIENST",
+ "object": "调试 - DIENST",
+ "general": "页面设置 - DIENST",
+ "frigatePlus": "Frigate+ 设置 - DIENST",
+ "notifications": "通知设置 - DIENST",
+ "enrichments": "增强功能设置 - DIENST",
+ "cameraManagement": "管理摄像头 - DIENST",
+ "cameraReview": "摄像头核查设置 - DIENST"
},
"menu": {
"ui": "界面设置",
@@ -297,7 +297,7 @@
},
"zones": {
"label": "区域",
- "documentTitle": "编辑区域 - Frigate",
+ "documentTitle": "编辑区域 - DIENST",
"desc": {
"title": "该功能允许你定义特定区域,以便你可以确定特定目标或物体是否在该区域内。",
"documentation": "文档"
@@ -349,7 +349,7 @@
},
"motionMasks": {
"label": "画面变动遮罩",
- "documentTitle": "编辑画面变动遮罩 - Frigate",
+ "documentTitle": "编辑画面变动遮罩 - DIENST",
"desc": {
"title": "画面变动遮罩用于防止触发不必要的画面变动检测。过度的设置遮罩将使目标更加难以被追踪。",
"documentation": "文档"
@@ -376,7 +376,7 @@
},
"objectMasks": {
"label": "目标遮罩",
- "documentTitle": "编辑目标遮罩 - Frigate",
+ "documentTitle": "编辑目标遮罩 - DIENST",
"desc": {
"title": "目标过滤器用于防止特定位置出现对某个目标/物体的误报。",
"documentation": "文档"
diff --git a/web/public/locales/zh-CN/views/system.json b/web/public/locales/zh-CN/views/system.json
index 3d6eff072..731245788 100644
--- a/web/public/locales/zh-CN/views/system.json
+++ b/web/public/locales/zh-CN/views/system.json
@@ -1,13 +1,13 @@
{
"documentTitle": {
- "cameras": "摄像头统计 - Frigate",
- "storage": "存储统计 - Frigate",
- "general": "常规统计 - Frigate",
- "enrichments": "增强功能统计 - Frigate",
+ "cameras": "摄像头统计 - DIENST",
+ "storage": "存储统计 - DIENST",
+ "general": "常规统计 - DIENST",
+ "enrichments": "增强功能统计 - DIENST",
"logs": {
- "frigate": "Frigate 日志 - Frigate",
- "go2rtc": "Go2RTC 日志 - Frigate",
- "nginx": "Nginx 日志 - Frigate"
+ "frigate": "Frigate 日志 - DIENST",
+ "go2rtc": "Go2RTC 日志 - DIENST",
+ "nginx": "Nginx 日志 - DIENST"
}
},
"title": "系统",
diff --git a/web/public/locales/zh-Hant/common.json b/web/public/locales/zh-Hant/common.json
index b785c8b52..c952fc810 100644
--- a/web/public/locales/zh-Hant/common.json
+++ b/web/public/locales/zh-Hant/common.json
@@ -264,12 +264,12 @@
"more": "更多頁面"
},
"accessDenied": {
- "documentTitle": "拒絕存取 - Frigate",
+ "documentTitle": "拒絕存取 - DIENST",
"title": "拒絕存取",
"desc": "你沒有瀏覽此頁面的權限。"
},
"notFound": {
- "documentTitle": "找不到頁面 - Frigate",
+ "documentTitle": "找不到頁面 - DIENST",
"title": "404",
"desc": "找不到頁面"
},
diff --git a/web/public/locales/zh-Hant/views/configEditor.json b/web/public/locales/zh-Hant/views/configEditor.json
index f1943edbb..659fe32eb 100644
--- a/web/public/locales/zh-Hant/views/configEditor.json
+++ b/web/public/locales/zh-Hant/views/configEditor.json
@@ -1,5 +1,5 @@
{
- "documentTitle": "設定編輯器 - Frigate",
+ "documentTitle": "設定編輯器 - DIENST",
"configEditor": "設定編輯器",
"copyConfig": "複製設定",
"saveAndRestart": "保存並重新啟動",
diff --git a/web/public/locales/zh-Hant/views/events.json b/web/public/locales/zh-Hant/views/events.json
index 314779d5d..9561edf88 100644
--- a/web/public/locales/zh-Hant/views/events.json
+++ b/web/public/locales/zh-Hant/views/events.json
@@ -17,10 +17,10 @@
"aria": "選擇事件",
"noFoundForTimePeriod": "此時間段內沒有找到事件。"
},
- "documentTitle": "審核 - Frigate",
+ "documentTitle": "審核 - DIENST",
"allCameras": "所有鏡頭",
"recordings": {
- "documentTitle": "錄影 - Frigate"
+ "documentTitle": "錄影 - DIENST"
},
"calendarFilter": {
"last24Hours": "過去 24 小時"
diff --git a/web/public/locales/zh-Hant/views/explore.json b/web/public/locales/zh-Hant/views/explore.json
index 59602f909..90fbaab2d 100644
--- a/web/public/locales/zh-Hant/views/explore.json
+++ b/web/public/locales/zh-Hant/views/explore.json
@@ -1,5 +1,5 @@
{
- "documentTitle": "瀏覽 - Frigate",
+ "documentTitle": "瀏覽 - DIENST",
"generativeAI": "生成式 AI",
"exploreMore": "瀏覽更多 {{label}} 物件",
"exploreIsUnavailable": {
diff --git a/web/public/locales/zh-Hant/views/exports.json b/web/public/locales/zh-Hant/views/exports.json
index 3d3f9e87c..a1a63bc7f 100644
--- a/web/public/locales/zh-Hant/views/exports.json
+++ b/web/public/locales/zh-Hant/views/exports.json
@@ -1,6 +1,6 @@
{
"search": "搜尋",
- "documentTitle": "匯出 - Frigate",
+ "documentTitle": "匯出 - DIENST",
"noExports": "找不到匯出內容",
"deleteExport": "刪除匯出內容",
"editExport": {
diff --git a/web/public/locales/zh-Hant/views/faceLibrary.json b/web/public/locales/zh-Hant/views/faceLibrary.json
index 99158e352..0287ac2a0 100644
--- a/web/public/locales/zh-Hant/views/faceLibrary.json
+++ b/web/public/locales/zh-Hant/views/faceLibrary.json
@@ -13,7 +13,7 @@
"face": "人臉詳細資料",
"faceDesc": "組成此人臉的追蹤物件的詳細資料"
},
- "documentTitle": "人臉資料庫 - Frigate",
+ "documentTitle": "人臉資料庫 - DIENST",
"uploadFaceImage": {
"title": "上傳人臉圖片",
"desc": "上傳圖片以掃描人臉並將其加入 {{pageToggle}}"
diff --git a/web/public/locales/zh-Hant/views/live.json b/web/public/locales/zh-Hant/views/live.json
index a839b4b88..049923397 100644
--- a/web/public/locales/zh-Hant/views/live.json
+++ b/web/public/locales/zh-Hant/views/live.json
@@ -1,6 +1,6 @@
{
- "documentTitle": "即時畫面 - Frigate",
- "documentTitle.withCamera": "{{camera}} - 即時畫面 - Frigate",
+ "documentTitle": "即時畫面 - DIENST",
+ "documentTitle.withCamera": "{{camera}} - 即時畫面 - DIENST",
"lowBandwidthMode": "低流量模式",
"twoWayTalk": {
"enable": "啟用雙向通話",
diff --git a/web/public/locales/zh-Hant/views/settings.json b/web/public/locales/zh-Hant/views/settings.json
index 701a2f18e..418ec069e 100644
--- a/web/public/locales/zh-Hant/views/settings.json
+++ b/web/public/locales/zh-Hant/views/settings.json
@@ -1,17 +1,17 @@
{
"documentTitle": {
- "default": "設定 - Frigate",
- "authentication": "認證設定 - Frigate",
- "camera": "鏡頭設定 - Frigate",
- "enrichments": "進階功能設定 - Frigate",
- "general": "使用者介面設定 - Frigate",
- "frigatePlus": "Frigate+ 設定 - Frigate",
- "notifications": "通知設定 - Frigate",
- "masksAndZones": "遮罩與區域編輯器 - Frigate",
- "motionTuner": "移動偵測調教器 - Frigate",
- "object": "除錯 - Frigate",
- "cameraManagement": "管理鏡頭 - Frigate",
- "cameraReview": "相機預覽設置 - Frigate"
+ "default": "設定 - DIENST",
+ "authentication": "認證設定 - DIENST",
+ "camera": "鏡頭設定 - DIENST",
+ "enrichments": "進階功能設定 - DIENST",
+ "general": "使用者介面設定 - DIENST",
+ "frigatePlus": "Frigate+ 設定 - DIENST",
+ "notifications": "通知設定 - DIENST",
+ "masksAndZones": "遮罩與區域編輯器 - DIENST",
+ "motionTuner": "移動偵測調教器 - DIENST",
+ "object": "除錯 - DIENST",
+ "cameraManagement": "管理鏡頭 - DIENST",
+ "cameraReview": "相機預覽設置 - DIENST"
},
"menu": {
"ui": "使用者介面",
diff --git a/web/public/locales/zh-Hant/views/system.json b/web/public/locales/zh-Hant/views/system.json
index 7c87b59d8..5010467f1 100644
--- a/web/public/locales/zh-Hant/views/system.json
+++ b/web/public/locales/zh-Hant/views/system.json
@@ -1,13 +1,13 @@
{
"documentTitle": {
- "cameras": "鏡頭統計 - Frigate",
- "storage": "儲存裝置統計 - Frigate",
- "general": "一般統計 - Frigate",
- "enrichments": "進階功能統計 - Frigate",
+ "cameras": "鏡頭統計 - DIENST",
+ "storage": "儲存裝置統計 - DIENST",
+ "general": "一般統計 - DIENST",
+ "enrichments": "進階功能統計 - DIENST",
"logs": {
- "frigate": "Frigate 日誌 - Frigate",
- "go2rtc": "Go2RTC 日誌 - Frigate",
- "nginx": "Nginx 日誌 - Frigate"
+ "frigate": "Frigate 日誌 - DIENST",
+ "go2rtc": "Go2RTC 日誌 - DIENST",
+ "nginx": "Nginx 日誌 - DIENST"
}
},
"title": "系統",