mirror of
https://github.com/jellyfin/jellyfin-mpv-shim.git
synced 2024-11-23 05:59:43 +00:00
8 lines
273 B
Bash
Executable File
8 lines
273 B
Bash
Executable File
#!/bin/bash
|
|
pygettext3 --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
|
|
|