From 46505290016a3d06229a207d99348166534ea511 Mon Sep 17 00:00:00 2001 From: Matt Wilson Date: Mon, 14 Aug 2000 20:59:00 +0000 Subject: i18n --- gnome-map/timezones.c | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) (limited to 'gnome-map/timezones.c') diff --git a/gnome-map/timezones.c b/gnome-map/timezones.c index 28830af5f..7b504ce52 100644 --- a/gnome-map/timezones.c +++ b/gnome-map/timezones.c @@ -1,6 +1,6 @@ /* GNOME canvas based interface to a map using a simple cylindrical proj */ /* */ -/* Copyright (C) 1999 Red Hat, Incorportated */ +/* Copyright (C) 1999, 2000 Red Hat, Incorportated */ /* Original work by Michael Fulbright */ #include @@ -9,9 +9,12 @@ #include #include #include +#include +#include #include "timezones.h" +#define _(string) gettext(string) TZZoneInfo * tzinfo_get_for_location (TimeZoneLocation *loc) @@ -156,7 +159,7 @@ loadTZDB( void ) #endif loc = g_new( TimeZoneLocation, 1); loc->country = g_strdup(tmpstrarr[0]); - loc->zone = g_strdup(tmpstrarr[2]); + loc->zone = g_strdup(_(tmpstrarr[2])); loc->comment = (tmpstrarr[3]) ? g_strdup(tmpstrarr[3]) : NULL; loc->latitude = convertPos(latstr,2); loc->longitude = convertPos(lngstr,3); -- cgit