feat: add subtitle to login form and update translations for English and Italian
This commit is contained in:
parent
0128f115ad
commit
9961a6503c
4 changed files with 6 additions and 0 deletions
|
|
@ -73,6 +73,7 @@ export const FormLogin = () => {
|
||||||
<h3 className="text-3xl font-bold text-gray-800 sm:text-3xl">
|
<h3 className="text-3xl font-bold text-gray-800 sm:text-3xl">
|
||||||
{t.auth.login.titolo}
|
{t.auth.login.titolo}
|
||||||
</h3>
|
</h3>
|
||||||
|
<h3 className="text-xl">{t.auth.login.sottotitolo}</h3>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
{env.NEXT_PUBLIC_BASE_URL.includes("localhost") && (
|
{env.NEXT_PUBLIC_BASE_URL.includes("localhost") && (
|
||||||
|
|
|
||||||
|
|
@ -339,6 +339,8 @@ export const en: LangDict = {
|
||||||
psa_terms: "Terms and Conditions",
|
psa_terms: "Terms and Conditions",
|
||||||
riservata: "Dashboard",
|
riservata: "Dashboard",
|
||||||
success: "Access granted",
|
success: "Access granted",
|
||||||
|
sottotitolo:
|
||||||
|
"Contact us to purchase the service and obtain your credentials",
|
||||||
titolo: "Login",
|
titolo: "Login",
|
||||||
},
|
},
|
||||||
signup: {
|
signup: {
|
||||||
|
|
|
||||||
|
|
@ -331,6 +331,8 @@ export const it: LangDict = {
|
||||||
auth: {
|
auth: {
|
||||||
login: {
|
login: {
|
||||||
email: "Email",
|
email: "Email",
|
||||||
|
sottotitolo:
|
||||||
|
"Contattaci per acquistare il servizio e ottenere le tue credenziali",
|
||||||
fail: "Password o email errati",
|
fail: "Password o email errati",
|
||||||
forgot: "Password dimenticata?",
|
forgot: "Password dimenticata?",
|
||||||
google: "Accedi con Google",
|
google: "Accedi con Google",
|
||||||
|
|
|
||||||
|
|
@ -502,6 +502,7 @@ export type LangDict = {
|
||||||
auth: {
|
auth: {
|
||||||
login: {
|
login: {
|
||||||
titolo: string;
|
titolo: string;
|
||||||
|
sottotitolo: string;
|
||||||
no_account: string;
|
no_account: string;
|
||||||
google: string;
|
google: string;
|
||||||
forgot: string;
|
forgot: string;
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue