-
Notifications
You must be signed in to change notification settings - Fork 2
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
NEWS-32 Dodanie logowania i rejestracji firebasowej #28
Changes from 2 commits
444f686
62bd748
a7edfae
17457a4
648611d
691cfc8
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
49215d7737e9d4635d0039c9528c91cb |
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -22,22 +22,41 @@ class MessageLookup extends MessageLookupByLibrary { | |
final messages = _notInlinedMessages(_notInlinedMessages); | ||
static _notInlinedMessages(_) => <String, Function> { | ||
"aboutApp" : MessageLookupByLibrary.simpleMessage("About"), | ||
"apiConnectionException" : MessageLookupByLibrary.simpleMessage("No internet connection"), | ||
"apiInvalidUrlException" : MessageLookupByLibrary.simpleMessage("Resource not found"), | ||
"apiServerException" : MessageLookupByLibrary.simpleMessage("Internal server error"), | ||
"apiUnauthorizedException" : MessageLookupByLibrary.simpleMessage("Authorization error"), | ||
"apiUnknownException" : MessageLookupByLibrary.simpleMessage("Unknown error"), | ||
"appInfoFeatureDescription" : MessageLookupByLibrary.simpleMessage("The latest news from the world"), | ||
"appInfoTechnicalDescription" : MessageLookupByLibrary.simpleMessage("Application fully written in Flutter"), | ||
"createAccount" : MessageLookupByLibrary.simpleMessage("Create account"), | ||
"darkMode" : MessageLookupByLibrary.simpleMessage("Dark mode"), | ||
"email" : MessageLookupByLibrary.simpleMessage("E-mail"), | ||
"emailed" : MessageLookupByLibrary.simpleMessage("E-mailed"), | ||
"emptyFieldError" : MessageLookupByLibrary.simpleMessage("This field cannot be empty"), | ||
"firebaseEmailAlreadyInUseError" : MessageLookupByLibrary.simpleMessage("E-mail address already in use"), | ||
"firebaseInitializationError" : MessageLookupByLibrary.simpleMessage("Firebase initialization failed, restart the application"), | ||
"firebaseInvalidEmailError" : MessageLookupByLibrary.simpleMessage("Wrong e-mail format"), | ||
"firebaseInvalidPasswordError" : MessageLookupByLibrary.simpleMessage("Password is invalid for the given email"), | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. tam gdzie email, można pozmieniać na e-mail, widzę, że chyba tak i tak jest teraz poprawnie, ale powiedzmy, że gwoli spójności dałbym wszędzie e-mail |
||
"firebaseOperationNotAllowedError" : MessageLookupByLibrary.simpleMessage("E-mail/password accounts are not enabled for the project"), | ||
"firebaseTooManyRequests" : MessageLookupByLibrary.simpleMessage("We have blocked all requests from this device due to unusual activity. Try again later."), | ||
"firebaseUserDisabledError" : MessageLookupByLibrary.simpleMessage("User corresponding to the given email has been disabled"), | ||
"firebaseUserNotFoundError" : MessageLookupByLibrary.simpleMessage("There is no user corresponding to the given email"), | ||
"firebaseWeakPasswordError" : MessageLookupByLibrary.simpleMessage("The password is too weak"), | ||
"login" : MessageLookupByLibrary.simpleMessage("Login"), | ||
"loginTitle" : MessageLookupByLibrary.simpleMessage("Login"), | ||
"logout" : MessageLookupByLibrary.simpleMessage("Logout"), | ||
"mostEmailed" : MessageLookupByLibrary.simpleMessage("Most Emailed"), | ||
"mostShared" : MessageLookupByLibrary.simpleMessage("Most Shared"), | ||
"mostViewed" : MessageLookupByLibrary.simpleMessage("Most Viewed"), | ||
"name" : MessageLookupByLibrary.simpleMessage("Name"), | ||
"newest" : MessageLookupByLibrary.simpleMessage("Newest"), | ||
"next" : MessageLookupByLibrary.simpleMessage("Next"), | ||
"noInternetException" : MessageLookupByLibrary.simpleMessage("No internet connection"), | ||
"password" : MessageLookupByLibrary.simpleMessage("Password"), | ||
"popular" : MessageLookupByLibrary.simpleMessage("Popular"), | ||
"profile" : MessageLookupByLibrary.simpleMessage("Profile"), | ||
"register" : MessageLookupByLibrary.simpleMessage("Register"), | ||
"registrationTitle" : MessageLookupByLibrary.simpleMessage("Registration"), | ||
"retry" : MessageLookupByLibrary.simpleMessage("Retry"), | ||
"settings" : MessageLookupByLibrary.simpleMessage("Settings"), | ||
"shared" : MessageLookupByLibrary.simpleMessage("Shared"), | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -22,22 +22,38 @@ class MessageLookup extends MessageLookupByLibrary { | |
final messages = _notInlinedMessages(_notInlinedMessages); | ||
static _notInlinedMessages(_) => <String, Function> { | ||
"aboutApp" : MessageLookupByLibrary.simpleMessage("O aplikacji"), | ||
"apiConnectionException" : MessageLookupByLibrary.simpleMessage("Brak połączenia sieciowego"), | ||
"apiInvalidUrlException" : MessageLookupByLibrary.simpleMessage("Nie znaleziono danych"), | ||
"apiServerException" : MessageLookupByLibrary.simpleMessage("Błąd na serwerze"), | ||
"apiUnauthorizedException" : MessageLookupByLibrary.simpleMessage("Błąd autoryzacyjny"), | ||
"apiUnknownException" : MessageLookupByLibrary.simpleMessage("Nieznany błąd"), | ||
"appInfoFeatureDescription" : MessageLookupByLibrary.simpleMessage("Najnowsze informacje z całego świata"), | ||
"appInfoTechnicalDescription" : MessageLookupByLibrary.simpleMessage("Aplikacja w całości napisana we Flutterze"), | ||
"createAccount" : MessageLookupByLibrary.simpleMessage("Utwórz konto"), | ||
"darkMode" : MessageLookupByLibrary.simpleMessage("Tryb ciemny"), | ||
"email" : MessageLookupByLibrary.simpleMessage("E-mail"), | ||
"emailed" : MessageLookupByLibrary.simpleMessage("Wysyłane e-mailem"), | ||
"emptyFieldError" : MessageLookupByLibrary.simpleMessage("To pole nie może być puste"), | ||
"firebaseInitializationError" : MessageLookupByLibrary.simpleMessage("Nieudana inicjalizacja firebase, zrestartuj aplikację"), | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. mało user friendly - |
||
"firebaseInvalidEmailError" : MessageLookupByLibrary.simpleMessage("Zły format e-maila"), | ||
"firebaseInvalidPasswordError" : MessageLookupByLibrary.simpleMessage("Hasło do podanego e-maila jest niepoprawne"), | ||
"firebaseTooManyRequests" : MessageLookupByLibrary.simpleMessage("Zbyt dużo nieudanych prób. Spróbuj ponownie później."), | ||
"firebaseUserDisabledError" : MessageLookupByLibrary.simpleMessage("Użytkownik powiązany z podanym e-mailem został zablokowany"), | ||
"firebaseUserNotFoundError" : MessageLookupByLibrary.simpleMessage("Użytkownik o podanym e-mailu nie istnieje"), | ||
"login" : MessageLookupByLibrary.simpleMessage("Zaloguj"), | ||
"loginTitle" : MessageLookupByLibrary.simpleMessage("Logowanie"), | ||
"logout" : MessageLookupByLibrary.simpleMessage("Wyloguj"), | ||
"mostEmailed" : MessageLookupByLibrary.simpleMessage("Najczęściej mailowane"), | ||
"mostShared" : MessageLookupByLibrary.simpleMessage("Najczęściej udostępniane"), | ||
"mostViewed" : MessageLookupByLibrary.simpleMessage("Najczęściej oglądane"), | ||
"name" : MessageLookupByLibrary.simpleMessage("Imię"), | ||
"newest" : MessageLookupByLibrary.simpleMessage("Najnowsze"), | ||
"next" : MessageLookupByLibrary.simpleMessage("Dalej"), | ||
"noInternetException" : MessageLookupByLibrary.simpleMessage("Brak połączenia sieciowego"), | ||
"password" : MessageLookupByLibrary.simpleMessage("Hasło"), | ||
"popular" : MessageLookupByLibrary.simpleMessage("Popularne"), | ||
"profile" : MessageLookupByLibrary.simpleMessage("Profil"), | ||
"register" : MessageLookupByLibrary.simpleMessage("Zarejestruj"), | ||
"registrationTitle" : MessageLookupByLibrary.simpleMessage("Rejestracja"), | ||
"retry" : MessageLookupByLibrary.simpleMessage("Ponów"), | ||
"settings" : MessageLookupByLibrary.simpleMessage("Ustawienia"), | ||
"shared" : MessageLookupByLibrary.simpleMessage("Udostępniane"), | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
ogólnie unikałbym przedrostka firebase w nazwach stringsów - przecież one nie wiedzą, że to błąd z firebase :D no i przy choćby prostej zmianie np. walidacji lokalnej e-maila regexem nie trzeba będzie zmieniać klucza komunikatu błędu :)