[gnome-maps] MapLocation: Make two forgotten strings for translation



commit e83e1c12c506756dc405c1bff8619dc745049f64
Author: Zeeshan Ali (Khattak) <zeeshanak gnome org>
Date:   Wed Sep 4 17:16:36 2013 +0300

    MapLocation: Make two forgotten strings for translation
    
    These strings were not marked for translation by accident.
    
    https://bugzilla.gnome.org/show_bug.cgi?id=707437

 src/mapLocation.js |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)
---
diff --git a/src/mapLocation.js b/src/mapLocation.js
index f4b9eee..1140eb7 100644
--- a/src/mapLocation.js
+++ b/src/mapLocation.js
@@ -112,9 +112,9 @@ const MapLocation = new Lang.Class({
     getAccuracyDescription: function() {
         switch(this.accuracy) {
         case Geocode.LOCATION_ACCURACY_UNKNOWN:
-            return "Unknown";
+            return _("Unknown");
         case 0:
-            return "Exact";
+            return _("Exact");
         default:
             let area =  Math.PI * Math.pow(this.accuracy / 1000, 2);
             area = Math.floor(area);


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]