-
Notifications
You must be signed in to change notification settings - Fork 0
Invite users improvements #31
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
Merged
Merged
Changes from 6 commits
Commits
Show all changes
17 commits
Select commit
Hold shift + click to select a range
9936008
Translated version of the project settings page
lumburovskalina 8dcc9c1
Added messages in different languages
lumburovskalina 0c82a2f
Added dutch support to the app
lumburovskalina f373fdd
Smaller condition fix
lumburovskalina f48591e
PR comments
lumburovskalina 4bc2fd1
Translations added
lumburovskalina 2eac6f3
PR comments
lumburovskalina 167ec2a
PR comments
lumburovskalina 6486261
PR comments
lumburovskalina 8ce81b1
PR comments
lumburovskalina 96cb4af
PR comments
lumburovskalina 01be65b
Test
lumburovskalina 1f87740
Test
lumburovskalina 4cceff3
Test
lumburovskalina 743378e
Test
lumburovskalina 59c6eef
Test
lumburovskalina 1af7674
PR comments
lumburovskalina File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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 |
---|---|---|
@@ -0,0 +1,27 @@ | ||
import i18n from 'i18next' | ||
import settingsEN from './locales/en/settings.json' | ||
|
||
import settingsDE from './locales/de/settings.json' | ||
|
||
import settingsNL from './locales/nl/settings.json' | ||
|
||
i18n.init({ | ||
resources: { | ||
en: { | ||
settings: settingsEN | ||
}, | ||
de: { | ||
settings: settingsDE, | ||
}, | ||
nl: { | ||
settings: settingsNL, | ||
}, | ||
}, | ||
ns: ["settings"], | ||
fallbackLng: 'en', | ||
interpolation: { | ||
escapeValue: false // not needed for react as it escapes by default | ||
}, | ||
}); | ||
|
||
export default i18n |
This file contains hidden or 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 |
---|---|---|
@@ -0,0 +1,19 @@ | ||
{ | ||
"title": "Kontoeinstellungen", | ||
"heading": "Profilverwaltung und Sicherheitseinstellungen", | ||
"subtitle": "Profileinstellungen", | ||
"changePassword": "Passwort ändern", | ||
"setPassword": "Passwort festlegen", | ||
"backUpCodes": "Verwalten von 2FA-Backup-Wiederherstellungscodes", | ||
"backUpCodesDescription": "Wiederherstellungscodes können in Paniksituationen verwendet werden, wenn Sie den Zugriff auf Ihr 2FA-Gerät verloren haben.", | ||
"totpAuthenticator": "2FA TOTP Authenticator App verwalten", | ||
"addTotpAuthenticator": "Fügen Sie Ihrem Konto eine TOTP-Authentifikator-App hinzu, um die Sicherheit Ihres Kontos zu verbessern.", | ||
"popularAuthenticatorApps": "Beliebte Authenticator-Apps sind", | ||
"and": "und", | ||
"back": "Zurück", | ||
"email": "E-Mail", | ||
"firstName": "Vorname", | ||
"lastName": "Nachname", | ||
"password": "Passwort", | ||
"save": "Speichern" | ||
} |
This file contains hidden or 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 |
---|---|---|
@@ -0,0 +1,19 @@ | ||
{ | ||
"title": "Account settings", | ||
"heading": "Profile management and security settings", | ||
"subtitle": "Profile Settings", | ||
"changePassword": "Change Password", | ||
"setPassword": "Set Password", | ||
"backUpCodes": "Manage 2FA backup recovery codes", | ||
"backUpCodesDescription": "Recovery codes can be used in panic situations where you have lost access to your 2FA device.", | ||
"totpAuthenticator": "Manage 2FA TOTP Authenticator App", | ||
"addTotpAuthenticator": "Add a TOTP Authenticator App to your account to improve your account security.", | ||
"popularAuthenticatorApps": "Popular Authenticator Apps are", | ||
"and": "and", | ||
"back": "Back", | ||
"email": "E-Mail", | ||
"firstName": "First Name", | ||
"lastName": "Last Name", | ||
"password": "Password", | ||
"save": "Save" | ||
} |
This file contains hidden or 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 |
---|---|---|
@@ -0,0 +1,19 @@ | ||
{ | ||
"title": "Accountinstellingen", | ||
"heading": "Profielbeheer en beveiligingsinstellingen", | ||
"subtitle": "Profielinstellingen", | ||
"changePassword": "Wachtwoord wijzigen", | ||
"setPassword": "Wachtwoord instellen", | ||
"backUpCodes": "Beheer 2FA-back-upherstelcodes", | ||
"backUpCodesDescription": "Herstelcodes kunnen worden gebruikt in panieksituaties waarin u geen toegang meer hebt tot uw 2FA-apparaat.", | ||
"totpAuthenticator": "Beheer 2FA TOTP Authenticator-app", | ||
"addTotpAuthenticator": "Voeg een TOTP Authenticator-app toe aan uw account om de beveiliging ervan te verbeteren.", | ||
"popularAuthenticatorApps": "Populaire authenticatie-apps zijn", | ||
"and": "En", | ||
"back": "Rug", | ||
"email": "E-mail", | ||
"firstName": "Voornaam", | ||
"lastName": "Achternaam", | ||
"password": "Wachtwoord", | ||
"save": "Redden" | ||
} |
This file contains hidden or 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 hidden or 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 hidden or 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
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.