2021-10-06 22:43:20 +03:00
|
|
|
#!/usr/bin/env bash
|
|
|
|
|
|
|
|
# generate-localizable-strings-file.sh
|
|
|
|
|
|
|
|
echo 'Generating Localizable.strings file...'
|
|
|
|
cd NextcloudTalk
|
2023-09-19 18:49:52 +03:00
|
|
|
genstrings -o en.lproj *.m *.swift ../ShareExtension/*.m ../ShareExtension/*.swift ../NotificationServiceExtension/*.m ../BroadcastUploadExtension/*.swift ../ThirdParty/SlackTextViewController/Source/*.m
|
2023-10-26 18:31:03 +03:00
|
|
|
iconv -f UTF-16 -t UTF-8 en.lproj/Localizable.strings > en.lproj/Localizable-utf8.strings
|
2021-10-06 22:43:20 +03:00
|
|
|
mv en.lproj/Localizable-utf8.strings en.lproj/Localizable.strings
|
|
|
|
echo 'Localizable.strings file generated!'
|
|
|
|
|