dalenguyen / firebase-wordpress-plugin

A plugin that helps to integrate Firebase to WordPress
https://firebase-wordpress-docs.readthedocs.io
GNU General Public License v2.0
111 stars 31 forks source link

[Tutorial]How to change langue login/register #58

Closed fripokoff closed 4 years ago

fripokoff commented 4 years ago

Hi guys, I figured out how to change the language of the firebaseui login.

If it helps.

integrate-firebase-PRO\includes\public

Open class.firebase.php

In line 58 don't change anything except if you want to get Arabic (ar), Farsi (fa), and Hebrew (iw).

In line 64

Change this

wp_enqueue_script('firebase_ui', 'https://www.gstatic.com/firebasejs/ui/4.5.0/firebase-ui-auth.js', array(), FIREBASE_WP_VERSION, false);

By

wp_enqueue_script('firebase_ui', 'https://www.gstatic.com/firebasejs/ui/4.5.0/firebase-ui-auth__{LANGUAGE_CODE}.js', array(), FIREBASE_WP_VERSION, false);

KEEP THE " "

The list of available languages and their respective language codes can be found at LANGUAGES.md.

Source

Have a nice day.

dalenguyen commented 4 years ago

Thanks, @kushadapt. Remember it will disappear when you update the next version. Then you can manually edit it.

dalenguyen commented 4 years ago

FirebaseUI Web translation supported in v1.0.0