mirror of
https://github.com/Ultimaker/Cura.git
synced 2025-07-25 15:44:04 -06:00
12 lines
415 B
Bash
Executable file
12 lines
415 B
Bash
Executable file
#!/bin/bash
|
|
#
|
|
# Use xgettext to extract all strings from a set of python files.
|
|
# Argument 1 is the directory to search for python files, argument 2
|
|
# is the destination file.
|
|
#
|
|
# This script will extract strings marked using i18n or i18nc methods.
|
|
# See UM/i18n.py for the relevant methods.
|
|
#
|
|
dir=$1
|
|
dest=$2
|
|
xgettext --from-code=UTF-8 --language=python -ki18n:1 -ki18nc:1c,2 -o $dest $(find -L "$dir" -name \*.py)
|