git-creeper 1.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +21 -0
- package/README.md +134 -0
- package/bin/cli.js +174 -0
- package/package.json +51 -0
- package/src/config.js +54 -0
- package/src/i18n.js +51 -0
- package/src/index.js +1235 -0
- package/src/locales/en.js +197 -0
- package/src/locales/tr.js +155 -0
|
@@ -0,0 +1,197 @@
|
|
|
1
|
+
module.exports = {
|
|
2
|
+
// Stats
|
|
3
|
+
stats: {
|
|
4
|
+
title: 'REPOSITORY STATISTICS',
|
|
5
|
+
overview: 'OVERVIEW',
|
|
6
|
+
totalCommits: 'Total Commits',
|
|
7
|
+
repoAge: 'Repository Age',
|
|
8
|
+
commitsPerDay: 'Commits per Day',
|
|
9
|
+
avgMessageLength: 'Avg Message Length',
|
|
10
|
+
contributors: 'CONTRIBUTORS',
|
|
11
|
+
totalContributors: 'Total Contributors',
|
|
12
|
+
mostProductive: 'Most Productive',
|
|
13
|
+
theirCommits: 'Their Commits',
|
|
14
|
+
commitTypes: 'COMMIT TYPES',
|
|
15
|
+
features: 'Features',
|
|
16
|
+
bugFixes: 'Bug Fixes',
|
|
17
|
+
documentation: 'Documentation',
|
|
18
|
+
other: 'Other',
|
|
19
|
+
activityPatterns: 'ACTIVITY PATTERNS',
|
|
20
|
+
mostActiveDay: 'Most Active Day',
|
|
21
|
+
peakHour: 'Peak Hour',
|
|
22
|
+
days: 'days',
|
|
23
|
+
chars: 'chars',
|
|
24
|
+
commits: 'commits'
|
|
25
|
+
},
|
|
26
|
+
|
|
27
|
+
// Timeline
|
|
28
|
+
timeline: {
|
|
29
|
+
title: 'PROJECT TIMELINE',
|
|
30
|
+
last: 'Last',
|
|
31
|
+
hash: 'Hash:',
|
|
32
|
+
author: 'Author:',
|
|
33
|
+
time: 'Time:',
|
|
34
|
+
noCommits: 'No commits found in this time range.'
|
|
35
|
+
},
|
|
36
|
+
|
|
37
|
+
// AI Features
|
|
38
|
+
ai: {
|
|
39
|
+
smartCommitTitle: 'AI-POWERED COMMIT MESSAGE SUGGESTIONS',
|
|
40
|
+
suggestedMessages: 'Suggested commit messages',
|
|
41
|
+
commitTip: 'Tip: Use conventional commits (feat:, fix:, docs:) for better changelog generation',
|
|
42
|
+
noChanges: 'No changes detected. Stage your changes first.',
|
|
43
|
+
|
|
44
|
+
codeReviewTitle: 'AI CODE REVIEW ASSISTANT',
|
|
45
|
+
noStagedChanges: 'No staged changes found. Use "git add" to stage files for review.',
|
|
46
|
+
noIssuesFound: 'No issues found! Code looks good.',
|
|
47
|
+
foundIssues: 'Found potential issues',
|
|
48
|
+
|
|
49
|
+
bugPredictionTitle: 'BUG RISK PREDICTION',
|
|
50
|
+
highRiskFiles: 'High Risk Files (>50% bug fix rate)',
|
|
51
|
+
mediumRiskFiles: 'Medium Risk Files (25-50% bug fix rate)',
|
|
52
|
+
|
|
53
|
+
refactorTitle: 'CODE QUALITY & REFACTORING SUGGESTIONS',
|
|
54
|
+
codeQualityGood: 'Code quality looks good! No major issues detected.',
|
|
55
|
+
refactorSuggestions: 'Refactoring suggestions'
|
|
56
|
+
},
|
|
57
|
+
|
|
58
|
+
// Hotspots
|
|
59
|
+
hotspots: {
|
|
60
|
+
title: 'HOTSPOTS - Most Changed Files',
|
|
61
|
+
top: 'Top',
|
|
62
|
+
rank: 'RANK',
|
|
63
|
+
file: 'FILE',
|
|
64
|
+
changes: 'CHANGES',
|
|
65
|
+
impact: 'IMPACT'
|
|
66
|
+
},
|
|
67
|
+
|
|
68
|
+
// Contributors
|
|
69
|
+
contributors: {
|
|
70
|
+
title: 'CONTRIBUTORS ANALYSIS',
|
|
71
|
+
rank: 'RANK',
|
|
72
|
+
contributor: 'CONTRIBUTOR',
|
|
73
|
+
commits: 'COMMITS',
|
|
74
|
+
share: 'SHARE',
|
|
75
|
+
lastActive: 'LAST ACTIVE'
|
|
76
|
+
},
|
|
77
|
+
|
|
78
|
+
// Changelog
|
|
79
|
+
changelog: {
|
|
80
|
+
title: 'SMART CHANGELOG',
|
|
81
|
+
features: 'Features',
|
|
82
|
+
bugFixes: 'Bug Fixes',
|
|
83
|
+
documentation: 'Documentation',
|
|
84
|
+
otherChanges: 'Other Changes'
|
|
85
|
+
},
|
|
86
|
+
|
|
87
|
+
// Compare
|
|
88
|
+
compare: {
|
|
89
|
+
title: 'COMPARE',
|
|
90
|
+
summary: 'SUMMARY',
|
|
91
|
+
filesChanged: 'Files Changed',
|
|
92
|
+
insertions: 'Insertions',
|
|
93
|
+
deletions: 'Deletions',
|
|
94
|
+
commits: 'Commits',
|
|
95
|
+
contributors: 'CONTRIBUTORS',
|
|
96
|
+
changedFiles: 'CHANGED FILES'
|
|
97
|
+
},
|
|
98
|
+
|
|
99
|
+
// Search
|
|
100
|
+
search: {
|
|
101
|
+
title: 'SEARCH',
|
|
102
|
+
found: 'Found',
|
|
103
|
+
commits: 'commits',
|
|
104
|
+
noResults: 'No commits found matching your search.',
|
|
105
|
+
tip: 'Tip: Use --author "name" or --since "2 weeks ago" to filter results',
|
|
106
|
+
files: 'Files:'
|
|
107
|
+
},
|
|
108
|
+
|
|
109
|
+
// Insights
|
|
110
|
+
insights: {
|
|
111
|
+
title: 'SMART INSIGHTS',
|
|
112
|
+
noCommits: 'No commits in the last',
|
|
113
|
+
projectInactive: 'days. Project might be inactive.',
|
|
114
|
+
activeDev: 'Active development! Commits made today.',
|
|
115
|
+
filesChanged: 'files changed more than 10 times.',
|
|
116
|
+
considerRefactor: 'Consider refactoring.',
|
|
117
|
+
shortMessages: 'of commits have short messages (<10 chars). Use descriptive commit messages.',
|
|
118
|
+
largeCommits: 'large commits (>500 lines) in recent history. Consider breaking into smaller commits.',
|
|
119
|
+
useConventional: 'Consider using conventional commits (feat:, fix:, docs:) for better changelogs.',
|
|
120
|
+
conventionalGood: 'of commits follow conventional format. Great job!',
|
|
121
|
+
allGood: 'Everything looks good! Keep up the great work.'
|
|
122
|
+
},
|
|
123
|
+
|
|
124
|
+
// Export
|
|
125
|
+
export: {
|
|
126
|
+
exporting: 'Exporting data to',
|
|
127
|
+
format: 'format...',
|
|
128
|
+
exported: 'Exported to'
|
|
129
|
+
},
|
|
130
|
+
|
|
131
|
+
// Visualize
|
|
132
|
+
visualize: {
|
|
133
|
+
title: 'VISUALIZATION',
|
|
134
|
+
frequency: 'COMMIT FREQUENCY',
|
|
135
|
+
last30Days: 'Last 30 Days',
|
|
136
|
+
heatmap: 'CONTRIBUTOR ACTIVITY HEATMAP',
|
|
137
|
+
last7Days: 'Last 7 Days',
|
|
138
|
+
trends: 'FILE CHANGE TRENDS',
|
|
139
|
+
top10: 'Top 10 Files',
|
|
140
|
+
tip: 'Try: --type frequency, --type heatmap, or --type trends',
|
|
141
|
+
ago: 'ago'
|
|
142
|
+
},
|
|
143
|
+
|
|
144
|
+
// Help
|
|
145
|
+
help: {
|
|
146
|
+
title: 'GIT STORY',
|
|
147
|
+
subtitle: 'Transform Git History into Meaningful Insights',
|
|
148
|
+
coreCommands: 'CORE COMMANDS:',
|
|
149
|
+
analysisTools: 'ANALYSIS TOOLS:',
|
|
150
|
+
insightsReports: 'INSIGHTS & REPORTS:',
|
|
151
|
+
options: 'OPTIONS:',
|
|
152
|
+
tips: 'TIPS:',
|
|
153
|
+
tip1: 'Use conventional commits (feat:, fix:, docs:) for better results',
|
|
154
|
+
tip2: 'Run "git-creeper insights" regularly for code quality recommendations',
|
|
155
|
+
tip3: 'Export reports for team meetings and stakeholder updates',
|
|
156
|
+
footer: 'Made with ❤️ Görkem for developers | MIT License'
|
|
157
|
+
},
|
|
158
|
+
|
|
159
|
+
// Time
|
|
160
|
+
time: {
|
|
161
|
+
justNow: 'just now',
|
|
162
|
+
year: 'year',
|
|
163
|
+
years: 'years',
|
|
164
|
+
month: 'month',
|
|
165
|
+
months: 'months',
|
|
166
|
+
week: 'week',
|
|
167
|
+
weeks: 'weeks',
|
|
168
|
+
day: 'day',
|
|
169
|
+
days: 'days',
|
|
170
|
+
hour: 'hour',
|
|
171
|
+
hours: 'hours',
|
|
172
|
+
minute: 'minute',
|
|
173
|
+
minutes: 'minutes',
|
|
174
|
+
ago: 'ago'
|
|
175
|
+
},
|
|
176
|
+
|
|
177
|
+
// AI Features
|
|
178
|
+
ai: {
|
|
179
|
+
smartCommitTitle: 'AI-POWERED COMMIT MESSAGE SUGGESTIONS',
|
|
180
|
+
suggestedMessages: 'Suggested commit messages',
|
|
181
|
+
commitTip: 'Tip: Use conventional commits (feat:, fix:, docs:) for better changelog generation',
|
|
182
|
+
noChanges: 'No changes detected. Stage your changes first.',
|
|
183
|
+
|
|
184
|
+
codeReviewTitle: 'AI CODE REVIEW ASSISTANT',
|
|
185
|
+
noStagedChanges: 'No staged changes found. Use "git add" to stage files for review.',
|
|
186
|
+
noIssuesFound: 'No issues found! Code looks good.',
|
|
187
|
+
foundIssues: 'Found potential issues',
|
|
188
|
+
|
|
189
|
+
bugPredictionTitle: 'BUG RISK PREDICTION',
|
|
190
|
+
highRiskFiles: 'High Risk Files (>50% bug fix rate)',
|
|
191
|
+
mediumRiskFiles: 'Medium Risk Files (25-50% bug fix rate)',
|
|
192
|
+
|
|
193
|
+
refactorTitle: 'CODE QUALITY & REFACTORING SUGGESTIONS',
|
|
194
|
+
codeQualityGood: 'Code quality looks good! No major issues detected.',
|
|
195
|
+
refactorSuggestions: 'Refactoring suggestions'
|
|
196
|
+
}
|
|
197
|
+
};
|
|
@@ -0,0 +1,155 @@
|
|
|
1
|
+
module.exports = {
|
|
2
|
+
// Stats
|
|
3
|
+
stats: {
|
|
4
|
+
title: 'DEPO İSTATİSTİKLERİ',
|
|
5
|
+
overview: 'GENEL BAKIŞ',
|
|
6
|
+
totalCommits: 'Toplam Commit',
|
|
7
|
+
repoAge: 'Depo Yaşı',
|
|
8
|
+
commitsPerDay: 'Günlük Commit',
|
|
9
|
+
avgMessageLength: 'Ort. Mesaj Uzunluğu',
|
|
10
|
+
contributors: 'KATKILAYANLAR',
|
|
11
|
+
totalContributors: 'Toplam Katkılayan',
|
|
12
|
+
mostProductive: 'En Üretken',
|
|
13
|
+
theirCommits: 'Commit Sayısı',
|
|
14
|
+
commitTypes: 'COMMIT TİPLERİ',
|
|
15
|
+
features: 'Özellikler',
|
|
16
|
+
bugFixes: 'Hata Düzeltmeleri',
|
|
17
|
+
documentation: 'Dokümantasyon',
|
|
18
|
+
other: 'Diğer',
|
|
19
|
+
activityPatterns: 'AKTİVİTE DESENLERI',
|
|
20
|
+
mostActiveDay: 'En Aktif Gün',
|
|
21
|
+
peakHour: 'Yoğun Saat',
|
|
22
|
+
days: 'gün',
|
|
23
|
+
chars: 'karakter',
|
|
24
|
+
commits: 'commit'
|
|
25
|
+
},
|
|
26
|
+
|
|
27
|
+
// Timeline
|
|
28
|
+
timeline: {
|
|
29
|
+
title: 'PROJE ZAMAN ÇİZELGESİ',
|
|
30
|
+
last: 'Son',
|
|
31
|
+
hash: 'Hash:',
|
|
32
|
+
author: 'Yazar:',
|
|
33
|
+
time: 'Zaman:',
|
|
34
|
+
noCommits: 'Bu zaman aralığında commit bulunamadı.'
|
|
35
|
+
},
|
|
36
|
+
|
|
37
|
+
// Hotspots
|
|
38
|
+
hotspots: {
|
|
39
|
+
title: 'SICAK NOKTALAR - En Çok Değişen Dosyalar',
|
|
40
|
+
top: 'İlk',
|
|
41
|
+
rank: 'SIRA',
|
|
42
|
+
file: 'DOSYA',
|
|
43
|
+
changes: 'DEĞİŞİKLİK',
|
|
44
|
+
impact: 'ETKİ'
|
|
45
|
+
},
|
|
46
|
+
|
|
47
|
+
// Contributors
|
|
48
|
+
contributors: {
|
|
49
|
+
title: 'KATKILAYAN ANALİZİ',
|
|
50
|
+
rank: 'SIRA',
|
|
51
|
+
contributor: 'KATKILAYAN',
|
|
52
|
+
commits: 'COMMIT',
|
|
53
|
+
share: 'PAY',
|
|
54
|
+
lastActive: 'SON AKTİVİTE'
|
|
55
|
+
},
|
|
56
|
+
|
|
57
|
+
// Changelog
|
|
58
|
+
changelog: {
|
|
59
|
+
title: 'AKILLI DEĞİŞİKLİK GÜNLÜĞÜ',
|
|
60
|
+
features: 'Özellikler',
|
|
61
|
+
bugFixes: 'Hata Düzeltmeleri',
|
|
62
|
+
documentation: 'Dokümantasyon',
|
|
63
|
+
otherChanges: 'Diğer Değişiklikler'
|
|
64
|
+
},
|
|
65
|
+
|
|
66
|
+
// Compare
|
|
67
|
+
compare: {
|
|
68
|
+
title: 'KARŞILAŞTIR',
|
|
69
|
+
summary: 'ÖZET',
|
|
70
|
+
filesChanged: 'Değişen Dosya',
|
|
71
|
+
insertions: 'Ekleme',
|
|
72
|
+
deletions: 'Silme',
|
|
73
|
+
commits: 'Commit',
|
|
74
|
+
contributors: 'KATKILAYANLAR',
|
|
75
|
+
changedFiles: 'DEĞİŞEN DOSYALAR'
|
|
76
|
+
},
|
|
77
|
+
|
|
78
|
+
// Search
|
|
79
|
+
search: {
|
|
80
|
+
title: 'ARAMA',
|
|
81
|
+
found: 'Bulundu',
|
|
82
|
+
commits: 'commit',
|
|
83
|
+
noResults: 'Aramanıza uygun commit bulunamadı.',
|
|
84
|
+
tip: 'İpucu: Sonuçları filtrelemek için --author "isim" veya --since "2 hafta önce" kullanın',
|
|
85
|
+
files: 'Dosyalar:'
|
|
86
|
+
},
|
|
87
|
+
|
|
88
|
+
// Insights
|
|
89
|
+
insights: {
|
|
90
|
+
title: 'AKILLI ÖNERİLER',
|
|
91
|
+
noCommits: 'Son',
|
|
92
|
+
projectInactive: 'gündür commit yok. Proje aktif olmayabilir.',
|
|
93
|
+
activeDev: 'Aktif geliştirme! Bugün commit yapıldı.',
|
|
94
|
+
filesChanged: 'dosya 10 kezden fazla değişti.',
|
|
95
|
+
considerRefactor: 'Refactor düşünün.',
|
|
96
|
+
shortMessages: 'commit kısa mesaja sahip (<10 karakter). Açıklayıcı mesajlar kullanın.',
|
|
97
|
+
largeCommits: 'büyük commit (>500 satır) son geçmişte. Daha küçük parçalara bölün.',
|
|
98
|
+
useConventional: 'Daha iyi changelog için conventional commits (feat:, fix:, docs:) kullanın.',
|
|
99
|
+
conventionalGood: 'commit conventional format takip ediyor. Harika iş!',
|
|
100
|
+
allGood: 'Her şey yolunda! Böyle devam edin.'
|
|
101
|
+
},
|
|
102
|
+
|
|
103
|
+
// Export
|
|
104
|
+
export: {
|
|
105
|
+
exporting: 'Veri dışa aktarılıyor:',
|
|
106
|
+
format: 'formatı...',
|
|
107
|
+
exported: 'Dışa aktarıldı:'
|
|
108
|
+
},
|
|
109
|
+
|
|
110
|
+
// Visualize
|
|
111
|
+
visualize: {
|
|
112
|
+
title: 'GÖRSELLEŞTİRME',
|
|
113
|
+
frequency: 'COMMIT SIKLIĞI',
|
|
114
|
+
last30Days: 'Son 30 Gün',
|
|
115
|
+
heatmap: 'KATKILAYAN AKTİVİTE ISISI',
|
|
116
|
+
last7Days: 'Son 7 Gün',
|
|
117
|
+
trends: 'DOSYA DEĞİŞİM TRENDLERİ',
|
|
118
|
+
top10: 'İlk 10 Dosya',
|
|
119
|
+
tip: 'Dene: --type frequency, --type heatmap, veya --type trends',
|
|
120
|
+
ago: 'önce'
|
|
121
|
+
},
|
|
122
|
+
|
|
123
|
+
// Help
|
|
124
|
+
help: {
|
|
125
|
+
title: 'GIT STORY',
|
|
126
|
+
subtitle: 'Git Geçmişini Anlamlı İçgörülere Dönüştür',
|
|
127
|
+
coreCommands: 'TEMEL KOMUTLAR:',
|
|
128
|
+
analysisTools: 'ANALİZ ARAÇLARI:',
|
|
129
|
+
insightsReports: 'İÇGÖRÜLER & RAPORLAR:',
|
|
130
|
+
options: 'SEÇENEKLER:',
|
|
131
|
+
tips: 'İPUÇLARI:',
|
|
132
|
+
tip1: 'Daha iyi sonuçlar için conventional commits (feat:, fix:, docs:) kullanın',
|
|
133
|
+
tip2: 'Kod kalitesi önerileri için düzenli olarak "git-creeper insights" çalıştırın',
|
|
134
|
+
tip3: 'Takım toplantıları ve paydaş güncellemeleri için raporları dışa aktarın',
|
|
135
|
+
footer: 'Geliştiriciler için ❤️ ile yapıldı | MIT Lisansı'
|
|
136
|
+
},
|
|
137
|
+
|
|
138
|
+
// Time
|
|
139
|
+
time: {
|
|
140
|
+
justNow: 'şimdi',
|
|
141
|
+
year: 'yıl',
|
|
142
|
+
years: 'yıl',
|
|
143
|
+
month: 'ay',
|
|
144
|
+
months: 'ay',
|
|
145
|
+
week: 'hafta',
|
|
146
|
+
weeks: 'hafta',
|
|
147
|
+
day: 'gün',
|
|
148
|
+
days: 'gün',
|
|
149
|
+
hour: 'saat',
|
|
150
|
+
hours: 'saat',
|
|
151
|
+
minute: 'dakika',
|
|
152
|
+
minutes: 'dakika',
|
|
153
|
+
ago: 'önce'
|
|
154
|
+
}
|
|
155
|
+
};
|