mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-16 09:36:44 +00:00
82 lines
4.1 KiB
TypeScript
82 lines
4.1 KiB
TypeScript
/* eslint-disable @typescript-eslint/naming-convention */
|
||
import type { N8nLocale } from '@n8n/design-system/types';
|
||
|
||
export default {
|
||
'generic.retry': 'Retry',
|
||
'generic.cancel': 'Cancel',
|
||
'generic.ignore': 'Ignore',
|
||
'generic.ignoreAll': 'Ignore all',
|
||
'generic.moreInfo': 'More info',
|
||
'nds.auth.roles.owner': 'Owner',
|
||
'nds.userInfo.you': '(you)',
|
||
'nds.userSelect.selectUser': 'Select User',
|
||
'nds.userSelect.noMatchingUsers': 'No matching users',
|
||
'notice.showMore': 'Show more',
|
||
'notice.showLess': 'Show less',
|
||
'formInput.validator.fieldRequired': 'This field is required',
|
||
'formInput.validator.minCharactersRequired': 'Must be at least {minimum} characters',
|
||
'formInput.validator.maxCharactersRequired': 'Must be at most {maximum} characters',
|
||
'formInput.validator.oneNumbersRequired': (config: { minimum: number }) => {
|
||
return `Must have at least ${config.minimum} number${config.minimum > 1 ? 's' : ''}`;
|
||
},
|
||
'formInput.validator.validEmailRequired': 'Must be a valid email',
|
||
'formInput.validator.uppercaseCharsRequired': (config: { minimum: number }) =>
|
||
`Must have at least ${config.minimum} uppercase character${config.minimum > 1 ? 's' : ''}`,
|
||
'formInput.validator.defaultPasswordRequirements':
|
||
'8+ characters, at least 1 number and 1 capital letter',
|
||
'sticky.markdownHint':
|
||
'You can style with <a href="https://docs.n8n.io/workflows/sticky-notes/" target="_blank">Markdown</a>',
|
||
'tags.showMore': (count: number) => `+${count} more`,
|
||
'datatable.pageSize': 'Page size',
|
||
'codeDiff.couldNotReplace': 'Could not replace code',
|
||
'codeDiff.codeReplaced': 'Code replaced',
|
||
'codeDiff.replaceMyCode': 'Replace my code',
|
||
'codeDiff.replacing': 'Replacing...',
|
||
'codeDiff.undo': 'Undo',
|
||
'betaTag.beta': 'beta',
|
||
'askAssistantButton.askAssistant': 'Ask Assistant',
|
||
'assistantChat.builder.name': 'AI Builder',
|
||
'assistantChat.builder.generatingFinalWorkflow': 'Generating final workflow...',
|
||
'assistantChat.builder.configuredNodes': 'Configured nodes',
|
||
'assistantChat.builder.thumbsUp': 'Helpful',
|
||
'assistantChat.builder.thumbsDown': 'Not helpful',
|
||
'assistantChat.builder.feedbackPlaceholder': 'What went wrong?',
|
||
'assistantChat.builder.success': 'Thank you for your feedback!',
|
||
'assistantChat.builder.submit': 'Submit feedback',
|
||
'assistantChat.builder.workflowGenerated1': 'Your workflow was created successfully!',
|
||
'assistantChat.builder.workflowGenerated2': 'Fix any missing credentials before testing it.',
|
||
'assistantChat.builder.configuringNodes': 'Configuring nodes...',
|
||
'assistantChat.builder.selectedNodes': 'Selected workflow nodes',
|
||
'assistantChat.builder.selectingNodes': 'Selecting nodes...',
|
||
'assistantChat.builder.generatedNodes': 'Generated workflow nodes',
|
||
'assistantChat.builder.toolRunning': 'Tool running',
|
||
'assistantChat.builder.toolCompleted': 'Tool completed',
|
||
'assistantChat.builder.toolError': 'Tool completed with error',
|
||
'assistantChat.errorParsingMarkdown': 'Error parsing markdown content',
|
||
'assistantChat.aiAssistantLabel': 'AI Assistant',
|
||
'assistantChat.aiAssistantName': 'Assistant',
|
||
'assistantChat.sessionEndMessage.1':
|
||
'This Assistant session has ended. To start a new session with the Assistant, click an',
|
||
'assistantChat.sessionEndMessage.2': 'button in n8n',
|
||
'assistantChat.you': 'You',
|
||
'assistantChat.quickRepliesTitle': 'Quick reply 👇',
|
||
'assistantChat.placeholder.1': () =>
|
||
'I can answer most questions about building workflows in n8n.',
|
||
'assistantChat.placeholder.2': 'For specific tasks, you’ll see the',
|
||
'assistantChat.placeholder.3': 'button in the UI.',
|
||
'assistantChat.placeholder.4': 'How can I help?',
|
||
'assistantChat.inputPlaceholder': 'Enter your response...',
|
||
'assistantChat.copy': 'Copy',
|
||
'assistantChat.copied': 'Copied',
|
||
'aiAssistant.builder.canvas.thinking': 'Working...',
|
||
'inlineAskAssistantButton.asked': 'Asked',
|
||
'iconPicker.button.defaultToolTip': 'Choose icon',
|
||
'iconPicker.tabs.icons': 'Icons',
|
||
'iconPicker.tabs.emojis': 'Emojis',
|
||
'selectableList.addDefault': '+ Add a',
|
||
'auth.changePassword.passwordsMustMatchError': 'Passwords must match',
|
||
'tableControlsButton.display': 'Display',
|
||
'tableControlsButton.shown': 'Shown',
|
||
'tableControlsButton.hidden': 'Hidden',
|
||
} as N8nLocale;
|