| 123456789101112131415161718192021222324252627 |
- const translation = {
- tips: {
- loggedIn: 'This app wants to access the following information from your Dify Cloud account.',
- notLoggedIn: 'This app wants to access your Dify Cloud account',
- needLogin: 'Please log in to authorize',
- common: 'We respect your privacy and will only use this information to enhance your experience with our developer tools.',
- },
- connect: 'Connect to',
- continue: 'Continue',
- switchAccount: 'Switch Account',
- login: 'Login',
- scopes: {
- name: 'Name',
- email: 'Email',
- avatar: 'Avatar',
- languagePreference: 'Language Preference',
- timezone: 'Timezone',
- },
- error: {
- invalidParams: 'Invalid parameters',
- authorizeFailed: 'Authorization failed',
- authAppInfoFetchFailed: 'Failed to fetch app info for authorization',
- },
- unknownApp: 'Unknown App',
- }
-
- export default translation
|