Skip to content

Commit 56c40fe

Browse files
author
Patrice de Saint Steban
committed
⬆️ Update gitmoji.json to the last version
🌐 Add translation for last gitmojis 🌐 Add t-rex icon 🌐 Update translation properties to UTF-8 🌐 Translate project or global config label
1 parent f488809 commit 56c40fe

12 files changed

Lines changed: 51 additions & 16 deletions

File tree

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,10 @@
66

77
- ⬆️ Update versions of dependencies
88
- ✨ Configuration global or per project
9+
- ✨ Customize the set of gitmojis available in the plugin : Gitmoji, Conventional Gitmoji, or a custom source (thanks to @glazrtom)
10+
- ⬆️ Update gitmoji.json to the last version
11+
- 🌐 Add translation for last gitmojis
12+
- 🌐 Add t-rex icon
913

1014
## [2.5.0] - 2025-12-01
1115

src/main/kotlin/com/github/patou/gitmoji/GitMojiConfig.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ import javax.swing.JTextField
2525

2626
class GitMojiConfig(private val project: Project) : SearchableConfigurable {
2727
private val mainPanel: JPanel
28-
private val useProjectSettings = JCheckBox("Use project-specific settings (instead of global)")
28+
private val useProjectSettings = JCheckBox(GitmojiBundle.message("config.useProjectSettings"))
2929
private val useUnicode = JCheckBox(GitmojiBundle.message("config.useUnicode"))
3030
private val displayEmoji =
3131
JCheckBox(GitmojiBundle.message("config.displayEmoji"))

src/main/resources/gitmojis-fr_FR.yaml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -72,3 +72,5 @@ gitmojis:
7272
money-with-wings: Ajouter des parrainages ou des infrastructures liées à l'argent.
7373
thread: Ajouter ou mettre à jour du code lié au multithreading ou à la concurrence.
7474
safety-vest: Ajouter ou mettre à jour du code lié à la validation.
75+
airplane: Améliorer la prise en charge hors ligne.
76+
t-rex: Code qui ajoute la rétrocompatibilité.

src/main/resources/gitmojis-pt_BR.yaml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -72,3 +72,5 @@ gitmojis:
7272
money-with-wings: "Adicionar patrocínios ou estrutura relacionada a dinheiro."
7373
thread: "Adicionar ou atualizar código relacionado a multithreading ou concorrência."
7474
safety-vest: "Adicionar ou atualizar código relacionado a validações."
75+
airplane: "Melhorar o suporte offline."
76+
t-rex: "Código que adiciona compatibilidade retroativa."

src/main/resources/gitmojis-ru_RU.yaml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -72,3 +72,5 @@ gitmojis:
7272
money-with-wings: Добавление спонсорства или инфраструктуры, связанной с финансами.
7373
thread: Добавление или обновление кода, связанного с многопоточностью или параллелизмом.
7474
safety-vest: Добавление или обновление кода, связанного с валидацией.
75+
airplane: Улучшить поддержку офлайн.
76+
t-rex: Код, который добавляет обратную совместимость.

src/main/resources/gitmojis-zh_CN.yaml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -72,3 +72,5 @@ gitmojis:
7272
money-with-wings: 添加赞助或金钱相关的基础设施
7373
thread: 添加或更新与多线程或并发相关的代码
7474
safety-vest: 添加或更新与验证相关的代码
75+
airplane: 改善离线支持
76+
t-rex: 添加向后兼容性的代码

src/main/resources/gitmojis.json

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -583,6 +583,22 @@
583583
"description": "Add or update code related to validation.",
584584
"name": "safety-vest",
585585
"semver": null
586+
},
587+
{
588+
"emoji": "✈️",
589+
"entity": "✈",
590+
"code": ":airplane:",
591+
"description": "Improve offline support.",
592+
"name": "airplane",
593+
"semver": null
594+
},
595+
{
596+
"emoji": "🦖",
597+
"entity": "✈",
598+
"code": ":t-rex:",
599+
"description": "Code that adds backwards compatibility.",
600+
"name": "t-rex",
601+
"semver": null
586602
}
587603
]
588604
}

src/main/resources/gitmojis.yaml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -72,3 +72,5 @@ gitmojis:
7272
money-with-wings: Add sponsorships or money related infrastructure.
7373
thread: Add or update code related to multithreading or concurrency.
7474
safety-vest: Add or update code related to validation.
75+
airplane: Improve offline support.
76+
t-rex: Code that adds backwards compatibility.
701 Bytes
Loading

src/main/resources/messages/GitmojiBundle.properties

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
projectName=Gitmoji Plus: Commit Button
2+
config.useProjectSettings=Use project-specific settings (instead of global)
23
config.useUnicode=Use unicode emoji instead of text version (:code:)
34
config.displayEmoji=Display emoji instead of icon in list (Bug in IntelliJ Windows or emoji in black and white)
45
config.insertInCursorPosition=Insert the emoji in the cursor location

0 commit comments

Comments
 (0)