Skip to content

Commit

Permalink
fix(i18n): Translate changelog categories
Browse files Browse the repository at this point in the history
  • Loading branch information
annelhote committed Oct 10, 2023
1 parent 654a3d9 commit 171ac0f
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions .github/config/changelog.js
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
module.exports = {
types: [
{ types: ['feat', 'feature'], label: '🎉 Nouvelle fonctionalité' },
{ types: ['fix', 'bugfix'], label: '🐛 Réparation de bug' },
{ types: ['improvements', 'enhancement'], label: '🔨 Amélioration' },
{ types: ['build', 'ci'], label: '🏗️ Déploiement' },
{ types: ['refactor'], label: '🪚 Réamenagement de code' },
{ types: ['perf'], label: '🏎️ Amélioration de performance' },
{ types: ['doc', 'docs'], label: '📚 Changement de documentation' },
{ types: ['feat', 'feature'], label: '🎉 New feature' },
{ types: ['fix', 'bugfix'], label: '🐛 Bug fix' },
{ types: ['improvements', 'enhancement'], label: '🔨 Improvement' },
{ types: ['build', 'ci'], label: '🏗️ Deployment' },
{ types: ['refactor'], label: '🪚 Refactor' },
{ types: ['perf'], label: '🏎️ Performance improvement' },
{ types: ['doc', 'docs'], label: '📚 Documentation' },
{ types: ['test', 'tests'], label: '🔍 Tests' },
{ types: ['style'], label: '💅 Style de code' },
{ types: ['chore'], label: '🧹 Nettoyage' },
{ types: ['other'], label: 'Autres changements' },
{ types: ['style'], label: '💅 Style' },
{ types: ['chore'], label: '🧹 Cleaning' },
{ types: ['other'], label: 'Other' },
],

excludeTypes: [
Expand Down

0 comments on commit 171ac0f

Please sign in to comment.