-
Notifications
You must be signed in to change notification settings - Fork 4
/
resstr.pas
66 lines (61 loc) · 2.81 KB
/
resstr.pas
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
unit resstr;
interface
resourcestring
i18_GiteaStoped = 'Gitea stoped';
i18_GiteaRunig = 'Gitea is runing';
i18_StartGitea = 'Start Gitea';
i18_StopGitea = 'Stop Gitea';
i18_Msg_Err_NoFindBrowser = 'I can not find the browser "%s". Please specify the browser in the settings.';
i18_Msg_Err_RunGitea = 'I can not find a way to Gitea.' + #13 + 'Please specify the path in the settings.';
i18_DlgTitle_Giteapatch = 'Select Gitea binary file';
i18_DlgTitle_BrowsPath = 'Select browser binary file';
i18_Program = 'Program:';
i18_CodeRivis = 'Code revision:';
i18_ForTarget = 'For CPU, OS:';
i18_Widget = 'Widget:';
i18_BuildDate = 'Build date:';
i18_Version = 'version ';
i18_Copyright = 'Copyright: ';
i18_Msg_Err_CantOpenServer = 'Can''t open gitea server from link: "%s"';
i18_Msg_ReRunApp = 'Language settings changed.' + #13 + 'Save parameters and restart the application to apply these parameters?';
i18_Msg_Err_GetVerGitea = 'Error defining version of Gitea!';
i18_Msg_Err_GetGitHubData = 'Error retrieving data from GitHub!';
i18_Msg_Err_MissingFromHosts = 'The "%s" is not in the host file. Add it to the "/etc/hosts" file: "127.0.0.1 %s"';
i18_GetCurrentVersion = 'Get the current version of Gitea...';
i18_CurrentVersion = 'Current version of Gitea: ';
i18_CheckNewVersion = 'Checking for a new version of Gitea...';
i18_NewVersionAvailable = 'New version of Gitea is available: ';
i18_LatesVersion = 'You have the latest version of Gitea.';
i18_Err_DownloadFile = 'Failed to download file.';
i18_DownloadFile = 'Download file...';
i18_UpfradeComplete = 'Download and upgrade complete.';
i18_Err_NotOSIdent = 'The operating system is not specified in the settings.' + #13 + 'Specify your operating system in the settings.';
i18_Err_NoConfirmPass = 'Passwords do not match.' + #13 + 'Please re-enter your password.';
i18_CancelDownload = 'Discard update Gitea?';
const
WBROWSER='chromium-*;'+
'vivaldi-*;'+
'firefox*;'+
'brave*;'+
'epiphany*;'+
'konqueror*;'+
'falkon*;'+
'midori*;'+
'opera-*;'+
'google-chrome*;'+
'arora*;'+
'palemoon*;'+
'seamonkey*;'+
'waterfox*;'+
'yandex*;'+
'beaker*;'+
'netsurf*;'+
'dillo*;'+
'conkeror*;'+
'iridium*;'+
'links*;'+
'lynx*;'+
'elinks*;'+
'w3m*';
implementation
end.