-
-
Notifications
You must be signed in to change notification settings - Fork 109
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Make more things translatble, thanks nautilusx
- Loading branch information
1 parent
3155296
commit f1e56d2
Showing
6 changed files
with
11 additions
and
11 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -129,7 +129,7 @@ struct WelcomeLogIn: View { | |
//for ios >= 15.0 | ||
//.listRowSeparator(.hidden) | ||
|
||
TextField("[email protected]", text: Binding( | ||
TextField(NSLocalizedString("[email protected]", comment: "placeholder when adding account"), text: Binding( | ||
get: { self.jid }, | ||
set: { string in self.jid = string.lowercased().replacingOccurrences(of: " ", with: "") }) | ||
) | ||
|
@@ -138,7 +138,7 @@ struct WelcomeLogIn: View { | |
.autocorrectionDisabled() | ||
.keyboardType(.emailAddress) | ||
|
||
SecureField("Password", text: $password) | ||
SecureField(NSLocalizedString("Password", comment: "placeholder when adding account"), text: $password) | ||
|
||
HStack() { | ||
Button(action: { | ||
|