diff options
Diffstat (limited to 'src/displayapp/screens/WeatherSymbols.cpp')
| -rw-r--r-- | src/displayapp/screens/WeatherSymbols.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/displayapp/screens/WeatherSymbols.cpp b/src/displayapp/screens/WeatherSymbols.cpp index f7e41547..0a963bc6 100644 --- a/src/displayapp/screens/WeatherSymbols.cpp +++ b/src/displayapp/screens/WeatherSymbols.cpp @@ -63,15 +63,15 @@ const char* Pinetime::Applications::Screens::Symbols::GetCondition(const Pinetim const char* Pinetime::Applications::Screens::Symbols::GetSimpleCondition(const Pinetime::Controllers::SimpleWeatherService::Icons icon) { switch (icon) { case Pinetime::Controllers::SimpleWeatherService::Icons::Sun: - return "Clear"; case Pinetime::Controllers::SimpleWeatherService::Icons::CloudsSun: + return "Clear"; case Pinetime::Controllers::SimpleWeatherService::Icons::Clouds: case Pinetime::Controllers::SimpleWeatherService::Icons::BrokenClouds: - return "Clouds"; + return "Cloudy"; case Pinetime::Controllers::SimpleWeatherService::Icons::CloudShowerHeavy: - return "Rain"; + return "Showers"; case Pinetime::Controllers::SimpleWeatherService::Icons::CloudSunRain: - return "Drizzle"; + return "Rain"; case Pinetime::Controllers::SimpleWeatherService::Icons::Thunderstorm: return "Thunder"; case Pinetime::Controllers::SimpleWeatherService::Icons::Snow: |
