~ubuntu-branches/ubuntu/natty/xfce4-weather-plugin/natty-proposed

« back to all changes in this revision

Viewing changes to panel-plugin/weather-translate.h

  • Committer: Bazaar Package Importer
  • Author(s): Yves-Alexis Perez, Simon Huggins, Yves-Alexis Perez
  • Date: 2007-12-08 19:28:17 UTC
  • mfrom: (0.1.5 upstream)
  • Revision ID: james.westby@ubuntu.com-20071208192817-xjr2u2eshv19ndp5
Tags: 0.6.2-1
[ Simon Huggins ]
* debian/control: Move fake Homepage field to a real one now dpkg
  supports it.
* Add Vcs-* headers to debian/control

[ Yves-Alexis Perez ]
* New upstream release.
* debian/control:
  - updated standard versions to 3.7.3.
  - updated my email to the debian.org one.
* debian/copyright: updated copyrights, authors and license.
* debian/NEWS: remove tab at beginning of lines. 

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*  $Id: weather-translate.h 2366 2007-01-15 19:10:23Z nick $
 
2
 *
 
3
 *  Copyright (c) 2003-2007 Xfce Development Team
 
4
 * 
 
5
 *  This program is free software; you can redistribute it and/or modify
 
6
 *  it under the terms of the GNU General Public License as published by
 
7
 *  the Free Software Foundation; either version 2 of the License, or
 
8
 *  (at your option) any later version.
 
9
 *
 
10
 *  This program is distributed in the hope that it will be useful,
 
11
 *  but WITHOUT ANY WARRANTY; without even the implied warranty of
 
12
 *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
13
 *  GNU Library General Public License for more details.
 
14
 *
 
15
 *  You should have received a copy of the GNU General Public License
 
16
 *  along with this program; if not, write to the Free Software
 
17
 *  Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
 
18
 */
 
19
 
 
20
#ifndef __WEATHER_TRANSLATE_H__
 
21
#define __WEATHER_TRANSLATE_H__
 
22
 
 
23
#include <glib.h>
 
24
#include <gtk/gtk.h>
 
25
 
 
26
G_BEGIN_DECLS
 
27
 
 
28
const gchar *translate_desc (const gchar *);
 
29
 
 
30
const gchar *translate_bard (const gchar *);
 
31
 
 
32
const gchar *translate_risk (const gchar *);
 
33
 
 
34
/* these return a newly alocted string, that should be freed */
 
35
gchar *translate_lsup (const gchar *);
 
36
 
 
37
gchar *translate_day (const gchar *);
 
38
 
 
39
gchar *translate_wind_direction (const gchar *);
 
40
 
 
41
gchar *translate_wind_speed (const gchar *, units);
 
42
 
 
43
gchar *translate_time (const gchar *);
 
44
 
 
45
gchar *translate_visibility (const gchar *, units);
 
46
 
 
47
G_END_DECLS
 
48
 
 
49
#endif