-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathjson2plist.sh
executable file
·35 lines (29 loc) · 1.02 KB
/
json2plist.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
#!/bin/sh
# Transform select osrm-text-instructions language files from json to plist
git submodule init
git submodule update
cd "./osrm-text-instructions/languages/translations/" || exit 1
for file in ./*; do
if [ "$file" = "./en.json" ]; then
LANGUAGE="Base"
else
LANGUAGE=$(basename $file)
LANGUAGE=${LANGUAGE%.json}
fi
LANGUAGE_DIR="${BUILT_PRODUCTS_DIR:-../../../OSRMTextInstructions/}/${UNLOCALIZED_RESOURCES_FOLDER_PATH:-}/${LANGUAGE}.lproj"
mkdir -p "${LANGUAGE_DIR}"
plutil -convert xml1 "./${file}" -o "${LANGUAGE_DIR}/Instructions.plist"
done
cd "../grammar/" || exit 1
for file in ./*; do
if [ "$file" = "./en.json" ]; then
LANGUAGE="Base"
else
LANGUAGE=$(basename $file)
LANGUAGE=${LANGUAGE%.json}
fi
LANGUAGE_DIR="${BUILT_PRODUCTS_DIR:-../../../OSRMTextInstructions/}/${UNLOCALIZED_RESOURCES_FOLDER_PATH:-}/${LANGUAGE}.lproj"
mkdir -p "${LANGUAGE_DIR}"
plutil -convert xml1 "./${file}" -o "${LANGUAGE_DIR}/Grammar.plist"
done
cd - || exit 1