~vthompson/ubuntu-weather-app/fix-1357642-2

« back to all changes in this revision

Viewing changes to components/CurrentWeatherDetail.qml

  • Committer: Victor Thompson
  • Date: 2014-08-16 17:38:51 UTC
  • Revision ID: victor.thompson@gmail.com-20140816173851-rh0fee9diku3hvex
Update 'chance' translation to workaround Launchpad issue

Show diffs side-by-side

added added

removed removed

Lines of Context:
98
98
            Components.WeatherDetailComponent {
99
99
                value: (currentWeather.propPrecip !== "") ? currentWeather.propPrecip: currentWeather.pressure
100
100
                measure: (currentWeather.propPrecip !== "") ?  getPrecipLabel(): i18n.tr("Pressure")
101
 
                unit: (currentWeather.propPrecip !== "") ? i18n.tr("% chance") : i18n.tr("mbar")
 
101
                unit: (currentWeather.propPrecip !== "") ? "% " + i18n.tr("chance") : i18n.tr("mbar")
102
102
                anchors.fill: parent
103
103
            }
104
104
        }