[gnome-maps] Use C-style comments for translator comments



commit 3d53f77dae0b40938cd8d650448ed83360960d48
Author: Zeeshan Ali (Khattak) <zeeshanak gnome org>
Date:   Sat Sep 7 04:51:43 2013 +0300

    Use C-style comments for translator comments

 src/mapLocation.js  |    4 ++--
 src/userLocation.js |    7 ++++---
 2 files changed, 6 insertions(+), 5 deletions(-)
---
diff --git a/src/mapLocation.js b/src/mapLocation.js
index 8146d42..616006a 100644
--- a/src/mapLocation.js
+++ b/src/mapLocation.js
@@ -112,10 +112,10 @@ const MapLocation = new Lang.Class({
     getAccuracyDescription: function() {
         switch(this.accuracy) {
         case Geocode.LOCATION_ACCURACY_UNKNOWN:
-            // Translators: Accuracy of user location information
+            /* Translators: Accuracy of user location information */
             return _("Unknown");
         case 0:
-            // Translators: Accuracy of user location information
+            /* Translators: Accuracy of user location information */
             return _("Exact");
         default:
             let area =  Math.PI * Math.pow(this.accuracy / 1000, 2);
diff --git a/src/userLocation.js b/src/userLocation.js
index 4f0ca6b..3eddee2 100644
--- a/src/userLocation.js
+++ b/src/userLocation.js
@@ -55,9 +55,10 @@ const UserLocation = new Lang.Class({
             return;
         bubbleActor.set_x_expand(true);
         bubbleActor.set_y_expand(true);
-        // Translators: Showing name of place where user currently is and
-        //              accuracy of this information (which is translated
-        //              separately)
+        /* Translators: Showing name of place where user currently is and
+                        accuracy of this information (which is translated
+                        separately)
+        */
         let text = _("%s\nPosition Accuracy: %s")
                 .format (this.description, this.getAccuracyDescription());
         let textActor = new Clutter.Text({ text: text });


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