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-rdf.c | |
parent | 6dbfa6b0af78227963962a831875c4959180731d (diff) | |
download | gsoc2013-evolution-402218880ebaba874fdbc0f385ed92576d46cb2f.tar.gz 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-rdf.c')
-rw-r--r-- | my-evolution/e-summary-rdf.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/my-evolution/e-summary-rdf.c b/my-evolution/e-summary-rdf.c index 857c0be747..3ab6fe2816 100644 --- a/my-evolution/e-summary-rdf.c +++ b/my-evolution/e-summary-rdf.c @@ -476,7 +476,7 @@ make_connection (RDF *r) d = g_new (ESummaryConnectionData, 1); d->hostname = g_strdup (r->uri); - d->type = g_strdup ("RDF Summary"); + d->type = g_strdup (_("RDF Summary")); return d; } |