mirror of
https://github.com/jellyfin/jellyfin-mpv-shim.git
synced 2024-11-23 14:09:57 +00:00
8 lines
272 B
Bash
Executable File
8 lines
272 B
Bash
Executable File
#!/bin/bash
|
|
pygettext --default-domain=base -o jellyfin_mpv_shim/messages/base.pot jellyfin_mpv_shim/*.py jellyfin_mpv_shim/**/*.py
|
|
find -iname '*.po' | while read -r file
|
|
do
|
|
msgmerge --update "$file" --backup=none --previous jellyfin_mpv_shim/messages/base.pot
|
|
done
|
|
|