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

« back to all changes in this revision

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