blob: 762ae0d58d26d33611ac3c0f13d13598146efb12 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
|
// History Linklist Plus
// Copyright (C) 2010 Thomas Wendel, gureedo
//
// This program is free software; you can redistribute it and/or
// modify it under the terms of the GNU General Public License
// as published by the Free Software Foundation; either version 2
// of the License, or (at your option) any later version.
//
// This program is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
//
// You should have received a copy of the GNU General Public License
// along with this program; if not, write to the Free Software
// Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
#pragma once
#ifndef _LANGUAGE_H
#define _LANGUAGE_H
#define TXT_PLUGINNAME TranslateT("History Linklist")
#define TXT_EMPTYHISTORY TranslateT("History is empty!")
#define TXT_NOLINKINHISTORY TranslateT("There are no links in history!")
#define TXT_ERROR TranslateT("Error")
#define TXT_INCOMING TranslateT("incoming")
#define TXT_OUTGOING TranslateT("outgoing")
#define TXT_FILTER TranslateT("Filter")
#define TXT_NOFILTER TranslateT("no filter")
#define TXT_URLSONLY TranslateT("Web addresses only")
#define TXT_MAILSONLY TranslateT("Mail addresses only")
#define TXT_SEARCH TranslateT("Search")
#define TXT_SEARCHFILTER TranslateT("Search filter")
#define TXT_NOSETTING TranslateT("no settings")
#define TXT_DATE TranslateT("Date")
#endif // _LANGUAGE_H
|