mirror of
https://github.com/passepartoutvpn/passepartout-apple.git
synced 2025-02-02 05:52:18 +00:00
db6f7bdf28
- Add script to import localized metadata - Update app name, subtitle, keywords - Update App Store description - Replace "OpenVPN" with "VPN" - Add .conf file extension (WireGuard) - Drop PIA (404) - Drop trailing notices - Update README snapshots (Mac versions unused) - Update App Store screenshots - Revert to legacy launch screen (SwiftUI method stretches)
17 lines
404 B
Bash
Executable File
17 lines
404 B
Bash
Executable File
#!/bin/sh
|
|
FILE="$1"
|
|
SRC="$2/$FILE"
|
|
DST="$3"
|
|
|
|
cp $SRC/de.txt "$DST/de-DE/$FILE"
|
|
cp $SRC/el.txt "$DST/el/$FILE"
|
|
cp $SRC/en.txt "$DST/en-US/$FILE"
|
|
cp $SRC/es.txt "$DST/es-MX/$FILE"
|
|
cp $SRC/fr.txt "$DST/fr-FR/$FILE"
|
|
cp $SRC/it.txt "$DST/it/$FILE"
|
|
cp $SRC/nl.txt "$DST/nl-NL/$FILE"
|
|
cp $SRC/pl.txt "$DST/pl/$FILE"
|
|
cp $SRC/pt.txt "$DST/pt-BR/$FILE"
|
|
cp $SRC/ru.txt "$DST/ru/$FILE"
|
|
cp $SRC/sv.txt "$DST/sv/$FILE"
|