diff --git a/README.md b/README.md index 1de2ed0..ca2633d 100644 --- a/README.md +++ b/README.md @@ -41,6 +41,7 @@ To use Commit Groq, you need to configure your Groq API key. Follow these steps: - Automatic generation of commit messages based on modified code. - Code analysis for improvement suggestions before committing. - Seamless integration with Git workflow in VS Code. +- Ability to translate commit messages into multiple languages. ## Usage @@ -134,15 +135,15 @@ This extension contributes the following settings: - Custom Emojis: It allows you to write down the emojis you want to use in the next template object in the VSCode config.json. ```json - "commitgroq.commitEmojis": { - "feat": "โœจ", - "fix": "๐Ÿ›", - "docs": "๐Ÿ“", - "style": "๐Ÿ’Ž", - "refactor": "โ™ป๏ธ", - "test": "๐Ÿงช", - "chore": "๐Ÿ“ฆ", - "revert": "โช" +"commitgroq.commitEmojis": { +"feat": "โœจ", +"fix": "๐Ÿ›", +"docs": "๐Ÿ“", +"style": "๐Ÿ’Ž", +"refactor": "โ™ป๏ธ", +"test": "๐Ÿงช", +"chore": "๐Ÿ“ฆ", +"revert": "โช" } ``` @@ -158,6 +159,28 @@ This extension contributes the following settings: - Force Commit Without dot at the end: It allows you to enable or disable the commit message without dot at the end. +- Commit Language: It allows you to select the language for the commit message translation. + + + + + + + + + + + + + + + + + + + +
Language
๐Ÿ‡ฌ๐Ÿ‡ง English
๐Ÿ‡จ๐Ÿ‡ณ Mandarin Chinese
๐Ÿ‡ฎ๐Ÿ‡ณ Hindi
๐Ÿ‡ช๐Ÿ‡ธ Spanish
๐Ÿ‡ซ๐Ÿ‡ท French
๐Ÿ‡ฎ๐Ÿ‡น Italian
๐Ÿ‡ธ๐Ÿ‡ฆ Arabic
๐Ÿ‡ง๐Ÿ‡ฉ Bengali
๐Ÿ‡ท๐Ÿ‡บ Russian
๐Ÿ‡ต๐Ÿ‡น Portuguese
๐Ÿ‡ฏ๐Ÿ‡ต Japanese
+ #### Reset API Key 1. `CTRL+SHIFT+P` or `CMD+SHIFT+P` diff --git a/package.json b/package.json index 1e55364..6e0112e 100644 --- a/package.json +++ b/package.json @@ -20,7 +20,8 @@ "ai", "llm", "commits", - "groq" + "groq", + "commit ai" ], "activationEvents": [], "main": "./out/extension.js",