Add event starring from the card.

This commit is contained in:
Dermot Duffy
2022-06-28 20:19:32 -07:00
parent 7f430298da
commit 0f04e9383a
15 changed files with 152 additions and 21 deletions
+1
View File
@@ -315,6 +315,7 @@
"duplicate_camera_id": "Duplicate Frigate camera id for the following camera, use the 'id' parameter to uniquely identify cameras",
"empty_response": "Received empty response from Home Assistant for request",
"failed_response": "Failed to receive response from Home Assistant for request",
"failed_retain": "Could not retain event",
"failed_sign": "Could not sign Home Assistant URL",
"image_load_error": "The image could not be loaded",
"invalid_configuration": "Invalid configuration",
+1
View File
@@ -317,6 +317,7 @@
"duplicate_camera_id": "Duplique o ID da câmera Frigate para a câmera a seguir, use o parâmetro 'id' para identificar exclusivamente as câmeras",
"empty_response": "Sem resposta do Home Assistant para a solicitação",
"failed_response": "Falha ao receber resposta do Home Assistant para solicitação",
"failed_retain": "",
"failed_sign": "Não foi possível assinar a URL do Home Assistant",
"image_load_error": "A imagem não pôde ser carregada",
"invalid_configuration": "Configuração inválida",
+1 -1
View File
@@ -47,7 +47,7 @@ export function localize(string: string, search = '', replace = ''): string {
translated = string.split('.').reduce((o, i) => o[i], languages['en']);
}
if (translated === undefined) {
if (!translated) {
translated = string.split('.').reduce((o, i) => o[i], languages['en']);
}