Skip to content
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

Adding login template strings for translation #8587

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions frontend/public/components/pod.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -69,6 +69,15 @@ import { VolumesTable } from './volumes-table';
import { PodModel } from '../models';
import { Conditions } from './conditions';

// Key translations for oauth login templates
// t('public~Log in to your account')
// t('public~Log in')
// t('public~Welcome to {{platformTitle}}')
// t('public~Log in with {{providerName}}')
// t('public~Login is required. Please try again.')
// t('public~Could not check CSRF token. Please try again.')
// t('public~Invalid login or password. Please try again.')

// Only request metrics if the device's screen width is larger than the
// breakpoint where metrics are visible.
const showMetrics =
Expand Down
7 changes: 7 additions & 0 deletions frontend/public/locales/en/public.json
Original file line number Diff line number Diff line change
Expand Up @@ -1048,6 +1048,13 @@
"Claim": "Claim",
"Reconnect": "Reconnect",
"Connecting to": "Connecting to",
"Log in to your account": "Log in to your account",
"Log in": "Log in",
"Welcome to {{platformTitle}}": "Welcome to {{platformTitle}}",
"Log in with {{providerName}}": "Log in with {{providerName}}",
"Login is required. Please try again.": "Login is required. Please try again.",
"Could not check CSRF token. Please try again.": "Could not check CSRF token. Please try again.",
"Invalid login or password. Please try again.": "Invalid login or password. Please try again.",
"Ready": "Ready",
"Owner": "Owner",
"IP address": "IP address",
Expand Down