-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathPluginConsts.pas
More file actions
33 lines (23 loc) · 775 Bytes
/
Copy pathPluginConsts.pas
File metadata and controls
33 lines (23 loc) · 775 Bytes
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
unit PluginConsts;
interface
const
PLUGIN_TITLE_SHORT = 'TCBox';
PLUGIN_VERSION_TEXT = '0.5';
PLUGIN_HELLO_TITLE_SHORT = PLUGIN_TITLE_SHORT + ' ' + PLUGIN_VERSION_TEXT;
ACESS_KEY_SIGNATURE_STRING = 'TCBox1_';
PLUGIN_ACCESS_KEY_FILENAME = 'key.txt';
PLUGIN_LOG_FILENAME = 'TCBOX.log';
PLUGIN_SETTINGS_FILENAME = 'settings.ini';
PLUGIN_LANGUAGE_CODES_PATH = 'locale\languagecodes.mo';
// minimum filesize to upload with ChunkedUploader
PLUGIN_BIGFILE_SIZE = 100 * 1024 * 1024;
PLUGIN_CHUNK_SIZE = 4 * 1024 * 1024;
resourcestring
PLUGIN_TITLE = 'Total Commander Dropbox plugin';
function getPluginHelloTitle(): string;
implementation
function getPluginHelloTitle(): string;
begin
Result := PLUGIN_TITLE + ' ' + PLUGIN_VERSION_TEXT;
end;
end.