Google Assistant SDK: Fix broadcast command in Japanese (#85636)

Fix broadcast command in Japanese
This commit is contained in:
tronikos 2023-01-10 10:20:28 -08:00 committed by GitHub
parent de2588f6e0
commit 667fde997d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View file

@ -18,7 +18,7 @@ LANG_TO_BROADCAST_COMMAND = {
"es": ("Anuncia {0}", "Anuncia en {1} {0}"),
"fr": ("Diffuse {0}", "Diffuse dans {1} {0}"),
"it": ("Trasmetti {0}", "Trasmetti in {1} {0}"),
"ja": ("{0}ほうそうして", "{0}{1}にブロードキャストして"),
"ja": ("{0}ブロードキャストして", "{0}{1}にブロードキャストして"),
"ko": ("{0} 라고 방송해 줘", "{0} 라고 {1}에 방송해 줘"),
"pt": ("Transmite {0}", "Transmite para {1} {0}"),
}

View file

@ -18,7 +18,7 @@ from .conftest import ComponentSetup, ExpectedCredentials
("en-US", "Dinner is served", "broadcast Dinner is served"),
("es-ES", "La cena está en la mesa", "Anuncia La cena está en la mesa"),
("ko-KR", "저녁 식사가 준비됐어요", "저녁 식사가 준비됐어요 라고 방송해 줘"),
("ja-JP", "晩ご飯できたよ", "晩ご飯できたよとほうそうして"),
("ja-JP", "晩ご飯できたよ", "晩ご飯できたよとブロードキャストして"),
],
ids=["english", "spanish", "korean", "japanese"],
)