Conversation
|
@jonasw8
"contributor1" = "laobamac - Desenvolvedor";
"contributor2" = "perez987 - Traduções parciais para espanhol e inglês";
"contributor3" = "Anto65 - Tradução parcial para o italiano";
"contributor4" = "lshbluesky - Tradução parcial para o coreano";
"contributor5" = "jonasw8 - Tradução parcial para o brasileiro";
func availableLanguages() -> [String] {
return ["en", "zh-Hans", "zh-Hant", "es", "it", "ko", "pt"] // add pt here
}
func displayName(for language: String) -> String {
switch language {
case "en": return "English"
case "zh-Hans": return "简体中文"
case "zh-Hant": return "繁体中文"
case "es": return "Español"
case "it": return "Italian"
case "ko": return "Korean"
case "pt": return "Brazilian" // add this line
default: return language
}
let contributors = [
"contributor1".localized,
"contributor2".localized,
"contributor3".localized,
"contributor4".localized,
"contributor5".localized, // add this line
]Do the changes and update the PR. Did it work the SimpleLoader for Ventura that I sent to you? |
|
Hey, bro, I just saw the email reminder from Github. I will check these PRs in a few days and add some functions at the same time. I will link GithubAPI to realize that everyone can share their useful Patchsets in next version. Recently, I have a little gastrointestinal cold and still have a fever. I can't check these codes for the time being. Best regards! |
I made all the necessary changes that you mentioned. The Ventura version didn't work, I updated my system to Sequoia 15.6 |
|
Please change this in your Brazilian file: "contributor1" = "laobamac - 开发者";
"contributor2" = "perez987 - 提供英语翻译";
"contributor3" = "Anto65 - Partial Italian translation";
"contributor4" = "lshbluesky - Partial Korean translation";
"contributor5" = "JonasW8 - Brazilian Portuguese";to this (fix the text if it isn't accurate): "contributor1" = "laobamac - Desenvolvedor";
"contributor2" = "perez987 - Traduções parciais para espanhol e inglês";
"contributor3" = "Anto65 - Tradução parcial para o italiano";
"contributor4" = "lshbluesky - Tradução parcial para o coreano";
"contributor5" = "jonasw8 - Tradução parcial para o brasileiro";There is 3 duplicate lines, remove one of each duplicate:
|
The duplicate lines are in accordance with the Localizable.strings you sent me |
|
@jonasw8 |
updated |
No description provided.