[gnome-weather] fixed Date format in C locale



commit 7007a992c7c859ddc5f80667fbe0108e7965a033
Author: Aliya Rahmani <aliyarahmani786 gmail com>
Date:   Mon Nov 30 12:31:28 2020 +0000

    fixed Date format in C locale

 src/app/dailyForecast.js | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
---
diff --git a/src/app/dailyForecast.js b/src/app/dailyForecast.js
index 6b8cbd4..a6dc0b4 100644
--- a/src/app/dailyForecast.js
+++ b/src/app/dailyForecast.js
@@ -177,7 +177,7 @@ var DailyForecastFrame = GObject.registerClass(class DailyForecastFrame extends
         dayEntry.nameLabel.label = day.format(nameFormat);
 
         /* Translators: this is the time format for day and month name according to the current locale */
-        let dateFormat = _('%e %b');
+        let dateFormat = _('%b %e ');
         dayEntry.dateLabel.label = day.format(dateFormat);
 
         dayEntry.image.iconName = dayInfo.get_icon_name() + '-small';


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