-
Notifications
You must be signed in to change notification settings - Fork 9
added pt-BR language #11
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
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.