mirror of
https://github.com/jphong1111/awesome-ios-developer.git
synced 2024-12-22 22:35:28 +07:00
update localization
This commit is contained in:
parent
4f61b9094b
commit
4ebe3c8b7b
22
README.md
22
README.md
@ -63,6 +63,8 @@ Feel free to fork this repository and pull requests!!
|
||||
- [Carthage](#Carthage)
|
||||
- [Swift Package Manager](#Swift-Package-Manager)
|
||||
- [Recommend Library](#Recommend-Library)
|
||||
- [Localization](#Localization)
|
||||
- [Usage](#Localization-Usage)
|
||||
- [GCD](#GCD)
|
||||
- [DispatchQueue](#DispatchQueue)
|
||||
- [DispatchGroup](#DispatchGroup)
|
||||
@ -956,6 +958,26 @@ $ carthage update
|
||||
- Charts - Make Beutiful Charts in your App
|
||||
- etc...
|
||||
|
||||
## Localization
|
||||
|
||||
Localization is the process of making your app support other languages. (Base language is English)
|
||||
|
||||
## Localization Usage
|
||||
|
||||
First, you have to check **Use Base Internationalization**
|
||||
> It might be checked
|
||||
|
||||
<img src = "https://github.com/jphong1111/Useful_Swift/blob/main/Images/Internationalization.png" width="50%" height ="50%" />
|
||||
> English is a base Language
|
||||
|
||||
After you check it, add languages that you want to support in your App
|
||||
|
||||
<img src = "https://github.com/jphong1111/Useful_Swift/blob/main/Images/Internationalization2.png" width="50%" height ="50%" />
|
||||
|
||||
Then, you can check your language file like this!
|
||||
|
||||
<img src = "https://github.com/jphong1111/Useful_Swift/blob/main/Images/Internationalization3.png" width="50%" height ="50%" />
|
||||
|
||||
|
||||
## GCD
|
||||
GCD(Grand Central Dispatch) is a low-level API for managing concurrent operations. It can help you improve your app’s responsiveness by deferring computationally expensive tasks to the background.
|
||||
|
Loading…
Reference in New Issue
Block a user