12 lines
316 B
Bash
Executable file
12 lines
316 B
Bash
Executable file
#!/bin/sh
|
|
|
|
# SPDX-FileCopyrightText: Copyright 2025 Eden Emulator Project
|
|
# SPDX-License-Identifier: GPL-3.0-or-later
|
|
|
|
SRC=en_US
|
|
TARGET=en_US
|
|
|
|
# requires fd
|
|
SOURCES=`fd . src/yuzu src/qt_common -tf -e ui -e cpp -e h -e plist`
|
|
|
|
lupdate -source-language $SRC -target-language $TARGET $SOURCES -ts dist/languages/en.ts
|