You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Would it be possible for the weather skill to have the language in a configuration file that was not uploaded to GitHub? I am getting conflicts because I changed it to Korean so I could work on Korean, but possibly this value could be in a config file that is in the .gitignore? and default to whatever is in the Mycroft core config file ?
def __init__(self):
super(OWMApi, self).__init__("owm")
<<<<<<< HEAD
self.lang = "ko"
=======
# This is the language code for the interaction between python and the
# OpenWeatherMap API. This value does not need to be localized as data is fetched
# in English from the OWM API and later on translated at the WeatherSkill
# class:
self.lang = "en"
>>>>>>> upstream/master
self.observation = ObservationParser()
self.forecast = ForecastParser()
The text was updated successfully, but these errors were encountered:
The idea was that the OWM language used was fixed so the weather condition was always fetched in English allowing us to use the mycroft translation system for translating it.
This was changed via #52 to by default try to use the language provided by OWM.
Would it be possible for the weather skill to have the language in a configuration file that was not uploaded to GitHub? I am getting conflicts because I changed it to Korean so I could work on Korean, but possibly this value could be in a config file that is in the .gitignore? and default to whatever is in the Mycroft core config file ?
The text was updated successfully, but these errors were encountered: