1/*
2* Copyright (c) 2017-2018 Carlos Suárez (https://gitlab.com/bitseater)
3*
4* This program is free software; you can redistribute it and/or
5* modify it under the terms of the GNU General Public
6* License as published by the Free Software Foundation; either
7* version 3 of the License, or (at your option) any later version.
8*
9* This program is distributed in the hope that it will be useful,
10* but WITHOUT ANY WARRANTY; without even the implied warranty of
11* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
12* General Public License for more details.
13*
14* You should have received a copy of the GNU General Public
15* License along with this program; If not, see <http://www.gnu.org/licenses/>.
16*
17* Authored by: Carlos Suárez <bitseater@gmail.com>
18*/
19namespace Constants {
20    public const string DATADIR = Config.DATADIR;
21    public const string PKGDATADIR = Config.PKG_DATADIR;
22    public const string GETTEXT_PACKAGE = Config.GETTEXT_PACKAGE;
23    public const string INSTALL_PREFIX = Config.PREFIX;
24    public const string EXEC_NAME = Config.PACKAGE;
25    public const string ICON_NAME = Config.PACKAGE;
26    public const string LOCALE_DIR = Config.LOCALE_DIR;
27    public const string VERSION = Config.VERSION;
28    public const string APP_NAME = "Meteo";
29    public const string APP_ID = "com.gitlab.bitseater.meteo";
30    public const string VERSION_INFO = "Stable";
31    public const string RELEASE = "stable";
32    public const string OWM_API_ADDR = "http://api.openweathermap.org/data/2.5/";
33}
34