-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
75fcde9
commit fe71b56
Showing
8 changed files
with
85 additions
and
45 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,8 @@ | ||
import create from 'zustand' | ||
|
||
const useFormStore = create((set) => ({ | ||
const useLangStore = create((set) => ({ | ||
language: "en", | ||
setLanguage: (newLanguage) => set(() => ({ language: newLanguage })), | ||
})) | ||
|
||
export default useFormStore | ||
export default useLangStore |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,32 @@ | ||
{ | ||
"en":{ | ||
"splashHeading": "Shishya Admin Page" | ||
"splashHeading": "Shishya Admin Page", | ||
"email": "Email", | ||
"password": "Password", | ||
"login": "Login", | ||
"reset": "Reset", | ||
"introText": "One stop destination for citizens to find and understand all the government schemes applicable to them.", | ||
"iYojna": "iYojna", | ||
"name": "Dhruv Dave", | ||
"language": "Language", | ||
"iY": "iY", | ||
"passPlaceholder": "Password (6 characters atleast, case sensitive)", | ||
"confirmPassword": "Confirm Password", | ||
"signUp": "Sign Up" | ||
}, | ||
"gj":{ | ||
|
||
"splashHeading": "શિષ્ય એડમિન પેજ", | ||
"email": "ઇમેઇલ", | ||
"password": "પાસવર્ડ", | ||
"login": "પ્રવેશ કરો", | ||
"reset": "રીસેટ", | ||
"introText": "નાગરિકો માટે તમામ શોધવા અને સમજવા માટે વન સ્ટોપ ડેસ્ટિનેશન તેમને લાગુ પડતી સરકારી યોજનાઓ.", | ||
"iYojna": "ઈ-યોજના", | ||
"name": "ધ્રુવ દવે", | ||
"language": "ભાષા", | ||
"iY": "ઈ-યો", | ||
"passPlaceholder": "પાસવર્ડ (ઓછામાં ઓછા 6 અક્ષરો, કેસ સંવેદનશીલ)", | ||
"confirmPassword": "પાસવર્ડની પુષ્ટિ કરો", | ||
"signUp": "સાઇન અપ" | ||
} | ||
} |