[libgweather] weather: Don't CamelCase user-visible strings
- From: Giovanni Campagna <gcampagna src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [libgweather] weather: Don't CamelCase user-visible strings
- Date: Sun, 20 Aug 2017 13:24:33 +0000 (UTC)
commit 9634dbed6cb9dcdd1a1eca44dfdc870106ef8ea9
Author: Florian Müllner <fmuellner gnome org>
Date: Fri Mar 10 02:03:47 2017 +0100
weather: Don't CamelCase user-visible strings
Some wind directions like "northeast" are currently using CamelCase,
while others don't. Use the correct form consistently.
https://bugzilla.gnome.org/show_bug.cgi?id=779872
libgweather/gweather-weather.c | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
---
diff --git a/libgweather/gweather-weather.c b/libgweather/gweather-weather.c
index 1f550f1..be08c8d 100644
--- a/libgweather/gweather-weather.c
+++ b/libgweather/gweather-weather.c
@@ -126,7 +126,7 @@ static const gchar *wind_direction_str[] = {
static const gchar *wind_direction_caps_str[] = {
N_("Variable"),
- N_("North"), N_("North — NorthEast"), N_("Northeast"), N_("East — NorthEast"),
+ N_("North"), N_("North — Northeast"), N_("Northeast"), N_("East — Northeast"),
N_("East"), N_("East — Southeast"), N_("Southeast"), N_("South — Southeast"),
N_("South"), N_("South — Southwest"), N_("Southwest"), N_("West — Southwest"),
N_("West"), N_("West — Northwest"), N_("Northwest"), N_("North — Northwest")
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]