mirror of
https://gitlab.com/gabmus/envision.git
synced 2025-04-19 19:14:53 +00:00
15 lines
341 B
Bash
Executable file
15 lines
341 B
Bash
Executable file
#!/bin/bash
|
|
|
|
APPID="org.gabmus.envision"
|
|
|
|
rm po/POTFILES.in po/POTFILES.in.in
|
|
|
|
{
|
|
grep -Fl "gettext(\"" src/**.rs
|
|
# grep -Fl "_(\"" data/resources/ui/**.blp
|
|
echo "data/${APPID}.desktop.in.in"
|
|
echo "data/${APPID}.metainfo.xml.in.in"
|
|
} >> po/POTFILES.in.in
|
|
|
|
sort < po/POTFILES.in.in | uniq > po/POTFILES.in
|
|
rm po/POTFILES.in.in
|