blob: e14a5d0e761984264912ab552681645d089d2866 (
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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
|
{%mainunit gfx_constants.pas}
rsLanguage = 'Deutsch';
// Buttons
rsOK = 'OK';
rsCancel = 'Abbruch';
rsHelp = 'Hilfe';
rsOpen = 'ffnen';
rsSave = 'Speichern';
rsCreate = 'Erzeugen';
rsChange = 'Wechseln';
rsFind = 'Finden';
rsSearch = 'Suchen';
rsReplace = 'Ersetzen';
rsConfirm = 'Besttigungs';
rsAll = 'Alle';
rsSelect = 'Auswahl';
rsYes = 'Ja';
rsNo = 'Nein';
rsAbort = 'bergehen';
rsRetry = 'Wiederholen';
rsIgnore = 'Ignorieren';
rsClose = 'Schlieáen';
rsInsert = 'Einfgen';
rsEdit = 'Bearbeiten';
rsDelete = 'Lschen';
rsExit = 'Exit';
rsYesToAll = 'Yes to All';
rsNoToAll = 'No to All';
rsCut = 'Cut';
rsCopy = 'Copy';
rsPaste = 'Paste';
// Captions
rsError = 'Fehler';
rsCriticalError = 'Schwerer Fehler';
rsInformation = 'Information';
rsConfirmation = 'Bestätigen';
rsWarning = 'Warnung';
rsMessage = 'Nachricht';
rsAbout = 'About %s';
// Standard file filters
rsAllFiles = 'Alle Dateien';
// CreateDir Dialog
rsCreateDirectory = 'Verzeichnis erstellen';
rsEnterNewDirectory = 'Neuenr Verzeichnisname';
rsCannotCreateDir = 'Verzeichnis kann nicht erzeugt werden';
// Font Dialog
rsSelectAFont = 'Wählen Sie eine Schriftart';
rsName = 'Name';
rsCollection = 'Collection';
rsSize = 'Größe';
rsStyle = 'Stil';
rsItalic = 'Kursiv';
rsBold = 'Fett';
rsUnderScore = 'Unterstrichen';
rsTypeface = 'Typeface';
rsAntiAliasing = 'Anti aliasing';
rsExampleText = 'Beispieltext';
rsCollectionAllFonts = 'All Fonts';
rsCollectionRecentlyUsed = 'Recently Used';
rsCollectionFavourites = 'Favourites';
rsCollectionFixedWidth = 'Fixed Width';
rsCollectionSans = 'Sans';
rsCollectionSerif = 'Serif';
rsCollectionFontAliases = 'Font Aliases';
// Open Dialog
rsOpenAFile = 'Öffnen einer Datei';
rsFileName = 'Dateiname';
rsFileType = 'Dateityp';
rsDrive = 'Laufwerk';
rsFiles = 'Dateien';
rsDirectories = 'Verzeichnisse';
rsShowHidden = 'Show hidden files';
rsFileSelection = 'File Selection';
rsFileModifiedTime = 'Mod. Time';
rsFileAttributes = 'Attributes';
rsFileRights = 'Rights';
rsFileOwner = 'Owner';
rsFileGroup = 'Group';
// Save Dialog
rsSaveAFile = 'Datei speichern';
// Error messages
rsErrListMustBeEmpty = 'Liste müssen leer sein';
rsErrCouldNotOpenDir = 'Could not open the directory <%s>';
rsErrItemOfWrongType = 'Item is not of <%s> type!';
rsErrFailedToCreateDir = 'Failed to create the directory <%s>';
rsErrNotAssigned = '<%s> not assigned';
// Calendar Combo & Dialog
rsShortMon = 'Mon';
rsShortTue = 'Tue';
rsShortWed = 'Wed';
rsShortThu = 'Thu';
rsShortFri = 'Fri';
rsShortSat = 'Sat';
rsShortSun = 'Sun';
rsLongMon = 'Monday';
rsLongTue = 'Tuesday';
rsLongWed = 'Wednesday';
rsLongThu = 'Thursday';
rsLongFri = 'Friday';
rsLongSat = 'Saturday';
rsLongSun = 'Sunday';
|