Merge pull request #945 from ente-io/fix_case

Fix case
This commit is contained in:
Abhinav Kumar 2023-02-13 14:53:30 +05:30 committed by GitHub
commit fa9b918f73
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 1 deletions

View file

@ -366,7 +366,7 @@ export default function PublicCollectionGallery() {
<SingleInputForm <SingleInputForm
callback={verifyLinkPassword} callback={verifyLinkPassword}
placeholder={constants.RETURN_PASSPHRASE_HINT} placeholder={constants.RETURN_PASSPHRASE_HINT}
buttonText={'unlock'} buttonText={constants.UNLOCK}
fieldType="password" fieldType="password"
/> />
</FormPaper> </FormPaper>

View file

@ -79,6 +79,7 @@ const englishConstants = {
SENT: 'Sent!', SENT: 'Sent!',
PASSWORD: 'Password', PASSWORD: 'Password',
LINK_PASSWORD: 'Enter password to unlock the album', LINK_PASSWORD: 'Enter password to unlock the album',
UNLOCK: 'Unlock',
ENTER_PASSPHRASE: 'Enter your password', ENTER_PASSPHRASE: 'Enter your password',
RETURN_PASSPHRASE_HINT: 'Password', RETURN_PASSPHRASE_HINT: 'Password',
SET_PASSPHRASE: 'Set password', SET_PASSPHRASE: 'Set password',