@n8n/i18n 1.16.1 → 1.17.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.cjs CHANGED
@@ -32,7 +32,13 @@ var en_default = {
32
32
  user: "User",
33
33
  enabled: "Enabled",
34
34
  disabled: "Disabled",
35
- type: "Type"
35
+ type: "Type",
36
+ role: "Role",
37
+ roles: {
38
+ admin: "Admin",
39
+ editor: "Editor",
40
+ viewer: "Viewer"
41
+ }
36
42
  },
37
43
  _reusableDynamicText: {
38
44
  readMore: "Read more",
@@ -80,7 +86,7 @@ var en_default = {
80
86
  "generic.clickToCopy": "Click to copy",
81
87
  "generic.copiedToClipboard": "Copied to clipboard",
82
88
  "generic.beta": "beta",
83
- "generic.betaProper": "beta",
89
+ "generic.betaProper": "Beta",
84
90
  "generic.yes": "Yes",
85
91
  "generic.no": "No",
86
92
  "generic.rating": "Rating",
@@ -168,6 +174,9 @@ var en_default = {
168
174
  "auth.changePassword.passwordsMustMatchError": "Passwords must match",
169
175
  "auth.changePassword.reenterNewPassword": "Re-enter new password",
170
176
  "auth.changePassword.tokenValidationError": "Invalid password-reset token",
177
+ "auth.confirmPassword": "Confirm password",
178
+ "auth.confirmPassword.currentPassword": "Current password",
179
+ "auth.confirmPassword.confirmPasswordToChangeEmail": "Please confirm your password in order to change your email address.",
171
180
  "auth.defaultPasswordRequirements": "8+ characters, at least 1 number and 1 capital letter",
172
181
  "auth.validation.missingParameters": "Missing token or user id",
173
182
  "auth.email": "Email",
@@ -178,7 +187,7 @@ var en_default = {
178
187
  "auth.role": "Role",
179
188
  "auth.roles.default": "Default",
180
189
  "auth.roles.member": "Member",
181
- "auth.roles.admin": "Admin",
190
+ "auth.roles.admin": "@:_reusableBaseText.roles.admin",
182
191
  "auth.roles.owner": "Owner",
183
192
  "auth.agreement.label": "I want to receive security and product updates",
184
193
  "auth.setup.next": "Next",
@@ -195,7 +204,8 @@ var en_default = {
195
204
  "auth.signup.tokenValidationError": "Issue validating invite token",
196
205
  "aiAssistant.name": "Assistant",
197
206
  "aiAssistant.n8nAi": "n8n AI",
198
- "aiAssistant.builder.name": "Builder",
207
+ "aiAssistant.tabs.ask": "Ask",
208
+ "aiAssistant.tabs.build": "Build",
199
209
  "aiAssistant.builder.mode": "AI Builder",
200
210
  "aiAssistant.builder.placeholder": "Ask n8n to build...",
201
211
  "aiAssistant.builder.generateNew": "Generate new workflow",
@@ -1201,6 +1211,7 @@ Return "Good morning" if time is before 10am, "Good day" it's before 5pm, otherw
1201
1211
  "ndv.output.branch": "Branch",
1202
1212
  "ndv.output.executing": "Executing node...",
1203
1213
  "ndv.output.items": "{count} item | {count} items",
1214
+ "ndv.output.itemsTotal": "{count} item total | {count} items total",
1204
1215
  "ndv.output.andSubExecutions": ", {count} sub-execution | , {count} sub-executions",
1205
1216
  "ndv.output.noOutputData.message": "n8n stops executing the workflow when a node has no output data. You can change this default behaviour via",
1206
1217
  "ndv.output.noOutputData.message.settings": "Settings",
@@ -1836,6 +1847,7 @@ Return "Good morning" if time is before 10am, "Good day" it's before 5pm, otherw
1836
1847
  "resourceLocator.mode.list.placeholder": "Choose...",
1837
1848
  "resourceLocator.mode.list.searchRequired": "Enter a search term to show results",
1838
1849
  "resourceLocator.mode.list.addNewResource.vectorStoreInMemory": "Create key '{resourceName}'",
1850
+ "resourceLocator.dataTable.createNew": "Create new data table",
1839
1851
  "resourceLocator.modeSelector.placeholder": "Mode...",
1840
1852
  "resourceLocator.openSpecificResource": "Open {entity} in {appName}",
1841
1853
  "resourceLocator.openResource": "Open in {appName}",
@@ -2751,8 +2763,8 @@ Return "Good morning" if time is before 10am, "Good day" it's before 5pm, otherw
2751
2763
  "workflows.shareModal.info.sharee.fallback": "the owner",
2752
2764
  "workflows.shareModal.info.members": "This workflow is owned by the {projectName} project which currently has {members} with access to this workflow.",
2753
2765
  "workflows.shareModal.info.members.number": "{number} member | {number} members",
2754
- "workflows.shareModal.role.editor": "Editor",
2755
- "workflows.roles.editor": "Editor",
2766
+ "workflows.shareModal.role.editor": "@:_reusableBaseText.roles.editor",
2767
+ "workflows.roles.editor": "@:_reusableBaseText.roles.editor",
2756
2768
  "workflows.concurrentChanges.confirmMessage.title": "Workflow was changed by someone else",
2757
2769
  "workflows.concurrentChanges.confirmMessage.message": 'Someone saved this workflow while you were editing it. You can <a href="{url}" target="_blank">view their version</a> (in new tab).<br/><br/>Overwrite their changes with yours?',
2758
2770
  "workflows.concurrentChanges.confirmMessage.cancelButtonText": "Cancel",
@@ -2908,6 +2920,17 @@ Return "Good morning" if time is before 10am, "Good day" it's before 5pm, otherw
2908
2920
  "dataStore.banner.storageLimitError.message": "{usage} of Data tables storage used, operations may fail. Delete data to avoid errors",
2909
2921
  "dataStore.error.tableNotInitialized": "Table not initialized",
2910
2922
  "dataStore.noRows": "No rows",
2923
+ "dataStore.filters.isNull": "Is null",
2924
+ "dataStore.filters.isNotNull": "Is not null",
2925
+ "dataStore.filters.isEmpty": "Is empty",
2926
+ "dataStore.filters.isNotEmpty": "Is not empty",
2927
+ "dataStore.filters.between": "Between",
2928
+ "dataStore.filters.true": "True",
2929
+ "dataStore.filters.false": "False",
2930
+ "dataStore.filters.greaterThan": "Greater than",
2931
+ "dataStore.filters.greaterThanOrEqual": "Greater than or equal",
2932
+ "dataStore.filters.lessThan": "Less than",
2933
+ "dataStore.filters.lessThanOrEqual": "Less than or equal",
2911
2934
  "settings.ldap": "LDAP",
2912
2935
  "settings.ldap.note": "LDAP allows users to authenticate with their centralized account. It's compatible with services that provide an LDAP interface like Active Directory, Okta and Jumpcloud.",
2913
2936
  "settings.ldap.infoTip": "Learn more about <a href='https://docs.n8n.io/user-management/ldap/' target='_blank'>LDAP in the Docs</a>",
@@ -3060,15 +3083,15 @@ Return "Good morning" if time is before 10am, "Good day" it's before 5pm, otherw
3060
3083
  "projects.settings.button.save": "@:_reusableBaseText.save",
3061
3084
  "projects.settings.button.cancel": "@:_reusableBaseText.cancel",
3062
3085
  "projects.settings.button.deleteProject": "Delete project",
3063
- "projects.settings.role.admin": "Admin",
3064
- "projects.settings.role.editor": "Editor",
3065
- "projects.settings.role.viewer": "Viewer",
3086
+ "projects.settings.role.admin": "@:_reusableBaseText.roles.admin",
3087
+ "projects.settings.role.editor": "@:_reusableBaseText.roles.editor",
3088
+ "projects.settings.role.viewer": "@:_reusableBaseText.roles.viewer",
3066
3089
  "projects.settings.delete.title": 'Delete "{projectName}" Project?',
3067
3090
  "projects.settings.delete.message": "What should we do with the project data?",
3068
- "projects.settings.delete.message.empty": "There are no workflows or credentials in this project.",
3069
- "projects.settings.delete.question.transfer.label": "Transfer its workflows and credentials to another project or user",
3091
+ "projects.settings.delete.message.empty": "There are no workflows, credentials or data tables in this project.",
3092
+ "projects.settings.delete.question.transfer.label": "Transfer its workflows, credentials and data tables to another project or user",
3070
3093
  "projects.settings.delete.question.transfer.title": "Project or user to transfer to",
3071
- "projects.settings.delete.question.wipe.label": "Delete its workflows and credentials",
3094
+ "projects.settings.delete.question.wipe.label": "Delete its workflows, credentials and data tables",
3072
3095
  "projects.settings.delete.question.wipe.title": 'Type "delete all data" to confirm',
3073
3096
  "projects.settings.delete.question.wipe.placeholder": "delete all data",
3074
3097
  "projects.settings.delete.confirm": "Yes, I am sure",
@@ -3080,6 +3103,18 @@ Return "Good morning" if time is before 10am, "Good day" it's before 5pm, otherw
3080
3103
  "projects.settings.save.error.title": "An error occurred while saving the project",
3081
3104
  "projects.settings.role.upgrade.title": "Upgrade to unlock additional roles",
3082
3105
  "projects.settings.role.upgrade.message": "You're currently limited to {limit} on the {planName} plan and can only assign the admin role to users within this project. To create more projects and unlock additional roles, upgrade your plan.",
3106
+ "projects.settings.table.header.user": "@:_reusableBaseText.user",
3107
+ "projects.settings.table.header.role": "@:_reusableBaseText.role",
3108
+ "projects.settings.table.row.removeUser": "Remove user",
3109
+ "projects.settings.role.admin.description": "Can edit workflows, credentials, and project settings",
3110
+ "projects.settings.role.editor.description": "Can edit workflows and credentials",
3111
+ "projects.settings.role.viewer.description": "Can view workflows and executions",
3112
+ "projects.settings.role.personalOwner": "Owner",
3113
+ "projects.settings.members.search.placeholder": "Search members...",
3114
+ "projects.settings.memberRole.updated.title": "Member role updated successfully",
3115
+ "projects.settings.memberRole.update.error.title": "An error occurred while updating member role",
3116
+ "projects.settings.member.removed.title": "Member removed successfully",
3117
+ "projects.settings.member.remove.error.title": "An error occurred while removing member",
3083
3118
  "projects.sharing.noMatchingProjects": "There are no available projects",
3084
3119
  "projects.sharing.noMatchingUsers": "No matching users or projects",
3085
3120
  "projects.sharing.select.placeholder": "Select project or user",
@@ -3374,11 +3409,11 @@ Return "Good morning" if time is before 10am, "Good day" it's before 5pm, otherw
3374
3409
  "evaluations.setupWizard.moreInfo": "More info",
3375
3410
  "evaluations.setupWizard.stepHeader.optional": "Optional",
3376
3411
  "evaluations.setupWizard.step1.title": "Wire up a test dataset",
3377
- "evaluations.setupWizard.step1.item1": "Set up a Google Sheet with one input per row",
3412
+ "evaluations.setupWizard.step1.item1": "Create a Data table or Google Sheet with one input per row",
3378
3413
  "evaluations.setupWizard.step1.item2": "Add an evaluation trigger to your workflow and wire it up",
3379
3414
  "evaluations.setupWizard.step1.button": "Add evaluation trigger",
3380
3415
  "evaluations.setupWizard.step2.title": "Write workflow outputs back to dataset",
3381
- "evaluations.setupWizard.step2.item1": "Add a 'set outputs' operation to log each output back to Google Sheets",
3416
+ "evaluations.setupWizard.step2.item1": "Add a 'Set Outputs' operation to log each output back to your table",
3382
3417
  "evaluations.setupWizard.step2.button": "Add 'set outputs' node",
3383
3418
  "evaluations.setupWizard.step3.title": "Set up a quality score",
3384
3419
  "evaluations.setupWizard.step3.item1": "Calculate a score, e.g. by comparing expected and actual outputs",
@@ -3451,6 +3486,7 @@ Return "Good morning" if time is before 10am, "Good day" it's before 5pm, otherw
3451
3486
  "insights.upgradeModal.title": "Upgrade to Enterprise",
3452
3487
  "whatsNew.versionsBehind": "{count} version behind | {count} versions behind",
3453
3488
  "whatsNew.update": "Update",
3489
+ "whatsNew.updateNudgeTooltip": "Only owners can perform updates",
3454
3490
  "whatsNew.updateAvailable": "You're currently on version {currentVersion}. Update to {latestVersion} to get {count} versions worth of new features, improvements, and fixes. See what changed",
3455
3491
  "whatsNew.updateAvailable.changelogLink": "in the full changelog",
3456
3492
  "workflowDiff.changes": "Changes",