![Oracle Drags Its Feet in the JavaScript Trademark Dispute](https://cdn.sanity.io/images/cgdhsj6q/production/919c3b22c24f93884c548d60cbb338e819ff2435-1024x1024.webp?w=400&fit=max&auto=format)
Security News
Oracle Drags Its Feet in the JavaScript Trademark Dispute
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
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:
0.1.0
FAQs
A git merge driver for Gettext .PO files
The npm package git-po-merge receives a total of 62 weekly downloads. As such, git-po-merge popularity was classified as not popular.
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
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
Security News
The Linux Foundation is warning open source developers that compliance with global sanctions is mandatory, highlighting legal risks and restrictions on contributions.
Security News
Maven Central now validates Sigstore signatures, making it easier for developers to verify the provenance of Java packages.