-
Notifications
You must be signed in to change notification settings - Fork 255
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
Localization #21
Comments
I think the underlying issue is that the localized versions of firebaseui-web are not distributed via NPM (which is how we import and depend on the library here...). @bojeil-google any chance the localized versions of firebaseui-web will be distributed in the NPM build/release at some point? e.g. we'd do something like |
Hmm, we don't have any tangible plans at the moment. May come later down the road. |
@nicolasgarnier as there aren't any plans for the files to be distributed via NPM would this be the only alternative currently?
I think I might just end up integrating the component into my own source code then dynamically loading the localized |
How about we delete those 2 lines: firebaseui-web-react/src/FirebaseAuth.jsx Line 50 in 814ad75
firebaseui-web-react/src/FirebaseAuth.jsx Line 54 in 814ad75
And ask users to load firebase-ui from CDN? |
I think you can clone the https://github.com/firebase/firebaseui-web repo and build it locally in the localised version that you want. |
I don't know how to import the localized firebaseui builds in my webapp. The documentation at https://github.com/firebase/firebaseui-web#localized-widget does not help. I tried to include a German locale in my app and downloaded it from the CDN to my
So I would really appreciate firebaseui to be served with different locals in their npm distribution. There are wrappers for angular or React, that don't easy work with sideloaded packages as well. |
I have a workaround. I'm using |
Can you explain better how did you get this? |
I don't have the exact steps here because I stopped using this lib, but it goes somewhat along this: |
@nicolasgarnier Maybe it would've been easier if we just could pass the translation file as an option on startup… ? Is it hard to do that way ? |
@jhuleatt concerning your proposal to open a new issue in firebaseui-web-react (firebase/firebaseui-web#662 (comment)): It seems to me that this issue is to the point. Unfortunately there has been no great solution how to achieve localization yet. I tried:
|
I just realized that I can easily build my own ui and use firebase.auth() functions for the good stuff. So that is my solution. |
Hi @barbalex I pass className to<StyledFirebaseAuth className={styles.loginExternalWrapper} uiConfig={uiConfig} firebaseAuth={firebase.auth()}/> And apply these styles:$hideTextSize: 0;
$showTextSize: 14px;
.loginExternalWrapper {
:global(.firebaseui-idp-facebook){
:global(.firebaseui-idp-text-long) {
font-size: $hideTextSize;
&:after {
font-size: $showTextSize;
content: "Zaloguj się z Facebook";
}
}
:global(.firebaseui-idp-text-short) {
font-size: $hideTextSize;
&:after {
font-size: $showTextSize;
content: "Facebook";
}
}
}
:global(.firebaseui-idp-google){
:global(.firebaseui-idp-text-long) {
font-size: $hideTextSize;
&:after {
font-size: $showTextSize;
content: "Zaloguj się z Google";
}
}
:global(.firebaseui-idp-text-short) {
font-size: $hideTextSize;
&:after {
font-size: $showTextSize;
content: "Google";
}
}
}
} ResultSupport other languagesYou have to pass different styles to RisksFirebase UI will change class names. |
Just chiming in with another solution as I stumbled upon this issue when searching for the same thing. What I did was:
Be aware of your node version when Here's the commit of the actual file changes: Your entry in package.json will need to look something like
Hope this is useful for someone. |
For anyone else who is struggling with building https://github.com/netzwerg/firebaseui-web The README explains all required steps – hope it helps! |
I solved this issue by using const merge = require('webpack-merge')
module.exports = {
webpack(config) {
return merge(config, {
resolve: {
alias: {
firebaseui: 'firebaseui-ja',
},
},
})
},
} |
Hi there, would it be possible to prioritize a way to use this package in apps with dynamic languages? Given that this thread here is 2 years old and that its sister thread here is going nowhere, I'm a little worried to use this as well. |
@mikaelgramont you can use my trick. Create css class for each language and use it depends on language. |
@dszymczuk yes I think I'll go with a variation on what you posted before, thanks. That's what I meant by "crazy tricks" :) |
How about exposing a localization object where we can pass in all texts? |
Hey @RckMrkr , after these steps do I just run EDIT: Nevermind I figured it out, see below. |
I love the usefulness of firebase auth. It is unfortunate that this google team however does not seem to care much about that part of the world that does not speak English natively. |
Being abusive in the comments won't help push this feature along. |
Ok here's how I did it (I use el for Greek in this case).
|
I also found https://github.com/greg-schrammel/react-firebaseui-localized but that was after I figure it out by myself so didn't bother looking at it. |
@selbekk, you might be right but I hardly believe this feature will ever be pushed. It's way easier to homebrew your own firebase ui auth and build it in any language you want. That's what I did and it only took me a few hours without much of the dependencies this library requires. Just gotta read the Firebase Auth Doc, it's very straight forward. If I find time and motivation one of these days I will build a package for everyone to use with all the customization needed. |
If the feature won't be pushed, then this library will lose many of its users, and somebody (perhaps you?) will create another alternative with localization support. In most cases, this ready-made UI is best used for PoCs anyway, so perhaps it doesn't matter as much :) |
@selbekk well, it's been two years... that's all i'm saying. But yeah, a ready-to-go UI is nice. I only did Facebook, Google and Phone auth. Phone auth was the more painful one with recaptcha and different forms it requires. If all the other auth methods are like Google and Facebook's, it's just copy and paste. To do this:
After finishing this project and relaxing away from the computer I might just create an alternative package for this. Anyway... good talk, back to work. ;) |
Hey I thought in phone auth has problem with recaptcha, but it is only on emulator in real device recaptcha is worked good |
Works like a charm
|
I am curious why there isn't any easier way to localise the login-flow especially setting the locale dynamically. I hope this will get some attention as it shows already quite a reasonable amount of +1 |
What? This is really overkilled to do a simple configuration of the localization. We are providing an app where is multilingual support so, definitely has to be dynamically changeable via state. EDIT: So I had idea to do a patch for this library and end here: 🥵 Really bad idea to compile the whole thing to raw HTML. There should be dynamic loading of JSON. |
This works and can be quite nicely automated with a little bit of scripting and SCSS. The script can pull all firebase localizations (I used the android strings files, e.g. https://raw.githubusercontent.com/firebase/FirebaseUI-Android/master/auth/src/main/res/values/strings.xml ), generate SCSS variables file containing a list with each language and then Great thing is language can be toggled by users, however I didn't find a solution for placeholder replacements ( |
@firebase please do something with this. |
Guys @jhuleatt @jamesdaniels, can you tell us the potential future of this? It's nonsense that I have to build my own web UI because of this. For example, https://lingui.js.org is really great tool for managing, implementation of localization and we have a lot of experience with that, so can help. |
Isn't the whole idea with firebase auth that it's supposed to be easy for people to implement authentication for their apps? This library is part of the whole solution and so far seems very easy to use and I commend the contributors for that. But apparently having to build the entire library per language required for a project is something that's fine and feasible for every one to do every time. This comment from someone above is pretty regrettable:
Sounds like satire. |
In case this helps anyone, this is a small extract of what I have working on my project. This was inspired by I am also referencing the npm version of import firebase from 'firebase/compat/app';
import 'firebase/compat/auth';
import firebaseui from 'firebaseui';
import useScript from 'react-use-scripts';
import { app } from '../my-firebase-app';
...
const firebaseUiConfig: firebaseui.auth.Config = {
...
};
export const SignIn = () => {
const firebaseuiElement = useRef<HTMLDivElement | null>(null);
const languageCode = 'es'; // get from somewhere
const { ready } = useScript({
src: `https://www.gstatic.com/firebasejs/ui/6.0.0/firebase-ui-auth__${languageCode}.js`,
});
useLayoutEffect(() => {
if (ready && firebaseuiElement.current) {
(window as any).firebase = firebase;
const auth = firebase.auth(app);
const firebaseuiUMD: typeof firebaseui = (window as any).firebaseui;
const ui = new firebaseuiUMD.auth.AuthUI(auth);
ui.start(firebaseuiElement.current, firebaseUiConfig);
}
}, [ready, firebaseUiConfig]);
return (
<div ref={firebaseuiElement} />
);
} Just be aware that if you change languageCode, you will need to reload the app. |
Seriously? |
+1, using multiple packages per language isn't great. |
Hey, the build section of readme.md is broken and it's still not clear how to use localized npm in my project :( |
@google is really do not care about it anymore. |
Nice lib. Any way to localize the components? I'm using this library as an npm module.
The text was updated successfully, but these errors were encountered: