diff options
author | Chyla Zbigniew <chyla@src.gnome.org> | 2001-08-20 04:22:35 +0800 |
---|---|---|
committer | Chyla Zbigniew <chyla@src.gnome.org> | 2001-08-20 04:22:35 +0800 |
commit | 402218880ebaba874fdbc0f385ed92576d46cb2f (patch) | |
tree | e3df8635c91a2331d774dc9e328cc90098a09111 /my-evolution/e-summary-weather.c | |
parent | 6dbfa6b0af78227963962a831875c4959180731d (diff) | |
download | gsoc2013-evolution-402218880ebaba874fdbc0f385ed92576d46cb2f.tar gsoc2013-evolution-402218880ebaba874fdbc0f385ed92576d46cb2f.tar.gz gsoc2013-evolution-402218880ebaba874fdbc0f385ed92576d46cb2f.tar.bz2 gsoc2013-evolution-402218880ebaba874fdbc0f385ed92576d46cb2f.tar.lz gsoc2013-evolution-402218880ebaba874fdbc0f385ed92576d46cb2f.tar.xz gsoc2013-evolution-402218880ebaba874fdbc0f385ed92576d46cb2f.tar.zst gsoc2013-evolution-402218880ebaba874fdbc0f385ed92576d46cb2f.zip |
Marked string for translation (connection type).
* my-evolution/e-summary-rdf.c (make_connection):
Marked string for translation (connection type).
* my-evolution/e-summary-weather.c
(make_url): Split into two functions: make_url and make_anchor.
(weather_make_html): s/make_url/make_anchor/
(make_connection): Marked connection type string for franslation,
assign the real URI to ->hostname (using make_url), not location code.
svn path=/trunk/; revision=12226
Diffstat (limited to 'my-evolution/e-summary-weather.c')
-rw-r--r-- | my-evolution/e-summary-weather.c | 25 |
1 files changed, 18 insertions, 7 deletions
diff --git a/my-evolution/e-summary-weather.c b/my-evolution/e-summary-weather.c index 53cd64d43d..cd349d8710 100644 --- a/my-evolution/e-summary-weather.c +++ b/my-evolution/e-summary-weather.c @@ -75,10 +75,21 @@ e_summary_weather_get_html (ESummary *summary) } static char * -make_url (const char *name, - const char *code) +make_url (const char *code) { - return g_strdup_printf ("<a href=\"http://weather.noaa.gov/cgi-bin/mgetmetar.pl?cccc=%s\">%s</a>", code, name); + return g_strdup_printf ("http://weather.noaa.gov/cgi-bin/mgetmetar.pl?cccc=%s", code); +} + +static char * +make_anchor (const char *name, const char *code) +{ + char *url, *anchor; + + url = make_url (code); + anchor = g_strdup_printf ("<a href=\"%s\">%s</a>", url, name); + g_free (url); + + return anchor; } static void @@ -95,9 +106,9 @@ weather_make_html (Weather *w) "src=\"%s\"> <b>", icon_name); location = g_hash_table_lookup (locations_hash, w->location); if (location == NULL) { - url = make_url (w->location, w->location); + url = make_anchor (w->location, w->location); } else { - url = make_url (location->name, w->location); + url = make_anchor (location->name, w->location); } g_string_append (string, url); @@ -497,8 +508,8 @@ make_connection (Weather *w) ESummaryConnectionData *data; data = g_new (ESummaryConnectionData, 1); - data->hostname = g_strdup (w->location); - data->type = g_strdup ("Weather"); + data->hostname = make_url (w->location); + data->type = g_strdup (_("Weather")); return data; } |