Welcome to mirror list, hosted at ThFree Co, Russian Federation.

common_rsrcstr.h « common - github.com/windirstat/windirstat.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: dba785d8265b7c78e08fae62f24a1b2978273cdc (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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
// common_rsrcstr.h
//
// WinDirStat - Directory Statistics
// Copyright (C) 2003-2005 Bernhard Seifert
// Copyright (C) 2004-2006, 2008 Oliver Schneider (assarbad.net)
//
// 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., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
//
// Author(s): - bseifert -> http://windirstat.info/contact/bernhard/
//            - assarbad -> http://windirstat.info/contact/oliver/
//

#ifndef __WDS_COMMON_RSRCSTR_H__
#define __WDS_COMMON_RSRCSTR_H__

// This is a unicode encoded string with the names of the translators.
// Note that each language appears with its native name, followed by the
// 3-letter ISO code in brackets and the the translator(s).
// The languages are ordered by the Windows language identifier!
#define IDSS_TRANSLATORS \
        L"--- \x010Ce\x0161tina (cs) ---\n\n'TomR'\n(mailto:tomr#horses-online.cz)\n\n\n" \
        L"--- Deutsch (de-DE) ---\n\nWDS team\n\n\n" \
        L"--- English (en-US) ---\n\nWDS team\n\n\n" \
        L"--- Espa\x00F1ol (es) ---\n\nSergio Omar Maurelli\n(mailto:sergiomaurelli#hotmail.com)\n\n\n" \
        L"--- Suomi (fi) ---\n\nMarkus Hietaranta\n(mailto:markus.hietaranta#gmail.com)\n\n\n" \
        L"--- Fran\x00E7ais (fr) ---\n\nPascal Delrot\n(mailto:tigroo#users.sourceforge.net)\n'UltraSam'\n(mailto:sam.fd#wanadoo.fr)\n\n\n" \
        L"--- Magyar (hu) ---\n\n'Leonard Nimoy'\n(mailto:sorge#freemail.hu)\n\n\n" \
        L"--- Italiano (it) ---\n\nMaria Antonietta Ricagno\n(mailto:ricagno#antotranslation.com\nhttp://www.antotranslation.com)\n\n\n" \
        L"--- Nederlands (nl) ---\n\nGerben Wieringa\n(mailto:gerbenwieringa#gmail.com)\n\n\n" \
        L"--- Polski (pl) ---\n\nDariusz Ma\x0142achowski\n(mailto:d_malachowski#pf.pl)\n\n\n" \
        L"--- Portugu\x00EAs do Brasil (pt-BR) ---\n\nName: Eliezer Riani de Andrade\n(mailto:eliezer#rilaser.com.br)\n\n\n" \
        L"--- \x0420\x0443\x0441\x0441\x043A\x0438\x0439/Russkij (ru) ---\n\nSergiy '\x041F\x043E\x043B\x0451\x0442' Polyetayev\n(mailto:s_polyetayev#hotmail.com)\n\n\n" \
        L"--- Eesti (et) ---\n\n'Logard'\n\n\n" \

/*
0405 - Czech
0407 - German
0409 - English (default)
040a - Spanish
040b - Finnish
040c - French
040e - Hungarian
0410 - Italian
0413 - Dutch
0415 - Polish
0416 - Portuguese (Brazil)
0419 - Russian
0425 - Estonian
*/

// Version of resource DLL
#define IDSS_RESOURCEDLL        "Resource Version 4"
// Version information in feedback always appears in English
#define IDSS_FROMsPLATFORMs     "From: %1!s!. Platform: %2!s!.\r\n\r\n"
#define IDSS_SEV_CRITICAL       "Critical Bug"
#define IDSS_SEV_GRAVE          "Serious Bug"
#define IDSS_SEV_NORMAL         "Bug"
#define IDSS_SEV_WISH           "Wish"
#define IDSS_SEV_FEEDBACK       "Feedback"

#endif // __WDS_COMMON_RSRCSTR_H__