Render header strings

This commit is contained in:
Iván Ovejero
2021-11-18 11:32:13 +01:00
parent f1eef04ad2
commit 99963b04a5
25 changed files with 467 additions and 61 deletions

View File

@@ -5,6 +5,52 @@ export default {
clientSecret: '🇩🇪 Client Secret',
},
},
nodeCreator: {
categoryNames: {
coreNodes: '🇩🇪 Core Nodes',
customNodes: '🇩🇪 Custom Nodes',
suggestedNodes: '🇩🇪 Suggested Nodes ✨',
analytics: '🇩🇪 Analytics',
communication: '🇩🇪 Communication',
dataStorage: '🇩🇪 Data & Storage',
development: '🇩🇪 Development',
financeAccounting: '🇩🇪 Finance & Accounting',
marketingContent: '🇩🇪 Marketing & Content',
productivity: '🇩🇪 Productivity',
sales: '🇩🇪 Sales',
utility: '🇩🇪 Utility',
miscellaneous: '🇩🇪 Miscellaneous',
},
subcategoryNames: {
dataTransformation: '🇩🇪 Data Transformation',
flow: '🇩🇪 Flow',
files: '🇩🇪 Files',
helpers: '🇩🇪 Helpers',
},
subcategoryDescriptions: {
manipulate: '🇩🇪 Manipulate data fields, run code',
branches: '🇩🇪 Branches, core triggers, merge data',
work: '🇩🇪 Work with CSV, XML, text, images etc.',
http: '🇩🇪 HTTP Requests (API calls), date and time, scrape HTML',
},
mainPanel: {
all: '🇩🇪 All',
regular: '🇩🇪 Regular',
trigger: '🇩🇪 Trigger',
},
searchBar: {
searchNodes: '🇩🇪 Search nodes...',
},
noResults: {
weDidntMakeThatYet: "🇩🇪 We didn't make that... yet",
dontWorryYouCanProbablyDoItWithThe: '🇩🇪 Dont worry, you can probably do it with the {httpRequest} or {webhook} node',
httpRequest: '🇩🇪 HTTP Request',
webhook: '🇩🇪 Webhook',
node: '🇩🇪 node',
wantUsToMakeItFaster: '🇩🇪 Want us to make it faster?',
requestTheNode: '🇩🇪 Request the node',
},
},
textEdit: {
edit: '🇩🇪 Edit',
},

View File

@@ -1,4 +1,50 @@
export default {
nodeCreator: {
categoryNames: {
coreNodes: 'Core Nodes',
customNodes: 'Custom Nodes',
suggestedNodes: 'Suggested Nodes ✨',
analytics: 'Analytics',
communication: 'Communication',
dataStorage: 'Data & Storage',
development: 'Development',
financeAccounting: 'Finance & Accounting',
marketingContent: 'Marketing & Content',
productivity: 'Productivity',
sales: 'Sales',
utility: 'Utility',
miscellaneous: 'Miscellaneous',
},
subcategoryNames: {
dataTransformation: 'Data Transformation',
flow: 'Flow',
files: 'Files',
helpers: 'Helpers',
},
subcategoryDescriptions: {
manipulate: 'Manipulate data fields, run code',
branches: 'Branches, core triggers, merge data',
work: 'Work with CSV, XML, text, images etc.',
http: 'HTTP Requests (API calls), date and time, scrape HTML',
},
mainPanel: {
all: 'All',
regular: 'Regular',
trigger: 'Trigger',
},
searchBar: {
searchNodes: 'Search nodes...',
},
noResults: {
weDidntMakeThatYet: "We didn't make that... yet",
dontWorryYouCanProbablyDoItWithThe: 'Dont worry, you can probably do it with the {httpRequest} or {webhook} node',
httpRequest: 'HTTP Request',
webhook: 'Webhook',
node: 'node',
wantUsToMakeItFaster: 'Want us to make it faster?',
requestTheNode: 'Request the node',
},
},
textEdit: {
edit: 'Edit',
},