~fginther/ubuntu-weather-app/cmake-plus-weather-channel-2

« back to all changes in this revision

Viewing changes to components/CurrentWeather.qml

  • Committer: Martin Borho
  • Date: 2014-01-10 19:01:41 UTC
  • Revision ID: martin@borho.net-20140110190141-66b6n20uphk5uwiw
wording changed to 'Chance of Rain'

Show diffs side-by-side

added added

removed removed

Lines of Context:
190
190
 
191
191
                            Components.WeatherDetailComponent {
192
192
                                value: (currentWeather.propPrecip !== "") ? currentWeather.propPrecip: currentWeather.pressure
193
 
                                measure: (currentWeather.propPrecip !== "") ? i18n.tr("Probability of Precipitation") : i18n.tr("Pressure")
 
193
                                measure: (currentWeather.propPrecip !== "") ? i18n.tr("Chance of Rain") : i18n.tr("Pressure")
194
194
                                unit: (currentWeather.propPrecip !== "") ? i18n.tr("Percent") : i18n.tr("mbar")
195
195
                                anchors.fill: parent
196
196
                            }