mirror of https://github.com/grafana/grafana
Chore: Mark up User Profile page for translation (#43874)
* Mark up User profile page for translation * Extract new messages * updated selectors * update selectors * wip TestProvider * update tests * fix field labels * extract new messages * don't store date objects in redux state * don't store date objects in redux statepull/44132/head
parent
6d072ad84d
commit
36983d8d3b
@ -0,0 +1,130 @@ |
||||
msgid "" |
||||
msgstr "" |
||||
"POT-Creation-Date: 2022-01-10 10:42+0000\n" |
||||
"MIME-Version: 1.0\n" |
||||
"Content-Type: text/plain; charset=utf-8\n" |
||||
"Content-Transfer-Encoding: 8bit\n" |
||||
"X-Generator: @lingui/cli\n" |
||||
"Language: pseudo-LOCALE\n" |
||||
"Project-Id-Version: \n" |
||||
"Report-Msgid-Bugs-To: \n" |
||||
"PO-Revision-Date: \n" |
||||
"Last-Translator: \n" |
||||
"Language-Team: \n" |
||||
"Plural-Forms: \n" |
||||
|
||||
#: public/app/core/components/SharedPreferences/SharedPreferences.tsx |
||||
#: public/app/features/profile/UserProfileEditForm.tsx |
||||
msgid "common.save" |
||||
msgstr "" |
||||
|
||||
#: public/app/core/components/SharedPreferences/SharedPreferences.tsx |
||||
msgid "shared-dashboard.fields.timezone-label" |
||||
msgstr "" |
||||
|
||||
#: public/app/core/components/SharedPreferences/SharedPreferences.tsx |
||||
msgid "shared-preferences.fields.home-dashboard-label" |
||||
msgstr "" |
||||
|
||||
#: public/app/core/components/SharedPreferences/SharedPreferences.tsx |
||||
msgid "shared-preferences.fields.home-dashboard-placeholder" |
||||
msgstr "" |
||||
|
||||
#: public/app/core/components/SharedPreferences/SharedPreferences.tsx |
||||
msgid "shared-preferences.fields.home-dashboard-tooltip" |
||||
msgstr "" |
||||
|
||||
#: public/app/core/components/SharedPreferences/SharedPreferences.tsx |
||||
msgid "shared-preferences.fields.theme-label" |
||||
msgstr "" |
||||
|
||||
#: public/app/core/components/SharedPreferences/SharedPreferences.tsx |
||||
msgid "shared-preferences.fields.week-start-label" |
||||
msgstr "" |
||||
|
||||
#: public/app/core/components/SharedPreferences/SharedPreferences.tsx |
||||
msgid "shared-preferences.theme.dark-label" |
||||
msgstr "" |
||||
|
||||
#: public/app/core/components/SharedPreferences/SharedPreferences.tsx |
||||
msgid "shared-preferences.theme.default-label" |
||||
msgstr "" |
||||
|
||||
#: public/app/core/components/SharedPreferences/SharedPreferences.tsx |
||||
msgid "shared-preferences.theme.light-label" |
||||
msgstr "" |
||||
|
||||
#: public/app/core/components/SharedPreferences/SharedPreferences.tsx |
||||
msgid "shared-preferences.title" |
||||
msgstr "" |
||||
|
||||
#: public/app/features/profile/UserOrganizations.tsx |
||||
msgid "user-orgs.current-org-button" |
||||
msgstr "" |
||||
|
||||
#: public/app/features/profile/UserOrganizations.tsx |
||||
msgid "user-orgs.name-column" |
||||
msgstr "" |
||||
|
||||
#: public/app/features/profile/UserOrganizations.tsx |
||||
msgid "user-orgs.role-column" |
||||
msgstr "" |
||||
|
||||
#: public/app/features/profile/UserOrganizations.tsx |
||||
msgid "user-orgs.select-org-button" |
||||
msgstr "" |
||||
|
||||
#: public/app/features/profile/UserOrganizations.tsx |
||||
msgid "user-orgs.title" |
||||
msgstr "" |
||||
|
||||
#: public/app/features/profile/UserProfileEditForm.tsx |
||||
msgid "user-profile.fields.email-error" |
||||
msgstr "" |
||||
|
||||
#: public/app/features/profile/UserProfileEditForm.tsx |
||||
#: public/app/features/profile/UserProfileEditForm.tsx |
||||
msgid "user-profile.fields.email-label" |
||||
msgstr "" |
||||
|
||||
#: public/app/features/profile/UserProfileEditForm.tsx |
||||
msgid "user-profile.fields.name-error" |
||||
msgstr "" |
||||
|
||||
#: public/app/features/profile/UserProfileEditForm.tsx |
||||
#: public/app/features/profile/UserProfileEditForm.tsx |
||||
msgid "user-profile.fields.name-label" |
||||
msgstr "" |
||||
|
||||
#: public/app/features/profile/UserProfileEditForm.tsx |
||||
#: public/app/features/profile/UserProfileEditForm.tsx |
||||
msgid "user-profile.fields.username-label" |
||||
msgstr "" |
||||
|
||||
#: public/app/features/profile/UserProfileEditForm.tsx |
||||
msgid "user-profile.title" |
||||
msgstr "" |
||||
|
||||
#: public/app/features/profile/UserSessions.tsx |
||||
msgid "user-session.browser-column" |
||||
msgstr "" |
||||
|
||||
#: public/app/features/profile/UserSessions.tsx |
||||
msgid "user-session.created-at-column" |
||||
msgstr "" |
||||
|
||||
#: public/app/features/profile/UserSessions.tsx |
||||
msgid "user-session.ip-column" |
||||
msgstr "" |
||||
|
||||
#: public/app/features/profile/UserSessions.tsx |
||||
msgid "user-session.revoke" |
||||
msgstr "" |
||||
|
||||
#: public/app/features/profile/UserSessions.tsx |
||||
msgid "user-session.seen-at-column" |
||||
msgstr "" |
||||
|
||||
#: public/app/features/profile/UserSessions.tsx |
||||
msgid "user-sessions.loading" |
||||
msgstr "" |
@ -0,0 +1,8 @@ |
||||
import React from 'react'; |
||||
import { I18nProvider } from '../../app/core/localisation'; |
||||
|
||||
const TestProvider: React.FC = ({ children }) => { |
||||
return <I18nProvider>{children}</I18nProvider>; |
||||
}; |
||||
|
||||
export default TestProvider; |
Loading…
Reference in new issue