From e80c28a5307e9171442a60bea914327d9d987615 Mon Sep 17 00:00:00 2001 From: "Zeeshan Ali (Khattak)" Date: Mon, 17 Feb 2014 12:02:54 +0000 Subject: [PATCH] location: Mark 2 user-visible strings for translation https://bugzilla.gnome.org/show_bug.cgi?id=723684 --- js/ui/status/location.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/js/ui/status/location.js b/js/ui/status/location.js index 07fa611ed..9f19cd9bd 100644 --- a/js/ui/status/location.js +++ b/js/ui/status/location.js @@ -190,10 +190,10 @@ const Indicator = new Lang.Class({ if (this._availableAccuracyLevel < AccuracyLevel.EXACT) { if (maxAccuracyLevel == 0) { this._item.status.text = _("Off"); - this._onoffAction.label.text = "Turn On"; + this._onOffAction.label.text = _("Turn On"); } else { this._item.status.text = _("On"); - this._onoffAction.label.text = "Turn Off"; + this._onOffAction.label.text = _("Turn Off"); } } else { if (maxAccuracyLevel == 0) {