-
Notifications
You must be signed in to change notification settings - Fork 37
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into base-solvers
- Loading branch information
Showing
6 changed files
with
138 additions
and
62 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,48 @@ | ||
TRANSLATIONS = { | ||
"im_not_a_robot": ("I'm not a robot", "Я не робот"), | ||
"get_an_audio_challenge": ("Get an audio challenge", "Пройти аудиотест"), | ||
"get_a_visual_challenge": ("Get a visual challenge", "Пройти визуальный тест"), | ||
"get_a_new_challenge": ("Get a new challenge", "Обновить"), | ||
"alternatively_download_audio_as_mp3": ( | ||
"Alternatively, download audio as MP3", | ||
"Скачать MP3-файл", | ||
), | ||
"enter_what_you_hear": ("Enter what you hear", "Введите прозвучавшие слова"), | ||
"skip": ("Skip", "Пропустить"), | ||
"next": ("Next", "Далее"), | ||
"verify": ("Verify", "Подтвердить"), | ||
"try_again_later": ("Try again later", "Повторите попытку позже"), | ||
"multiple_correct_solutions_required": ( | ||
"Multiple correct solutions required - please solve more", | ||
"Вы должны выполнить несколько заданий", | ||
), | ||
"press_play_to_listen": ( | ||
"Press PLAY to listen", | ||
'Чтобы прослушать, нажмите "Воспроизвести"', | ||
), | ||
"please_try_again": ("Please try again", "Повторите попытку"), | ||
"please_also_check_the_new_images": ( | ||
"Please also check the new images", | ||
"Просмотрите также новые изображение", | ||
), | ||
"please_select_all_matching_images": ( | ||
"Please select all matching images", | ||
"Выберите все совпадающие изображения", | ||
), | ||
"taxis": ("taxis", "такси"), | ||
"bus": ("bus", "автобус"), | ||
"motorcycles": ("motorcycles", "мотоциклы"), | ||
"tractors": ("tractors", "трактора"), | ||
"chimneys": ("chimneys", "дымовые трубы"), | ||
"crosswalks": ("crosswalks", "пешеходные переходы"), | ||
"traffic_lights": ("traffic lights", "светофоры"), | ||
"bicycles": ("bicycles", "велосипеды"), | ||
"parking_meters": ("parking meters", "парковочные автоматы"), | ||
"cars": ("cars", "автомобили"), | ||
"bridges": ("bridges", "мостами"), | ||
"boats": ("boats", "лодки"), | ||
"palm_trees": ("palm trees", "пальмы"), | ||
"mountains_or_hills": ("mountains or hills", "горы или холмы"), | ||
"fire_hydrant": ("fire hydrant", "гидрантами", "пожарные гидранты"), | ||
"stairs": ("stairs", "лестницы"), | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
playwright>=1.33.0 | ||
pydub==0.25.1 | ||
pytest-asyncio==0.23.5 | ||
pytest-asyncio==0.23.5.post1 | ||
setuptools==69.1.1 | ||
SpeechRecognition==3.10.1 | ||
tenacity==8.2.3 |