-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathWP.GitHub.Constants.pas
45 lines (37 loc) · 1.31 KB
/
WP.GitHub.Constants.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
{ ***************************************************}
{ Auhtor: Ali Dehbansiahkarbon([email protected]) }
{ GitHub: https://github.com/AliDehbansiahkarbon }
{ ***************************************************}
unit WP.GitHub.Constants;
interface
const
cPluginID = 'WP.GitHubTrendingPlugin';
cPascal = 'Pascal';
cC = 'C/C++';
cSQL = 'SQL';
cDaily = 'Daily';
cWeekly = 'Weekly';
cMonthly = 'Monthly';
cYearly = 'Yearly';
cPanelPrefix = 'panel_';
cDateLabelPrefix = 'lbl_Date_';
cDescriptionLabelPrefix = 'lbl_Description_';
cStarsPrefix = 'Img_Start_';
cStarCountPrefix = 'lbl_StarCount_';
cForkPrefix = 'Img_Fork_';
cAvatarPrefix = 'Img_Avatar_';
cForkCountPrefix = 'lbl_ForkCount_';
cIssuePrefix = 'Img_Issue_';
cIssueCountPrefix = 'lbl_IssueCount_';
cLinkLablePrefix = 'LinkLabel_RepositoryLink_';
cFavoritePrefix = 'Img_Favorite_';
cNoDescription = 'No description, website, or topics provided.';
cFavoriteIsEmpty = 'Favorite list is empty.';
cGitHubURL = 'https://github.com';
cURL = 'https://api.github.com/search/repositories?q=language:%s+created:%s&sort=stars&order=desc&per_page=101&page=1';
cBaseKey = '\Software\GithubTrendingsPlugin';
cSettingsPath = '\GithubTrendingsSettings';
resourcestring
cPluginName = 'GitHub Trending Repositories';
implementation
end.