
Security News
Official Go SDK for MCP in Development, Stable Release Expected in August
The official Go SDK for the Model Context Protocol is in development, with a stable, production-ready release expected by August 2025.
git-po-merge
Advanced tools
A git merge driver for repos with translations and i18n, the driver helps resolve .po file conflicts when merging or rebasing gettext catalogs.
Git-po-merge requires msgcat
, a tool included when installing gettext
.
Try:
msgcat --version
If missing and using OSX, gettext is available via homebrew:
brew install gettext
brew link gettext --force
This can be done one of two ways, globally or per-project/directory:
Install:
npm install --global git-po-merge
Add to ~/.gitconfig
:
[core]
attributesfile = ~/.gitattributes
[merge "pofile"]
name = custom merge driver for gettext po files
driver = git-po-merge %A %O %B
Create ~/.gitattributes
:
*.po merge=pofile
*.pot merge=pofile
Install:
npm install git-po-merge --save-dev
Update git config:
git config merge.pofile.driver "$(npm bin)/git-po-merge %A %O %B"
git config merge.pofile.name "custom merge driver for gettext po files"
Add the same .gitattributes
where desired and commit.
Note .gitattributes
is only used after committed.
git-po-merge # or $(npm bin)/git-po-merge
> usage: git-po-merge [-s] our.po base.po their.po
touch messages.po
git check-attr -a messages.po
> messages.po: merge: pofile
git-po-merge messages.po messages.po messages.po
> Resolving po conflict with git-merge-po... done.
git merge [some branch with translation changes that conflict]
> Resolving po conflict with git-merge-po... done.
> Resolving po conflict with git-merge-po... done.
> Auto-merging project/locale/fr/LC_MESSAGES/messages.po
> Auto-merging project/locale/es/LC_MESSAGES/messages.po
Git only calls the driver in the event of a conflict and will always attempt a traditional 3-way merge first.
The git-merge-po driver will restore messages marked obsolete if the message is active in any po being merged. Good practice is to remake messages after any merge or rebase.
node --version # using v0.12
npm install --global .
npm link
npm test
Helpful docs:
Thanks:
FAQs
A git merge driver for Gettext .PO files
We found that git-po-merge demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
The official Go SDK for the Model Context Protocol is in development, with a stable, production-ready release expected by August 2025.
Security News
New research reveals that LLMs often fake understanding, passing benchmarks but failing to apply concepts or stay internally consistent.
Security News
Django has updated its security policies to reject AI-generated vulnerability reports that include fabricated or unverifiable content.