Fix Rankine display

yahoo_weather
Neroth 12 years ago
parent bee81035f4
commit 7118dac0b3
  1. 2
      src/extension.js
  2. 2
      src/weather-settings.js.in

@ -588,7 +588,7 @@ const WeatherMenuButton = new Lang.Class({
else if(this._units == WeatherUnits.KELVIN)
return 'K';
else if(this._units == WeatherUnits.RANKINE)
return 'R';
return '\u00B0\Ra';
else if(this._units == WeatherUnits.REAUMUR)
return '\u00B0\R\u00E9';
else if(this._units == WeatherUnits.ROEMER)

@ -691,7 +691,7 @@ WeatherSetting.prototype =
this.initConfigWidget();
this.addLabel(_("Temperature Unit"));
this.addComboBox(["°C","°F","K","R","°Ré","°Rø","°De","°N"],"units");
this.addComboBox(["°C","°F","K","°Ra","°Ré","°Rø","°De","°N"],"units");
this.addLabel(_("Wind Speed Unit"));
this.addComboBox(["km/h","mph","m/s","kn","ft/s","Beaufort"],"wind_speed_unit");
this.addLabel(_("Pressure Unit"));

Loading…
Cancel
Save