├── .github ├── CONTRIBUTING.md ├── ISSUE_TEMPLATE.md ├── PULL_REQUEST_TEMPLATE.md ├── SUPPORT.md └── workflows │ └── unit_test.yml ├── .gitignore ├── .gitmessage ├── .pep8speaks.yml ├── .readthedocs.yml ├── .shellcheckrc ├── ACKNOWLEDGEMENTS.md ├── CODE_OF_CONDUCT.md ├── Jenkinsfile ├── LICENSE.md ├── MANIFEST.in ├── README.md ├── bin ├── mycroft-cli-client ├── mycroft-config ├── mycroft-help ├── mycroft-listen ├── mycroft-mic-test ├── mycroft-msk ├── mycroft-msm ├── mycroft-pip ├── mycroft-say-to ├── mycroft-skill-testrunner ├── mycroft-speak ├── mycroft-start └── mycroft-stop ├── dev_setup.sh ├── doc ├── Makefile ├── README.md ├── __init__.py ├── conf.py ├── index.rst ├── mycroft-core-api.yaml ├── requirements.txt └── source │ ├── mycroft.audio.rst │ ├── mycroft.filesystem.rst │ ├── mycroft.rst │ ├── mycroft.util.format.rst │ ├── mycroft.util.log.rst │ ├── mycroft.util.parse.rst │ ├── mycroft.util.rst │ ├── mycroft.util.time.rst │ └── plugins.rst ├── mycroft ├── __init__.py ├── api │ └── __init__.py ├── audio │ ├── __init__.py │ ├── __main__.py │ ├── audioservice.py │ ├── services │ │ ├── __init__.py │ │ ├── mopidy │ │ │ ├── __init__.py │ │ │ └── mopidypost.py │ │ ├── simple │ │ │ └── __init__.py │ │ └── vlc │ │ │ └── __init__.py │ ├── speech.py │ └── utils.py ├── client │ ├── __init__.py │ ├── enclosure │ │ ├── __init__.py │ │ ├── __main__.py │ │ ├── base.py │ │ ├── generic │ │ │ └── __init__.py │ │ ├── mark1 │ │ │ ├── __init__.py │ │ │ ├── arduino.py │ │ │ ├── eyes.py │ │ │ └── mouth.py │ │ ├── mark2 │ │ │ └── __init__.py │ │ └── version.txt │ ├── speech │ │ ├── __init__.py │ │ ├── __main__.py │ │ ├── data_structures.py │ │ ├── hotword_factory.py │ │ ├── listener.py │ │ ├── mic.py │ │ ├── recognizer │ │ │ ├── __init__.py │ │ │ └── model │ │ │ │ └── en-us │ │ │ │ └── hmm │ │ │ │ ├── README │ │ │ │ ├── feat.params │ │ │ │ ├── mdef │ │ │ │ ├── means │ │ │ │ ├── noisedict │ │ │ │ ├── sendump │ │ │ │ ├── transition_matrices │ │ │ │ └── variances │ │ └── word_extractor.py │ └── text │ │ ├── __init__.py │ │ ├── __main__.py │ │ ├── gui_server.py │ │ └── text_client.py ├── configuration │ ├── __init__.py │ ├── config.py │ ├── locale.py │ ├── locations.py │ └── mycroft.conf ├── dialog │ ├── __init__.py │ └── dialog.py ├── enclosure │ ├── __init__.py │ ├── api.py │ ├── display_manager.py │ └── gui.py ├── filesystem │ └── __init__.py ├── identity │ └── __init__.py ├── lock │ └── __init__.py ├── messagebus │ ├── __init__.py │ ├── client │ │ ├── __init__.py │ │ └── client.py │ ├── load_config.py │ ├── message.py │ ├── send.py │ ├── send_func.py │ └── service │ │ ├── __init__.py │ │ ├── __main__.py │ │ └── event_handler.py ├── metrics │ └── __init__.py ├── res │ ├── snd │ │ ├── acknowledge.mp3 │ │ └── start_listening.wav │ ├── text │ │ ├── az-az │ │ │ ├── and.word │ │ │ ├── backend.down.dialog │ │ │ ├── cancel.voc │ │ │ ├── checking for updates.dialog │ │ │ ├── day.word │ │ │ ├── hour.word │ │ │ ├── i didn't catch that.dialog │ │ │ ├── last.voc │ │ │ ├── message_loading.skills.dialog │ │ │ ├── message_rebooting.dialog │ │ │ ├── message_synching.clock.dialog │ │ │ ├── message_updating.dialog │ │ │ ├── minute.word │ │ │ ├── mycroft.intro.dialog │ │ │ ├── no.voc │ │ │ ├── not connected to the internet.dialog │ │ │ ├── not.loaded.dialog │ │ │ ├── or.word │ │ │ ├── phonetic_spellings.txt │ │ │ ├── reset to factory defaults.dialog │ │ │ ├── second.word │ │ │ ├── skill.error.dialog │ │ │ ├── skills updated.dialog │ │ │ ├── sorry I couldn't install default skills.dialog │ │ │ ├── time.changed.reboot.dialog │ │ │ └── yes.voc │ │ ├── ca-es │ │ │ ├── backend.down.dialog │ │ │ ├── cancel.voc │ │ │ ├── checking for updates.dialog │ │ │ ├── i didn't catch that.dialog │ │ │ ├── learning disabled.dialog │ │ │ ├── learning enabled.dialog │ │ │ ├── message_rebooting.dialog │ │ │ ├── message_synching.clock.dialog │ │ │ ├── message_updating.dialog │ │ │ ├── mycroft.intro.dialog │ │ │ ├── no.voc │ │ │ ├── not connected to the internet.dialog │ │ │ ├── not.loaded.dialog │ │ │ ├── phonetic_spellings.txt │ │ │ ├── reset to factory defaults.dialog │ │ │ ├── skill.error.dialog │ │ │ ├── skills updated.dialog │ │ │ ├── sorry I couldn't install default skills.dialog │ │ │ ├── ssh disabled.dialog │ │ │ ├── ssh enabled.dialog │ │ │ ├── time.changed.reboot.dialog │ │ │ └── yes.voc │ │ ├── cs-cz │ │ │ ├── and.word │ │ │ ├── backend.down.dialog │ │ │ ├── cancel.voc │ │ │ ├── checking for updates.dialog │ │ │ ├── day.word │ │ │ ├── days.word │ │ │ ├── hour.word │ │ │ ├── hours.word │ │ │ ├── i didn't catch that.dialog │ │ │ ├── last.voc │ │ │ ├── learning disabled.dialog │ │ │ ├── learning enabled.dialog │ │ │ ├── message_loading.skills.dialog │ │ │ ├── message_rebooting.dialog │ │ │ ├── message_synching.clock.dialog │ │ │ ├── message_updating.dialog │ │ │ ├── minute.word │ │ │ ├── minutes.word │ │ │ ├── mycroft.intro.dialog │ │ │ ├── no.voc │ │ │ ├── not connected to the internet.dialog │ │ │ ├── not.loaded.dialog │ │ │ ├── or.word │ │ │ ├── phonetic_spellings.txt │ │ │ ├── reset to factory defaults.dialog │ │ │ ├── second.word │ │ │ ├── seconds.word │ │ │ ├── skill.error.dialog │ │ │ ├── skills updated.dialog │ │ │ ├── sorry I couldn't install default skills.dialog │ │ │ ├── ssh disabled.dialog │ │ │ ├── ssh enabled.dialog │ │ │ ├── time.changed.reboot.dialog │ │ │ └── yes.voc │ │ ├── da-dk │ │ │ ├── and.word │ │ │ ├── backend.down.dialog │ │ │ ├── cancel.voc │ │ │ ├── checking for updates.dialog │ │ │ ├── day.word │ │ │ ├── days.word │ │ │ ├── hour.word │ │ │ ├── hours.word │ │ │ ├── i didn't catch that.dialog │ │ │ ├── last.voc │ │ │ ├── learning disabled.dialog │ │ │ ├── learning enabled.dialog │ │ │ ├── message_loading.skills.dialog │ │ │ ├── message_rebooting.dialog │ │ │ ├── message_synching.clock.dialog │ │ │ ├── message_updating.dialog │ │ │ ├── minute.word │ │ │ ├── minutes.word │ │ │ ├── mycroft.intro.dialog │ │ │ ├── no.voc │ │ │ ├── not connected to the internet.dialog │ │ │ ├── not.loaded.dialog │ │ │ ├── or.word │ │ │ ├── phonetic_spellings.txt │ │ │ ├── reset to factory defaults.dialog │ │ │ ├── second.word │ │ │ ├── seconds.word │ │ │ ├── skill.error.dialog │ │ │ ├── skills updated.dialog │ │ │ ├── sorry I couldn't install default skills.dialog │ │ │ ├── ssh disabled.dialog │ │ │ ├── ssh enabled.dialog │ │ │ ├── time.changed.reboot.dialog │ │ │ └── yes.voc │ │ ├── de-de │ │ │ ├── and.word │ │ │ ├── backend.down.dialog │ │ │ ├── cancel.voc │ │ │ ├── checking for updates.dialog │ │ │ ├── day.word │ │ │ ├── days.word │ │ │ ├── hour.word │ │ │ ├── hours.word │ │ │ ├── i didn't catch that.dialog │ │ │ ├── learning disabled.dialog │ │ │ ├── learning enabled.dialog │ │ │ ├── message_rebooting.dialog │ │ │ ├── message_synching.clock.dialog │ │ │ ├── message_updating.dialog │ │ │ ├── minute.word │ │ │ ├── minutes.word │ │ │ ├── mycroft.intro.dialog │ │ │ ├── no.voc │ │ │ ├── noise_words.list │ │ │ ├── not connected to the internet.dialog │ │ │ ├── not.loaded.dialog │ │ │ ├── or.word │ │ │ ├── phonetic_spellings.txt │ │ │ ├── reset to factory defaults.dialog │ │ │ ├── second.word │ │ │ ├── seconds.word │ │ │ ├── skill.error.dialog │ │ │ ├── skills updated.dialog │ │ │ ├── sorry I couldn't install default skills.dialog │ │ │ ├── ssh disabled.dialog │ │ │ ├── ssh enabled.dialog │ │ │ ├── time.changed.reboot.dialog │ │ │ └── yes.voc │ │ ├── en-us │ │ │ ├── and.word │ │ │ ├── backend.down.dialog │ │ │ ├── cancel.voc │ │ │ ├── checking for updates.dialog │ │ │ ├── configurations.json │ │ │ ├── day.word │ │ │ ├── days.word │ │ │ ├── hour.word │ │ │ ├── hours.word │ │ │ ├── i didn't catch that.dialog │ │ │ ├── last.voc │ │ │ ├── learning disabled.dialog │ │ │ ├── learning enabled.dialog │ │ │ ├── message_loading.skills.dialog │ │ │ ├── message_rebooting.dialog │ │ │ ├── message_synching.clock.dialog │ │ │ ├── message_updating.dialog │ │ │ ├── minute.word │ │ │ ├── minutes.word │ │ │ ├── mycroft.intro.dialog │ │ │ ├── no.voc │ │ │ ├── noise_words.list │ │ │ ├── not connected to the internet.dialog │ │ │ ├── not.loaded.dialog │ │ │ ├── or.word │ │ │ ├── phonetic_spellings.txt │ │ │ ├── reset to factory defaults.dialog │ │ │ ├── second.word │ │ │ ├── seconds.word │ │ │ ├── skill.error.dialog │ │ │ ├── skills updated.dialog │ │ │ ├── sorry I couldn't install default skills.dialog │ │ │ ├── ssh disabled.dialog │ │ │ ├── ssh enabled.dialog │ │ │ ├── time.changed.reboot.dialog │ │ │ └── yes.voc │ │ ├── es-es │ │ │ ├── backend.down.dialog │ │ │ ├── cancel.voc │ │ │ ├── checking for updates.dialog │ │ │ ├── day.word │ │ │ ├── days.word │ │ │ ├── hour.word │ │ │ ├── hours.word │ │ │ ├── i didn't catch that.dialog │ │ │ ├── learning disabled.dialog │ │ │ ├── learning enabled.dialog │ │ │ ├── message_rebooting.dialog │ │ │ ├── message_synching.clock.dialog │ │ │ ├── message_updating.dialog │ │ │ ├── minute.word │ │ │ ├── minutes.word │ │ │ ├── mycroft.intro.dialog │ │ │ ├── no.voc │ │ │ ├── not connected to the internet.dialog │ │ │ ├── not.loaded.dialog │ │ │ ├── phonetic_spellings.txt │ │ │ ├── reset to factory defaults.dialog │ │ │ ├── second.word │ │ │ ├── seconds.word │ │ │ ├── skill.error.dialog │ │ │ ├── skills updated.dialog │ │ │ ├── sorry I couldn't install default skills.dialog │ │ │ ├── ssh disabled.dialog │ │ │ ├── ssh enabled.dialog │ │ │ ├── time.changed.reboot.dialog │ │ │ └── yes.voc │ │ ├── fa-ir │ │ │ ├── and.word │ │ │ ├── backend.down.dialog │ │ │ ├── cancel.voc │ │ │ ├── checking for updates.dialog │ │ │ ├── day.word │ │ │ ├── days.word │ │ │ ├── hour.word │ │ │ ├── hours.word │ │ │ ├── i didn't catch that.dialog │ │ │ ├── last.voc │ │ │ ├── learning disabled.dialog │ │ │ ├── learning enabled.dialog │ │ │ ├── message_loading.skills.dialog │ │ │ ├── message_rebooting.dialog │ │ │ ├── message_synching.clock.dialog │ │ │ ├── message_updating.dialog │ │ │ ├── minute.word │ │ │ ├── minutes.word │ │ │ ├── mycroft.intro.dialog │ │ │ ├── no.voc │ │ │ ├── not connected to the internet.dialog │ │ │ ├── not.loaded.dialog │ │ │ ├── or.word │ │ │ ├── phonetic_spellings.txt │ │ │ ├── reset to factory defaults.dialog │ │ │ ├── second.word │ │ │ ├── seconds.word │ │ │ ├── skill.error.dialog │ │ │ ├── skills updated.dialog │ │ │ ├── sorry I couldn't install default skills.dialog │ │ │ ├── ssh disabled.dialog │ │ │ ├── ssh enabled.dialog │ │ │ ├── time.changed.reboot.dialog │ │ │ └── yes.voc │ │ ├── fr-fr │ │ │ ├── and.word │ │ │ ├── backend.down.dialog │ │ │ ├── cancel.voc │ │ │ ├── checking for updates.dialog │ │ │ ├── day.word │ │ │ ├── days.word │ │ │ ├── hour.word │ │ │ ├── hours.word │ │ │ ├── i didn't catch that.dialog │ │ │ ├── last.voc │ │ │ ├── learning disabled.dialog │ │ │ ├── learning enabled.dialog │ │ │ ├── message_loading.skills.dialog │ │ │ ├── message_rebooting.dialog │ │ │ ├── message_synching.clock.dialog │ │ │ ├── message_updating.dialog │ │ │ ├── minute.word │ │ │ ├── minutes.word │ │ │ ├── mycroft.intro.dialog │ │ │ ├── no.voc │ │ │ ├── noise_words.list │ │ │ ├── not connected to the internet.dialog │ │ │ ├── not.loaded.dialog │ │ │ ├── or.word │ │ │ ├── phonetic_spellings.txt │ │ │ ├── reset to factory defaults.dialog │ │ │ ├── second.word │ │ │ ├── seconds.word │ │ │ ├── skill.error.dialog │ │ │ ├── skills updated.dialog │ │ │ ├── sorry I couldn't install default skills.dialog │ │ │ ├── ssh disabled.dialog │ │ │ ├── ssh enabled.dialog │ │ │ ├── time.changed.reboot.dialog │ │ │ └── yes.voc │ │ ├── hu-hu │ │ │ ├── backend.down.dialog │ │ │ ├── cancel.voc │ │ │ ├── checking for updates.dialog │ │ │ ├── i didn't catch that.dialog │ │ │ ├── learning disabled.dialog │ │ │ ├── learning enabled.dialog │ │ │ ├── message_rebooting.dialog │ │ │ ├── message_synching.clock.dialog │ │ │ ├── message_updating.dialog │ │ │ ├── mycroft.intro.dialog │ │ │ ├── no.voc │ │ │ ├── not connected to the internet.dialog │ │ │ ├── not.loaded.dialog │ │ │ ├── phonetic_spellings.txt │ │ │ ├── reset to factory defaults.dialog │ │ │ ├── skill.error.dialog │ │ │ ├── skills updated.dialog │ │ │ ├── sorry I couldn't install default skills.dialog │ │ │ ├── ssh disabled.dialog │ │ │ ├── ssh enabled.dialog │ │ │ ├── time.changed.reboot.dialog │ │ │ └── yes.voc │ │ ├── it-it │ │ │ ├── backend.down.dialog │ │ │ ├── cancel.voc │ │ │ ├── checking for updates.dialog │ │ │ ├── day.word │ │ │ ├── days.word │ │ │ ├── hour.word │ │ │ ├── hours.word │ │ │ ├── i didn't catch that.dialog │ │ │ ├── learning disabled.dialog │ │ │ ├── learning enabled.dialog │ │ │ ├── message_rebooting.dialog │ │ │ ├── message_synching.clock.dialog │ │ │ ├── message_updating.dialog │ │ │ ├── minute.word │ │ │ ├── minutes.word │ │ │ ├── mycroft.intro.dialog │ │ │ ├── no.voc │ │ │ ├── not connected to the internet.dialog │ │ │ ├── not.loaded.dialog │ │ │ ├── phonetic_spellings.txt │ │ │ ├── reset to factory defaults.dialog │ │ │ ├── second.word │ │ │ ├── seconds.word │ │ │ ├── skill.error.dialog │ │ │ ├── skills updated.dialog │ │ │ ├── sorry I couldn't install default skills.dialog │ │ │ ├── ssh disabled.dialog │ │ │ ├── ssh enabled.dialog │ │ │ ├── time.changed.reboot.dialog │ │ │ └── yes.voc │ │ ├── nl-nl │ │ │ ├── backend.down.dialog │ │ │ ├── cancel.voc │ │ │ ├── checking for updates.dialog │ │ │ ├── day.word │ │ │ ├── days.word │ │ │ ├── hour.word │ │ │ ├── hours.word │ │ │ ├── i am awake.dialog │ │ │ ├── i didn't catch that.dialog │ │ │ ├── learning disabled.dialog │ │ │ ├── learning enabled.dialog │ │ │ ├── message_rebooting.dialog │ │ │ ├── message_synching.clock.dialog │ │ │ ├── message_updating.dialog │ │ │ ├── minute.word │ │ │ ├── minutes.word │ │ │ ├── mycroft.intro.dialog │ │ │ ├── no.voc │ │ │ ├── not connected to the internet.dialog │ │ │ ├── not.loaded.dialog │ │ │ ├── phonetic_spellings.txt │ │ │ ├── reset to factory defaults.dialog │ │ │ ├── second.word │ │ │ ├── seconds.word │ │ │ ├── skill.error.dialog │ │ │ ├── skills updated.dialog │ │ │ ├── sorry I couldn't install default skills.dialog │ │ │ ├── ssh disabled.dialog │ │ │ ├── ssh enabled.dialog │ │ │ ├── time.changed.reboot.dialog │ │ │ └── yes.voc │ │ ├── pl-pl │ │ │ ├── and.word │ │ │ ├── backend.down.dialog │ │ │ ├── cancel.voc │ │ │ ├── checking for updates.dialog │ │ │ ├── day.word │ │ │ ├── days.word │ │ │ ├── hour.word │ │ │ ├── hours.word │ │ │ ├── i didn't catch that.dialog │ │ │ ├── last.voc │ │ │ ├── learning disabled.dialog │ │ │ ├── learning enabled.dialog │ │ │ ├── message_loading.skills.dialog │ │ │ ├── message_rebooting.dialog │ │ │ ├── message_synching.clock.dialog │ │ │ ├── message_updating.dialog │ │ │ ├── minute.word │ │ │ ├── minutes.word │ │ │ ├── mycroft.intro.dialog │ │ │ ├── no.voc │ │ │ ├── not connected to the internet.dialog │ │ │ ├── not.loaded.dialog │ │ │ ├── or.word │ │ │ ├── phonetic_spellings.txt │ │ │ ├── reset to factory defaults.dialog │ │ │ ├── second.word │ │ │ ├── seconds.word │ │ │ ├── skill.error.dialog │ │ │ ├── skills updated.dialog │ │ │ ├── sorry I couldn't install default skills.dialog │ │ │ ├── ssh disabled.dialog │ │ │ ├── ssh enabled.dialog │ │ │ ├── time.changed.reboot.dialog │ │ │ └── yes.voc │ │ ├── pt-pt │ │ │ ├── cancel.voc │ │ │ ├── checking for updates.dialog │ │ │ ├── i am awake.dialog │ │ │ ├── i didn't catch that.dialog │ │ │ ├── learning disabled.dialog │ │ │ ├── learning enabled.dialog │ │ │ ├── message_rebooting.dialog │ │ │ ├── message_synching.clock.dialog │ │ │ ├── message_updating.dialog │ │ │ ├── mycroft.intro.dialog │ │ │ ├── not connected to the internet.dialog │ │ │ ├── not.loaded.dialog │ │ │ ├── phonetic_spellings.txt │ │ │ ├── reset to factory defaults.dialog │ │ │ ├── skill.error.dialog │ │ │ ├── skills updated.dialog │ │ │ ├── sorry I couldn't install default skills.dialog │ │ │ ├── ssh disabled.dialog │ │ │ ├── ssh enabled.dialog │ │ │ └── time.changed.reboot.dialog │ │ ├── ru-ru │ │ │ ├── and.word │ │ │ ├── backend.down.dialog │ │ │ ├── cancel.voc │ │ │ ├── checking for updates.dialog │ │ │ ├── day.word │ │ │ ├── days.word │ │ │ ├── hour.word │ │ │ ├── hours.word │ │ │ ├── i didn't catch that.dialog │ │ │ ├── last.voc │ │ │ ├── learning disabled.dialog │ │ │ ├── learning enabled.dialog │ │ │ ├── message_loading.skills.dialog │ │ │ ├── message_rebooting.dialog │ │ │ ├── message_synching.clock.dialog │ │ │ ├── message_updating.dialog │ │ │ ├── minute.word │ │ │ ├── minutes.word │ │ │ ├── mycroft.intro.dialog │ │ │ ├── no.voc │ │ │ ├── not connected to the internet.dialog │ │ │ ├── not.loaded.dialog │ │ │ ├── or.word │ │ │ ├── phonetic_spellings.txt │ │ │ ├── reset to factory defaults.dialog │ │ │ ├── second.word │ │ │ ├── seconds.word │ │ │ ├── skill.error.dialog │ │ │ ├── skills updated.dialog │ │ │ ├── sorry I couldn't install default skills.dialog │ │ │ ├── ssh disabled.dialog │ │ │ ├── ssh enabled.dialog │ │ │ ├── time.changed.reboot.dialog │ │ │ └── yes.voc │ │ ├── sv-fi │ │ │ ├── cancel.voc │ │ │ ├── checking for updates.dialog │ │ │ ├── i didn't catch that.dialog │ │ │ ├── learning disabled.dialog │ │ │ ├── learning enabled.dialog │ │ │ ├── message_rebooting.dialog │ │ │ ├── message_synching.clock.dialog │ │ │ ├── message_updating.dialog │ │ │ ├── mycroft.intro.dialog │ │ │ ├── not connected to the internet.dialog │ │ │ ├── phonetic_spellings.txt │ │ │ ├── reset to factory defaults.dialog │ │ │ ├── skills updated.dialog │ │ │ ├── sorry I couldn't install default skills.dialog │ │ │ ├── ssh disabled.dialog │ │ │ ├── ssh enabled.dialog │ │ │ └── time.changed.reboot.dialog │ │ ├── sv-se │ │ │ ├── cancel.voc │ │ │ ├── checking for updates.dialog │ │ │ ├── day.word │ │ │ ├── days.word │ │ │ ├── hour.word │ │ │ ├── hours.word │ │ │ ├── i didn't catch that.dialog │ │ │ ├── learning disabled.dialog │ │ │ ├── learning enabled.dialog │ │ │ ├── message_rebooting.dialog │ │ │ ├── message_synching.clock.dialog │ │ │ ├── message_updating.dialog │ │ │ ├── minute.word │ │ │ ├── minutes.word │ │ │ ├── mycroft.intro.dialog │ │ │ ├── no.voc │ │ │ ├── noise_words.list │ │ │ ├── not connected to the internet.dialog │ │ │ ├── phonetic_spellings.txt │ │ │ ├── reset to factory defaults.dialog │ │ │ ├── second.word │ │ │ ├── seconds.word │ │ │ ├── skills updated.dialog │ │ │ ├── sorry I couldn't install default skills.dialog │ │ │ ├── ssh disabled.dialog │ │ │ ├── ssh enabled.dialog │ │ │ ├── time.changed.reboot.dialog │ │ │ └── yes.voc │ │ └── tr-tr │ │ │ ├── day.word │ │ │ ├── days.word │ │ │ ├── hour.word │ │ │ ├── hours.word │ │ │ ├── minute.word │ │ │ ├── minutes.word │ │ │ ├── no.voc │ │ │ ├── second.word │ │ │ ├── seconds.word │ │ │ └── yes.voc │ ├── ui │ │ ├── FeatureRequest.qml │ │ ├── RequestHandler.qml │ │ ├── SYSTEM_AnimatedImageFrame.qml │ │ ├── SYSTEM_HtmlFrame.qml │ │ ├── SYSTEM_ImageFrame.qml │ │ ├── SYSTEM_TextFrame.qml │ │ ├── SYSTEM_UrlFrame.qml │ │ ├── WebViewHtmlFrame.qml │ │ └── WebViewUrlFrame.qml │ └── wakeword_rsa ├── session │ └── __init__.py ├── skills │ ├── __init__.py │ ├── __main__.py │ ├── api.py │ ├── audioservice.py │ ├── common_iot_skill.py │ ├── common_play_skill.py │ ├── common_query_skill.py │ ├── context.py │ ├── core.py │ ├── event_scheduler.py │ ├── fallback_skill.py │ ├── intent_service.py │ ├── intent_service_interface.py │ ├── intent_services │ │ ├── __init__.py │ │ ├── adapt_service.py │ │ ├── base.py │ │ ├── fallback_service.py │ │ └── padatious_service.py │ ├── msm_wrapper.py │ ├── mycroft_skill │ │ ├── __init__.py │ │ ├── decorators.py │ │ ├── event_container.py │ │ └── mycroft_skill.py │ ├── settings.py │ ├── skill_data.py │ ├── skill_loader.py │ ├── skill_manager.py │ └── skill_updater.py ├── stt │ └── __init__.py ├── tts │ ├── __init__.py │ ├── bing_tts.py │ ├── cache.py │ ├── cache_handler.py │ ├── dummy_tts.py │ ├── espeak_tts.py │ ├── fa_tts.py │ ├── festival_tts.py │ ├── google_tts.py │ ├── ibm_tts.py │ ├── mary_tts.py │ ├── mimic2_tts.py │ ├── mimic_tts.py │ ├── mozilla_tts.py │ ├── polly_tts.py │ ├── remote_tts.py │ ├── spdsay_tts.py │ ├── tts.py │ └── yandex_tts.py ├── util │ ├── __init__.py │ ├── audio_test.py │ ├── audio_utils.py │ ├── combo_lock.py │ ├── download.py │ ├── file_utils.py │ ├── format.py │ ├── json_helper.py │ ├── log.py │ ├── monotonic_event.py │ ├── network_utils.py │ ├── parse.py │ ├── platform.py │ ├── plugins.py │ ├── process_utils.py │ ├── signal.py │ ├── string_utils.py │ └── time.py └── version │ └── __init__.py ├── pytest.ini ├── requirements ├── extra-audiobackend.txt ├── extra-mark1.txt ├── extra-stt.txt ├── requirements.txt └── tests.txt ├── scripts ├── install-mimic.sh ├── log_merger.py ├── my-info.sh ├── mycroft-use.sh ├── pre-commit └── prepare-msm.sh ├── setup.py ├── start-mycroft.sh ├── stop-mycroft.sh ├── test ├── Dockerfile ├── __init__.py ├── integrationtests │ ├── __init__.py │ ├── messagebus │ │ └── messagebus_test.py │ ├── skills │ │ ├── __init__.py │ │ ├── colors.py │ │ ├── discover_tests.py │ │ ├── message_tester.py │ │ ├── rules.py │ │ ├── runner.py │ │ ├── skill_tester.py │ │ └── test_all_skills.py │ └── voight_kampff │ │ ├── README.md │ │ ├── __init__.py │ │ ├── __main__.py │ │ ├── default.yml │ │ ├── features │ │ ├── environment.py │ │ └── steps │ │ │ ├── configuration.py │ │ │ └── utterance_responses.py │ │ ├── generate_feature.py │ │ ├── run_test_suite.sh │ │ ├── test_setup.py │ │ └── tools.py ├── unittests │ ├── __init__.py │ ├── api │ │ ├── __init__.py │ │ └── test_api.py │ ├── audio │ │ ├── __init__.py │ │ ├── services │ │ │ ├── failing │ │ │ │ └── __init__.py │ │ │ └── working │ │ │ │ └── __init__.py │ │ ├── test_service.py │ │ ├── test_simple_backend.py │ │ ├── test_speech.py │ │ ├── test_utils.py │ │ └── test_vlc_backend.py │ ├── base.py │ ├── client │ │ ├── __init__.py │ │ ├── data │ │ │ ├── hey_mycroft.wav │ │ │ ├── mycroft.wav │ │ │ ├── mycroft_wakeup.wav │ │ │ ├── record.wav │ │ │ ├── stop.wav │ │ │ └── weather_mycroft.wav │ │ ├── test_audio_consumer.py │ │ ├── test_data_structures.py │ │ ├── test_dynamic_energy_test.py │ │ ├── test_hotword_factory.py │ │ ├── test_local_recognizer.py │ │ └── test_noise_tracker.py │ ├── configuration │ │ ├── __init__.py │ │ ├── mycroft.conf │ │ └── test_configuration.py │ ├── dialog │ │ ├── __init__.py │ │ ├── multiple_dialogs │ │ │ ├── one.dialog │ │ │ └── two.dialog │ │ ├── mustache_templates │ │ │ ├── example-context.context.json │ │ │ ├── example-context.dialog │ │ │ ├── example-context.result │ │ │ ├── example-simple.context.json │ │ │ ├── example-simple.dialog │ │ │ └── example-simple.result │ │ ├── mustache_templates_comments │ │ │ ├── example-comments.dialog │ │ │ └── example-comments.result │ │ ├── mustache_templates_multiple │ │ │ ├── example-multiple-context.context.json │ │ │ ├── example-multiple-context.dialog │ │ │ ├── example-multiple-context.result │ │ │ ├── example-multiple.context.json │ │ │ ├── example-multiple.dialog │ │ │ └── example-multiple.result │ │ └── test_dialog.py │ ├── enclosure │ │ ├── __init__.py │ │ └── test_gui.py │ ├── lock │ │ ├── __init__.py │ │ └── test_lock.py │ ├── messagebus │ │ ├── __init__.py │ │ └── client │ │ │ ├── __init__.py │ │ │ └── test_client.py │ ├── mocks.py │ ├── regex_test │ │ ├── invalid │ │ │ ├── invalid.rx │ │ │ └── none.rx │ │ └── valid │ │ │ ├── multiple.rx │ │ │ └── single.rx │ ├── res │ │ └── text │ │ │ └── en-us │ │ │ ├── test.dialog │ │ │ ├── test.word │ │ │ └── test_message.dialog │ ├── skills │ │ ├── __init__.py │ │ ├── decorator_test_skill.py │ │ ├── empty_dir │ │ │ └── .git_keep │ │ ├── intent_file │ │ │ └── vocab │ │ │ │ └── en-us │ │ │ │ ├── test.intent │ │ │ │ └── test_ent.entity │ │ ├── locale │ │ │ └── en-us │ │ │ │ ├── turn_off2_test.voc │ │ │ │ └── turn_off_test.voc │ │ ├── settings │ │ │ └── settings.json │ │ ├── test_audioservice.py │ │ ├── test_common_play_skill.py │ │ ├── test_common_query_skill.py │ │ ├── test_context.py │ │ ├── test_event_container.py │ │ ├── test_event_scheduler.py │ │ ├── test_fallback_skill.py │ │ ├── test_intent_service.py │ │ ├── test_intent_service_interface.py │ │ ├── test_mycroft_skill.py │ │ ├── test_mycroft_skill_get_response.py │ │ ├── test_settings.py │ │ ├── test_skill │ │ │ ├── __init__.py │ │ │ └── dialog │ │ │ │ └── en-us │ │ │ │ └── what do you want.dialog │ │ ├── test_skill_api.py │ │ ├── test_skill_loader.py │ │ ├── test_skill_manager.py │ │ ├── test_skill_updater.py │ │ └── translate │ │ │ ├── in-dialog │ │ │ └── dialog │ │ │ │ └── en-us │ │ │ │ ├── good_things.list │ │ │ │ ├── named_things.value │ │ │ │ └── test.template │ │ │ └── in-locale │ │ │ └── locale │ │ │ ├── de-de │ │ │ ├── good_things.list │ │ │ ├── named_things.value │ │ │ └── test.template │ │ │ └── en-us │ │ │ ├── good_things.list │ │ │ ├── named_things.value │ │ │ ├── not_in_german.list │ │ │ └── test.template │ ├── stt │ │ ├── __init__.py │ │ └── test_stt.py │ ├── tts │ │ ├── __init__.py │ │ ├── test_cache.py │ │ ├── test_espeak_tts.py │ │ ├── test_google_tts.py │ │ ├── test_mimic2_tts.py │ │ ├── test_mimic_tts.py │ │ └── test_tts.py │ ├── util │ │ ├── __init__.py │ │ ├── commented.json │ │ ├── muppets.dict │ │ ├── plain.json │ │ ├── test_audio_utils.py │ │ ├── test_download.py │ │ ├── test_file_utils.py │ │ ├── test_format.py │ │ ├── test_json_helper.py │ │ ├── test_log.py │ │ ├── test_monotonic_event.py │ │ ├── test_network_utils.py │ │ ├── test_parse.py │ │ ├── test_platform.py │ │ ├── test_plugins.py │ │ ├── test_process_utils.py │ │ ├── test_signal.py │ │ ├── test_string_utils.py │ │ ├── test_time.py │ │ └── unstripped_lines.txt │ ├── version │ │ ├── __init__.py │ │ └── test_version.py │ └── vocab_test │ │ ├── none.voc │ │ ├── test.voc │ │ └── valid │ │ ├── multiple.voc │ │ ├── multiplealias.voc │ │ ├── single.voc │ │ └── singlealias.voc ├── util.py └── wake_word │ ├── README.md │ ├── __main__.py │ └── wake_word_test.py └── venv-activate.sh /.github/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/.github/CONTRIBUTING.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/.github/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/SUPPORT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/.github/SUPPORT.md -------------------------------------------------------------------------------- /.github/workflows/unit_test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/.github/workflows/unit_test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmessage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/.gitmessage -------------------------------------------------------------------------------- /.pep8speaks.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/.pep8speaks.yml -------------------------------------------------------------------------------- /.readthedocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/.readthedocs.yml -------------------------------------------------------------------------------- /.shellcheckrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/.shellcheckrc -------------------------------------------------------------------------------- /ACKNOWLEDGEMENTS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/ACKNOWLEDGEMENTS.md -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /Jenkinsfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/Jenkinsfile -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/LICENSE.md -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/README.md -------------------------------------------------------------------------------- /bin/mycroft-cli-client: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/bin/mycroft-cli-client -------------------------------------------------------------------------------- /bin/mycroft-config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/bin/mycroft-config -------------------------------------------------------------------------------- /bin/mycroft-help: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/bin/mycroft-help -------------------------------------------------------------------------------- /bin/mycroft-listen: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/bin/mycroft-listen -------------------------------------------------------------------------------- /bin/mycroft-mic-test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/bin/mycroft-mic-test -------------------------------------------------------------------------------- /bin/mycroft-msk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/bin/mycroft-msk -------------------------------------------------------------------------------- /bin/mycroft-msm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/bin/mycroft-msm -------------------------------------------------------------------------------- /bin/mycroft-pip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/bin/mycroft-pip -------------------------------------------------------------------------------- /bin/mycroft-say-to: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/bin/mycroft-say-to -------------------------------------------------------------------------------- /bin/mycroft-skill-testrunner: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/bin/mycroft-skill-testrunner -------------------------------------------------------------------------------- /bin/mycroft-speak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/bin/mycroft-speak -------------------------------------------------------------------------------- /bin/mycroft-start: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/bin/mycroft-start -------------------------------------------------------------------------------- /bin/mycroft-stop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/bin/mycroft-stop -------------------------------------------------------------------------------- /dev_setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/dev_setup.sh -------------------------------------------------------------------------------- /doc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/doc/Makefile -------------------------------------------------------------------------------- /doc/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/doc/README.md -------------------------------------------------------------------------------- /doc/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/doc/__init__.py -------------------------------------------------------------------------------- /doc/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/doc/conf.py -------------------------------------------------------------------------------- /doc/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/doc/index.rst -------------------------------------------------------------------------------- /doc/mycroft-core-api.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/doc/mycroft-core-api.yaml -------------------------------------------------------------------------------- /doc/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/doc/requirements.txt -------------------------------------------------------------------------------- /doc/source/mycroft.audio.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/doc/source/mycroft.audio.rst -------------------------------------------------------------------------------- /doc/source/mycroft.filesystem.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/doc/source/mycroft.filesystem.rst -------------------------------------------------------------------------------- /doc/source/mycroft.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/doc/source/mycroft.rst -------------------------------------------------------------------------------- /doc/source/mycroft.util.format.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/doc/source/mycroft.util.format.rst -------------------------------------------------------------------------------- /doc/source/mycroft.util.log.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/doc/source/mycroft.util.log.rst -------------------------------------------------------------------------------- /doc/source/mycroft.util.parse.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/doc/source/mycroft.util.parse.rst -------------------------------------------------------------------------------- /doc/source/mycroft.util.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/doc/source/mycroft.util.rst -------------------------------------------------------------------------------- /doc/source/mycroft.util.time.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/doc/source/mycroft.util.time.rst -------------------------------------------------------------------------------- /doc/source/plugins.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/doc/source/plugins.rst -------------------------------------------------------------------------------- /mycroft/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/mycroft/__init__.py -------------------------------------------------------------------------------- /mycroft/api/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/mycroft/api/__init__.py -------------------------------------------------------------------------------- /mycroft/audio/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/mycroft/audio/__init__.py -------------------------------------------------------------------------------- /mycroft/audio/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/mycroft/audio/__main__.py -------------------------------------------------------------------------------- /mycroft/audio/audioservice.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/mycroft/audio/audioservice.py -------------------------------------------------------------------------------- /mycroft/audio/services/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/mycroft/audio/services/__init__.py -------------------------------------------------------------------------------- /mycroft/audio/services/mopidy/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/mycroft/audio/services/mopidy/__init__.py -------------------------------------------------------------------------------- /mycroft/audio/services/mopidy/mopidypost.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/mycroft/audio/services/mopidy/mopidypost.py -------------------------------------------------------------------------------- /mycroft/audio/services/simple/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/mycroft/audio/services/simple/__init__.py -------------------------------------------------------------------------------- /mycroft/audio/services/vlc/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/mycroft/audio/services/vlc/__init__.py -------------------------------------------------------------------------------- /mycroft/audio/speech.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/mycroft/audio/speech.py -------------------------------------------------------------------------------- /mycroft/audio/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/mycroft/audio/utils.py -------------------------------------------------------------------------------- /mycroft/client/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/mycroft/client/__init__.py -------------------------------------------------------------------------------- /mycroft/client/enclosure/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/mycroft/client/enclosure/__init__.py -------------------------------------------------------------------------------- /mycroft/client/enclosure/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/mycroft/client/enclosure/__main__.py -------------------------------------------------------------------------------- /mycroft/client/enclosure/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/mycroft/client/enclosure/base.py -------------------------------------------------------------------------------- /mycroft/client/enclosure/generic/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/mycroft/client/enclosure/generic/__init__.py -------------------------------------------------------------------------------- /mycroft/client/enclosure/mark1/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/mycroft/client/enclosure/mark1/__init__.py -------------------------------------------------------------------------------- /mycroft/client/enclosure/mark1/arduino.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/mycroft/client/enclosure/mark1/arduino.py -------------------------------------------------------------------------------- /mycroft/client/enclosure/mark1/eyes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/mycroft/client/enclosure/mark1/eyes.py -------------------------------------------------------------------------------- /mycroft/client/enclosure/mark1/mouth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/mycroft/client/enclosure/mark1/mouth.py -------------------------------------------------------------------------------- /mycroft/client/enclosure/mark2/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/mycroft/client/enclosure/mark2/__init__.py -------------------------------------------------------------------------------- /mycroft/client/enclosure/version.txt: -------------------------------------------------------------------------------- 1 | 1.4.2 2 | -------------------------------------------------------------------------------- /mycroft/client/speech/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/mycroft/client/speech/__init__.py -------------------------------------------------------------------------------- /mycroft/client/speech/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/mycroft/client/speech/__main__.py -------------------------------------------------------------------------------- /mycroft/client/speech/data_structures.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/mycroft/client/speech/data_structures.py -------------------------------------------------------------------------------- /mycroft/client/speech/hotword_factory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/mycroft/client/speech/hotword_factory.py -------------------------------------------------------------------------------- /mycroft/client/speech/listener.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/mycroft/client/speech/listener.py -------------------------------------------------------------------------------- /mycroft/client/speech/mic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/mycroft/client/speech/mic.py -------------------------------------------------------------------------------- /mycroft/client/speech/recognizer/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mycroft/client/speech/recognizer/model/en-us/hmm/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/mycroft/client/speech/recognizer/model/en-us/hmm/README -------------------------------------------------------------------------------- /mycroft/client/speech/recognizer/model/en-us/hmm/feat.params: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/mycroft/client/speech/recognizer/model/en-us/hmm/feat.params -------------------------------------------------------------------------------- /mycroft/client/speech/recognizer/model/en-us/hmm/mdef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/mycroft/client/speech/recognizer/model/en-us/hmm/mdef -------------------------------------------------------------------------------- /mycroft/client/speech/recognizer/model/en-us/hmm/means: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/mycroft/client/speech/recognizer/model/en-us/hmm/means -------------------------------------------------------------------------------- /mycroft/client/speech/recognizer/model/en-us/hmm/noisedict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/mycroft/client/speech/recognizer/model/en-us/hmm/noisedict -------------------------------------------------------------------------------- /mycroft/client/speech/recognizer/model/en-us/hmm/sendump: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/mycroft/client/speech/recognizer/model/en-us/hmm/sendump -------------------------------------------------------------------------------- /mycroft/client/speech/recognizer/model/en-us/hmm/transition_matrices: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/mycroft/client/speech/recognizer/model/en-us/hmm/transition_matrices -------------------------------------------------------------------------------- /mycroft/client/speech/recognizer/model/en-us/hmm/variances: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/mycroft/client/speech/recognizer/model/en-us/hmm/variances -------------------------------------------------------------------------------- /mycroft/client/speech/word_extractor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/mycroft/client/speech/word_extractor.py -------------------------------------------------------------------------------- /mycroft/client/text/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/mycroft/client/text/__init__.py -------------------------------------------------------------------------------- /mycroft/client/text/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/mycroft/client/text/__main__.py -------------------------------------------------------------------------------- /mycroft/client/text/gui_server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/mycroft/client/text/gui_server.py -------------------------------------------------------------------------------- /mycroft/client/text/text_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/mycroft/client/text/text_client.py -------------------------------------------------------------------------------- /mycroft/configuration/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/mycroft/configuration/__init__.py -------------------------------------------------------------------------------- /mycroft/configuration/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/mycroft/configuration/config.py -------------------------------------------------------------------------------- /mycroft/configuration/locale.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/mycroft/configuration/locale.py -------------------------------------------------------------------------------- /mycroft/configuration/locations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/mycroft/configuration/locations.py -------------------------------------------------------------------------------- /mycroft/configuration/mycroft.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/mycroft/configuration/mycroft.conf -------------------------------------------------------------------------------- /mycroft/dialog/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/mycroft/dialog/__init__.py -------------------------------------------------------------------------------- /mycroft/dialog/dialog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/mycroft/dialog/dialog.py -------------------------------------------------------------------------------- /mycroft/enclosure/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/mycroft/enclosure/__init__.py -------------------------------------------------------------------------------- /mycroft/enclosure/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/mycroft/enclosure/api.py -------------------------------------------------------------------------------- /mycroft/enclosure/display_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/mycroft/enclosure/display_manager.py -------------------------------------------------------------------------------- /mycroft/enclosure/gui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/mycroft/enclosure/gui.py -------------------------------------------------------------------------------- /mycroft/filesystem/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/mycroft/filesystem/__init__.py -------------------------------------------------------------------------------- /mycroft/identity/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/mycroft/identity/__init__.py -------------------------------------------------------------------------------- /mycroft/lock/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/mycroft/lock/__init__.py -------------------------------------------------------------------------------- /mycroft/messagebus/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/mycroft/messagebus/__init__.py -------------------------------------------------------------------------------- /mycroft/messagebus/client/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/mycroft/messagebus/client/__init__.py -------------------------------------------------------------------------------- /mycroft/messagebus/client/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/mycroft/messagebus/client/client.py -------------------------------------------------------------------------------- /mycroft/messagebus/load_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/mycroft/messagebus/load_config.py -------------------------------------------------------------------------------- /mycroft/messagebus/message.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/mycroft/messagebus/message.py -------------------------------------------------------------------------------- /mycroft/messagebus/send.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/mycroft/messagebus/send.py -------------------------------------------------------------------------------- /mycroft/messagebus/send_func.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/mycroft/messagebus/send_func.py -------------------------------------------------------------------------------- /mycroft/messagebus/service/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/mycroft/messagebus/service/__init__.py -------------------------------------------------------------------------------- /mycroft/messagebus/service/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/mycroft/messagebus/service/__main__.py -------------------------------------------------------------------------------- /mycroft/messagebus/service/event_handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/mycroft/messagebus/service/event_handler.py -------------------------------------------------------------------------------- /mycroft/metrics/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/mycroft/metrics/__init__.py -------------------------------------------------------------------------------- /mycroft/res/snd/acknowledge.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/mycroft/res/snd/acknowledge.mp3 -------------------------------------------------------------------------------- /mycroft/res/snd/start_listening.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/mycroft/res/snd/start_listening.wav -------------------------------------------------------------------------------- /mycroft/res/text/az-az/and.word: -------------------------------------------------------------------------------- 1 | və -------------------------------------------------------------------------------- /mycroft/res/text/az-az/backend.down.dialog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/mycroft/res/text/az-az/backend.down.dialog -------------------------------------------------------------------------------- /mycroft/res/text/az-az/cancel.voc: -------------------------------------------------------------------------------- 1 | ləğv et 2 | ötür 3 | bürax -------------------------------------------------------------------------------- /mycroft/res/text/az-az/checking for updates.dialog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/mycroft/res/text/az-az/checking for updates.dialog -------------------------------------------------------------------------------- /mycroft/res/text/az-az/day.word: -------------------------------------------------------------------------------- 1 | gün -------------------------------------------------------------------------------- /mycroft/res/text/az-az/hour.word: -------------------------------------------------------------------------------- 1 | saat -------------------------------------------------------------------------------- /mycroft/res/text/az-az/i didn't catch that.dialog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/mycroft/res/text/az-az/i didn't catch that.dialog -------------------------------------------------------------------------------- /mycroft/res/text/az-az/last.voc: -------------------------------------------------------------------------------- 1 | son seçim 2 | sonuncu -------------------------------------------------------------------------------- /mycroft/res/text/az-az/message_loading.skills.dialog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/mycroft/res/text/az-az/message_loading.skills.dialog -------------------------------------------------------------------------------- /mycroft/res/text/az-az/message_rebooting.dialog: -------------------------------------------------------------------------------- 1 | YENİDƏN İŞƏ SALINIR... -------------------------------------------------------------------------------- /mycroft/res/text/az-az/message_synching.clock.dialog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/mycroft/res/text/az-az/message_synching.clock.dialog -------------------------------------------------------------------------------- /mycroft/res/text/az-az/message_updating.dialog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/mycroft/res/text/az-az/message_updating.dialog -------------------------------------------------------------------------------- /mycroft/res/text/az-az/minute.word: -------------------------------------------------------------------------------- 1 | dəqiqə -------------------------------------------------------------------------------- /mycroft/res/text/az-az/mycroft.intro.dialog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/mycroft/res/text/az-az/mycroft.intro.dialog -------------------------------------------------------------------------------- /mycroft/res/text/az-az/no.voc: -------------------------------------------------------------------------------- 1 | yox 2 | yo 3 | mənfi -------------------------------------------------------------------------------- /mycroft/res/text/az-az/not connected to the internet.dialog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/mycroft/res/text/az-az/not connected to the internet.dialog -------------------------------------------------------------------------------- /mycroft/res/text/az-az/not.loaded.dialog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/mycroft/res/text/az-az/not.loaded.dialog -------------------------------------------------------------------------------- /mycroft/res/text/az-az/or.word: -------------------------------------------------------------------------------- 1 | ya -------------------------------------------------------------------------------- /mycroft/res/text/az-az/phonetic_spellings.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/mycroft/res/text/az-az/phonetic_spellings.txt -------------------------------------------------------------------------------- /mycroft/res/text/az-az/reset to factory defaults.dialog: -------------------------------------------------------------------------------- 1 | Mən fabrik tənzimlərimə qayıtmışam. -------------------------------------------------------------------------------- /mycroft/res/text/az-az/second.word: -------------------------------------------------------------------------------- 1 | saniyə -------------------------------------------------------------------------------- /mycroft/res/text/az-az/skill.error.dialog: -------------------------------------------------------------------------------- 1 | {{skill}} Bacarıqlar işlərkən xəta baş verdi -------------------------------------------------------------------------------- /mycroft/res/text/az-az/skills updated.dialog: -------------------------------------------------------------------------------- 1 | Bacarıqlar Yeniləndi. Mən sizə yardım etməyə hazıram. -------------------------------------------------------------------------------- /mycroft/res/text/az-az/sorry I couldn't install default skills.dialog: -------------------------------------------------------------------------------- 1 | bacarıqları yeniləyərkən xəta baş verdi -------------------------------------------------------------------------------- /mycroft/res/text/az-az/time.changed.reboot.dialog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/mycroft/res/text/az-az/time.changed.reboot.dialog -------------------------------------------------------------------------------- /mycroft/res/text/az-az/yes.voc: -------------------------------------------------------------------------------- 1 | bəli 2 | evet 3 | hən 4 | lütfən 5 | -------------------------------------------------------------------------------- /mycroft/res/text/ca-es/backend.down.dialog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/mycroft/res/text/ca-es/backend.down.dialog -------------------------------------------------------------------------------- /mycroft/res/text/ca-es/cancel.voc: -------------------------------------------------------------------------------- 1 | cancel·la 2 | no importa 3 | oblida-ho -------------------------------------------------------------------------------- /mycroft/res/text/ca-es/checking for updates.dialog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/mycroft/res/text/ca-es/checking for updates.dialog -------------------------------------------------------------------------------- /mycroft/res/text/ca-es/i didn't catch that.dialog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/mycroft/res/text/ca-es/i didn't catch that.dialog -------------------------------------------------------------------------------- /mycroft/res/text/ca-es/learning disabled.dialog: -------------------------------------------------------------------------------- 1 | Les dades d'interacció ja no s'enviaran a Mycroft AI. -------------------------------------------------------------------------------- /mycroft/res/text/ca-es/learning enabled.dialog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/mycroft/res/text/ca-es/learning enabled.dialog -------------------------------------------------------------------------------- /mycroft/res/text/ca-es/message_rebooting.dialog: -------------------------------------------------------------------------------- 1 | S'ESTÀ REINICIANT... -------------------------------------------------------------------------------- /mycroft/res/text/ca-es/message_synching.clock.dialog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/mycroft/res/text/ca-es/message_synching.clock.dialog -------------------------------------------------------------------------------- /mycroft/res/text/ca-es/message_updating.dialog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/mycroft/res/text/ca-es/message_updating.dialog -------------------------------------------------------------------------------- /mycroft/res/text/ca-es/mycroft.intro.dialog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/mycroft/res/text/ca-es/mycroft.intro.dialog -------------------------------------------------------------------------------- /mycroft/res/text/ca-es/no.voc: -------------------------------------------------------------------------------- 1 | no 2 | i ara! 3 | negatiu -------------------------------------------------------------------------------- /mycroft/res/text/ca-es/not connected to the internet.dialog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/mycroft/res/text/ca-es/not connected to the internet.dialog -------------------------------------------------------------------------------- /mycroft/res/text/ca-es/not.loaded.dialog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/mycroft/res/text/ca-es/not.loaded.dialog -------------------------------------------------------------------------------- /mycroft/res/text/ca-es/phonetic_spellings.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/mycroft/res/text/ca-es/phonetic_spellings.txt -------------------------------------------------------------------------------- /mycroft/res/text/ca-es/reset to factory defaults.dialog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/mycroft/res/text/ca-es/reset to factory defaults.dialog -------------------------------------------------------------------------------- /mycroft/res/text/ca-es/skill.error.dialog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/mycroft/res/text/ca-es/skill.error.dialog -------------------------------------------------------------------------------- /mycroft/res/text/ca-es/skills updated.dialog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/mycroft/res/text/ca-es/skills updated.dialog -------------------------------------------------------------------------------- /mycroft/res/text/ca-es/sorry I couldn't install default skills.dialog: -------------------------------------------------------------------------------- 1 | s'ha produït un error en actualitzar les habilitats 2 | -------------------------------------------------------------------------------- /mycroft/res/text/ca-es/ssh disabled.dialog: -------------------------------------------------------------------------------- 1 | S'ha desactivat l'inici de sessió per SSH -------------------------------------------------------------------------------- /mycroft/res/text/ca-es/ssh enabled.dialog: -------------------------------------------------------------------------------- 1 | Ara es permeten els inicis de sessió per SSH -------------------------------------------------------------------------------- /mycroft/res/text/ca-es/time.changed.reboot.dialog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/mycroft/res/text/ca-es/time.changed.reboot.dialog -------------------------------------------------------------------------------- /mycroft/res/text/ca-es/yes.voc: -------------------------------------------------------------------------------- 1 | sí 2 | oi tant! 3 | així és 4 | per descomptat 5 | si us plau -------------------------------------------------------------------------------- /mycroft/res/text/cs-cz/and.word: -------------------------------------------------------------------------------- 1 | a -------------------------------------------------------------------------------- /mycroft/res/text/cs-cz/backend.down.dialog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/mycroft/res/text/cs-cz/backend.down.dialog -------------------------------------------------------------------------------- /mycroft/res/text/cs-cz/cancel.voc: -------------------------------------------------------------------------------- 1 | zrušit 2 | nevadí 3 | zapomeň to 4 | -------------------------------------------------------------------------------- /mycroft/res/text/cs-cz/checking for updates.dialog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/mycroft/res/text/cs-cz/checking for updates.dialog -------------------------------------------------------------------------------- /mycroft/res/text/cs-cz/day.word: -------------------------------------------------------------------------------- 1 | den -------------------------------------------------------------------------------- /mycroft/res/text/cs-cz/days.word: -------------------------------------------------------------------------------- 1 | dny -------------------------------------------------------------------------------- /mycroft/res/text/cs-cz/hour.word: -------------------------------------------------------------------------------- 1 | hodina -------------------------------------------------------------------------------- /mycroft/res/text/cs-cz/hours.word: -------------------------------------------------------------------------------- 1 | hodiny -------------------------------------------------------------------------------- /mycroft/res/text/cs-cz/i didn't catch that.dialog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/mycroft/res/text/cs-cz/i didn't catch that.dialog -------------------------------------------------------------------------------- /mycroft/res/text/cs-cz/last.voc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/mycroft/res/text/cs-cz/last.voc -------------------------------------------------------------------------------- /mycroft/res/text/cs-cz/learning disabled.dialog: -------------------------------------------------------------------------------- 1 | Interakční data nebudou dále odesílána do Mycroft AI. -------------------------------------------------------------------------------- /mycroft/res/text/cs-cz/learning enabled.dialog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/mycroft/res/text/cs-cz/learning enabled.dialog -------------------------------------------------------------------------------- /mycroft/res/text/cs-cz/message_loading.skills.dialog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/mycroft/res/text/cs-cz/message_loading.skills.dialog -------------------------------------------------------------------------------- /mycroft/res/text/cs-cz/message_rebooting.dialog: -------------------------------------------------------------------------------- 1 | RESTARTUJI... -------------------------------------------------------------------------------- /mycroft/res/text/cs-cz/message_synching.clock.dialog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/mycroft/res/text/cs-cz/message_synching.clock.dialog -------------------------------------------------------------------------------- /mycroft/res/text/cs-cz/message_updating.dialog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/mycroft/res/text/cs-cz/message_updating.dialog -------------------------------------------------------------------------------- /mycroft/res/text/cs-cz/minute.word: -------------------------------------------------------------------------------- 1 | minuta -------------------------------------------------------------------------------- /mycroft/res/text/cs-cz/minutes.word: -------------------------------------------------------------------------------- 1 | minuty -------------------------------------------------------------------------------- /mycroft/res/text/cs-cz/mycroft.intro.dialog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/mycroft/res/text/cs-cz/mycroft.intro.dialog -------------------------------------------------------------------------------- /mycroft/res/text/cs-cz/no.voc: -------------------------------------------------------------------------------- 1 | ne 2 | nechci -------------------------------------------------------------------------------- /mycroft/res/text/cs-cz/not connected to the internet.dialog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/mycroft/res/text/cs-cz/not connected to the internet.dialog -------------------------------------------------------------------------------- /mycroft/res/text/cs-cz/not.loaded.dialog: -------------------------------------------------------------------------------- 1 | Počkejte prosím chvíly než dokončím startování. -------------------------------------------------------------------------------- /mycroft/res/text/cs-cz/or.word: -------------------------------------------------------------------------------- 1 | nebo -------------------------------------------------------------------------------- /mycroft/res/text/cs-cz/phonetic_spellings.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/mycroft/res/text/cs-cz/phonetic_spellings.txt -------------------------------------------------------------------------------- /mycroft/res/text/cs-cz/reset to factory defaults.dialog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/mycroft/res/text/cs-cz/reset to factory defaults.dialog -------------------------------------------------------------------------------- /mycroft/res/text/cs-cz/second.word: -------------------------------------------------------------------------------- 1 | sekunda -------------------------------------------------------------------------------- /mycroft/res/text/cs-cz/seconds.word: -------------------------------------------------------------------------------- 1 | sekundy -------------------------------------------------------------------------------- /mycroft/res/text/cs-cz/skill.error.dialog: -------------------------------------------------------------------------------- 1 | Naskytla se chyba při zracování požadavku v {{skill}} -------------------------------------------------------------------------------- /mycroft/res/text/cs-cz/skills updated.dialog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/mycroft/res/text/cs-cz/skills updated.dialog -------------------------------------------------------------------------------- /mycroft/res/text/cs-cz/sorry I couldn't install default skills.dialog: -------------------------------------------------------------------------------- 1 | vyskytla se chyba při aktualizaci dovedností -------------------------------------------------------------------------------- /mycroft/res/text/cs-cz/ssh disabled.dialog: -------------------------------------------------------------------------------- 1 | SSH přihlašování bylo zakázáno -------------------------------------------------------------------------------- /mycroft/res/text/cs-cz/ssh enabled.dialog: -------------------------------------------------------------------------------- 1 | SSH přihlašování je povoleno -------------------------------------------------------------------------------- /mycroft/res/text/cs-cz/time.changed.reboot.dialog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/mycroft/res/text/cs-cz/time.changed.reboot.dialog -------------------------------------------------------------------------------- /mycroft/res/text/cs-cz/yes.voc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/mycroft/res/text/cs-cz/yes.voc -------------------------------------------------------------------------------- /mycroft/res/text/da-dk/and.word: -------------------------------------------------------------------------------- 1 | og 2 | -------------------------------------------------------------------------------- /mycroft/res/text/da-dk/backend.down.dialog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/mycroft/res/text/da-dk/backend.down.dialog -------------------------------------------------------------------------------- /mycroft/res/text/da-dk/cancel.voc: -------------------------------------------------------------------------------- 1 | afbryd 2 | Glem det 3 | abort 4 | afslut -------------------------------------------------------------------------------- /mycroft/res/text/da-dk/checking for updates.dialog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/mycroft/res/text/da-dk/checking for updates.dialog -------------------------------------------------------------------------------- /mycroft/res/text/da-dk/day.word: -------------------------------------------------------------------------------- 1 | dag 2 | -------------------------------------------------------------------------------- /mycroft/res/text/da-dk/days.word: -------------------------------------------------------------------------------- 1 | dage 2 | -------------------------------------------------------------------------------- /mycroft/res/text/da-dk/hour.word: -------------------------------------------------------------------------------- 1 | time 2 | -------------------------------------------------------------------------------- /mycroft/res/text/da-dk/hours.word: -------------------------------------------------------------------------------- 1 | timer 2 | -------------------------------------------------------------------------------- /mycroft/res/text/da-dk/i didn't catch that.dialog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/mycroft/res/text/da-dk/i didn't catch that.dialog -------------------------------------------------------------------------------- /mycroft/res/text/da-dk/last.voc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/mycroft/res/text/da-dk/last.voc -------------------------------------------------------------------------------- /mycroft/res/text/da-dk/learning disabled.dialog: -------------------------------------------------------------------------------- 1 | Interaktionsdata vil ikke længere blive sendt til Mycroft AI. 2 | -------------------------------------------------------------------------------- /mycroft/res/text/da-dk/learning enabled.dialog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/mycroft/res/text/da-dk/learning enabled.dialog -------------------------------------------------------------------------------- /mycroft/res/text/da-dk/message_loading.skills.dialog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/mycroft/res/text/da-dk/message_loading.skills.dialog -------------------------------------------------------------------------------- /mycroft/res/text/da-dk/message_rebooting.dialog: -------------------------------------------------------------------------------- 1 | GENSTARTER... 2 | -------------------------------------------------------------------------------- /mycroft/res/text/da-dk/message_synching.clock.dialog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/mycroft/res/text/da-dk/message_synching.clock.dialog -------------------------------------------------------------------------------- /mycroft/res/text/da-dk/message_updating.dialog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/mycroft/res/text/da-dk/message_updating.dialog -------------------------------------------------------------------------------- /mycroft/res/text/da-dk/minute.word: -------------------------------------------------------------------------------- 1 | minut 2 | -------------------------------------------------------------------------------- /mycroft/res/text/da-dk/minutes.word: -------------------------------------------------------------------------------- 1 | minutter 2 | -------------------------------------------------------------------------------- /mycroft/res/text/da-dk/mycroft.intro.dialog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/mycroft/res/text/da-dk/mycroft.intro.dialog -------------------------------------------------------------------------------- /mycroft/res/text/da-dk/no.voc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/mycroft/res/text/da-dk/no.voc -------------------------------------------------------------------------------- /mycroft/res/text/da-dk/not connected to the internet.dialog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/mycroft/res/text/da-dk/not connected to the internet.dialog -------------------------------------------------------------------------------- /mycroft/res/text/da-dk/not.loaded.dialog: -------------------------------------------------------------------------------- 1 | Vent et øjeblik, til jeg er færdig med at starte op. 2 | -------------------------------------------------------------------------------- /mycroft/res/text/da-dk/or.word: -------------------------------------------------------------------------------- 1 | eller 2 | -------------------------------------------------------------------------------- /mycroft/res/text/da-dk/phonetic_spellings.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/mycroft/res/text/da-dk/phonetic_spellings.txt -------------------------------------------------------------------------------- /mycroft/res/text/da-dk/reset to factory defaults.dialog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/mycroft/res/text/da-dk/reset to factory defaults.dialog -------------------------------------------------------------------------------- /mycroft/res/text/da-dk/second.word: -------------------------------------------------------------------------------- 1 | anden 2 | -------------------------------------------------------------------------------- /mycroft/res/text/da-dk/seconds.word: -------------------------------------------------------------------------------- 1 | sekunder 2 | -------------------------------------------------------------------------------- /mycroft/res/text/da-dk/skill.error.dialog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/mycroft/res/text/da-dk/skill.error.dialog -------------------------------------------------------------------------------- /mycroft/res/text/da-dk/skills updated.dialog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/mycroft/res/text/da-dk/skills updated.dialog -------------------------------------------------------------------------------- /mycroft/res/text/da-dk/sorry I couldn't install default skills.dialog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/mycroft/res/text/da-dk/sorry I couldn't install default skills.dialog -------------------------------------------------------------------------------- /mycroft/res/text/da-dk/ssh disabled.dialog: -------------------------------------------------------------------------------- 1 | SSH-login er deaktiveret 2 | -------------------------------------------------------------------------------- /mycroft/res/text/da-dk/ssh enabled.dialog: -------------------------------------------------------------------------------- 1 | SSH-login er nu tilladt 2 | -------------------------------------------------------------------------------- /mycroft/res/text/da-dk/time.changed.reboot.dialog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/mycroft/res/text/da-dk/time.changed.reboot.dialog -------------------------------------------------------------------------------- /mycroft/res/text/da-dk/yes.voc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/mycroft/res/text/da-dk/yes.voc -------------------------------------------------------------------------------- /mycroft/res/text/de-de/and.word: -------------------------------------------------------------------------------- 1 | und 2 | -------------------------------------------------------------------------------- /mycroft/res/text/de-de/backend.down.dialog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/mycroft/res/text/de-de/backend.down.dialog -------------------------------------------------------------------------------- /mycroft/res/text/de-de/cancel.voc: -------------------------------------------------------------------------------- 1 | abbrechen 2 | Vergiss es 3 | verwerfen -------------------------------------------------------------------------------- /mycroft/res/text/de-de/checking for updates.dialog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/mycroft/res/text/de-de/checking for updates.dialog -------------------------------------------------------------------------------- /mycroft/res/text/de-de/day.word: -------------------------------------------------------------------------------- 1 | Tag 2 | -------------------------------------------------------------------------------- /mycroft/res/text/de-de/days.word: -------------------------------------------------------------------------------- 1 | Tage 2 | -------------------------------------------------------------------------------- /mycroft/res/text/de-de/hour.word: -------------------------------------------------------------------------------- 1 | Stunde 2 | -------------------------------------------------------------------------------- /mycroft/res/text/de-de/hours.word: -------------------------------------------------------------------------------- 1 | Stunden 2 | -------------------------------------------------------------------------------- /mycroft/res/text/de-de/i didn't catch that.dialog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/mycroft/res/text/de-de/i didn't catch that.dialog -------------------------------------------------------------------------------- /mycroft/res/text/de-de/learning disabled.dialog: -------------------------------------------------------------------------------- 1 | Interaktionsdaten werden nicht mehr an Mycroft AI gesendet. -------------------------------------------------------------------------------- /mycroft/res/text/de-de/learning enabled.dialog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/mycroft/res/text/de-de/learning enabled.dialog -------------------------------------------------------------------------------- /mycroft/res/text/de-de/message_rebooting.dialog: -------------------------------------------------------------------------------- 1 | Neustart... -------------------------------------------------------------------------------- /mycroft/res/text/de-de/message_synching.clock.dialog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/mycroft/res/text/de-de/message_synching.clock.dialog -------------------------------------------------------------------------------- /mycroft/res/text/de-de/message_updating.dialog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/mycroft/res/text/de-de/message_updating.dialog -------------------------------------------------------------------------------- /mycroft/res/text/de-de/minute.word: -------------------------------------------------------------------------------- 1 | Minute 2 | -------------------------------------------------------------------------------- /mycroft/res/text/de-de/minutes.word: -------------------------------------------------------------------------------- 1 | Minuten 2 | -------------------------------------------------------------------------------- /mycroft/res/text/de-de/mycroft.intro.dialog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/mycroft/res/text/de-de/mycroft.intro.dialog -------------------------------------------------------------------------------- /mycroft/res/text/de-de/no.voc: -------------------------------------------------------------------------------- 1 | Nein 2 | Nö 3 | Negative 4 | -------------------------------------------------------------------------------- /mycroft/res/text/de-de/noise_words.list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/mycroft/res/text/de-de/noise_words.list -------------------------------------------------------------------------------- /mycroft/res/text/de-de/not connected to the internet.dialog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/mycroft/res/text/de-de/not connected to the internet.dialog -------------------------------------------------------------------------------- /mycroft/res/text/de-de/not.loaded.dialog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/mycroft/res/text/de-de/not.loaded.dialog -------------------------------------------------------------------------------- /mycroft/res/text/de-de/or.word: -------------------------------------------------------------------------------- 1 | oder 2 | -------------------------------------------------------------------------------- /mycroft/res/text/de-de/phonetic_spellings.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/mycroft/res/text/de-de/phonetic_spellings.txt -------------------------------------------------------------------------------- /mycroft/res/text/de-de/reset to factory defaults.dialog: -------------------------------------------------------------------------------- 1 | Ich habe mich zurückgesetzt, auf Werkseinstellung. -------------------------------------------------------------------------------- /mycroft/res/text/de-de/second.word: -------------------------------------------------------------------------------- 1 | Sekunde 2 | -------------------------------------------------------------------------------- /mycroft/res/text/de-de/seconds.word: -------------------------------------------------------------------------------- 1 | Sekunden 2 | -------------------------------------------------------------------------------- /mycroft/res/text/de-de/skill.error.dialog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/mycroft/res/text/de-de/skill.error.dialog -------------------------------------------------------------------------------- /mycroft/res/text/de-de/skills updated.dialog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/mycroft/res/text/de-de/skills updated.dialog -------------------------------------------------------------------------------- /mycroft/res/text/de-de/sorry I couldn't install default skills.dialog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/mycroft/res/text/de-de/sorry I couldn't install default skills.dialog -------------------------------------------------------------------------------- /mycroft/res/text/de-de/ssh disabled.dialog: -------------------------------------------------------------------------------- 1 | SSH anmeldung ist nicht möglich. -------------------------------------------------------------------------------- /mycroft/res/text/de-de/ssh enabled.dialog: -------------------------------------------------------------------------------- 1 | SSH Anmeldung ist jetzt möglich. -------------------------------------------------------------------------------- /mycroft/res/text/de-de/time.changed.reboot.dialog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/mycroft/res/text/de-de/time.changed.reboot.dialog -------------------------------------------------------------------------------- /mycroft/res/text/de-de/yes.voc: -------------------------------------------------------------------------------- 1 | Ja 2 | Jawohl 3 | Sicher 4 | Na klaro 5 | -------------------------------------------------------------------------------- /mycroft/res/text/en-us/and.word: -------------------------------------------------------------------------------- 1 | and -------------------------------------------------------------------------------- /mycroft/res/text/en-us/backend.down.dialog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/mycroft/res/text/en-us/backend.down.dialog -------------------------------------------------------------------------------- /mycroft/res/text/en-us/cancel.voc: -------------------------------------------------------------------------------- 1 | cancel 2 | nevermind 3 | forget it 4 | -------------------------------------------------------------------------------- /mycroft/res/text/en-us/checking for updates.dialog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/mycroft/res/text/en-us/checking for updates.dialog -------------------------------------------------------------------------------- /mycroft/res/text/en-us/configurations.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/mycroft/res/text/en-us/configurations.json -------------------------------------------------------------------------------- /mycroft/res/text/en-us/day.word: -------------------------------------------------------------------------------- 1 | day -------------------------------------------------------------------------------- /mycroft/res/text/en-us/days.word: -------------------------------------------------------------------------------- 1 | days -------------------------------------------------------------------------------- /mycroft/res/text/en-us/hour.word: -------------------------------------------------------------------------------- 1 | hour -------------------------------------------------------------------------------- /mycroft/res/text/en-us/hours.word: -------------------------------------------------------------------------------- 1 | hours -------------------------------------------------------------------------------- /mycroft/res/text/en-us/i didn't catch that.dialog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/mycroft/res/text/en-us/i didn't catch that.dialog -------------------------------------------------------------------------------- /mycroft/res/text/en-us/last.voc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/mycroft/res/text/en-us/last.voc -------------------------------------------------------------------------------- /mycroft/res/text/en-us/learning disabled.dialog: -------------------------------------------------------------------------------- 1 | Interaction data will no longer be submitted to Mycroft AI. -------------------------------------------------------------------------------- /mycroft/res/text/en-us/learning enabled.dialog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/mycroft/res/text/en-us/learning enabled.dialog -------------------------------------------------------------------------------- /mycroft/res/text/en-us/message_loading.skills.dialog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/mycroft/res/text/en-us/message_loading.skills.dialog -------------------------------------------------------------------------------- /mycroft/res/text/en-us/message_rebooting.dialog: -------------------------------------------------------------------------------- 1 | REBOOTING... -------------------------------------------------------------------------------- /mycroft/res/text/en-us/message_synching.clock.dialog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/mycroft/res/text/en-us/message_synching.clock.dialog -------------------------------------------------------------------------------- /mycroft/res/text/en-us/message_updating.dialog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/mycroft/res/text/en-us/message_updating.dialog -------------------------------------------------------------------------------- /mycroft/res/text/en-us/minute.word: -------------------------------------------------------------------------------- 1 | minute -------------------------------------------------------------------------------- /mycroft/res/text/en-us/minutes.word: -------------------------------------------------------------------------------- 1 | minutes -------------------------------------------------------------------------------- /mycroft/res/text/en-us/mycroft.intro.dialog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/mycroft/res/text/en-us/mycroft.intro.dialog -------------------------------------------------------------------------------- /mycroft/res/text/en-us/no.voc: -------------------------------------------------------------------------------- 1 | no 2 | nope 3 | nah 4 | negative -------------------------------------------------------------------------------- /mycroft/res/text/en-us/noise_words.list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/mycroft/res/text/en-us/noise_words.list -------------------------------------------------------------------------------- /mycroft/res/text/en-us/not connected to the internet.dialog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/mycroft/res/text/en-us/not connected to the internet.dialog -------------------------------------------------------------------------------- /mycroft/res/text/en-us/not.loaded.dialog: -------------------------------------------------------------------------------- 1 | Please wait a moment as I finish booting up. -------------------------------------------------------------------------------- /mycroft/res/text/en-us/or.word: -------------------------------------------------------------------------------- 1 | or -------------------------------------------------------------------------------- /mycroft/res/text/en-us/phonetic_spellings.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/mycroft/res/text/en-us/phonetic_spellings.txt -------------------------------------------------------------------------------- /mycroft/res/text/en-us/reset to factory defaults.dialog: -------------------------------------------------------------------------------- 1 | I have been reset to factory defaults. 2 | -------------------------------------------------------------------------------- /mycroft/res/text/en-us/second.word: -------------------------------------------------------------------------------- 1 | second -------------------------------------------------------------------------------- /mycroft/res/text/en-us/seconds.word: -------------------------------------------------------------------------------- 1 | seconds -------------------------------------------------------------------------------- /mycroft/res/text/en-us/skill.error.dialog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/mycroft/res/text/en-us/skill.error.dialog -------------------------------------------------------------------------------- /mycroft/res/text/en-us/skills updated.dialog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/mycroft/res/text/en-us/skills updated.dialog -------------------------------------------------------------------------------- /mycroft/res/text/en-us/sorry I couldn't install default skills.dialog: -------------------------------------------------------------------------------- 1 | an error occurred while updating skills 2 | -------------------------------------------------------------------------------- /mycroft/res/text/en-us/ssh disabled.dialog: -------------------------------------------------------------------------------- 1 | SSH login has been disabled -------------------------------------------------------------------------------- /mycroft/res/text/en-us/ssh enabled.dialog: -------------------------------------------------------------------------------- 1 | SSH logins are now allowed 2 | -------------------------------------------------------------------------------- /mycroft/res/text/en-us/time.changed.reboot.dialog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/mycroft/res/text/en-us/time.changed.reboot.dialog -------------------------------------------------------------------------------- /mycroft/res/text/en-us/yes.voc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/mycroft/res/text/en-us/yes.voc -------------------------------------------------------------------------------- /mycroft/res/text/es-es/backend.down.dialog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/mycroft/res/text/es-es/backend.down.dialog -------------------------------------------------------------------------------- /mycroft/res/text/es-es/cancel.voc: -------------------------------------------------------------------------------- 1 | cancela 2 | olvídalo 3 | da igual 4 | no importa 5 | -------------------------------------------------------------------------------- /mycroft/res/text/es-es/checking for updates.dialog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/mycroft/res/text/es-es/checking for updates.dialog -------------------------------------------------------------------------------- /mycroft/res/text/es-es/day.word: -------------------------------------------------------------------------------- 1 | día 2 | -------------------------------------------------------------------------------- /mycroft/res/text/es-es/days.word: -------------------------------------------------------------------------------- 1 | días 2 | -------------------------------------------------------------------------------- /mycroft/res/text/es-es/hour.word: -------------------------------------------------------------------------------- 1 | hora 2 | -------------------------------------------------------------------------------- /mycroft/res/text/es-es/hours.word: -------------------------------------------------------------------------------- 1 | horas 2 | -------------------------------------------------------------------------------- /mycroft/res/text/es-es/i didn't catch that.dialog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/mycroft/res/text/es-es/i didn't catch that.dialog -------------------------------------------------------------------------------- /mycroft/res/text/es-es/learning disabled.dialog: -------------------------------------------------------------------------------- 1 | Nuestras interacciones no se enviarán más a Mycroft AI. 2 | -------------------------------------------------------------------------------- /mycroft/res/text/es-es/learning enabled.dialog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/mycroft/res/text/es-es/learning enabled.dialog -------------------------------------------------------------------------------- /mycroft/res/text/es-es/message_rebooting.dialog: -------------------------------------------------------------------------------- 1 | REINICIANDO... 2 | -------------------------------------------------------------------------------- /mycroft/res/text/es-es/message_synching.clock.dialog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/mycroft/res/text/es-es/message_synching.clock.dialog -------------------------------------------------------------------------------- /mycroft/res/text/es-es/message_updating.dialog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/mycroft/res/text/es-es/message_updating.dialog -------------------------------------------------------------------------------- /mycroft/res/text/es-es/minute.word: -------------------------------------------------------------------------------- 1 | minuto 2 | -------------------------------------------------------------------------------- /mycroft/res/text/es-es/minutes.word: -------------------------------------------------------------------------------- 1 | minutos 2 | -------------------------------------------------------------------------------- /mycroft/res/text/es-es/mycroft.intro.dialog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/mycroft/res/text/es-es/mycroft.intro.dialog -------------------------------------------------------------------------------- /mycroft/res/text/es-es/no.voc: -------------------------------------------------------------------------------- 1 | no 2 | nop 3 | nah 4 | negativo 5 | -------------------------------------------------------------------------------- /mycroft/res/text/es-es/not connected to the internet.dialog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/mycroft/res/text/es-es/not connected to the internet.dialog -------------------------------------------------------------------------------- /mycroft/res/text/es-es/not.loaded.dialog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/mycroft/res/text/es-es/not.loaded.dialog -------------------------------------------------------------------------------- /mycroft/res/text/es-es/phonetic_spellings.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mycroft/res/text/es-es/reset to factory defaults.dialog: -------------------------------------------------------------------------------- 1 | He sido restaurado a la configuración de fábrica. 2 | -------------------------------------------------------------------------------- /mycroft/res/text/es-es/second.word: -------------------------------------------------------------------------------- 1 | segundo 2 | -------------------------------------------------------------------------------- /mycroft/res/text/es-es/seconds.word: -------------------------------------------------------------------------------- 1 | segundos 2 | -------------------------------------------------------------------------------- /mycroft/res/text/es-es/skill.error.dialog: -------------------------------------------------------------------------------- 1 | Sucedió un error al procesar una petición de {{skill}} 2 | -------------------------------------------------------------------------------- /mycroft/res/text/es-es/skills updated.dialog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/mycroft/res/text/es-es/skills updated.dialog -------------------------------------------------------------------------------- /mycroft/res/text/es-es/sorry I couldn't install default skills.dialog: -------------------------------------------------------------------------------- 1 | Sucedió un error mientras actualizaba mis habilidades 2 | -------------------------------------------------------------------------------- /mycroft/res/text/es-es/ssh disabled.dialog: -------------------------------------------------------------------------------- 1 | El inicio de sesión por SSH ha sido desactivado 2 | -------------------------------------------------------------------------------- /mycroft/res/text/es-es/ssh enabled.dialog: -------------------------------------------------------------------------------- 1 | Permito el inicio de sesión por SSH a partir de ahora 2 | -------------------------------------------------------------------------------- /mycroft/res/text/es-es/time.changed.reboot.dialog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/mycroft/res/text/es-es/time.changed.reboot.dialog -------------------------------------------------------------------------------- /mycroft/res/text/es-es/yes.voc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/mycroft/res/text/es-es/yes.voc -------------------------------------------------------------------------------- /mycroft/res/text/fa-ir/and.word: -------------------------------------------------------------------------------- 1 | و -------------------------------------------------------------------------------- /mycroft/res/text/fa-ir/backend.down.dialog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/mycroft/res/text/fa-ir/backend.down.dialog -------------------------------------------------------------------------------- /mycroft/res/text/fa-ir/cancel.voc: -------------------------------------------------------------------------------- 1 | کنسله 2 | بیخیال 3 | فراموشِش کن 4 | -------------------------------------------------------------------------------- /mycroft/res/text/fa-ir/checking for updates.dialog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/mycroft/res/text/fa-ir/checking for updates.dialog -------------------------------------------------------------------------------- /mycroft/res/text/fa-ir/day.word: -------------------------------------------------------------------------------- 1 | روز -------------------------------------------------------------------------------- /mycroft/res/text/fa-ir/days.word: -------------------------------------------------------------------------------- 1 | روز ها -------------------------------------------------------------------------------- /mycroft/res/text/fa-ir/hour.word: -------------------------------------------------------------------------------- 1 | ساعت -------------------------------------------------------------------------------- /mycroft/res/text/fa-ir/hours.word: -------------------------------------------------------------------------------- 1 | ساعت ها -------------------------------------------------------------------------------- /mycroft/res/text/fa-ir/i didn't catch that.dialog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/mycroft/res/text/fa-ir/i didn't catch that.dialog -------------------------------------------------------------------------------- /mycroft/res/text/fa-ir/last.voc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/mycroft/res/text/fa-ir/last.voc -------------------------------------------------------------------------------- /mycroft/res/text/fa-ir/learning disabled.dialog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/mycroft/res/text/fa-ir/learning disabled.dialog -------------------------------------------------------------------------------- /mycroft/res/text/fa-ir/learning enabled.dialog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/mycroft/res/text/fa-ir/learning enabled.dialog -------------------------------------------------------------------------------- /mycroft/res/text/fa-ir/message_loading.skills.dialog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/mycroft/res/text/fa-ir/message_loading.skills.dialog -------------------------------------------------------------------------------- /mycroft/res/text/fa-ir/message_rebooting.dialog: -------------------------------------------------------------------------------- 1 | در حال ری استارت شدن... -------------------------------------------------------------------------------- /mycroft/res/text/fa-ir/message_synching.clock.dialog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/mycroft/res/text/fa-ir/message_synching.clock.dialog -------------------------------------------------------------------------------- /mycroft/res/text/fa-ir/message_updating.dialog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/mycroft/res/text/fa-ir/message_updating.dialog -------------------------------------------------------------------------------- /mycroft/res/text/fa-ir/minute.word: -------------------------------------------------------------------------------- 1 | دقیقه -------------------------------------------------------------------------------- /mycroft/res/text/fa-ir/minutes.word: -------------------------------------------------------------------------------- 1 | دقیقه ها -------------------------------------------------------------------------------- /mycroft/res/text/fa-ir/mycroft.intro.dialog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/mycroft/res/text/fa-ir/mycroft.intro.dialog -------------------------------------------------------------------------------- /mycroft/res/text/fa-ir/no.voc: -------------------------------------------------------------------------------- 1 | نه 2 | خیر 3 | نوچ 4 | منفی -------------------------------------------------------------------------------- /mycroft/res/text/fa-ir/not connected to the internet.dialog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/mycroft/res/text/fa-ir/not connected to the internet.dialog -------------------------------------------------------------------------------- /mycroft/res/text/fa-ir/not.loaded.dialog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/mycroft/res/text/fa-ir/not.loaded.dialog -------------------------------------------------------------------------------- /mycroft/res/text/fa-ir/or.word: -------------------------------------------------------------------------------- 1 | یا -------------------------------------------------------------------------------- /mycroft/res/text/fa-ir/phonetic_spellings.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/mycroft/res/text/fa-ir/phonetic_spellings.txt -------------------------------------------------------------------------------- /mycroft/res/text/fa-ir/reset to factory defaults.dialog: -------------------------------------------------------------------------------- 1 | من به تنظیماتِ کارخانه برگشتم. 2 | -------------------------------------------------------------------------------- /mycroft/res/text/fa-ir/second.word: -------------------------------------------------------------------------------- 1 | ثانیه -------------------------------------------------------------------------------- /mycroft/res/text/fa-ir/seconds.word: -------------------------------------------------------------------------------- 1 | ثانیه ها -------------------------------------------------------------------------------- /mycroft/res/text/fa-ir/skill.error.dialog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/mycroft/res/text/fa-ir/skill.error.dialog -------------------------------------------------------------------------------- /mycroft/res/text/fa-ir/skills updated.dialog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/mycroft/res/text/fa-ir/skills updated.dialog -------------------------------------------------------------------------------- /mycroft/res/text/fa-ir/sorry I couldn't install default skills.dialog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/mycroft/res/text/fa-ir/sorry I couldn't install default skills.dialog -------------------------------------------------------------------------------- /mycroft/res/text/fa-ir/ssh disabled.dialog: -------------------------------------------------------------------------------- 1 | اس اس اچ غیرفعال شد. -------------------------------------------------------------------------------- /mycroft/res/text/fa-ir/ssh enabled.dialog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/mycroft/res/text/fa-ir/ssh enabled.dialog -------------------------------------------------------------------------------- /mycroft/res/text/fa-ir/time.changed.reboot.dialog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/mycroft/res/text/fa-ir/time.changed.reboot.dialog -------------------------------------------------------------------------------- /mycroft/res/text/fa-ir/yes.voc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/mycroft/res/text/fa-ir/yes.voc -------------------------------------------------------------------------------- /mycroft/res/text/fr-fr/and.word: -------------------------------------------------------------------------------- 1 | et -------------------------------------------------------------------------------- /mycroft/res/text/fr-fr/backend.down.dialog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/mycroft/res/text/fr-fr/backend.down.dialog -------------------------------------------------------------------------------- /mycroft/res/text/fr-fr/cancel.voc: -------------------------------------------------------------------------------- 1 | annule tout 2 | oublie ça 3 | laisse tomber 4 | -------------------------------------------------------------------------------- /mycroft/res/text/fr-fr/checking for updates.dialog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/mycroft/res/text/fr-fr/checking for updates.dialog -------------------------------------------------------------------------------- /mycroft/res/text/fr-fr/day.word: -------------------------------------------------------------------------------- 1 | jour 2 | -------------------------------------------------------------------------------- /mycroft/res/text/fr-fr/days.word: -------------------------------------------------------------------------------- 1 | jours 2 | -------------------------------------------------------------------------------- /mycroft/res/text/fr-fr/hour.word: -------------------------------------------------------------------------------- 1 | heure 2 | -------------------------------------------------------------------------------- /mycroft/res/text/fr-fr/hours.word: -------------------------------------------------------------------------------- 1 | heures 2 | -------------------------------------------------------------------------------- /mycroft/res/text/fr-fr/i didn't catch that.dialog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/mycroft/res/text/fr-fr/i didn't catch that.dialog -------------------------------------------------------------------------------- /mycroft/res/text/fr-fr/last.voc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/mycroft/res/text/fr-fr/last.voc -------------------------------------------------------------------------------- /mycroft/res/text/fr-fr/learning disabled.dialog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/mycroft/res/text/fr-fr/learning disabled.dialog -------------------------------------------------------------------------------- /mycroft/res/text/fr-fr/learning enabled.dialog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/mycroft/res/text/fr-fr/learning enabled.dialog -------------------------------------------------------------------------------- /mycroft/res/text/fr-fr/message_loading.skills.dialog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/mycroft/res/text/fr-fr/message_loading.skills.dialog -------------------------------------------------------------------------------- /mycroft/res/text/fr-fr/message_rebooting.dialog: -------------------------------------------------------------------------------- 1 | REDÉMARRAGE... 2 | -------------------------------------------------------------------------------- /mycroft/res/text/fr-fr/message_synching.clock.dialog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/mycroft/res/text/fr-fr/message_synching.clock.dialog -------------------------------------------------------------------------------- /mycroft/res/text/fr-fr/message_updating.dialog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/mycroft/res/text/fr-fr/message_updating.dialog -------------------------------------------------------------------------------- /mycroft/res/text/fr-fr/minute.word: -------------------------------------------------------------------------------- 1 | minute 2 | -------------------------------------------------------------------------------- /mycroft/res/text/fr-fr/minutes.word: -------------------------------------------------------------------------------- 1 | minutes 2 | -------------------------------------------------------------------------------- /mycroft/res/text/fr-fr/mycroft.intro.dialog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/mycroft/res/text/fr-fr/mycroft.intro.dialog -------------------------------------------------------------------------------- /mycroft/res/text/fr-fr/no.voc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/mycroft/res/text/fr-fr/no.voc -------------------------------------------------------------------------------- /mycroft/res/text/fr-fr/noise_words.list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/mycroft/res/text/fr-fr/noise_words.list -------------------------------------------------------------------------------- /mycroft/res/text/fr-fr/not connected to the internet.dialog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/mycroft/res/text/fr-fr/not connected to the internet.dialog -------------------------------------------------------------------------------- /mycroft/res/text/fr-fr/not.loaded.dialog: -------------------------------------------------------------------------------- 1 | Veuillez patienter quelques instants, je finis de démarrer. -------------------------------------------------------------------------------- /mycroft/res/text/fr-fr/or.word: -------------------------------------------------------------------------------- 1 | ou -------------------------------------------------------------------------------- /mycroft/res/text/fr-fr/phonetic_spellings.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/mycroft/res/text/fr-fr/phonetic_spellings.txt -------------------------------------------------------------------------------- /mycroft/res/text/fr-fr/reset to factory defaults.dialog: -------------------------------------------------------------------------------- 1 | J'ai été réinitialisé. 2 | -------------------------------------------------------------------------------- /mycroft/res/text/fr-fr/second.word: -------------------------------------------------------------------------------- 1 | seconde 2 | -------------------------------------------------------------------------------- /mycroft/res/text/fr-fr/seconds.word: -------------------------------------------------------------------------------- 1 | secondes 2 | -------------------------------------------------------------------------------- /mycroft/res/text/fr-fr/skill.error.dialog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/mycroft/res/text/fr-fr/skill.error.dialog -------------------------------------------------------------------------------- /mycroft/res/text/fr-fr/skills updated.dialog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/mycroft/res/text/fr-fr/skills updated.dialog -------------------------------------------------------------------------------- /mycroft/res/text/fr-fr/sorry I couldn't install default skills.dialog: -------------------------------------------------------------------------------- 1 | Une erreur est survenue lors de la mise à jour des compétences. 2 | -------------------------------------------------------------------------------- /mycroft/res/text/fr-fr/ssh disabled.dialog: -------------------------------------------------------------------------------- 1 | La connexion SSH a été désactivée 2 | -------------------------------------------------------------------------------- /mycroft/res/text/fr-fr/ssh enabled.dialog: -------------------------------------------------------------------------------- 1 | La connexion SSH a été activée 2 | -------------------------------------------------------------------------------- /mycroft/res/text/fr-fr/time.changed.reboot.dialog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/mycroft/res/text/fr-fr/time.changed.reboot.dialog -------------------------------------------------------------------------------- /mycroft/res/text/fr-fr/yes.voc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/mycroft/res/text/fr-fr/yes.voc -------------------------------------------------------------------------------- /mycroft/res/text/hu-hu/backend.down.dialog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/mycroft/res/text/hu-hu/backend.down.dialog -------------------------------------------------------------------------------- /mycroft/res/text/hu-hu/cancel.voc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/mycroft/res/text/hu-hu/cancel.voc -------------------------------------------------------------------------------- /mycroft/res/text/hu-hu/checking for updates.dialog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/mycroft/res/text/hu-hu/checking for updates.dialog -------------------------------------------------------------------------------- /mycroft/res/text/hu-hu/i didn't catch that.dialog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/mycroft/res/text/hu-hu/i didn't catch that.dialog -------------------------------------------------------------------------------- /mycroft/res/text/hu-hu/learning disabled.dialog: -------------------------------------------------------------------------------- 1 | Az interakciók adatait többé nem osztom meg a Mycroft AI szerverével. 2 | -------------------------------------------------------------------------------- /mycroft/res/text/hu-hu/learning enabled.dialog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/mycroft/res/text/hu-hu/learning enabled.dialog -------------------------------------------------------------------------------- /mycroft/res/text/hu-hu/message_rebooting.dialog: -------------------------------------------------------------------------------- 1 | ÚJRAINDÍTÁS... 2 | -------------------------------------------------------------------------------- /mycroft/res/text/hu-hu/message_synching.clock.dialog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/mycroft/res/text/hu-hu/message_synching.clock.dialog -------------------------------------------------------------------------------- /mycroft/res/text/hu-hu/message_updating.dialog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/mycroft/res/text/hu-hu/message_updating.dialog -------------------------------------------------------------------------------- /mycroft/res/text/hu-hu/mycroft.intro.dialog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/mycroft/res/text/hu-hu/mycroft.intro.dialog -------------------------------------------------------------------------------- /mycroft/res/text/hu-hu/no.voc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/mycroft/res/text/hu-hu/no.voc -------------------------------------------------------------------------------- /mycroft/res/text/hu-hu/not connected to the internet.dialog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/mycroft/res/text/hu-hu/not connected to the internet.dialog -------------------------------------------------------------------------------- /mycroft/res/text/hu-hu/not.loaded.dialog: -------------------------------------------------------------------------------- 1 | Még nem töltődött be minden rendszerem, kis türelmet kérek. 2 | -------------------------------------------------------------------------------- /mycroft/res/text/hu-hu/phonetic_spellings.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/mycroft/res/text/hu-hu/phonetic_spellings.txt -------------------------------------------------------------------------------- /mycroft/res/text/hu-hu/reset to factory defaults.dialog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/mycroft/res/text/hu-hu/reset to factory defaults.dialog -------------------------------------------------------------------------------- /mycroft/res/text/hu-hu/skill.error.dialog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/mycroft/res/text/hu-hu/skill.error.dialog -------------------------------------------------------------------------------- /mycroft/res/text/hu-hu/skills updated.dialog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/mycroft/res/text/hu-hu/skills updated.dialog -------------------------------------------------------------------------------- /mycroft/res/text/hu-hu/sorry I couldn't install default skills.dialog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/mycroft/res/text/hu-hu/sorry I couldn't install default skills.dialog -------------------------------------------------------------------------------- /mycroft/res/text/hu-hu/ssh disabled.dialog: -------------------------------------------------------------------------------- 1 | Az SSH bejelentkezés mostantól nem lehetséges 2 | -------------------------------------------------------------------------------- /mycroft/res/text/hu-hu/ssh enabled.dialog: -------------------------------------------------------------------------------- 1 | Az SSH bejelentkezés mostantól engedélyezett 2 | -------------------------------------------------------------------------------- /mycroft/res/text/hu-hu/time.changed.reboot.dialog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/mycroft/res/text/hu-hu/time.changed.reboot.dialog -------------------------------------------------------------------------------- /mycroft/res/text/hu-hu/yes.voc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/mycroft/res/text/hu-hu/yes.voc -------------------------------------------------------------------------------- /mycroft/res/text/it-it/backend.down.dialog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/mycroft/res/text/it-it/backend.down.dialog -------------------------------------------------------------------------------- /mycroft/res/text/it-it/cancel.voc: -------------------------------------------------------------------------------- 1 | Annulla 2 | non importa 3 | Dimenticalo 4 | Cancella 5 | -------------------------------------------------------------------------------- /mycroft/res/text/it-it/checking for updates.dialog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/mycroft/res/text/it-it/checking for updates.dialog -------------------------------------------------------------------------------- /mycroft/res/text/it-it/day.word: -------------------------------------------------------------------------------- 1 | giorno 2 | -------------------------------------------------------------------------------- /mycroft/res/text/it-it/days.word: -------------------------------------------------------------------------------- 1 | giorni 2 | -------------------------------------------------------------------------------- /mycroft/res/text/it-it/hour.word: -------------------------------------------------------------------------------- 1 | hora 2 | -------------------------------------------------------------------------------- /mycroft/res/text/it-it/hours.word: -------------------------------------------------------------------------------- 1 | ore 2 | -------------------------------------------------------------------------------- /mycroft/res/text/it-it/i didn't catch that.dialog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/mycroft/res/text/it-it/i didn't catch that.dialog -------------------------------------------------------------------------------- /mycroft/res/text/it-it/learning disabled.dialog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/mycroft/res/text/it-it/learning disabled.dialog -------------------------------------------------------------------------------- /mycroft/res/text/it-it/learning enabled.dialog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/mycroft/res/text/it-it/learning enabled.dialog -------------------------------------------------------------------------------- /mycroft/res/text/it-it/message_rebooting.dialog: -------------------------------------------------------------------------------- 1 | REBOOTING... 2 | -------------------------------------------------------------------------------- /mycroft/res/text/it-it/message_synching.clock.dialog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/mycroft/res/text/it-it/message_synching.clock.dialog -------------------------------------------------------------------------------- /mycroft/res/text/it-it/message_updating.dialog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/mycroft/res/text/it-it/message_updating.dialog -------------------------------------------------------------------------------- /mycroft/res/text/it-it/minute.word: -------------------------------------------------------------------------------- 1 | minuto 2 | -------------------------------------------------------------------------------- /mycroft/res/text/it-it/minutes.word: -------------------------------------------------------------------------------- 1 | minuti 2 | -------------------------------------------------------------------------------- /mycroft/res/text/it-it/mycroft.intro.dialog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/mycroft/res/text/it-it/mycroft.intro.dialog -------------------------------------------------------------------------------- /mycroft/res/text/it-it/no.voc: -------------------------------------------------------------------------------- 1 | no 2 | no no 3 | naah 4 | negativo 5 | -------------------------------------------------------------------------------- /mycroft/res/text/it-it/not connected to the internet.dialog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/mycroft/res/text/it-it/not connected to the internet.dialog -------------------------------------------------------------------------------- /mycroft/res/text/it-it/not.loaded.dialog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/mycroft/res/text/it-it/not.loaded.dialog -------------------------------------------------------------------------------- /mycroft/res/text/it-it/phonetic_spellings.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/mycroft/res/text/it-it/phonetic_spellings.txt -------------------------------------------------------------------------------- /mycroft/res/text/it-it/reset to factory defaults.dialog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/mycroft/res/text/it-it/reset to factory defaults.dialog -------------------------------------------------------------------------------- /mycroft/res/text/it-it/second.word: -------------------------------------------------------------------------------- 1 | secondo 2 | -------------------------------------------------------------------------------- /mycroft/res/text/it-it/seconds.word: -------------------------------------------------------------------------------- 1 | secondi 2 | -------------------------------------------------------------------------------- /mycroft/res/text/it-it/skill.error.dialog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/mycroft/res/text/it-it/skill.error.dialog -------------------------------------------------------------------------------- /mycroft/res/text/it-it/skills updated.dialog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/mycroft/res/text/it-it/skills updated.dialog -------------------------------------------------------------------------------- /mycroft/res/text/it-it/sorry I couldn't install default skills.dialog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/mycroft/res/text/it-it/sorry I couldn't install default skills.dialog -------------------------------------------------------------------------------- /mycroft/res/text/it-it/ssh disabled.dialog: -------------------------------------------------------------------------------- 1 | L'accesso SSH è stato disabilitato 2 | -------------------------------------------------------------------------------- /mycroft/res/text/it-it/ssh enabled.dialog: -------------------------------------------------------------------------------- 1 | Gli accessi SSH ora sono consentiti 2 | -------------------------------------------------------------------------------- /mycroft/res/text/it-it/time.changed.reboot.dialog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/mycroft/res/text/it-it/time.changed.reboot.dialog -------------------------------------------------------------------------------- /mycroft/res/text/it-it/yes.voc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/mycroft/res/text/it-it/yes.voc -------------------------------------------------------------------------------- /mycroft/res/text/nl-nl/backend.down.dialog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/mycroft/res/text/nl-nl/backend.down.dialog -------------------------------------------------------------------------------- /mycroft/res/text/nl-nl/cancel.voc: -------------------------------------------------------------------------------- 1 | cancel 2 | laat maar 3 | -------------------------------------------------------------------------------- /mycroft/res/text/nl-nl/checking for updates.dialog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/mycroft/res/text/nl-nl/checking for updates.dialog -------------------------------------------------------------------------------- /mycroft/res/text/nl-nl/day.word: -------------------------------------------------------------------------------- 1 | dag 2 | -------------------------------------------------------------------------------- /mycroft/res/text/nl-nl/days.word: -------------------------------------------------------------------------------- 1 | dagen 2 | -------------------------------------------------------------------------------- /mycroft/res/text/nl-nl/hour.word: -------------------------------------------------------------------------------- 1 | uur 2 | -------------------------------------------------------------------------------- /mycroft/res/text/nl-nl/hours.word: -------------------------------------------------------------------------------- 1 | uren 2 | -------------------------------------------------------------------------------- /mycroft/res/text/nl-nl/i am awake.dialog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/mycroft/res/text/nl-nl/i am awake.dialog -------------------------------------------------------------------------------- /mycroft/res/text/nl-nl/i didn't catch that.dialog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/mycroft/res/text/nl-nl/i didn't catch that.dialog -------------------------------------------------------------------------------- /mycroft/res/text/nl-nl/learning disabled.dialog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/mycroft/res/text/nl-nl/learning disabled.dialog -------------------------------------------------------------------------------- /mycroft/res/text/nl-nl/learning enabled.dialog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/mycroft/res/text/nl-nl/learning enabled.dialog -------------------------------------------------------------------------------- /mycroft/res/text/nl-nl/message_rebooting.dialog: -------------------------------------------------------------------------------- 1 | HERSTARTEN... 2 | -------------------------------------------------------------------------------- /mycroft/res/text/nl-nl/message_synching.clock.dialog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/mycroft/res/text/nl-nl/message_synching.clock.dialog -------------------------------------------------------------------------------- /mycroft/res/text/nl-nl/message_updating.dialog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/mycroft/res/text/nl-nl/message_updating.dialog -------------------------------------------------------------------------------- /mycroft/res/text/nl-nl/minute.word: -------------------------------------------------------------------------------- 1 | minuut 2 | -------------------------------------------------------------------------------- /mycroft/res/text/nl-nl/minutes.word: -------------------------------------------------------------------------------- 1 | minuten 2 | -------------------------------------------------------------------------------- /mycroft/res/text/nl-nl/mycroft.intro.dialog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/mycroft/res/text/nl-nl/mycroft.intro.dialog -------------------------------------------------------------------------------- /mycroft/res/text/nl-nl/no.voc: -------------------------------------------------------------------------------- 1 | nee 2 | bedankt 3 | -------------------------------------------------------------------------------- /mycroft/res/text/nl-nl/not connected to the internet.dialog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/mycroft/res/text/nl-nl/not connected to the internet.dialog -------------------------------------------------------------------------------- /mycroft/res/text/nl-nl/not.loaded.dialog: -------------------------------------------------------------------------------- 1 | Wacht alsjeblieft tot ik opgestart ben. 2 | -------------------------------------------------------------------------------- /mycroft/res/text/nl-nl/phonetic_spellings.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/mycroft/res/text/nl-nl/phonetic_spellings.txt -------------------------------------------------------------------------------- /mycroft/res/text/nl-nl/reset to factory defaults.dialog: -------------------------------------------------------------------------------- 1 | Mijn fabriekswaarden zijn hersteld 2 | -------------------------------------------------------------------------------- /mycroft/res/text/nl-nl/second.word: -------------------------------------------------------------------------------- 1 | seconde 2 | -------------------------------------------------------------------------------- /mycroft/res/text/nl-nl/seconds.word: -------------------------------------------------------------------------------- 1 | seconden 2 | -------------------------------------------------------------------------------- /mycroft/res/text/nl-nl/skill.error.dialog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/mycroft/res/text/nl-nl/skill.error.dialog -------------------------------------------------------------------------------- /mycroft/res/text/nl-nl/skills updated.dialog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/mycroft/res/text/nl-nl/skills updated.dialog -------------------------------------------------------------------------------- /mycroft/res/text/nl-nl/sorry I couldn't install default skills.dialog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/mycroft/res/text/nl-nl/sorry I couldn't install default skills.dialog -------------------------------------------------------------------------------- /mycroft/res/text/nl-nl/ssh disabled.dialog: -------------------------------------------------------------------------------- 1 | SSH login is uitgeschakeld 2 | -------------------------------------------------------------------------------- /mycroft/res/text/nl-nl/ssh enabled.dialog: -------------------------------------------------------------------------------- 1 | SSH logins zijn nu toegestaan 2 | -------------------------------------------------------------------------------- /mycroft/res/text/nl-nl/time.changed.reboot.dialog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/mycroft/res/text/nl-nl/time.changed.reboot.dialog -------------------------------------------------------------------------------- /mycroft/res/text/nl-nl/yes.voc: -------------------------------------------------------------------------------- 1 | ja 2 | graag 3 | -------------------------------------------------------------------------------- /mycroft/res/text/pl-pl/and.word: -------------------------------------------------------------------------------- 1 | i 2 | -------------------------------------------------------------------------------- /mycroft/res/text/pl-pl/backend.down.dialog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/mycroft/res/text/pl-pl/backend.down.dialog -------------------------------------------------------------------------------- /mycroft/res/text/pl-pl/cancel.voc: -------------------------------------------------------------------------------- 1 | anuluj 2 | nieważne 3 | zapomnij 4 | stop 5 | -------------------------------------------------------------------------------- /mycroft/res/text/pl-pl/checking for updates.dialog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/mycroft/res/text/pl-pl/checking for updates.dialog -------------------------------------------------------------------------------- /mycroft/res/text/pl-pl/day.word: -------------------------------------------------------------------------------- 1 | dzień 2 | -------------------------------------------------------------------------------- /mycroft/res/text/pl-pl/days.word: -------------------------------------------------------------------------------- 1 | dni 2 | -------------------------------------------------------------------------------- /mycroft/res/text/pl-pl/hour.word: -------------------------------------------------------------------------------- 1 | godzina 2 | -------------------------------------------------------------------------------- /mycroft/res/text/pl-pl/hours.word: -------------------------------------------------------------------------------- 1 | godziny 2 | -------------------------------------------------------------------------------- /mycroft/res/text/pl-pl/i didn't catch that.dialog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/mycroft/res/text/pl-pl/i didn't catch that.dialog -------------------------------------------------------------------------------- /mycroft/res/text/pl-pl/last.voc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/mycroft/res/text/pl-pl/last.voc -------------------------------------------------------------------------------- /mycroft/res/text/pl-pl/learning disabled.dialog: -------------------------------------------------------------------------------- 1 | Dane interakcji nie będą już wysyłane do Mycroft AI. 2 | -------------------------------------------------------------------------------- /mycroft/res/text/pl-pl/learning enabled.dialog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/mycroft/res/text/pl-pl/learning enabled.dialog -------------------------------------------------------------------------------- /mycroft/res/text/pl-pl/message_loading.skills.dialog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/mycroft/res/text/pl-pl/message_loading.skills.dialog -------------------------------------------------------------------------------- /mycroft/res/text/pl-pl/message_rebooting.dialog: -------------------------------------------------------------------------------- 1 | RESETUJĘ... 2 | -------------------------------------------------------------------------------- /mycroft/res/text/pl-pl/message_synching.clock.dialog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/mycroft/res/text/pl-pl/message_synching.clock.dialog -------------------------------------------------------------------------------- /mycroft/res/text/pl-pl/message_updating.dialog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/mycroft/res/text/pl-pl/message_updating.dialog -------------------------------------------------------------------------------- /mycroft/res/text/pl-pl/minute.word: -------------------------------------------------------------------------------- 1 | minuta 2 | -------------------------------------------------------------------------------- /mycroft/res/text/pl-pl/minutes.word: -------------------------------------------------------------------------------- 1 | minuty 2 | -------------------------------------------------------------------------------- /mycroft/res/text/pl-pl/mycroft.intro.dialog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/mycroft/res/text/pl-pl/mycroft.intro.dialog -------------------------------------------------------------------------------- /mycroft/res/text/pl-pl/no.voc: -------------------------------------------------------------------------------- 1 | nie 2 | odmawiam 3 | -------------------------------------------------------------------------------- /mycroft/res/text/pl-pl/not connected to the internet.dialog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/mycroft/res/text/pl-pl/not connected to the internet.dialog -------------------------------------------------------------------------------- /mycroft/res/text/pl-pl/not.loaded.dialog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/mycroft/res/text/pl-pl/not.loaded.dialog -------------------------------------------------------------------------------- /mycroft/res/text/pl-pl/or.word: -------------------------------------------------------------------------------- 1 | albo 2 | -------------------------------------------------------------------------------- /mycroft/res/text/pl-pl/phonetic_spellings.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/mycroft/res/text/pl-pl/phonetic_spellings.txt -------------------------------------------------------------------------------- /mycroft/res/text/pl-pl/reset to factory defaults.dialog: -------------------------------------------------------------------------------- 1 | Zostałem przywrócony do ustawień fabrycznych. 2 | -------------------------------------------------------------------------------- /mycroft/res/text/pl-pl/second.word: -------------------------------------------------------------------------------- 1 | sekunda 2 | -------------------------------------------------------------------------------- /mycroft/res/text/pl-pl/seconds.word: -------------------------------------------------------------------------------- 1 | sekundy 2 | -------------------------------------------------------------------------------- /mycroft/res/text/pl-pl/skill.error.dialog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/mycroft/res/text/pl-pl/skill.error.dialog -------------------------------------------------------------------------------- /mycroft/res/text/pl-pl/skills updated.dialog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/mycroft/res/text/pl-pl/skills updated.dialog -------------------------------------------------------------------------------- /mycroft/res/text/pl-pl/sorry I couldn't install default skills.dialog: -------------------------------------------------------------------------------- 1 | wystąpił błąd podczas aktualizacji umiejętności 2 | -------------------------------------------------------------------------------- /mycroft/res/text/pl-pl/ssh disabled.dialog: -------------------------------------------------------------------------------- 1 | Logowanie przez SSH zostało wyłączone 2 | -------------------------------------------------------------------------------- /mycroft/res/text/pl-pl/ssh enabled.dialog: -------------------------------------------------------------------------------- 1 | Logowanie przez SSH zostało włączone 2 | -------------------------------------------------------------------------------- /mycroft/res/text/pl-pl/time.changed.reboot.dialog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/mycroft/res/text/pl-pl/time.changed.reboot.dialog -------------------------------------------------------------------------------- /mycroft/res/text/pl-pl/yes.voc: -------------------------------------------------------------------------------- 1 | tak 2 | pewnie 3 | jasne 4 | oczywiście 5 | potwierdzam 6 | zgadza się 7 | -------------------------------------------------------------------------------- /mycroft/res/text/pt-pt/cancel.voc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/mycroft/res/text/pt-pt/cancel.voc -------------------------------------------------------------------------------- /mycroft/res/text/pt-pt/checking for updates.dialog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/mycroft/res/text/pt-pt/checking for updates.dialog -------------------------------------------------------------------------------- /mycroft/res/text/pt-pt/i am awake.dialog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/mycroft/res/text/pt-pt/i am awake.dialog -------------------------------------------------------------------------------- /mycroft/res/text/pt-pt/i didn't catch that.dialog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/mycroft/res/text/pt-pt/i didn't catch that.dialog -------------------------------------------------------------------------------- /mycroft/res/text/pt-pt/learning disabled.dialog: -------------------------------------------------------------------------------- 1 | Não vou enviar mais dados sobre a nossa interacção para Mycroft AI. -------------------------------------------------------------------------------- /mycroft/res/text/pt-pt/learning enabled.dialog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/mycroft/res/text/pt-pt/learning enabled.dialog -------------------------------------------------------------------------------- /mycroft/res/text/pt-pt/message_rebooting.dialog: -------------------------------------------------------------------------------- 1 | A REINICIAR... -------------------------------------------------------------------------------- /mycroft/res/text/pt-pt/message_synching.clock.dialog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/mycroft/res/text/pt-pt/message_synching.clock.dialog -------------------------------------------------------------------------------- /mycroft/res/text/pt-pt/message_updating.dialog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/mycroft/res/text/pt-pt/message_updating.dialog -------------------------------------------------------------------------------- /mycroft/res/text/pt-pt/mycroft.intro.dialog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/mycroft/res/text/pt-pt/mycroft.intro.dialog -------------------------------------------------------------------------------- /mycroft/res/text/pt-pt/not connected to the internet.dialog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/mycroft/res/text/pt-pt/not connected to the internet.dialog -------------------------------------------------------------------------------- /mycroft/res/text/pt-pt/not.loaded.dialog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/mycroft/res/text/pt-pt/not.loaded.dialog -------------------------------------------------------------------------------- /mycroft/res/text/pt-pt/phonetic_spellings.txt: -------------------------------------------------------------------------------- 1 | jalepeno: hallipeenyo 2 | ai: A.I. -------------------------------------------------------------------------------- /mycroft/res/text/pt-pt/reset to factory defaults.dialog: -------------------------------------------------------------------------------- 1 | Eu fui reiniciado para os padrões de fábrica. 2 | -------------------------------------------------------------------------------- /mycroft/res/text/pt-pt/skill.error.dialog: -------------------------------------------------------------------------------- 1 | Ocorreu um erro ao executar a habilidade {{skill}} -------------------------------------------------------------------------------- /mycroft/res/text/pt-pt/skills updated.dialog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/mycroft/res/text/pt-pt/skills updated.dialog -------------------------------------------------------------------------------- /mycroft/res/text/pt-pt/sorry I couldn't install default skills.dialog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/mycroft/res/text/pt-pt/sorry I couldn't install default skills.dialog -------------------------------------------------------------------------------- /mycroft/res/text/pt-pt/ssh disabled.dialog: -------------------------------------------------------------------------------- 1 | A ligação SSH foi desactivada 2 | -------------------------------------------------------------------------------- /mycroft/res/text/pt-pt/ssh enabled.dialog: -------------------------------------------------------------------------------- 1 | A ligação SSH está agora disponivel 2 | -------------------------------------------------------------------------------- /mycroft/res/text/pt-pt/time.changed.reboot.dialog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/mycroft/res/text/pt-pt/time.changed.reboot.dialog -------------------------------------------------------------------------------- /mycroft/res/text/ru-ru/and.word: -------------------------------------------------------------------------------- 1 | и 2 | -------------------------------------------------------------------------------- /mycroft/res/text/ru-ru/backend.down.dialog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/mycroft/res/text/ru-ru/backend.down.dialog -------------------------------------------------------------------------------- /mycroft/res/text/ru-ru/cancel.voc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/mycroft/res/text/ru-ru/cancel.voc -------------------------------------------------------------------------------- /mycroft/res/text/ru-ru/checking for updates.dialog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/mycroft/res/text/ru-ru/checking for updates.dialog -------------------------------------------------------------------------------- /mycroft/res/text/ru-ru/day.word: -------------------------------------------------------------------------------- 1 | день 2 | -------------------------------------------------------------------------------- /mycroft/res/text/ru-ru/days.word: -------------------------------------------------------------------------------- 1 | дней 2 | -------------------------------------------------------------------------------- /mycroft/res/text/ru-ru/hour.word: -------------------------------------------------------------------------------- 1 | час 2 | -------------------------------------------------------------------------------- /mycroft/res/text/ru-ru/hours.word: -------------------------------------------------------------------------------- 1 | часов 2 | -------------------------------------------------------------------------------- /mycroft/res/text/ru-ru/i didn't catch that.dialog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/mycroft/res/text/ru-ru/i didn't catch that.dialog -------------------------------------------------------------------------------- /mycroft/res/text/ru-ru/last.voc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/mycroft/res/text/ru-ru/last.voc -------------------------------------------------------------------------------- /mycroft/res/text/ru-ru/learning disabled.dialog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/mycroft/res/text/ru-ru/learning disabled.dialog -------------------------------------------------------------------------------- /mycroft/res/text/ru-ru/learning enabled.dialog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/mycroft/res/text/ru-ru/learning enabled.dialog -------------------------------------------------------------------------------- /mycroft/res/text/ru-ru/message_loading.skills.dialog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/mycroft/res/text/ru-ru/message_loading.skills.dialog -------------------------------------------------------------------------------- /mycroft/res/text/ru-ru/message_rebooting.dialog: -------------------------------------------------------------------------------- 1 | ПЕРЕЗАГРУЗКА... 2 | -------------------------------------------------------------------------------- /mycroft/res/text/ru-ru/message_synching.clock.dialog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/mycroft/res/text/ru-ru/message_synching.clock.dialog -------------------------------------------------------------------------------- /mycroft/res/text/ru-ru/message_updating.dialog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/mycroft/res/text/ru-ru/message_updating.dialog -------------------------------------------------------------------------------- /mycroft/res/text/ru-ru/minute.word: -------------------------------------------------------------------------------- 1 | минута 2 | -------------------------------------------------------------------------------- /mycroft/res/text/ru-ru/minutes.word: -------------------------------------------------------------------------------- 1 | минут 2 | -------------------------------------------------------------------------------- /mycroft/res/text/ru-ru/mycroft.intro.dialog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/mycroft/res/text/ru-ru/mycroft.intro.dialog -------------------------------------------------------------------------------- /mycroft/res/text/ru-ru/no.voc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/mycroft/res/text/ru-ru/no.voc -------------------------------------------------------------------------------- /mycroft/res/text/ru-ru/not connected to the internet.dialog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/mycroft/res/text/ru-ru/not connected to the internet.dialog -------------------------------------------------------------------------------- /mycroft/res/text/ru-ru/not.loaded.dialog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/mycroft/res/text/ru-ru/not.loaded.dialog -------------------------------------------------------------------------------- /mycroft/res/text/ru-ru/or.word: -------------------------------------------------------------------------------- 1 | или 2 | -------------------------------------------------------------------------------- /mycroft/res/text/ru-ru/phonetic_spellings.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/mycroft/res/text/ru-ru/phonetic_spellings.txt -------------------------------------------------------------------------------- /mycroft/res/text/ru-ru/reset to factory defaults.dialog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/mycroft/res/text/ru-ru/reset to factory defaults.dialog -------------------------------------------------------------------------------- /mycroft/res/text/ru-ru/second.word: -------------------------------------------------------------------------------- 1 | секунда 2 | -------------------------------------------------------------------------------- /mycroft/res/text/ru-ru/seconds.word: -------------------------------------------------------------------------------- 1 | секунд 2 | -------------------------------------------------------------------------------- /mycroft/res/text/ru-ru/skill.error.dialog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/mycroft/res/text/ru-ru/skill.error.dialog -------------------------------------------------------------------------------- /mycroft/res/text/ru-ru/skills updated.dialog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/mycroft/res/text/ru-ru/skills updated.dialog -------------------------------------------------------------------------------- /mycroft/res/text/ru-ru/sorry I couldn't install default skills.dialog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/mycroft/res/text/ru-ru/sorry I couldn't install default skills.dialog -------------------------------------------------------------------------------- /mycroft/res/text/ru-ru/ssh disabled.dialog: -------------------------------------------------------------------------------- 1 | Логин по SSH был отключён 2 | -------------------------------------------------------------------------------- /mycroft/res/text/ru-ru/ssh enabled.dialog: -------------------------------------------------------------------------------- 1 | Логин по SSH теперь разрешён 2 | -------------------------------------------------------------------------------- /mycroft/res/text/ru-ru/time.changed.reboot.dialog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/mycroft/res/text/ru-ru/time.changed.reboot.dialog -------------------------------------------------------------------------------- /mycroft/res/text/ru-ru/yes.voc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/mycroft/res/text/ru-ru/yes.voc -------------------------------------------------------------------------------- /mycroft/res/text/sv-fi/cancel.voc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/mycroft/res/text/sv-fi/cancel.voc -------------------------------------------------------------------------------- /mycroft/res/text/sv-fi/checking for updates.dialog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/mycroft/res/text/sv-fi/checking for updates.dialog -------------------------------------------------------------------------------- /mycroft/res/text/sv-fi/i didn't catch that.dialog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/mycroft/res/text/sv-fi/i didn't catch that.dialog -------------------------------------------------------------------------------- /mycroft/res/text/sv-fi/learning disabled.dialog: -------------------------------------------------------------------------------- 1 | Interaktionsdata kommer inte längre att skickas till Mycroft AI. 2 | -------------------------------------------------------------------------------- /mycroft/res/text/sv-fi/learning enabled.dialog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/mycroft/res/text/sv-fi/learning enabled.dialog -------------------------------------------------------------------------------- /mycroft/res/text/sv-fi/message_rebooting.dialog: -------------------------------------------------------------------------------- 1 | STARTAR OM... 2 | -------------------------------------------------------------------------------- /mycroft/res/text/sv-fi/message_synching.clock.dialog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/mycroft/res/text/sv-fi/message_synching.clock.dialog -------------------------------------------------------------------------------- /mycroft/res/text/sv-fi/message_updating.dialog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/mycroft/res/text/sv-fi/message_updating.dialog -------------------------------------------------------------------------------- /mycroft/res/text/sv-fi/mycroft.intro.dialog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/mycroft/res/text/sv-fi/mycroft.intro.dialog -------------------------------------------------------------------------------- /mycroft/res/text/sv-fi/not connected to the internet.dialog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/mycroft/res/text/sv-fi/not connected to the internet.dialog -------------------------------------------------------------------------------- /mycroft/res/text/sv-fi/phonetic_spellings.txt: -------------------------------------------------------------------------------- 1 | jalepeno: hallipeenyo 2 | ai: A.I. 3 | -------------------------------------------------------------------------------- /mycroft/res/text/sv-fi/reset to factory defaults.dialog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/mycroft/res/text/sv-fi/reset to factory defaults.dialog -------------------------------------------------------------------------------- /mycroft/res/text/sv-fi/skills updated.dialog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/mycroft/res/text/sv-fi/skills updated.dialog -------------------------------------------------------------------------------- /mycroft/res/text/sv-fi/sorry I couldn't install default skills.dialog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/mycroft/res/text/sv-fi/sorry I couldn't install default skills.dialog -------------------------------------------------------------------------------- /mycroft/res/text/sv-fi/ssh disabled.dialog: -------------------------------------------------------------------------------- 1 | SSH-inloggning har inaktiverats 2 | -------------------------------------------------------------------------------- /mycroft/res/text/sv-fi/ssh enabled.dialog: -------------------------------------------------------------------------------- 1 | SSH-inloggningar är nu tillåtna 2 | -------------------------------------------------------------------------------- /mycroft/res/text/sv-fi/time.changed.reboot.dialog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/mycroft/res/text/sv-fi/time.changed.reboot.dialog -------------------------------------------------------------------------------- /mycroft/res/text/sv-se/cancel.voc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/mycroft/res/text/sv-se/cancel.voc -------------------------------------------------------------------------------- /mycroft/res/text/sv-se/checking for updates.dialog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/mycroft/res/text/sv-se/checking for updates.dialog -------------------------------------------------------------------------------- /mycroft/res/text/sv-se/day.word: -------------------------------------------------------------------------------- 1 | dag 2 | -------------------------------------------------------------------------------- /mycroft/res/text/sv-se/days.word: -------------------------------------------------------------------------------- 1 | dagar 2 | -------------------------------------------------------------------------------- /mycroft/res/text/sv-se/hour.word: -------------------------------------------------------------------------------- 1 | timme 2 | -------------------------------------------------------------------------------- /mycroft/res/text/sv-se/hours.word: -------------------------------------------------------------------------------- 1 | timmar 2 | -------------------------------------------------------------------------------- /mycroft/res/text/sv-se/i didn't catch that.dialog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/mycroft/res/text/sv-se/i didn't catch that.dialog -------------------------------------------------------------------------------- /mycroft/res/text/sv-se/learning disabled.dialog: -------------------------------------------------------------------------------- 1 | Interaktionsdata kommer inte längre att skickas till Mycroft AI. 2 | -------------------------------------------------------------------------------- /mycroft/res/text/sv-se/learning enabled.dialog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/mycroft/res/text/sv-se/learning enabled.dialog -------------------------------------------------------------------------------- /mycroft/res/text/sv-se/message_rebooting.dialog: -------------------------------------------------------------------------------- 1 | STARTAR OM... 2 | -------------------------------------------------------------------------------- /mycroft/res/text/sv-se/message_synching.clock.dialog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/mycroft/res/text/sv-se/message_synching.clock.dialog -------------------------------------------------------------------------------- /mycroft/res/text/sv-se/message_updating.dialog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/mycroft/res/text/sv-se/message_updating.dialog -------------------------------------------------------------------------------- /mycroft/res/text/sv-se/minute.word: -------------------------------------------------------------------------------- 1 | minut 2 | -------------------------------------------------------------------------------- /mycroft/res/text/sv-se/minutes.word: -------------------------------------------------------------------------------- 1 | minuter 2 | -------------------------------------------------------------------------------- /mycroft/res/text/sv-se/mycroft.intro.dialog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/mycroft/res/text/sv-se/mycroft.intro.dialog -------------------------------------------------------------------------------- /mycroft/res/text/sv-se/no.voc: -------------------------------------------------------------------------------- 1 | nej 2 | nix 3 | nepp 4 | negativt 5 | -------------------------------------------------------------------------------- /mycroft/res/text/sv-se/noise_words.list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/mycroft/res/text/sv-se/noise_words.list -------------------------------------------------------------------------------- /mycroft/res/text/sv-se/not connected to the internet.dialog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/mycroft/res/text/sv-se/not connected to the internet.dialog -------------------------------------------------------------------------------- /mycroft/res/text/sv-se/phonetic_spellings.txt: -------------------------------------------------------------------------------- 1 | jalepeno: hallipeenyo 2 | ai: A.I. 3 | -------------------------------------------------------------------------------- /mycroft/res/text/sv-se/reset to factory defaults.dialog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/mycroft/res/text/sv-se/reset to factory defaults.dialog -------------------------------------------------------------------------------- /mycroft/res/text/sv-se/second.word: -------------------------------------------------------------------------------- 1 | sekund 2 | -------------------------------------------------------------------------------- /mycroft/res/text/sv-se/seconds.word: -------------------------------------------------------------------------------- 1 | sekunder 2 | -------------------------------------------------------------------------------- /mycroft/res/text/sv-se/skills updated.dialog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/mycroft/res/text/sv-se/skills updated.dialog -------------------------------------------------------------------------------- /mycroft/res/text/sv-se/sorry I couldn't install default skills.dialog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/mycroft/res/text/sv-se/sorry I couldn't install default skills.dialog -------------------------------------------------------------------------------- /mycroft/res/text/sv-se/ssh disabled.dialog: -------------------------------------------------------------------------------- 1 | SSH-inloggning har inaktiverats 2 | -------------------------------------------------------------------------------- /mycroft/res/text/sv-se/ssh enabled.dialog: -------------------------------------------------------------------------------- 1 | SSH-inloggningar är nu tillåtna 2 | -------------------------------------------------------------------------------- /mycroft/res/text/sv-se/time.changed.reboot.dialog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/mycroft/res/text/sv-se/time.changed.reboot.dialog -------------------------------------------------------------------------------- /mycroft/res/text/sv-se/yes.voc: -------------------------------------------------------------------------------- 1 | ja 2 | japp 3 | jepp 4 | visst 5 | är du snäll 6 | -------------------------------------------------------------------------------- /mycroft/res/text/tr-tr/day.word: -------------------------------------------------------------------------------- 1 | gün 2 | -------------------------------------------------------------------------------- /mycroft/res/text/tr-tr/days.word: -------------------------------------------------------------------------------- 1 | günler 2 | -------------------------------------------------------------------------------- /mycroft/res/text/tr-tr/hour.word: -------------------------------------------------------------------------------- 1 | saat 2 | -------------------------------------------------------------------------------- /mycroft/res/text/tr-tr/hours.word: -------------------------------------------------------------------------------- 1 | saatler 2 | -------------------------------------------------------------------------------- /mycroft/res/text/tr-tr/minute.word: -------------------------------------------------------------------------------- 1 | dakika 2 | -------------------------------------------------------------------------------- /mycroft/res/text/tr-tr/minutes.word: -------------------------------------------------------------------------------- 1 | dakikalar 2 | -------------------------------------------------------------------------------- /mycroft/res/text/tr-tr/no.voc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/mycroft/res/text/tr-tr/no.voc -------------------------------------------------------------------------------- /mycroft/res/text/tr-tr/second.word: -------------------------------------------------------------------------------- 1 | saniye 2 | -------------------------------------------------------------------------------- /mycroft/res/text/tr-tr/seconds.word: -------------------------------------------------------------------------------- 1 | saniyeler 2 | -------------------------------------------------------------------------------- /mycroft/res/text/tr-tr/yes.voc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/mycroft/res/text/tr-tr/yes.voc -------------------------------------------------------------------------------- /mycroft/res/ui/FeatureRequest.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/mycroft/res/ui/FeatureRequest.qml -------------------------------------------------------------------------------- /mycroft/res/ui/RequestHandler.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/mycroft/res/ui/RequestHandler.qml -------------------------------------------------------------------------------- /mycroft/res/ui/SYSTEM_AnimatedImageFrame.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/mycroft/res/ui/SYSTEM_AnimatedImageFrame.qml -------------------------------------------------------------------------------- /mycroft/res/ui/SYSTEM_HtmlFrame.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/mycroft/res/ui/SYSTEM_HtmlFrame.qml -------------------------------------------------------------------------------- /mycroft/res/ui/SYSTEM_ImageFrame.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/mycroft/res/ui/SYSTEM_ImageFrame.qml -------------------------------------------------------------------------------- /mycroft/res/ui/SYSTEM_TextFrame.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/mycroft/res/ui/SYSTEM_TextFrame.qml -------------------------------------------------------------------------------- /mycroft/res/ui/SYSTEM_UrlFrame.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/mycroft/res/ui/SYSTEM_UrlFrame.qml -------------------------------------------------------------------------------- /mycroft/res/ui/WebViewHtmlFrame.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/mycroft/res/ui/WebViewHtmlFrame.qml -------------------------------------------------------------------------------- /mycroft/res/ui/WebViewUrlFrame.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/mycroft/res/ui/WebViewUrlFrame.qml -------------------------------------------------------------------------------- /mycroft/res/wakeword_rsa: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/mycroft/res/wakeword_rsa -------------------------------------------------------------------------------- /mycroft/session/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/mycroft/session/__init__.py -------------------------------------------------------------------------------- /mycroft/skills/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/mycroft/skills/__init__.py -------------------------------------------------------------------------------- /mycroft/skills/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/mycroft/skills/__main__.py -------------------------------------------------------------------------------- /mycroft/skills/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/mycroft/skills/api.py -------------------------------------------------------------------------------- /mycroft/skills/audioservice.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/mycroft/skills/audioservice.py -------------------------------------------------------------------------------- /mycroft/skills/common_iot_skill.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/mycroft/skills/common_iot_skill.py -------------------------------------------------------------------------------- /mycroft/skills/common_play_skill.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/mycroft/skills/common_play_skill.py -------------------------------------------------------------------------------- /mycroft/skills/common_query_skill.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/mycroft/skills/common_query_skill.py -------------------------------------------------------------------------------- /mycroft/skills/context.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/mycroft/skills/context.py -------------------------------------------------------------------------------- /mycroft/skills/core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/mycroft/skills/core.py -------------------------------------------------------------------------------- /mycroft/skills/event_scheduler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/mycroft/skills/event_scheduler.py -------------------------------------------------------------------------------- /mycroft/skills/fallback_skill.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/mycroft/skills/fallback_skill.py -------------------------------------------------------------------------------- /mycroft/skills/intent_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/mycroft/skills/intent_service.py -------------------------------------------------------------------------------- /mycroft/skills/intent_service_interface.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/mycroft/skills/intent_service_interface.py -------------------------------------------------------------------------------- /mycroft/skills/intent_services/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/mycroft/skills/intent_services/__init__.py -------------------------------------------------------------------------------- /mycroft/skills/intent_services/adapt_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/mycroft/skills/intent_services/adapt_service.py -------------------------------------------------------------------------------- /mycroft/skills/intent_services/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/mycroft/skills/intent_services/base.py -------------------------------------------------------------------------------- /mycroft/skills/intent_services/fallback_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/mycroft/skills/intent_services/fallback_service.py -------------------------------------------------------------------------------- /mycroft/skills/intent_services/padatious_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/mycroft/skills/intent_services/padatious_service.py -------------------------------------------------------------------------------- /mycroft/skills/msm_wrapper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/mycroft/skills/msm_wrapper.py -------------------------------------------------------------------------------- /mycroft/skills/mycroft_skill/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/mycroft/skills/mycroft_skill/__init__.py -------------------------------------------------------------------------------- /mycroft/skills/mycroft_skill/decorators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/mycroft/skills/mycroft_skill/decorators.py -------------------------------------------------------------------------------- /mycroft/skills/mycroft_skill/event_container.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/mycroft/skills/mycroft_skill/event_container.py -------------------------------------------------------------------------------- /mycroft/skills/mycroft_skill/mycroft_skill.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/mycroft/skills/mycroft_skill/mycroft_skill.py -------------------------------------------------------------------------------- /mycroft/skills/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/mycroft/skills/settings.py -------------------------------------------------------------------------------- /mycroft/skills/skill_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/mycroft/skills/skill_data.py -------------------------------------------------------------------------------- /mycroft/skills/skill_loader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/mycroft/skills/skill_loader.py -------------------------------------------------------------------------------- /mycroft/skills/skill_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/mycroft/skills/skill_manager.py -------------------------------------------------------------------------------- /mycroft/skills/skill_updater.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/mycroft/skills/skill_updater.py -------------------------------------------------------------------------------- /mycroft/stt/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/mycroft/stt/__init__.py -------------------------------------------------------------------------------- /mycroft/tts/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/mycroft/tts/__init__.py -------------------------------------------------------------------------------- /mycroft/tts/bing_tts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/mycroft/tts/bing_tts.py -------------------------------------------------------------------------------- /mycroft/tts/cache.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/mycroft/tts/cache.py -------------------------------------------------------------------------------- /mycroft/tts/cache_handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/mycroft/tts/cache_handler.py -------------------------------------------------------------------------------- /mycroft/tts/dummy_tts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/mycroft/tts/dummy_tts.py -------------------------------------------------------------------------------- /mycroft/tts/espeak_tts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/mycroft/tts/espeak_tts.py -------------------------------------------------------------------------------- /mycroft/tts/fa_tts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/mycroft/tts/fa_tts.py -------------------------------------------------------------------------------- /mycroft/tts/festival_tts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/mycroft/tts/festival_tts.py -------------------------------------------------------------------------------- /mycroft/tts/google_tts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/mycroft/tts/google_tts.py -------------------------------------------------------------------------------- /mycroft/tts/ibm_tts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/mycroft/tts/ibm_tts.py -------------------------------------------------------------------------------- /mycroft/tts/mary_tts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/mycroft/tts/mary_tts.py -------------------------------------------------------------------------------- /mycroft/tts/mimic2_tts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/mycroft/tts/mimic2_tts.py -------------------------------------------------------------------------------- /mycroft/tts/mimic_tts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/mycroft/tts/mimic_tts.py -------------------------------------------------------------------------------- /mycroft/tts/mozilla_tts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/mycroft/tts/mozilla_tts.py -------------------------------------------------------------------------------- /mycroft/tts/polly_tts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/mycroft/tts/polly_tts.py -------------------------------------------------------------------------------- /mycroft/tts/remote_tts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/mycroft/tts/remote_tts.py -------------------------------------------------------------------------------- /mycroft/tts/spdsay_tts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/mycroft/tts/spdsay_tts.py -------------------------------------------------------------------------------- /mycroft/tts/tts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/mycroft/tts/tts.py -------------------------------------------------------------------------------- /mycroft/tts/yandex_tts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/mycroft/tts/yandex_tts.py -------------------------------------------------------------------------------- /mycroft/util/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/mycroft/util/__init__.py -------------------------------------------------------------------------------- /mycroft/util/audio_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/mycroft/util/audio_test.py -------------------------------------------------------------------------------- /mycroft/util/audio_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/mycroft/util/audio_utils.py -------------------------------------------------------------------------------- /mycroft/util/combo_lock.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/mycroft/util/combo_lock.py -------------------------------------------------------------------------------- /mycroft/util/download.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/mycroft/util/download.py -------------------------------------------------------------------------------- /mycroft/util/file_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/mycroft/util/file_utils.py -------------------------------------------------------------------------------- /mycroft/util/format.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/mycroft/util/format.py -------------------------------------------------------------------------------- /mycroft/util/json_helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/mycroft/util/json_helper.py -------------------------------------------------------------------------------- /mycroft/util/log.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/mycroft/util/log.py -------------------------------------------------------------------------------- /mycroft/util/monotonic_event.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/mycroft/util/monotonic_event.py -------------------------------------------------------------------------------- /mycroft/util/network_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/mycroft/util/network_utils.py -------------------------------------------------------------------------------- /mycroft/util/parse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/mycroft/util/parse.py -------------------------------------------------------------------------------- /mycroft/util/platform.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/mycroft/util/platform.py -------------------------------------------------------------------------------- /mycroft/util/plugins.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/mycroft/util/plugins.py -------------------------------------------------------------------------------- /mycroft/util/process_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/mycroft/util/process_utils.py -------------------------------------------------------------------------------- /mycroft/util/signal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/mycroft/util/signal.py -------------------------------------------------------------------------------- /mycroft/util/string_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/mycroft/util/string_utils.py -------------------------------------------------------------------------------- /mycroft/util/time.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/mycroft/util/time.py -------------------------------------------------------------------------------- /mycroft/version/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/mycroft/version/__init__.py -------------------------------------------------------------------------------- /pytest.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/pytest.ini -------------------------------------------------------------------------------- /requirements/extra-audiobackend.txt: -------------------------------------------------------------------------------- 1 | python-vlc==1.1.2 2 | -------------------------------------------------------------------------------- /requirements/extra-mark1.txt: -------------------------------------------------------------------------------- 1 | pyalsaaudio==0.8.2 2 | -------------------------------------------------------------------------------- /requirements/extra-stt.txt: -------------------------------------------------------------------------------- 1 | google-api-python-client==1.6.4 2 | -------------------------------------------------------------------------------- /requirements/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/requirements/requirements.txt -------------------------------------------------------------------------------- /requirements/tests.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/requirements/tests.txt -------------------------------------------------------------------------------- /scripts/install-mimic.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/scripts/install-mimic.sh -------------------------------------------------------------------------------- /scripts/log_merger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/scripts/log_merger.py -------------------------------------------------------------------------------- /scripts/my-info.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/scripts/my-info.sh -------------------------------------------------------------------------------- /scripts/mycroft-use.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/scripts/mycroft-use.sh -------------------------------------------------------------------------------- /scripts/pre-commit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/scripts/pre-commit -------------------------------------------------------------------------------- /scripts/prepare-msm.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/scripts/prepare-msm.sh -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/setup.py -------------------------------------------------------------------------------- /start-mycroft.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/start-mycroft.sh -------------------------------------------------------------------------------- /stop-mycroft.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/stop-mycroft.sh -------------------------------------------------------------------------------- /test/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/test/Dockerfile -------------------------------------------------------------------------------- /test/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/integrationtests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/integrationtests/messagebus/messagebus_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/test/integrationtests/messagebus/messagebus_test.py -------------------------------------------------------------------------------- /test/integrationtests/skills/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/integrationtests/skills/colors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/test/integrationtests/skills/colors.py -------------------------------------------------------------------------------- /test/integrationtests/skills/discover_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/test/integrationtests/skills/discover_tests.py -------------------------------------------------------------------------------- /test/integrationtests/skills/message_tester.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/test/integrationtests/skills/message_tester.py -------------------------------------------------------------------------------- /test/integrationtests/skills/rules.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/test/integrationtests/skills/rules.py -------------------------------------------------------------------------------- /test/integrationtests/skills/runner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/test/integrationtests/skills/runner.py -------------------------------------------------------------------------------- /test/integrationtests/skills/skill_tester.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/test/integrationtests/skills/skill_tester.py -------------------------------------------------------------------------------- /test/integrationtests/skills/test_all_skills.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/test/integrationtests/skills/test_all_skills.py -------------------------------------------------------------------------------- /test/integrationtests/voight_kampff/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/test/integrationtests/voight_kampff/README.md -------------------------------------------------------------------------------- /test/integrationtests/voight_kampff/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/test/integrationtests/voight_kampff/__init__.py -------------------------------------------------------------------------------- /test/integrationtests/voight_kampff/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/test/integrationtests/voight_kampff/__main__.py -------------------------------------------------------------------------------- /test/integrationtests/voight_kampff/default.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/test/integrationtests/voight_kampff/default.yml -------------------------------------------------------------------------------- /test/integrationtests/voight_kampff/features/environment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/test/integrationtests/voight_kampff/features/environment.py -------------------------------------------------------------------------------- /test/integrationtests/voight_kampff/features/steps/configuration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/test/integrationtests/voight_kampff/features/steps/configuration.py -------------------------------------------------------------------------------- /test/integrationtests/voight_kampff/features/steps/utterance_responses.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/test/integrationtests/voight_kampff/features/steps/utterance_responses.py -------------------------------------------------------------------------------- /test/integrationtests/voight_kampff/generate_feature.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/test/integrationtests/voight_kampff/generate_feature.py -------------------------------------------------------------------------------- /test/integrationtests/voight_kampff/run_test_suite.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/test/integrationtests/voight_kampff/run_test_suite.sh -------------------------------------------------------------------------------- /test/integrationtests/voight_kampff/test_setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/test/integrationtests/voight_kampff/test_setup.py -------------------------------------------------------------------------------- /test/integrationtests/voight_kampff/tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/test/integrationtests/voight_kampff/tools.py -------------------------------------------------------------------------------- /test/unittests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/unittests/api/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/unittests/api/test_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/test/unittests/api/test_api.py -------------------------------------------------------------------------------- /test/unittests/audio/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/unittests/audio/services/failing/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/test/unittests/audio/services/failing/__init__.py -------------------------------------------------------------------------------- /test/unittests/audio/services/working/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/test/unittests/audio/services/working/__init__.py -------------------------------------------------------------------------------- /test/unittests/audio/test_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/test/unittests/audio/test_service.py -------------------------------------------------------------------------------- /test/unittests/audio/test_simple_backend.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/test/unittests/audio/test_simple_backend.py -------------------------------------------------------------------------------- /test/unittests/audio/test_speech.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/test/unittests/audio/test_speech.py -------------------------------------------------------------------------------- /test/unittests/audio/test_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/test/unittests/audio/test_utils.py -------------------------------------------------------------------------------- /test/unittests/audio/test_vlc_backend.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/test/unittests/audio/test_vlc_backend.py -------------------------------------------------------------------------------- /test/unittests/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/test/unittests/base.py -------------------------------------------------------------------------------- /test/unittests/client/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/unittests/client/data/hey_mycroft.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/test/unittests/client/data/hey_mycroft.wav -------------------------------------------------------------------------------- /test/unittests/client/data/mycroft.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/test/unittests/client/data/mycroft.wav -------------------------------------------------------------------------------- /test/unittests/client/data/mycroft_wakeup.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/test/unittests/client/data/mycroft_wakeup.wav -------------------------------------------------------------------------------- /test/unittests/client/data/record.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/test/unittests/client/data/record.wav -------------------------------------------------------------------------------- /test/unittests/client/data/stop.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/test/unittests/client/data/stop.wav -------------------------------------------------------------------------------- /test/unittests/client/data/weather_mycroft.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/test/unittests/client/data/weather_mycroft.wav -------------------------------------------------------------------------------- /test/unittests/client/test_audio_consumer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/test/unittests/client/test_audio_consumer.py -------------------------------------------------------------------------------- /test/unittests/client/test_data_structures.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/test/unittests/client/test_data_structures.py -------------------------------------------------------------------------------- /test/unittests/client/test_dynamic_energy_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/test/unittests/client/test_dynamic_energy_test.py -------------------------------------------------------------------------------- /test/unittests/client/test_hotword_factory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/test/unittests/client/test_hotword_factory.py -------------------------------------------------------------------------------- /test/unittests/client/test_local_recognizer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/test/unittests/client/test_local_recognizer.py -------------------------------------------------------------------------------- /test/unittests/client/test_noise_tracker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/test/unittests/client/test_noise_tracker.py -------------------------------------------------------------------------------- /test/unittests/configuration/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/test/unittests/configuration/__init__.py -------------------------------------------------------------------------------- /test/unittests/configuration/mycroft.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/test/unittests/configuration/mycroft.conf -------------------------------------------------------------------------------- /test/unittests/configuration/test_configuration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/test/unittests/configuration/test_configuration.py -------------------------------------------------------------------------------- /test/unittests/dialog/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/unittests/dialog/multiple_dialogs/one.dialog: -------------------------------------------------------------------------------- 1 | ONE 2 | -------------------------------------------------------------------------------- /test/unittests/dialog/multiple_dialogs/two.dialog: -------------------------------------------------------------------------------- 1 | TWO 2 | -------------------------------------------------------------------------------- /test/unittests/dialog/mustache_templates/example-context.context.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/test/unittests/dialog/mustache_templates/example-context.context.json -------------------------------------------------------------------------------- /test/unittests/dialog/mustache_templates/example-context.dialog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/test/unittests/dialog/mustache_templates/example-context.dialog -------------------------------------------------------------------------------- /test/unittests/dialog/mustache_templates/example-context.result: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/test/unittests/dialog/mustache_templates/example-context.result -------------------------------------------------------------------------------- /test/unittests/dialog/mustache_templates/example-simple.context.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /test/unittests/dialog/mustache_templates/example-simple.dialog: -------------------------------------------------------------------------------- 1 | Hello there! -------------------------------------------------------------------------------- /test/unittests/dialog/mustache_templates/example-simple.result: -------------------------------------------------------------------------------- 1 | Hello there! -------------------------------------------------------------------------------- /test/unittests/dialog/mustache_templates_comments/example-comments.dialog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/test/unittests/dialog/mustache_templates_comments/example-comments.dialog -------------------------------------------------------------------------------- /test/unittests/dialog/mustache_templates_comments/example-comments.result: -------------------------------------------------------------------------------- 1 | This is a line without comment 2 | -------------------------------------------------------------------------------- /test/unittests/dialog/mustache_templates_multiple/example-multiple-context.context.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Sherlock" 3 | } -------------------------------------------------------------------------------- /test/unittests/dialog/mustache_templates_multiple/example-multiple.context.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /test/unittests/dialog/test_dialog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/test/unittests/dialog/test_dialog.py -------------------------------------------------------------------------------- /test/unittests/enclosure/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/unittests/enclosure/test_gui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/test/unittests/enclosure/test_gui.py -------------------------------------------------------------------------------- /test/unittests/lock/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/unittests/lock/test_lock.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/test/unittests/lock/test_lock.py -------------------------------------------------------------------------------- /test/unittests/messagebus/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/unittests/messagebus/client/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/unittests/messagebus/client/test_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/test/unittests/messagebus/client/test_client.py -------------------------------------------------------------------------------- /test/unittests/mocks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/test/unittests/mocks.py -------------------------------------------------------------------------------- /test/unittests/regex_test/invalid/invalid.rx: -------------------------------------------------------------------------------- 1 | [ -------------------------------------------------------------------------------- /test/unittests/regex_test/invalid/none.rx: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/unittests/regex_test/valid/multiple.rx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/test/unittests/regex_test/valid/multiple.rx -------------------------------------------------------------------------------- /test/unittests/regex_test/valid/single.rx: -------------------------------------------------------------------------------- 1 | (?P.*) -------------------------------------------------------------------------------- /test/unittests/res/text/en-us/test.dialog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/test/unittests/res/text/en-us/test.dialog -------------------------------------------------------------------------------- /test/unittests/res/text/en-us/test.word: -------------------------------------------------------------------------------- 1 | word 2 | -------------------------------------------------------------------------------- /test/unittests/res/text/en-us/test_message.dialog: -------------------------------------------------------------------------------- 1 | <<< MESSAGE >>> 2 | -------------------------------------------------------------------------------- /test/unittests/skills/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/unittests/skills/decorator_test_skill.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/test/unittests/skills/decorator_test_skill.py -------------------------------------------------------------------------------- /test/unittests/skills/empty_dir/.git_keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/unittests/skills/intent_file/vocab/en-us/test.intent: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/unittests/skills/intent_file/vocab/en-us/test_ent.entity: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/unittests/skills/locale/en-us/turn_off2_test.voc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/test/unittests/skills/locale/en-us/turn_off2_test.voc -------------------------------------------------------------------------------- /test/unittests/skills/locale/en-us/turn_off_test.voc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/test/unittests/skills/locale/en-us/turn_off_test.voc -------------------------------------------------------------------------------- /test/unittests/skills/settings/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/test/unittests/skills/settings/settings.json -------------------------------------------------------------------------------- /test/unittests/skills/test_audioservice.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/test/unittests/skills/test_audioservice.py -------------------------------------------------------------------------------- /test/unittests/skills/test_common_play_skill.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/test/unittests/skills/test_common_play_skill.py -------------------------------------------------------------------------------- /test/unittests/skills/test_common_query_skill.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/test/unittests/skills/test_common_query_skill.py -------------------------------------------------------------------------------- /test/unittests/skills/test_context.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/test/unittests/skills/test_context.py -------------------------------------------------------------------------------- /test/unittests/skills/test_event_container.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/test/unittests/skills/test_event_container.py -------------------------------------------------------------------------------- /test/unittests/skills/test_event_scheduler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/test/unittests/skills/test_event_scheduler.py -------------------------------------------------------------------------------- /test/unittests/skills/test_fallback_skill.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/test/unittests/skills/test_fallback_skill.py -------------------------------------------------------------------------------- /test/unittests/skills/test_intent_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/test/unittests/skills/test_intent_service.py -------------------------------------------------------------------------------- /test/unittests/skills/test_intent_service_interface.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/test/unittests/skills/test_intent_service_interface.py -------------------------------------------------------------------------------- /test/unittests/skills/test_mycroft_skill.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/test/unittests/skills/test_mycroft_skill.py -------------------------------------------------------------------------------- /test/unittests/skills/test_mycroft_skill_get_response.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/test/unittests/skills/test_mycroft_skill_get_response.py -------------------------------------------------------------------------------- /test/unittests/skills/test_settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/test/unittests/skills/test_settings.py -------------------------------------------------------------------------------- /test/unittests/skills/test_skill/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/test/unittests/skills/test_skill/__init__.py -------------------------------------------------------------------------------- /test/unittests/skills/test_skill/dialog/en-us/what do you want.dialog: -------------------------------------------------------------------------------- 1 | What do you want 2 | -------------------------------------------------------------------------------- /test/unittests/skills/test_skill_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/test/unittests/skills/test_skill_api.py -------------------------------------------------------------------------------- /test/unittests/skills/test_skill_loader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/test/unittests/skills/test_skill_loader.py -------------------------------------------------------------------------------- /test/unittests/skills/test_skill_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/test/unittests/skills/test_skill_manager.py -------------------------------------------------------------------------------- /test/unittests/skills/test_skill_updater.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/test/unittests/skills/test_skill_updater.py -------------------------------------------------------------------------------- /test/unittests/skills/translate/in-dialog/dialog/en-us/good_things.list: -------------------------------------------------------------------------------- 1 | sunshine 2 | mycroft 3 | licorice 4 | -------------------------------------------------------------------------------- /test/unittests/skills/translate/in-dialog/dialog/en-us/named_things.value: -------------------------------------------------------------------------------- 1 | dot,0 2 | line,1 3 | circle,2 4 | ball,3 5 | -------------------------------------------------------------------------------- /test/unittests/skills/translate/in-dialog/dialog/en-us/test.template: -------------------------------------------------------------------------------- 1 | Oh look it's my favourite {thing} 2 | -------------------------------------------------------------------------------- /test/unittests/skills/translate/in-locale/locale/de-de/good_things.list: -------------------------------------------------------------------------------- 1 | sonne 2 | mycroft 3 | zahne 4 | -------------------------------------------------------------------------------- /test/unittests/skills/translate/in-locale/locale/de-de/named_things.value: -------------------------------------------------------------------------------- 1 | gelb,0 2 | rot,1 3 | blau,2 4 | -------------------------------------------------------------------------------- /test/unittests/skills/translate/in-locale/locale/de-de/test.template: -------------------------------------------------------------------------------- 1 | Aber setzen sie sich herr {thing} 2 | -------------------------------------------------------------------------------- /test/unittests/skills/translate/in-locale/locale/en-us/good_things.list: -------------------------------------------------------------------------------- 1 | sunshine 2 | mycroft 3 | licorice 4 | -------------------------------------------------------------------------------- /test/unittests/skills/translate/in-locale/locale/en-us/named_things.value: -------------------------------------------------------------------------------- 1 | dot,0 2 | line,1 3 | circle,2 4 | ball,3 5 | -------------------------------------------------------------------------------- /test/unittests/skills/translate/in-locale/locale/en-us/not_in_german.list: -------------------------------------------------------------------------------- 1 | not 2 | in 3 | German 4 | -------------------------------------------------------------------------------- /test/unittests/skills/translate/in-locale/locale/en-us/test.template: -------------------------------------------------------------------------------- 1 | Oh look it's my favourite {thing} 2 | -------------------------------------------------------------------------------- /test/unittests/stt/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/unittests/stt/test_stt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/test/unittests/stt/test_stt.py -------------------------------------------------------------------------------- /test/unittests/tts/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/unittests/tts/test_cache.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/test/unittests/tts/test_cache.py -------------------------------------------------------------------------------- /test/unittests/tts/test_espeak_tts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/test/unittests/tts/test_espeak_tts.py -------------------------------------------------------------------------------- /test/unittests/tts/test_google_tts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/test/unittests/tts/test_google_tts.py -------------------------------------------------------------------------------- /test/unittests/tts/test_mimic2_tts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/test/unittests/tts/test_mimic2_tts.py -------------------------------------------------------------------------------- /test/unittests/tts/test_mimic_tts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/test/unittests/tts/test_mimic_tts.py -------------------------------------------------------------------------------- /test/unittests/tts/test_tts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/test/unittests/tts/test_tts.py -------------------------------------------------------------------------------- /test/unittests/util/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/unittests/util/commented.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/test/unittests/util/commented.json -------------------------------------------------------------------------------- /test/unittests/util/muppets.dict: -------------------------------------------------------------------------------- 1 | muppet = miss piggy 2 | fraggle = gobo 3 | -------------------------------------------------------------------------------- /test/unittests/util/plain.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/test/unittests/util/plain.json -------------------------------------------------------------------------------- /test/unittests/util/test_audio_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/test/unittests/util/test_audio_utils.py -------------------------------------------------------------------------------- /test/unittests/util/test_download.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/test/unittests/util/test_download.py -------------------------------------------------------------------------------- /test/unittests/util/test_file_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/test/unittests/util/test_file_utils.py -------------------------------------------------------------------------------- /test/unittests/util/test_format.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/test/unittests/util/test_format.py -------------------------------------------------------------------------------- /test/unittests/util/test_json_helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/test/unittests/util/test_json_helper.py -------------------------------------------------------------------------------- /test/unittests/util/test_log.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/test/unittests/util/test_log.py -------------------------------------------------------------------------------- /test/unittests/util/test_monotonic_event.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/test/unittests/util/test_monotonic_event.py -------------------------------------------------------------------------------- /test/unittests/util/test_network_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/test/unittests/util/test_network_utils.py -------------------------------------------------------------------------------- /test/unittests/util/test_parse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/test/unittests/util/test_parse.py -------------------------------------------------------------------------------- /test/unittests/util/test_platform.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/test/unittests/util/test_platform.py -------------------------------------------------------------------------------- /test/unittests/util/test_plugins.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/test/unittests/util/test_plugins.py -------------------------------------------------------------------------------- /test/unittests/util/test_process_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/test/unittests/util/test_process_utils.py -------------------------------------------------------------------------------- /test/unittests/util/test_signal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/test/unittests/util/test_signal.py -------------------------------------------------------------------------------- /test/unittests/util/test_string_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/test/unittests/util/test_string_utils.py -------------------------------------------------------------------------------- /test/unittests/util/test_time.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/test/unittests/util/test_time.py -------------------------------------------------------------------------------- /test/unittests/util/unstripped_lines.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/test/unittests/util/unstripped_lines.txt -------------------------------------------------------------------------------- /test/unittests/version/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/unittests/version/test_version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/test/unittests/version/test_version.py -------------------------------------------------------------------------------- /test/unittests/vocab_test/none.voc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/unittests/vocab_test/test.voc: -------------------------------------------------------------------------------- 1 | test| -------------------------------------------------------------------------------- /test/unittests/vocab_test/valid/multiple.voc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/test/unittests/vocab_test/valid/multiple.voc -------------------------------------------------------------------------------- /test/unittests/vocab_test/valid/multiplealias.voc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/test/unittests/vocab_test/valid/multiplealias.voc -------------------------------------------------------------------------------- /test/unittests/vocab_test/valid/single.voc: -------------------------------------------------------------------------------- 1 | test -------------------------------------------------------------------------------- /test/unittests/vocab_test/valid/singlealias.voc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/test/unittests/vocab_test/valid/singlealias.voc -------------------------------------------------------------------------------- /test/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/test/util.py -------------------------------------------------------------------------------- /test/wake_word/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/test/wake_word/README.md -------------------------------------------------------------------------------- /test/wake_word/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/test/wake_word/__main__.py -------------------------------------------------------------------------------- /test/wake_word/wake_word_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/test/wake_word/wake_word_test.py -------------------------------------------------------------------------------- /venv-activate.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-core/HEAD/venv-activate.sh --------------------------------------------------------------------------------