Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions FirebaseAuthUI/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ import FirebaseFacebookAuthUI
let googleAuthUI = FIRGoogleAuthUI(clientID: kGoogleClientID)
let facebookAuthUI = FIRFacebookAuthUI(appID: kFacebookAppID)

authUI?.signInProviders = [googleAuthUI, facebookAuthUI]
authUI?.providers = [googleAuthUI, facebookAuthUI]
```

```objective-c
Expand Down Expand Up @@ -187,7 +187,7 @@ authUI?.customStringsBundle = NSBundle.mainBundle() // Or any custom bundle.
authUI.customStringsBundle = [NSBundle mainBundle]; // Or any custom bundle.
```

The bundle should include [.strings](Auth/AuthUI/Strings/FirebaseAuthUI.strings)
The bundle should include [.strings](Auth/AuthUI/Strings/en.lproj/FirebaseAuthUI.strings)
files that have the same names as the default files, namely `FirebaseAuthUI`,
`FirebaseGoogleAuthUI`, and `FirebaseFacebookAuthUI`. Each string in these files
should have the same key as its counterpart in the default `.strings` files.
Expand Down