update useful localization

This commit is contained in:
Jungpyo Hong 2021-06-11 14:26:13 -05:00 committed by GitHub
parent 5393487747
commit bd5be0eaaa
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -65,6 +65,7 @@ Feel free to fork this repository and pull requests!!
- [Recommend Library](#Recommend-Library)
- [Localization](#Localization)
- [Usage](#Localization-Usage)
- [Useful for Localization](#Useful-for-Localization)
- [GCD](#GCD)
- [DispatchQueue](#DispatchQueue)
- [DispatchGroup](#DispatchGroup)
@ -1037,8 +1038,14 @@ Simple example below
<img src = "https://github.com/jphong1111/Useful_Swift/blob/main/Images/Internationalization8.png" width="50%" height ="50%" />
<img src = "https://github.com/jphong1111/Useful_Swift/blob/main/Images/Internationalization9.png" width="50%" height ="50%" />
**You are GOOD TO GO** 👏👏👏
## Useful for Localization
- [localazy](https://localazy.com/) localization tool for iOS and macOS apps. Supporting .strings, .stringsdict, .plist and XLIFF files.
- [locastudio](https://www.cunningo.com/locastudio/index.html) Analyze, review, and edit your app translations.
## GCD
GCD(Grand Central Dispatch) is a low-level API for managing concurrent operations. It can help you improve your apps responsiveness by deferring computationally expensive tasks to the background.